/* =====================================================
   Yasuragi no Sato - Plans Page
   Based on Facility Page Design System
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
  /* Primary Colors */
  --color-primary: #4a9255;
  --color-primary-dark: #3d7a47;

  /* Background Colors */
  --color-bg-cream: #fffbf1;  /* Figma準拠に変更 */
  --color-btn-orange: #d67c3d;
  --color-btn-orange-hover: #c26a2d;
  --color-bg-light: #fffcf8;
  --color-bg-beige: #faf4ec;

  /* Feature Tag Colors */
  --color-tag-bg: #e8c8a9;
  --color-tag-border: #d4b494;

  /* Text Colors */
  --color-text-dark: #352304;
  --color-text-body: #5a5a5a;
  --color-text-light: #666666;

  /* Border */
  --color-border: #d4c4b0;
  --color-border-light: #e0d5c8;

  /* Functional */
  --color-white: #ffffff;

  /* Typography */
  --font-mincho: 'Shippori Mincho B1', 'YuMincho', 'Yu Mincho', serif;
  --font-gothic: 'YuGothic', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-italiana: 'Italiana', serif;

  /* Layout */
  --container-max: 1000px;
  --container-wide: 1200px;
}

/* =====================================================
   Reset & Base
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =====================================================
   Container
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Figma: ヘッダー高さ 80px */

/* Figma: ロゴ 185x36px */

/* Figma: カレンダーから予約 - オレンジ #D67C3D, 209x80px */

/* Figma: プランから予約 - グリーン #4A9255, 208x80px */

/* =====================================================
   Hero Section
   ===================================================== */
/* Figma: ヒーロー 1440x720px, ヘッダー80px */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  margin-top: clamp(60px, 5.56vw, 80px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Figma: コラージュ背景 (4枚の画像) — 画面幅いっぱい */
.hero__collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 720px;
  background: #fffbf1;
}

.hero__collage-item {
  position: absolute;
  overflow: hidden;
}

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

/* Figmaレイヤー順: 右下(底)→右上→左→中央(最前面) */

/* 右下: 662x360, x:779, y:360 — img46 2 (玄米ご飯) */
.hero__collage-item--bottom-right {
  left: 54.1%;
  top: 360px;
  width: 46%;
  height: 360px;
  z-index: 1;
  clip-path: polygon(8.5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* 右上: 606x360, x:834 — image 24 (おかゆ) */
.hero__collage-item--top-right {
  left: 57.9%;
  top: 0;
  width: 42.1%;
  height: 360px;
  z-index: 2;
  clip-path: polygon(9.2% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* 左: 594x720, x:0 — 右辺が斜め（skew transform適用後） */
.hero__collage-item--left {
  left: 0;
  top: 0;
  width: 41.3%;
  height: 720px;
  z-index: 3;
  clip-path: polygon(0% 0%, 100% 0%, 81.3% 100%, 0% 100%);
}

/* 中央: 393x720, x:490 — 平行四辺形（両辺が斜め、skew transform適用後） */
.hero__collage-item--center {
  left: 34%;
  top: 0;
  width: 27.3%;
  height: 720px;
  z-index: 4;
  clip-path: polygon(28.2% 0%, 100% 0%, 71.8% 100%, 0% 100%);
}

/* Figma: 左からのグラデーションオーバーレイ */
.hero__gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.hero__gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 43.5%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.00) 18.8%, rgba(176, 166, 157, 0.80) 32.9%, rgba(100, 81, 63, 1.0) 64.8%);
  opacity: 0.5;
}

/* Figma: 左からのグラデーションオーバーレイ (単一画像用) */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 626px;
  height: 100%;
  background: linear-gradient(263deg, rgba(255, 255, 255, 0.00) 11.54%, rgba(176, 167, 157, 0.40) 29.37%, rgba(100, 81, 63, 0.50) 69.65%);
  pointer-events: none;
}

/* Figma: タイトルエリア - オーバーレイ上に左配置 */
.hero__title-area--center {
  position: absolute;
  left: 157px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
}

.hero__title-area--plans {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding-left: max(157px, 10.9%);
  text-align: left;
  z-index: 6;
  pointer-events: none;
}

