@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 などのクラスで利用
*/
/*---------------------
  HOME PAGE
-----------------------*/
/*---------------------
  メインコンテンツ
-----------------------*/
.l-main .l-container-inner-1400 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/*---------------------
  メインビジュアル（新実装）
-----------------------*/
.p-home__mv {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.p-home__mv .mv-inner {
  position: relative;
  width: 100%;
  height: 700px;
  min-height: 400px;
}
.p-home__mv .mv-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.p-home__mv .mv-bg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-home__mv .mv-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.p-home__mv .mv-panel-clip {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home__mv .mv-panel-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
.p-home__mv .mv-panel-track.is-sliding {
  -webkit-animation: horizontalLoop 60s linear infinite;
          animation: horizontalLoop 60s linear infinite;
}
@-webkit-keyframes horizontalLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes horizontalLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-home__mv .mv-panel-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home__mv .mv-panel {
  width: 260px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-shadow: 0px -9px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0px -9px 18px rgba(0, 0, 0, 0.06);
}
.p-home__mv .mv-panel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.p-home__mv .mv-caption {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 40;
  text-align: center;
  pointer-events: auto;
}
.p-home__mv .mv-copy {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: clamp(24px, 5.2vw, 40px);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}
@media (max-width: 900px) {
  .p-home__mv .mv-inner {
    height: 480px;
  }
  .p-home__mv .mv-caption {
    top: 30px;
  }
  .p-home__mv .mv-panel {
    width: 195px;
    height: 300px;
  }
  .p-home__mv .mv-panel-track {
    gap: 20px;
  }
  .p-home__mv .mv-panel-set {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p-home__mv .mv-caption {
    top: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-home__mv .mv-panel-track {
    -webkit-animation: none !important;
            animation: none !important;
  }
}

/*---------------------
  メインビジュアル（旧実装・コメントアウト）
-----------------------*/
/*
.p-home__mv {
  display: flex;
  align-items: center;
  min-height: 600px;
  gap: 60px;
  margin: 60px 0;

  &-content {
    flex: 1;
  }

  &-title {
    margin-bottom: 30px;

    &-main {
      @include font-cg(48, 900, $text-primary);
      display: block;
      margin-bottom: 10px;
    }

    &-sub {
      @include font-cg(32, 700, $primary-color);
      display: block;
    }
  }

  &-text {
    @include font-cg(18, 400, $text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  &-buttons {
    display: flex;
    gap: 20px;
  }

  &-image {
    flex: 1;
    text-align: center;

    img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }
  }

  // レスポンシブ
  @include sp1000 {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    margin: 40px 0;

    &-title {
      &-main {
        @include font-cg(32, 900, $text-primary);
      }

      &-sub {
        @include font-cg(24, 700, $primary-color);
      }
    }

    &-text {
      @include font-cg(16, 400, $text-secondary);
    }

    &-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
}
*/
/*---------------------
  診療科案内
-----------------------*/
.p-home__departments {
  margin: 80px 0;
}
.p-home__departments-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.p-home__departments-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-home__departments-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.p-home__departments-icon {
  margin-bottom: 20px;
}
.p-home__departments-icon img {
  width: 60px;
  height: 60px;
}
.p-home__departments-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 15px;
}
.p-home__departments-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #373232;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 1.6;
}

/*---------------------
  診療案内
-----------------------*/
.p-home__services {
  margin: 80px 0;
  background: #e1e9f5;
  padding: 60px 0;
}
.p-home__services-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 40px;
}
.p-home__services-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home__services-subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: calc(24 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}
.p-home__services-description {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #373232;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 1.8;
  margin-bottom: 30px;
}
.p-home__services-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.p-home__services-time, .p-home__services-tel {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: inherit;
  line-height: inherit;
}
.p-home__services-time strong, .p-home__services-tel strong {
  font-weight: 700;
}
.p-home__services-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home__services-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 1000px) {
  .p-home__services-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__services-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

/*---------------------
  病院案内
-----------------------*/
.p-home__about {
  margin: 80px 0;
}
@media screen and (max-width: 1000px) {
  .p-home__about {
    margin: 60px 0 20px;
  }
}
.p-home__about-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .p-home__about-header {
    margin-bottom: 40px;
  }
}
.p-home__about-label {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-home__about-label {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__about-label {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__about-label {
    font-size: 12px;
  }
}
.p-home__about-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.p-home__about-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(36 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .p-home__about-title {
    font-size: 36px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__about-title {
    font-size: calc(2.5vw + 16px);
  }
}
@media (max-width: 319px) {
  .p-home__about-title {
    font-size: 24px;
  }
}
.p-home__about-title {
  margin: 0;
}
.p-home__about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .p-home__about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-home__about-image {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 45%;
  max-width: 600px;
  min-width: 300px;
}
@media screen and (max-width: 1000px) {
  .p-home__about-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}
.p-home__about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  .p-home__about-image img {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.p-home__about-text {
  position: relative;
  z-index: 2;
  background-color: #ebf7fb;
  padding: 50px 40px;
  margin-left: -80px;
  margin-top: 35px;
  border-radius: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1000px) {
  .p-home__about-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0;
    margin-top: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
}
.p-home__about-description {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (min-width: 800px) {
  .p-home__about-description {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__about-description {
    font-size: calc(0.2083333333vw + 14.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__about-description {
    font-size: 15px;
  }
}
.p-home__about-description {
  margin-bottom: 20px;
}
.p-home__about-description:last-of-type {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .p-home__about-description {
    margin-bottom: 16px;
  }
  .p-home__about-description:last-of-type {
    margin-bottom: 30px;
  }
}
.p-home__about-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 520px) {
  .p-home__about-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.p-home__about-button {
  color: #214287;
  text-decoration: none;
}
.p-home__about-button:visited, .p-home__about-button:hover, .p-home__about-button:active, .p-home__about-button:focus {
  color: #214287;
  text-decoration: none;
}
.p-home__about-button {
  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;
  gap: 8px;
  padding: 16px 28px;
  background-color: #ffffff;
  border: 2px solid #214287;
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
@media screen and (max-width: 1000px) {
  .p-home__about-button {
    min-width: auto;
    padding: 14px 24px;
  }
}
.p-home__about-button:hover {
  background-color: #214287;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(33, 66, 135, 0.3);
          box-shadow: 0 4px 12px rgba(33, 66, 135, 0.3);
}
.p-home__about-button:hover .p-home__about-button-text {
  color: #ffffff;
}
.p-home__about-button:hover .p-home__about-button-icon {
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.p-home__about-button-text {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__about-button-text {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__about-button-text {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__about-button-text {
    font-size: 14px;
  }
}
.p-home__about-button-text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-home__about-button-icon {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-home__about-button-icon {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__about-button-icon {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__about-button-icon {
    font-size: 18px;
  }
}
.p-home__about-button-icon {
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

/*---------------------
  お知らせ
-----------------------*/
.p-home__news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-home__news-header {
    margin-bottom: 30px;
  }
}
.p-home__news-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-home__news-label {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-home__news-label {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-label {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__news-label {
    font-size: 12px;
  }
}
.p-home__news-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.p-home__news-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(36 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .p-home__news-title {
    font-size: 36px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-title {
    font-size: calc(2.5vw + 16px);
  }
}
@media (max-width: 319px) {
  .p-home__news-title {
    font-size: 24px;
  }
}
.p-home__news-title {
  margin: 0;
}
.p-home__news-more {
  color: #214287;
  text-decoration: none;
}
.p-home__news-more:visited, .p-home__news-more:hover, .p-home__news-more:active, .p-home__news-more:focus {
  color: #214287;
  text-decoration: none;
}
.p-home__news-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #214287;
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-home__news-more {
    padding: 10px 20px;
  }
}
.p-home__news-more:hover {
  background-color: #214287;
}
.p-home__news-more:hover .p-home__news-more-text {
  color: #ffffff;
}
.p-home__news-more:hover .p-home__news-more-icon {
  color: #ffffff;
}
.p-home__news-more-text {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__news-more-text {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-more-text {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__news-more-text {
    font-size: 14px;
  }
}
.p-home__news-more-text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-home__news-more-icon {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-home__news-more-icon {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-more-icon {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__news-more-icon {
    font-size: 18px;
  }
}
.p-home__news-more-icon {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-home__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-home__news-list {
    gap: 16px;
  }
}
.p-home__news-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-home__news-item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-home__news-link {
  color: #2c2c2c;
  text-decoration: none;
}
.p-home__news-link:visited, .p-home__news-link:hover, .p-home__news-link:active, .p-home__news-link:focus {
  color: #2c2c2c;
  text-decoration: none;
}
.p-home__news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 30px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-home__news-link {
    padding: 20px;
    gap: 12px;
  }
}
.p-home__news-date {
  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-home__news-date {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-date {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__news-date {
    font-size: 14px;
  }
}
.p-home__news-date {
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .p-home__news-date {
    min-width: 80px;
  }
}
.p-home__news-item-title {
  font-style: normal;
  font-weight: 500;
  font-size: calc(18 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__news-item-title {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-item-title {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__news-item-title {
    font-size: 16px;
  }
}
.p-home__news-item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-home__news-link:hover .p-home__news-item-title {
  color: #214287;
}
.p-home__news-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-home__news-arrow .material-icons {
  font-style: normal;
  font-weight: 400;
  font-size: calc(28 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-home__news-arrow .material-icons {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__news-arrow .material-icons {
    font-size: calc(0.8333333333vw + 21.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__news-arrow .material-icons {
    font-size: 24px;
  }
}
.p-home__news-arrow .material-icons {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-home__news-link:hover .p-home__news-arrow .material-icons {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.p-home__news-empty {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
  padding: 40px 20px;
}

/*---------------------
  アクセス
-----------------------*/
.p-home__access {
  margin: 80px 0;
}
@media screen and (max-width: 1000px) {
  .p-home__access {
    margin: 60px 0;
  }
}
.p-home__access-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-home__access-header {
    margin-bottom: 40px;
  }
}
.p-home__access-label {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 800px) {
  .p-home__access-label {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__access-label {
    font-size: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__access-label {
    font-size: 12px;
  }
}
.p-home__access-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.p-home__access-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(36 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .p-home__access-title {
    font-size: 36px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__access-title {
    font-size: calc(2.5vw + 16px);
  }
}
@media (max-width: 319px) {
  .p-home__access-title {
    font-size: 24px;
  }
}
.p-home__access-title {
  margin: 0;
}
.p-home__access-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-home__access-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-home__access-map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-home__access-map {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-home__access-map iframe {
  width: 100%;
  border-radius: 8px;
}
.p-home__access-info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 360px;
}
@media screen and (max-width: 768px) {
  .p-home__access-info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.p-home__access-subtitle {
  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-home__access-subtitle {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__access-subtitle {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-home__access-subtitle {
    font-size: 16px;
  }
}
.p-home__access-subtitle {
  margin-bottom: 12px;
}
.p-home__access-address {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-home__access-address {
    margin-bottom: 24px;
  }
}
.p-home__access-address-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__access-address-text {
    font-size: 15px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__access-address-text {
    font-size: calc(0.2083333333vw + 13.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__access-address-text {
    font-size: 14px;
  }
}
.p-home__access-address-text {
  font-style: normal;
}
.p-home__access-transport {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-home__access-transport {
    margin-bottom: 24px;
  }
}
.p-home__access-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-home__access-list li {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__access-list li {
    font-size: 15px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__access-list li {
    font-size: calc(0.2083333333vw + 13.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__access-list li {
    font-size: 14px;
  }
}
.p-home__access-list li {
  padding: 6px 0 6px 20px;
  position: relative;
}
.p-home__access-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-home__access-parking-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__access-parking-text {
    font-size: 15px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__access-parking-text {
    font-size: calc(0.2083333333vw + 13.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__access-parking-text {
    font-size: 14px;
  }
}
.p-home__access-parking-text {
  margin: 0;
}

/*---------------------
  セクション共通
-----------------------*/
.p-home__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.p-home__section-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(32 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}

.p-home__section-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #373232;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 1.6;
}

/*---------------------
  ボタン
-----------------------*/
.c-btn {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #ffffff;
  letter-spacing: inherit;
  line-height: inherit;
}
.c-btn:visited, .c-btn:hover, .c-btn:active {
  text-decoration: none;
}
.c-btn {
  padding: 15px 30px;
  border-radius: 25px;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.c-btn--primary {
  background: #214287;
}
.c-btn--primary:hover {
  background: #243969;
}
.c-btn--secondary {
  background: transparent;
  border: 2px solid #214287;
  color: #214287;
}
.c-btn--secondary:hover {
  background: #214287;
  color: #ffffff;
}
.c-btn__icon {
  margin-right: 8px;
}
.c-btn__text {
  display: inline-block;
}

/*---------------------
  基本方針セクション
-----------------------*/
.p-home__policy {
  margin: 80px 0;
}
@media screen and (max-width: 1000px) {
  .p-home__policy {
    margin: 60px 0;
  }
}
.p-home__policy-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .p-home__policy-grid {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 640px) {
  .p-home__policy-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
  }
}
.p-home__policy-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-home__policy-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 640px) {
  .p-home__policy-item:hover {
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (max-width: 640px) {
  .p-home__policy-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    text-align: left;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 16px;
  }
  .p-home__policy-item:last-child {
    border-bottom: none;
  }
}
.p-home__policy-icon {
  margin-bottom: 12px;
}
@media screen and (max-width: 640px) {
  .p-home__policy-icon {
    margin-bottom: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-home__policy-icon .material-icons {
  font-size: 36px;
  color: #214287;
}
@media screen and (max-width: 768px) {
  .p-home__policy-icon .material-icons {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .p-home__policy-icon .material-icons {
    font-size: 40px;
  }
}
@media screen and (max-width: 640px) {
  .p-home__policy-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-home__policy-item-title {
  font-style: normal;
  font-weight: 500;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .p-home__policy-item-title {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__policy-item-title {
    font-size: calc(0.2083333333vw + 12.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__policy-item-title {
    font-size: 13px;
  }
}
.p-home__policy-item-title {
  letter-spacing: 0.08em;
  margin: 0 0 8px 0;
  color: #2c2c2c;
}
@media screen and (max-width: 640px) {
  .p-home__policy-item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.3;
  }
}
.p-home__policy-item-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-home__policy-item-text {
    font-size: 13px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-home__policy-item-text {
    font-size: calc(0.2083333333vw + 11.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-home__policy-item-text {
    font-size: 12px;
  }
}
.p-home__policy-item-text {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .p-home__policy-item-text {
    font-size: 13px;
    line-height: 1.6;
  }
}