/* =====================================================
   Yasuragi no Sato - Schedule (1日の流れ) Page
   Based on Figma Design: やすらぎの里関連
   ===================================================== */

html, body {
  overflow-x: clip;
}

.sp-only { display: none !important; }
.pc-only { display: block !important; }

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
  --color-primary: #4a9255;
  --color-primary-dark: #3d7a47;
  --color-bg-cream: #fffbf1;  /* Figma準拠に変更 */
  --color-btn-orange: #d67c3d;
  --color-btn-orange-hover: #c26a2d;
  --color-bg-light: #fffcf8;
  --color-bg-beige: #faf4ec;
  --color-tag-bg: #e8c8a9;
  --color-tag-border: #d4b494;
  --color-text-dark: #352304;
  --color-text-body: #5a5a5a;
  --color-text-light: #666666;
  --color-border: #d4c4b0;
  --color-border-light: #e0d5c8;
  --color-white: #ffffff;
  --color-overlay: rgba(53, 35, 4, 0.4);
  --font-mincho: 'Shippori Mincho B1', 'YuMincho', 'Yu Mincho', serif;
  --font-gothic: 'YuGothic', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-italiana: 'Italiana', serif;
  --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;
}

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;
}

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: ロゴ 185x36px */

/* Figma準拠: HOVERの時 色が薄くなる */

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

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

/* =====================================================
   Hero Section
   Figma準拠: 他ページと同じヒーローセクションパターン
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  margin-top: clamp(60px, 5.56vw, 80px);
  overflow: hidden;
}

.hero--schedule {
  height: 720px;
}

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

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

/* Figma: 左からのグラデーションオーバーレイ 626x720px */
.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;
}

/* Figma: Italiana 18px, letter-spacing 0.9px */
.hero__subtitle {
  font-family: 'Italiana', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 21.6px;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 8px;
}

/* Figma: FOT-TsukuAntiqueLMin 64px, font-weight 600, letter-spacing 6.4px, color #FFFBF1 */
.hero__title {
  font-family: 'FOT-TsukuAntiqueLMin', 'TsukuAntiqueLStd-L', var(--font-mincho);
  font-size: 64px;
  font-weight: 600;
  color: #fffbf1;
  letter-spacing: 6.4px;
  line-height: 70px;
}

/* =====================================================
   Section Base
   ===================================================== */
.section__header {
  text-align: center;
  margin-bottom: 48px;
}

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

.section__subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

/* =====================================================
   Weekly Overview Section
   ===================================================== */
.weekly-overview {
  padding: 80px 0;
  background: var(--color-white);
}

.weekly-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 120px;
}

.weekly-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.weekly-timeline__item {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
}

.weekly-timeline__item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 26px;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
}

.weekly-timeline__time {
  position: absolute;
  left: -120px;
  width: 90px;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--color-text-dark);
  text-align: right;
  padding-right: 24px;
}

.weekly-timeline__content {
  padding-left: 20px;
}

.weekly-timeline__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.weekly-timeline__desc {
  font-size: 13px;
  color: var(--color-text-light);
}

.weekly-overview__link {
  text-align: center;
  margin-top: 40px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-primary);
}

.link-arrow::after {
  content: '→';
}

.link-arrow:hover {
  opacity: 0.7;
}

/* =====================================================
   Daily Life Section (やすらぎの里での１日) - Figma準拠
   ===================================================== */
/* =====================================================
   Schedule Intro Section
   ===================================================== */
.schedule-intro {
  padding: 120px 0;
  background: var(--color-bg-cream);
}

.schedule-intro__inner {
  max-width: 1185px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.schedule-intro__text {
  max-width: 900px;
}

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

.schedule-intro__desc {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #352304;
}

.schedule-intro__image {
  position: absolute;
  right: 40px;
  top: 142px;
  width: 539px;
}

.schedule-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .schedule-intro__title {
    font-size: 42px;
    line-height: 64px;
  }

  .schedule-intro__image {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .schedule-intro {
    padding: 80px 40px 30px;
  }

  .schedule-intro__inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .schedule-intro__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 55px;
  }

  .schedule-intro__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
  }

  .schedule-intro__image {
    width: 310px;
    height: 217px;
    overflow: hidden;
  }

  .schedule-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.daily-life {
  padding: 144px 0 68px;
  background: var(--color-bg-cream);
}

.daily-life__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 576px auto;
  grid-template-rows: auto auto;
  gap: 20px;
}

