/* ============================================================
   凯思旅游 / GENKO TRAVEL KS
   style.css — 移动端优先的响应式样式
   基准: 1rem = 16px（浏览器默认），使用 clamp() 实现流体字号
   断点: 移动 < 768px | 平板 768–1023px | 桌面 ≥ 1024px
============================================================ */

/* ============================================================
   1. CSS 自定义属性 / 设计令牌
============================================================ */
:root {
  /* 颜色 */
  --color-bg:           #f6f3e7;    /* 主背景色（米白） */
  --color-bg-beige:     #eeead9;    /* 服务区块背景 */
  --color-dark-navy:    #303a4b;    /* 强项区块背景 */
  --color-footer-dark:  #2d3748;    /* 页脚背景 */
  --color-white:        #ffffff;
  --color-black:        #000000;
  --color-text-dark:    #333333;
  --color-text-gray:    #666666;
  --color-border-dark:  #325863;   /* 强项卡片上边框 */
  --color-accent-red:   #d02610;   /* 御朱印红色 */
  --color-accent-blue:  #70a4d2;   /* 激活状态蓝色 */
  --color-blue-grad:    #07a1fe;   /* 蓝色渐变 */

  /* 字体族 */
  --font-primary: 'Zen Maru Gothic', 'Noto Sans SC', sans-serif;

  /* 字号（clamp: 最小 | 流体 | 最大） */
  --fs-hero-title:   clamp(2rem,   3.75vw, 3.375rem);  /* 54px @ 1440px */
  --fs-hero-sub:     clamp(1rem,   1.67vw, 1.5rem);    /* 24px @ 1440px */
  --fs-section-h2:   clamp(1rem,   1.39vw, 1.25rem);   /* 20px @ 1440px */
  --fs-body:         clamp(0.75rem, 0.83vw, 1rem);     /* 16px → 12px */
  --fs-small:        clamp(0.75rem, 0.97vw, 0.875rem); /* 14px */
  --fs-strength-num: clamp(1rem,   1.51vw, 1.356rem);  /* 21.7px */
  --fs-strength-h3:  clamp(0.875rem, 1.11vw, 1rem);    /* 16px */

  /* 间距 */
  --gap-section:  clamp(3rem, 5vw, 6.25rem);
  --gap-content:  clamp(1.5rem, 3vw, 3.125rem);

  /* 过渡 */
  --transition-base: 0.25s ease;

  /* 最大宽度 */
  --max-width: 1440px;
}

/* ============================================================
   2. 全局重置 / 基础样式
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  overflow-x: hidden;
  /* 防止 CLS：预设字体加载时的后备 */
  font-display: swap;
}

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

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   3. 通用工具类
============================================================ */

/* 章节标题（"私たちについて" / "新着情報" 等） */
.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-section-h2);
  letter-spacing: 0.95px;
  text-align: center;
  line-height: 1.25;
}
.section-title--white { color: var(--color-white); }
.section-title--dark  { color: var(--color-black); }

/* ============================================================
   4. ヘッダー / ナビゲーション
   高さ: 56px（Figma指定）
   backdrop-filter blur + 半透明黑背景
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1099;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 17px;
  /*background: transparent;*/
  background: rgba(0, 0, 0, 0.20);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  -webkit-transition: background-color 0.25s ease, -webkit-backdrop-filter 0.25s ease;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.header.header--scrolled {
  background: rgba(0, 0, 0, 0.20);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* ハンバーガーボタン（モバイル表示） */
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.header__menu-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* ヘッダー内ロゴ（モバイルのみ表示） */
.header__logo {
  display: none;
  align-items: center;
  margin-left: 12px;
}
.header__logo-icon {
  height: 30px;
  width: auto;
}

/* メインナビ（PC用） */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__nav-list {
  display: flex;
  gap: 45px;
  align-items: center;
}
.header__nav-link {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 0.27px;
  line-height: 30px;
  white-space: nowrap;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.header__nav-link:hover {
  opacity: 0.75;
}

.header__nav-link--active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* ログイン / 新規登録ボタン */
.header__actions {
  display: flex;
  gap: 0;
  align-items: center;
  flex-shrink: 0;
}
.header__action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  width: 100px;
  height: 25px;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-white);
  letter-spacing: 0.27px;
  line-height: 30px;
  white-space: nowrap;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.header__action-btn:hover { opacity: 0.75; }
.header__action-btn img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   5. ドロワーメニュー（モバイル用）
============================================================ */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(48, 58, 75, 0.97);
  z-index: 2000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  padding: 80px 24px 40px;
}
.drawer.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.drawer__list { display: flex; flex-direction: column; gap: 0; }
.drawer__link {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.drawer__link:hover { opacity: 0.7; }

/* オーバーレイ */
.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   6. ヒーローセクション
   Figma: 高さ 963px、幅 1440px
============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 66.875vw, 963px); /* 963/1440 × 100vw */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px; /* 渐变过渡的高度，越大过渡越柔和 */
  background: linear-gradient(to bottom, transparent, #00aaff);
}
/* hero 与 about 交界：蓝色雾化过渡带 */
/* .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(26px, 5vw, 58px);
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(31, 173, 255, 0.88) 0%,
      rgba(31, 173, 255, 0.58) 45%,
      rgba(31, 173, 255, 0) 100%
    );
  filter: blur(4px);
} */

/* 背景レイヤー */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* 桜のオーバーレイ（透過PNG） */
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
/* 上下グラデーション */
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(7, 161, 254, 0.55) 0%, rgba(204,162,160,0) 14%),
    linear-gradient(to bottom, rgba(38, 176, 254, 0.35) 0%, rgba(85,174,254,0) 14%);
  pointer-events: none;
}

/* ロゴ（ヒーロー内） */
.hero__logo {
  position: absolute;
  top: clamp(100px, 9.7vw, 140px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__logo-icon {
  width: clamp(60px, 6.8vw, 98px);
  height: auto;
}
.hero__logo-text {
  width: clamp(70px, 6.875vw, 99px);
  height: auto;
}

/* キャッチコピー */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 20px;
  margin-top: clamp(80px, 15vw, 200px); /* ロゴ分の余白 */
}
.hero__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-hero-title);
  color: var(--color-white);
  line-height: 1.16;
  letter-spacing: 0.27px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.6em;
  text-align: center;
}
.hero__subtitle {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-hero-sub);
  color: var(--color-white);
  letter-spacing: 0.27px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.67;
}

/* ============================================================
   7. 私たちについてセクション
   Figma: 高さ 963px、背景は青みがかった風景写真
============================================================ */
.about {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 66.875vw, 963px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 18px 28px rgba(31, 173, 255, 0.88); */
  /* box-shadow: -10px -45px 15px 10px rgba(19, 160, 241, 0.5);
  background: #07A1FE; */
}

/* 交界处上沿补一层蓝光，形成连续过渡 */
.about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(36px, 6vw, 72px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(31, 173, 255, 0.55) 0%,
    rgba(31, 173, 255, 0.22) 55%,
    rgba(31, 173, 255, 0) 100%
  );
}

/* 交界处下沿做“由下往上”提亮过渡（贴近截图效果） */
.about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(110px, 14vw, 240px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(26, 160, 240, 0.95) 0%,
    rgba(35, 171, 252, 0.72) 28%,
    rgba(66, 186, 255, 0.32) 62%,
    rgba(68, 186, 255, 0) 100%
  );
}

/* 背景 */
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about__bg-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* 后台为图片时：PC 用图，手机端用固定 MP4 */
.about__bg-video--mobile {
  display: none;
}
@media (max-width: 767px) {
  .about__bg-img--desktop {
    display: none !important;
  }
  .about__bg-video--mobile {
    display: block;
  }
}
.about__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(38, 176, 254, 0.42) 0%, rgba(85,174,254,0) 14%),
    linear-gradient(0.004deg, rgba(85, 174, 254, 0) 83.5%, rgba(7, 161, 254, 1) 100%);
  pointer-events: none;
}

/* コンテンツ */
.about__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 20px;
  max-width: 800px;
}
.about__content .section-title {
  margin-bottom: clamp(24px, 3.5vw, 50px);
}
.about__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(0.875rem, 1.39vw, 1.25rem); /* 20px @ 1440px */
  color: var(--color-white);
  line-height: 1.9;
  letter-spacing: 0.27px;
  text-align: center;
}
.about__text p { margin-bottom: 0; }

/* ============================================================
   8. 中間風景セクション
   Figma: 高さ約 597px（1926→2523px）
============================================================ */
.mid-scene {
  position: relative;
  width: 100%;
  height: clamp(200px, 41.46vw, 597px); /* 597/1440 × 100vw */
  overflow: hidden;
}
.mid-scene::after{
  content: '';
  position: absolute;
  left: 0;
  top: -36px;
  width: 100%;
  height: clamp(159px, 24vw, 100px);
  z-index: 2;
  pointer-events: none;
  background: radial-gradient( 120% 95% at 50% 0%, rgba(26, 160, 240, 0.95) 0%, rgba(26, 160, 240, 0.95) 46%, rgba(125, 200, 255, 0) 100% ), linear-gradient( to bottom, rgba(23, 154, 235, 0.78) 0%, rgba(44, 178, 255, 0.36) 44%, rgba(72, 190, 255, 0.14) 70%, rgba(72, 190, 255, 0) 100% );
  /* background:
    radial-gradient(
      120% 95% at 50% 0%,
      rgba(125, 200, 255, 0.48) 0%,
      rgba(125, 200, 255, 0.18) 46%,
      rgba(125, 200, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(23, 154, 235, 0.78) 0%,
      rgba(44, 178, 255, 0.36) 44%,
      rgba(72, 190, 255, 0.14) 70%,
      rgba(72, 190, 255, 0) 100%
    ); */
}
.mid-scene__bg {
  position: absolute;
  inset: 0;
}
.mid-scene__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* 上下グラデーションで隣接セクションとなめらかに繋ぐ */
.mid-scene__gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36%;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(168, 220, 255, 0.28) 0%, rgba(168, 220, 255, 0) 100%),
    linear-gradient(to bottom, rgba(41,180,255,0.36) 0%, rgba(41,180,255,0.08) 58%, transparent 100%);
  pointer-events: none;
}
.mid-scene__gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 12%;
  background: linear-gradient(to top, rgba(48,58,75,1) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================================
   9. 私たちの強みセクション
   Figma: 高さ 512px、背景 #303a4b
   3カラムカード
============================================================ */
.strengths {
  background-color: var(--color-dark-navy);
  padding: clamp(60px, 5.56vw, 80px) 20px clamp(60px, 8.33vw, 120px);
}
.strengths__container {
  max-width: 1000px;
  margin: 0 auto;
}
.strengths__container .section-title {
  margin-bottom: clamp(24px, 3.47vw, 50px);
}

/* Swiper ラッパー */
.strengths__swiper {
  padding-bottom: clamp(32px, 4vw, 48px);
}

/* カードリスト（swiper-wrapper 兼用） */
.strengths__list.swiper-wrapper {
  align-items: stretch;
}

/* 各カード */
.strength-item {
  width: 100%;
  max-width: 285px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.strengths .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* ページネーション（濃色背景用） */
.strengths__pagination.swiper-pagination {
  position: relative;
  margin-top: clamp(20px, 3vw, 32px);
  bottom: auto;
  left: 0;
  right: 0;
}
.strengths__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.strengths__pagination .swiper-pagination-bullet-active {
  background: var(--color-white);
}
.strength-item__inner {
  padding-top: 32px;
  position: relative;
}

/* 上部の区切り線 + 白いアクセント */
.strength-item__divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-dark);
  position: relative;
  margin-bottom: 0;
}
.strength-item__divider-accent {
  position: absolute;
  right: 0;
  top: -1px;
  width: 13px;
  height: 2px;
  background-color: var(--color-white);
}

/* 番号 */
.strength-item__number {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-strength-num);
  color: var(--color-white);
  letter-spacing: 0.99px;
  line-height: 1.28;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* タイトル */
.strength-item__title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-strength-h3);
  color: var(--color-white);
  letter-spacing: 0.95px;
  line-height: 1.5625; /* 25px / 16px */
  margin-bottom: 16px;
}

/* 説明文 */
.strength-item__desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-white);
  line-height: 2.083; /* 25px / 12px */
}

/* ============================================================
   10. パノラマストリップ（風景ギャラリー / Swiper）
   Figma: 各画像 360/361px × 188px
============================================================ */
.panorama {
  width: 100%;
  overflow: hidden;
}
.panorama__swiper {
  width: 100%;
}
.panorama__grid.swiper-wrapper {
  align-items: stretch;
}
.panorama .swiper-slide {
  cursor: pointer;
  height: auto;
}
.panorama__item {
  width: 100%;
  min-width: 0;
  /* 画像の縦横比固定: 188/360 ≈ 52.22% */
  aspect-ratio: 360 / 188;
  overflow: hidden;
}
.panorama__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}
.panorama__item:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/* ============================================================
   11. 御朱印巡りセクション
   Figma: 高さ 750px、背景は大きな神社風景写真
   右寄せに赤い大きなテキスト
============================================================ */
.goshuuin {
  position: relative;
  width: 100%;
  min-height: clamp(340px, 52.08vw, 750px); /* 750/1440 */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* 背景画像 */
.goshuuin__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.goshuuin__bg-img {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
}

/* テキストオーバーレイ */
.goshuuin__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5.56vw, 80px);
  display: flex;
  justify-content: flex-end; /* 右寄せ（Figmaと一致） */
}
.goshuuin__text-block {
  /* Figma: left=851px (≈59%), width=517px (≈35.9%), border上下 */
  border-top: 2px solid var(--color-accent-red);
  border-bottom: 2px solid var(--color-accent-red);
  padding: 12px 0;
  text-align: right;
  max-width: 520px;
}
.goshuuin__title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.69vw, 5.12rem); /* 81.92px @ 1440px */
  color: var(--color-accent-red);
  letter-spacing: 3.89px;
  line-height: 1.25;
  /* 複数の青いグロー text-shadow */
  text-shadow:
    0 0 13px #b9d8da,
    0 0 13px #b9d8da,
    0 0 13px #b9d8da,
    0 0 13px #b9d8da,
    0 0 13px #b9d8da;
  margin-bottom: 8px;
}
.goshuuin__subtitle {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.67vw, 1.5rem); /* 24px @ 1440px */
  color: var(--color-accent-red);
  letter-spacing: 1px;
  line-height: 1.46;
  text-shadow:
    0 0 13px #b9d8da,
    0 0 13px #b9d8da;
  white-space: nowrap;
}

/* ============================================================
   12. サービスカテゴリーセクション
   Figma: 高さ 957px、背景 #eeead9
============================================================ */
.services {
  background-color: var(--color-bg-beige);
  padding: clamp(40px, 4.72vw, 68px) 0 clamp(40px, 5.56vw, 80px);
}
.services .section-title {
  margin-bottom: clamp(20px, 2.64vw, 38px);
}

/* カテゴリーナビ */
.service-nav {
  margin-bottom: clamp(24px, 3.47vw, 50px);
}
.service-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 5.28vw, 76px);
  flex-wrap: wrap;
  padding: 0 20px;
}
.service-nav__tab {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(0.875rem, 1.39vw, 1.25rem); /* 20px @ 1440px */
  color: var(--color-black);
  letter-spacing: 0.95px;
  line-height: 1.25;
  white-space: nowrap;
  -webkit-transition: opacity var(--transition-base), color var(--transition-base);
  transition: opacity var(--transition-base), color var(--transition-base);
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
}
.service-nav__tab:focus-visible {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: 3px;
}
.service-nav__tab:not(.service-nav__tab--active):hover { opacity: 0.7; }
.service-nav__tab--active {
  color: var(--color-accent-blue);
}
/* 未選択：chevron-right / 選択：chevron-right1 */
.service-nav__chev {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  background: url('../img/chevron-right.png') center / contain no-repeat;
}
.service-nav__tab--active .service-nav__chev {
  background-image: url('../img/chevron-right1.png');
}

