/* =============================================
   氷上競技合宿 LP–style.css
============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue:       #1864c0;
  --dark-navy:  #123a5a;
  --dark:       #24313a;
  --orange:     #eb6100;
  --green:      #337a2c;
  --light-blue: #eaf2fc;
  --sky-blue:   #4597D9;
  --gray-border:#8d8d8d;
  --white:      #ffffff;
  --font:       'Noto Sans JP', sans-serif;
  --max-w:      1200px;
  --header-h:   80px;
  /* faq animation */
  --ease-accordion: cubic-bezier(0.4, 0, 0.2, 1);
  /* 施設紹介 */
  /* Block1: カードが写真へ左から食い込む量 */
  --overlap-1: 190px;
  /* Block1: カードが写真より下にずれる量 */
  --offset-1: 48px;
  /* Block2: 写真がカードへ左から食い込む量 */
  --overlap-2: 150px;
  /* Block2: 写真がカードより上に出る量 */
  --offset-2: 95px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;       /* iOS Safari：body だけでは横ぐらつきを止められない */
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}


/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 500;
}
.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 50px;
  box-sizing: border-box;
}
/* ロゴ（左端固定・縮まない） */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo-sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.header-spacer {
  flex: 1 1 auto;
  min-width: 40px;
}

/* ナビ（右端固定・縮まない） */
.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  margin-right: 32px;
}
.header-nav a {
  font-size: 14px;
  color: var(--dark);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--blue); }
.header-cta-btn {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.header-cta-btn + .header-cta-btn {
  margin-left: 10px;
}
.header-cta-btn:hover { opacity: 0.85; }

/* ===== スマホ ===== */
/* ハンバーガーボタン */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.15s;
  position: relative;
  z-index: 600;
}
.hamburger:hover {
  background: var(--light-blue);
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 1000;
  padding-top: var(--header-h);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.sp-nav.is-open {
  transform: translateX(0);
}
.sp-nav__close {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--header-h);
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background 0.15s;
}
.sp-nav__close:hover {
  background: var(--light-blue);
}
.sp-nav__close-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  position: absolute;
}
.sp-nav__close-line:nth-child(1) {
  transform: rotate(45deg);
}
.sp-nav__close-line:nth-child(2) {
  transform: rotate(-45deg);
}
.sp-nav__list {
  list-style: none;
  padding: 16px 0;
}
.sp-nav__link {
  display: flex;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.sp-nav__link:hover {
  background: var(--light-blue);
  color: var(--blue);
}
.sp-nav__link--sub {
  font-size: 14px;
  font-weight: 400;
  padding-left: 32px;
}
.sp-nav__link--sub:hover {
  color: var(--blue);
}
.sp-nav__link--cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  margin: 16px 16px 0;
  border-bottom: none;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.sp-nav__link--cta:hover {
  background: var(--orange);
  opacity: 0.85;
  color: var(--white);
}
.sp-nav__link--tel {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  margin: 10px 16px 20px;
  border-bottom: none;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.sp-nav__link--tel:hover {
  background: var(--blue);
  opacity: 0.85;
  color: var(--white);
}
.sp-nav__btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.sp-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.sp-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
/* =============================================
   ④ MV 画像 SP 切り替え
      <picture> で srcset が効くが、
      SP 時は object-position を調整して
      縦長画像（スマホ用）が正しく見えるようにする
   ============================================= */
@media (max-width: 600px) {/* hero-bg picture/img の SP 制御は上記 @media(max-width:600px) 内で統合済み */}
/* レスポンシブ：ハンバーガー表示 切り替え */
@media (max-width: 960px) {
  .header-nav {
    display: none !important;
  }
  .header-cta-btn {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    flex-shrink: 0;
  }
}

/* =============================================
   MV
============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* dvh=アドレスバーを除いた実際の表示高さ（iOS Safari / Mac Safari 対応）*/
  min-height: 600px;
  max-height: 850px;
  margin-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 720px;
}
.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 20px;
  -webkit-text-stroke: 6px var(--white);
  paint-order: stroke;
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  -webkit-text-stroke: 6px var(--white);
  paint-order: stroke;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 5px;
}
.badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--white);
  color: var(--dark-navy);
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}