/* Figma: Italiana Regular 18px, letter-spacing 0.9px, ドロップシャドウ */
.hero__subtitle {
  font-family: var(--font-italiana);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 8px;
}

/* Figma: Shippori Mincho B1 SemiBold 64px, font-weight 600, letter-spacing 6.4px, color #FFFBF1 */
.hero__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 600;
  color: #fffbf1;
  letter-spacing: 6.4px;
  line-height: 70px;
}

/* =====================================================
   Section Base
   ===================================================== */
.section {
  padding: 72px 0;
}

.section--cream {
  background: var(--color-bg-cream);
}

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.section__subtitle {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* =====================================================
   Totonoe Section (ととのえる、旅)
   ===================================================== */
.totonoe {
  padding: 80px 0 60px;
  background: var(--color-bg-cream);
}

.totonoe__title {
  font-family: 'Zen Old Mincho', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: left;
  margin-bottom: 10px;
}

.totonoe__subtitle {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: -1.2px;
  color: #352304;
  text-align: left;
  margin-bottom: 50px;
}

.totonoe__highlight {
  color: #352304;
}

.totonoe__subtitle--sp {
  display: none;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

.totonoe__gallery-wrap {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.totonoe__gallery {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-loop 30s linear infinite;
}

.totonoe__gallery:hover {
  animation-play-state: paused;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.totonoe__image-wrap {
  width: 450px;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.totonoe__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   Method Section (やすらぎメソッド)
   ===================================================== */
.method {
  padding: 80px 0 100px;
  background: var(--color-bg-cream);
  position: relative;
  overflow: hidden;
}

/* Brush Stroke Decoration */
.method__brush-stroke {
  position: absolute;
  top: 50px;
  right: 150px;
  width: 440px;
  height: 121px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.method__brush-img {
  width: 100%;
  height: auto;
}

.method__wrapper {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.method__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Row Layout */
.method__row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.method__row--1 {
  flex-direction: row;
}

.method__row--2 {
  flex-direction: row;
}

/* Image */
.method__image-wrap {
  width: 350px;
  height: 233px;
  flex-shrink: 0;
  overflow: hidden;
}

.method__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.method__text {
  flex: 1;
  padding-top: 0;
}

.method__lead {
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin-bottom: 24px;
  max-width: 320px;
}

.method__desc {
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #352304;
  margin-bottom: 24px;
  max-width: 380px;
}

.method__desc--wide {
  max-width: 550px;
  font-size: 16px;
  line-height: 30px;
}

.method__quote {
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1px;
  color: #352304;
  margin-bottom: 0;
}

.method__quote--right {
  text-align: right;
  padding-left: 80px;
}

.method__highlight {
  color: #d67c3d;
}

/* Vertical Title */
.method__vertical-title {
  display: flex;
  flex-direction: row-reverse;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: -20px;
  gap: 2px;
}

.method__vertical-yasuragi,
.method__vertical-method {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-mincho);
  font-size: 42px;
  font-weight: 600;
  line-height: 62px;
  letter-spacing: 0.35em;
}

.method__vertical-ya {
  color: #4a9255;
}

.method__vertical-suragi {
  color: #352304;
}

.method__vertical-method {
  color: #352304;
  padding-top: 124px;
}

/* Method Section Responsive */
@media (max-width: 1024px) {
  .method__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .method__vertical-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    order: -1;
    text-align: center;
    margin-bottom: 20px;
  }

  .method__image-wrap {
    width: 400px;
    height: 267px;
  }
}

/* ===== Hero SP ===== */
@media (max-width: 768px) {
  .hero--plans {
    height: 570px !important;
    margin-top: 56px;
    background: url('../images/hero-sp-bg.webp') top center / cover no-repeat;
  }

  .hero--plans .hero__collage,
  .hero--plans .hero__gradient-overlay {
    display: none;
  }

  .hero__title-area--plans {
    top: auto;
    bottom: 20px;
    left: 41px;
    transform: none;
    padding-left: 0;
    width: auto;
  }

  .hero--plans .hero__title {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 70px;
  }

  .hero--plans .hero__subtitle {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .method {
    padding: 60px 0 80px;
  }

  .method__row {
    flex-direction: column !important;
    gap: 24px;
  }

  .method__image-wrap {
    width: 100%;
    height: 220px;
  }

  .method__text {
    padding-top: 0;
  }

  .method__lead {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .method__desc {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .method__quote {
    font-size: 18px;
    line-height: 32px;
  }

  .method__vertical-title {
    font-size: 28px;
    line-height: 42px;
  }

  .method__content {
    gap: 40px;
  }
}

/* =====================================================
   Schedule Section (自分に合った日程で)
   ===================================================== */
.schedule {
  padding: 80px 0 100px;
}

.schedule__header {
  text-align: center;
  margin-bottom: 60px;
}

.schedule__title {
  font-family: 'Zen Old Mincho', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.schedule__subtitle {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

.schedule__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.schedule .container {
  max-width: 1240px;
}

.schedule__row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.schedule__card {
  position: relative;
  width: 386px;
  height: 257px;
  overflow: hidden;
  display: block;
  border-radius: 0;
  transition: transform 0.3s;
}

.schedule__card:hover {
  transform: scale(1.02);
}

.schedule__card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule__card-overlay {
  display: none;
}

.schedule__card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}

.schedule__card-sub {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: white;
}

.schedule__card-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.schedule__card-label {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
}

.schedule__card-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.schedule__card-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 47px));
  width: 100px;
  height: 1px;
}

/* Schedule Section Responsive */
@media (max-width: 1024px) {
  .schedule__title {
    font-size: 48px;
    line-height: 70px;
  }

  .schedule__card {
    width: 300px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  .schedule {
    padding: 60px 0 80px;
  }

  .schedule__title {
    font-size: 32px;
    line-height: 48px;
  }

  .schedule__subtitle {
    font-size: 18px;
    line-height: 32px;
  }

  .schedule__row {
    flex-direction: column;
    align-items: center;
  }

  .schedule__card {
    width: 100%;
    max-width: 386px;
    height: 210px;
  }

  .schedule__card-sub {
    font-size: 16px;
  }

  .schedule__card-label {
    font-size: 22px;
    line-height: 40px;
  }
}

/* =====================================================
   Plan Block Section (どれを選べばいいか迷ったら)
   ===================================================== */
.plan-block {
  background: var(--color-bg-cream);
  padding: 100px 0;
}

.plan-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-block__header {
  text-align: center;
}

.plan-block__section-title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #604d44;
  margin-bottom: 15px;
}

.plan-block__section-sub {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 52px;
  color: #604d44;
}

/* Hero Image */
.plan-block__hero {
  position: relative;
  width: 100%;
  max-width: 1180px;
  overflow: hidden;
}

.plan-block__hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.plan-block__hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mincho);
  font-size: 42px;
  font-weight: 600;
  line-height: 62px;
  color: white;
  white-space: nowrap;
}

/* Content */
.plan-block__content {
  text-align: center;
  max-width: 792px;
}

.plan-block__heading {
  font-family: var(--font-mincho);
  font-size: 42px;
  font-weight: 600;
  line-height: 62px;
  color: #352304;
  margin-bottom: 20px;
}

.plan-block__desc {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: #352304;
}

/* CTA Button */
.plan-block__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 700px;
  height: 77px;
  color: white;
  transition: opacity 0.3s;
}

.plan-block__cta:hover {
  opacity: 0.9;
}

.plan-block__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-block__cta-text {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 52px;
  white-space: nowrap;
}

.plan-block__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* =====================================================
   Plan Schedule Section (各プランのスケジュール)
   ===================================================== */
.plan-schedule {
  position: relative;
  background-color: var(--color-bg-cream);
  padding: 100px 0;
}

.plan-schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/schedule-bg-texture.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}

.plan-schedule__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-schedule__header {
  text-align: center;
}

.plan-schedule__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  margin-bottom: 50px;
}

.plan-schedule__desc {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  line-height: 54px;
  color: #352304;
}

.plan-schedule__chart {
  width: 100%;
  max-width: 1000px;
}

.plan-schedule__chart-img {
  width: 100%;
  height: auto;
  display: block;
}

.plan-schedule__note {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  line-height: 54px;
  color: #352304;
  text-align: center;
}

/* Plan Schedule Responsive */
@media (max-width: 1024px) {
  .plan-schedule__title {
    font-size: 48px;
    line-height: 70px;
  }

  .plan-schedule__desc,
  .plan-schedule__note {
    font-size: 20px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .plan-schedule {
    padding: 60px 0;
  }

  .plan-schedule__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .plan-schedule__desc,
  .plan-schedule__note {
    font-size: 16px;
    line-height: 32px;
  }

  .plan-schedule__chart {
    overflow-x: auto;
  }

  .plan-schedule__chart-img {
    min-width: 600px;
  }
}

/* =====================================================
   Food Course - 食事コース
   ===================================================== */
.food-course {
  padding: 200px 0;
  background: var(--color-bg-cream);
}

.food-course__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.food-course__header {
  text-align: center;
  margin-bottom: 200px;
}

.food-course__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #604d44;
  margin-bottom: 50px;
}

.food-course__subtitle {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  line-height: 54px;
  color: #352304;
}

.food-course__block {
  width: 100%;
  margin-bottom: 200px;
}

.food-course__block:last-child {
  margin-bottom: 0;
}

.food-course__block-header {
  margin-bottom: 60px;
  text-align: center;
}

.food-course__block-num {
  display: block;
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 32px;
  font-weight: 300;
  line-height: 64px;
  color: #604d44;
  text-align: center;
}

.food-course__block-title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #604d44;
  margin-top: -10px;
  text-align: center;
}

