@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
:root{
  --main-clr: #127871;
}
body{--sans:"Noto Sans JP", sans-serif;}
body{--serif:"Noto Serif JP", sans-serif;}

body>main{
  padding-top: 100px;
  overflow: hidden;
}
@media screen and (min-device-width: 1025px) {
  a:hover{
    transition:all 0.19s ease;
    opacity: 0.5;
  }
}
@media screen and (max-width: 1024px) {
  body>main {
    padding-top: 80px;
  }
}

/* ==========================
   Reset & base
========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

body {
  margin: 0;
  /* ↓ XDの本文フォントに合わせて変更してください */
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", "Cormorant";
  color: #262626;
  font-weight: 500;
  line-height: 1.7;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* デフォルトでは改行を無効化（PCは1行） */
.sp-br {
  display: none;
}
.sp-br2{
    display: none;
}
.sp-br3{
    display: none;
}

/* スマホ幅では改行を有効化 */
@media (max-width: 1180px) {
  .sp-br3 {
    display: inline;
  }
}
@media (max-width: 768px) {
  .sp-br2 {
    display: inline;
  }
}
@media (max-width: 480px) {
  .sp-br {
    display: inline;
  }
}

/* デフォルトでは改行を有効化（SPは1行） */
.pc-br{
    display: inline;
}
@media (max-width: 960px) {
  .pc-br{
      display: none;
  }
}

.section {
  padding: 40px 0;
}

.section-inner {
  width: 90%;
  max-width: 1080px; /* XDのコンテンツ幅に合わせて調整 */
  margin: 0 auto;
}

.sec-title {
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.08em; /* XDに合わせて調整 */
}

.sec-title-left {
  text-align: left;
}

.sec-en {
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #00a0a5; /* XDの英字タイトル色に合わせて変更 */
}

@media screen and (max-width: 640px) {
    .sec-en {
          font-size: 2.0rem;
        text-align: center;
        }
}

.sec-sub {
  font-size: 1.2rem;
  margin-left: 10px;
}


@media screen and (max-width: 1024px) {
  .mv-sec-title{
    font-size: 20px !important;
  }
  .mv-sec-en {
    font-size: 50px;
  }

  .lower-mv{
    height: 320px;
  }
}

.sec-title-left {
  text-align: left;
}

/* Buttons */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #00a0a5; /* メインカラー */
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

.btn-outline {
  background-color: #fff;
  color: #00a0a5;
}

.btn-filled {
  background-color: #00a0a5;
  color: #fff;
}

.btn-large {
  padding: 14px 40px;
  font-size: 1rem;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* フォントの指定 */


/* PC/SP切り替え用 */

.pc-only {
  display: block;
}

@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
}

/* 820px未満ではヘッダー右の電話ブロックを隠す */
@media (max-width: 670px) {
  .header-tel {
    display: none;
  }
}

/* 540px以下ではヘッダーの資料請求・見学予約ボタンも非表示 */
@media (max-width: 928px) {
  .header-buttons {
    display: none !important;
  }
}


.l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.l-header-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.header-logo{
  text-align: left;
  margin-bottom: 22px;
}

.header-logo img {
  width: 300px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-tel {
  text-align: right;
  font-size: 0.8rem;
}

.header-tel-number {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.header-tel-time {
  margin: 2px 0 0;
  color: #666;
}

.header-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.header-nav a {
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #00a0a5;
  transition: width 0.2s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 8px;
}

/* ハンバーガー */

.header-menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.header-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background-color: #333;
}

/* SPメニュー */

.sp-menu {
  position: fixed;
  inset: 64px 30px 0 30px; /* ヘッダー高さに合わせて調整 */
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 900;
}

.sp-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sp-menu-inner {
  background-color: #fff;
  padding: 24px 20px 32px;
}

.sp-nav ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.sp-nav li + li {
  border-top: 1px solid #eee;
}

.sp-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
}

.sp-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* SPメニュー内の電話表示 */
.sp-menu-tel {
  margin: 0 0 16px;
  padding: 12px 0 16px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.sp-tel-number {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.sp-tel-number a {
  text-decoration: none;
}

.sp-tel-time {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: #666;
}

/* メニューオープン時に背面スクロールを止める用（任意） */
body.is-menu-open {
  overflow: hidden;
}

/* ==========================
   Main Visual（スライダー付き）
========================== */

.mv {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;    /* ★ デフォルトは縦中央 */
  margin-top:0px !important; /*AP修正*/   /* ヘッダー高さ分 */
  overflow: hidden;
}

/* スライダー本体 */
.mv-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.mv-slide {
  flex: 0 0 100%;
  height: 100%;
}

.mv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* グラデーション */
.mv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.45)
  );
  pointer-events: none;
}

/* テキストレイヤー */
.mv-inner {
  position: relative;
  color: #fff;
  width: 90%;
  max-width: 900px;
  margin-left: 100px;
}

.mv-inner-alt {
  position: relative;
  color: #fff;
  width: 90%;
  max-width: 900px;
  margin-left: 60px;
    margin-top: 30%;
}

.mv-copy-small_orig {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.mv-copy-small {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
    line-height: 170%;
}

.mv-copy-main_orig {
  font-size: 3.2rem;
  line-height: 1.6;
  margin: 0 0 16px;
  font-weight: 200;
}

.mv-copy-main {
  font-size: 3.65rem;
  line-height: 1.4;
  margin: 0 0 16px;
  font-weight: 200;
}

.mv-copy-sub {
  font-size: 1.0rem;
}

.sp-hide-br br {
    display: none;
}

/* ========= wide-pc（1240px以下）用 ========= */
@media (min-width: 1241px) {
    .mv-copy-main {
		margin: 0 0 80px;
    }
}

/* ========= SP（1240px以下）用 ========= */
@media (max-width: 1240px) {
    .mv-inner-alt {
        margin-top: 35%;
        margin-left: 50px;
    }
}

/* ========= SP（1080px以下）用 ========= */
@media (max-width: 1080px) {
    .mv-inner-alt {
        margin-top: 40%;
    }
}
    
/* ========= SP（768px以下）用 ========= */
@media (max-width: 768px) {
  .mv {
    height: 80vh;            /* 必要なら 70vh とかに調整 */
    min-height: 480px;
    align-items: center;     /* ★ 下寄せではなく中央 */
    padding-bottom: 0;       /* ★ 下余白もゼロに */
  }
  .mv-inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .mv-copy-main_orig {
    font-size: 1.8rem;
  }
    .mv-inner-alt {
        margin-top: 48%;
        margin-left: 50px;
    }
    .mv-copy-main {
        font-size: 3.2rem;
  }
}
@media screen and (max-width: 630px) {
    .mv-inner-alt {
        margin-top: 55%;
        margin-left: 40px;
    } 
    .mv-copy-main {
      font-size: 2.7rem;
    }   
}
@media screen and (max-width: 540px) {
    .mv-inner-alt {
        margin-top: 60%;
    }
    .mv-copy-main {
        font-size: 2.6rem;
        line-height: 150%;
    }
    .sp-hide-br br{
        display: block;
    }
}

/* ページトップボタンの配置（Contact セクション手前） */
.pagetop-wrap {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 16px;
  text-align: right;
}

/* ボタン本体 */
.pagetop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #00513b;
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

/* アイコン */
.pagetop-icon {
  width: 20px;
  height: 20px;
  fill: #00513b;
}

/* ホバー時 */
.pagetop-button:hover {
  background: #00513b;
}

.pagetop-button:hover .pagetop-icon {
  fill: #ffffff;
}

/* SPでは少し大きく余白を空けてもOK */
@media screen and (max-width: 767px) {
  .pagetop-wrap {
    margin-bottom: 16px;
  }
}


/* ==========================
   ABOUT（ご挨拶）
========================== */

.about {
  background-color: #fff;
}

/* PCレイアウト：左右に画像・中央にテキスト */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.8fr;
  grid-template-areas: "left text right";
  column-gap: 20px;
  align-items: center;
}

/* グリッドエリア割り当て */
.about-image-left {
  grid-area: left;
}

.about-text {
  grid-area: text;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.about-image-right {
  grid-area: right;
}

.about-text .sec-title {
  text-align: center;
  margin-bottom: 32px;
}

.about-lead {
  margin: 0 0 16px;
  font-size: 1.15rem;
  line-height: 2.0;
}

/* 画像共通 */
.about-image img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* 右画像：テキストの天側 */
.about-image-right {
  align-self: flex-start;
  justify-self: center;
}

/* 左画像：テキストの地側 */
.about-image-left {
  align-self: flex-end;
  justify-self: center;
}

/* ========== タブレット〜スマホ用 ========== */
@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"  /* 上：右側の画像（concept1） */
      "text"   /* 中央：テキスト */
      "left";  /* 下：左側の画像（concept2） */
    row-gap: 24px;
  }

  .about-text {
    max-width: 100%;
    padding: 0 8px;
  }

  .about-text .sec-title {
    margin-bottom: 20px;
  }

  .about-lead {
    font-size: 1.2rem;
    line-height: 1.9;
  }

  .about-image img {
    max-width: 260px;   /* スマホ／タブレットでは少し小さめに */
  }

  .about-image-left,
  .about-image-right {
    align-self: center;
  }
}

/* さらに狭いスマホ幅 */
@media (max-width: 640px) {
  .section.about {
    padding: 56px 0;         /* 上下余白も少し詰める */
  }

  .about-lead {
    font-size: 1.0rem;
    line-height: 1.8;
  }

  .about-image img {
    max-width: 220px;        /* 片手スマホで見やすいサイズ感 */
  }
}

/* ==========================
   ABOUT 装飾背景（line1 / line2）
========================== */

.section.about {
  position: relative;
  overflow: visible;
}

/* 左上 line1.svg */
.section.about::before {
  content: "";
  position: absolute;
  top: -30px;       /* もう少し本文に近づける */
  left: 50%;        /* セクション中央基準で少し左へ寄せる */
  transform: translateX(-380px);  /* ★ この数値が一番効く（横位置調整） */
  width: 420px;     /* 少し大きく */
  height: 300px;
  background: url("../img/line1.svg") no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;    /* XDの淡い感じに近づける */
}

/* 右下 line2.svg */
.section.about::after {
  content: "";
  position: absolute;
  bottom: -20px;     /* テキスト終わりに近づける */
  left: 50%;
  transform: translateX(160px); /* 右寄りに配置 */
  width: 440px;
  height: 300px;
  background: url("../img/line2.svg") no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* 背景をテキストより後ろに */
.about-inner,
.about-text,
.about-image {
  position: relative;
  z-index: 1;
}

/* SPでは控えめに */
@media (max-width: 768px) {
  .section.about::before {
    top: -10px;
    left: 50%;
    transform: translateX(-180px);
    width: 240px;
    height: 160px;
  }

  .section.about::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(60px);
    width: 260px;
    height: 160px;
  }
}