/* =============================================
   CTA BUTTON
============================================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(235,97,0,0.35);
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  width: fit-content;
}
.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.cta-btn .arrow {
  font-size: 22px;
  line-height: 1;
}


/* =============================================
   SECTION BASE
============================================= */
.section {
  width: 100%;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 0 150px 0;
}
.section-inner.-form {
  padding: 0;
  scroll-margin-top: 90px;
}
.section-head.left-head {
  text-align: left;
}

/* ===== スマホ ===== */
@media (max-width: 960px) {
  .section-head.-contact {
    padding: 0 15px;
  }
}


/* =============================================
   title.h2.h3
============================================= */
.en-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-align: center;
}
.section-head.light .section-title,
.section-head.light .en-label,
.section-head.light .section-sub {
  color: var(--white);
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  text-align: center;
}
.section-sub {
  font-size: 16px;
  text-align: center;
  margin-bottom: 70px;
}
.-mb--70 {
  margin-bottom: 70px;
}
.-mb--50 {
  margin-bottom: 50px;
}
.-mb--15 {
  margin-bottom: 15px;
}


/* =============================================
   こんなお悩みありませんか？
============================================= */
.worries-section {
  padding: 100px 0 150px 0;
}
.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 20px;
}
.worries-grid .fukidashi {
  position: relative;
  padding: 12px 16px;
  border: 3px solid var(--dark);
  text-align: center;
  font-weight: 700;

  &::after {
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    width: 30px;
    height: 2px;
    box-sizing: border-box;
    background-color: var(--dark);
    box-shadow:
      0 2px 0 var(--white),
      0 -2px 0 var(--white);
    rotate: 50deg;
  }
}
.worries-grid img {
  padding-top: 25px;
}


/* =============================================
   やまびこの森でまとめてできること
============================================= */
.features-bg {
  background: var(--blue);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--dark);
  transition: transform 0.2s;
  padding: 20px;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 10px;
  text-align: center;
}
.feature-card p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.65;
  padding-top: 10px;
  text-align: center;
}


/* =============================================
   対象別の利用イメージ
============================================= */
.usage-section {
  background: var(--light-blue);
}
.usage-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.usage-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  background: var(--white);
  padding: 50px 30px;
}
.usage-card-body {
  padding-top: 20px;
}
.usage-card p {
  text-align: center;
  margin-bottom: 30px;
  min-height: 50px;
}
.usage-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}
.usage-title.blue {
  color: var(--blue);
  text-align: center;
}
.usage-title.green {
  color: var(--green);
  text-align: center;
}
.usage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.usage-list li {
  font-size: 16px;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.usage-list.blue li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 16px;
}
.usage-list.green li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 16px;
}
.usage-badge {
  text-align: center;
  margin-bottom: 30px;
}
.usage-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =============================================
  料金
============================================= */
.pricing-block {
  margin-bottom: 70px;
}
.pricing-table-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  min-width: 500px;
}
.pricing-table th {
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
  border: 1px solid var(--gray-border);
  width: 10%;
}
.pricing-table td {
  font-size: 15px;
  padding: 10px;
  text-align: center;
  border: 1px solid #8D8D8D;
  color: var(--dark);
}


/* =============================================
  施設紹介
============================================= */
.features-grid.-fs h3,
.features-grid.-stay h3 {
  color: var(--blue);
  margin: 10px 0;
}
.fs-carousel,
.stay-carousel {
  position: relative;
  /* PC：ラッパー自体を透過してグリッドをそのまま表示 */
  display: contents;
}
.fs-carousel__track-wrap,
.stay-carousel__track-wrap {
  /* PC：track-wrap も透過 */
  display: contents;
}
.fs-carousel__track,
.stay-carousel__track {
  /* PC：transition等はSPのみ有効だが定義は残す */
  transition: transform 0.35s ease;
  -webkit-transition: -webkit-transform 0.35s ease;
  will-change: transform;
}
/* 矢印ボタン：PC時は非表示 */
.fs-carousel__btn,
.stay-carousel__btn {
  display: none;
}
/* ドットインジケーター：PC時は非表示 */
.fs-carousel__dots,
.stay-carousel__dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.fs-carousel__dot,
.stay-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.fs-carousel__dot.is-active,
.stay-carousel__dot.is-active {
  background: var(--blue);
}