/* ショーケース + Tab パネル */
.service-showcase {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-showcase__viewport {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 34.72vw, 500px);
}
.service-tab-panel {
  /* position: absolute; */
  left: 0;
  right: 0;
  top: 0;
  min-height: clamp(240px, 34.72vw, 500px);
  visibility: hidden;
  display: none;
  -webkit-transition: opacity 0.45s ease, visibility 0.45s ease;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
  z-index: 0;
}
.service-tab-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
  z-index: 1;
}
.service-showcase__inner {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 34.72vw, 500px);
  overflow: hidden;
}

/* 背景＋オーバーレイ画像 */
.service-showcase__media {
  inset: 0;
  z-index: 0;
}
.service-showcase__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-showcase__photo-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.service-showcase__inner:hover .service-showcase__photo-overlay {
  opacity: 1;
}

/* カルーセル矢印ボタン */
.service-showcase__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.service-showcase__arrow:hover { opacity: 0.7; }
.service-showcase__arrow img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.service-showcase__arrow--prev {
  left: clamp(20px, 5.9vw, 85px);  /* Figma: 85px */
}
.service-showcase__arrow--next {
  right: clamp(20px, 9.17vw, 132px); /* Figma: 1440-1308=132px */
}

/* ショーケーステキスト（右寄せ赤文字） */
.service-showcase__text {
  position: absolute;
  right: clamp(20px, 5.56vw, 80px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  max-width: 520px;
  text-align: right;
}
.service-showcase__text-inner {
  border-top: 2px solid var(--color-accent-red);
  border-bottom: 2px solid var(--color-accent-red);
  padding: 12px 0;
}
.service-showcase__title-jp {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(2rem, 5.69vw, 5.12rem);
  color: var(--color-accent-red);
  letter-spacing: 3.89px;
  line-height: 1.25;
  text-shadow:
    0 0 13px #b9d8da,
    0 0 13px #b9d8da,
    0 0 13px #b9d8da,
    0 0 13px #b9d8da;
  margin-bottom: 4px;
}
.service-showcase__subtitle {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.67vw, 1.5rem);
  color: var(--color-accent-red);
  letter-spacing: 1px;
  line-height: 1.46;
  text-shadow:
    0 0 13px #b9d8da,
    0 0 13px #b9d8da;
  white-space: normal;
}

/* 詳しく見るボタン */
.service-showcase__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3.47vw, 50px);
}
.btn-detail {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(200px, 18.06vw, 260px);
  height: clamp(50px, 4.44vw, 64px);
  background: rgba(0, 0, 0, 0.60);
  border: 1px solid var(--color-white);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(0.875rem, 1.39vw, 1.25rem);
  color: var(--color-white);
  letter-spacing: 0.95px;
  text-align: center;
  -webkit-transition: background var(--transition-base), opacity var(--transition-base);
  transition: background var(--transition-base), opacity var(--transition-base);
}
.btn-detail:hover {
  background: rgba(0, 0, 0, 0.80);
  opacity: 0.9;
}

/* ============================================================
   13. 新着情報セクション
   Figma: 2カラム × 3行（各 503px × 373px）
============================================================ */
.news {
  background-color: var(--color-bg);
  padding: clamp(40px, 4.72vw, 68px) clamp(20px, 11.6vw, 167px) clamp(60px, 8.33vw, 120px);
}
.news .section-title {
  margin-bottom: clamp(24px, 3.47vw, 50px);
}

/* ニュースグリッド */
.news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3.33vw, 48px) clamp(16px, 4.1vw, 59px);
  max-width: 1110px;
  margin: 0 auto;
}
/* ニュースカード */
.news-item {
  /* 縦方向のフロー配置（絶対位置禁止） */
}
.news-item:nth-child(2n){
	margin-top: 136px;
}
.news-item__link {
  display: block;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.news-item__link:hover { opacity: 0.85; }

/* サムネイル画像エリア */
.news-item__img-wrap {
  width: 100%;
  /* 縦横比: 272/503 ≈ 54.07% */
  aspect-ratio: 503 / 272;
  overflow: hidden;
  margin-bottom: 1px;
}
.news-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}
.news-item__link:hover .news-item__img,
.news-item__link:focus-visible .news-item__img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/* カード本文エリア */
.news-item__body {
  padding-top: 4px;
}

/* 日付 */
.news-item__date {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-gray);
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 2px;
}

/* タイトル */
.news-item__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.39vw, 1.25rem); /* 20px @ 1440px */
  color: var(--color-black);
  line-height: 1.5;
}

/* ============================================================
   14. フッター
   Figma: 高さ 553px、背景 #2d3748
============================================================ */
.footer {
  background-color: var(--color-footer-dark);
  padding: clamp(40px, 5.56vw, 80px) clamp(20px, 10.56vw, 152px) 0;
}

/* フッター内レイアウト（3カラム Grid） */
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 3.33vw, 48px);
  align-items: start;
  margin-bottom: clamp(24px, 3.47vw, 50px);
}

/* 会社情報 */
.footer__info { min-width: 0; }
.footer__company-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  line-height: 30px;
  margin-bottom: 16px;
}
.footer__address {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  line-height: 35px;
}
.footer__address p { margin: 0; }

/* フッターナビ（右配置） */
.footer__nav {
  display: flex;
  gap: clamp(30px, 3.75vw, 54px);
  justify-self: end;
}
.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__nav-group a {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  line-height: 18px;
  padding: 8px 0;
  display: block;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.footer__nav-group a:hover { opacity: 0.7; }

/* ロゴ（中央配置） */
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 8px;
}
.footer__logo-icon {
  width: clamp(60px, 6.81vw, 98px);
  height: auto;
}
.footer__logo-text {
  width: clamp(60px, 6.88vw, 99px);
  height: auto;
}

/* フッターリンク（利用規則等） */
.footer__links {
  display: flex;
  gap: clamp(16px, 3.47vw, 50px);
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: clamp(12px, 1.67vw, 24px) 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer__links a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  line-height: 40px;
  white-space: nowrap;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}
.footer__links a:hover { opacity: 0.7; }

/* コピーライト */
.footer__copyright {
  text-align: center;
  padding: clamp(12px, 1.67vw, 24px) 0 clamp(24px, 2.78vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__copyright p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  line-height: 25px;
}

/* ============================================================
   15. レスポンシブ / メディアクエリ
   移動端优先：モバイル → タブレット → デスクトップ
============================================================ */

/* ------  タブレット（≥768px）  ------ */
@media (min-width: 768px) {

  /* ヘッダー：ロゴをヘッダー内に表示 */
  .header__logo { display: flex; }

  /* ヘッダーナビは768px未満は非表示のまま（ハンバーガーで操作） */

  /* フッターリンク：中央寄せ */
  .footer__links { justify-content: center; }

}

/* ------  デスクトップ（≥1024px）  ------ */
@media (min-width: 1024px) {

  /* ハンバーガーボタン：デスクトップでも表示（Figma設計通り） */
  .header__menu-btn { display: flex; }

  /* ロゴをヘッダーから非表示（ヒーロー内のロゴを使用） */
  .header__logo { display: none; }

  /* ナビゲーション表示 */
  .header__nav { display: flex; }

  /* ログイン/新規登録ボタン */
  .header__actions { display: flex; }

  /* ヒーローコンテンツ（Figmaの絶対位置に近い相対位置） */
  .hero__content {
    margin-top: 0;
    position: absolute;
    left: 50%;
    top: 47.5%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0;
  }

  /* About テキストを大きく */
  .about__content { padding: 80px 40px; }

  /* ニュースグリッド余白調整 */
  .news {
    padding-left: clamp(100px, 11.6vw, 167px);
    padding-right: clamp(100px, 11.6vw, 167px);
  }

  /* フッター3カラム Grid（≥768px では常にグリッド） */
  .footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

}

/* ------  大画面（≥1440px）  ------ */
@media (min-width: 1440px) {
  /* コンテンツを 1440px で頭打ち */
  .header { max-width: 100%; } /* header は常にフル幅 */
  .footer { padding-left: 152px; padding-right: 152px; }
}

/* ------  モバイル（<768px）専用上書き  ------ */
@media (max-width: 767px) {

  /* ヘッダー：ロゴをバー中央に（ハンバーガーは左に固定） */
  .header {
    justify-content: center;
  }
  .header__menu-btn {
    position: absolute;
    left: 17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .header__nav    { display: none; }
  .header__actions { display: none; }
  .header__logo   {
    display: flex;
    margin-left: 0;
    justify-content: center;
  }

  /* ヒーロー：マージン調整 */
  .hero__content {
    text-align: center;
    padding: 0 16px;
    margin-top: 40px;
  }
  .hero__logo {
    top: 70px;
  }

  /* About テキスト */
  .about__text {
    font-size: clamp(0.8125rem, 4vw, 1rem);
    text-align: center;
  }

  /* 強みカード：1カラム */
  .strength-item { max-width: 100%; }

  /* パノラマ：Swiper（2枚表示・自動ループ） */
  .panorama__item {
    aspect-ratio: 16 / 9;
  }

  /* 御朱印テキスト：中央寄せ */
  .goshuuin__overlay { justify-content: center; padding: 0 16px; }
  .goshuuin__text-block { text-align: center; max-width: 100%; }
  .goshuuin__subtitle { white-space: normal; }

  /* サービス Tab：横スクロール */
  .service-nav__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px 8px;
    gap: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .service-nav__list::-webkit-scrollbar { display: none; }
  .service-nav__tab {
    flex-shrink: 0;
  }

  /* ショーケーステキスト */
  .service-showcase__text {
    right: 16px;
    left: 16px;
    text-align: center;
  }
  .service-showcase__text-inner { text-align: center; }
  .service-showcase__subtitle { white-space: normal; }

  /* ニュースグリッド：1カラム */
  .news__grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 40px);
  }
  .news {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* フッター縦積み */
  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .footer__logo { justify-self: unset; }
  .footer__nav {
    justify-self: unset;
    flex-direction: column;
    gap: 8px;
  }
  .footer__links {
    justify-content: center;
    gap: 16px;
  }
  .footer__links a { line-height: 28px; }
}

/* ------  超小画面（<375px）  ------ */
@media (max-width: 374px) {
  .goshuuin__title,
  .service-showcase__title-jp {
    font-size: 2rem;
  }
  .goshuuin__subtitle,
  .service-showcase__subtitle {
    font-size: 0.75rem;
  }
  .hero__title { font-size: 1.75rem; }
  .hero__subtitle { font-size: 0.875rem; }
}

/* ============================================================
   16. ブラウザ互換性向け接頭辞補足
   （主要な -webkit- 接頭辞は各所に適用済み）
============================================================ */

/* Firefox など backdrop-filter フォールバック */
@supports not (backdrop-filter: blur(4px)) {
  .header.header--scrolled { background: rgba(0, 0, 0, 0.55); }
  .btn-detail { background: rgba(0, 0, 0, 0.75); }
}

/* Safari の aspect-ratio フォールバック（古い Safari 用） */
@supports not (aspect-ratio: 503 / 272) {
  .news-item__img-wrap {
    position: relative;
    padding-bottom: 54.07%; /* 272/503 */
    height: 0;
    overflow: hidden;
  }
  .news-item__img-wrap .news-item__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .panorama__item {
    position: relative;
    padding-bottom: 52.22%; /* 188/360 */
    height: 0;
  }
  .panorama__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* ============================================================
   17. プライバシーポリシー（Figma node 1:2344）
   背景 #f6f3e7、本文幅 1122px、14px/20px 行間
============================================================ */
.page-privacy-body {
  background-color: #f6f3e7;
}

.page-privacy {
  padding-top: 82px; /* Figma タイトル top 138px − ヘッダー 56px */
  padding-bottom: clamp(48px, 8vw, 100px);
  background-color: #f6f3e7;
}

.page-privacy__container {
  max-width: 1122px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  box-sizing: border-box;
}

.page-privacy__title {
  font-family: "Noto Sans JP", "Noto Sans SC", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 28px;
  color: #333333;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}

.page-privacy__article-title {
  font-family: "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin: 36px 0 12px;
  scroll-margin-top: 72px;
}

.page-privacy__article-title:first-of-type {
  margin-top: 24px;
}

.page-privacy__text,
.page-privacy__block {
  font-family: "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  margin: 0 0 16px;
}

.page-privacy__text--contact {
  margin-bottom: 0;
}

.page-privacy__strong {
  font-family: "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin: 16px 0 0;
}

.page-privacy__strong:first-child {
  margin-top: 0;
}

.page-privacy__list {
  margin: 8px 0 16px;
  padding-left: 21px;
  list-style-position: outside;
}

.page-privacy__list--disc {
  list-style: disc outside;
}

.page-privacy__list--decimal {
  list-style: decimal outside;
}

.page-privacy__list li {
  font-family: "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.page-privacy__list li + li {
  margin-top: 0;
}

@media (max-width: 767px) {
  .page-privacy {
    padding-top: clamp(56px, 18vw, 82px);
  }

  .page-privacy__title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: clamp(24px, 6vw, 40px);
  }

  .page-privacy__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-privacy__article-title {
    margin-top: 28px;
    font-size: 15px;
  }
}

/* ============================================================
   18. 法務サブページ補足（利用規約 / 特商法 / 旅行規則）
   Figma: 1:2372, 1:2397, 1:2421
============================================================ */
.page-privacy__title--tokushoho {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.page-tokushoho__seller .page-privacy__strong {
  margin-top: 12px;
  margin-bottom: 0;
}

.page-tokushoho__seller .page-privacy__strong:first-child {
  margin-top: 0;
}

.page-tokushoho__seller .page-privacy__text {
  margin-bottom: 4px;
}

.page-privacy__article-title--tokushoho {
  white-space: normal;
}

/* ============================================================
   19. ログイン（Figma 1:2446）
   左：フォーム 416×458 / 右：新規登録 506×534、重ね 約 37×38px
============================================================ */
/* .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
} */

.page-login {
  padding-top: 82px;
  padding-bottom: clamp(48px, 8vw, 100px);
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background-color: var(--color-bg);
  box-sizing: border-box;
}

.page-login__panels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  max-width: 1100px;
  margin: 0 auto;
}

.page-login__form-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 416px;
  max-width: 100%;
  min-height: 458px;
  padding: 100px clamp(16px, 5vw, 40px) 48px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.page-login__heading {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
}

.page-login__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 229px;
  margin-top: 36px;
}

.page-login__field {
  display: block;
  width: 100%;
  margin: 0 0 10px;
}

.page-login__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 10px;
  background: #f2f2f2;
  box-sizing: border-box;
}

.page-login__input-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.page-login__input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-size: 10px;
  line-height: 1.2;
  color: #1e1e1e;
  outline: none;
}

.page-login__input::placeholder {
  color: #aaaaaa;
}

.page-login__forgot-wrap {
  margin: 6px 0 20px;
  width: 100%;
  text-align: left;
}

.page-login__forgot {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-size: 10px;
  line-height: 1.2;
  color: #000000;
  text-decoration: underline;
}

.page-login__forgot:hover,
.page-login__forgot:focus-visible {
  opacity: 0.75;
}

.page-login__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  max-width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity var(--transition-base);
}

.page-login__btn:hover,
.page-login__btn:focus-visible {
  opacity: 0.92;
}

.page-login__btn--primary {
  background: #373c49;
  align-self: center;
}

.page-login__btn--secondary {
  background: rgba(55, 60, 73, 0.7);
}

.page-login__signup-panel {
  position: relative;
  width: 506px;
  max-width: 100%;
  min-height: 534px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-sizing: border-box;
}

.page-login__signup-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-login__signup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-login__signup-img:first-of-type {
  z-index: 0;
}

.page-login__signup-img:last-of-type {
  z-index: 1;
}

.page-login__signup-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
}