.daily-life__header {
  grid-column: 1;
  grid-row: 1;
}

.daily-life__title {
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1.4;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.daily-life__subtitle {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 44px;
  letter-spacing: -1.2px;
}

.daily-life__gallery {
  display: contents;
}

.daily-life__left {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 16px;
}

.daily-life__image {
  overflow: hidden;
}

.daily-life__image--small {
  width: 280px;
  height: 200px;
}

.daily-life__image--large {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 500px;
  height: 360px;
  align-self: center;
}

.daily-life__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.daily-life__image:hover img {
  transform: scale(1.05);
}

/* =====================================================
   本館での１日 Section - Figma準拠
   ===================================================== */
.honkan-day {
  padding: 200px 130px 100px;
  background: #fffbf1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.honkan-day__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.honkan-day__deco {
  width: 441px;
  height: 121px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
}

.honkan-day__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  position: relative;
  z-index: 1;
}

.honkan-day__scroll-area {
  height: calc(100vh * 9);
  width: 100%;
}

.honkan-day__sticky {
  position: sticky;
  top: 100px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.honkan-day__line {
  width: 338px;
  height: 1px;
  background: #352304;
  margin: 0 auto;
}

.honkan-day__row {
  display: flex;
  gap: 70px;
  align-items: center;
}

.honkan-day__image-wrap {
  width: 600px;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.honkan-day__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.honkan-day__img--active {
  opacity: 1;
}

.honkan-day__text-wrap {
  flex: 1;
  position: relative;
  min-height: 212px;
}

.honkan-day__text-item {
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.honkan-day__text-item--active {
  opacity: 1;
}

.honkan-day__time-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  white-space: nowrap;
}

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

.honkan-day__name {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #604d44;
}

.honkan-day__desc {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #604d44;
}

.honkan-day__note {
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: #604d44;
}


.honkan-day__dots {
  display: none;
}

.honkan-day__nav {
  display: none;
}

/* =====================================================
   ととのえる旅 Section
   ===================================================== */
.totonoe-tabi {
  padding: 100px 130px;
  background: #fffbf1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.totonoe-tabi__illustration {
  width: 1080px;
  max-width: 100%;
  height: auto;
}

.totonoe-tabi__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 952px;
  max-width: 100%;
}

.totonoe-tabi__timeline {
  width: 948px;
  max-width: 100%;
  height: auto;
}

.totonoe-tabi__bottom-sp {
  display: none;
}

.totonoe-tabi__text {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
  padding: 0 24px;
  border-bottom: 2px solid #ebc165;
}

/* =====================================================
   3館の各プラン Section
   ===================================================== */
.plan-cards-section {
  padding: 150px 145px;
  background: url('../images/plan-cards-bg.webp') center / cover no-repeat;
}

.plan-cards-section__grid {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
}

.plan-cards-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 350px;
}

.plan-cards-section__img-wrap {
  position: relative;
  width: 350px;
  height: 350px;
}

.plan-cards-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-cards-section__img-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-italiana);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.plan-cards-section__info {
  text-align: center;
}

.plan-cards-section__title {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: #352304;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #352304;
}

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

@media (max-width: 1024px) {
  .honkan-day {
    padding: 80px 40px;
  }

  .honkan-day__title,
  .honkan-day__time {
    font-size: 48px;
    line-height: 70px;
  }

  .honkan-day__row {
    flex-direction: column;
  }

  .honkan-day__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 400;
  }

  .honkan-day__text {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .honkan-day {
    padding: 50px 0;
    gap: 30px;
  }

  .honkan-day__header {
    padding: 0 40px;
  }

  .honkan-day__deco {
    width: 225px;
    height: auto;
  }

  .honkan-day__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 55px;
    letter-spacing: 1.08px;
  }

  .honkan-day__scroll-area {
    height: auto;
  }

  .honkan-day__sticky {
    position: relative;
    top: auto;
    gap: 30px;
  }

  .honkan-day__line {
    width: 200px;
  }

  .honkan-day__row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  .honkan-day__nav {
    display: flex;
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    position: absolute;
    top: 103px;
    z-index: 2;
  }

  .honkan-day__nav--prev {
    left: 0;
  }

  .honkan-day__nav--next {
    right: 0;
  }

  .honkan-day__nav svg {
    width: 35px;
    height: 35px;
  }

  .honkan-day__image-wrap {
    width: 310px;
    height: 207px;
    flex-shrink: 0;
  }

  .honkan-day__text-wrap {
    width: 300px;
    min-height: 200px;
    padding: 0 5px;
  }

  .honkan-day__text-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .honkan-day__time-row {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    white-space: normal;
  }

  .honkan-day__time {
    font-size: 40px;
    font-weight: 300;
    line-height: 70px;
    flex-shrink: 0;
  }

  .honkan-day__name {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
  }

  .honkan-day__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
  }

  .honkan-day__note {
    font-size: 14px;
    line-height: 28px;
  }

  /* ページネーションドット */
  .honkan-day__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .honkan-day__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F2E8DF;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .honkan-day__dot--active {
    background: #D67C3D;
  }

  /* ととのえる旅 SP */
  .totonoe-tabi {
    padding: 50px 0;
    gap: 30px;
    overflow: visible;
  }

  .totonoe-tabi__illustration {
    width: 520px;
    max-width: none;
  }