.food-course__block-content {
  display: flex;
  flex-direction: column;
  gap: 200px;
  margin-bottom: 100px;
}

.food-course__row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.food-course__row--reverse {
  flex-direction: row-reverse;
}

.food-course__text-col {
  width: 550px;
  flex-shrink: 0;
}

.food-course__img-col {
  width: 550px;
  flex-shrink: 0;
}

.food-course__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.food-course__img--short {
  height: 272px;
}

.food-course__text {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

.food-course__text-note {
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.9px;
  color: #352304;
  margin-top: 10px;
}

.food-course__sub-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 20px 2px 25px;
  margin-top: 25px;
  margin-bottom: 10px;
  border: 1px solid #000000;
}

.food-course__sub-bullet {
  width: 13px;
  height: 13px;
  background: #604d44;
  flex-shrink: 0;
}

.food-course__sub-label {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

.food-course__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 413px;
  height: 73px;
  margin: 0 auto;
  padding: 18px 64px;
  background: #352304;
  text-decoration: none;
  transition: opacity 0.3s;
  box-sizing: border-box;
}

.food-course__link:hover {
  opacity: 0.9;
}

.food-course__link-icon {
  flex-shrink: 0;
}

.food-course__link-text {
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
  white-space: nowrap;
}

/* Food Course Outro */
.food-course-outro {
  padding: 180px 0;
  background: var(--color-bg-cream);
}