/* ==========================
   Feature section
========================== */

.feature {
  background: linear-gradient(to bottom, #f4fbf7 0%, #ffffff 60%);
}

.feature-header .sec-title {
  margin-bottom: 8px;
}

.feature-lead {
  text-align: center;
  margin-bottom: 40px;
    font-size: 1.2rem;
}

@media screen and (max-width: 640px) {
    .feature-lead {
        font-size: 1.1rem;
    }
}

/* 1行＝説明＋画像 の塊を縦に並べる */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* PC：左カード / 右画像 の2カラム */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: stretch;
}

/* カード側（左） */
.feature-item {
  background: linear-gradient(135deg, #0099a8 0%, #3bb27f 100%);
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
}

.feature-label {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: none;
  margin: 0 0 6px;
  opacity: 0.85;
}

.feature-title {
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.feature-text {
  font-size: 1.1rem;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
    .feature-text {
        font-size: 1.0rem;
    }
}

.feature-link {
  display: inline-flex;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

/* 画像側（右） */
.feature-img {
  height: 100%;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* 空室情報の帯 */
.feature-bottom-cta {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: 999px;
  background-color: #f8fbf7;
  border: 1px solid #e0efe5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.feature-bottom-text {
  font-weight: 600;
}

/* ▼ レスポンシブ（SPでは1カラムに） */

@media (max-width: 960px) {
  .feature-row {
    grid-template-columns: 1fr;   /* 説明→画像の1カラムに */
  }

  .feature-img {
    height: auto;
  }

  .feature-img img {
    height: auto;                 /* 画像は自然な縦横比に */
  }
}

@media (max-width: 640px) {
  .feature-bottom-cta {
    flex-direction: column;
    border-radius: 24px;
  }
}


/* ==========================
   News
========================== */

.news {
  background-color: #fff;
}

.section-header-flex {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-header-flex .sec-title {
  text-align: left;
  margin: 0;
}

.news-archive-link {
  font-size: 0.9rem;
  border-bottom: 1px solid #999;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}

.news-thumb {
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.8rem;
  color: #777;
  margin: 0 0 4px;
}

.news-title {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 900px) {
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   Living
========================== */

.living {
  background: #f4fbf7;
}

.living-header .sec-title {
  margin-bottom: 32px;
}

.living-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.living-item {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.living-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.living-thumb img {
  width: 100%;
  height: 180px; /* XDの画像比率に合わせて調整 */
  object-fit: cover;
}

.living-title {
  padding: 14px 16px 16px;
  font-size: 1.3rem;
  text-align: center;
}

@media (max-width: 900px) {
  .living-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .living-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   Contact
========================== */

.contact {
  position: relative;
  color: #fff;
}

.contact .sec-title {
  font-size: 1.8rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.08em;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/contact_bg.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.contact-inner {
  text-align: center;
}

.contact-text {
  margin-bottom: 20px;
}

.contact-tel {
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  margin: 8px 0 4px;
}


/* ==========================
   Footer
========================== */

/* 共通 */
.l-footer {
  margin-top: 60px;
  font-size: 14px;
  color: #555;
  background-color: #ffffff;  /* ← これを追加：上段は白背景にする */
}

/* ==========================
   Feature 下層ページ
========================== */

/* ========== Feature02・03 ギャラリースライダー ========== */

/* ベース：スライダー化するギャラリーははみ出しを隠す */
.feature-detail-gallery.js-feature-slider {
  display: block;       /* gridを解除 */
  overflow: hidden;
  position: relative;
}

/* 中身を横一列に並べるトラック */
.feature-detail-slider-track {
  display: flex;
  width: max-content;
  animation: featureSlider 40s linear infinite; /* ゆっくり右→左に流れる */
}

/* 各サムネイル（1枚あたり） */
.feature-detail-gallery.js-feature-slider .feature-detail-thumb {
  flex: 0 0 auto;
  width: 320px;          /* ご希望の幅 */
  margin-right: 16px;    /* 画像同士の余白（お好みで） */
}

.feature-detail-gallery.js-feature-slider .feature-detail-thumb img {
  width: 100%;
  height: 240px;         /* ご希望の高さ */
  object-fit: cover;
  border-radius: 14px;
}

/* 無限ループ用：片側へ流れていくアニメーション */
@keyframes featureSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 2周分並べるので、その半分だけ移動 */
  }
}

/* SPでは少し小さくしてはみ出しを防ぐ */
@media (max-width: 768px) {
  .feature-detail-gallery.js-feature-slider .feature-detail-thumb {
    width: 70vw;           /* 画面幅の7割くらい */
  }

  .feature-detail-gallery.js-feature-slider .feature-detail-thumb img {
    height: auto;          /* 比率優先にしておくと安全 */
  }
}



/* Hero */

/* Hero */
.page-feature .feature-hero {
  position: relative;
  margin-top: 0px; /* 固定ヘッダー分 */
}

.feature-hero-bg {
  height: 320px;
  overflow: hidden;
}

.feature-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
}

.feature-hero-inner .sec-en {
  color: #fff;
}

.feature-hero-title {
  color: #fff;
  text-align: left;
  font-size: 2.9rem;
  font-weight: 200;
}

/* Intro */
.feature-intro {
  background-color: #fff;
}

.feature-intro-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.feature-intro-inner-map {
    width: 70%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 40px;
}

.feature-intro-block p {
  margin: 0;
    text-align: left;
    font-size: 1.8rem
}

.feature-intro-block p.lead {
  margin: 0;
    text-align: left;
    font-size: 1.2rem
}

.feature-intro-block-1clum p {
  margin: 0;
    text-align: left;
    font-size: 1.2rem
}


.feature-intro-block-1clum p.lead {
    font-size: 1.2rem;
}

@media (max-width: 640px) {
  .feature-intro-block p {
    font-size: 1.4rem;
  }

  .feature-intro-block p.lead {
    font-size: 1rem;
  }
}

.movie{
    text-align: center;
    margin: 40px auto;
}

.movie .title{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .movie iframe {
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
    }
}

/* Nav（4つの丸） */
.feature-nav {
  background: #f4fbf7;
  padding-top: 40px;
  padding-bottom: 40px;
}

.feature-nav-inner {
  display: flex;
  justify-content: center;
}

.feature-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.feature-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #00a0a5;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.feature-nav-list li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  opacity: 0.95;
}

.feature-nav-label {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Feature detail 共通 */
.feature-detail {
  padding-top: 0;
}

.feature-detail-head {
  background: #00a0a5;
  color: #fff;
}

.feature-detail-head-inner {
  padding: 24px 0;
}

.feature-detail-en {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  margin: 0 0 4px;
}

.feature-detail-title {
  font-size: 1.9rem;
  margin: 0;
}
@media (max-width: 768px) {
    .feature-detail-title {
        font-size: 1.4rem;
    }
}

.feature-detail-body {
  padding-top: 40px;
}

/* レイアウト */
.feature-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: stretch;
}

.feature-detail-layout-reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
}

.feature-detail-text {
  font-size: 1.1rem;
    line-height: 180%;
}

.feature-detail-text p {
  margin: 0 0 16px;
}
@media (max-width: 768px) {
    .feature-detail-text {
        font-size: 1.0rem;
    }
}

.feature-detail-btn {
  margin-top: 8px;
}

/* 01：メイン画像1枚 */
.feature-detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* 02〜04：ギャラリー */
.feature-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-detail-gallery-wide {
  margin-top: 24px;
}

.feature-detail-gallery-narrow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-detail-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

/* CTA */
.feature-cta {
  background: #f4fbf7;
  text-align: center;
}

.feature-cta-btn {
  display: inline-flex;
}

/* ========= レスポンシブ ========= */

@media (max-width: 960px) {
  .feature-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

 .feature-intro-inner-map {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-detail-layout,
  .feature-detail-layout-reverse {
    grid-template-columns: 1fr;
  }

  .feature-detail-main-image img {
    height: auto;
  }

  .feature-detail-gallery,
  .feature-detail-gallery-wide,
  .feature-detail-gallery-narrow {
    grid-template-columns: 1fr 1fr;
  }

  .feature-detail-thumb img {
    height: 160px;
  }
}

@media (max-width: 640px) {
  .feature-hero-bg {
    height: 240px;
  }

  .feature-hero-inner {
    align-items: center;
    text-align: center;
  }

  .feature-hero-title {
    text-align: center;
    font-size: 2.3rem;
  }

  .feature-nav-list {
    justify-content: center;
  }

  .feature-nav-list li a {
    width: 130px;
    height: 130px;
  }

  .feature-detail-head-inner {
    text-align: center;
  }

  .feature-detail-gallery,
  .feature-detail-gallery-wide,
  .feature-detail-gallery-narrow {
    grid-template-columns: 1fr;
  }

  .feature-detail-thumb img {
    height: auto;
  }
}

/* ==========================
   Consult 下層ページ
========================== */

/* Hero */
.page-consult .consult-hero {
  position: relative;
  
}

.consult-hero-bg {
  height: 320px;
  overflow: hidden;
}

.consult-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
}

.consult-hero-inner .sec-en {
  color: #fff;
}

.consult-hero-title {
  color: #fff;
  text-align: left;
  font-size: 2.9rem;
  font-weight: 200;
}

/* Intro */
.consult-intro {
  background-color: #fff;
}

.consult-intro-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.consult-intro-block p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.9;
}
@media (max-width: 768px) {
    .consult-intro-block p {
      font-size: 1.0rem;
    }
}

h2.consult-intro-title{
    font-weight: 200;
    margin-top: 0px;
    font-size: 2rem;
}
@media (max-width: 640px) {
    h2.consult-intro-title{
        font-size: 1.4rem;
    }
}


.consult-intro-copy p {
  font-size: 1.4rem;
}

/* Flow */
.consult-flow {
  background: #f4fbf7;
}

.consult-flow-header .sec-title {
  margin-bottom: 8px;
}

.consult-flow-lead {
  text-align: center;
  margin-bottom: 32px;
}

.consult-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: consult-step;
}

.consult-flow-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  position: relative;
}

.consult-flow-step::before {
  content: counter(consult-step, decimal-leading-zero);
  counter-increment: consult-step;
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Cormorant", serif;
  font-size: 1.6rem;
  opacity: 0.25;
}

.consult-flow-step-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.consult-flow-step-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Q&A */
.consult-qa {
  background-color: #fff;
}

.consult-qa-header .sec-title {
  margin-bottom: 24px;
}

/* Q&A：1カラム・アコーディオン */

.consult-qa-list {
  max-width: 1000px;
  margin: 0 auto;
}

.consult-qa-item {
  background-color: #f8f8f6;
  border-radius: 0;
  margin-bottom: 24px;
  border-left: 8px solid #00a0a5; /* 左のグリーンバー */
  overflow: hidden;
}

/* Qボタン */
.consult-qa-toggle {
  width: 100%;
  padding: 20px 32px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.consult-qa-label {
  font-family: "Cormorant", "Zen Old Mincho";
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.consult-qa-question {
  font-family: "Cormorant", "Zen Old Mincho";
  font-size: 1.3rem;
}

/* A部分（アコーディオン本体） */
.consult-qa-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  padding-bottom: 0;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
    background-color: #FFFFFE;
}

.consult-qa-body p {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.9;
}
@media (max-width: 640px) {
    .consult-qa-body p {
        font-size: 1.1rem;
    }
}

.consult-qa-body .consult-qa-link {
  margin-top: 8px;
}

.consult-qa-body .consult-qa-link a {
  border-bottom: 1px solid #00a0a5;
}

.feature-detail-text .consult-qa-link {
  margin-top: 8px;
}

.feature-detail-text .consult-qa-link a {
  border-bottom: 1px solid #00a0a5;;
}

/* 開いた状態 */
.consult-qa-item.is-open .consult-qa-body {
  max-height: 1000px;        /* 十分大きめの値でOK */
  padding-bottom: 24px;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .consult-qa-toggle {
    padding: 16px 20px;
  }

  .consult-qa-body {
    padding: 0 20px;
  }

  .consult-qa-question {
    font-size: 1.2rem;
      font-weight: 400;
  }
}


/* ご相談窓口 */
.consult-contact {
  background: #f4fbf7;
}

.consult-contact-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.consult-contact-text p {
  margin-top: 0;
}

.consult-contact-tel {
  margin: 16px 0 0;
}

.consult-contact-tel-label {
  font-size: 0.9rem;
}

.consult-contact-tel-number {
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  margin: 4px 0;
}

.consult-contact-tel-time {
  font-size: 0.9rem;
  color: #666;
}

.consult-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* ========= レスポンシブ ========= */

@media (max-width: 960px) {
  .consult-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .consult-flow-step {
    flex: 1 1 calc(50% - 16px);
  }

  .consult-qa-grid {
    grid-template-columns: 1fr;
  }

  .consult-contact-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .consult-contact-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .consult-hero-bg {
    height: 240px;
  }

  .consult-hero-inner {
    align-items: center;
    text-align: center;
  }

  .consult-hero-title {
    text-align: center;
    font-size: 2.3rem;
  }

  .consult-flow-step {
    flex: 1 1 100%;
  }

  .consult-contact-buttons {
    flex-direction: column;
  }
}

/* ▼ アコーディオン矢印 */
.consult-qa-toggle {
  position: relative;
}

.consult-qa-icon {
  margin-left: auto;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg); /* ▼ */
  transition: transform 0.3s ease;
}

/* 開いた時（▲に変わる） */
.consult-qa-item.is-open .consult-qa-icon {
  transform: rotate(-135deg); /* ▲ */
}


/* ==========================
   Outline 下層ページ
========================== */

/* Hero */
.page-outline .outline-hero {
  position: relative;
  margin-top: 0px;        /* 固定ヘッダー分 */
  overflow: hidden;
}

.outline-hero-bg {
  height: 320px;
  overflow: hidden;
}

.outline-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* グラデーション＋line2.svg */
.outline-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.35)
    );
}