.totonoe-tabi__bottom {
    gap: 30px;
    width: 100%;
    align-items: center;
  }

  .totonoe-tabi__timeline-sp {
    width: 72px;
    height: auto;
  }

  .totonoe-tabi__text {
    font-size: 27px;
    font-weight: 300;
    line-height: 94px;
    padding: 0;
  }

  /* ３館の各プラン SP */
  .plan-cards-section {
    padding: 50px 40px;
    background: #f6f2e8;
  }

  .plan-cards-section__grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .plan-cards-section__card {
    width: 310px;
    gap: 0;
  }

  .plan-cards-section__img-wrap {
    width: 310px;
    height: 310px;
  }

  .plan-cards-section__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 1.4px;
    padding-bottom: 0;
  }

  .plan-cards-section__link {
    font-size: 18px;
    line-height: 36px;
  }
}

/* =====================================================
   Daily Schedule Detail Section (本館での１日) - Old
   ===================================================== */
.daily-schedule-new {
  padding: 100px 0;
  background: var(--color-bg-cream);
}

.daily-schedule-new__icon {
  display: block;
  margin: 0 auto -75px;
  width: auto;
  height: 120px;
  position: relative;
  z-index: 1;
  transform: translateX(-30px);
}

.daily-schedule-new__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 94px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.daily-schedule-new__content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 70px;
}

.daily-schedule-new__images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.daily-schedule-new__image {
  width: 450px;
  height: 250px;
  overflow: hidden;
}

.daily-schedule-new__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-schedule-new__timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 560px;
  flex-shrink: 0;
}

.schedule-item-new {
  padding-bottom: 30px;
  border-bottom: 1px solid #d4c4b0;
}

.schedule-item-new:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-item-new__header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.schedule-item-new__time {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #604d44;
  line-height: 94px;
}

.schedule-item-new__name {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  color: #604d44;
  line-height: 30px;
}

.schedule-item-new__desc {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  color: #604d44;
  line-height: 36px;
}

/* Old Daily Schedule (kept for backwards compatibility) */
.daily-schedule {
  padding: 80px 0;
}

.daily-schedule__content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.daily-schedule__timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.schedule-block {
  border-left: 3px solid var(--color-primary);
  padding-left: 24px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item__time {
  flex-shrink: 0;
  width: 60px;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
}

.schedule-item__content {
  flex: 1;
}

.schedule-item__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.schedule-item__desc {
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.8;
}

.daily-schedule__images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daily-schedule__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-beige);
}

.daily-schedule__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   Meal Course Section
   ===================================================== */
.meal-course {
  padding: 80px 0;
  background: var(--color-white);
}

.meal-course__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.meal-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.meal-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-beige);
}

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

.meal-card__content {
  padding: 24px;
}