.page-login__signup-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 534px;
  padding: clamp(120px, 22vw, 174px) clamp(20px, 5vw, 40px) 48px;
  text-align: center;
  box-sizing: border-box;
}

.page-login__signup-desc {
  margin: 24px 0 32px;
  max-width: 22rem;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: #1e1e1e;
}

@media (min-width: 992px) {
  .page-login__panels {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
  }

  .page-login__form-panel {
    margin-top: 38px;
    margin-right: -37px;
  }
}

@media (max-width: 767px) {
  .page-login {
    padding-top: clamp(56px, 18vw, 82px);
  }

  .page-login__heading {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-login__form {
    max-width: min(229px, 100%);
  }
}

/* ============================================================
   20. パスワード変更（Figma 1:2502）
   カード 879×534、左ビジュアル 537px / 右フォーム、影 0 10px 20px #0008
============================================================ */
.page-pw-change {
  padding-top: 82px;
  padding-bottom: clamp(48px, 8vw, 100px);
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background-color: var(--color-bg);
  box-sizing: border-box;
}

.page-pw-change__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 879px;
  min-height: 534px;
  margin: 0 auto;
  background: url(../img/wjbg.png)  no-repeat;
  background-size: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-sizing: border-box;
}

.page-pw-change__visual {
  position: relative;
  flex: 0 0 auto;
  min-height: clamp(200px, 42vw, 320px);
  width: 100%;
  opacity: 0;
}

.page-pw-change__media {
  position: absolute;
  inset: 0;
}

.page-pw-change__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-pw-change__media-img:first-of-type {
  z-index: 0;
}

.page-pw-change__media-img:last-of-type {
  z-index: 1;
}

.page-pw-change__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 44.712%,
    rgba(255, 255, 255, 0.9) 55.288%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

.page-pw-change__brand {
  position: absolute;
  z-index: 3;
  left: clamp(16px, 6vw, 51px);
  top: clamp(48px, 10vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.page-pw-change__brand-icon {
  width: clamp(72px, 18vw, 98px);
  height: auto;
  max-width: none;
}

.page-pw-change__brand-text {
  width: clamp(120px, 36vw, 145px);
  height: auto;
  max-width: none;
}

.page-pw-change__form-col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(32px, 6vw, 56px) clamp(20px, 5vw, 40px) clamp(40px, 6vw, 56px);
  box-sizing: border-box;
  min-width: 0;
}

.page-pw-change__title {
  margin: 0 0 clamp(40px, 8vw, 77px);
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 21px;
  color: #1e1e1e;
  text-align: center;
}

.page-pw-change__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 229px;
}

.page-pw-change__field {
  display: block;
  width: 100%;
  margin: 0;
}

.page-pw-change__field + .page-pw-change__field {
  margin-top: 22px;
}

.page-pw-change__input-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  box-sizing: border-box;
}

.page-pw-change__input-wrap--code {
  padding-right: 6px;
}

.page-pw-change__input-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.page-pw-change__input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: normal;
  color: #1e1e1e;
  outline: none;
}

.page-pw-change__input::placeholder {
  color: #aaaaaa;
}

.page-pw-change__code-btn {
  flex-shrink: 0;
  width: 57px;
  height: 24px;
  margin-left: 2px;
  padding: 0;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: #373c49;
  color: #ffffff;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity var(--transition-base);
}

.page-pw-change__code-btn:hover,
.page-pw-change__code-btn:focus-visible {
  opacity: 0.9;
}

.page-pw-change__submit {
  margin-top: 56px;
  width: 184px;
  max-width: 100%;
  height: 40px;
  padding: 0;
  border: 1px solid #373c49;
  background: #373c49;
  color: #ffffff;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity var(--transition-base);
}

.page-pw-change__submit:hover,
.page-pw-change__submit:focus-visible {
  opacity: 0.92;
}

@media (min-width: 768px) {
  .page-pw-change__card {
    flex-direction: row;
    align-items: stretch;
    min-height: 534px;
  }

  .page-pw-change__visual {
    flex: 0 0 61.092%;
    width: 61.092%;
    max-width: 537px;
    min-height: 534px;
    height: auto;
  }

  .page-pw-change__form-col {
    flex: 1 1 0;
    max-width: calc(879px - 537px);
    justify-content: flex-start;
    padding-top: 87px;
    padding-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .page-pw-change {
    padding-top: clamp(56px, 18vw, 82px);
  }

  .page-pw-change__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
    margin-bottom: clamp(28px, 6vw, 48px);
  }

  .page-pw-change__gradient {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.75) 100%
    );
  }

  .page-pw-change__submit {
    margin-top: clamp(36px, 8vw, 56px);
  }
}

/* ============================================================
   21. マイページ / 会員情報編集（Figma 1:2537）
   サイド 273px #2d3748、アクティブ #f4a261、フォームカード白
============================================================ */
.page-mypage {
  min-height: calc(100vh - 56px);
  padding-top: 111px;
  padding-bottom: clamp(40px, 6vw, 64px);
  background-color: var(--color-bg);
  box-sizing: border-box;
}

.page-mypage__shell {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  min-height: min(961px, calc(100vh - 56px - 80px));
  box-sizing: border-box;
}

.page-mypage__sidebar {
  flex: 0 0 273px;
  width: 273px;
  max-width: 100%;
  background: #2d3748;
  padding: 31px 0 48px;
  box-sizing: border-box;
}

.page-mypage__sidebar-title {
  margin: 0 0 24px;
  padding: 0 16px 0 24px;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 21px;
  color: #ffffff;
  text-align: center;
}

.page-mypage__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-mypage__nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 272px;
  max-width: calc(100% - 32px);
  min-height: 64px;
  padding: 12px 16px 12px 20px;
  box-sizing: border-box;
  gap: 12px;
  background: #373c49;
  border: 1px solid #373c49;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.page-mypage__nav-item:hover,
.page-mypage__nav-item:focus-visible {
  opacity: 0.92;
}

.page-mypage__nav-item.is-active {
  background: #f4a261;
  border-color: #f4a261;
}

.page-mypage__nav-icon {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.page-mypage__nav-icon--logout {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.page-mypage__logout-layer {
  position: absolute;
  display: block;
  pointer-events: none;
  max-width: none;
}

.page-mypage__logout-layer--1 {
  left: 5px;
  top: 3px;
  width: 36px;
  height: auto;
}

.page-mypage__logout-layer--2 {
  right: 6px;
  top: 10px;
  width: 9px;
  height: auto;
}

.page-mypage__logout-layer--3 {
  left: 8px;
  top: 17px;
  width: 20px;
  height: auto;
}

.page-mypage__nav-label {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
  color: inherit;
}

.page-mypage__main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px) 48px;
  box-sizing: border-box;
}

.page-mypage__form-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 568px;
}

.page-mypage__card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  padding: 16px 32px 24px;
  box-sizing: border-box;
}

.page-mypage__fieldset .page-mypage__row + .page-mypage__row {
  margin-top: 24px;
}

.page-mypage__label-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 20px;
  margin-bottom: 1px;
}

.page-mypage__label-row--postal {
  align-items: baseline;
}

.page-mypage__label {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #3c3c3c;
}

.page-mypage__req {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #b80000;
}

.page-mypage__hint {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 10.5px;
  color: #343434;
}

.page-mypage__data {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 502px;
  min-height: 42px;
  padding: 1px;
  box-sizing: border-box;
  background: #f7f7f7;
  border: 1px solid #cccccc;
}

.page-mypage__data--split .page-mypage__input {
  flex: 1 1 74.3%;
  min-width: 0;
}

.page-mypage__data-filler {
  flex: 0 0 25.7%;
  min-width: 80px;
  min-height: 40px;
  background: #f7f7f7;
}

.page-mypage__data--full {
  max-width: 502px;
}

.page-mypage__data--full .page-mypage__input,
.page-mypage__data--full .page-mypage__select-wrap {
  flex: 1 1 auto;
  width: 100%;
  min-height: 40px;
}

.page-mypage__input {
  height: 40px;
  padding: 0 9px;
  border: 0;
  border-radius: 3px;
  background: #f7f7f7;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  outline: none;
  box-sizing: border-box;
}

.page-mypage__input--tel {
  font-size: 15px;
  color: #242424;
}

.page-mypage__input--muted {
  color: #242424;
}

.page-mypage__input--muted::placeholder {
  color: #878787;
}

.page-mypage__input--wide {
  width: 100%;
}

.page-mypage__input:focus-visible {
  box-shadow: 0 0 0 2px rgba(112, 164, 210, 0.9);
}

.page-mypage__select-wrap {
  position: relative;
  width: 100%;
  min-height: 40px;
}

.page-mypage__select {
  width: 100%;
  height: 40px;
  padding: 0 36px 0 9px;
  border: 0;
  border-radius: 3px;
  background: #f7f7f7;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #242424;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.page-mypage__select-chevron {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
  display: block;
}

.page-mypage__password-link-wrap {
  width: 100%;
  max-width: 568px;
  margin: 17px 0 0;
  padding: 0;
}