.outline-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  height: 260px;
  background: url("../img/line2.svg") no-repeat center bottom;
  background-size: cover;
  opacity: 0.55;
  pointer-events: none;
}

.outline-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
}

.outline-hero-inner .sec-en {
  color: #fff;
}

.outline-hero-title {
  color: #fff;
  text-align: left;
  font-size: 26px;
  font-weight: 200;
}

/* 外観＋リード */
.outline-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

.outline-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.outline-lead-title {
  font-size: 2.0rem;
  line-height: 1.8;
  margin: 0 0 16px;
    font-weight: 100;
}

.outline-lead-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.9;
}
@media (max-width: 640px) {
    .outline-lead-title {
      font-size: 1.4rem;
    }
    .outline-lead-text {
        font-size: 1.0rem;
    }
}

/* 施設概要テーブル */
.outline-detail {
  background: #f4fbf7;
}

.outline-detail .sec-title {
  margin-bottom: 32px;
}

.outline-table {
  margin: 0;
  border-top: 1px solid #ddd;
}

.outline-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  column-gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid #e5ece7;
}

.outline-row dt {
  font-weight: 700;
  font-size: 0.95rem;
}

.outline-row dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.9;
}

.outline-link {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #00a0a5;
  border-bottom: 1px solid #00a0a5;
  text-decoration: none;
}

/* ========= レスポンシブ ========= */
@media (max-width: 960px) {
  .outline-hero-bg {
    height: 260px;
  }

  .outline-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .outline-hero-inner {
    align-items: center;
    text-align: center;
  }

  .outline-hero-title {
    text-align: center;
    font-size: 26px;
  }

  .outline-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .outline-row dt {
    font-size: 0.9rem;
  }

  .outline-row dd {
    font-size: 0.95rem;
  }
}

/* ==========================
   Room Plan 下層ページ
========================== */

/* Hero */
.page-room-plan .room-plan-hero {
  position: relative;
  
}

.room-plan-hero-bg {
  height: 320px;
  overflow: hidden;
}

.room-plan-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-plan-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
}

.room-plan-hero-inner .sec-en {
  color: #fff;
}

.room-plan-hero-title {
  color: #fff;
  text-align: left;
  font-size: 2.9rem;
  font-weight: 200;
}

/* ==========================
   Plan2 年齢別 前払テーブル
   左端のフロア列に色を敷く
========================== */

/* フロア名・居室番号の見出しセル共通 */
.price-tbl2 .th1,
.price-tbl2 .th2 {
  text-align: center;
  font-weight: 600;
  color: #fff;
}

/* 2F の色（先に使った 2F 帯と同じ色） */
.price-tbl2 .bg2f {
  background-color: #7eb4ce; /* floor-label-2f と揃える */
}

/* 3F の色 */
.price-tbl2 .bg3f {
  background-color: #dca773; /* floor-label-3f と揃える */
}

/* 4F の色 */
.price-tbl2 .bg4f {
  background-color: #7bb494; /* floor-label-4f と揃える */
}

/* 2F / 3F / 4F の縦帯を少し大きめに */
.price-tbl2 .th1 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

/* 居室番号セルの中身を少し下げる */
.price-tbl2 .th2 span {
  display: block;
  padding: 6px 4px;
}


/* Intro */
.room-plan-intro {
  background-color: #fff;
}

.room-plan-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.room-plan-intro-catch {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.room-plan-intro-lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* 空室情報 */
.room-plan-vacancy {
  background: #f4fbf7;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #e0efe7;
}

.room-plan-vacancy-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.room-plan-vacancy-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  background-color: #00a0a5;
  color: #fff;
  letter-spacing: 0.12em;
}

.room-plan-vacancy-status {
  font-size: 1rem;
  font-weight: 600;
  color: #007c80;
    font-size: 1.4rem;
}

.room-plan-vacancy-note {
  margin: 0;
  font-size: 1rem;
  color: #666;
}

/* 内リンクボタン */
.room-plan-nav {
  background-color: #f8fbf7;
  padding-top: 40px;
  padding-bottom: 40px;
}

.room-plan-nav-inner {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.room-plan-nav-btn {
  min-width: 180px;
    font-size: 1.8rem;
    margin: auto 10px;
}

@media (max-width: 640px) {
    .room-plan-nav-btn {
        font-size: 1.6rem;
        margin: auto 5px;
    }
}

/* ====== Room Plan 見出し帯 ====== */

.room-plan-section-header {
  margin: 0 0 40px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  /* 左グレー→右フェードのグラデーション帯 */
  background: linear-gradient(to right, #777777 0%, #777777 55%, rgba(119,119,119,0) 100%);
}
@media (max-width: 640px) {
    .room-plan-section-header {
      gap: 5px;
    }
}

/* 「Plan 1」の部分 */
.room-plan-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-family: "Cormorant", "Zen Old Mincho", serif;
}

.room-plan-label-en {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
}

.room-plan-label-num {
  font-size: 2.6rem;   /* 数字を大きく */
  line-height: 1;
}

/* 日本語タイトル */
.room-plan-heading {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* SP では縦積み＆少しコンパクトに */
@media (max-width: 640px) {
  .room-plan-section-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .room-plan-label-num {
    font-size: 2.2rem;
  }

  .room-plan-heading {
    font-size: 1.3rem;
  }
}



/* セクション共通 */
.room-plan-section-header .sec-title {
  margin-bottom: 8px;
}

.room-plan-section-lead {
  font-size: 1.1rem;
  line-height: 1.9;
}

/* フロアごとのブロック */
.room-plan-floor {
  margin-top: 40px;
}

/* 2カラム → Gridに切り替え（帯が右の高さに自動追従） */
.room-plan-floor-inner {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr); /* 左：帯 / 右：中身 */
  align-items: stretch;
  column-gap: 32px;   /* ★ 帯と中身のあいだの余白 */
}

/* 帯 */
.room-plan-floor-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0; /* 上下に余白をつけて見栄え調整 */
  min-height: 100%; /* ★右側に高さ合わせ */
  height: auto;
}

