/* =====================================================
   Yasuragi no Sato - Program Page
   Based on Figma Design Data
   ===================================================== */

/* =====================================================
   CSS Variables (from Figma)
   ===================================================== */
:root {
  /* Primary Colors (from Figma: r:0.290, g:0.572, b:0.333) */
  --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 (from Figma: r:0.894, g:0.686, b:0.576) */
  --color-tag-bg: #e4af93;
  --color-tag-border: #d4b494;

  /* Text Colors (from Figma: r:0.376, g:0.301, b:0.266 = #604D44) */
  --color-text-dark: #352304;
  --color-text-body: #5a5a5a;
  --color-text-light: #666666;
  /* Dark brown from Figma: r:0.207, g:0.137, b:0.015 = #352304 */
  --color-text-heading: #352304;

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

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

  /* Typography (from Figma) */
  --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;
}

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

.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: 14px;
  color: var(--color-text-light);
  margin-top: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* =====================================================
   Program Overview Section (Figma準拠)
   ===================================================== */
.program-overview {
  background: #FFFBF1;
  padding: 100px 130px;
}

.program-overview__inner {
  max-width: 1185px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

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

.program-overview__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', 'Shippori Mincho B1', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
}

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

.program-overview__diagram {
  max-width: 1080px;
  width: 100%;
}

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

.program-overview__diagram-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.program-overview__diagram-lead {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: #352304;
  text-align: center;
}

.program-overview__diagram-sub {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #352304;
  text-align: center;
}

/* =====================================================
   Program Intro Section (Figma準拠)
   ===================================================== */
.program-intro {
  padding: 144px 0;
  background: var(--color-bg-cream);
}

.program-intro__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.program-intro__title {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  margin-bottom: 50px;
}

.program-intro__content {
  position: relative;
}

.program-intro__images {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.program-intro__images-top {
  display: flex;
  gap: 62px;
}

.program-intro__image-left {
  width: 442px;
  height: 313px;
  overflow: hidden;
}

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

.program-intro__image-right {
  width: 676px;
  height: 481px;
  overflow: hidden;
}

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

.program-intro__images-bottom {
  display: flex;
  gap: 11px;
}

.program-intro__image-small {
  width: 386px;
  height: 272px;
  overflow: hidden;
}

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

.program-intro__description {
  position: absolute;
  left: 0;
  bottom: 316px;
  width: 442px;
  font-family: 'Abhaya Libre', 'Noto Sans JP', var(--font-gothic);
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

/* =====================================================
   Program Included Section (Figma準拠 - New Design)
   ===================================================== */
.program-included-new {
  position: relative;
  width: 100%;
  height: 781px;
}

.program-included-new__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 452px;
  overflow: hidden;
}

.program-included-new__bg-overlay {
  position: absolute;
  inset: 0;
  background: #4a9255;
  z-index: 1;
}

.program-included-new__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.2;
  z-index: 2;
}

.program-included-new__leaf {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: auto;
  z-index: 3;
  pointer-events: none;
}

.program-included-new__cream {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 329px;
  background: #fffbf1;
}

.program-included-new__content {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 20px 0;
}

.program-included-new__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.program-included-new__title {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 56px;
  font-weight: 300;
  line-height: 82px;
  color: #ffffff;
}

.program-included-new__description {
  width: 571px;
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 200;
  line-height: 44px;
  color: #ffffff;
}

.program-included-new__cards {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.program-card {
  width: 155px;
  height: 390px;
  background: #ffffff;
  border: 0.5px solid #4a9255;
  box-shadow: 0px 2px 10px rgba(194, 178, 143, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.program-card__title {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 4px;
  color: #352304;
  margin: 0;
}

.program-card__accent {
  color: #4a9255;
}

.program-card__sub {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 4px;
  color: #352304;
  margin: 0;
  margin-right: 10px;
}

/* =====================================================
   Program Free Section (Figma準拠 - New Design)
   ===================================================== */
.program-free-new {
  padding: 100px 0;
  background: #fffbf1;
}

.program-free-new__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.program-free-new__header {
  text-align: center;
  max-width: 1180px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.program-free-new__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', 'Shippori Mincho B1', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
}

.program-free-new__accent--green {
  color: #4a9255;
}

.program-free-new__description {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: #352304;
}

.program-free-new__note {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 500;
  line-height: 44px;
  color: #352304;
  margin-bottom: 20px;
}

.program-free-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 20px;
  max-width: 1060px;
  margin: 0 auto 100px;
}

.program-free-new__item {
  display: flex;
  flex-direction: column;
}

.program-free-new__image {
  width: 340px;
  height: 225px;
  overflow: hidden;
  margin-bottom: 0;
}

.program-free-new__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-free-new__label {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #352304;
  margin: 0;
}

/* 有料オプション */
.program-option-new {
  max-width: 1060px;
  margin: 0 auto;
}

.program-option-new__title {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 56px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  margin-bottom: 50px;
  text-align: center;
}

.program-option-new__accent--orange {
  color: #d67c3d;
}

.program-option-new__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.program-option-new__item {
  display: flex;
  flex-direction: column;
}

.program-option-new__image {
  width: 520px;
  height: 195px;
  overflow: hidden;
}

.program-option-new__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-option-new__label {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
}

/* =====================================================
   Program Option Section (Figma準拠)
   ===================================================== */
.program-option-section {
  background: #FFFBF1;
  padding: 0 130px 100px;
}

.program-option-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.program-option-section__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-option-section__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', 'Shippori Mincho B1', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
}

.program-option-section__desc {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: #352304;
  text-align: center;
}

.program-option-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1060px;
}