/* ===== SP（640px以下）のみカルーセル表示 ===== */
@media (max-width: 640px) {
  /* ── fs-carousel（更衣室〜酸素ボックス）── */
  .fs-carousel {
    display: block;          /* SP：通常ブロックに戻す */
    position: relative;
    margin: 0 18px;
    overflow: visible;
  }
  .fs-carousel__track-wrap {
    display: block;          /* SP：通常ブロックに戻す */
    overflow: hidden;
    width: 100%;
  }
  .fs-carousel__btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    font-size: 16px;
    color: var(--blue);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  .fs-carousel__btn--prev { left: -18px; }
  .fs-carousel__btn--next { right: -18px; }
  .fs-carousel__btn:disabled { opacity: 0.25; cursor: default; }
  /* .fs-carousel__btn:hover { opacity: 0.75; } */
  .fs-carousel__dots { display: flex; }

  .features-grid.fs-carousel__track {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    flex-wrap: nowrap;
    width: 100%;
  }
  .features-grid.fs-carousel__track > div {
    flex: 0 0 100% !important;
    width: 80% !important;
    min-width: 0;
    box-sizing: border-box;
  }
  .features-grid.fs-carousel__track > div:first-child { padding-left: 0; }
  .features-grid.fs-carousel__track > div img {
    width: 100%;
    object-fit: cover;
    display: block;
  }
  .features-grid.fs-carousel__track > div h3 { font-size: 15px; margin: 8px 0 4px; }
  .features-grid.fs-carousel__track > div p  { font-size: 13px; line-height: 1.55; color: var(--dark); }

  /* ── stay-carousel（大部屋・個室・大浴場）── */
  .stay-carousel {
    display: block;
    position: relative;
    margin: 0 18px;
    overflow: visible;
  }
  .stay-carousel__track-wrap {
    display: block;
    overflow: hidden;
    width: 100%;
  }
  .stay-carousel__btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    font-size: 16px;
    color: var(--blue);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  .stay-carousel__btn--prev { left: -18px; }
  .stay-carousel__btn--next { right: -18px; }
  .stay-carousel__btn:disabled { opacity: 0.25; cursor: default; }
  /* .stay-carousel__btn:hover { opacity: 0.75; } */
  .stay-carousel__dots { display: flex; }

  .features-grid.stay-carousel__track {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    flex-wrap: nowrap;
    width: 100%;
  }
  .features-grid.stay-carousel__track > div {
    flex: 0 0 100% !important;
    width: 80% !important;
    min-width: 0;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .features-grid.stay-carousel__track > div:first-child { padding-left: 0; }
  .features-grid.stay-carousel__track > div img {
    width: 100%;
    object-fit: cover;
    display: block;
  }
  .features-grid.stay-carousel__track > div h3 { font-size: 15px; margin: 8px 0 4px; }
  .features-grid.stay-carousel__track > div p  { font-size: 13px; line-height: 1.55; color: var(--dark); }
}

.box-wrap {
  background: var(--white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  padding: 40px;
  margin-top: 100px;
}
.oxygen-detail {
  display: grid;
  grid-template-columns: 2fr 8fr;   /* 2:8 */
  gap: 40px;
  align-items: flex-start;
}
.oxygen-detail__img {
  flex-shrink: 0;
}
.oxygen-detail__img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.oxygen-detail__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
}
.oxygen-detail__desc {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 12px;
}
.oxygen-detail__note {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  margin-top: 10px;
}
.oxygen-detail__recommend {
  border: 5px solid var(--blue);
  padding: 10px;
}
.oxygen-detail__recommend-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .oxygen-detail__recommend-title {
    text-align: center;
  }
}
.oxygen-detail__list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
.oxygen-detail__list {
  padding-left: 1.2em;
}
.oxygen-detail__list li {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.7;
  list-style: disc;
}

/* ===== スマホ ===== */
@media (max-width: 960px) {
  .box-wrap {
    padding: 10px;
  }
  .oxygen-detail {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px;
  }
}
@media (max-width: 640px) {
  .oxygen-detail {
    grid-template-columns: 1fr;
    padding: 20px 0;
    margin-top: 24px;
  }
  .oxygen-detail__img img {
    max-width: 200px;
    margin: 0 auto;
  }
  .oxygen-detail__title {
    font-size: 20px;
    margin-top: 20px;
  }
  .oxygen-detail__list-wrap {
    grid-template-columns: 1fr;
  }
}