/* 階ごとの色（お好みで調整） */
.floor-label-1f { background-color: #2f9693; } /* 1F: 青緑 */
.floor-label-2f { background-color: #7eb4ce; } /* 2F: 濃い青 */
.floor-label-3f { background-color: #dca773; } /* 3F: 緑寄り */
.floor-label-4f { background-color: #7bb494; } /* 4F: やわらかい緑 */

/* 右側の中身 */
.room-plan-floor-main {
  flex: 1;
}

/* タイトル・図・キャプションは右カラム内で左揃え */
.room-plan-floor-title {
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.room-plan-floor-map {
  text-align: left;
}

.room-plan-floor-map img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* フロア図の下の小さな説明 */
.room-plan-floor-caption {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #666;
}

/* 月額料金表ラッパ：横スクロール許可 */
.room-plan-floor-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

/* 狭い画面では横スクロールさせるための最低幅 */
.room-plan-floor-table-wrap table {
  min-width: 640px;
}

.room-plan-floor {
  margin-top: 40px;
}

.room-plan-floor-title {
  font-size: 1.4rem;
  margin: 0 0 16px;
}

.room-plan-floor-map img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* スマホ（縦積み） */
@media (max-width: 640px) {
  .room-plan-floor-inner {
    grid-template-columns: 1fr;
    row-gap: 16px;    /* 縦積み時の上下余白 */
  }

  .room-plan-floor-label {
    width: 100%;
    min-height: auto;
    padding: 20px 0;
  }
}

/* ========= 月額利用料金 説明ブロック ========= */

.room-plan-note-wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 40px;
}

/* 両プラン共通ブロック用の微調整（任意） */
.room-plan-note-list .note-block {
  margin-bottom: 24px;
}

/* 両プラン共通ブロック用の本文サイズ調整 */
.room-plan-note-wrap .note-block p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.note-heading {
  font-size: 1.2rem;
  margin: 0 0 8px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0; /* XDの細い仕切り */
  padding-bottom: 6px;
}

/* 小さめ注記 */
.note-small {
  font-size: 0.9rem;
  color: #666;
}

/* 右側のリスト */
.note-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.note-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 6px;
    font-size: 1rem;
}

.note-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 0.8rem;
}

/* ========== スマホ対応 ========== */
@media (max-width: 768px) {
  .room-plan-note-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* 月額プラン／前払プランのメモ */
.room-plan-note {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5ece7;
}

/* 月額利用料金の説明 タイトル帯 */
.room-plan-note-title {
  margin: 60px 0 32px;
  padding: 10px 24px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(
    to right,
    #777 0%,
    #bbbbbb 40%,
    rgba(200,200,200,0) 100%
  );
  border-radius: 4px;
}

.room-plan-note-text {
  margin: 0 0 16px;
    font-size: 1.1rem;
}

.room-plan-note-list {
  margin: 0;
}

.room-plan-note-list dt {
  font-weight: 700;
  font-size: 0.95rem;
}

.room-plan-note-list dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* 両プラン共通ブロック用の微調整（任意） */
.room-plan-note-list .note-block {
  margin-bottom: 24px;
}


.room-plan-note-caption {
  font-size: 0.85rem;
  color: #777;
  margin-top: 16px;
}

/* テーブル共通スタイル */
.price-tbl,
.price-tbl2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 12px;
}

.price-tbl th,
.price-tbl td,
.price-tbl2 th,
.price-tbl2 td {
  padding: 8px 10px;
  border-bottom: 1px solid #e5ece7;
  text-align: center;
  vertical-align: middle;
    white-space: nowrap;
}

/* 各フロア色 */
.bg2f th,
.bg2f .th1,
.bg2f .th2 {
  background-color: #e6f5f7;
}

.bg3f th,
.bg3f .th1,
.bg3f .th2 {
  background-color: #e7f4ec;
}

.bg4f th,
.bg4f .th1,
.bg4f .th2 {
  background-color: #f2ecf6;
}

/* 月額の色強調 */
.clr2f {
  color: #007c80;
}

.clr3f {
  color: #2d7c4f;
}

.clr4f {
  color: #7b5ba3;
}

/* price-tbl 内の dl/ dt / dd */
.price-tbl dl {
  margin: 0;
}

.price-tbl dt {
  font-size: 0.78rem;
  color: #666;
}

.price-tbl dd {
  margin: 2px 0 0;
  font-size: 0.95rem;
}

.price-tbl dd strong {
  font-size: 1.05rem;
}

/* 前払プランテーブル */
.price-tbl2 .tr0 th,
.price-tbl2 .tr0 td {
  background-color: #f4fbf7;
  font-weight: 600;
}

.price-tbl2 .tr1 th,
.price-tbl2 .tr1 td {
  background-color: #fafcfb;
}

.price-tbl2 .tr2 th,
.price-tbl2 .tr2 td {
  background-color: #fefdf8;
}

.price-tbl2 .th1 {
  width: 60px;
}

.price-tbl2 .th2 {
  width: 100px;
  text-align: left;
}

.price-tbl2 .th2 span {
  white-space: nowrap;
}

/* tr.last の最後だけボーダー強調 */
.price-tbl2 tr.last td,
.price-tbl2 tr.last th {
  border-bottom: 2px solid #d5e3da;
}

/* 前払プラン全体のラッパー */
.room-plan-prepay-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

/* スマホ対応 */
@media (max-width: 960px) {
  .room-plan-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

@media (max-width: 640px) {
  .room-plan-hero-bg {
    height: 240px;
  }

  .room-plan-hero-inner {
    align-items: center;
    text-align: center;
  }

  .room-plan-hero-title {
    text-align: center;
    font-size: 2.3rem;
      letter-spacing: -0.05em
  }

}
/* ========= Room Plan 専用 余白調整 ========= */

/* Room-plan ページ内だけ section の上下余白を少し詰める */
.page-room-plan .section {
  padding: 60px 0; /* ★お好みで 50〜70px に調整可能 */
}

/* フロアごとのブロックも少し詰める */
.page-room-plan .room-plan-floor {
  margin-top: 40px; /* 元が広めなら 32〜36px 程度でもOK */
}

/* 「月額利用料金の説明」タイトル帯の余白整理 */
.page-room-plan .room-plan-note-title {
  margin: 40px 0 24px; /* 上を狭く、下も少し詰める */
}


/* ==========================
   Feature: Environment（周辺環境）
   ※ environment.html 専用（body.sakoujyu_map 配下だけに適用）
========================== */

/* env-wrap の中だけに閉じ込める */
.env-wrap {
  background: #f7f7f7; /* body ではなくラッパーに */
}

.env-wrap .main_visual {
  position: relative;
}

.env-wrap .section.leisure {
  margin-top: 80px;
}


/* ------- ページ上部 MV ------- */

body.sakoujyu_map .page-hero {
  position: relative;
  margin-top: 80px; /* ヘッダーの高さ分。必要なら調整 */
  color: #fff;
}

body.sakoujyu_map .page-hero__image img {
  width: 100%;
  height: min(40vw, 360px);
  object-fit: cover;
  display: block;
}

body.sakoujyu_map .page-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

body.sakoujyu_map .page-hero__inner > * {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

body.sakoujyu_map .page-hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

body.sakoujyu_map .page-hero__title {
  font-size: 2rem;
  margin: 0 0 12px;
}

body.sakoujyu_map .page-hero__lead {
  margin: 0;
  max-width: 720px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  body.sakoujyu_map .page-hero {
    margin-top: 56px;
  }
  body.sakoujyu_map .page-hero__inner {
    position: static;
    background: #0f2824;
    padding: 24px 0 32px;
  }
  body.sakoujyu_map .page-hero__inner > * {
    width: 90%;
  }
}

/* ------- パンくず ------- */

body.sakoujyu_map .breadcrumb {
  background: #f7f7f7;
  font-size: 0.8rem;
}

body.sakoujyu_map .breadcrumb__list {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

body.sakoujyu_map .breadcrumb__item::after {
  content: ">";
  margin: 0 4px;
}

body.sakoujyu_map .breadcrumb__item:last-child::after {
  content: "";
}

/* ------- レジャー / 生活 切り替え風ナビ ------- */



/* ------- セクション共通 ------- */

body.sakoujyu_map .section {
  padding: 80px 0;
}

body.sakoujyu_map .section__inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

body.sakoujyu_map .section__header {
  margin-bottom: 32px;
}

body.sakoujyu_map .section__header--split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

body.sakoujyu_map .section__heading {
  flex: 0 0 260px;
}

body.sakoujyu_map .section__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #666;
}

body.sakoujyu_map .section__title {
  font-size: 1.8rem;
  margin: 0;
}

body.sakoujyu_map .section__summary {
  flex: 1 1 0;
  margin: 0;
  line-height: 1.9;
}

@media (max-width: 768px) {
  body.sakoujyu_map .section {
    padding: 56px 0;
  }
  body.sakoujyu_map .section__header--split {
    display: block;
  }
  body.sakoujyu_map .section__heading {
    margin-bottom: 16px;
  }
}

/* ------- レイアウト（画像＋テキスト＋マップ） ------- */

body.sakoujyu_map .environment-block--leisure {
  background: #f8fbfa;
}

body.sakoujyu_map .environment-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

body.sakoujyu_map .environment-layout__image {
  flex: 0 0 360px;
  max-width: 100%;
}

body.sakoujyu_map .environment-layout__image picture,
body.sakoujyu_map .environment-layout__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

body.sakoujyu_map .environment-layout__body {
  flex: 1 1 0;
  min-width: 260px;
}

body.sakoujyu_map .environment-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
}

body.sakoujyu_map .environment-note {
  font-size: 0.8rem;
  color: #666;
  margin: 8px 0 0;
}

body.sakoujyu_map .environment-note--sp {
  display: none;
}

body.sakoujyu_map .environment-map-scroll {
  margin-top: 16px;
  overflow-x: auto;
}

body.sakoujyu_map .environment-map img {
  display: block;
  min-width: 720px;
  max-width: none;
}

@media (max-width: 960px) {
  body.sakoujyu_map .environment-layout {
    display: block;
  }
  body.sakoujyu_map .environment-layout__image {
    max-width: 480px;
    margin: 0 auto 24px;
  }
  body.sakoujyu_map .environment-map img {
    min-width: 375px;
  }
}

@media (max-width: 768px) {
  body.sakoujyu_map .environment-note--sp {
    display: block;
  }
}

/* ------- レジャー：コース一覧（ハイキング／花火・釣り・温泉） ------- */

body.sakoujyu_map .environment-detail {
  margin-top: 24px;
  border-top: 2px solid #009944;
}

body.sakoujyu_map .environment-detail__group {
  display: flex;
  border-bottom: 1px solid #009944;
  padding: 16px 0;
  gap: 24px;
}

body.sakoujyu_map .environment-detail__head {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #009944;
}

body.sakoujyu_map .environment-detail__head i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.sakoujyu_map .environment-detail__head img {
  width: 32px;
  height: 32px;
}

body.sakoujyu_map .environment-detail__body {
  flex: 1 1 0;
}

body.sakoujyu_map .environment-course-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.sakoujyu_map .environment-course-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #009944;
  font-size: 0.95rem;
}

body.sakoujyu_map .environment-course-num {
  min-width: 2.4em;
}

body.sakoujyu_map .environment-course-name {
  flex: 1 1 auto;
}

body.sakoujyu_map .environment-course-btn {
  flex: 0 0 auto;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #009944;
  font-size: 0.8rem;
  color: #009944;
}

body.sakoujyu_map .environment-course-btn:hover {
  background: #009944;
  color: #fff;
}

@media (max-width: 768px) {
  body.sakoujyu_map .environment-detail__group {
    display: block;
  }
  body.sakoujyu_map .environment-detail__head {
    margin-bottom: 8px;
  }
  body.sakoujyu_map .environment-course-list li {
    align-items: flex-start;
  }
  body.sakoujyu_map .environment-course-btn {
    margin-left: auto;
  }
}

/* ------- 生活環境：アイコン行 ------- */

body.sakoujyu_map .environment-life-icons {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

body.sakoujyu_map .environment-life-icons li {
  width: 88px;
  text-align: center;
  font-size: 0.8rem;
}

body.sakoujyu_map .environment-life-icons i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

body.sakoujyu_map .environment-life-icons img {
  width: 100%;
  height: 100%;
}

/* ------- 駅周辺拡大図＋施設一覧 ------- */

body.sakoujyu_map .environment-station {
  margin-top: 48px;
}

body.sakoujyu_map .environment-subtitle--station {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

body.sakoujyu_map .environment-map--wide img {
    display: block;
    width: 100%;
    height: auto;
}

body.sakoujyu_map .environment-map-scroll--station {
  margin-bottom: 32px;
}

body.sakoujyu_map .environment-facility {
  margin-top: 32px;
}

body.sakoujyu_map .environment-facility__title {
  font-size: 1.3rem;
  margin: 0 0 12px;
}

body.sakoujyu_map .environment-facility__lead {
  margin: 0 0 16px;
  line-height: 1.8;
}

body.sakoujyu_map .facility-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

body.sakoujyu_map .facility-group__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

body.sakoujyu_map .facility-list {
  margin: 0;
  padding-left: 1.1em;
}

body.sakoujyu_map .facility-list__item {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ------- 最後の関連リンク ------- */

body.sakoujyu_map .environment-links {
  background: #f7f7f7;
  padding: 40px 0 60px;
}

body.sakoujyu_map .environment-links .section__inner {
  text-align: center;
}

body.sakoujyu_map .environment-links__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
/* ==========================
   Feature: Environment（周辺環境）
   ※ environment.html 専用（body.sakoujyu_map 配下だけに適用）
========================== */

/* ------- ページ上部 MV ------- */

body.sakoujyu_map .page-hero {
  position: relative;
  margin-top: 0px; /* ヘッダーの高さ分。必要なら調整 */
  color: #fff;
}

body.sakoujyu_map .page-hero__image img {
  width: 100%;
  height: min(40vw, 360px);
  object-fit: cover;
  display: block;
}

body.sakoujyu_map .page-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

body.sakoujyu_map .page-hero__inner > * {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

body.sakoujyu_map .page-hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

body.sakoujyu_map .page-hero__title {
  font-size: 2rem;
  margin: 0 0 12px;
}

body.sakoujyu_map .page-hero__lead {
  margin: 0;
  max-width: 720px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  body.sakoujyu_map .page-hero {
    margin-top: 56px;
  }
  body.sakoujyu_map .page-hero__inner {
    position: static;
    background: #0f2824;
    padding: 24px 0 32px;
  }
  body.sakoujyu_map .page-hero__inner > * {
    width: 90%;
  }
}

/* ------- パンくず ------- */

body.sakoujyu_map .breadcrumb {
  background: #f7f7f7;
  font-size: 0.8rem;
}

body.sakoujyu_map .breadcrumb__list {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

body.sakoujyu_map .breadcrumb__item::after {
  content: ">";
  margin: 0 4px;
}

body.sakoujyu_map .breadcrumb__item:last-child::after {
  content: "";
}

/* 周辺環境ナビ（レジャー環境／生活環境） */
.sakoujyu_map .nav {
  margin-bottom: 70px;
}

.sakoujyu_map .nav ul {
  display: flex;
  justify-content: space-between;
  padding-left: 0px;
}

.sakoujyu_map .nav ul > li {
  width: 45%;
    list-style: none;
}

.sakoujyu_map .nav ul > li > a {
  display: block;
  padding: 20px 0;
  font-weight: 200;
  font-size: 1.8rem;
  line-height: 1.57rem;
  text-align: center;
  color: #000;
  position: relative; /* 念のため追加してOK */
}

.sakoujyu_map .nav ul > li > a > span {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  font-weight: 300;
}

.sakoujyu_map .nav ul > li > a > span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-top: 5px solid #219F3D;
  border-right: 5px solid #219F3D;
  transform: rotate(45deg);
}
@media (max-width: 540px){
    .sakoujyu_map .nav ul > li {
      width: 49%;
    }
    .sakoujyu_map .nav ul > li > a {
      font-size: 1.3rem;
    }
    .sakoujyu_map .nav ul > li > a > span {
      padding-left: 30px;
    }
}

/* 2つ目（生活環境）だけオレンジに */
.sakoujyu_map .nav ul > li:nth-child(2) > a > span::after {
  border-color: #D9420D;
}

.sakoujyu_map .nav ul > li:nth-child(1) > a {
  border-bottom: 3px solid #219f3d;
}

.sakoujyu_map .nav ul > li:nth-child(2) > a {
  border-bottom: 3px solid #D9420D;
}


/* ------- セクション共通 ------- */

body.sakoujyu_map .section {
  padding: 50px 0 30px;
}

body.sakoujyu_map .section__inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

body.sakoujyu_map .section__header {
  margin-bottom: 32px;
}

body.sakoujyu_map .section__header--split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

body.sakoujyu_map .section__heading {
  flex: 0 0 260px;
}

body.sakoujyu_map .section__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #666;
}

body.sakoujyu_map .section__title {
  font-size: 1.8rem;
  margin: 0;
}

body.sakoujyu_map .section__summary {
  flex: 1 1 0;
  margin: 0;
  line-height: 1.9;
}

@media (max-width: 768px) {
  body.sakoujyu_map .section {
    padding: 56px 0;
  }
  body.sakoujyu_map .section__header--split {
    display: block;
  }
  body.sakoujyu_map .section__heading {
    margin-bottom: 16px;
  }
}

/* ------- レイアウト（画像＋テキスト＋マップ） ------- */

body.sakoujyu_map .environment-block--leisure {
  background: #f8fbfa;
}

body.sakoujyu_map .environment-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

body.sakoujyu_map .environment-layout__image {
  flex: 0 0 360px;
  max-width: 100%;
}

body.sakoujyu_map .environment-layout__image picture,
body.sakoujyu_map .environment-layout__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

body.sakoujyu_map .environment-layout__body {
  flex: 1 1 0;
  min-width: 260px;
}

body.sakoujyu_map .environment-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
}

body.sakoujyu_map .environment-note {
  font-size: 0.8rem;
  color: #666;
  margin: 8px 0 0;
}

body.sakoujyu_map .environment-note--sp {
  display: none;
}

body.sakoujyu_map .environment-map-scroll {
  margin-top: 16px;
  overflow-x: auto;
}

body.sakoujyu_map .environment-map img {
  display: block;
  max-width: none;
}

@media (max-width: 960px) {
  body.sakoujyu_map .environment-layout {
    display: block;
  }
  body.sakoujyu_map .environment-layout__image {
    max-width: 480px;
    margin: 0 auto 24px;
  }
  body.sakoujyu_map .environment-map img {
  }
}

@media (max-width: 768px) {
  body.sakoujyu_map .environment-note--sp {
    display: block;
  }
}

/* ------- レジャー：コース一覧（ハイキング／花火・釣り・温泉） ------- */

body.sakoujyu_map .environment-detail {
  margin-top: 24px;
  border-top: 2px solid #009944;
}

body.sakoujyu_map .environment-detail__group {
  display: flex;
  border-bottom: 1px solid #009944;
  padding: 16px 0;
  gap: 24px;
}

body.sakoujyu_map .environment-detail__head {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #009944;
}

body.sakoujyu_map .environment-detail__head i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.sakoujyu_map .environment-detail__head span{
    width: 200px;
}


body.sakoujyu_map .environment-detail__head img {
  width: 32px;
  height: 32px;
}

body.sakoujyu_map .environment-detail__body {
  flex: 1 1 0;
  padding: 20px 0;
}

body.sakoujyu_map .environment-course-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.sakoujyu_map .environment-course-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #009944;
  font-size: 0.95rem;
}

body.sakoujyu_map .environment-course-num {
  min-width: 2.4em;
}

body.sakoujyu_map .environment-course-name {
  flex: 1 1 auto;
}

body.sakoujyu_map .environment-course-btn {
  flex: 0 0 auto;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #009944;
  font-size: 0.8rem;
  color: #009944;
}

body.sakoujyu_map .environment-course-btn:hover {
  background: #009944;
  color: #fff;
}

@media (max-width: 768px) {
  body.sakoujyu_map .environment-detail__group {
    display: block;
  }
  body.sakoujyu_map .environment-detail__head {
    margin-bottom: 8px;
  }
  body.sakoujyu_map .environment-course-list li {
    align-items: flex-start;
  }
  body.sakoujyu_map .environment-course-btn {
    margin-left: auto;
  }
}

/* ------- 生活環境：アイコン行 ------- */

body.sakoujyu_map .environment-life-icons {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
}

body.sakoujyu_map .environment-life-icons li {
  width: 120px;
  text-align: center;
  font-size: 1.0rem;
}

body.sakoujyu_map .environment-life-icons i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

body.sakoujyu_map .environment-life-icons img {
  width: 100%;
  height: 100%;
}

/* ------- 駅周辺拡大図＋施設一覧 ------- */

body.sakoujyu_map .environment-station {
  margin-top: 48px;
}

body.sakoujyu_map .environment-subtitle--station {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

body.sakoujyu_map .environment-map-scroll--station {
  margin-bottom: 32px;
}
@media screen and (max-width: 500px){
    body.sakoujyu_map .environment-map-scroll--station {
        margin-left: -40px;
    }
}
    

body.sakoujyu_map .environment-facility {
  margin-top: 32px;
}

body.sakoujyu_map .environment-facility__title {
  font-size: 1.3rem;
  margin: 0 0 12px;
}

body.sakoujyu_map .environment-facility__lead {
  margin: 0 0 16px;
  line-height: 1.8;
}

body.sakoujyu_map .facility-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

body.sakoujyu_map .facility-group__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

body.sakoujyu_map .facility-list {
  margin: 0;
  padding-left: 1.1em;
}

body.sakoujyu_map .facility-list__item {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ------- 最後の関連リンク ------- */

body.sakoujyu_map .environment-links {
  background: #f7f7f7;
  padding: 40px 0 60px;
}

body.sakoujyu_map .environment-links .section__inner {
  text-align: center;
}

body.sakoujyu_map .environment-links__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

/* ==========================
   Environment: #leisure / #life レイアウト調整
========================== */

body.sakoujyu_map .env-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

body.sakoujyu_map .env-row__img {
  position: relative;
  flex: 0 0 40%;
  min-width: 260px;
}

body.sakoujyu_map .env-row__img img {
  width: 100%;
  display: block;
}

body.sakoujyu_map .env-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  font-weight: 700;
}

body.sakoujyu_map .env-tag__bg {
  position: absolute;
  inset: 0;
  background: #219f3d;
  opacity: 0.9;
}

body.sakoujyu_map .env-tag--orange .env-tag__bg {
  background: #d9420d;
}

body.sakoujyu_map .env-tag__label {
  position: relative;
  display: inline-block;
  padding: 8px 40px;
  font-size: 1.2rem;
}

body.sakoujyu_map .env-row__txt {
  flex: 1 1 0;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.sakoujyu_map .env-ttl-en {
  font-size: 104px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  opacity: 0.12;
    font-family: "Arial Black";
}

body.sakoujyu_map .env-ttl-en--green {
  color: #219f3d;
}

body.sakoujyu_map .env-ttl-en--orange {
  color: #d9420d;
}

@media screen and (max-width: 1024px){
    body.sakoujyu_map .env-ttl-en {
        font-size: 84px;
    }
}
@media screen and (max-width: 880px){
    body.sakoujyu_map .env-ttl-en {
        font-size: 64px;
    }
}
@media screen and (max-width: 768px){
    body.sakoujyu_map .env-ttl-en {
        font-size: 64px;
    }
}
body.sakoujyu_map .env-ttl-ja {
  font-size: 1.8rem;
  margin: -16px 0 12px;
  font-weight: 700;
}

body.sakoujyu_map .env-lead {
  margin: 0;
  line-height: 1.8;
    font-size: 1.2rem
}
@media screen and (max-width: 768px){
    body.sakoujyu_map .env-lead {
        font-size: 1.0rem
    } 
}

/* タイトル横のマップタイトル調整（元ページっぽく） */

body.sakoujyu_map .map_ttl,
body.sakoujyu_map .map_ttl2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 16px 0;
  margin: 0 0 16px;
}

body.sakoujyu_map .map_ttl {
  color: #219f3d;
  border-top: 6px solid #219f3d;
}

body.sakoujyu_map .map_ttl2 {
  color: #ffffff;
  background: #d9420d;
}

body.sakoujyu_map p.note {
    font-size: 1.2rem;
}


.lity-content {
  max-width: 800px;
}

.lity {
  background: rgba(255, 255, 255, 0.7);
}

.lity-content:after {
  display: none;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited,
.lity-close {
	width: 60px;
	height: 60px;
	color: #333;
	font-size: 60px;
	line-height: 60px;
	text-shadow: none;
}

/* SPレイアウト */

@media (max-width: 768px) {
  body.sakoujyu_map .env-row {
    display: block;
  }
  body.sakoujyu_map .env-row__img {
    margin-bottom: 24px;
  }
  body.sakoujyu_map .env-ttl-en {
    font-size: 2.6rem;
  }
  body.sakoujyu_map .env-ttl-ja {
    margin-top: 0;
  }
    body.sakoujyu_map p.note {
        font-size: 1.0rem;
    }
}

/* タグ位置を画像中央に変更 */
body.sakoujyu_map .env-tag {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* ← 水平中央寄せ */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 背景帯を文字幅にフィットさせる */
body.sakoujyu_map .env-tag__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #219f3d; /* 緑 */
  border-radius: 4px; /* 好みで */
}

/* ラベル（文字） */
body.sakoujyu_map .env-tag__label {
  position: relative;
  display: inline-block;
  padding: 8px 40px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 1; /* 背景より上に表示 */
  white-space: nowrap;
}


/* =====================
   駅周辺マップ：ピン & モーダル
   ===================== */

body.sakoujyu_map .environment-map--station {
  position: relative;
  display: inline-block;
}

body.sakoujyu_map .environment-map--station > img {
  display: block;
  width: 100%;
  height: auto;
}

body.sakoujyu_map .map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transform: translate(-50%, -100%); /* ピンの下辺を座標位置に合わせる */
}

body.sakoujyu_map .map-pin img {
  display: block;
  width: 100%;
  height: auto;
}

/* JA銀行ピンの位置（必要に応じて微調整してください） */
body.sakoujyu_map .map-pin--bank-ja {
  top: 45.5%;
  left: 47.2%;
}


/* 駅周辺マップ：ランドマークアイコン（ピン）のサイズ調整 */
body.sakoujyu_map .map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 768px) {
    body.sakoujyu_map .map-pin {
        width: 20px;
        height: 20px;
    }
}

/* ここで .environment-map img の指定を打ち消す */
body.sakoujyu_map .map-pin img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;     /* min-width:720px を上書き */
  max-width: 100%;  /* max-width:none を上書き */
}


/* 相模湖駅周辺拡大図 用ピン配置
   ※ top / left はざっくり置いてあります。
      実際の位置に合わせて % を微調整してください。 */

.environment-map--wide {
  position: relative;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-pin img {
  display: block;
  width: 100%;
  height: auto;
}

/* 個別の座標（仮） */
.map-pin--hospital {
  top: 32%;
  left: 70%;
}

.map-pin--drugstore {
  top: 49%;
  left: 63%;
}

.map-pin--admin {
  top: 40%;
  left: 36%;
}

.map-pin--super {
  top: 44%;
  left: 55%;
}

.map-pin--conv {
  top: 55%;
  left: 68%;
}

.map-pin--homecenter {
  top: 60%;
  left: 82%;
}

.map-pin--restaurant {
  top: 38%;
  left: 46%;
}

.map-pin--bank-ja {
  top: 46%;
  left: 44%;
}



/* モーダル表示中は背景スクロールを抑止 */
body.sakoujyu_map.is-modal-open {
  overflow: hidden;
}



/* ===========================
   駅周辺マップ：施設モーダル レイアウト調整
   =========================== */

/* 画面全体を覆うラッパー */
.environment-facility .facility-modal {
  position: fixed;
  inset: 0;                 /* top:0; right:0; bottom:0; left:0 と同じ */
  z-index: 1000;
  display: none;            /* JS で is-open が付いたときだけ表示 */
}

/* 開いているときは中央寄せのフレックスレイアウトにする */
.environment-facility .facility-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 半透明の背景 */
.environment-facility .facility-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* 中央の白いカード部分 */
.environment-facility .facility-modal__body {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: calc(100% - 40px);
  max-height: calc(100% - 80px);
  padding: 32px 32px 28px;
  background: #fff;
  border: 6px solid #f15a24;                 /* 既存のキーカラーのオレンジ */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

/* SP 少しタイトに */
@media screen and (max-width: 767px) {
  .environment-facility .facility-modal__body {
    padding: 24px 20px 20px;
    max-height: calc(100% - 40px);
  }
}

/* 閉じるボタン（右上の×） */
.environment-facility .facility-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

/* × マーク（画像を使っていない場合の保険） */
.environment-facility .facility-modal__close::before,
.environment-facility .facility-modal__close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 100%;
  height: 2px;
  background: #f15a24;
  transform-origin: center;
}

.environment-facility .facility-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.environment-facility .facility-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ヘッダー部分（アイコン＋カテゴリ名） */
.environment-facility .facility-modal__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.environment-facility .facility-modal__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.environment-facility .facility-modal__icon img {
  width: 100%;
  height: auto;
  display: block;
    bottom:50px;
}

.environment-facility .facility-modal__label {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 6px;
}

.environment-facility .facility-modal__name {
  font-size: 1.2rem;
  font-weight: 500;
}

/* 本文エリア */
.environment-facility .facility-modal__content {
  font-size: 0.9rem;
}

.environment-facility .facility-modal__info {
  margin: 0 0 24px;
}

.environment-facility .facility-modal__info dt {
  font-weight: 700;
  margin-top: 4px;
}

.environment-facility .facility-modal__info dd {
  margin-left: 0;
}

/* ボタン */
.environment-facility .facility-modal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.environment-facility .facility-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 16px;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 2px;
  box-sizing: border-box;
}

.environment-facility .facility-modal__btn--primary {
  background: #f15a24;
  color: #fff;
}

.environment-facility .facility-modal__btn--outline {
  background: #fff;
  color: #f15a24;
  border: 1px solid #f15a24;
}

/* ===========================
   駅周辺マップ：施設モーダル一式
   =========================== */

/* 画面全体を覆うラッパー */
.facility-modal {
  position: fixed;
  inset: 0;                 /* top:0; right:0; bottom:0; left:0 */
  z-index: 1000;
  display: none;            /* .is-open が付いたときだけ表示 */
}

/* 開いているときは中央寄せ */
.facility-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 半透明の背景 */
.facility-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* 中央の白いカード部分 */
.facility-modal__body {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: calc(100% - 40px);
  max-height: calc(100% - 80px);
  padding: 32px 32px 28px;
  background: #fff;
  border: 6px solid #f15a24;                 /* オレンジの枠線 */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

/* SP 少しタイトに */
@media screen and (max-width: 767px) {
  .facility-modal__body {
    padding: 24px 20px 20px;
    max-height: calc(100% - 40px);
  }
}

/* 閉じるボタン（右上の×） */
.facility-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

/* × マーク（画像を使っていない場合でも表示されるように） */
.facility-modal__close::before,
.facility-modal__close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 100%;
  height: 2px;
  background: #f15a24;
  transform-origin: center;
}

.facility-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.facility-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ヘッダー部分（アイコン＋カテゴリ名） */
.facility-modal__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* モーダルヘッダーのアイコン位置微調整 */
.environment-facility .facility-modal__header {
  display: flex;
  align-items: center; /* ここはそのままでOK */
}
.facility-modal__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-top: 30px;  /* ★ 追加：アイコンを少し下げる */
}

.facility-modal__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.facility-modal__label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 6px;
}