.food-course-outro__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.food-course-outro__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #604d44;
  margin-bottom: 50px;
}

.food-course-outro__subtitle {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 54px;
  color: #352304;
}

/* Food Course Responsive */
@media (max-width: 1024px) {
  .food-course {
    padding: 120px 0;
  }

  .food-course__header {
    margin-bottom: 120px;
  }

  .food-course__title,
  .food-course__block-title,
  .food-course-outro__title {
    font-size: 48px;
    line-height: 70px;
  }

  .food-course__block-content {
    gap: 120px;
  }
}

@media (max-width: 768px) {
  .food-course {
    padding: 60px 0;
  }

  .food-course__header {
    margin-bottom: 60px;
    align-items: flex-start;
    width: 100%;
  }

  .food-course__title {
    font-size: 36px !important;
    line-height: 55px !important;
    text-align: left;
  }

  .food-course__block-title {
    font-size: 32px;
    line-height: 48px;
  }

  .food-course-outro__title {
    font-size: 36px !important;
    line-height: 55px !important;
    text-align: left;
  }

  .food-course__subtitle {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 35px !important;
    text-align: left;
  }

  .food-course-outro__subtitle {
    font-size: 18px;
    line-height: 36px;
    text-align: left;
  }

  .food-course__inner {
    padding: 0 20px;
    align-items: flex-start;
  }

  .food-course__block-header {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .food-course__block-num {
    font-size: 26px;
    line-height: 52px;
    text-align: center;
  }

  .food-course__block-title {
    font-size: 36px !important;
    line-height: 55px !important;
    text-align: center;
  }

  .food-course__row,
  .food-course__row--reverse {
    flex-direction: column;
    gap: 10px;
  }

  .food-course__text-col {
    width: 100%;
    flex-shrink: 1;
    order: 2;
  }

  .food-course__img-col {
    width: 100%;
    order: 1;
  }

  .food-course__img {
    height: auto;
  }

  .food-course__img--short {
    height: auto;
  }

  .food-course__block-content {
    gap: 50px;
    margin-bottom: 40px;
  }

  .food-course__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
  }

  .food-course__text-note {
    font-size: 14px;
    line-height: 36px;
  }

  .food-course__link {
    width: 100%;
    max-width: 310px;
    height: 60px;
    padding: 0 20px;
  }

  .food-course__link-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 44px;
  }

  .food-course-outro {
    padding: 60px 0;
  }
}