.page-mypage__password-link {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #373c49;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.page-mypage__password-link:hover,
.page-mypage__password-link:focus-visible {
  opacity: 0.85;
}

.page-mypage__agreements {
  display: flex;
  flex-direction: column;
  gap: 31px;
  width: 100%;
  max-width: 568px;
  margin-top: 24px;
  align-self: center;
}

.page-mypage__agree {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.page-mypage__checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.page-mypage__checkbox-ui {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 2px solid #000000;
  border-radius: 3px;
  background: #000000;
  box-sizing: border-box;
}

.page-mypage__checkbox-input:not(:checked) + .page-mypage__checkbox-ui {
  background: #ffffff;
}

.page-mypage__checkbox-input:not(:checked) + .page-mypage__checkbox-ui img {
  opacity: 0;
}

.page-mypage__checkbox-input:focus-visible + .page-mypage__checkbox-ui {
  outline: 2px solid #70a4d2;
  outline-offset: 2px;
}

.page-mypage__agree-text {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}

.page-mypage__agree-link {
  color: #000000;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.page-mypage__agree-link:hover,
.page-mypage__agree-link:focus-visible {
  opacity: 0.8;
}

.page-mypage__agree-rest {
  color: #3c3c3c;
}

.page-mypage__submit {
  margin-top: 36px;
  width: 240px;
  max-width: 100%;
  height: 40px;
  padding: 0;
  border: 1px solid #373c49;
  background: #373c49;
  color: #ffffff;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity var(--transition-base);
}

.page-mypage__submit:hover,
.page-mypage__submit:focus-visible {
  opacity: 0.92;
}

@media (max-width: 1023px) {
  .page-mypage__shell {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .page-mypage__sidebar {
    flex: none;
    width: 100%;
    padding: 24px 16px 32px;
  }

  .page-mypage__sidebar-title {
    margin-bottom: 20px;
  }

  .page-mypage__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .page-mypage__nav-item {
    width: auto;
    min-width: min(272px, 100%);
    flex: 1 1 240px;
  }

  .page-mypage__nav-label {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.35;
  }

  .page-mypage__main {
    padding-top: 24px;
  }
}

@media (max-width: 767px) {
  .page-mypage {
    padding-top: clamp(56px, 14vw, 111px);
  }

  .page-mypage__card {
    padding: 16px 16px 20px;
  }

  .page-mypage__data--split .page-mypage__data-filler {
    flex: 0 0 20%;
    min-width: 48px;
  }
}

/* ============================================================
   22. マイページ 予約履歴（Figma 1:2679）
============================================================ */
.page-mypage__main--reservations {
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.page-mypage-order {
  width: 100%;
  max-width: 966px;
  margin: 0 auto 28px;
  border: 1px solid #dadada;
  box-sizing: border-box;
  background: transparent;
}

.page-mypage-order:last-of-type {
  margin-bottom: 0;
}

.page-mypage-order__head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  min-height: 70px;
  padding: 16px 27px;
  background: #ffffff;
  box-sizing: border-box;
}

.page-mypage-order__meta {
  margin: 0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #111111;
}

.page-mypage-order__meta--center {
  text-align: center;
  flex: 1 1 200px;
}

.page-mypage-order__meta-k {
  font-weight: 700;
}

.page-mypage-order__meta-v {
  font-weight: 400;
}

.page-mypage-order__total {
  margin: 0;
  text-align: right;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}

.page-mypage-order__total-main {
  font-size: 16px;
  line-height: 24px;
}

.page-mypage-order__total-tax {
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
}

.page-mypage-order__band {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1ecd5;
  box-sizing: border-box;
}

.page-mypage-order__panel {
  width: 100%;
  max-width: 966px;
  min-height: 287px;
  background: #ffffff;
  box-sizing: border-box;
}

.page-mypage-order__panel--tall {
  min-height: 280px;
}

.page-mypage-order__panel--customer {
  min-height: 227px;
  padding: 20px 30px 24px;
}

.page-mypage-order__panel--customer-b {
  min-height: 229px;
}

.page-mypage-order__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 21px 27px 0;
  box-sizing: border-box;
  position: relative;
  min-height: 95px;
}

.page-mypage-order__thumb {
  position: relative;
  flex: 0 0 119px;
  width: 119px;
  height: 95px;
  overflow: hidden;
  background: #ffffff;
}

.page-mypage-order__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-mypage-order__thumb-img:nth-child(1) { z-index: 1; }
.page-mypage-order__thumb-img:nth-child(2) { z-index: 2; }
.page-mypage-order__thumb-img:nth-child(3) { z-index: 3; }
.page-mypage-order__thumb-img:nth-child(4) { z-index: 4; }
.page-mypage-order__thumb-img:nth-child(5) { z-index: 5; }

.page-mypage-order__item-body {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 16px;
  padding-right: 96px;
  position: relative;
  box-sizing: border-box;
}

.page-mypage-order__title {
  margin: 0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.page-mypage-order__price {
  position: absolute;
  top: 2px;
  right: 0;
  margin: 0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.page-mypage-order__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.page-mypage-order__tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 10px;
  border: 1px solid #ff7100;
  border-radius: 99px;
  font-family: "Segoe UI", "Noto Sans JP", var(--font-primary), sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.27px;
  color: #ff7100;
  box-sizing: border-box;
}

.page-mypage-order__rule {
  display: block;
  width: calc(100% - 54px);
  max-width: 907px;
  margin: 8px auto 0;
  border: 0;
  border-top: 1px solid #dbdbdb;
}

.page-mypage-order__detail {
  padding: 14px 27px 20px;
  box-sizing: border-box;
}

.page-mypage-order__depart {
  margin: 0 0 8px;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 1.4px;
  color: #000000;
}

.page-mypage-order__counts {
  margin: 0 0 8px;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}

.page-mypage-order__counts--row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.page-mypage-order__req-label {
  margin: 10px 0 0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #111111;
}

.page-mypage-order__req-val {
  margin: 0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #111111;
}

.page-mypage-order__cust-title {
  margin: 0 0 10px;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #111111;
}

.page-mypage-order__cust-body {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #111111;
}

.page-mypage-order__cust-body p {
  margin: 0;
}

@media (max-width: 767px) {
  .page-mypage-order__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-mypage-order__meta--center {
    text-align: left;
    flex: none;
  }

  .page-mypage-order__total {
    text-align: left;
    width: 100%;
  }

  .page-mypage-order__item {
    flex-wrap: wrap;
  }

  .page-mypage-order__item-body {
    padding-right: 0;
    padding-top: 8px;
    flex: 1 1 200px;
  }

  .page-mypage-order__price {
    position: static;
    margin-top: 6px;
  }
}

/* ============================================================
   23. マイページ カート（Figma 1:2814）
============================================================ */
.page-mypage__main--cart {
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.page-mypage-cart {
  width: 100%;
  max-width: 929px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-mypage-cart__card {
  border: 1px solid #e0e0e0;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

.page-mypage-cart__titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  background: #373c49;
  box-sizing: border-box;
}

.page-mypage-cart__titlebar-text {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 26.4px;
  color: #ffffff;
}

.page-mypage-cart__thead {
  display: grid;
  grid-template-columns: 52px 1fr 130px 130px 100px;
  align-items: center;
  background: #f7f7f7;
  box-sizing: border-box;
}

.page-mypage-cart__th {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 26.4px;
  color: #7d7d7d;
  text-align: center;
  margin: 0;
  padding: 8px 4px;
  box-sizing: border-box;
}

.page-mypage-cart__th--spacer {
  padding: 0;
}

.page-mypage-cart__th:nth-child(3),
.page-mypage-cart__th:nth-child(4) {
  border-left: 1px solid #e0e0e0;
}

.page-mypage-cart__row {
  display: grid;
  grid-template-columns: 52px 1fr 130px 130px 100px;
  align-items: center;
  min-height: 140px;
  box-sizing: border-box;
  border-top: 1px solid #e0e0e0;
}

.page-mypage-cart__cell--pick {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.page-mypage-cart__pick {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}

.page-mypage-cart__radio-faux {
  position: relative;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.page-mypage-cart__radio-faux img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  max-width: none;
}

.page-mypage-cart__radio-on {
  display: none;
}

.page-mypage-cart__radio:checked + .page-mypage-cart__radio-faux .page-mypage-cart__radio-off {
  display: none;
}

.page-mypage-cart__radio:checked + .page-mypage-cart__radio-faux .page-mypage-cart__radio-on {
  display: block;
}

.page-mypage-cart__cell--product {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 0 12px 0 4px;
  min-width: 0;
}

.page-mypage-cart__thumb {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 4px;
  object-fit: cover;
  max-width: none;
  background: #c4c4c4;
}

.page-mypage-cart__product-text {
  flex: 1;
  min-width: 0;
}

.page-mypage-cart__product-title {
  margin: 0 0 8px;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.page-mypage-cart__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-mypage-cart__tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 10px;
  border: 1px solid #ff7100;
  border-radius: 99px;
  font-family: "Segoe UI", "Noto Sans JP", var(--font-primary), sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.27px;
  color: #ff7100;
  box-sizing: border-box;
}

.page-mypage-cart__cell--price,
.page-mypage-cart__cell--sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 100%;
  border-left: 1px solid #e0e0e0;
  padding: 8px 4px;
  box-sizing: border-box;
}

.page-mypage-cart__price-label {
  display: none;
  font-size: 12px;
  color: #7d7d7d;
}

.page-mypage-cart__price-num {
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.7px;
  color: #333333;
}

.page-mypage-cart__cell--action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.page-mypage-cart__del {
  width: 85px;
  height: 34px;
  padding: 0;
  border: 1px solid #cbcbcb;
  background: #f7f7f7;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #333333;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity var(--transition-base);
}

.page-mypage-cart__del:hover,
.page-mypage-cart__del:focus-visible {
  opacity: 0.88;
}

.page-mypage-cart__toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 20px;
  width: 100%;
  max-width: 929px;
  box-sizing: border-box;
}

.page-mypage-cart__btn-empty,
.page-mypage-cart__btn-selectall {
  width: 123px;
  height: 33px;
  padding: 0;
  border: 0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0.7px;
  color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity var(--transition-base);
}

.page-mypage-cart__btn-empty {
  background: #373c49;
}

.page-mypage-cart__btn-selectall {
  background: #f4a261;
}

.page-mypage-cart__btn-empty:hover,
.page-mypage-cart__btn-empty:focus-visible,
.page-mypage-cart__btn-selectall:hover,
.page-mypage-cart__btn-selectall:focus-visible {
  opacity: 0.92;
}

.page-mypage-cart__totalbox {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  width: 441px;
  max-width: 100%;
  height: 45px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  background: #ffffff;
}

.page-mypage-cart__total-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 161px;
  padding: 0 12px;
  background: #f7f7f7;
  border-right: 1px solid #e0e0e0;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #333333;
  box-sizing: border-box;
}

.page-mypage-cart__total-val {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.7px;
  color: #333333;
  box-sizing: border-box;
}

.page-mypage-cart__checkout {
  width: 100%;
  max-width: 929px;
  margin-top: 18px;
  box-sizing: border-box;
}

.page-mypage-cart__agree {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.page-mypage-cart__agree-input {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 3px 0 0;
  accent-color: #373c49;
}

.page-mypage-cart__agree-text {
  font-family: "Segoe UI", "Noto Sans JP", var(--font-primary), sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

.page-mypage-cart__cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
  margin-top: 24px;
}

.page-mypage-cart__cta-more,
.page-mypage-cart__cta-pay {
  width: 207px;
  max-width: 100%;
  height: 50px;
  box-sizing: border-box;
  font-family: "Inter", "Noto Sans JP", var(--font-primary), sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 23.1px;
  letter-spacing: 0.72px;
  text-align: center;
  color: #ffffff;
  transition: opacity var(--transition-base);
}

.page-mypage-cart__cta-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #898989;
  text-decoration: none;
}

.page-mypage-cart__cta-pay {
  border: 0;
  background: #373c49;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-mypage-cart__cta-more:hover,
.page-mypage-cart__cta-more:focus-visible,
.page-mypage-cart__cta-pay:hover,
.page-mypage-cart__cta-pay:focus-visible {
  opacity: 0.92;
}

@media (max-width: 900px) {
  .page-mypage-cart__thead {
    display: none;
  }

  .page-mypage-cart__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: 0;
    padding: 16px 12px;
    gap: 0;
  }

  .page-mypage-cart__cell--pick {
    width: 44px;
    flex: 0 0 44px;
    padding: 8px 0 0;
    align-items: flex-start;
  }

  .page-mypage-cart__cell--product {
    flex: 1 1 calc(100% - 52px);
    padding: 0 0 12px 8px;
  }

  .page-mypage-cart__cell--price,
  .page-mypage-cart__cell--sub {
    flex: 1 1 42%;
    min-width: 140px;
    border-left: 0;
    border-top: 1px solid #e0e0e0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px 0 0;
    margin-top: 8px;
  }

  .page-mypage-cart__cell--action {
    flex: 1 1 100%;
    justify-content: flex-end;
    padding-top: 12px;
  }

  .page-mypage-cart__price-label {
    display: block;
  }

  .page-mypage-cart__totalbox {
    margin-left: 0;
    width: 100%;
  }

  .page-mypage-cart__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .page-mypage-cart__btn-empty,
  .page-mypage-cart__btn-selectall {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================================
   24. ツアー一覧（Figma 1:348）
============================================================ */
.visually-hidden {
 /* position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0; */
}

.page-tour-list-body {
  background-color: #f6f3e7;
}

.page-tour-list {
  font-family: "Segoe UI", "Noto Sans JP", "Hiragino Sans", sans-serif;
  padding-top: 56px;
}

.page-tour-list__hero {
  position: relative;
  min-height: 963px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-tour-list__hero-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-tour-list__hero-base {
  position: absolute;
  inset: 0;
  background: #d9d9d9;
}

.page-tour-list__hero-img {
  position: absolute;
  display: block;
}

.page-tour-list__hero-img--layer1 {
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 141.64%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.page-tour-list__hero-img--cover {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.page-tour-list__hero-img--stack2 {
  z-index: 2;
}

.page-tour-list__hero-img--stack3 {
  z-index: 3;
}

.page-tour-list__hero-grad {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(246, 243, 231, 0) 54.933%, rgb(246, 243, 231) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.page-tour-list__hero-inner {
  position: relative;
  z-index: 5;
  padding-left: clamp(20px, 4.86vw, 70px);
  padding-right: 20px;
  padding-top: clamp(220px, 27.5vw, 396px);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-tour-list__hero-title {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.27px;
  margin: 0;
}

.page-tour-list__hero-lead {
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.27px;
}

.page-tour-list__hero-lead-line {
  display: block;
}

.page-tour-list__tabs {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding: clamp(24px, 12vw, 120px) clamp(16px, 9.3vw, 134px) clamp(32px, 5vw, 56px);
}

.page-tour-list__tab {
  flex: 1 1 280px;
  max-width: 386px;
  min-height: 54px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.27px;
  color: #fff;
  background: #373c49;
  text-align: center;
  transition: opacity var(--transition-base);
}

.page-tour-list__tab:hover,
.page-tour-list__tab:focus-visible {
  opacity: 0.92;
  outline: none;
}

.page-tour-list__tab--active {
  background: #f4a261;
}

.page-tour-list__below {
  padding-bottom: clamp(48px, 8vw, 100px);
}

.page-tour-list__board {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 40px) 0;
}

.page-tour-list__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px) clamp(16px, 1.8vw, 24px);
}

.page-tour-list__grid--loading {
  opacity: 0.65;
  pointer-events: none;
}

.page-tour-list__empty-item {
  grid-column: 1 / -1;
}

.page-tour-list__empty-text {
  margin: 0;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem;
  text-align: center;
  color: #666;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.tour-card {
  margin: 0;
}

.tour-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.tour-card__link:hover .tour-card__btn,
.tour-card__link:focus-visible .tour-card__btn {
  opacity: 0.92;
}

.tour-card__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  padding: 20.667px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  height: 100%;
  box-sizing: border-box;
}

.tour-card__thumb {
  flex: 0 0 196.24px;
  width: 196.24px;
  max-width: 42%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f8f9;
}

.tour-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.tour-card__link:hover .tour-card__thumb img,
.tour-card__link:focus-visible .tour-card__thumb img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.tour-card__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.tour-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 25.7px;
  color: #1c1c1e;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.tour-card__desc {
  margin: 14px 0 0;
  max-width: 295px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.18px;
  color: #565c5c;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow-wrap: break-word;
  word-break: break-word;
}

.tour-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
}

.tour-card__tags li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 10px;
  border: 1px solid #ff7100;
  border-radius: 99px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.27px;
  color: #ff7100;
}

.tour-card__cta {
  margin: 24px 0 0;
}

.tour-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 295px;
  min-height: 37px;
  padding: 10px;
  box-sizing: border-box;
  background: #373c49;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.18px;
  text-align: center;
}

.tour-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  gap: 12px;
}

.tour-card__duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0.18px;
  color: #1c1c1e;
}

.tour-card__icon-clock {
  flex-shrink: 0;
}

.tour-card__price {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-card__price-num {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.27px;
  color: #000;
}

.tour-card__slash {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.18px;
  color: #1c1c1e;
}

.tour-card__icon-person {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page-tour-list__grid {
    grid-template-columns: 1fr;
  }

  /* タブ：狭い画面では縦並び＋全文折返し（280px basis によるはみ出し防止） */
  .page-tour-list__tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .page-tour-list__tab {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.35;
    min-height: 0;
    padding: 12px 14px;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .tour-card__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-card__thumb {
    max-width: none;
    width: 100%;
    height: clamp(200px, 55vw, 300px);
    flex: none;
  }

  .tour-card__main {
    min-height: 0;
  }

  .tour-card__desc {
    max-width: none;
  }

  .tour-card__btn {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .page-tour-list__hero {
    min-height: clamp(520px, 120vw, 963px);
  }
}

/* ============================================================
   25. ツアー詳細（Figma 1:755 ツアー一覧-詳しく）
============================================================ */
.page-tour-detail-body {
  background-color: #f6f3e7;
}

.page-tour-detail {
  font-family: "Noto Sans JP", "Segoe UI", "Hiragino Sans", sans-serif;
  padding-top: 56px;
}

.page-tour-detail__hero {
  width: 100%;
  max-height: 572px;
  overflow: hidden;
  background: #d9d9d9;
}

.page-tour-detail__hero--slider {
  position: relative;
}

.page-tour-detail__hero-swiper {
  width: 100%;
  height: 572px;
}

.page-tour-detail__hero-swiper .swiper-slide {
  height: 572px;
}

.page-tour-detail__hero-img {
  width: 100%;
  height: 572px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-tour-detail__hero-pagination {
  bottom: 18px !important;
  z-index: 2;
}

.page-tour-detail__hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.page-tour-detail__hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.page-tour-detail__hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background var(--transition-base), opacity var(--transition-base);
}

.page-tour-detail__hero-nav:hover,
.page-tour-detail__hero-nav:focus-visible {
  background: #fff;
  outline: none;
}

.page-tour-detail__hero-nav--prev {
  left: clamp(12px, 2vw, 24px);
}

.page-tour-detail__hero-nav--next {
  right: clamp(12px, 2vw, 24px);
}

.page-tour-detail__hero-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.page-tour-detail__layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 24px) clamp(48px, 8vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 737px) minmax(280px, 353px);
  gap: 24px;
  align-items: start;
  box-sizing: border-box;
}

.page-tour-detail__primary {
  min-width: 0;
  max-width: 100%;
}

.page-tour-detail__sections {
  min-width: 0;
  max-width: 100%;
}

.page-tour-detail__subnav {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 741px;
  min-height: 47px;
  background: #373c49;
  margin-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-tour-detail__subnav-link {
  flex: 1 1 0;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: background var(--transition-base), color var(--transition-base);
}

.page-tour-detail__subnav-link:hover,
.page-tour-detail__subnav-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.page-tour-detail__subnav-link--active {
  background: #f4a261;
}

.page-tour-detail__subnav-link--active:hover {
  background: #f4a261;
}

.page-tour-detail__sections {
  border-top: 1px solid #a5a5a5;
}

.page-tour-detail__section {
  padding: 20px 10px;
  border-bottom: 1px solid #a5a5a5;
  box-sizing: border-box;
}

.page-tour-detail__section-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  margin: 0 0 12px;
}

.page-tour-detail__bullet-list {
  margin: 0;
  padding-left: 1.25em;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.page-tour-detail__bullet-list li {
  margin-bottom: 0;
}

.page-tour-detail__section--detail {
  min-height: 0;
}

.page-tour-detail__section--schedule {
  padding-bottom: 16px;
}

.tour-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 717px;
}

.tour-schedule__item {
  border: none;
  background: #fff;
}

.tour-schedule__item + .tour-schedule__item {
  border-top: 1px solid #e0e0e0;
}

.tour-schedule__item[open] {
  background: #e4e4e4;
}

.tour-schedule__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  padding: 0 16px 0 25px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
}

.tour-schedule__summary::-webkit-details-marker {
  display: none;
}

.tour-schedule__icons {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.tour-schedule__icon {
  position: absolute;
  inset: 0;
  width: 30px;
  height: 30px;
}

.tour-schedule__item:not([open]) .tour-schedule__icon--minus {
  display: none;
}

.tour-schedule__item[open] .tour-schedule__icon--plus {
  display: none;
}

.tour-schedule__panel {
  padding: 0 25px 16px;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.tour-schedule__panel p {
  margin: 0 0 4px;
}

.page-tour-detail__section--price {
  padding-bottom: 20px;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.tour-cal {
  background: #fff;
  width: 100%;
  max-width: 717px;
  min-height: 440px;
  padding: 12px 6px 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.tour-cal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 4px;
  min-width: 0;
}

.tour-cal__nav {
  border: none;
  background: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.tour-cal__nav:hover,
.tour-cal__nav:focus-visible {
  opacity: 0.75;
  outline: none;
}

.tour-cal__nav--prev img {
  transform: rotate(180deg);
}

.tour-cal__months-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px clamp(12px, 4vw, 48px);
  flex: 1;
  min-width: 0;
}

.tour-cal__month-label {
  font-size: clamp(11px, 2.2vw, 17.704px);
  font-weight: 700;
  line-height: 1.35;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

.tour-cal__dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.tour-cal__month {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.tour-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 4px;
  font-size: clamp(9px, 1.65vw, 15px);
  line-height: 1.25;
  color: #8a8a8a;
  text-align: center;
}

.tour-cal__weekdays span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tour-cal__cells {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
}

.tour-cal__cell {
  min-height: clamp(48px, 11vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3px 1px;
  box-sizing: border-box;
  border: none;
  background: none;
  cursor: default;
  font: inherit;
  min-width: 0;
}

.tour-cal__cell:not(.tour-cal__cell--muted) {
  cursor: pointer;
}

.tour-cal__cell--muted {
  pointer-events: none;
}

/* 選中日：日付＋価格のブロック全体を同じハイライトで囲む */
.tour-cal__cell--picked {
  background: rgba(251, 95, 0, 0.15);
  border-radius: clamp(8px, 2vw, 14px);
}

/* 日付数字：選中/非選中で同じ円形スロット寸法を確保 */
.tour-cal__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(28px, 5.2vw, 40px);
  height: clamp(28px, 5.2vw, 40px);
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid transparent;
  font-size: clamp(10px, 2vw, 16px);
  line-height: 1;
  color: #000;
  background: transparent;
}

.tour-cal__num--light {
  color: #b1b1b1;
}

.tour-cal__yen {
  font-size: clamp(6px, 1.15vw, 9px);
  line-height: 1.15;
  color: #8a8a8a;
  margin-top: 2px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-tour-detail__section--gallery .page-tour-detail__section-title {
  margin-bottom: 10px;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 234.23px));
  gap: 7.8px 7.8px;
  max-width: 717px;
}

.tour-gallery__cell {
  aspect-ratio: 234.229 / 154.851;
  background: #d9d9d9;
  overflow: hidden;
  border-radius: 0;
}

.tour-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.tour-gallery__cell:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.tour-gallery__cell--tall .tour-gallery__img--cover {
  height: 100%;
  min-height: 154px;
  object-fit: cover;
  object-position: center top;
}

.page-tour-detail__booking {
  position: sticky;
  top: 72px;
}

.tour-booking {
  background: #fff;
  padding: 18px 16px 24px;
  box-sizing: border-box;
  min-height: 200px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tour-booking__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 25.7px;
  color: #1c1c1e;
  margin: 0;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
}

.tour-booking__lead {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.18px;
  color: #565c5c;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
}

.tour-booking__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
}

.tour-booking__tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 10px;
  border: 1px solid #ff7100;
  border-radius: 99px;
  font-size: 10px;
  letter-spacing: 0.27px;
  color: #ff7100;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
}

.tour-booking__price-row {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.tour-booking__price-label {
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.tour-booking__price-val {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #373c49;
}

.tour-booking__form {
  margin-top: 8px;
}

.tour-booking__field-label {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.tour-booking__field-label--inline {
  margin-top: 18px;
  margin-bottom: 0;
}

.tour-booking__field-label-block {
  margin-top: 18px;
}

.tour-booking__hint {
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 20px;
  color: #000;
}

.tour-booking__input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  min-height: 39px;
  padding: 0 10px;
  background: #f1f1f1;
  box-sizing: border-box;
}

.tour-booking__input-row--date {
  margin-top: 6px;
}

.tour-booking__cal-icon {
  flex-shrink: 0;
}

.tour-booking__input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  padding: 8px 0;
  font-family: inherit;
}

.tour-booking__input--date {
  color: #8a8a8a;
}

.tour-booking__input--date::placeholder {
  color: #8a8a8a;
}

.tour-booking__textarea {
  width: 100%;
  margin-top: 8px;
  min-height: 178px;
  padding: 10px;
  border: none;
  background: #f1f1f1;
  font-size: 12px;
  line-height: 1.5;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.tour-booking__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 10px;
  line-height: 20px;
  color: #000;
}

.tour-booking__checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.tour-booking__agree-ui {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  background: #fff;
  margin-top: 2px;
  box-sizing: border-box;
}

.tour-booking__checkbox:checked + .tour-booking__agree-ui {
  background: #000;
  box-shadow: inset 0 0 0 2px #fff;
}

.tour-booking__checkbox:focus-visible + .tour-booking__agree-ui {
  outline: 2px solid #f4a261;
  outline-offset: 2px;
}

.tour-booking__agree-text {
  flex: 1;
  min-width: 0;
}

.tour-booking__agree-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tour-booking__btn {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: opacity var(--transition-base);
  display: block;
  line-height: 48px;
}

.tour-booking__btn:hover,
.tour-booking__btn:focus-visible {
  opacity: 0.92;
  outline: none;
}

.tour-booking__btn--cart {
  margin-top: 16px;
  background: #f4a261;
  color: #fff;
}

.tour-booking__btn--reserve {
  background: #373c49;
  color: #fff;
}

@media (max-width: 1024px) {
  .page-tour-detail__layout {
    grid-template-columns: 1fr;
  }

  .page-tour-detail__booking {
    position: static;
    order: 2;
  }

  .page-tour-detail__primary {
    order: 1;
  }

  .tour-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .tour-cal__dual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-tour-detail__hero-img,
  .page-tour-detail__hero-swiper,
  .page-tour-detail__hero-swiper .swiper-slide {
    height: clamp(220px, 55vw, 572px);
  }

  .page-tour-detail__hero-nav {
    width: 36px;
    height: 36px;
  }

  .page-tour-detail__subnav-link {
    min-width: 100px;
    font-size: 14px;
    padding: 8px 6px;
  }

  .tour-gallery {
    grid-template-columns: 1fr;
  }

  .tour-cal__month-label {
    font-size: clamp(11px, 3.2vw, 15px);
  }
}

/* ---------- Figma 1:2922 予約する（tour-booking.html） ---------- */
.page-booking-body {
  background-color: #f6f3e7;
}

.page-booking {
  font-family: "Noto Sans JP", "Segoe UI", "Hiragino Sans", sans-serif;
  padding: 80px clamp(16px, 4vw, 48px) clamp(48px, 8vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-booking__hero-title {
  margin: 0 auto clamp(28px, 5vw, 48px);
  max-width: 966px;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.17;
  text-align: center;
  color: #333;
}

.page-booking__stripe {
  display: flex;
  justify-content: center;
  padding: 0 clamp(0px, 2vw, 12px);
  margin-bottom: clamp(0px, 0vw, 0px);
}

.page-booking__stripe + .page-booking__stripe {
  margin-top: 0;
}

.page-booking__section:not(.page-booking__section--form) {
  display: flex;
  justify-content: center;
  padding: 0 clamp(0px, 2vw, 12px);
  margin-top: clamp(20px, 3.5vw, 34px);
}

.page-booking__section--form {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 4vw, 48px);
  margin-top: clamp(20px, 3.5vw, 34px);
}

.page-booking__section--form .page-booking__panel {
  background: #fff;
  box-shadow: none;
}

.page-booking__panel {
  width: 100%;
  max-width: 966px;
  box-sizing: border-box;
  background: #fff;
}

.page-booking__panel--tour {
  min-height: 287px;
  padding: 21px clamp(20px, 3vw, 30px) 28px;
}

.page-booking__tour-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: 12px;
}

.page-booking__tour-thumb {
  position: relative;
  width: 119px;
  min-width: 119px;
  height: 95px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.page-booking__tour-thumb-base,
.page-booking__tour-thumb-cover,
.page-booking__tour-thumb-mid {
  position: absolute;
  display: block;
  object-fit: cover;
}

.page-booking__tour-thumb-base {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.page-booking__tour-thumb-mid {
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-booking__tour-thumb-cover {
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-booking__tour-body {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-right: clamp(72px, 12vw, 100px);
}

.page-booking__tour-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 16px;
}

.page-booking__tour-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #212121;
}

.page-booking__tour-price {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}

.page-booking__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.page-booking__tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 10px;
  border: 1px solid #ff7100;
  border-radius: 99px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.27px;
  color: #ff7100;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
}

.page-booking__detail-line {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #000;
  letter-spacing: 0.05em;
}

.page-booking__detail-line--date {
  margin-top: 16px;
  line-height: 1.64;
}

.page-booking__detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
}

.page-booking__detail-note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.71;
  color: #111;
}

.page-booking__detail-label {
  font-weight: 700;
}

.page-booking__panel--form {
  padding: 0 0 40px;
  max-width: 966px;
}

.page-booking__form-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  min-height: 45px;
  margin: 0 clamp(20px, 3vw, 30px);
  padding: 20px 0 12px;
  border-bottom: 1px solid #dbdbdb;
  box-sizing: border-box;
}

.page-booking__form-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #201f1d;
}