.facility-modal__name {
  font-size: 1.6rem;
  font-weight: 700;
}

/* 本文エリア */
.facility-modal__content {
  font-size: 1.1rem;
}

.facility-modal__info {
  margin: 0 0 24px;
}

.facility-modal__info dt {
  font-weight: 700;
  margin-top: 4px;
}

.facility-modal__info dd {
  margin-left: 0;
}

/* ボタン */
.facility-modal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.facility-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 16px;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 2px;
  box-sizing: border-box;
}

.facility-modal__btn--primary {
  background: #f15a24;
  color: #fff;
}

.facility-modal__btn--outline {
  background: #fff;
  color: #f15a24;
  border: 1px solid #f15a24;
}

/* ピン共通（すでにあれば省略OK） */
.environment-facility .environment-map {
  position: relative;
}

.environment-facility .map-pin {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.environment-facility .map-pin img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  max-width: 100%;
}

/* ===== 広域図（map02）用座標 ===== */
.environment-map--life .map-pin--life-kian        { top: 48%; left: 14.5%; }
.environment-map--life .map-pin--life-matsuba     { top: 44.5%; left: 18%; }
.environment-map--life .map-pin--life-nakamise    { top: 40%; left: 52%; }
.environment-map--life .map-pin--life-jukouan     { top: 45%; left: 55.8%; }
.environment-map--life .map-pin--life-watahan     { top: 60.9%; left: 57.5%; }
.environment-map--life .map-pin--life-fresa       { top: 60.9%; left: 60.5%; }
.environment-map--life .map-pin--life-create      { top: 74.1%; left: 63.5%; }
.environment-map--life .map-pin--life-komeri      { top: 80%; left: 64%;  }
.environment-map--life .map-pin--life-morita      { top: 78%; left: 97%; }

