@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 などのクラスで利用
*/
/*--------------------- 
  ABOUT PAGE
-----------------------*/
.p-about {
  /*--------------------- 
    リード文
  -----------------------*/
}
.p-about__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-about__lead {
    margin-bottom: 40px;
  }
}
.p-about__lead-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-about__lead-text {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__lead-text {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__lead-text {
    font-size: 18px;
  }
}
.p-about__lead-text {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0;
}
.p-about {
  /*--------------------- 
    テーブル
  -----------------------*/
}
.p-about__table-wrapper {
  margin: 60px 0;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .p-about__table-wrapper {
    margin: 40px 0;
  }
}
.p-about__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
.p-about__table-row {
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
.p-about__table-row:last-child {
  border-bottom: none;
}
.p-about__table-header {
  font-style: normal;
  font-weight: 700;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__table-header {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__table-header {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__table-header {
    font-size: 16px;
  }
}
.p-about__table-header {
  letter-spacing: 0.05em;
  padding: 20px 24px;
  background: rgba(44, 44, 44, 0.03);
  text-align: left;
  vertical-align: top;
  width: 200px;
  border-right: 1px solid rgba(44, 44, 44, 0.1);
}
@media screen and (max-width: 768px) {
  .p-about__table-header {
    width: 120px;
    padding: 16px 12px;
  }
}
.p-about__table-data {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__table-data {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__table-data {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__table-data {
    font-size: 16px;
  }
}
.p-about__table-data {
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 20px 24px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-about__table-data {
    padding: 16px 12px;
  }
}
.p-about {
  /*--------------------- 
    従業員数（td内）
  -----------------------*/
}
.p-about__staff-count {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__staff-count {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__staff-count {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__staff-count {
    font-size: 16px;
  }
}
.p-about__staff-count {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .p-about__staff-count {
    margin-bottom: 16px;
  }
}
.p-about__staff-date {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__staff-date {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__staff-date {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__staff-date {
    font-size: 12px;
  }
}
.p-about__staff-date {
  letter-spacing: 0.05em;
}
.p-about__staff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 24px;
}
@media screen and (max-width: 768px) {
  .p-about__staff-list {
    gap: 8px 16px;
  }
}
.p-about__staff-item {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__staff-item {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__staff-item {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__staff-item {
    font-size: 16px;
  }
}
.p-about__staff-item {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  position: relative;
}
.p-about__staff-item::before {
  display: none;
}
.p-about {
  /*--------------------- 
    Googleマップ（td内）
  -----------------------*/
}
.p-about__googlemap {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-about__googlemap {
    margin-top: 20px;
  }
}
.p-about {
  /*--------------------- 
    詳細アクセス情報ボタン（td内）
  -----------------------*/
}
.p-about__access-button-wrapper {
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__access-button-wrapper {
    margin-top: 20px;
  }
}
.p-about__access-button {
  color: #ffffff;
  text-decoration: none;
}
.p-about__access-button:visited, .p-about__access-button:hover, .p-about__access-button:active, .p-about__access-button:focus {
  color: #ffffff;
  text-decoration: none;
}
.p-about__access-button {
  font-style: normal;
  font-weight: 500;
  font-size: calc(18 / 16 * 1rem);
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__access-button {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__access-button {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__access-button {
    font-size: 16px;
  }
}
.p-about__access-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #214287;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.p-about__access-button:hover {
  background: rgb(22.9821428571, 45.9642857143, 94.0178571429);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-about__access-button {
    padding: 14px 28px;
    gap: 8px;
  }
}
.p-about__access-button-text {
  letter-spacing: 0.05em;
}
.p-about__access-button-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-about__access-button-icon .material-icons {
  font-size: 18px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-about__access-button-icon {
    width: 20px;
    height: 20px;
  }
  .p-about__access-button-icon .material-icons {
    font-size: 16px;
  }
}
.p-about__access-button:hover .p-about__access-button-icon {
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.p-about {
  /*--------------------- 
    施設基準セクション
  -----------------------*/
}
.p-about__standards {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-about__standards {
    margin: 80px 0 30px;
  }
}
.p-about__standards-list {
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-about__standards-list {
    margin-top: 30px;
  }
}
.p-about__standards-item {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
.p-about__standards-item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-about__standards-item {
    padding: 16px 20px;
  }
}
.p-about__standards-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__standards-title {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__standards-title {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__standards-title {
    font-size: 16px;
  }
}
.p-about__standards-title {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0 0 12px 0;
}
@media screen and (max-width: 768px) {
  .p-about__standards-title {
    margin-bottom: 10px;
  }
}
.p-about__standards-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__standards-text {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__standards-text {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__standards-text {
    font-size: 12px;
  }
}
.p-about__standards-text {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-about__standards-text {
    line-height: 1.8;
  }
}
.p-about {
  /*--------------------- 
    院内掲示セクション
  -----------------------*/
}
.p-about__notices {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-about__notices {
    margin: 80px 0 30px;
  }
}
.p-about__notices-lead {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__notices-lead {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__notices-lead {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__notices-lead {
    font-size: 16px;
  }
}
.p-about__notices-lead {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-about__notices-lead {
    margin-top: 30px;
  }
}
.p-about__notices-list {
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-about__notices-list {
    margin-top: 30px;
  }
}
.p-about__notices-item {
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
.p-about__notices-item:last-child {
  border-bottom: none;
}
.p-about__notices-link {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__notices-link {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__notices-link {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__notices-link {
    font-size: 16px;
  }
}
.p-about__notices-link {
  color: #2c2c2c;
  text-decoration: none;
}
.p-about__notices-link:visited, .p-about__notices-link:hover, .p-about__notices-link:active, .p-about__notices-link:focus {
  color: #2c2c2c;
  text-decoration: none;
}
.p-about__notices-link {
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-about__notices-link:hover {
  background-color: rgba(44, 44, 44, 0.03);
}
@media screen and (max-width: 768px) {
  .p-about__notices-link {
    padding: 16px 20px;
    gap: 10px;
  }
}
.p-about__notices-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #DC143C;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about__notices-icon {
    font-size: 20px;
  }
}
.p-about {
  /*--------------------- 
    沿革セクション
  -----------------------*/
}
.p-about__history {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-about__history {
    margin: 80px 0 30px;
  }
}
.p-about__history-list {
  margin: 40px auto 0;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .p-about__history-list {
    max-width: 100%;
  }
}
.p-about__history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 30px 0;
  position: relative;
}
.p-about__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-about__history-item:first-child {
  padding-top: 0;
}
.p-about__history-item:first-child::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-about__history-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 25px 0;
  }
}
.p-about__history-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 144px;
          flex: 0 0 144px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-about__history-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.p-about__history-year {
  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-about__history-year {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__history-year {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__history-year {
    font-size: 18px;
  }
}
.p-about__history-year {
  letter-spacing: 0.1em;
  color: #344f6e;
}
.p-about__history-era {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-about__history-era {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__history-era {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__history-era {
    font-size: 12px;
  }
}
.p-about__history-era {
  letter-spacing: 0.05em;
  color: #344f6e;
  margin-top: 4px;
}
.p-about__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-about__history-event {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-about__history-event {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-about__history-event {
    font-size: 18px;
  }
}
.p-about__history-event {
  letter-spacing: 0.1em;
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2c2c2c;
}