.page-booking__same-reg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #201f1d;
  cursor: pointer;
}

.page-booking__checkbox--green {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid #5c7246;
  background: #fff;
  cursor: pointer;
}

.page-booking__checkbox--green:checked {
  background: #5c7246;
  box-shadow: inset 0 0 0 2px #fff;
}

.page-booking__form {
  padding: 28px clamp(20px, 3vw, 30px) 0;
}

.page-booking__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 17px;
  align-items: start;
}

.page-booking__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-booking__field--full {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.page-booking__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #2f2f2f;
  font-family: "Noto Sans JP", "Noto Serif JP", serif;
}

.page-booking__req {
  color: #f00;
}

.page-booking__input,
.page-booking__textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 49px;
  padding: 14px 13px;
  border: 1px solid #f4f4f4;
  background: #f7f7f7;
  font-family: inherit;
  font-size: 14px;
  line-height: normal;
  color: #212529;
  border-radius: 0;
}

.page-booking__input::placeholder,
.page-booking__textarea::placeholder {
  color: rgba(33, 37, 41, 0.75);
}

.page-booking__textarea {
  min-height: 112px;
  resize: vertical;
}

.page-booking__input:focus,
.page-booking__textarea:focus {
  outline: 2px solid rgba(92, 114, 70, 0.45);
  outline-offset: 1px;
}

.page-booking__panel--pay {
  padding: 19px clamp(20px, 3vw, 30px) 32px;
  min-height: 387px;
}

.page-booking__pay-lines {
  margin-bottom: 8px;
}

.page-booking__pay-line {
  margin: 0 0 4px;
  font-size: 0;
  line-height: 26px;
}

.page-booking__pay-line-strong {
  font-size: 16px;
  font-weight: 700;
  color: #201f1d;
}

.page-booking__pay-tax {
  font-size: 12px;
  font-weight: 700;
  color: #201f1d;
}

.page-booking__pay-qty {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #201f1d;
}

.page-booking__pay-total {
  padding: 12px 0 16px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 20px;
}

.page-booking__pay-total-inner {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #000;
}

.page-booking__pay-total-label {
  font-size: 20px;
  color: #201f1d;
}

.page-booking__pay-total-num {
  font-size: 28px;
  color: #e00000;
}

.page-booking__pay-total-tax {
  font-size: 20px;
  color: #000;
}

.page-booking__pay-method-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #2f2f2f;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
}

.page-booking__pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-booking__pay-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
}

.page-booking__pay-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.page-booking__radio {
  /* position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none; */
}

.page-booking__radio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.page-booking__radio-visual img {
  display: block;
  width: 14px;
  height: 14px;
}

.page-booking__radio:focus-visible + .page-booking__radio-visual {
  outline: 2px solid #373c49;
  outline-offset: 2px;
}

.page-booking__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 6px;
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
}

.page-booking__card-badge img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-booking__card-badge--combo {
  min-width: 68px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.page-booking__card-badge--combo img {
  width: 68px;
  height: 30px;
  object-fit: contain;
}

.page-booking__pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 169px;
  min-height: 50px;
  padding: 0 20px;
  border: none;
  background: #373c49;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-booking__pay-btn:hover,
.page-booking__pay-btn:focus-visible {
  opacity: 0.92;
  outline: none;
}

.page-booking__pay-btn-arrow {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.page-booking__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.43;
  color: #000;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
  cursor: pointer;
}

.page-booking__checkbox--agree {
  appearance: none;
  width: 14px;
  height: 14px;
  margin: 3px 0 0;
  flex-shrink: 0;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}

.page-booking__checkbox--agree:checked {
  background: #333;
  box-shadow: inset 0 0 0 2px #fff;
}

@media (max-width: 768px) {
  .page-booking__tour-body {
    padding-right: 0;
  }

  .page-booking__tour-price {
    position: static;
    width: 100%;
    text-align: right;
  }

  .page-booking__tour-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-booking__form-grid {
    grid-template-columns: 1fr;
  }

  .page-booking__pay-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-booking__pay-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .page-booking__tour-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-booking__tour-thumb {
    width: 100%;
    max-width: 200px;
    min-width: 0;
    height: auto;
    aspect-ratio: 119 / 95;
  }

  .page-booking__pay-methods {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Figma 1:1119 お問い合わせ（contact.html） ---------- */
.page-contact-body {
  background-color: #f6f3e7;
}

.page-contact {
  padding: 80px clamp(16px, 4vw, 48px) clamp(48px, 10vw, 100px);
  font-family: "Noto Sans JP", "Segoe UI", "Hiragino Sans", sans-serif;
  box-sizing: border-box;
}

.page-contact__card {
  max-width: 788px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(20px, 5vw, 48px) clamp(36px, 6vw, 48px);
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.page-contact__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 500;
  line-height: 1.17;
  text-align: center;
  color: #333;
}

.page-contact__lead {
  max-width: 695px;
  margin: 0 auto 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #000;
}

.page-contact__lead-company {
  font-weight: 500;
}

.page-contact__lead-text {
  font-weight: 500;
}

.page-contact__form {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}

.page-contact__row {
  display: grid;
  grid-template-columns: minmax(72px, 220px) minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
}

.page-contact__row--top {
  align-items: start;
}

.page-contact__label-cell {
  text-align: right;
  padding-top: 0;
}

.page-contact__row--top .page-contact__label-cell {
  padding-top: 8px;
}

.page-contact__label {
  display: inline;
  font-size: 12px;
  font-weight: 400;
  line-height: 18.57px;
  letter-spacing: 0.4px;
  color: #000;
}

.page-contact__req {
  color: #bc261a;
  font-size: 16px;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  line-height: 18.57px;
}

.page-contact__field-cell {
  min-width: 0;
}

.page-contact__field-cell--with-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.page-contact__hint {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.5px;
  color: #666;
  white-space: nowrap;
}

.page-contact__input,
.page-contact__textarea {
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.3;
  color: #212121;
  background: #f5f5f5;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  box-sizing: border-box;
  vertical-align: middle;
}

.page-contact__input {
  height: 30px;
  padding: 5px 10px;
}

.page-contact__input--wide {
  width: 100%;
  max-width: 412px;
}

.page-contact__input--postal {
  width: 100%;
  max-width: 128px;
}

.page-contact__input--tel {
  width: 100%;
  max-width: 155px;
}

.page-contact__textarea {
  width: 100%;
  max-width: 413px;
  min-height: 200px;
  padding: 10px 12px;
  resize: vertical;
}

.page-contact__input:focus,
.page-contact__textarea:focus,
.page-contact__select:focus {
  outline: 2px solid rgba(55, 60, 73, 0.35);
  outline-offset: 1px;
}

.page-contact__select-wrap {
  max-width: 269px;
  position: relative;
}

.page-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  pointer-events: none;
  background: url("../img/contact-select-chevron.png") center / contain no-repeat;
}

.page-contact__select {
  width: 100%;
  height: 30px;
  padding: 0 28px 0 9px;
  font-family: inherit;
  font-size: 12px;
  line-height: 17px;
  color: #212121;
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 2px;
  appearance: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-contact__select:invalid {
  color: #8a8a8a;
}

.page-contact__row--privacy {
  display: flex;
  justify-content: center;
  grid-template-columns: 1fr;
  margin-top: 4px;
}

.page-contact__privacy {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  cursor: pointer;
  max-width: 100%;
}

.page-contact__check-input:focus-visible + .page-contact__check-ui {
  outline: 2px solid #373c49;
  outline-offset: 2px;
}

.page-contact__check-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 2px solid #000;
  border-radius: 5px;
  background: #fff;
  box-sizing: border-box;
}

.page-contact__check-input:checked + .page-contact__check-ui {
  background: #000;
}

.page-contact__check-img {
  display: block;
  opacity: 0;
  transform: scaleY(-1);
  transition: opacity 0.15s ease;
}

.page-contact__check-input:checked + .page-contact__check-ui .page-contact__check-img {
  opacity: 1;
}

.page-contact__privacy-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: #393939;
}

.page-contact__privacy-link {
  color: #373c49;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.page-contact__privacy-link:hover,
.page-contact__privacy-link:focus-visible {
  opacity: 0.85;
}

.page-contact__actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.page-contact__submit {
  width: 100%;
  max-width: 314px;
  height: 40px;
  margin: 0;
  padding: 0 24px;
  border: none;
  background: #373c49;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-contact__submit:hover,
.page-contact__submit:focus-visible {
  opacity: 0.92;
  outline: none;
}

@media (max-width: 640px) {
  .page-contact__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-contact__label-cell {
    text-align: left;
  }

  .page-contact__row--top .page-contact__label-cell {
    padding-top: 0;
  }

  .page-contact__input--wide,
  .page-contact__textarea,
  .page-contact__select-wrap {
    max-width: none;
  }

  .page-contact__input--postal,
  .page-contact__input--tel {
    max-width: none;
  }
}

/* ---------- Figma 1:549 手配旅行（tour-tehai.html） ---------- */
.page-tehai-body {
  background-color: #f6f3e7;
}

.page-tehai {
  padding-top: 56px;
  font-family: "Segoe UI", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.page-tehai__hero .page-tour-list__hero-inner {
  padding-top: clamp(240px, 23.5vw, 338px);
}

.page-tehai__hero-lead {
  margin-top: 20px;
}

.page-tehai__below {
  padding-bottom: clamp(48px, 8vw, 100px);
}

.page-tehai__board {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 40px) 0;
}

/* 共通ページネーション（手配旅行・御朱印巡り等） */
.page-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: clamp(32px, 5.5vw, 56px);
  padding-bottom: clamp(8px, 2vw, 16px);
}

.page-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.page-pagination__arrow:hover:not(:disabled),
.page-pagination__arrow:focus-visible {
  opacity: 0.75;
  outline: none;
}

.page-pagination__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-pagination__arrow img {
  display: block;
  width: 30px;
  height: 30px;
}

.page-pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pagination__list li {
  margin: 0;
  padding: 0;
}

.page-pagination__num {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a.page-pagination__num:hover,
a.page-pagination__num:focus-visible {
  opacity: 0.75;
  outline: none;
}

.page-pagination__num--current {
  background: #373c49;
  color: #fff;
}

/* ---------- Figma 1:3214 御朱印巡り（tour-goshuin.html） ---------- */
.page-goshuin-body {
  background-color: #f6f3e7;
}

.page-goshuin {
  padding-top: 56px;
  font-family: "Segoe UI", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.page-goshuin__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 70px) clamp(16px, 4vw, 40px) clamp(48px, 8vw, 100px);
  box-sizing: border-box;
}

.page-goshuin__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 352px));
  justify-content: center;
  gap: 32px;
}