.fs {
  background: var(--light-blue);
}
.fs-block {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 80px;
}
.fs-block:last-child {
  margin-bottom: 0;
}
.fs-block__photo {
  flex-shrink: 0;
  width: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.fs-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fs-block__card {
  flex: 1;
  background: var(--blue);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 40px 44px 44px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fs-block__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.fs-block__slash {
  flex-shrink: 0;
  display: block;
  width: 35px;
  height: 44px;
  position: relative;
}
.fs-block__slash::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-55deg);
  transform-origin: center center;
  width: 150%;
  height: 3.5px;
  background: var(--white);
}
.fs-block__slash::after {
  content: none;
}
.fs-block__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fs-block__body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.75;
}
.fs-block--img-left .fs-block__photo {
  order: 1;
}
.fs-block--img-left .fs-block__card {
  order: 2;
  margin-left: calc(-1 * var(--overlap-1));
  margin-top: var(--offset-1);
  padding-left: calc(var(--overlap-1) + 32px);
}
.fs-block--img-right .fs-block__card {
  order: 1;
  flex: 1;
  width: auto;
  margin-top: var(--offset-2);
  padding-right: calc(var(--overlap-2) + 32px);
}
.fs-block--img-right .fs-block__photo {
  order: 2;
  width: 50%;
  margin-left: calc(-1 * var(--overlap-2));
  z-index: 2;
}

/* ===== スマホ ===== */
/* タブレット (〜 960px) */
@media (max-width: 960px) {
  :root {
    --overlap-1: 100px;
    --overlap-2:  80px;
    --offset-1:   32px;
    --offset-2:   60px;
  }
  /* .fs {
    padding: 64px 24px 80px;
  } */
  .fs-block__card {
    padding: 28px 30px 32px;
  }
  .fs-block--img-left .fs-block__card {
    padding-left: calc(var(--overlap-1) + 24px);
  }
  .fs-block--img-right .fs-block__card {
    padding-right: calc(var(--overlap-2) + 24px);
  }
  .fs-block__title {
    font-size: 20px;
  }
  .fs-block__body p {
    font-size: 14px;
  }
  .fs-block--img-right .fs-block__card {
    width: auto;
  }
  .fs-block--img-right .fs-block__photo {
    width: 53%;
  }
}

/* スマホ (〜 640px) */
@media (max-width: 640px) {
  :root {
    --offset-1: 0px;
    --offset-2: 0px;
  }
  .fs-block {
    flex-direction: column;
    margin-bottom: 40px;
  }
  /* 写真：section-innerの左右padding(20px)内に収まる（余白あり） */
  .fs-block--img-left .fs-block__photo,
  .fs-block--img-right .fs-block__photo {
    order: 1 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 220px;
  }
  .fs-block--img-left .fs-block__photo img,
  .fs-block--img-right .fs-block__photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  /* 青カード：section-innerのpadding(20px×2=40px)を突き破って画面全幅 */
  .fs-block--img-left .fs-block__card,
  .fs-block--img-right .fs-block__card {
    order: 2 !important;
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    margin-top: -40px !important;
    padding: 24px 20px 28px !important;
    gap: 14px;
    box-sizing: border-box;
  }
  .fs-block__title {
    font-size: 18px;
    gap: 10px;
    margin-top: 20px;
  }
  .fs-block__slash {
    width: 22px;
    height: 36px;
  }
  .fs-block__body p {
    font-size: 14px;
  }
  .box-wrap {
    padding: 24px 16px;
    margin-left: 0;
    margin-right: 0;
  }
}



/* =============================================
  宿泊施設
============================================= */
.accommodation-section {
  background: var(--white);
}


/* =============================================
  食事の一例
============================================= */
.meal-section {
  background: var(--light-blue);
}
.note-txt {
  color: #D52121;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}


/* =============================================
  モデルスケジュール + 利用者の声
============================================= */
.schedule-voice-section {
  background: var(--white);
}
.schedule-voice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.schedule-voice-inner::before {
  content: "";
  position: absolute;
  top: 100px;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  background: var(--gray-border);
}
/* ===== スマホ ===== */
@media (max-width: 960px) {
  .schedule-voice-inner::before {
    display: none;
  }
}
/* --- モデルスケジュール --- */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.schedule-label {
  margin-bottom: 20px;
}
.schedule-label .-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  background-color: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.schedule-label .-sky-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  background-color: var(--sky-blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.tl-dot.-green {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.tl-dot.-sky-blue {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sky-blue);
}
.timeline.-green::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--green);
  opacity: 0.25;
}
.timeline.-sky-blue::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--sky-blue);
  opacity: 0.25;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}