.program-option-section__item {
  display: flex;
  flex-direction: column;
}

.program-option-section__image {
  width: 520px;
  height: 195px;
  overflow: hidden;
}

.program-option-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-option-section__label {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #352304;
}

.program-option-section__accent {
  color: #D67C3D;
}

.program-option-section__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 528px;
  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;
  gap: 10px;
  transition: opacity 0.3s;
}

.program-option-section__more:hover {
  opacity: 0.8;
}

/* =====================================================
   How To Section - どんな風に過ごすの？ (Figma準拠)
   ===================================================== */
.program-howto {
  background: #F7F3E9;
  padding: 100px 130px;
}

.program-howto__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.program-howto__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', 'Shippori Mincho B1', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
}

.program-howto__desc {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: #352304;
  text-align: center;
}

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

.program-howto__more:hover {
  opacity: 0.8;
}

/* =====================================================
   Closing Section - 気づいたら、整っている。 (Figma準拠)
   ===================================================== */
.program-closing {
  background: #FFFBF1;
  padding: 100px 130px;
}

.program-closing__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.program-closing__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', 'Shippori Mincho B1', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
}

.program-closing__desc {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 54px;
  color: #352304;
  max-width: 672px;
  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: 26px;
  height: 26px;
}

/* =====================================================
   Schedule Section
   ===================================================== */
.schedule {
  padding: 64px 0 72px;
  background: var(--color-white);
}

.schedule__content {
  max-width: 700px;
  margin: 0 auto 40px;
}

.schedule__timeline {
  position: relative;
  padding-left: 120px;
}

.schedule__timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-primary);
}

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

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

.schedule__time {
  position: absolute;
  left: -120px;
  width: 70px;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  text-align: right;
}

.schedule__activity {
  flex: 1;
  padding-left: 24px;
}

.schedule__activity-title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.schedule__activity-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.schedule__link {
  text-align: center;
}

.schedule__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 4px;
  transition: opacity 0.3s;
}

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

.schedule__link-btn::after {
  content: '\2192';
}

/* =====================================================
   Fasting Section
   ===================================================== */
.fasting {
  padding: 64px 0 72px;
}

.fasting__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.fasting__lead {
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 2.2;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.fasting__description {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.fasting__description:last-child {
  margin-bottom: 0;
}

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

.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: 14px;
  color: var(--color-text-body);
  margin-bottom: 28px;
  line-height: 2;
}

.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: 180px;
  padding: 14px 36px;
  font-family: var(--font-mincho);
  font-size: 15px;
  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: 13px;
  color: var(--color-text-light);
}

/* 左側エリア */

/* 電話番号 */

/* SNSアイコン */

/* X (黒) */

/* Facebook (青) */

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

/* YouTube (赤) */

/* お問い合わせボタン (Figma: Bold) */

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

/* コピーライト */

/* =====================================================
   PC/SP Utility
   ===================================================== */