.page-goshuin__cell {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-goshuin__cell--featured {
  grid-column: span 2;
}

.page-goshuin__featured {
  margin: 0;
  height: 100%;
}

.page-goshuin__featured-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 324px;
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
}

.page-goshuin__featured-link:hover,
.page-goshuin__featured-link:focus-visible {
  opacity: 0.96;
  outline: none;
}

.page-goshuin__featured-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-goshuin__featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.page-goshuin__featured-img--primary {
  z-index: 0;
}

.page-goshuin__featured-img--secondary {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.page-goshuin__featured-link:hover .page-goshuin__featured-img--secondary,
.page-goshuin__featured-link:focus-visible .page-goshuin__featured-img--secondary {
  opacity: 1;
}

.page-goshuin__featured-link:hover .page-goshuin__featured-img--primary,
.page-goshuin__featured-link:focus-visible .page-goshuin__featured-img--primary {
  opacity: 0;
}

.page-goshuin__featured-link:hover .page-goshuin__featured-img--primary:only-child,
.page-goshuin__featured-link:focus-visible .page-goshuin__featured-img--primary:only-child {
  opacity: 1;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.page-goshuin__featured-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.page-goshuin__featured-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 20px 21px 24px;
  font-size: 36px;
  font-weight: 700;
  line-height: 34.29px;
  color: #fff;
}

.page-goshuin__card {
  margin: 0;
  height: 100%;
}

.page-goshuin__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  background: #fff;
  transition: opacity 0.2s ease;
}

.page-goshuin__card-link:hover,
.page-goshuin__card-link:focus-visible {
  opacity: 0.96;
  outline: none;
}

.page-goshuin__card-visual {
  position: relative;
  height: 267px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.page-goshuin__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.page-goshuin__card-img--primary {
  z-index: 0;
}

.page-goshuin__card-img--secondary {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.page-goshuin__card-link:hover .page-goshuin__card-img--secondary,
.page-goshuin__card-link:focus-visible .page-goshuin__card-img--secondary {
  opacity: 1;
}

.page-goshuin__card-link:hover .page-goshuin__card-img--primary,
.page-goshuin__card-link:focus-visible .page-goshuin__card-img--primary {
  opacity: 0;
}

.page-goshuin__card-link:hover .page-goshuin__card-img--primary:only-child,
.page-goshuin__card-link:focus-visible .page-goshuin__card-img--primary:only-child {
  opacity: 1;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.page-goshuin__card-img--kyoto {
  object-position: 50% 18%;
}

.page-goshuin__card-img--todaiji {
  object-position: 42% 50%;
}

.page-goshuin__card-img--kasuga {
  object-position: 28% 50%;
}

.page-goshuin__card-cap {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
}

.page-goshuin__card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 34.29px;
  color: #000;
}

@media (max-width: 1150px) {
  .page-goshuin__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 32px);
  }
}

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

  .page-goshuin__cell--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .page-goshuin__grid {
    grid-template-columns: 1fr;
  }

  .page-goshuin__featured-title {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.2;
  }

  .page-goshuin__featured-link {
    min-height: clamp(220px, 55vw, 324px);
  }

  .page-goshuin__card-visual {
    height: clamp(200px, 58vw, 267px);
  }
}

/* ---------- Figma 1:3077 御朱印巡り-詳しく（tour-goshuin-detail.html） ---------- */
.page-goshuin-detail {
  padding-top: 56px;
  font-family: "Noto Sans JP", "Segoe UI", "Hiragino Sans", sans-serif;
}

.page-goshuin-detail__article {
  max-width: 1092px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 85px) clamp(16px, 4vw, 40px) clamp(48px, 10vw, 100px);
  box-sizing: border-box;
}

.page-goshuin-detail__header {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 48px);
}

.page-goshuin-detail__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 28px;
  color: #333;
}

.page-goshuin-detail__date {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  color: #ff7100;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
}

.page-goshuin-detail__hero {
  position: relative;
  width: 100%;
  max-width: 1091px;
  margin: 0 auto;
  min-height: 363px;
  overflow: hidden;
  background: #d9d9d9;
}

.page-goshuin-detail__hero-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-goshuin-detail__hero-base {
  position: absolute;
  inset: 0;
  background: #d9d9d9;
}

.page-goshuin-detail__hero-img {
  position: absolute;
  display: block;
}

.page-goshuin-detail__hero-img--cover {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-goshuin-detail__hero-img--layer {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 40% 50%;
  z-index: 1;
}

.page-goshuin-detail__inset {
  position: absolute;
  top: 11px;
  right: clamp(8px, 1.2vw, 12px);
  z-index: 2;
  width: 223px;
  max-width: calc(100% - 16px);
  height: 342px;
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
  pointer-events: none;
}

.page-goshuin-detail__inset-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-goshuin-detail__body {
  margin-top: clamp(24px, 4vw, 32px);
  max-width: 1092px;
  margin-left: auto;
  margin-right: auto;
}

.page-goshuin-detail__body p {
  margin: 0 0 0.5em;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
}

.page-goshuin-detail__body p:last-child {
  margin-bottom: 0;
}

.page-goshuin-detail__nav {
  margin-top: clamp(48px, 8vw, 64px);
  max-width: 1092px;
  margin-left: auto;
  margin-right: auto;
}

.page-goshuin-detail__nav-rule {
  width: 100%;
  line-height: 0;
  margin-bottom: 12px;
}

.page-goshuin-detail__nav-rule-img {
  display: block;
  width: 100%;
  height: 1px;
  object-fit: fill;
}

.page-goshuin-detail__nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
}

.page-goshuin-detail__nav-link {
  color: #1a1918;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-goshuin-detail__nav-link:hover,
.page-goshuin-detail__nav-link:focus-visible {
  opacity: 0.75;
  outline: none;
}

.page-goshuin-detail__nav-link--prev,
.page-goshuin-detail__nav-link--next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.page-goshuin-detail__nav-chevron {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.page-goshuin-detail__nav-link--index {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #040404;
  min-width: 155px;
  text-align: center;
}

@media (max-width: 900px) {
  .page-goshuin-detail__hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .page-goshuin-detail__hero-layers {
    position: relative;
    height: clamp(220px, 50vw, 340px);
    width: 100%;
  }

  .page-goshuin-detail__inset {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 223 / 342;
    margin: 12px auto 0;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .page-goshuin-detail__nav-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .page-goshuin-detail__nav-link--prev,
  .page-goshuin-detail__nav-link--next {
    justify-content: center;
  }

  .page-goshuin-detail__nav-link--index {
    order: -1;
  }
}

/* ============================================================
   Figma 1:2199 — 私たちについて (about-us.html)
   基准幅 1440px、Segoe UI 系 + 现有日文字体回退
============================================================ */

.page-about-us-body {
  background-color: #f6f3e7;
}

.page-about-us {
  font-family: "Segoe UI", "Noto Sans JP", "Noto Sans SC", "Hiragino Sans", sans-serif;
  padding-top: 56px;
  color: #000;
}

/* Hero 558px 通栏 */
.page-about-us__hero {
  position: relative;
  min-height: 558px;
  /*max-width: 1440px;*/
  margin: 0 auto;
  overflow: hidden;
}

.page-about-us__hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-about-us__hero-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.page-about-us__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.page-about-us__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(20px, 4.86vw, 70px);
  padding-right: 20px;
  padding-top: clamp(200px, 27.36vw, 394px);
  padding-bottom: 48px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-about-us__hero-title {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.27px;
}

.page-about-us__hero-lead {
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.27px;
}

.page-about-us__hero-lead-line {
  display: block;
}

/* 私たちの強み */
.page-about-us__strengths {
  background-color: #f6f3e7;
  padding: clamp(48px, 6.5vw, 88px) 20px clamp(64px, 8vw, 104px);
}

.page-about-us__strengths-inner {
  max-width: 1299px;
  margin: 0 auto;
}

.page-about-us__strengths-heading {
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.27px;
  color: #373c49;
}

.page-about-us__strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 345px));
  gap: 61px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about-us__strength {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 21px;
}

.page-about-us__strength-icon-wrap {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.page-about-us__strength-icon {
  width: 130px;
  height: 130px;
  max-width: none;
  object-fit: contain;
}

.page-about-us__strength-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.27px;
  color: #000;
}

.page-about-us__strength-text {
  margin: 0;
  max-width: 345px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.27px;
  color: #000;
}

/* コンセプト / 提供サービス チェッカー */
.page-about-us__split-bands {
  background-color: #373c49;
}

.page-about-us__band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  align-items: stretch;
}

.page-about-us__band-copy {
  background-color: #373c49;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 23px;
  justify-content: flex-start;
  padding: clamp(48px, 8.9vw, 128px) clamp(24px, 11.6vw, 167px) clamp(40px, 6vw, 80px);
  box-sizing: border-box;
}

.page-about-us__band--services .page-about-us__band-copy {
  padding-top: clamp(48px, 12.8vw, 184px);
}

.page-about-us__band-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.page-about-us__band-body {
  margin: 0;
  max-width: 385px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.page-about-us__band-visual {
  line-height: 0;
  background: #2a2f3a;
}

.page-about-us__band-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-width: none;
  object-fit: cover;
  aspect-ratio: 720 / 484;
}

/* 会社概要 + 地図 */
.page-about-us__company {
  background-color: #f6f3e7;
  padding: clamp(56px, 7.8vw, 112px) 0 clamp(48px, 6vw, 96px);
}

.page-about-us__company-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4.86vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  min-width: 0;
}

.page-about-us__profile {
  margin: 0;
  padding-top: clamp(0px, 5.3vw, 76px);
  max-width: 453px;
  min-width: 0;
}

.page-about-us__profile-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 62px;
  min-height: 75px;
  padding: 27px 0;
  border-bottom: 1px solid #8a8a8a;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.page-about-us__profile-row--inline .page-about-us__profile-label {
  flex: 0 0 auto;
}

.page-about-us__profile-row--inline .page-about-us__profile-value {
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-about-us__profile-label {
  flex: 0 0 98px;
  font-weight: 600;
}

.page-about-us__profile-value {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-weight: 400;
}

.page-about-us__profile-value--address {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-about-us__profile-line {
  display: block;
}

.page-about-us__profile-line--indent {
  padding-left: 0;
}

.page-about-us__map-wrap {
  line-height: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.page-about-us__map-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 720px;
  margin-left: auto;
  object-fit: cover;
}

/* ギャラリー（Figma 8 枚 × 510×343 / Swiper 自動ループ） */
.page-about-us__gallery {
  background-color: #f6f3e7;
  padding-bottom: 0;
  overflow: hidden;
  width: 100%;
}

.page-about-us__gallery-swiper {
  width: 100%;
}

.page-about-us__gallery-swiper .swiper-wrapper {
  align-items: stretch;
}

.page-about-us__gallery-swiper .swiper-slide {
  width: clamp(260px, 35.4vw, 510px);
  height: auto;
}

.page-about-us__gallery-slide {
  width: 100%;
  aspect-ratio: 510 / 343;
  overflow: hidden;
}

.page-about-us__gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* 「私たちについて」メインコンテンツ：ビューポート進入時に下からゆっくり浮かび上がる */
.page-about-us__reveal {
  opacity: 0;
  transform: translate3d(0, 7.25rem, 0) scale(0.96);
  transition: opacity 1.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 3.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.page-about-us__reveal.page-about-us__reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.page-about-us__strengths-grid .page-about-us__reveal:nth-child(1) {
  transition-delay: 0s;
}
.page-about-us__strengths-grid .page-about-us__reveal:nth-child(2) {
  transition-delay: 0.14s;
}
.page-about-us__strengths-grid .page-about-us__reveal:nth-child(3) {
  transition-delay: 0.28s;
}
.page-about-us__strengths-grid .page-about-us__reveal:nth-child(4) {
  transition-delay: 0.42s;
}
.page-about-us__strengths-grid .page-about-us__reveal:nth-child(5) {
  transition-delay: 0.56s;
}
.page-about-us__strengths-grid .page-about-us__reveal:nth-child(6) {
  transition-delay: 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  .page-about-us__reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .page-about-us__strengths-grid .page-about-us__reveal {
    transition-delay: 0s !important;
  }
}

@media (max-width: 1023px) {
  .page-about-us__strengths-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 400px;
    margin: 0 auto;
  }

  .page-about-us__band {
    grid-template-columns: 1fr;
  }

  .page-about-us__band--concept .page-about-us__band-visual {
    order: 2;
  }

  .page-about-us__band--concept .page-about-us__band-copy {
    order: 1;
  }

  .page-about-us__band-copy {
    padding: 40px 24px;
  }

  .page-about-us__band--services .page-about-us__band-copy {
    padding-top: 40px;
  }

  .page-about-us__company-inner {
    grid-template-columns: 1fr;
  }

  .page-about-us__profile {
    padding-top: 0;
    max-width: none;
  }

  /* 地图：iframe 固定宽度会撑破 Grid，用比例容器 + 绝对定位铺满 */
  .page-about-us__map-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .page-about-us__map-wrap > iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
  }

  .page-about-us__map-wrap > .page-about-us__map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center;
  }

  .page-about-us__map-img {
    margin-left: 0;
    max-width: none;
  }
}