.tl-item {
  position: relative;
  padding-bottom: 28px;
}
.tl-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tl-time {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.tl-event {
  font-size: 16px;
  color: var(--dark);
}

/* --- 利用者の声 --- */
/* ===== スマホ ===== */
@media (max-width: 960px) {
  .voice-col {
    border-top: 5px solid var(--gray-border);
    padding-top: 40px;
  }
}
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.voice-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--gray-border);
}
.voice-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-blue);
}
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-body { flex: 1; }
.voice-meta {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}
.voice-text {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
}


/* =============================================
  アクセス
============================================= */
.access-section {
  background: var(--light-blue);
}
.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.access-info-card {
  margin-bottom: 20px;
}
.access-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.access-sub {
  font-size: 14px;
  color: var(--dark);
  margin-left: 15px;
}
.access-addr {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}
.access-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.access-route {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.route-icon {
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: flex-start;
}
.route-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.access-route p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 4px;
}
.access-map {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.badge.-blue {
  background-color: var(--blue);
}


/* =============================================
  よくある質問
============================================= */
.faq-section {
  padding: 80px 0 100px;
}
.faq-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  align-items: start;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px 20px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 70px;
  transition: background 0.15s;
}
.faq-item__btn:hover {
  background: rgba(24, 100, 192, 0.04);
}
.faq-item__q {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  line-height: 1;
}
.faq-item__question {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  flex: 1;
  line-height: 1.55;
  word-break: break-word;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s;
}
.faq-item__icon-plus,
.faq-item__icon-minus {
  position: absolute;
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  transition: opacity 0.25s, transform 0.25s;
  user-select: none;
}
.faq-item__icon-plus  { opacity: 1;  transform: rotate(0deg); }
.faq-item__icon-minus { opacity: 0;  transform: rotate(-45deg); }
.faq-item.is-open .faq-item__icon-plus  { opacity: 0;  transform: rotate(45deg); }
.faq-item.is-open .faq-item__icon-minus { opacity: 1;  transform: rotate(0deg); }
.faq-item__answer {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  width: 100%; 
  box-sizing: border-box;
  /* padding はトランジション対象から外す（開閉のカクつき防止）*/
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity    0.3s ease;
}
.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  opacity: 1;
}
/* padding は内側ラッパーで吸収（トランジションさせない）*/
.faq-item__answer-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 20px;
  width: 100%;
  box-sizing: border-box;
}
.-bd {
  border-top: 1px solid var(--gray-border);
  width: 95%;
  margin: 0 auto;
}
.faq-item__answer-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0 22px;
  border-top: 1px solid #d0def5;
  background: var(--c-answer-bg);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.faq-item__a {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  line-height: 1.2;
  padding-top: 2px;
}
.faq-item__answer p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
  flex: 1;
}
/* ===== スマホ ===== */
/* タブレット（〜 900px） */
@media (max-width: 900px) {
  .faq-section__inner {
    padding: 0 24px;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
  }

  .faq-item__question {
    font-size: 14px;
  }
}
/* モバイル（〜 640px） */
@media (max-width: 640px) {
  .faq-section {
    padding: 56px 0 64px;
  }
  .faq-section__inner {
    padding: 0 16px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-item__q {
    font-size: 20px;
    width: 26px;
  }
  .faq-item__question {
    font-size: 14px;
  }
  .faq-item__icon {
    width: 36px;
    height: 36px;
  }
  .faq-item__icon-plus,
  .faq-item__icon-minus {
    font-size: 18px;
  }
}


/* =============================================
   スクロールフェードイン
============================================= */
.js-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
  お問い合わせの前に
============================================= */
.bc-section {
  background: var(--white);
  padding-top: 50px;
  padding-bottom: 120px;
}
.bc-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.bc-box {
  position: relative;
  border: 5px solid var(--blue);
  padding: 50px 50px 0 50px;
  margin-top: 25px;
}
.bc-box__title-wrap {
  position: absolute;
  top: 0;
  left: 50px;
  transform: translateY(-50%);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
}
.bc-box__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  line-height: 1;
}
.bc-box__desc {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 30px;
}
.bc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 220px;
  gap: 0 24px;
  align-items: flex-start;
}
.bc-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bc-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-item__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bc-item__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  white-space: nowrap;
}
.bc-col--img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.bc-col__img {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 209px;
  object-fit: cover;
  display: block;
}
/* ===== スマホ ===== */
/* タブレット（〜 860px） */
@media (max-width: 860px) {
  .bc-box {
    padding: calc(var(--title-offset) + 20px) 28px 32px;
  }
  .bc-grid {
    grid-template-columns: repeat(3, 1fr) 160px;
    gap: 0 16px;
  }
  .bc-item__text {
    font-size: 14px;
    white-space: normal;
  }
  .bc-col__img {
    max-width: 160px;
    max-height: 160px;
  }
}
/* スマホ（〜 640px） */
@media (max-width: 640px) {
  .bc-section {
    padding: 48px 16px 60px;
  }
  .bc-box {
    padding: 15px;
  }
  .bc-box__title-wrap {
    left: 20px;
  }
  .bc-box__title-wrap::after {
    width: 40px;
  }
  .bc-box__title {
    font-size: 16px;
  }
  .bc-box__desc {
    font-size: 14px;
    margin-bottom: 24px;
    margin-top: 20px;
  }
  .bc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px 2px;
  }
  .bc-grid > .bc-col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .bc-grid > .bc-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .bc-grid > .bc-col:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .bc-col--img {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
  }
  .bc-col__img {
    max-width: 100%;
    max-height: 160px;
    width: 100%;
    object-fit: cover;
  }
  .bc-item__text {
    font-size: 14px;
    white-space: normal;
  }
  .bc-item__icon {
    width: 26px;
    height: 26px;
  }
}


