@charset "utf-8";
/* ------ General Settings ------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.grecaptcha-badge {
 visibility: hidden;
}
img {
 width: 100%;
 height: auto;
 vertical-align: bottom;
}
figure {
 margin: 0;
 padding: 0;
}
a {
 transition: all 0.5s 0s ease;
 color: #242424;
}
a img {
 transition: opacity 0.3s ease-out;
}
a:hover {
 /*opacity: 0.7;*/
}
a:hover img {
 opacity: 0.7;
}
body {
 /*font-family: "Noto Serif JP", serif;*/
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
 text-align: center;
 margin: 0;
 padding: 0;
 font-size: 14px;
 color: #242424;
 line-height: 2;
}
.wrapper {
 overflow: hidden;
}
.br_pc {
 display: inherit;
}
.br_sp {
 display: none;
}
@media screen and (max-width: 767px) {
 a:hover {
  opacity: 1;
 }
 body {
  font-size: 4vw;
  line-height: 1.8;
 }
 .br_pc {
  display: none !important;
 }
 .br_sp {
  display: inherit !important;
 }
}
/* ------ header ------ */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
/* 追加または修正 */
.global-header {
 z-index: 3000; /* メニューより上に */
}
/* メニューオーバーレイの z-index はこれより下に */
.menu-overlay {
 z-index: 2000;
}
.global-header {
 width: 360px;
 height: 100px;
 position: fixed;
 top: 20px;
 right: 20px;
 z-index: 1000;
 display: flex;
 align-items: center;
 justify-content: space-between;
 background-color: rgba(255, 255, 255, 0.8);
 padding: 0px 50px 0 30px;
 border-radius: 0 0 0 10px;
 box-sizing: border-box;
 transition: background-color 0.3s;
}
/*home 固定メニューのカラー*/
.home .global-header {
 background-color: rgba(255, 255, 255, 0.25);
}
.home .global-header {
 background-color: rgba(255, 255, 255, 0.25);
}
.home .phone-number {
 color: #fff;
}
.home .fa-phone::before {
 color: #fff;
}
.menu-right .line {
 background-color: #fff;
}
/* ダークモード時：背景は #1A1A1A 80%、文字色だけ白く */
.global-header.dark {
 background-color: rgba(26, 26, 26, 0.8); /* 背景だけ変更 */
}
/* 文字やアイコン、線を白く */
.global-header.dark .phone-number, .global-header.dark .phone-icon, .global-header.dark .line {
 color: #fff;
 background-color: #fff; /* .line は線（ハンバーガー）なので背景変更 */
}
/* 「×」に変化したときも白を保つ */
.global-header.dark .menu-right.active .line {
 background-color: #fff;
}
/* 電話番号・アイコンの背景色を透明に */
.phone-icon, .phone-number {
 background-color: transparent !important; /* ← 強制的に透明に */
}
.global-header.dark .phone-icon, .global-header.dark .phone-number {
 color: #fff;
}
.global-header.dark .line {
 background-color: #fff;
}
.global-header.dark .phone-icon {
 color: #fff;
}
.menu-left {
 display: flex;
 align-items: center;
 gap: 6px;
 margin-right: 10px;
}
.phone-icon {
 font-size: 20px;
}
.phone-number {
 text-decoration: none;
 color: #000;
 font-size: 24px;
 letter-spacing: 3.5px;
}
/* ハンバーガーアイコン */
.menu-right {
 width: 36px;
 height: 24px;
 position: relative;
 cursor: pointer;
 z-index: 3000; /* ヘッダー最前面 */
}
.menu-right .line {
 position: absolute;
 left: 0;
 height: 2px;
 background-color: #000;
 width: 100%;
 transition: all 0.3s ease;
}
.menu-right .line1 {
 top: 5px;
}
.menu-right .line2 {
 bottom: 5px;
}
/*home 固定メニューのカラー*/
.home .global-header.dark .phone-icon {
 color: #fff;
}
.menu-right .line {
 background-color: #fff;
}
/* ×に変形 */
.menu-right.active .line1 {
 transform: rotate(45deg);
 top: 11px;
}
.menu-right.active .line2 {
 transform: rotate(-45deg);
 bottom: 11px;
}
/* 変更前：.menu-overlay の z-index: 2000 */
/* 変更後：z-index を 1000 に下げる */
.menu-overlay {
 position: fixed;
 inset: 0;
 background-color: #fff;
 z-index: 1000; /* ← 2000 → 1000 に下げる */
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.4s ease;
}
/* .global-header（右上ヘッダー）の z-index は高く保つ */
.global-header {
 position: fixed;
 top: 0;
 right: 0;
 z-index: 3000; /* ← メニューよりも高く設定 */
}
.menu-overlay.active {
 opacity: 1;
 pointer-events: auto;
}
.menu-right.active .line {
 background-color: #000; /* or #fff depending on overlay */
}
/* 他は以前のスタイルと同じ */
.menu-content {
 display: flex;
 width: 640px;
 max-width: 800px;
 justify-content: space-between;
 flex-wrap: wrap;
}
.menu-logo {
 font-size: 24px;
 font-weight: bold;
 width: 240px;
 text-align: left;
 margin-top: 10px;
 margin-bottom: 20px;
}
.menu-list {
 list-style: none;
 width: 300px;
}
.menu-list li {
 font-size: 16px;
 color: #274875;
 text-decoration: none;
 letter-spacing: 3px;
 margin-bottom: 0.5em;
 text-align: left;
}
.menu-list li.pl {
 padding-left: 3em;
}
.menu-list a {
 font-size: 16px;
 color: #274875;
 text-decoration: none;
 letter-spacing: 3px;
 position: relative;
 display: inline-block;
 padding-bottom: 1px;
}
/* アンダーラインのアニメーション */
.menu-list a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 0%;
 height: 2px;
 background-color: #274875;
 transition: width 0.3s ease;
}
.menu-list a:hover::after {
 width: 100%;
}
/* メニュー開いている状態のグローバルヘッダー */
.global-header.menu-open {
 background-color: #fff !important; /* 背景は白 */
 color: #1A1A1A !important; /* 文字色は黒 */
 pointer-events: auto; /* 念のため */
}
/* 電話番号・電話アイコンの文字色を黒に */
.global-header.menu-open .phone-number, .global-header.menu-open .phone-icon {
 color: #1A1A1A !important;
 background-color: transparent !important;
}
/* ハンバーガーラインを黒く */
.global-header.menu-open .line {
 background-color: #1A1A1A !important;
}
/*home 固定メニューのカラー*/
.home .global-header.menu-open .fa-phone::before {
 color: #1A1A1A;
}
.ic_telsp {
 display: none;
}
@media screen and (max-width: 767px) {
 .ic_telsp {
  display: block;
 }
 .home .ic_telsp .fa-phone::before {
  color: #274875;
  font-size: 23px;
 }
 .menu-overlay {
  z-index: 2000;
 }
 .global-header {
  width: 124px;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0px 18px 0 11px;
  border-radius: 0 0 0 10px;
  box-sizing: border-box;
  transition: background-color 0.3s;
 }
 /*home 固定メニューのカラー*/
 .home .global-header {
  background-color: rgba(255, 255, 255, 0.25);
 }
 .home .global-header {
  background-color: rgba(255, 255, 255, 0.25);
 }
 .home .phone-number {
  color: #fff;
 }
 .home .fa-phone::before {
  color: #fff;
 }
 .menu-right .line {
  background-color: #fff;
 }
 /* ダークモード時：背景は #1A1A1A 80%、文字色だけ白く */
 .global-header.dark {
  background-color: rgba(26, 26, 26, 0.8); /* 背景だけ変更 */
 }
 /* 文字やアイコン、線を白く */
 .global-header.dark .phone-number, .global-header.dark .phone-icon, .global-header.dark .line {
  color: #fff;
  background-color: #fff; /* .line は線（ハンバーガー）なので背景変更 */
 }
 /* 「×」に変化したときも白を保つ */
 .global-header.dark .menu-right.active .line {
  background-color: #fff;
 }
 /* 電話番号・アイコンの背景色を透明に */
 .phone-icon, .phone-number {
  background-color: transparent !important; /* ← 強制的に透明に */
 }
 .ic_telsp {
  background: #fff;
  border-radius: 5px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .ic_telsp .phone-icon {
  color: #274875;
 }
 .global-header.dark .phone-icon, .global-header.dark .phone-number {
  color: #fff;
 }
 .global-header.dark .line {
  background-color: #fff;
 }
 .global-header.dark .phone-icon {
  color: #fff;
 }
 .menu-left {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 0;
 }
 .phone-icon {
  font-size: 20px;
 }
 .phone-number {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  letter-spacing: 3.5px;
 }
 /* ハンバーガーアイコン */
 .menu-right {
  width: 36px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 3000; /* ヘッダー最前面 */
 }
 .menu-right .line {
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #000;
  width: 100%;
  transition: all 0.3s ease;
 }
 .menu-right .line1 {
  top: 5px;
 }
 .menu-right .line2 {
  bottom: 5px;
 }
 /*home 固定メニューのカラー*/
 .home .global-header.dark .phone-icon {
  color: #fff;
 }
 .menu-right .line {
  background-color: #fff;
 }
 /* ×に変形 */
 .menu-right.active .line1 {
  transform: rotate(45deg);
  top: 11px;
 }
 .menu-right.active .line2 {
  transform: rotate(-45deg);
  bottom: 11px;
 }
 /* 変更前：.menu-overlay の z-index: 2000 */
 /* 変更後：z-index を 1000 に下げる */
 .menu-overlay {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 1000; /* ← 2000 → 1000 に下げる */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
 }
 /* .global-header（右上ヘッダー）の z-index は高く保つ */
 .global-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000; /* ← メニューよりも高く設定 */
 }
 .menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
 }
 .menu-right.active .line {
  background-color: #000; /* or #fff depending on overlay */
 }
 .global-header.menu-open .ic_telsp {
  background: #274875;
  color: #fff;
 }
 .home .global-header.menu-open .fa-phone::before {
  color: #fff;
 }
 /* 他は以前のスタイルと同じ */
 .menu-content {
  display: block;
  width: auto;
  max-width: auto;
 }
 .menu-logo {
  font-size: 24px;
  font-weight: bold;
  width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
 }
 .menu-list {
  list-style: none;
  width: auto;
 }
 .menu-list li {
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
 }
 .menu-list a {
  font-size: 16px;
  color: #274875;
  text-decoration: none;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
 }
 /* アンダーラインのアニメーション */
 .menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #274875;
  transition: width 0.3s ease;
 }
 .menu-list a:hover::after {
  width: 100%;
 }
 /* メニュー開いている状態のグローバルヘッダー */
 .global-header.menu-open {
  background-color: #fff !important; /* 背景は白 */
  color: #1A1A1A !important; /* 文字色は黒 */
  pointer-events: auto; /* 念のため */
 }
 /* 電話番号・電話アイコンの文字色を黒に */
 .global-header.menu-open .phone-number, .global-header.menu-open .phone-icon {
  color: #1A1A1A !important;
  background-color: transparent !important;
 }
 /* ハンバーガーラインを黒く */
 .global-header.menu-open .line {
  background-color: #1A1A1A !important;
 }
 /*home 固定メニューのカラー*/
 .home .global-header.menu-open .fa-phone::before {
  color: #fff;
 }
 .global-header.dark .ic_telsp .fa-phone::before {
  color: rgba(26, 26, 26, 0.8);
 }
 /*sp時電話番号表示*/
 .menu-list .spnavtel a {
  font-size: 4.26vw;
  color: #274875;
  text-decoration: none;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
 }
 /* アンダーラインのアニメーション */
 .menu-list .spnavtel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #274875;
  transition: width 0.3s ease;
 }
 .menu-list .spnavtel a:hover::after {
  width: 0%;
 }
 .spnavtel {
  padding-top: 5vw;
 }
 .home .spnavtel .phone-number {
  color: #274875;
  font-size: 24px;
 }
 .home .spnavtel .fa-phone::before {
  color: #274875;
  font-size: 18px;
 }
 .home .spnavtel .fa-phone {
  vertical-align: middle; /* baseline より上にしたい場合は top や text-top も試して */
  position: relative;
  top: -6px; /* 少し上に移動 */
 }
}
/* FVエリア */
.fv-area {
 width: 100%;
 height: 56.25vw;
 position: relative;
}
.fv-area.sec {
 height: 18.75vw;
}
.fv-slide {
 width: 100%;
 height: 56.25vw; /* 16:9 */
}
.fv-slide .swiper-slide {
 display: flex;
 justify-content: center;
 align-items: center;
}
.fv-slide img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.fv-area .logo {
 width: 80px;
 position: absolute;
 top: 40px;
 left: 40px;
 transition: all 0.5s 0s ease;
 z-index: 10;
}
.fv-nav {
 position: absolute;
 bottom: 156px;
 left: 40px;
 text-align: left;
 transition: bottom 0.3s ease;
 z-index: 10;
}
.fv-nav ul {
 list-style: none;
 padding: 0;
 margin: 0;
}
.fv-nav li {
 color: white;
 letter-spacing: 3px;
 font-size: 14px;
 margin-bottom: 1em;
}
.fv-nav li.pl {
 padding-left: 45px;
}
.fv-nav li:last-child {
 margin-bottom: 0;
}
.fv-nav a {
 color: white;
 text-decoration: none;
 position: relative;
 display: inline-block;
 padding-bottom: 1px;
 letter-spacing: 3px;
 font-size: 14px;
}
/* アンダーラインのアニメーション */
.fv-nav a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 2px;
 width: 0%;
 height: 2px;
 background-color: white;
 transition: width 0.3s ease;
}
.fv-nav a:hover::after {
 width: 100%;
}
@media screen and (max-width: 1560px) {
 .fv-nav {
  bottom: 50px;
 }
}
@media screen and (max-width: 1385px) {
 .fv-area .logo {
  width: 60px;
  position: absolute;
  top: 30px;
  left: 40px;
 }
 .fv-nav {
  bottom: 50px;
 }
 .fv-nav li {
  margin-bottom: 0.5em;
 }
 .fv-nav a {
  font-size: 12px;
 }
}
@media screen and (max-width: 1100px) {
 .fv-nav {
  opacity: 0;
 }
}
/* スクロール無効 */
body.no-scroll {
 overflow: hidden;
}
@media screen and (max-width: 767px) {
 .fv-area {
  width: 100%;
  height: 177.86vw;
  position: relative;
 }
 .fv-area.sec {
  height: 53.3vw;
 }
 .fv-slide {
  width: 100%;
  height: 177.86vw;
 }
 .fv-slide .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }
 .fv-area .logo {
  width: 21.3vw;
  position: absolute;
  top: 4vw;
  left: 5.3vw;
  transition: all 0.5s 0s ease;
 }
 .fv-nav {
  opacity: 1;
  position: absolute;
  bottom: 7.6vw;
  left: 5.3vw;
  text-align: left;
  transition: bottom 0.3s ease;
 }
 .fv-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
 }
 .fv-nav li {
  margin-bottom: 0.4em;
 }
 .fv-nav li.pl {
  padding-left: 2em;
 }
 .fv-nav li:last-child {
  margin-bottom: 0;
 }
 .fv-nav a {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
  letter-spacing: 3px;
  font-size: 3.73vw;
 }
 /* アンダーラインのアニメーション */
 .fv-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
 }
 .fv-nav a:hover::after {
  width: 100%;
 }
}
/*home contents*/
.l-future {
 height: 580px;
 display: flex;
 justify-content: center;
}
.l-future p {
 writing-mode: vertical-rl; /* 縦書き＆右から左 */
 font-size: 16px;
 color: #274875;
 white-space: pre-wrap; /* 改行を反映 */
 text-align: left;
 line-height: 4;
 letter-spacing: 3px;
 text-orientation: upright;
 font-feature-settings: "palt";
}
.kagi {
 display: inline-block;
 transform: translateY(-0.6em); /* ← 見た目に応じて調整 */
}
.l-info {
 width: 1000px;
 margin: 40px auto 0 auto;
}
.data_info {
 padding-bottom: 10px;
 margin-bottom: 10px;
 border-bottom: #274875 2px solid;
}
.data_info dl {
 display: flex;
 justify-content: center;
 color: #274875;
}
.data_info dt {
 background: #274875;
 color: #fff;
 height: 25px;
 padding: 0 20px 0 20px;
 box-sizing: border-box;
 display: flex;
 align-items: center;
 font-size: 12px;
 line-height: 1;
 letter-spacing: 3px;
 margin-right: 10px;
 font-weight: normal;
}
.data_info dd {
 height: 25px;
 padding: 0 5px 0 5px;
 box-sizing: border-box;
 display: flex;
 align-items: center;
 font-size: 14px;
 line-height: 1;
 margin-right: 40px;
 letter-spacing: 3px;
}
.kamoku {
 width: 100%;
 margin: 0 auto 100px auto;
 text-align: center;
 color: #274875;
 letter-spacing: 3px;
}
/*feature*/
.mainimg {
 position: relative;
}
.mainimg span {
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
}
.etxt {
 color: #fff;
 font-size: 13px;
 letter-spacing: 2.4px;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.sec .etxt {
 font-size: 2.8vw;
 font-weight: 700;
 line-height: 1;
 letter-spacing: 5px;
}
.inner {
 width: 1000px;
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 padding-top: 0;
 padding-bottom: 120px;
 margin-bottom: 120px;
 border-bottom: #1A1A1A 2px solid;
}
.inner .cttl {
 width: 60px;
 border: #274875 2px solid;
 padding: 15px 10px;
 display: inline-block;
 height: 235px;
}
.inner .cttl span {
 writing-mode: vertical-rl; /* 縦書き＆右から左 */
 font-size: 28px;
 color: #274875;
 white-space: pre-wrap;
 text-align: center;
 line-height: 1;
 letter-spacing: 12px;
 text-orientation: upright;
 font-weight: 700;
}
.csttl {
 font-size: 24px;
 font-weight: 700;
 color: #274875;
 margin-bottom: 50px;
 letter-spacing: 3px;
}
.ctxt {
 font-size: 16px;
 line-height: 2.5;
 margin-bottom: 30px;
 text-align: left;
 letter-spacing: 2.5px;
}

.ctxt.mb0{margin-bottom: 0;}
.feature_img {
 width: 100%;
}
.feature_img img {
 width: 500px;
 height: auto;
 margin: 0 auto;
}
.l-cbox {
 width: 650px;
}
.l-feature {
 padding-bottom: 0;
}
.l-feature .l-cbox {
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
}
.l-feature .l-cbox article {
 width: 300px;
 text-align: left;
 margin-bottom: 120px;
}
.l-feature .l-cbox article figure {
 margin-bottom: 30px;
}
.l-feature .l-cbox article h3 {
 margin-bottom: 30px;
 font-size: 18px;
 color: #274875;
 line-height: 1;
 letter-spacing: 4px;
}
.l-feature .l-cbox article p {
 font-size: 14px;
 line-height: 2.4;
 letter-spacing: 2px;
}


@media screen and (max-width: 767px) {
 .l-future {
  height: 121vw;
  display: flex;
  justify-content: center;
 }
 .l-future p {
  writing-mode: vertical-rl; /* 縦書き＆右から左 */
  font-size: 3.7vw;
  color: #274875;
  white-space: pre-wrap; /* 改行を反映 */
  text-align: left;
  line-height: 3;
  letter-spacing: 3px;
  text-orientation: upright;
  font-feature-settings: "palt";
 }
 .kagi {
  display: inline-block;
  transform: translateY(-0.6em); /* ← 見た目に応じて調整 */
 }
 .l-info {
  width: auto;
  margin: 5.3vw 9.3vw 0 9.3vw;
 }
 .data_info {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: #274875 2px solid;
 }
 .data_info dl {
  display: flex;
  color: #274875;
  flex-wrap: wrap;
  justify-content: flex-start;
 }
 .data_info dt {
  width: 16vw;
  background: #274875;
  color: #fff;
  height: 6.666vw;
  padding: 0 0 0 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3vw;
  line-height: 1;
  letter-spacing: 2px;
  margin-right: 2.6vw;
  font-weight: normal;
 }
 .data_info dd {
  width: 60vw;
  height: auto;
  padding: 1vw 1.33vw 1.3vw 1.33vw;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 3.46vw;
  line-height: 1.5;
  margin-right: 0;
  letter-spacing: 2px;
  text-align: left;
 }
 .kamoku {
  width: auto;
  margin: 0 auto 0 auto;
  text-align: left;
  color: #274875;
  letter-spacing: 3px;
  font-size: 3.46vw;
 }
 /*feature*/
 .mainimg {
  position: relative;
 }
 .mainimg span {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
 }
 .etxt {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2.4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 }
 .sec .etxt {
  font-size: 6.6vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
 }
 .inner {
  width: auto;
  margin: 0 9.3vw;
  display: block;
  padding-top: 26vw;
 }
 .inner .cttl {
  width: 100%;
  border: #274875 2px solid;
  padding: 4.57vw 10px;
  display: inline-block;
  height: auto;
  margin-bottom: 11vw;
  line-height: 1;
 }
 .inner .cttl span {
  width: auto;
  writing-mode: horizontal-tb; /* 縦書き＆右から左 */
  font-size: 6.4vw;
  color: #274875;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  letter-spacing: 8px;
  text-orientation: upright;
 }
 .csttl {
  font-size: 5.3vw;
  margin-bottom: 8vw;
  letter-spacing: 3px;
  text-align: left;
 }
 .ctxt {
  font-size: 4.2vw;
  line-height: 2.5;
  margin-bottom: 30px;
  text-align: left;
  letter-spacing: 2.2px;
 }
 .feature_img {
  width: 100%;
 }
 .feature_img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
 }
 .l-cbox {
  width: auto;
 }
 .l-feature {}
 .l-feature .l-cbox {
  display: block;
 }
 .l-feature .l-cbox article {
  width: auto;
  text-align: left;
  margin-bottom: 21vw;
 }
 .l-feature .l-cbox article figure {
  margin-bottom: 8vw;
 }
 .l-feature .l-cbox article h3 {
  margin-bottom: 8vw;
  font-size: 4.8vw;
  color: #274875;
  line-height: 1;
  letter-spacing: 4.5px;
 }
 .l-feature .l-cbox article p {
  font-size: 3.7vw;
  line-height: 2.4;
  letter-spacing: 2.5px;
 }
}
/*医療理念*/
.l-philosophy .inner .cttl {
 height: 195px;
}
.l-philosophy .l-cbox {
 text-align: left;
}
.l-philosophy-list {
 margin-bottom: 30px;
}
.l-philosophy-list li {
 overflow: hidden;
 display: flex;
 border-bottom: #274875 1px solid;
 padding-bottom: 15px;
 margin-bottom: 40px;
}
.l-philosophy-list li span {
 letter-spacing: 3px;
 font-size: 16px;
 font-weight: 700;
 color: #274875;
	line-height: 2.5;
}
.l-philosophy-list li .p_num {
 width: 40px;
}
.l-philosophy-list li .p_txt {
 width: 600px;
}
@media screen and (max-width: 767px) {
 .l-philosophy .inner .cttl {
  height: auto;
 }
 .l-philosophy .l-cbox {
  text-align: left;
 }
 .l-philosophy-list {
  margin-bottom: 30px;
 }
 .l-philosophy-list li {
  overflow: hidden;
  display: flex;
  border-bottom: #274875 1px solid;
  padding-bottom: 4vw;
  margin-bottom: 10vw;
 }
 .l-philosophy-list li span {
  font-size: 4vw;
  font-weight: 700;
  color: #274875;
  letter-spacing: 1.4px;
		line-height: 2.4;
 }
 .l-philosophy-list li .p_num {
  width: 8vw;
 }
 .l-philosophy-list li .p_txt {
  width: 72vw;
 }
}
/*staff*/
.l-staff {}
.l-staff .inner .cttl {
 height: 280px;
}
.l-staff .inner .ctxt{
	margin-bottom: 80px!important;
}
.l-staff .l-cbox article.staff_list {
 width: 487px;
 text-align: left;
 padding-bottom: 80px;
 margin-bottom: 80px;
 background: url("../images/bar_staff.svg") no-repeat left bottom;
 display: flex;
 justify-content: space-between;
}
.l-staff .l-cbox article.staff_list:last-child {
 width: 100%;
 display: block;
 background: none;
 padding-bottom: 0;
 margin-bottom: 0;
}
.l-staff .l-cbox article.staff_list figure {
 margin-bottom: 30px;
}
.staff_detail {
 width: 420px;
 text-align: left;
}
.l-staff .l-cbox article.staff_list:last-child .staff_detail {
 width: auto;
}
.l-staff .l-cbox article.staff_list h3 {
 width: 17px;
 font-size: 67px;
 writing-mode: vertical-rl; /* 縦書き＆右から左 */
 font-size: 19px;
 white-space: pre-wrap;
 text-align: left;
 line-height: 1;
 letter-spacing: 5px;
 text-orientation: upright;
 order: 2;
}
.l-staff .l-cbox article.staff_list p {
 font-size: 16px;
 line-height: 2.4;
 letter-spacing: 2px;
}
.l-staff .l-cbox .staff_detail p {
 font-size: 16px;
 line-height: 2.4;
 letter-spacing: 2px;
}
.nintei {
 width: 305px;
 padding-top: 30px;
 margin-bottom: 80px;
}
.nintei p {
 font-size: 14px !important;
 text-align: center;
 margin-bottom: 10px;
}
.l-msg {
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
 row-gap: 80px;
}
.l-msg article {
 width: 305px;
 text-align: left;
}
.l-msg article h3 {
 font-size: 24px;
 font-weight: 700;
 color: #274875;
 margin-bottom: 20px;
 letter-spacing: 2px;
 line-height: 1.6;
}
.l-msg article figure {
 margin-bottom: 20px;
}
.l-msg article p {
 font-size: 16px;
 letter-spacing: 2px;
 line-height: 2.4;
}
.img_course {
 margin-top: 20px;
}
@media screen and (max-width: 767px) {
 .l-staff {
  padding-bottom: 0;
 }
 .l-staff .inner .cttl {
  height: auto;
 }
	.l-staff .inner .ctxt{
	margin-bottom: 10vw!important;
}
 .l-staff .l-cbox article.staff_list {
  width: 83vw;
  text-align: left;
  padding-bottom: 21vw;
  margin-bottom: 21vw;
  background: url("../images/bar_staff.svg") no-repeat left bottom;
  display: flex;
  justify-content: space-between;
 }
 .l-staff .l-cbox article.staff_list:last-child {
  width: 100%;
  display: block;
  background: none;
  padding-bottom: 0;
  margin-bottom: 0;
 }
 .l-staff .l-cbox article.staff_list figure {
  margin-bottom: 5.3vw;
 }
 .staff_detail {
  width: 68.8vw;
 }
 .l-staff .l-cbox article.staff_list:last-child .staff_detail {
  width: auto;
 }
 .l-staff .l-cbox article.staff_list h3 {
  width: 4.53vw;
  font-size: 67px;
  writing-mode: vertical-rl; /* 縦書き＆右から左 */
  font-size: 4.53vw;
  white-space: pre-wrap;
  text-align: left;
  line-height: 1;
  letter-spacing: 5px;
  text-orientation: upright;
  order: 2;
 }
 .l-staff .l-cbox article.staff_list p {
  font-size: 4vw;
  line-height: 2.4;
  letter-spacing: 2px;
 }
 .l-staff .l-cbox .staff_detail p {
  font-size: 4vw;
  line-height: 2.4;
  letter-spacing: 2px;
 }
 .nintei p {
  font-size: 3.7vw !important;
 }
 .l-msg {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 21vw;
 }
 .l-msg article {
  width: auto;
  text-align: left;
 }
 .l-msg article h3 {
  font-size: 5.3vw;
  font-weight: 700;
  color: #274875;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.6;
 }
 .l-msg article figure {
  margin-bottom: 20px;
 }
 .l-msg article p {
  font-size: 4.2vw;
  letter-spacing: 2px;
  line-height: 2.4;
 }
 .img_course {
  margin-top: 5.3vw;
 }
}
/*specialty*/
.l-specialty {
 padding-bottom: 120px;
}
.l-specialty .inner {
 border-bottom: none;
 margin-bottom: 0;
 padding-bottom: 0;
}
.l-specialty .inner .cttl {
 height: 605px;
}
.l-specialty .inner .cttl .sm {
 font-size: 14px;
 letter-spacing: 2.5px;
}
.l-specialty .l-cbox .cread {
 text-align: left;
 margin-bottom: 120px;
 padding-bottom: 80px;
 margin-bottom: 80px;
 background: url("../images/bar_staff.svg") no-repeat left bottom;
 display: flex;
 justify-content: space-between;
}
.l-specialty-list {
 text-align: left;
}
.l-specialty-list dt {
 font-size: 16px;
 font-weight: 700;
 color: #fff;
 padding: 10px 0 10px 20px;
 background: #274875;
 margin-bottom: 10px;
 line-height: 2.4;
 letter-spacing: 2px;
 line-height: 1.2;
 height: 40px;
}
.l-specialty-list dd {
 font-size: 16px;
 margin-bottom: 50px;
 line-height: 2.4;
 letter-spacing: 2px;
}
.l-specialty-list dd:last-child {
 margin-bottom: 0;
}
@media screen and (max-width: 767px) {
 .l-specialty {
  padding-bottom: 26vw;
 }
 .l-specialty .inner {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
 }
 .l-specialty .inner .cttl {
  height: auto;
 }
 .l-specialty .inner .cttl .sm {
  font-size: 3.7vw;
  letter-spacing: 2.5px;
 }
 .l-specialty .l-cbox .cread {
  text-align: left;
  margin-bottom: 120px;
  padding-bottom: 80px;
  margin-bottom: 80px;
  background: url("../images/bar_staff.svg") no-repeat left bottom;
  display: flex;
  justify-content: space-between;
 }
 .l-specialty-list {
  text-align: left;
 }
 .l-specialty-list dt {
  font-size: 4.2vw;
  font-weight: 700;
  color: #fff;
  padding: 10px 20px 10px 20px;
  background: #274875;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 2;
  height: auto;
 }
 .l-specialty-list dd {
  font-size: 4.2vw;
  margin-bottom: 50px;
  line-height: 2.4;
  letter-spacing: 2px;
 }
 .l-specialty-list dd:last-child {
  margin-bottom: 0;
 }
}
/*equipment*/
.l-equipment {
 padding-top: 120px;
}
.l-equipment .cttl {
 height: 395px;
}
.l-equipment .inner {
 border-bottom: none;
 padding-bottom: 0;
}
.equipment_detail {
 width: 650px;
 display: flex;
 justify-content: space-between;
}
.equipment_detail figure {
 width: 420px;
}
.equipment_detail p {
 width: 190px;
 text-align: left;
 font-size: 13px;
 letter-spacing: 3px;
 line-height: 2.4;
}
.m-btn {
 width: 305px;
 margin: 50px auto 0 auto;
}
.btn {
 position: relative;
 display: block;
 width: 305px;
 height: 40px;
 line-height: 37px;
 font-size: 14px;
 text-decoration: none;
 background-color: #fff;
 border: 1.5px solid #1A1A1A;
 color: #1A1A1A;
 text-align: center;
 z-index: 2;
 overflow: hidden;
 -webkit-transition: all 0.4s;
 transition: all 0.4s;
 border-radius: 5px;
 letter-spacing: 3px;
}
.btn:hover {
 color: #fff;
}
.btn::after, .btn::before {
 position: absolute;
 z-index: -1;
 display: block;
 content: "";
 box-sizing: border-box;
 -webkit-transition: all 0.4s;
 transition: all 0.4s;
}
.btn:hover::after {
 top: 0;
 left: 0;
 background-color: #274875;
}
.btn::after {
 top: 0;
 left: -200px;
 width: 100%;
 height: 100%;
}
@media screen and (max-width: 767px) {
 .l-equipment {
  padding-bottom: 26vw;
  padding-top: 0;
 }
 .l-equipment .cttl {
  height: auto;
 }
 .equipment_detail {
  width: 81.6vw;
  display: block;
 }
 .equipment_detail figure {
  width: auto;
  margin-bottom: 8vw;
 }
 .equipment_detail p {
  width: auto;
  text-align: left;
  font-size: 4.25vw;
  letter-spacing: 3px;
  line-height: 2.4;
 }
 .m-btn {
  width: auto;
  margin: 50px auto 0 auto;
 }
 .btn {
  position: relative;
  display: block;
  width: 100%;
  height: 10.66vw;
  line-height: 10vw;
  font-size: 3.7vw;
  text-decoration: none;
  background-color: #fff;
  border: 1.5px solid #1A1A1A;
  color: #1A1A1A;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 5px;
  letter-spacing: 3px;
 }
 .btn:hover {
  color: #fff;
 }
 .btn::after, .btn::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
 }
 .btn:hover::after {
  top: 0;
  left: 0;
  background-color: #274875;
 }
 .btn::after {
  top: 0;
  left: -200px;
  width: 100%;
  height: 100%;
 }
}
/*recruit*/
.l-recruit {
 padding-bottom: 0;
}
.l-recruit .inner {
 padding-top: 120px;
 padding-bottom: 0;
 border-bottom: none;
}
.l-recruit .cttl {
 height: 195px;
}
.pnav {
 display: flex;
 justify-content: space-between;
 margin-bottom: 50px;
}
.recruit_detail {
 text-align: left;
 letter-spacing: 2.5px;
}
.recruit_read {
 margin-bottom: 50px;
}
.recruit_detail article h3 {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 50px;
 color: #274875;
 letter-spacing: 3px;
}
.recruit_detail article table {
 width: 100%;
 border-top: #1A1A1A 1px solid;
 margin-bottom: 120px;
}
.recruit_detail article th {
 width: 120px;
 border-right: #1A1A1A 1px solid;
 border-bottom: #1A1A1A 1px solid;
 padding: 30px 0;
 vertical-align: middle;
 font-weight: 500;
}
.recruit_detail article td {
 padding: 30px 0 30px 30px;
 border-bottom: #1A1A1A 1px solid;
 line-height: 2.5;
}
.no_recruit {
 padding: 30px 0;
 border-top: #1A1A1A 1px solid;
 border-bottom: #1A1A1A 1px solid;
 margin-bottom: 80px;
}
.at_recruit {
 padding: 30px 20px;
 border: #1A1A1A 1px solid;
	line-height: 2.5;
}
/*recruit*/
.l-information .inner {
 padding: 80px 0;
 display: flex;
 justify-content: space-between;
 border-bottom: none;
 margin-bottom: 0;
 padding-bottom: 80px;
}
.info_box {
 width: 476px;
 border: #1A1A1A 1px solid;
 padding: 20px 40px;
 box-sizing: border-box;
}
.info_box h3 {
 font-size: 20px;
 text-align: center;
 padding-bottom: 20px;
 margin-bottom: 20px;
 border-bottom: #1A1A1A 1px solid;
 letter-spacing: 3px;
 color: #274875;
 font-weight: 700;
}
.info_box p {
 font-size: 15px;
 text-align: left;
 letter-spacing: 2.4px;
 line-height: 2.5;
}
@media screen and (max-width: 767px) {
 .l-recruit {
  padding-bottom: 26.66vw;
 }
 .l-recruit .inner {
  padding-top: 120px;
  padding-bottom: 0;
  border-bottom: none;
 }
 .l-recruit .cttl {
  height: auto;
 }
 .pnav {
  display: block;
  margin-bottom: 5.3vw;
 }
 .pnav a {
  margin-bottom: 4vw;
 }
 .recruit_detail {
  text-align: left;
  letter-spacing: 2.5px;
 }
 .recruit_read {
  font-size: 4.2vw;
  margin-bottom: 13.3vw;
 }
 .recruit_detail article h3 {
  font-size: 5.3vw;
  margin-bottom: 8vw;
  color: #274875;
  letter-spacing: 3px;
 }
 .recruit_detail article table {
  width: 100%;
  border-top: #1A1A1A 1px solid;
  margin-bottom: 26.6vw;
 }
 .recruit_detail article th {
  width: 20vw;
  border-right: #1A1A1A 1px solid;
  border-bottom: #1A1A1A 1px solid;
  padding: 6.6vw 0;
  vertical-align: middle;
  font-size: 3.46vw;
  font-weight: 500;
 }
 .recruit_detail article td {
  padding: 6.6vw 0 6.6vw 6.6vw;
  border-bottom: #1A1A1A 1px solid;
  font-size: 3.46vw;
 }
 .no_recruit {
  padding: 6.6vw 0;
  ont-size: 4.2vw;
  border-top: #1A1A1A 1px solid;
  border-bottom: #1A1A1A 1px solid;
  margin-bottom: 13.3vw;
 }
 .at_recruit {
  padding: 8vw 8vw;
  border: #1A1A1A 1px solid;
  font-size: 4vw;
 }
 /*information*/
 .l-information .inner {
  padding: 13.3vw 0;
  display: block;
 }
 .info_box {
  width: auto;
  border: #1A1A1A 1px solid;
  padding: 8vw 8vw;
  box-sizing: border-box;
  margin-bottom: 8vw;
 }
 .info_box h3 {
  font-size: 5.3vw;
  text-align: center;
  padding-bottom: 5.3vw;
  margin-bottom: 5.3vw;
  border-bottom: #1A1A1A 1px solid;
  letter-spacing: 4px;
  color: #274875;
 }
 .info_box p {
  text-align: left;
  letter-spacing: 3px;
  line-height: 2.5;
  font-size: 4vw;
 }
}
/*footer*/
.footer_inner {
 width: 1000px;
 margin: 0 auto;
}
.flogo img {
 height: 60px;
 text-align: center;
 margin-bottom: 30px;
}
.address {
 color: #274875;
 letter-spacing: 3px;
}
.tel {
 color: #274875;
 font-size: 24px;
 letter-spacing: 3px;
}
.tel a {
 color: #274875;
 font-size: 24px;
}
.tel .phone-icon {
 color: #274875;
}
.parking {
 color: #274875;
 letter-spacing: 3px;
 margin-bottom: 20px;
}
.parking_img {
 width: 400px;
 margin: 0 auto 80px auto;
}
.home .tel .fa-phone::before {
 color: #274875;
}
.home .tel .phone-number {
 color: #274875;
}
.gmap {
 width: 100%;
}
.copyright {
 padding: 50px 0 20px 0;
 font-size: 10px;
 color: #274875;
 letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
 .footer_inner {
  width: auto;
  margin: 0 9.3vw 0 9.3vw;
 }
 .flogo img {
  height: 12vw;
  text-align: center;
  margin-bottom: 8vw;
 }
 .address {
  color: #274875;
  letter-spacing: 3px;
  font-size: 3.46vw;
 }
 .parking {
  color: #274875;
  letter-spacing: 3px;
  font-size: 3.46vw;
  margin-bottom: 20px;
 }
 .parking_img {
  width: auto;
  margin: 0 auto 13vw auto;
 }
 .tel {
  color: #274875;
  font-size: 6.4vw;
  letter-spacing: 3px;
 }
 .tel a {
  color: #274875;
  font-size: 24px;
 }
 .tel .phone-icon {
  color: #274875;
 }
 .home .tel .fa-phone::before {
  color: #274875;
 }
 .home .tel .phone-number {
  color: #274875;
 }
 .gmap {
  width: 100%;
  height: 400px;
 }
 .copyright {
  padding: 8vw 0 5.3vw 0;
  font-size: 2.1vw;
  color: #274875;
 }
}