/* =====================================================
   Facilities Overview - やすらぎの里の３つの施設
   ===================================================== */
.facilities-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(48px, 5.56vw, 80px);
  padding-bottom: clamp(64px, 8.33vw, 120px);
  padding-left: max(20px, calc(50vw - 590px));
  padding-right: max(20px, calc(50vw - 590px));
  background: var(--color-bg-cream);
}

.facilities-overview .section__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: clamp(50px, 6.53vw, 94px);
  color: #352304;
  letter-spacing: 0;
}

.facilities-overview .section__subtitle {
  font-family: var(--font-gothic);
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 500;
  line-height: clamp(24px, 3.06vw, 44px);
  letter-spacing: -1.2px;
  color: #352304;
}

.facilities-overview .section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(8px, 1.11vw, 16px);
  margin-bottom: clamp(32px, 4.44vw, 64px);
}

.facilities-overview__price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 10px;
  width: 400px;
  height: 73px;
  padding: 18px 64px;
  background-color: #352304;
  color: #fff;
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.facilities-overview__price-btn:hover {
  opacity: 0.7;
}

.facilities-overview__price-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.facility-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.08vw, 30px);
  width: 100%;
  max-width: 1180px;
  margin-bottom: 80px;
}

.facility-card {
  width: 100%;
  background: var(--color-bg-cream);
  text-align: center;
}

.facility-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 360 / 357;
  overflow: hidden;
  margin-bottom: clamp(12px, 1.67vw, 24px);
}

.facility-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-italiana);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.facility-card__content {
  padding: 0 16px;
}

.facility-card__title {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  color: #352304;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-align: center;
}

.facility-card__description {
  font-family: var(--font-gothic);
  font-size: 20px;
  line-height: 36px;
  color: #352304;
  text-align: left;
}

/* =====================================================
   Link Cards - プログラム一覧・1日の流れ
   ===================================================== */
.link-cards {
  background: #ffffff;
  padding-top: 120px;
}

.link-cards__grid {
  display: flex;
  gap: 20px;
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
}

.link-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 20px;
}

.link-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 580 / 419;
  overflow: hidden;
}

.link-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.link-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  transition: background 0.4s ease;
}

.link-card:hover .link-card__bg {
  transform: scale(1.05);
}

.link-card:hover .link-card__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.link-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.link-card__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 40px;
  font-weight: 300;
  line-height: 80px;
  color: white;
  white-space: nowrap;
  text-align: center;
}

.link-card__underline {
  width: 200px;
  height: 0;
  border-top: 1px dashed white;
}

.link-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  color: white;
  white-space: nowrap;
  margin-top: 5px;
}

.link-card__desc {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #352304;
  text-align: center;
}

