@charset "UTF-8";
/*---------------------
変数
-----------------------*/
/*---------------------
ヘッダー用変数
-----------------------*/
/**************************

  カラーパレット

**************************/
/*-- mixinフォルダの中の_index.scss --*/
/*------------------------------------
SP特化サイト用メディアクエリ MIXIN
---------------------------------*/
/*---------------------
 ★ 文字関連一括指定
-----------------------*/
/*---------------------
//Fontサイズ vw可変指定（SP特化サイト用）
----------------------*/
/* @include font-vw(font-size, 440px, 16px, 12px);
SP特化サイトの最大幅440pxのとき16pxの文字sizeをvw変換し、
幅を狭めるごとに比率で縮めるが、そのまま適用すると早々に小さくなりすぎるので、
最小値12pxを指定。最小値になる幅sizeを割り出し、メディアクエリにmin指定することで
16pxの比率のまま縮め、12px以下には縮まないという指定にしている。
*/
/*---------------------
 ★ リンク文字色 一括指定
-----------------------*/
/*---------------------
 ★ リンク下線復活
-----------------------*/
/*-------------------------------------
 ★ リンク下線消去 一括指定//フォーカスのみ下線
---------------------------------------*/
/*-------------------------------------
 ★ floatのあとは自動 clear: both;
 @include clearfix;
 float: left;
 のように使用する
---------------------------------------*/
/*-------------------------------------
 ★セレクトのプロパティをサイズ指定して変更
---------------------------------------*/
/*-------------------------------------

   レイアウト汎用

---------------------------------------*/
/*-----------------------------------

 上部余白

-----------------------------------*/
/*-----------------------------------

 改行制御

-----------------------------------*/
/*-----------------------------------

 中央寄せと左寄せ制御

-----------------------------------*/
/*--------------------------------------------
//文字数を指定行数で丸めて…で省略・複数行対応mixin
----------------------------------------------*/
/*-----------------------------------

 文章段落

-----------------------------------*/
/*------------------------------------
コンテナ MIXIN
---------------------------------*/
/*
使い方例：

// 最大幅1200px、パディング20px（パディングを指定する場合）
@include l-container(1200px, 20px);  

// 最大幅1000px、パディング25px（デフォルト設定値なので省略可能）
@include l-container(1000px); 

// 最大幅800px、パディングなし
@include l-container-full(800px);

関連ファイル：
- assets/scss/layout/_l-container.scss で実際のクラス定義に使用
- .l-container-1200, .l-container-1000 などのクラスで利用
*/
/*--------------------- 
  GREETING PAGE
-----------------------*/
.p-greeting {
  /*--------------------- 
    パンくずリスト
  -----------------------*/
}
.p-greeting__breadcrumb {
  padding: 20px 0;
}
.p-greeting__breadcrumb-nav {
  text-align: right;
}
.p-greeting__breadcrumb-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.p-greeting__breadcrumb-item {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__breadcrumb-item {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__breadcrumb-item {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__breadcrumb-item {
    font-size: 12px;
  }
}
.p-greeting__breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #373232;
}
.p-greeting__breadcrumb-item a {
  color: #373232;
  text-decoration: none;
}
.p-greeting__breadcrumb-item a:visited, .p-greeting__breadcrumb-item a:hover, .p-greeting__breadcrumb-item a:active, .p-greeting__breadcrumb-item a:focus {
  color: #373232;
  text-decoration: none;
}
.p-greeting__breadcrumb-item a:visited, .p-greeting__breadcrumb-item a:hover, .p-greeting__breadcrumb-item a:active {
  text-decoration: none;
}
.p-greeting__breadcrumb-item a:hover {
  color: #214287;
}
.p-greeting__breadcrumb-item[aria-current=page] {
  color: #2c2c2c;
}
@media screen and (max-width: 768px) {
  .p-greeting__breadcrumb {
    padding: 15px 0;
  }
}
.p-greeting {
  /*--------------------- 
    ページタイトルエリア
  -----------------------*/
}
.p-greeting__title-area {
  margin-bottom: 60px;
}
.p-greeting__parent-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  line-height: 1;
}
.p-greeting__parent-title-ja {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-greeting__parent-title-ja {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__parent-title-ja {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__parent-title-ja {
    font-size: 12px;
  }
}
.p-greeting__parent-title-ja {
  background: -webkit-gradient(linear, left top, right top, from(rgb(18, 34, 70)), to(rgb(42, 79, 120)));
  background: linear-gradient(to right, rgb(18, 34, 70) 0%, rgb(42, 79, 120) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-greeting__parent-title-en {
  font-style: normal;
  font-weight: 400;
  font-size: calc(12 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-greeting__parent-title-en {
    font-size: 12px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__parent-title-en {
    font-size: calc(0.4166666667vw + 8.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__parent-title-en {
    font-size: 10px;
  }
}
.p-greeting__parent-title-en {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(rgb(33, 66, 135)), to(rgb(143, 168, 196)));
  background: linear-gradient(to right, rgb(33, 66, 135) 0%, rgb(143, 168, 196) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-greeting__title {
  font-style: normal;
  font-weight: 400;
  font-size: calc(48 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__title {
    font-size: 48px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__title {
    font-size: calc(3.3333333333vw + 21.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-greeting__title {
    font-size: 32px;
  }
}
.p-greeting__title {
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  border: none;
}
.p-greeting__body {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__body {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__body {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__body {
    font-size: 18px;
  }
}
.p-greeting__body {
  letter-spacing: 0.1em;
  line-height: 2;
}
.p-greeting {
  /*--------------------- 
    理念セクション
  -----------------------*/
}
.p-greeting__philosophy {
  text-align: center;
  padding: 60px 0;
}
.p-greeting__philosophy-title {
  font-style: normal;
  font-weight: 400;
  font-size: calc(36 / 16 * 1rem);
  color: #243969;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__philosophy-title {
    font-size: 36px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__philosophy-title {
    font-size: calc(1.6666666667vw + 22.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__philosophy-title {
    font-size: 28px;
  }
}
.p-greeting__philosophy-title {
  letter-spacing: 0.1em;
  margin: 0 0 8px 0;
  color: #243969;
}
.p-greeting__philosophy-subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__philosophy-subtitle {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__philosophy-subtitle {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__philosophy-subtitle {
    font-size: 14px;
  }
}
.p-greeting__philosophy-subtitle {
  margin: 0 0 40px 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.p-greeting__philosophy-image {
  max-width: 800px;
  margin: 0 auto 40px;
}
.p-greeting__philosophy-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.p-greeting__philosophy-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__philosophy-text {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__philosophy-text {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__philosophy-text {
    font-size: 18px;
  }
}
.p-greeting__philosophy-text {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-greeting__philosophy {
    text-align: left;
    padding: 30px 0;
  }
}
.p-greeting {
  /*--------------------- 
    セクションタイトル
  -----------------------*/
}
.p-greeting__section-title {
  font-style: normal;
  font-weight: 400;
  font-size: calc(28 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__section-title {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__section-title {
    font-size: calc(0.8333333333vw + 21.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-greeting__section-title {
    font-size: 24px;
  }
}
.p-greeting__section-title {
  letter-spacing: 0.1em;
  margin: 80px 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(44, 44, 44, 0.15);
  color: #2c2c2c;
}
.p-greeting__section-title:first-of-type {
  margin-top: 0;
}
.p-greeting {
  /*--------------------- 
      沿革セクション
  -----------------------*/
}
.p-greeting__history {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-greeting__history {
    margin: 80px 0 30px;
  }
}
.p-greeting__history-list {
  margin-top: 40px;
}
.p-greeting__history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  padding: 30px 0;
  position: relative;
}
.p-greeting__history-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(44, 44, 44, 0.3)), color-stop(15%, rgba(44, 44, 44, 0.3)), color-stop(15%, transparent)), repeating-linear-gradient(to right, rgba(44, 44, 44, 0.2) 0px, rgba(44, 44, 44, 0.2) 3px, transparent 3px, transparent 6px);
  background-image: linear-gradient(to right, rgba(44, 44, 44, 0.3) 0%, rgba(44, 44, 44, 0.3) 15%, transparent 15%), repeating-linear-gradient(to right, rgba(44, 44, 44, 0.2) 0px, rgba(44, 44, 44, 0.2) 3px, transparent 3px, transparent 6px);
  background-size: 15% 1px, 100% 1px;
  background-position: left top, left top;
  background-repeat: no-repeat;
}
.p-greeting__history-item:first-child {
  padding-top: 0;
}
.p-greeting__history-item:first-child::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-greeting__history-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 25px 0;
  }
}
.p-greeting__history-date {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__history-date {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__history-date {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__history-date {
    font-size: 18px;
  }
}
.p-greeting__history-date {
  letter-spacing: 0.1em;
  color: #344f6e;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-greeting__history-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.p-greeting__history-event {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__history-event {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__history-event {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__history-event {
    font-size: 18px;
  }
}
.p-greeting__history-event {
  letter-spacing: 0.1em;
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2c2c2c;
}
.p-greeting {
  /*--------------------- 
    院長メッセージセクション
  -----------------------*/
}
.p-greeting__message {
  margin: 80px 0;
}
.p-greeting__message-text {
  margin-top: 40px;
}
.p-greeting__message-text p {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__message-text p {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__message-text p {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__message-text p {
    font-size: 18px;
  }
}
.p-greeting__message-text p {
  margin-bottom: 40px;
}
.p-greeting__message-text p:last-of-type {
  margin-bottom: 0;
}
.p-greeting__message-signature {
  margin-top: 60px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-signature {
    text-align: left;
  }
}
.p-greeting__message-director {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-greeting__message-director {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-greeting__message-director {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-greeting__message-director {
    font-size: 18px;
  }
}
.p-greeting__message-director {
  letter-spacing: 0.1em;
  margin: 0;
  color: #2c2c2c;
}