/* ===== 駅周辺拡大図（map03）用座標 ===== */
.environment-map--station .map-pin--st-seven       { top: 41.2%; left: 23.6%; }
.environment-map--station .map-pin--st-kourakuen   { top: 38%; left: 32%; }
.environment-map--station .map-pin--st-post        { top: 44%; left: 42.5%; }
.environment-map--station .map-pin--st-ja          { top: 46%; left: 49%; }
.environment-map--station .map-pin--st-pharmacy    { top: 51%; left: 51.5%; }
.environment-map--station .map-pin--st-dental      { top: 58.5%; left: 50%; }
.environment-map--station .map-pin--st-yamashin    { top: 57.5%; left: 58%; }
.environment-map--station .map-pin--st-office      { top: 72.5%; left: 51.5%; }
.environment-map--station .map-pin--st-matsukien   { top: 82%; left: 62%; }
.environment-map--station .map-pin--st-familymart  { top: 81.2%; left: 66.5%; }
.environment-map--station .map-pin--st-gusto       { top: 87.5%; left: 75%; }

/* ==========================
   新Header
========================== */
.header{
  position: fixed;
  left:0;
  top:0;
  padding-left: 40px;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: transparent;
  justify-content: space-between;
  transition: all 0.19s ease;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.header.change{
  background: #fff;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

.header nav{
  overflow: hidden;
  display: none;
}

.header{
  height: 100px;
  padding-left: 30px;
  position: fixed;
  left:0;
  top:0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-right: 100px;
}

.header .logo {
  display: block;
  left: 26px;
  top: 5px;
  z-index: 1010;
  width: 370px;
}

.header .tel{
  display: flex;
  gap:17px;
  align-items: center;
  padding-right: 12px;
}

.header .tel .number{
  font-size: 36px;
  font-weight: 500;
  font-family: var(--serif);
}

.header .tel .time{
  font-size: 16px;
}

.header .tel2{
  margin-bottom: 35px;
}

.header .tel2 .msg{
  display: flex;
  gap:17px;
  align-items: center;
  padding-right: 12px;
  font-size: 18px;
  margin-bottom: 10px;
}

.header .tel2 .number{
  font-size: 36px;
  font-weight: 500;
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: 10px;
}

.header .tel2 .time{
  font-size: 16px;
}

.header .corp_button{
  width: 100%;
  height: 80px;
  background: #01A99E;
  color: #fff;
  display: flex;
  padding-left: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.header .corp_button a> span{
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding-right: 30px;
  display: flex;
}

.header .corp_button a>span::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 18px;
  height: 18px;
  background: url(../img/icon_blank.svg) no-repeat  50% 50% / 100%;
}

.header .header_sns{
  display: flex;
  gap:30px;
  list-style: none;
  padding-left: 0;
}
.header .header_sns>li{
  width: 40px;
}

.header .link_block{
  display: flex;
  align-items: center;
}

.header .buttons_sp{
  display: none;
}

.header .buttons{
  display: flex;
}

.header .buttons>a{
  width: 158px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-family: var(--sans);
  font-weight: 500;
}

.header .buttons>a.btn1{
  background: #117871;
}

.header .buttons>a.btn2{
  background: #01A99E;
}

.header ul{
  list-style: none;
  padding-left: 0;
}

.header p{
  margin-top: 0;
  margin-bottom: 0;
}

.header nav {
  position: fixed;
  top: 100px;
  width: 340px;
  height: calc(100dvh - 100px);
  left:auto;
  right: 0;
  text-align: left;
  -webkit-overflow-scrolling: touch;
  padding: 20px 40px 30px;
  overflow: auto;
  visibility: hidden;
  background: #fff;
  border-radius: 0;
  transition: all 0.19s ease-in-out;
  opacity: 0;
  display: none;
  flex-direction: column;
  z-index: 10;
  gap:0;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.header.block nav{
  display: block;
}

.header.block nav.slide{
  right: -340px;
}

.header.block.active nav{
  opacity: 1;
  visibility: visible;
  justify-content: flex-start;
}

.header.block.active nav,
.header.block.active nav.slide{
  opacity: 1;
  right: 0px;
}

.header .menu {
  position: static;
  width: 100%;
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  gap:0;
  margin-right: 0;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.header .menu>li{
  width: 100%;
  list-style:none;
  margin-bottom: 15px;
}

.header .menu>li>a{
  padding:10px 0;
  font-weight: 500;
  text-align: left;
  display: block;
  font-size: 24px;
  border-bottom: 1px solid #D1D1D1;
}

.header .menu2{
  width: 100%;
  margin-top: 10px;
}

.header .menu2>li>a{
  position: relative;
  text-align: left;
  padding: 12px 12px 12px 1em;
  font-size: 27px;
  display: block;
}

.header .menu2>li>a::before{
  content: '-';
  position: absolute;
  top: 7px;
  left: 0;
  width: 1em;
  height: 1em;
}

.header .menu3>li>a{
  padding: 15px 0;
  display: block;
  font-size: 16px;
}

.header nav .pc_hover_menu>a{
  position: relative;
}

.header nav .menu>li::after{
  display: none;
}

.header nav .menu>li.pc_hover_menu>a::before,
.header nav .menu>li.pc_hover_menu>a::after{
  content: '';
  display: block;
  position: absolute;
  top: 37px;
  left:auto;
  right: 20px;
  width: 13px;
  height: 2px;
  border-radius: 5px;
  transform: rotate(0deg);
  background: #555555;
  transform-origin: 50%;
}

.header nav  .menu>li.pc_hover_menu>a::after{
  transform: rotate(90deg);
}

@media screen and (max-width: 1300px) {
  .header {
    padding-left: 20px;
    
  }
  .header .buttons>a{
    width: 115px;
    font-size: 22px
  }

  .header .tel {
    display:block;
  }

  .header .tel br{
    display: none;
  }

  .header .tel .number {
    font-size: 30px;
  }
   .header .tel .time {
    font-size: 14px;
  }
  .header .tel .time span{
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo {
    display: block;
    width: 285px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }

  .header .nav_block{
    padding: 0 28px;
  }

  .header nav {
    top: 80px;  
    height: calc(100dvh - 80px);
    padding: 0 0 30px;
	  font-size: 18px;
  }
  .header .link_block{
    display: none;
  }
  
  .header .buttons_sp{
    display: flex;
    width: 100%;
    margin-left: 0px;
  }

  .header .buttons_sp>a{
    width: 50%;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-family: var(--sans);
    font-weight: 500;
  }

  .header .buttons_sp>a.btn1{
    background: #117871;
  }

  .header .buttons_sp>a.btn2{
    background: #01A99E;
  }

}

@media screen and (max-width: 640px) {
  .header nav {
    width: 100%;
  }
}


.header #menu_button {
  position: fixed;
  display: block;
  right: 0px;
  top: 0px;
  cursor: pointer;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  border-radius: 0%;
}

.header #menu_button>div{
  position: relative;
  width: 40px;
  height: 23px;
  cursor: pointer;
  margin-top: 0px;
  transform: scale(0.9);
  z-index: 2;
}

.header.active #menu_button>div {
  position: relative;
  margin-left: 0px;
}

.header #menu_button>div>div {
  width: 100%;
  height: 2px;
  background: #151515;
  position: absolute;
  transition: all 0.19s;
  z-index: 11;
}

.header #menu_button>div>div:nth-child(1) {
  top: 0%;
  left: 0%;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.header #menu_button>div>div:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.header #menu_button>div>div:nth-child(3) {
  top: auto;
  bottom:0;
  left: 0%;
  transform: translate(0%, 0%);
}