.meal-card__title {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.meal-card__subtitle {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.meal-card__desc {
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.9;
  margin-bottom: 12px;
}

.meal-card__note {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.meal-card__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meal-option {
  padding: 12px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.meal-option__title {
  display: block;
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.meal-option__desc {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
}

/* =====================================================
   Meal Course Section New - Figma準拠
   ===================================================== */
.meal-course-new__header {
  background-color: #fffbf1;
  padding: 100px 20px 50px;
  text-align: center;
}

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

.meal-course-new__subtitle {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

.meal-course-new__content {
  position: relative;
  padding: 50px 20px 100px;
  overflow: hidden;
}

.meal-course-new__bg {
  position: absolute;
  inset: 0;
}

.meal-course-new__bg-color {
  position: absolute;
  inset: 0;
  background-color: #4a9255;
}

.meal-course-new__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.2;
}

.meal-course-new__item {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto 80px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.meal-course-new__item:last-child {
  margin-bottom: 0;
}

.meal-course-new__item--reverse {
  flex-direction: row-reverse;
}

.meal-course-new__image {
  flex-shrink: 0;
  width: 590px;
}

.meal-course-new__image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.meal-course-new__image--align-title {
  margin-top: 104px;
}

/* Slider */
.meal-course-new__slider {
  flex-shrink: 0;
  width: 590px;
  position: relative;
}

.meal-course-new__slider-track {
  position: relative;
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.meal-course-new__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.meal-course-new__slide--active {
  opacity: 1;
}

.meal-course-new__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meal-course-new__slider--align-title {
  margin-top: 104px;
}

.meal-course-new__dots {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.meal-course-new__dots--right {
  justify-content: flex-end;
}

.meal-course-new__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.meal-course-new__dots--orange .meal-course-new__dot {
  background-color: #F6F3E9;
}

.meal-course-new__dots--orange .meal-course-new__dot--active {
  background-color: #EBC165;
}

.meal-course-new__dots--white .meal-course-new__dot {
  background-color: rgba(255, 251, 241, 0.5);
}

.meal-course-new__dots--white .meal-course-new__dot--active {
  background-color: #fffbf1;
}

.meal-course-new__text {
  flex: 1;
  color: #fff;
}

.meal-course-new__course-title {
  font-family: 'Zen Old Mincho', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #fff;
}

.meal-course-new__desc {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.meal-course-new__sub-title {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 52px;
  color: #fff;
  margin-top: 30px;
}

.meal-course-new__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.meal-course-new__option {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 15px 20px;
}

.meal-course-new__option-title {
  display: block;
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #fff;
}

.meal-course-new__option-desc {
  display: block;
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
}

.meal-course-new__note {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
}

/* Meal Course New Responsive - Tablet */
@media (max-width: 1024px) {
  .meal-course-new__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .meal-course-new__item {
    flex-direction: column;
    gap: 30px;
  }

  .meal-course-new__item--reverse {
    flex-direction: column;
  }

  .meal-course-new__image {
    width: 100%;
    max-width: 590px;
  }

  .meal-course-new__course-title {
    font-size: 48px;
    line-height: 1.4;
  }
}

/* Meal Course New Responsive - Mobile */
@media (max-width: 768px) {
  .meal-course-new__header {
    padding: 60px 20px 30px;
  }

  .meal-course-new__title {
    font-size: 32px;
    line-height: 1.4;
  }

  .meal-course-new__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .meal-course-new__content {
    padding: 40px 20px 60px;
  }

  .meal-course-new__item {
    margin-bottom: 60px;
  }

  .meal-course-new__image img {
    height: 280px;
  }

  .meal-course-new__course-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .meal-course-new__desc {
    font-size: 16px;
    line-height: 1.8;
  }

  .meal-course-new__sub-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .meal-course-new__option-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .meal-course-new__option-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .meal-course-new__note {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =====================================================
   Experience Program Section
   ===================================================== */
.experience-program {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  min-height: 458px;
}

.experience-program__bg {
  position: absolute;
  inset: 0;
}

.experience-program__bg-color {
  position: absolute;
  inset: 0;
  background-color: #4a9255;
}

.experience-program__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.2;
}

.experience-program__deco {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 1;
}

.experience-program__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: calc((100% - 1180px) / 2 + 20px);
}

.experience-program__content {
  color: #fff;
}

.experience-program__title {
  font-family: 'Zen Old Mincho', var(--font-mincho);
  font-size: clamp(48px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 30px;
}

.experience-program__link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 10px 15px 10px 30px;
  background: #fff;
  border: 1px solid #4a9255;
  color: #4a9255;
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.9px;
  text-decoration: none;
  transition: all 0.3s;
}

.experience-program__link:hover {
  background: #f0f8f0;
}

.experience-program__link-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4a9255;
}

.experience-program__images {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.experience-program__image {
  overflow: hidden;
}

.experience-program__image--first {
  width: 402px;
  height: 280px;
}

.experience-program__image--second {
  width: 402px;
  height: 280px;
}

.experience-program__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   Related Plans Section
   ===================================================== */
.related-plans {
  padding: 80px 0;
}

.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.plan-card {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s;
}

.plan-card:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
}

.plan-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  color: var(--color-primary);
}

.plan-card__icon svg {
  width: 100%;
  height: 100%;
}

.plan-card__title {
  flex: 1;
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--color-text-dark);
}

.plan-card__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.plan-card__arrow svg {
  width: 100%;
  height: 100%;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
  padding: 60px 0;
  background: var(--color-white);
}

.cta__content {
  text-align: center;
}

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

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 14px 32px;
  font-family: var(--font-mincho);
  font-size: 14px;
  transition: all 0.3s;
}

.cta__btn svg {
  width: 20px;
  height: 20px;
}

.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-cream);
}

.cta__download {
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.cta__download p {
  font-size: 12px;
  color: var(--color-text-body);
  margin-bottom: 8px;
}

.cta__download-link {
  color: var(--color-primary);
  font-size: 13px;
  text-decoration: underline;
}

.cta__download-link:hover {
  text-decoration: none;
}

/* 左側エリア */

/* 電話番号 */

/* SNSアイコン */

/* X (黒) */

/* Facebook (青) */

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

/* YouTube (赤) */

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

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

/* コピーライト */

/* =====================================================
   Responsive - Tablet
   ===================================================== */
@media (max-width: 1024px) {
  .daily-schedule__content {
    grid-template-columns: 1fr;
  }

  .daily-schedule__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .experience-program__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .experience-program__title {
    font-size: 36px;
    line-height: 1.5;
  }

  .meal-course__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* =====================================================
   Responsive - Mobile
   ===================================================== */
@media (max-width: 768px) {
  .sp-only { display: inline !important; }
  .pc-only { display: none !important; }
  img.sp-only { display: block !important; }

  .hero {
    height: 570px;
    margin-top: 56px;
  }

  .hero--schedule {
    height: 570px;
  }

  .hero__overlay {
    width: 256px;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.00) 0%, rgba(176, 167, 157, 0.80) 32.9%, rgba(100, 81, 63, 1.0) 64.8%);
  }

  .hero__title-area--center {
    left: 41px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

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

  .hero__subtitle {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 19.2px;
  }

  .section__title {
    font-size: 22px;
  }

  .weekly-overview,
  .daily-life,
  .daily-schedule,
  .meal-course,
  .related-plans {
    padding: 60px 0;
  }

  .weekly-timeline {
    padding-left: 80px;
  }

  .weekly-timeline::before {
    left: 60px;
  }

  .weekly-timeline__time {
    left: -80px;
    width: 55px;
    font-size: 12px;
  }

  .weekly-timeline__item::before {
    left: -24px;
  }

  .daily-life {
    padding: 60px 0;
  }

  .daily-life__inner {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .daily-life__title {
    font-size: 32px;
    line-height: 1.4;
  }

  .daily-life__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .daily-life__header {
    margin-bottom: 24px;
  }

  .daily-life__gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .daily-life__left {
    flex-direction: column;
    width: 100%;
  }

  .daily-life__image--small,
  .daily-life__image--large {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .schedule-item {
    flex-direction: column;
    gap: 8px;
  }

  .schedule-item__time {
    width: auto;
  }

  .daily-schedule__images {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Daily Schedule New - Mobile */
  .daily-schedule-new {
    padding: 60px 0;
  }

  .daily-schedule-new__title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .daily-schedule-new__content {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .daily-schedule-new__images {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    position: static;
    align-self: auto;
  }

  .daily-schedule-new__image {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
  }

  .schedule-item-new__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .schedule-item-new__time {
    font-size: 36px;
    line-height: 1.2;
  }

  .schedule-item-new__name {
    font-size: 18px;
  }

  .schedule-item-new__desc {
    font-size: 14px;
    line-height: 1.8;
  }

  .experience-program {
    padding: 60px 0;
    min-height: auto;
  }

  .experience-program__deco {
    display: none;
  }

  .experience-program__title {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .experience-program__link {
    font-size: 16px;
    padding: 8px 12px 8px 20px;
    gap: 20px;
  }

  .experience-program__images {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .experience-program__image {
    width: 100%;
    height: auto;
  }

  .experience-program__image--first,
  .experience-program__image--second {
    width: 100%;
    height: 200px;
  }

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

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

/* =====================================================
   Responsive - Small Mobile
   ===================================================== */
@media (max-width: 480px) {

  .weekly-timeline {
    padding-left: 70px;
  }

  .weekly-timeline::before {
    left: 50px;
  }

  .weekly-timeline__time {
    left: -70px;
    width: 45px;
    font-size: 11px;
  }
}

/* =====================================================
   Daily Schedule Section (1週間プランの過ごし方) - 高原館と同じ
   ===================================================== */
.daily-schedule {
  padding: 120px 0 100px;
  background-color: #fffbf1;
}

.daily-schedule__title {
  font-family: 'Zen Old Mincho', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
  margin: 0 0 80px;
}

.daily-schedule__content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 47px;
  padding: 0 20px;
}

.daily-schedule__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.daily-schedule__item {
  display: flex;
  align-items: center;
  height: 73px;
  padding: 18px 100px;
  background-color: #f6f3e9;
}

.daily-schedule__time {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #604d44;
  min-width: 100px;
}

.daily-schedule__divider {
  width: 1px;
  height: 20px;
  background-color: #604d44;
  margin: 0 30px;
}

.daily-schedule__activity {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #604d44;
}

.daily-schedule__link-wrap {
  display: flex;
  justify-content: flex-end;
}

.daily-schedule__link {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #352304;
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid #352304;
  transition: opacity 0.3s;
}

.daily-schedule__link:hover {
  opacity: 0.7;
}

/* Daily Schedule Responsive */
@media (max-width: 768px) {
  .daily-schedule {
    padding: 60px 0;
  }

  .daily-schedule__title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 40px;
  }

  .daily-schedule__content {
    gap: 30px;
  }

  .daily-schedule__item {
    height: auto;
    padding: 12px 20px;
  }

  .daily-schedule__time {
    font-size: 16px;
    min-width: 70px;
  }

  .daily-schedule__divider {
    margin: 0 16px;
  }

  .daily-schedule__activity {
    font-size: 16px;
    line-height: 1.6;
  }

  .daily-schedule__link {
    font-size: 16px;
  }
}

/* =====================================================
   Related Plans Section (対応プラン) - Figma準拠
   ===================================================== */
.related-plans-new {
  padding: 100px 0;
  background: var(--color-bg-cream);
}

.related-plans-new__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.related-plans-new__line {
  display: block;
  width: 177px;
  height: 1px;
  background-color: #352304;
  margin-bottom: 80px;
}

.related-plans-new__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 94px;
}

.related-plans-new__grid {
  max-width: 946px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.related-plans-new__row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.related-plans-new__row--center {
  justify-content: center;
}

.plan-card-new {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 453px;
  height: 77px;
  padding: 0 36px;
  background: #f3e4c0;
  box-shadow: 2px 2px 0px 0px rgba(96, 77, 68, 0.2);
  transition: opacity 0.3s, transform 0.3s;
}

.plan-card-new:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.plan-card-new--wide {
  width: 578px;
}

.plan-card-new__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.plan-card-new__icon svg {
  width: 100%;
  height: 100%;
}

.plan-card-new__title {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 44px;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

/* Related Plans Responsive */
@media (max-width: 1024px) {
  .related-plans-new__row {
    flex-direction: column;
    align-items: center;
  }

  .plan-card-new,
  .plan-card-new--wide {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .related-plans-new {
    padding: 60px 0;
  }

  .related-plans-new__header {
    margin-bottom: 40px;
  }

  .related-plans-new__line {
    width: 100px;
    margin-bottom: 16px;
  }

  .related-plans-new__title {
    font-size: 32px;
    line-height: 1.4;
  }

  .related-plans-new__grid {
    gap: 20px;
  }

  .related-plans-new__row {
    gap: 20px;
  }

  .plan-card-new {
    height: auto;
    padding: 20px 24px;
  }

  .plan-card-new__title {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: normal;
  }
}

/* =====================================================
   CTA New Section
   ===================================================== */
.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: 26px;
  height: 26px;
}

/* CTA New Responsive */
@media (max-width: 1200px) {
  .cta-new {
    padding: 61px 100px;
  }
}

@media (max-width: 1024px) {
  .cta-new {
    padding: 50px 40px;
    gap: 30px;
  }

  .cta-new__buttons {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .cta-new__btn {
    width: 100%;
    max-width: 400px;
    height: 80px;
    font-size: 22px;
  }

  .cta-new__download {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 20px;
  }

  .cta-new__download-label {
    font-size: 18px;
    line-height: 1.5;
  }

  .cta-new__download-link {
    font-size: 20px;
    line-height: 1.5;
  }
}

@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;
  }
}