.sp-only { display: none; }
.pc-only { display: inline; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .program-grid {
    gap: 20px;
  }

  .option-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

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

  .hero {
    height: 570px !important;
    margin-top: 56px;
    background: url('../images/hero-program-sp.webp') top center / cover no-repeat;
  }

  .hero__bg {
    display: none;
  }

  .hero__overlay {
    width: 256px;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(176, 167, 157, 0.8) 32.9%, #64513F 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;
    font-weight: 400;
    letter-spacing: 0.8px;
  }

  /* ===== Program Overview SP ===== */
  .program-overview {
    padding: 80px 40px 50px !important;
  }

  .program-overview__inner {
    gap: 50px;
  }

  .program-overview__header {
    gap: 40px;
  }

  .program-overview__title {
    font-size: 36px !important;
    font-weight: 300;
    line-height: 55px !important;
    text-align: left;
  }

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

  .program-overview__diagram {
    width: 520px;
    max-width: none;
    align-self: center;
    margin-left: -64px;
    margin-right: -64px;
  }

  /* ===== Program Included SP ===== */
  .program-included-new {
    height: auto !important;
  }

  .program-included-new__bg {
    height: 354px !important;
  }

  .program-included-new__cream {
    height: auto !important;
    top: 354px;
    bottom: 0;
  }

  .program-included-new__leaf {
    width: 178px;
    height: 265px;
    top: 44px;
    left: 0;
    transform: none;
    opacity: 1;
  }

  .program-included-new__content {
    padding: 30px 37px 30px !important;
  }

  .program-included-new__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .program-included-new__title {
    font-size: 32px !important;
    line-height: 55px !important;
    font-weight: 300;
  }

  .program-included-new__description {
    width: 100% !important;
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 500;
  }

  .program-included-new__cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .program-card {
    width: 315px !important;
    height: 100px !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    border: 0.5px solid #4a9255;
    box-shadow: 0px 2px 10px rgba(194, 178, 143, 0.5);
  }

  .program-card__title {
    font-size: 24px !important;
    line-height: 40px !important;
    letter-spacing: 0 !important;
  }

  .program-card__sub {
    font-size: 24px !important;
    line-height: 40px !important;
    letter-spacing: 0 !important;
    margin-right: 0 !important;
  }

  /* ===== CTA SP ===== */
  .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;
    gap: 10px !important;
    width: 100%;
  }

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

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

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

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

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

  /* ===== Program Closing SP ===== */
  .program-closing {
    padding: 50px 40px !important;
  }

  .program-closing__inner {
    gap: 15px;
    align-items: flex-start;
  }

  .program-closing__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
    text-align: left;
  }

  .program-closing__desc {
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 500;
    text-align: left;
    max-width: 310px !important;
  }

  /* ===== Program Howto SP ===== */
  .program-howto {
    padding: 50px 40px !important;
  }

  .program-howto__inner {
    gap: 40px;
  }

  .program-howto__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
  }

  .program-howto__desc {
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 500;
    text-align: center;
  }

  .program-howto__more {
    width: 311px !important;
    height: 73px !important;
    font-size: 18px !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  .program-howto__more svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    flex-shrink: 0;
  }

  /* ===== Program Option SP ===== */
  .program-option-section {
    padding: 50px 20px !important;
  }

  .program-option-section__inner {
    gap: 50px;
  }

  .program-option-section__header {
    align-items: center;
  }

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

  .program-option-section__desc {
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 500;
    text-align: center;
  }

  .program-option-section__grid {
    grid-template-columns: repeat(2, 170px) !important;
    gap: 10px !important;
    max-width: 350px !important;
    justify-content: center;
  }

  .program-option-section__image {
    width: 170px !important;
    height: 70px !important;
  }

  .program-option-section__label {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 28px !important;
  }

  .program-option-section__more {
    width: 310px !important;
    height: 73px !important;
    font-size: 16px !important;
    line-height: 44px !important;
    padding: 0 14px !important;
    white-space: nowrap;
    gap: 10px !important;
  }

  .program-option-section__more svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    flex-shrink: 0;
  }

  /* ===== Program Free SP ===== */
  .program-free-new {
    padding: 50px 0 !important;
  }

  .program-free-new__container {
    padding: 0 20px;
  }

  .program-free-new__header {
    margin-bottom: 50px;
  }

  .program-free-new__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
  }

  .program-free-new__description {
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 500;
    text-align: center;
  }

  .program-free-new__note {
    font-size: 14px !important;
    line-height: 35px !important;
    font-weight: 500;
    text-align: center;
  }

  .program-free-new__grid {
    grid-template-columns: repeat(3, 110px) !important;
    gap: 20px 10px !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    justify-content: center;
  }

  .program-free-new__image {
    width: 110px !important;
    height: 110px !important;
    border-radius: 0;
  }

  .program-free-new__label {
    font-size: 14px !important;
    line-height: 28px !important;
    font-weight: 400;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 20px;
  }

  .program-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .program-tags {
    gap: 8px;
  }

  .program-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .schedule__content {
    margin: 0 auto 32px;
  }

  .schedule__timeline {
    padding-left: 100px;
  }

  .schedule__timeline::before {
    left: 60px;
  }

  .schedule__item::before {
    left: -40px;
  }

  .schedule__time {
    left: -100px;
    width: 50px;
    font-size: 14px;
  }

  .schedule__activity-title {
    font-size: 14px;
  }

  .fasting__lead {
    font-size: 16px;
  }

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

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