.header.active #menu_button>div>div {
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.header.active #menu_button>div>div:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header.active #menu_button>div>div:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}
  .header.active #menu_button>div>div:nth-child(2) {
    display: none;
  }
  
  .header .menu2{
    display: block;
    width: 100%;
    list-style: none;
    padding-left: 0;
  }

  .header .menu3{
    display: block;
    text-align: left;
    margin-bottom: 30px;
  }

@media screen and (max-width: 1024px) {
  .header #menu_button {
    height: 80px;
    width: 80px;
  }
}


/* ==========================
  新フッター
========================== */
/* 共通 */
.l-footer {
  margin-top: 10px;
  border-top: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  font-size: 16px;
}

/* ContactセクションとFooterの間に境界線を引く */
.section.footter_total {
  border-top: 1px solid #009384;
}

/* 上段：ロゴ＋サイトマップ */
.l-footer-main {
  background: #ffffff;
  padding: 83px 0 32px;
}
.l-footer-inner {
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左ブロック（ブランド） */
.footer-brand {
  flex: 0 0 40%;
}

.footer-catch {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

.footer-sitename {
  font-size: 26px;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}

.footer-address-post,
.footer-address-text {
  margin: 0;
  line-height: 1.8;
}

.footer-operator{
  margin: 24px 0 27px;
}

.footer-operator-link {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  background: #01A99E;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  width: 262px;
}

.footer-operator-link>span{
  position: relative;
  display: inline-block;
  padding-right: 25px;
  font-size: 16px;
}

.footer-operator-link>span::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 12px;
  height: 12px;
  background: url(../img/icon_blank.svg) no-repeat  50% 50% / 100%;
}

/* SNSアイコン */
.footer-sns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.footer-sns img {
  width: 32px;
  height: 32px;
}

/* 右ブロック（サイトマップ） */
.footer-sitemap {
  flex: 0 0 60%;
}

.footer-nav-cols {
  display: flex;
  justify-content: flex-start;
  gap: 80px;
}

.footer-nav-col {
  min-width: 120px;
}

.footer-nav-heading {
  font-size: 1.2rem;  
  font-weight: 500;
  margin: 0 0 24px;
}

.footer-nav-heading.mgn{
  margin-bottom: 40px;
}

.footer-nav-heading a {
  text-decoration: none;
  font-weight: 500;
}

.footer-nav-link {
  margin: 0;
}

.footer-nav-link a {
  color: #262626;
  text-decoration: none;
  font-weight: bold;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin: 0 0 4px;
  position: relative;
  padding-left: 20px;
  white-space: nowrap;
}

.footer-nav-list li::before{
  content: '-';
  display: inline-block;
  position: absolute;
  left:0;
  top:0;
}

.footer-nav-list a {
  color: #262626;
  text-decoration: none;
  font-weight: bold;
}

/* 中段：方針リンク */
.l-footer-policy {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
  background: #ffffff;
}

.footer-policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
  font-size: 13px;
  width: 100%;
  justify-content: center;
}