/* =============================================
  お問い合わせ
============================================= */
.contact-section {
  background: var(--blue);
}
.contact-form {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 60px;
}
.form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 30px;
}
/* ===== スマホ ===== */
/* タブレット（〜 860px） */
@media (max-width: 860px) {
  .form-row {
    gap: 15px;
  }
  .contact-form {
    padding: 30px 10px;
  }
}

.form-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.req {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,100,192,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit-wrap {
  text-align: center;
  margin-top: 32px;
}
.form-submit-btn {
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 60px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s;
}
.form-submit-btn:hover { opacity: 0.85; }
.form-field {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10px 0;
}
.field-privacy {
  padding-top: 70px;
  margin: 0 auto;
  justify-content: center;
}
.wpcf7-form-control-wrap {
  position: relative;
}
.form-input-checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px;
  position: relative;
  width: auto;
}
.form-privacy-link {
  text-decoration: underline;
}
.google-notice {
  font-size: 14px;
  text-align: center;
  margin-top: 60px;
  letter-spacing: .1em;
}
.google-notice a {
  text-decoration: underline;
}
/* =============================================
  FOOTER
============================================= */
.site-footer {
  background: #F5F7FA;
  color: var(--dark);
  padding: 50px 40px 20px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-border);
}
.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}
.footer-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-addr {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--dark);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue); }

/* フッター右カラム：CTAボタン（右寄せ） */
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  justify-self: end;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
  min-width: 200px;
  justify-content: center;
}
.footer-cta-btn:hover { opacity: 0.75; }
.footer-cta-btn__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-copy {
  max-width: var(--max-w);
  margin: 20px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--dark);
  opacity: 0.5;
}

/* =============================================
  PC 追従
============================================= */
.pc-side-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateX(100%) translateY(-50%);
  z-index: 400;
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.pc-side-contact.is-visible {
  transform: translateX(0) translateY(-50%);
}
.pc-side-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 25px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.15em;
  box-shadow: -4px 4px 16px rgba(0,0,0,0.2);
  transition: opacity 0.2s;
  line-height: 1;
}
.pc-side-btn:hover { opacity: 0.88; }
.pc-side-btn span {
  display: block;
  writing-mode: vertical-rl;
}