/* ============================================================
   Figma 1:2260 — ニュース (news.html)
   3 列 × 4 行カード、ギャップ 5px / 行間 約 32px、ページネーション共通クラス
============================================================ */

.page-news-body {
  background-color: #f6f3e7;
}

.page-news {
  padding-top: 128px;
  padding-bottom: clamp(48px, 8vw, 80px);
  font-family: "Segoe UI", "Noto Sans JP", "Noto Sans SC", "Hiragino Sans", sans-serif;
  background-color: #f6f3e7;
}

.page-news__title {
  margin: 0 auto;
  max-width: 249px;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: #333;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news__board {
  max-width: 1440px;
  margin: 0 auto;
  padding: 31px clamp(16px, 11.11vw, 160px) 0;
  box-sizing: border-box;
}

.page-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news__card {
  margin: 0;
  min-width: 0;
}

.page-news__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-news__link:hover,
.page-news__link:focus-visible {
  opacity: 0.85;
  outline: none;
}

.page-news__thumb {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #d9d9d9;
  overflow: hidden;
  flex-shrink: 0;
}

.page-news__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.page-news__link:hover .page-news__thumb-img,
.page-news__link:focus-visible .page-news__thumb-img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.page-news__thumb--pan .page-news__thumb-img--pan {
  height: 169.64%;
  top: -3.94%;
  object-fit: cover;
}

.page-news__date {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  color: #ff7100;
}

.page-news__heading {
  margin: 0;
  max-width: 351px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
}

.page-news__pagination {
  margin-top: clamp(40px, 5.5vw, 56px);
}

@media (max-width: 1023px) {
  .page-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .page-news__heading {
    max-width: none;
  }
}

@media (max-width: 639px) {
  .page-news {
    padding-top: 96px;
  }

  .page-news__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .page-news__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-news__thumb {
    height: clamp(180px, 52vw, 220px);
  }
}

/* ============================================================
   Figma 1:2327 — ニュース詳細 (news-detail.html)
============================================================ */

.page-news-detail-body {
  background-color: #f6f3e7;
}

.page-news-detail {
  padding-top: 141px;
  padding-bottom: clamp(56px, 8vw, 100px);
  background-color: #f6f3e7;
}

.page-news-detail__article {
  max-width: 1145px;
  margin: 0 auto;
  padding: 0 clamp(16px, 12.15vw, 175px);
  box-sizing: border-box;
}

.page-news-detail__header {
  text-align: center;
}

.page-news-detail__title {
  margin: 0 auto;
  max-width: 1145px;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news-detail__meta {
  margin: 35px 0 0;
}

.page-news-detail__time {
  display: block;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  color: #ff7100;
}

.page-news-detail__intro,
.page-news-detail__body {
  max-width: 1092px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
}

.page-news-detail__intro {
  margin-top: 46px;
}

.page-news-detail__intro p,
.page-news-detail__body p {
  margin: 0 0 0.5em;
}

.page-news-detail__intro p:last-child,
.page-news-detail__body p:last-child {
  margin-bottom: 0;
}

.page-news-detail__figure {
  margin: 46px auto 0;
  max-width: 1091px;
  padding: 0;
  background-color: #d9d9d9;
  line-height: 0;
}

.page-news-detail__hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1091 / 363;
  object-fit: cover;
  object-position: center;
}

.page-news-detail__body {
  margin-top: 46px;
}

.page-news-detail__foot {
  margin-top: 45px;
}

.page-news-detail__rule-wrap {
  max-width: 1092px;
  margin: 0 auto 22px;
  line-height: 0;
}

.page-news-detail__rule {
  display: block;
  width: 100%;
  height: auto;
  max-height: 2px;
}

.page-news-detail__subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  max-width: 1092px;
  margin: 0 auto;
}

.page-news-detail__subnav-link {
  color: #1a1918;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-news-detail__subnav-link:hover,
.page-news-detail__subnav-link:focus-visible {
  opacity: 0.75;
  outline: none;
}

.page-news-detail__subnav-link--adjacent {
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.page-news-detail__subnav-link--index {
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #040404;
  min-width: 120px;
  text-align: center;
}

@media (max-width: 639px) {
  .page-news-detail {
    padding-top: 100px;
  }

  .page-news-detail__title {
    font-size: clamp(20px, 5.2vw, 28px);
    line-height: 1.35;
  }

  .page-news-detail__subnav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-news-detail__subnav-link--index {
    order: -1;
  }
}

/* ============================================================
   Figma 1:221 — ハイヤーサービス (hire-service.html)
============================================================ */

.page-hire-body {
  background-color: #f6f3e7;
}

.page-hire {
  font-family: "Segoe UI", "Noto Sans JP", "Noto Sans SC", "Hiragino Sans", sans-serif;
}

/* Hero 963px、車両写真 + 二重グラデーション */
.page-hire__hero {
  position: relative;
  min-height: clamp(420px, 66.875vw, 963px);
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.page-hire__hero-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hire__hero-base {
  position: absolute;
  inset: 0;
  background: #fff;
}

.page-hire__hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hire__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.page-hire__hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 70.665%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.page-hire__hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 66.875vw, 963px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.86vw, 70px) clamp(96px, 10vw, 140px);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-hire__hero-title {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.27px;
}

.page-hire__hero-lead {
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.27px;
}

.page-hire__hero-lead-line {
  display: block;
}

/* カードエリア #f7f8f9 */
.page-hire__board {
  padding: clamp(56px, 6vw, 89px) clamp(16px, 11.11vw, 160px) clamp(48px, 8vw, 100px);
  box-sizing: border-box;
}

.page-hire__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px clamp(8px, 0.8vw, 12px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.hire-card {
  margin: 0;
  min-width: 0;
}

.hire-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hire-card__link:hover,
.hire-card__link:focus-visible {
  opacity: 0.92;
  outline: none;
}

.hire-card__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  padding: 20.667px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  min-height: 0;
}

.hire-card__thumb {
  position: relative;
  flex: 0 0 auto;
  width: 196.24px;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f8f9;
}

.hire-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d2d2d2;
  z-index: 0;
}

.hire-card__thumb-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.hire-card__link:hover .hire-card__thumb-img,
.hire-card__link:focus-visible .hire-card__thumb-img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.hire-card__thumb--pan .hire-card__thumb-img--pan {
  position: absolute;
  z-index: 1;
  left: -41.41%;
  top: 0;
  width: 170.05%;
  height: 110.49%;
  max-width: none;
  object-fit: cover;
}

.hire-card__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 0;
}

.hire-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.7px;
  color: #1c1c1e;
}

.hire-card__desc {
  margin: 16px 0 0;
  max-width: 295.147px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.18px;
  color: #565c5c;
}

.hire-card__cta {
  margin: 24px 0 0;
}

.hire-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 295px;
  min-height: 37px;
  padding: 10px;
  box-sizing: border-box;
  background: #373c49;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.18px;
  color: #fff;
}

.hire-card__price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hire-card__price {
  font-size: 24px;
  font-weight: 700;
  line-height: 34.29px;
  letter-spacing: 0.27px;
  color: #000;
}

.hire-card__slash {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.18px;
  color: #1c1c1e;
}

.hire-card__icon-person {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.page-hire__pagination {
  margin-top: clamp(40px, 6vw, 56px);
}

@media (max-width: 900px) {
  .page-hire__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hire-card__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hire-card__thumb {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: clamp(220px, 55vw, 300px);
  }

  .hire-card__desc {
    max-width: none;
  }

  .hire-card__btn {
    max-width: none;
  }

  .hire-card__price-row {
    justify-content: flex-start;
  }
}

  .page-hire__hero-inner {
    padding-bottom: 72px;
  }

  .page-hire__hero-lead {
    margin-top: 16px;
  }
}

/* ============================================================
   Figma 1:1166 — MICE旅行 ステップ01 (mice-step-01.html)
============================================================ */

.page-mice-step-body {
  background-color: #f6f3e7;
}

.page-mice-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 100px) clamp(16px, 4vw, 40px) clamp(64px, 10vw, 120px);
  box-sizing: border-box;
  gap: clamp(24px, 4vw, 48px);
  font-family: "Segoe UI", "Noto Sans JP", "Noto Sans SC", "Hiragino Sans", sans-serif;
}

.page-mice-step__rail {
  flex: 0 0 auto;
  margin-left: clamp(0px, 4.8vw, 52px);
  position: relative;
}

.page-mice-step__rail-inner {
  position: relative;
  width: 50px;
}

.page-mice-step__rail-line {
  position: absolute;
  left: 20px;
  top: 17px;
  width: 9px;
  height: min(902px, calc(100% - 34px));
  background-color: #f4a261;
  border-radius: 4px;
  z-index: 0;
}

.page-mice-step__dots {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 127px;
}

.page-mice-step__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 99px;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f4a261;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

.page-mice-step__dot--current {
  background-color: #373c49;
}

.page-mice-step__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-mice-step__title {
  margin: 0;
  max-width: 839px;
  font-family: "Noto Sans JP", "Noto Sans", "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: #333;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-mice-step__options {
  margin-top: clamp(48px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 322px));
  column-gap: clamp(32px, 4vw, 56px);
  row-gap: clamp(32px, 4vw, 46px);
  justify-content: center;
  width: 100%;
  max-width: 720px;
}

.mice-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.mice-option__input:focus-visible + .mice-option__visual {
  outline: 2px solid #373c49;
  outline-offset: 3px;
}