.footer-policy-list li {
  position: relative;
  padding: 0;
}

.footer-policy-list li + li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  width: 1px;
  height: 24px;
  background: #D0D0D0;
  transform: translateY(-50%);
}

.footer-policy-list a {
  color: #262626;
  font-size: 16px;
  text-decoration: none;
}

/* 下段：コピーライト（深いグリーン） */
.l-footer-bottom {
  background:#fff; 
  color: #262626; 
  text-align: center;
  padding: 30px 0px;
  font-size: 16px;
  font-family: "Cormorant", serif;
}

.footer-copy {
  margin: 0;
}

@media screen and (max-width: 1100px) {
  .footer-policy-list {
    gap: 40px;
  }

  .footer-policy-list li + li::before {
    left: -20px;
  }
}

/* スマホレイアウト */
@media screen and (max-width: 1024px) {
  .footer-sns {
    gap:30px;
  }

  .footer-brand {
    width: 100%;
    flex: 0%;
  }

  .l-footer{
    padding: 0 24px;
  }
  .footer-sitemap{
    display: none;
  }
  /* 上段：ロゴ＋サイトマップ */
  .l-footer-main {
    background: #ffffff;
    padding: 30px 0 32px;
  }
  .footer-nav-cols{
    display: none;
  }
  .footer-policy-list{
    flex-direction: column;
    gap:15px;
  }

  .footer-policy-list>li{
    width: 100%;
  }

  .footer-policy-list li + li::before {
    display: none;
  }

}
@media screen and (max-width: 767px) {
  .footer-copy {
    margin: 0;
    padding: 0;
    text-align: left;
  }
}


/* ==========================
  下層追加分
========================== */
/*下層メインビジュアル*/
.lower-mv{
  position: relative;
  overflow: hidden;
  height: 320px;
  z-index: 2;
}

.lower-mv-bg img{
  position: absolute;
  left:0;
  top:0;
  width: 100% ;
  object-fit: cover;
  height: 100% ;
}

.lower-mv-sec-title {
  font-size: 24px ;
  margin: 0 0 24px;
  width: 100%;
  text-align: left ;
    font-size: 2.9rem ;
    font-weight: 200;
}

.lower-mv-sec-en {
  font-size: 88px;
  font-family: "Cormorant";
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.3;
  margin-bottom: 0;
  color: #fff;
  text-align: left;
  width: 100%;
    
    font-size: 40px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.lower-mv-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
  padding: 0 50px;
}
@media screen and (max-width: 1200px) {
  .lower-mv-inner {
    padding: 0px;
  }
  .lower-mv-sec-en {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .lower-mv-sec-title {
    font-size: 2.9rem ;
    font-weight: 200;
  }
}
@media screen and (max-width: 640px) {
      .lower-mv{
        height: 240px;
      }
  .lower-mv-sec-en {
    font-size: 2.0rem;
      text-align: center;
  }
  .lower-mv-sec-title {
    font-size: 2.3rem ;
      text-align:center;
  }
}

/*下層レイアウト（news等）*/
.lower_contents{
  position: relative;
  max-width: 1440px;
  margin: 0 auto 0;
  font-size: 18px;
  padding: 80px 50px 0;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .lower_contents {
    padding: 40px 25px 0;
  }
}

@media screen and (max-width: 1024px) {
  .lower_contents{
    /* font-size: 16px; */
  }
}

.lower_container{
  position: relative;
  padding: 100px 0 90px;
  min-height: 150vh;
}
@media screen and (max-width: 1024px) {
  .lower_container{
    padding: 80px 0 60px;
    min-height: 0;
  }
}

.lower_container .lower_bg1 {
  position: absolute;
  right: 0;
  top: 250px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.lower_container .lower_bg1 img{
  object-fit: cover;
  object-position: 30%;
}

@media screen and (max-width: 1200px) {
  .lower_container .lower_bg1{
    position: absolute;
    right:0%;
    top:250px;
  }
}
@media screen and (max-width: 1024px) {
  .lower_container .lower_bg1{
    right:0%;
    top:400px;
    width: 100%;
  }
}

.lower_container .lower_bg2 {
  position: absolute;
  right: -10%;
  top:-50px;
  z-index: 1;
}

.lower_container .lower_bg2 img{
  object-fit: cover;
  object-position: 30%;
}

@media screen and (max-width: 1200px) {
  .lower_container .lower_bg2{
    position: absolute;
    right:0%;
    top:10px;
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .lower_container .lower_bg1{
    right:0%;
    top:400px;
    width: 100%;
  }
}

.lower_page_head{
  height: 200px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding-left: 80px;
  margin-bottom: 80px;
  background: linear-gradient(#f0f9ff 0%, #e5f6ff 100%);
}

.lower_page_head small{
  display: block;
}

.lower_page_head strong{
  font-size: 36px;
  text-align: left;
  color: #01A99E;
}

@media screen and (max-width: 1024px) {
  .lower_page_head {
    height: 180px;
    border-radius: 15px;
    padding-left: 30px;
    margin-bottom: 40px;
  }

  .lower_page_head strong{
    font-size: 30px;
  }
}

.lower_wrap{
  max-width: 1080px;
  margin: 0 auto;
}

.lower_row{
  display: flex;
  padding-bottom: 0px;
}

.lower_row aside{ width: 260px ;}
.lower_row aside .aside_menu{
  position: sticky;
  top:100px;
  flex-wrap:wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lower_row aside .aside_menu>li>a{
  font-weight: bold;
  display: block;
  font-size: 18px;
  line-height: 1.5;
  padding: 0.5em 0;
  text-align: left;
}  

.lower_row aside .aside_menu>li.active>a{  
  color:#01A99E;
}

.lower_row aside .aside_menu>li>a:hover{
  opacity: 1;
  color:#01A99E;
}

.lower_row main { width: calc(100% - 260px);}

@media screen and (max-width: 1350px) {
  
  .lower_row aside{ width: 220px;}
  .lower_row aside .aside_menu>li>a{
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    padding: 0.5em 0;
    text-align: left;
  }  

  .lower_row main { width: calc(100% - 220px);}
}
@media screen and (max-width: 1024px) {

  .lower_row{
    display: block;
    padding-bottom: 0px;
  }
  
  .lower_row aside{ 
    width: 100%;
  }

  .lower_row main{ 
    width: 100%;
  }

  .lower_row aside .aside_menu{
    display: flex;
    top:100px;
    gap:0 1em;
    margin-bottom: 20px;
  }

  .lower_row aside .aside_menu>li{
    position: relative;
  }

  .lower_row aside .aside_menu>li::after {
    content: '';
    position: absolute;
    top: 13px;
    right: 0;
    height: 22px;
    width: 1px;
    background: #707070;
  }

  .lower_row aside .aside_menu>li:last-child::after{
    display: none;
  }

  .lower_row aside .aside_menu>li>a{
    padding-right: 30px;
    position: relative;
  }

  .lower_row aside .aside_menu>li>a::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 14px;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #01A99E;
    border-right: 2px solid #01A99E;
    transform: rotate(135deg);
  }

  .lower_row aside .aside_menu>li>a.active{  
    color:inherit;
  }
}
@media screen and (max-width: 768px) {

  .lower_row aside .aside_menu{
    gap:0 0.5em;
  }

  .lower_row aside .aside_menu>li>a::after {
    top: 15px;
  }

  .lower_row aside .aside_menu>li::after {
    top: 8px;
  }
}

.lower_sort_list{
  display: flex;
  flex-wrap:wrap;
  gap:0 50px;
  padding: 30px 0;
  padding-left: 260px;
  list-style: none;
  margin: 0;
}

.lower_sort_list>li{
  position: relative;
  font-size: 1.8rem;
  line-height: 2;
  margin-right: 0;
}

.lower_sort_list>li>a{
  font-weight: bold;
}

.lower_sort_list>li>a.active{
  color: #01A99E;
}

.lower_sort_list>li::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -25px;
  height: 24px;
  background: #D0D0D0;
  width: 1px;
}
.lower_sort_list>li:last-child::after {
  display: none;
}
@media screen and (max-width: 1400px) {
  .lower_sort_list {
    padding-left: 220px;
  }
}
@media screen and (max-width: 1024px) {

  .lower_sort_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .lower_sort_list>li{
    width: 48%;
  }

  .lower_sort_list>li>a{
    padding-right: 1em;
  }

  .lower_sort_list>li::after {
    right:0;
  }
  
  .lower_sort_list>li:nth-child(2)::after {
    display: none;
  }

}
@media screen and (max-width: 1024px) {
  .lower_sort_list {
    padding-left: 0;
  }
  .lower_sort_list>li>a {
    padding-right: 0.5em;
    font-size: 1.6rem;
  }

   .lower_sort_list{
    gap:0;
   }

  .lower_sort_list>li{
    width: 45%;
    padding-left: 1em;
  }

  .lower_sort_list>li:nth-child(1),
  .lower_sort_list>li:nth-child(3){
    width: 55%;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .lower_sort_list>li{
    max-width: 300px;
  }
  .lower_sort_list>li>a {
    padding-right: 0.5em;
    white-space:nowrap;
    font-size: 1.4rem;
  }
}

.button1 {
    position: relative;
    max-width: 550px;
    width: 100%;
    height: 65px;
    line-height: 65px;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    color: #fff;
    display: block;
    text-align: center;
    background: #01A99E;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.button1::after {
  content: '';
  position: absolute;
  right: 40px;
  margin-top: -6px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* ==========================
   メインビジュアルのテキストにシャドウ適用
========================== */
      .shadow {
          text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
      }