/* =============================================
  TOPへ戻るボタン
============================================= */
.top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 390;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}
.top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.top-btn:hover {
  opacity: 0.75;
  transform: translateY(-3px);
}
.top-btn__arrow {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}
.top-btn__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 600px) {
  .top-btn {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
  .top-btn.bar-shown {
    bottom: calc(56px + 10px);
  }
}
.sp-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: row;
  z-index: 400;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.sp-bottom-bar.is-visible {
  transform: translateY(0);
}
.sp-contact-btn,
.sp-tel-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 12px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}
.sp-contact-btn {
  background: var(--orange);
}
.sp-tel-btn {
  background: var(--blue);
}
.tel-icon {
  margin-right: 8px;
}
.tel-icon img {
  width: 80%;
}
.tel-icon-sp { font-size: 18px; }


/* =============================================
  SCROLL FADE-IN
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===== スマホ ===== */
/* タブレット（〜 960px） */
@media (max-width: 960px) {
  .en-label,
  .section-title {
    font-size: 20px
  }
  .section-sub {
    margin-bottom: 30px;
  }
  .section-sub,.note-txt {
    text-align: left;
  }
  .header-nav { display: none; }

  .features-grid,
  .worries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usage-cards,
  .stay-block,
  .stay-block.reverse-stay,
  .access-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-cta {
    align-items: flex-start;
    justify-self: start;
  }
  .facility-block,
  .facility-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .schedule-voice-inner {
    grid-template-columns: 1fr;
  }
  .facility-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-label { padding-top: 0; }
  .pc-side-contact { display: none; }
}

/* =============================================
   RESPONSIVE – MOBILE (≤ 600px)
============================================= */
@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 16px; }
  .logo-sub { display: none; }
  .logo-img { height: 32px; }
  .header-cta-btn { display: none !important; }
  .hero-cta { display: none !important; }
  .hero {
    height: auto;
    min-height: unset;
    max-height: unset;
    overflow: visible;
  }
  .hero-bg {
    position: relative;
    inset: auto;
  }
  .hero-bg picture,
  .hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    object-position: unset;
  }
  .hero-overlay,
  .hero-content {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .hero {
    position: relative;
  }
  .hero-content { padding: 0 20px; }
  .hero-title {
    font-size: 36px;
    position: absolute;
    top: 8%;
  }
  .hero-subtitle {
    position: absolute;
    top: 30%;
  }
  .hero-badges {
    gap: 6px;
    position: absolute;
    bottom: 0%;
  }
  .badge { font-size: 14px; padding: 5px 10px; }
  .cta-btn { font-size: 15px; padding: 14px 24px; }
  .section-inner,
  .schedule-voice-inner {
    padding: 56px 20px;
  }
  .worries-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .facility-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .acc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .acc-card img {
    height: 110px;
  }
  .acc-card-body {
    padding: 10px 8px;
  }
  .acc-card-body h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .acc-card-body p {
    font-size: 11px;
    line-height: 1.5;
  }
  .usage-card-img { height: 180px; }
  .schedule-voice-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .voice-card { flex-direction: column; }
  .pc-side-contact { display: none; }
  .sp-bottom-bar { display: flex; }
  .stay-block,
  .stay-block.reverse-stay {
    overflow: visible;
  }
  body.sp-bar-shown {
    padding-bottom: 56px;
  }
}
.br-sp { display: none; }
@media (max-width: 960px) {
  .br-sp { display: block; }  /* SPのみ改行 */
  .br-pc { display: none;  }  /* SPでは改行しない */
}


/* ドロップダウン ラッパー */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* トリガーリンク（施設紹介） */
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-dropdown__trigger:hover {
  color: var(--blue);
}
/* 下矢印アイコン（CSS三角） */
.nav-dropdown__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left:   4px solid transparent;
  border-right:  4px solid transparent;
  border-top:    5px solid currentColor;
  transition: transform 0.2s;
  margin-top: 1px;
}
/* ドロップダウン メニュー */
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #dde8f5;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none;
  min-width: 130px;
  padding: 14px 0 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 600;
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-dropdown__menu::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-left:  6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #dde8f5;
}
.nav-dropdown__menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown__menu li a:hover {
  background: var(--light-blue);
  color: var(--blue);
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown:hover .nav-dropdown__arrow {
  transform: rotate(180deg);
}


.form-submit-btn:disabled,
.form-submit-btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  border: 2px solid #2fb344;
  color: #24313a;
  background: #fff;
}