.mice-option__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 215px;
  padding: 16px 12px;
  box-sizing: border-box;
  background-color: #fff;
  border: 3px solid #f4a261;
  border-radius: 10px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.mice-option:has(.mice-option__input:checked) .mice-option__visual {
  background:
    linear-gradient(90deg, rgba(244, 162, 97, 0.2) 0%, rgba(244, 162, 97, 0.2) 100%),
    linear-gradient(90deg, #fff 0%, #fff 100%);
}

.mice-option__img-wrap {
  position: relative;
  width: 107px;
  height: 107px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #d9d9d9;
}

.mice-option__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.mice-option:hover .mice-option__img,
.mice-option:focus-within .mice-option__img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.mice-option__label {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #000;
}

.page-mice-step__actions {
  margin-top: clamp(48px, 8vw, 80px);
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 720px;
  justify-content: flex-end;
}

.page-mice-step__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100px;
  height: 41px;
  padding: 0 8px;
  box-sizing: border-box;
  border: none;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-mice-step__btn:hover:not(:disabled),
.page-mice-step__btn:focus-visible {
  opacity: 0.88;
  outline: none;
}

.page-mice-step__btn:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.page-mice-step__btn--prev {
  background-color: #c4c4c4;
}

.page-mice-step__btn--next {
  background-color: #373c49;
}

.page-mice-step__btn-icon {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page-mice-step {
    flex-direction: column;
    align-items: stretch;
  }

  .page-mice-step__rail {
    margin-left: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .page-mice-step__rail-inner {
    width: auto;
    min-width: min(100%, 400px);
    margin: 0 auto;
  }

  .page-mice-step__rail-line {
    display: none;
  }

  .page-mice-step__dots {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-mice-step__dot {
    width: 44px;
    height: 44px;
    font-size: 18px;
    line-height: 26px;
  }

  .page-mice-step__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .page-mice-step__actions {
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .page-mice-step__title {
    line-height: 1.35;
  }

  .page-mice-step__options {
    grid-template-columns: 1fr;
  }
}

/* ---------- Figma 1:1205 — MICE旅行 ステップ02 企業会議 (mice-step-02.html) ---------- */

.page-mice-step__rail-line--step02 {
  width: 11px;
  left: 19px;
}

.page-mice-step02-list {
  margin-top: clamp(40px, 7vw, 88px);
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 377px;
  width: 100%;
  align-self: flex-start;
  margin-left: clamp(0px, 10vw, 124px);
  box-sizing: border-box;
}

.mice-check {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  cursor: pointer;
}

.mice-check__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.mice-check__icon-wrap {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.mice-check__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 22px;
  height: 22px;
  max-width: none;
  object-fit: contain;
}

.mice-check__input:checked + .mice-check__row .mice-check__img--off {
  /* display: none; */
}

.mice-check__input:not(:checked) + .mice-check__row .mice-check__img--on {
  /* display: none; */
}

.mice-check__label {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
}

.mice-check__input:focus-visible + .mice-check__row {
  outline: 2px solid #373c49;
  outline-offset: 3px;
  border-radius: 4px;
}

.page-mice-step__actions--step02 {
  margin-top: clamp(40px, 8vw, 72px);
}

.page-mice-step__btn--active {
  background-color: #373c49;
}

.page-mice-step__btn--active:hover,
.page-mice-step__btn--active:focus-visible {
  opacity: 0.88;
  outline: none;
}

@media (max-width: 900px) {
  .page-mice-step02-list {
    margin-left: 0;
    align-self: center;
    max-width: 100%;
  }

  .page-mice-step__actions--step02 {
    justify-content: center;
    margin-left: 0;
  }
}

/* ---------- Figma 1:1423 — MICE旅行 ステップ03 エリア選択 (mice-step-03.html) ---------- */

.page-mice-step__main--step03 {
  align-items: stretch;
  width: 100%;
  max-width: 1248px;
}

.page-mice-step__title--step03 {
  max-width: 869px;
  width: 100%;
  align-self: center;
}

.page-mice-step03-layout {
  margin-top: clamp(28px, 4vw, 56px);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 630px) minmax(0, 1fr);
  gap: 24px clamp(16px, 2.4vw, 40px);
  align-items: start;
  box-sizing: border-box;
}

.page-mice-step03-map {
  width: 100%;
  max-width: 630px;
  justify-self: start;
}

/* 底図＋/img 下 6 枚（関東…九州）＋ 北海道/東北は底図＋clip 色付け（mice-flow.js 連動） */
.page-mice-step03-map__imgWrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 630px;
  line-height: 0;
}

.page-mice-step03-map__imgWrap--mosaic .page-mice-step03-map__base {
  display: block;
  width: 100%;
  max-width: 630px;
  height: auto;
  aspect-ratio: 630 / 716;
  object-fit: contain;
  object-position: left top;
  position: relative;
  z-index: 0;
  vertical-align: top;
}

.page-mice-step03-map__mosaicStack {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0;
}

.page-mice-step03-map__pieceSlot {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* 北から順に上へ積む（同キャンバス重ね） */
.page-mice-step03-map__pieceSlot:nth-child(1) { z-index: 1; }
.page-mice-step03-map__pieceSlot:nth-child(2) { z-index: 2; }
.page-mice-step03-map__pieceSlot:nth-child(3) { z-index: 3; }
.page-mice-step03-map__pieceSlot:nth-child(4) { z-index: 4; }
.page-mice-step03-map__pieceSlot:nth-child(5) { z-index: 5; }
.page-mice-step03-map__pieceSlot:nth-child(6) { z-index: 6; }
.page-mice-step03-map__pieceSlot:nth-child(7) { z-index: 7; }
.page-mice-step03-map__pieceSlot:nth-child(8) { z-index: 8; }

.page-mice-step03-map__pieceImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
  display: block;
}

/* 全 tint 共用 */
.page-mice-step03-map__tint {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.22s ease;
  will-change: opacity;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.page-mice-step03-map__pieceSlot--on > .page-mice-step03-map__tint {
  opacity: 0.5;
}

/* 底図のみ：北海道・東北（同キャンバス上 clip） */
.page-mice-step03-map__tint--clip.page-mice-step03-map__tint--hokkaido {
  background-color: #ae9cf3;
  clip-path: polygon(50% 0%, 100% 0%, 100% 22%, 76% 25%, 58% 20%, 42% 10%, 44% 2%);
}
.page-mice-step03-map__tint--clip.page-mice-step03-map__tint--tohoku {
  background-color: #87abf6;
  clip-path: polygon(38% 12%, 78% 20%, 80% 34%, 60% 40%, 36% 36%, 33% 22%);
}

/* 与 /img/关东.png 等同キャンネス＋同形：mask で塗色範囲＝図形 */
.page-mice-step03-map__tint--mask {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: left top;
  mask-position: left top;
}
.page-mice-step03-map__tint--mask.page-mice-step03-map__tint--kanto {
  background-color: #e69ccb;
  -webkit-mask-image: url("/img/关东.png");
  mask-image: url("/img/关东.png");
}
.page-mice-step03-map__tint--mask.page-mice-step03-map__tint--chubu {
  background-color: #81c5ec;
  -webkit-mask-image: url("/img/中部.png");
  mask-image: url("/img/中部.png");
}
.page-mice-step03-map__tint--mask.page-mice-step03-map__tint--kinki {
  background-color: #60cb95;
  -webkit-mask-image: url("/img/近畿.png");
  mask-image: url("/img/近畿.png");
}
.page-mice-step03-map__tint--mask.page-mice-step03-map__tint--chugoku {
  background-color: #a6d845;
  -webkit-mask-image: url("/img/中国.png");
  mask-image: url("/img/中国.png");
}
.page-mice-step03-map__tint--mask.page-mice-step03-map__tint--shikoku {
  background-color: #fec142;
  -webkit-mask-image: url("/img/四国.png");
  mask-image: url("/img/四国.png");
}
.page-mice-step03-map__tint--mask.page-mice-step03-map__tint--kyushu {
  background-color: #fb9a76;
  -webkit-mask-image: url("/img/九州.png");
  mask-image: url("/img/九州.png");
}

.page-mice-step03-panels {
  display: grid;
  grid-template-columns: repeat(4, 136px);
  column-gap: 26px;
  row-gap: 26px;
  justify-content: end;
  justify-items: stretch;
  width: 100%;
  max-width: 620px;
  min-width: 0;
  margin-left: auto;
  z-index: 1000;
}

.mice-step03-panel {
  margin: 0;
  border: 1px solid #aaa;
  background: #fff;
  box-sizing: border-box;
  width: 136px;
  min-width: 0;
}

.mice-step03-panel__head {
  margin: 0;
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.mice-step03-panel__body {
  display: flex;
  flex-direction: column;
}

.mice-step03-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
  margin: 0;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
}

.mice-step03-row input[type="checkbox"] {
  margin: 0;
  justify-self: center;
  align-self: center;
}

.mice-step03-row__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
  min-width: 0;
  word-break: keep-all;
}

.mice-step03-row:focus-within {
  outline: 2px solid #373c49;
  outline-offset: -2px;
}

.mice-step03-panel--hokkaido .mice-step03-panel__head {
  background-color: #ae9cf3;
}

.mice-step03-panel--tohoku .mice-step03-panel__head {
  background-color: #87abf6;
}

.mice-step03-panel--kanto .mice-step03-panel__head {
  background-color: #e69ccb;
}

.mice-step03-panel--chubu .mice-step03-panel__head {
  background-color: #81c5ec;
}

.mice-step03-panel--kinki .mice-step03-panel__head {
  background-color: #60cb95;
}

.mice-step03-panel--chugoku .mice-step03-panel__head {
  background-color: #a6d845;
}

.mice-step03-panel--shikoku .mice-step03-panel__head {
  background-color: #fec142;
}

.mice-step03-panel--kyushu .mice-step03-panel__head {
  background-color: #fb9a76;
}

/* 北海道＋東北の合計高さ＝第1行の中部地方と同じ（9県分＋見出し） */
.mice-step03-col4-top-stack {
  grid-column: 4;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 136px;
  min-width: 0;
  align-self: stretch;
  min-height: 0;
}

.mice-step03-col4-top-stack .mice-step03-panel--hokkaido {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mice-step03-col4-top-stack .mice-step03-panel--hokkaido .mice-step03-panel__body {
  flex: 1 1 auto;
  min-height: 0;
}

.mice-step03-col4-top-stack .mice-step03-panel--tohoku {
  flex: 0 0 auto;
}

.mice-step03-panel--kanto {
  grid-column: 2;
  grid-row: 1;
}

.mice-step03-panel--chubu {
  grid-column: 3;
  grid-row: 1;
}

.mice-step03-panel--kyushu {
  grid-column: 1;
  grid-row: 3;
}

.mice-step03-panel--shikoku {
  grid-column: 2;
  grid-row: 3;
}

.mice-step03-panel--chugoku {
  grid-column: 3;
  grid-row: 3;
}

.mice-step03-panel--kinki {
  grid-column: 4;
  grid-row: 3;
}

.page-mice-step__actions--step03 {
  margin-top: clamp(36px, 6vw, 64px);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-end;
}

@media (min-width: 1100px) {
  .page-mice-step03-layout {
    margin-right: clamp(0px, 2vw, 24px);
  }

  .page-mice-step03-panels {
    margin-right: 0;
  }
}

@media (max-width: 1180px) {
  .page-mice-step03-panels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    column-gap: 16px;
    min-width: 0;
    justify-items: stretch;
  }

  .mice-step03-panel {
    width: 100%;
  }

  .mice-step03-col4-top-stack {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .page-mice-step03-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-width: 0;
    overflow-x: hidden;
  }

  /* 覆盖 mice_step_03.html 内联 .container / .map-wrap（600px + left:-217px）导致的横向溢出与左右不对称 */
  .page-mice-step03-map.container {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-mice-step03-map .page-mice-step03-map__imgWrap.map-wrap {
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-mice-step03-map #map {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-mice-step03-map {
    max-width: none;
    justify-self: stretch;
    width: 100%;
  }

  .page-mice-step03-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
    max-width: none;
    min-width: 0;
    justify-content: stretch;
    justify-items: stretch;
    column-gap: 12px;
    row-gap: 12px;
  }

  .mice-step03-col4-top-stack {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    align-self: auto;
    gap: 12px;
  }

  .mice-step03-col4-top-stack .mice-step03-panel--hokkaido {
    flex: 0 0 auto;
  }

  .mice-step03-col4-top-stack .mice-step03-panel--hokkaido .mice-step03-panel__body {
    flex: 0 0 auto;
  }

  .mice-step03-panel--kanto,
  .mice-step03-panel--chubu,
  .mice-step03-panel--kinki,
  .mice-step03-panel--chugoku,
  .mice-step03-panel--shikoku,
  .mice-step03-panel--kyushu {
    grid-column: auto;
    grid-row: auto;
  }

  .page-mice-step__actions--step03 {
    max-width: none;
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .page-mice-step03-layout {
    min-width: 0;
  }

  .page-mice-step03-panels {
    grid-template-columns: 1fr;
    max-width: none;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    justify-content: stretch;
    justify-items: stretch;
    column-gap: 10px;
    row-gap: 10px;
    z-index: 2;
    overflow-x: hidden;
  }

  .mice-step03-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mice-step03-col4-top-stack {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .mice-step03-panel__head {
    height: auto;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }

  .mice-step03-panel__body {
    min-width: 0;
  }

  .mice-step03-row {
    height: auto;
    min-height: 44px;
    padding: 8px 10px;
    align-items: start;
  }

  .mice-step03-row input[type="checkbox"] {
    margin-top: 2px;
  }

  .mice-step03-row__label {
    font-size: 15px;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .mice-step03-panel--kanto,
  .mice-step03-panel--chubu,
  .mice-step03-panel--kinki,
  .mice-step03-panel--chugoku,
  .mice-step03-panel--shikoku,
  .mice-step03-panel--kyushu {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* ---------- Figma 1:1736 — MICE旅行 ステップ04 日程・人数 (mice-step-04.html) ---------- */

.page-mice-step__main--step04 {
  align-items: stretch;
  width: 100%;
}

.page-mice-step__title--step04 {
  max-width: 869px;
  width: 100%;
  align-self: center;
}

.page-mice-step04-form {
  margin-top: clamp(24px, 3.5vw, 40px);
  max-width: 321px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-left: clamp(0px, 10vw, 124px);
  align-self: flex-start;
  box-sizing: border-box;
}

.page-mice-step04__grid2 {
  display: grid;
  grid-template-columns: 155px 155px;
  column-gap: 11px;
  width: 100%;
}

.page-mice-step04__field-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-mice-step04__field-col--total {
  max-width: 155px;
}

.page-mice-step04__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}

.page-mice-step04__detail-toggle {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  color: #1a5fb4;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.page-mice-step04__detail-toggle:hover {
  color: #0d3d7a;
}

.page-mice-step04__detail-fields {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
}

.page-mice-step04__detail-fields.is-hidden {
  display: none;
}

.page-mice-step04__label {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  margin: 0;
}

.page-mice-step04__label--multiline {
  line-height: 22.5px;
}

.page-mice-step04__label--full {
  line-height: 22.5px;
}

.page-mice-step04__req {
  color: #f00;
}

.page-mice-step04__control {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 39px;
  padding: 0 10px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d8d8d8;
  width: 100%;
}

.page-mice-step04__control--plain {
  gap: 0;
}

.page-mice-step04__control--full {
  max-width: 312px;
}

.page-mice-step04__control img {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.page-mice-step04__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.page-mice-step04__input::placeholder {
  color: #8a8a8a;
}

.page-mice-step04__field-full {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 312px;
  width: 100%;
}

.page-mice-step__actions--step04 {
  margin-top: clamp(32px, 6vw, 56px);
  margin-left: clamp(0px, 10vw, 124px);
  max-width: 321px;
  width: 100%;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .page-mice-step04-form {
    margin-left: 0;
    align-self: center;
    max-width: min(321px, 100%);
  }

  .page-mice-step04__grid2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(8px, 2vw, 11px);
  }

  .page-mice-step__actions--step04 {
    margin-left: 0;
    max-width: none;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .page-mice-step04__grid2 {
    grid-template-columns: 1fr;
  }

  .page-mice-step04__field-full {
    max-width: none;
  }

  .page-mice-step04__control--full {
    max-width: none;
  }
}

/* ---------- Figma 1:3202 — MICE旅行 完成・選択 (mice-step-complete.html) ---------- */

.page-mice-complete-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f6f3e7;
}

/* 06 確認後に遷移した場合は続入力の案内を出さない */
.page-mice-complete-body--from06 .page-mice-complete__title-ask,
.page-mice-complete-body--from06 .page-mice-complete__btn--primary {
  display: none !important;
}

.page-mice-complete-body--from06 .page-mice-complete__title {
  line-height: 1.45;
}

.page-mice-complete__title-main,
.page-mice-complete__title-ask {
  display: block;
}

.page-mice-complete {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 8vw, 80px) clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.page-mice-complete__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  width: 100%;
}

.page-mice-complete__icon {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: clamp(20px, 4vw, 32px);
}

.page-mice-complete__title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.27px;
  color: #000;
}

@media (min-width: 600px) {
  .page-mice-complete__title {
    line-height: 55px;
  }
}

.page-mice-complete__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 5vw, 48px);
  width: 100%;
}

.page-mice-complete__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 214px;
  min-height: 41px;
  padding: 8px 16px;
  box-sizing: border-box;
  border: none;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-mice-complete__btn:hover,
.page-mice-complete__btn:focus-visible {
  opacity: 0.88;
  outline: none;
}

.page-mice-complete__btn--primary {
  background-color: #f4a261;
}

.page-mice-complete__btn--secondary {
  background-color: #373c49;
}

/* ---------- Figma 1:1806 — MICE旅行 ステップ05 ご要望詳細 (mice-step-05.html) ---------- */

.page-mice-step__main--step05 {
  align-items: stretch;
  width: 100%;
}

.page-mice-step__title--step05 {
  max-width: min(1180px, 100%);
  width: 100%;
  align-self: center;
}

.page-mice-step05-form {
  margin-top: clamp(24px, 3.5vw, 40px);
  max-width: min(1180px, 100%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  box-sizing: border-box;
}

.mice-step05-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  width: 100%;
  align-items: start;
}

.mice-step05-layout__col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.mice-step05-sec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  width: 100%;
}

.mice-step05-sec__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.mice-step05-sec__title {
  margin: 0 0 4px;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22.5px;
  color: #000;
}

.mice-step05-sub {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22.5px;
  color: #000;
}

.mice-step05-sub--spaced {
  margin-top: 8px;
}

.mice-step05-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  width: 100%;
}

.mice-step05-choice {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.5px;
  color: #000;
  width: 100%;
}

.mice-step05-choice__text {
  flex: 1 1 auto;
  min-width: 0;
}

.mice-step05-choice input {
  flex-shrink: 0;
  margin-top: 4px;
}

.mice-step05-choice:focus-within {
  outline: 2px solid #373c49;
  outline-offset: 2px;
}

.mice-step05-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 22.5px;
  color: #000;
}

.mice-step05-row--check-end {
  width: 100%;
}

.mice-step05-row__label {
  flex: 1 1 auto;
  min-width: 0;
}

.mice-step05-suffix {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 22.5px;
  color: #000;
}

.mice-step05-num {
  width: 41px;
  height: 28px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 4px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #000;
  text-align: center;
}

.mice-step05-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  width: 100%;
  margin-top: 4px;
}

.mice-step05-block__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22.5px;
  color: #000;
}

.mice-step05-input-full {
  width: 100%;
  height: 28px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 8px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #000;
}

.page-mice-step__actions--step05 {
  margin-top: clamp(32px, 6vw, 48px);
  margin-left: auto;
  margin-right: auto;
  max-width: min(1180px, 100%);
  width: 100%;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .page-mice-step05-form {
    max-width: min(720px, 100%);
  }

  .page-mice-step__actions--step05 {
    max-width: min(720px, 100%);
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .mice-step05-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- Figma 1:2169 — MICE旅行 ステップ06 事項確認 (mice-step-06.html) ---------- */

.page-mice-step__main--step06 {
  align-items: stretch;
  width: 100%;
}

.page-mice-step__title--step06 {
  max-width: min(1180px, 100%);
  width: 100%;
  align-self: center;
}

.mice-step06-summary {
  margin-top: clamp(24px, 3.5vw, 40px);
  max-width: min(1180px, 100%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 22.5px;
  color: #000;
}

.mice-step06-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  width: 100%;
  align-items: start;
}

.mice-step06-layout__col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.mice-step06-block {
  margin: 0;
}

.mice-step06-block__body,
.mice-step06-sec__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.mice-step06-sec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.mice-step06-lead {
  margin: 0 0 4px;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22.5px;
  color: #000;
}

.mice-step06-lead--step5 {
  margin-top: 4px;
}

.mice-step06-lead--section {
  margin: 0 0 4px;
}

.mice-step06-dt {
  font-weight: 600;
}

.mice-step06-p {
  margin: 0;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.5px;
  color: #000;
  white-space: pre-wrap;
}

.page-mice-step06-actions {
  margin-top: clamp(36px, 6vw, 56px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  max-width: min(1180px, 100%);
  width: 100%;
  box-sizing: border-box;
}

.page-mice-step__btn--confirm {
  width: 208px;
  height: 41px;
  background-color: #f4a261;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-mice-step__btn--confirm:hover,
.page-mice-step__btn--confirm:focus-visible {
  opacity: 0.88;
  outline: none;
}

@media (max-width: 900px) {
  .mice-step06-summary {
    max-width: min(720px, 100%);
  }

  .page-mice-step06-actions {
    max-width: min(720px, 100%);
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .mice-step06-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .page-mice-step__btn--confirm {
    width: 100%;
    max-width: 208px;
  }
}


/* ============================================
   公共告知弹窗 (Notice Modal) - 深灰头/白体、直角，与 tanchuang() 配合
   ============================================ */
.notice-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(238, 238, 238, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.notice-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.notice-modal-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.notice-modal-backdrop.is-open .notice-modal-box {
  transform: scale(1);
}

.notice-modal-header {
  background: #343a40;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 600;
}

.notice-modal-body {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.7;
}