@media (max-width: 768px) {
  .link-cards {
    padding-top: 60px;
  }

  .link-cards__grid {
    flex-direction: column;
    width: 350px;
    margin: 0 auto;
    gap: 40px;
  }

  .link-card__image-wrap {
    aspect-ratio: 350 / 253;
    height: auto;
  }

  .link-card__title {
    font-size: 28px;
    line-height: 64px;
  }

  .link-card__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
  }
}

/* =====================================================
   CTA New - 予約・資料ダウンロード
   ===================================================== */
.cta-new {
  background: #FFFFFF;
  padding: 61px 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.cta-new__buttons {
  display: flex;
  gap: 60px;
}

.cta-new__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 470px;
  height: 120px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-new__btn:hover {
  opacity: 0.9;
}

.cta-new__btn--web {
  background: #d67c3d;
}

.cta-new__btn--phone {
  background: #4a9255;
}

.cta-new__btn-icon {
  width: 26px;
  height: 26px;
}

.cta-new__btn-icon--phone {
  width: 34px;
  height: 26px;
}

.cta-new__download {
  width: calc(470px + 60px + 470px);
  background: #352304;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 64px;
  height: 148px;
}

.cta-new__download-label {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: white;
  text-align: center;
  margin-bottom: 0;
}

.cta-new__download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-new__download-link:hover {
  opacity: 0.8;
}

.cta-new__download-icon {
  width: 21px;
  height: 26px;
}

@media (max-width: 768px) {
  .section.cta-new {
    padding: 50px 0 !important;
    margin: 0 !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .cta-new__buttons {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cta-new__btn {
    width: 100% !important;
    max-width: none !important;
    height: 120px !important;
    font-size: 24px;
    line-height: 54px;
    box-sizing: border-box;
  }

  .cta-new__download {
    width: 100% !important;
    max-width: none !important;
    height: 148px !important;
    padding: 18px 30px;
    box-sizing: border-box;
  }

  .cta-new__download-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
  }

  .cta-new__download-link {
    font-size: 24px !important;
    line-height: 54px;
    white-space: nowrap;
  }
}

/* Plan Block Responsive */
@media (max-width: 1024px) {
  .plan-block__section-title {
    font-size: 48px;
    line-height: 70px;
  }

  .plan-block__section-sub {
    font-size: 28px;
    line-height: 42px;
  }

  .plan-block__hero-title {
    font-size: 32px;
  }

  .plan-block__heading {
    font-size: 32px;
    line-height: 48px;
  }

  .plan-block__desc {
    font-size: 20px;
    line-height: 36px;
  }

  .plan-block__cta {
    width: 100%;
    max-width: 700px;
  }

  .plan-block__cta-text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .plan-block {
    padding: 60px 0;
  }

  .plan-block__inner {
    gap: 60px;
  }

  .plan-block__section-title {
    font-size: 32px;
    line-height: 48px;
  }

  .plan-block__section-sub {
    font-size: 20px;
    line-height: 32px;
  }

  .plan-block__hero {
    width: calc(100% - 40px);
    max-width: none;
    margin: 0 auto;
  }

  .plan-block__hero-title {
    font-size: 24px;
  }

  .plan-block__heading {
    font-size: 24px;
    line-height: 36px;
  }

  .plan-block__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    text-align: left;
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .plan-block__cta {
    width: calc(100% - 40px);
    height: 60px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .plan-block__cta-text {
    font-size: 16px;
    line-height: 30px;
    white-space: nowrap;
  }

  /* facilities-overview モバイル */
  .facilities-overview {
    padding: 80px 0 60px;
    align-items: center;
  }

  .facilities-overview .section__header {
    width: 310px;
    align-items: center;
  }

  .facilities-overview .section__title {
    font-size: 36px !important;
    font-weight: 300 !important;
    line-height: 55px !important;
    text-align: center;
  }

  .facilities-overview .section__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    text-align: center;
  }

  .facilities-overview__price-btn {
    width: calc(100% - 80px);
    max-width: 310px;
    height: 60px;
    padding: 0 20px;
    font-size: 18px;
  }

  .facility-cards {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 310px;
    margin: 0 auto;
  }

  .facility-card + .facility-card {
    border-top: 0.5px solid #4B4B4B;
    padding-top: 40px;
  }

  .facility-card {
    padding-bottom: 40px;
  }

  .facility-card__image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .facility-card__title {
    font-size: 28px;
    font-weight: 600;
  }

  .facility-card__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
  }
}

/* =====================================================
   Plans List Section (Old - kept for reference)
   ===================================================== */
.plans-list {
  padding: 64px 0 80px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* =====================================================
   Plan Card
   ===================================================== */
.plan-card {
  position: relative;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.plan-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plan-card--special {
  border: 2px solid var(--color-primary);
}

.plan-card__badge {
  position: absolute;
  top: -1px;
  left: 16px;
  padding: 4px 12px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.plan-card__badge--special {
  background: #c49a6c;
}

.plan-card__header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.plan-card__title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.plan-card__facility {
  font-size: 12px;
  color: var(--color-text-light);
}

.plan-card__body {
  padding: 16px 20px;
  flex: 1;
}

.plan-card__description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.plan-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.plan-card__feature {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-tag-bg);
  font-size: 11px;
  color: var(--color-text-dark);
}

.plan-card__footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-card__price {
  display: flex;
  flex-direction: column;
}

.plan-card__price-label {
  font-size: 10px;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.plan-card__price-value {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
}

.plan-card__price-unit {
  font-size: 12px;
}

.plan-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--color-white);
  color: var(--color-text-dark);
  font-size: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.plan-card__btn:hover {
  background: var(--color-bg-cream);
  border-color: var(--color-text-dark);
}

/* =====================================================
   Facility Plans Section
   ===================================================== */
.facility-plans {
  padding: 64px 0 80px;
  background: var(--color-white);
}

.facility-plan-tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.facility-plan-table {
  background: var(--color-bg-cream);
}

.facility-plan-table__header {
  padding: 20px;
  background: var(--color-tag-bg);
  text-align: center;
}

.facility-plan-table__title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.facility-plan-table__subtitle {
  font-size: 11px;
  color: var(--color-text-body);
}

.facility-plan-table__list {
  padding: 16px 20px;
}

.facility-plan-table__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.facility-plan-table__item:last-child {
  border-bottom: none;
}

.facility-plan-table__name {
  font-size: 12px;
  color: var(--color-text-dark);
}

.facility-plan-table__price {
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--color-text-dark);
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
  padding: 64px 0;
}

.cta__content {
  text-align: center;
}

.cta__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.cta__description {
  font-size: 13px;
  color: var(--color-text-body);
  margin-bottom: 28px;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 32px;
  font-family: var(--font-mincho);
  font-size: 14px;
  text-align: center;
  transition: all 0.3s;
  letter-spacing: 0.06em;
}

.cta__btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.cta__btn--primary:hover {
  background: var(--color-primary-dark);
}

.cta__btn--secondary {
  background: var(--color-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
}

.cta__btn--secondary:hover {
  background: var(--color-bg-beige);
}

.cta__phone {
  font-size: 12px;
  color: var(--color-text-light);
}

/* 左側エリア */

/* 電話番号 */

/* SNSアイコン */

/* X (黒) */

/* Facebook (青) */

/* Instagram (グラデーション画像) */

/* YouTube (赤) */

/* お問い合わせボタン */

/* 右側ナビゲーション */

/* コピーライト */

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-plan-tables {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
    margin-top: 56px;
  }

  .hero__overlay {
    width: 100%;
  }

  .hero__title-area--center {
    left: 24px;
  }

  .hero__title {
    font-size: 32px;
    letter-spacing: 3px;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 20px;
  }

  /* totonoe モバイル */
  .totonoe {
    padding: 80px 40px 40px;
  }

  .totonoe__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 55px;
    text-align: left;
    margin-bottom: 15px;
    white-space: nowrap;
  }

  .totonoe__subtitle--pc {
    display: none;
  }

  .totonoe__subtitle--sp {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    text-align: left;
    margin-bottom: 40px;
  }

  .totonoe__gallery-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .totonoe__gallery {
    gap: 12px;
    animation-duration: 20s;
  }

  .totonoe__image-wrap {
    width: 280px;
    height: 180px;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .plan-card__title {
    font-size: 16px;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta__btn {
    width: 100%;
    max-width: 240px;
  }
}
