/* =====================================================
   Yasuragi no Sato - First Time Visitor Page
   Based on Figma Design Data
   ===================================================== */

.sp-only { display: none; }
br.pc-only { display: inline; }
p.pc-only { display: block; }

/* =====================================================
   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: #604d44;
  --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;
  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;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  margin-top: clamp(60px, 5.56vw, 80px);
  overflow: hidden;
  background: url('../images/hero-firsttime.webp') lightgray 50% / cover no-repeat;
}

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

.hero__title-area {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 32px 48px;
  text-align: right;
}

/* Figma: タイトルエリア - 左側 157px, 上から280px */
.hero__title-area--center {
  position: absolute;
  left: 157px;
  top: 310px;
  right: auto;
  bottom: auto;
  text-align: left;
  z-index: 1;
  background: transparent;
  padding: 0;
}

/* Figma: Italiana Regular 18px, letter-spacing 0.9px, ドロップシャドウ */
.hero__title-area--center .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;
  margin-bottom: 0;
}

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

.hero__subtitle {
  font-family: var(--font-italiana);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.hero__title {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.2em;
}

/* =====================================================
   導入セクション (Figma: Frame 1000005171)
   ===================================================== */
.intro {
  position: relative;
  width: 100%;
  height: 499px;
  background: #fffbf1;
  overflow: hidden;
}

.intro__leaf {
  position: absolute;
  width: 705px;
  height: 260px;
  pointer-events: none;
}

.intro__leaf--left {
  top: 0;
  left: -302px;
}

.intro__leaf--right {
  top: 214px;
  right: -145px;
}

.intro__content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  padding: 15px 129px 100px 15px;
}

.intro__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 1.47;
  letter-spacing: 0;
  color: #352304;
  margin: 0 0 20px 0;
}

.intro__deco {
  display: none;
}

.intro__title--accent {
  color: #d67c3d;
}

.intro__text {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
}

.intro__text + .intro__text {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .intro {
    height: auto;
    padding-bottom: 60px;
  }

  .intro__content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .intro__title {
    font-size: 40px;
    line-height: 1.4;
  }

  .intro__text {
    font-size: 18px;
    line-height: 2;
  }
}

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

  .intro {
    height: 510px;
    padding-bottom: 0;
  }

  .intro__content {
    padding: 20px 15px 0 15px;
  }

  .intro__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 55px;
    letter-spacing: 0;
    margin-bottom: 30px;
  }

  .intro__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0;
  }

  .intro__text br.pc-only {
    display: inline !important;
  }

  .intro__text + .intro__text {
    margin-top: 30px;
  }

  .intro__leaf {
    display: none;
  }

  .intro__deco {
    display: block;
    position: absolute;
    width: 299px;
    height: 111px;
    pointer-events: none;
    z-index: 0;
  }

  .intro__deco--left {
    left: -112px;
    top: 0;
  }

  .intro__deco--right {
    left: 220px;
    top: 299px;
  }
}

/* =====================================================
   初めてでも、大丈夫です (Figma: Frame 1000005172)
   ===================================================== */
.daijoubu {
  position: relative;
  width: 100%;
  background: #fffbf1;
  overflow: hidden;
}

.daijoubu__bg-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.daijoubu__wave {
  position: absolute;
  top: 97px;
  left: 0;
  width: 100%;
  height: auto;
}

.daijoubu__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 130px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.daijoubu__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
  width: 100%;
}

.daijoubu__text {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
  text-align: center;
}

.daijoubu__circles {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.daijoubu__circle {
  width: 150px;
  height: 150px;
  border: 1px dashed #352304;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.daijoubu__circle span {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

.daijoubu__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 1099px;
  width: 100%;
}

.daijoubu__quote {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 1.94vw, 28px);
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
  color: #352304;
  border: 1px solid #352304;
  border-radius: 5px;
  padding: 5px 50px;
  text-align: center;
  margin: 0;
}

/* ととのえる旅 ダイアグラム（トップページと同一） */
.top-design__diagram {
  position: relative;
  width: min(90%, 680px);
  aspect-ratio: 840 / 999;
  margin: 0 auto;
  background-color: transparent;
}

.top-design__diagram::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -15%;
  width: 130%;
  height: 120%;
  z-index: 0;
  background: #fffbf1 url('../images/top/diagram-bg-texture.webp') center / cover no-repeat;
  opacity: 0.5;
  filter: saturate(0) brightness(1.13);
  border-radius: 16px;
}

.top-design__line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.top-design__line--tr { left: 66.2%; top: 14.7%; width: 9.1%; height: 4.6%; }
.top-design__line--tl { left: 24.7%; top: 14.7%; width: 9.1%; height: 4.6%; }
.top-design__line--br { left: 66.2%; top: 71.2%; width: 9.1%; height: 4.6%; }
.top-design__line--bl { left: 24.8%; top: 71.2%; width: 9.1%; height: 4.6%; }
.top-design__line--r  { left: 89.0%; top: 40.1%; width: 2.2%; height: 8.6%; }
.top-design__line--l  { left: 10.6%; top: 40.1%; width: 2.2%; height: 8.6%; }

.top-design__center {
  position: absolute;
  left: 25.3%;
  top: 23.4%;
  width: 49.4%;
  height: 41.6%;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.top-design__center-inner {
  width: 94%;
  height: 94%;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.top-design__center-sub {
  font-family: var(--font-mincho);
  font-size: clamp(12px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.top-design__center-title {
  font-family: var(--font-mincho);
  font-size: clamp(14px, 2.4vw, 34px);
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1;
  white-space: nowrap;
}

.top-design__item {
  position: absolute;
  width: 26.3%;
  z-index: 1;
}

.top-design__item img {
  width: 100%;
  height: auto;
  display: block;
}

.top-design__item--1 { left: 36.9%; top: 0%; }
.top-design__item--2 { left: 73.7%; top: 17.1%; }
.top-design__item--3 { left: 73.7%; top: 49.4%; }
.top-design__item--4 { left: 36.9%; top: 66.4%; }
.top-design__item--5 { left: 0%; top: 49.4%; }
.top-design__item--6 { left: 0%; top: 17.1%; }

.top-design__bottom-text {
  position: absolute;
  left: 0;
  top: 91.5%;
  width: 100%;
  text-align: center;
}

/* PC用の位置を維持 */

.top-design__bottom-title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: #604d44;
  margin-bottom: clamp(8px, 0.97vw, 14px);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.top-design__bottom-sub {
  font-family: var(--font-mincho);
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 500;
  color: #604d44;
  letter-spacing: 0;
  line-height: 1.5;
}

.daijoubu__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #352304;
  color: #fff;
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
  padding: 18px 64px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.daijoubu__btn:hover {
  opacity: 0.8;
}

.daijoubu__btn svg {
  flex-shrink: 0;
}

/* =====================================================
   どんな方が参加していますか？ (Figma: Frame 1000005137)
   ===================================================== */
.participants {
  background: #fffbf1;
}

.participants__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 150px 130px;
  display: flex;
  flex-direction: column;
  gap: 200px;
  align-items: center;
}

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

.participants__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

.participants__image-wrap {
  width: 100%;
  max-width: 1180px;
  aspect-ratio: 1180 / 600;
  overflow: hidden;
}

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

.participants__text {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
  text-align: center;
}

.participants__accent {
  color: #d67c3d;
  font-weight: 700;
}

.participants__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.participants__list-item {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  display: flex;
  align-items: center;
  gap: 11px;
}

.participants__list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #352304;
  flex-shrink: 0;
}

/* =====================================================
   なぜスタート日が決まっているのですか？ (Figma: Frame 1000005191)
   ===================================================== */
.startday {
  background: #fffbf1;
}

.startday__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 0 200px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.startday__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

.startday__image-wrap {
  width: 100%;
  max-width: 1440px;
  aspect-ratio: 1440 / 800;
  overflow: hidden;
}

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

.startday__text {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
  text-align: center;
}

.startday__accent {
  color: #d67c3d;
}

.startday__flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1181px;
  padding: 0 130px;
}

.startday__flow-heading {
  text-align: center;
}

.startday__flow-lead {
  font-family: var(--font-mincho);
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
}

.startday__timeline {
  width: 100%;
  max-width: 948px;
}

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

.startday__flow-label {
  text-align: center;
}

.startday__flow-tagline {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  border: none;
  border-bottom: 2px solid #ebc165;
  padding: 0 20px;
}

.startday__flow-sub {
  font-family: var(--font-mincho);
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

/* =====================================================
   体験談 (Figma: Frame 1000005015)
   ===================================================== */
.testimonial {
  background: #fffbf1;
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-texture.webp') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.testimonial__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 150px 130px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.testimonial__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

.testimonial__card {
  display: flex;
  gap: 140px;
  align-items: center;
  background: #fff;
  box-shadow: 3px 4px 10px 0 rgba(0, 0, 0, 0.15);
  padding: 50px;
  max-width: 1092px;
  width: 100%;
}

.testimonial__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.testimonial__card-heading {
  font-family: var(--font-mincho);
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
}

.testimonial__card-text {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
}

.testimonial__card-attr {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: right;
}

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

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

/* =====================================================
   初めての方におすすめプラン (Figma: Frame 1000005035)
   ===================================================== */
.rec-plans {
  background: #fffbf1;
}

.rec-plans__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 200px 130px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.rec-plans__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

.rec-plans__grid {
  display: grid;
  grid-template-columns: repeat(2, 450px);
  gap: 50px;
  justify-content: center;
}

.rec-plans__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
  background: #fff;
  box-shadow: 3px 4px 10px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.3s;
}

.rec-plans__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/card-texture.webp') center / cover no-repeat;
  opacity: 0.2;
  filter: saturate(0.38);
  pointer-events: none;
}

.rec-plans__card:hover {
  opacity: 0.85;
}

.rec-plans__card-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.rec-plans__card-subtitle {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
  text-align: center;
}

.rec-plans__card-line {
  width: 100%;
  border: none;
  border-top: 1px solid #352304;
  margin: 0;
}

.rec-plans__card-duration {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 1.94vw, 28px);
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

.rec-plans__card-image-wrap {
  position: relative;
  z-index: 1;
  width: 350px;
  aspect-ratio: 350 / 250;
  overflow: hidden;
  margin: 0 auto;
}

.rec-plans__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   CTAセクション (Figma: Frame 1000005239)
   ===================================================== */
.ft-cta {
  display: flex;
  flex-direction: column;
  gap: 150px;
  padding-bottom: 150px;
  align-items: center;
}

.ft-cta__hero {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.ft-cta__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-cta__hero-text {
  position: absolute;
  top: 50px;
  left: 135px;
  z-index: 1;
}

.ft-cta__hero-title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 10px 0;
}

.ft-cta__hero-body {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
}

/* ボタン群 */
.ft-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 1003px;
  padding: 0 130px;
}

.ft-cta__buttons {
  display: flex;
  gap: 50px;
  width: 100%;
}

.ft-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px;
  text-decoration: none;
  transition: opacity 0.3s;
  flex: 1;
}

.ft-cta__btn:hover {
  opacity: 0.8;
}

.ft-cta__btn--white {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #352304;
}

.ft-cta__btn--white span {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
  color: #352304;
}

/* 資料ダウンロード */
.ft-cta__download {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #352304;
  padding: 18px 64px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.ft-cta__download:hover {
  opacity: 0.8;
}

.ft-cta__download-sub {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  color: #fff;
  margin: 0;
}

.ft-cta__download-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-cta__download-icon {
  flex-shrink: 0;
}

.ft-cta__download-title {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 600;
  line-height: 54px;
  color: #fff;
  margin: 0;
}

/* 無料メール講座 */
.ft-cta__mail-course {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}

.ft-cta__mail-course:hover {
  opacity: 0.8;
}

.ft-cta__mail-course-img {
  width: 100%;
  height: auto;
}

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

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

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

.section__label {
  font-family: var(--font-gothic);
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.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__title--large {
  font-size: 36px;
  letter-spacing: 0.12em;
}

.section__tagline {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-primary);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

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

/* =====================================================
   Achievements Section
   ===================================================== */
.achievements {
  padding: 48px 0;
  background: var(--color-bg-cream);
}

.achievements__content {
  text-align: center;
}

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

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement-item__number {
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
}

.achievement-item__unit {
  font-size: 24px;
}

.achievement-item__label {
  font-family: var(--font-gothic);
  font-size: 14px;
  color: var(--color-text-body);
  margin-top: 4px;
}

.achievements__text {
  font-family: var(--font-mincho);
  font-size: 18px;
  color: var(--color-text-dark);
  letter-spacing: 0.06em;
}

/* =====================================================
   All Inclusive Section
   ===================================================== */
.all-inclusive {
  padding: 72px 0;
}

.inclusive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.inclusive-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
}

.inclusive-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-cream);
  border-radius: 50%;
}

.inclusive-item__icon img {
  width: 32px;
  height: 32px;
}

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

.inclusive-item__description {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-body);
}

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

.reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.reason-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  position: relative;
  align-items: start;
}

.reason-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}

.reason-card:nth-child(even) .reason-card__image-wrap {
  order: 2;
}

.reason-card:nth-child(even) .reason-card__content {
  order: 1;
}

.reason-card__number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: var(--font-italiana);
  font-size: 64px;
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  z-index: 1;
}

.reason-card:nth-child(even) .reason-card__number {
  left: auto;
  right: -20px;
}

.reason-card__image-wrap {
  aspect-ratio: 380/260;
  overflow: hidden;
}

.reason-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.reason-card:hover .reason-card__image {
  transform: scale(1.05);
}

.reason-card__content {
  padding: 20px 0;
}

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

.reason-card__description {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-body);
}

/* =====================================================
   Reassurance Section
   ===================================================== */
.reassurance {
  padding: 72px 0;
}

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

.reassurance-card {
  background: var(--color-white);
  overflow: hidden;
}

.reassurance-card__image-wrap {
  aspect-ratio: 300/200;
  overflow: hidden;
}

.reassurance-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.reassurance-card:hover .reassurance-card__image {
  transform: scale(1.05);
}

.reassurance-card__content {
  padding: 20px;
}

.reassurance-card__label {
  display: inline-block;
  font-size: 11px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 4px 10px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.reassurance-card__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

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

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

/* =====================================================
   Link Button (Common)
   ===================================================== */
.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;
}

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

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

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

.method__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.method__flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--color-bg-cream);
}

.method-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.method-step__label {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.method-step__title {
  font-family: var(--font-mincho);
  font-size: 18px;
  color: var(--color-primary);
  letter-spacing: 0.06em;
}

.method__arrow {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
}

.method__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid var(--color-primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

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

.method__quote {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-dark);
  padding: 24px 32px;
  background: var(--color-bg-beige);
  border-left: 3px solid var(--color-primary);
  text-align: left;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
  padding: 72px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__number {
  font-family: var(--font-italiana);
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item__text {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-text-dark);
  flex: 1;
  letter-spacing: 0.02em;
}

.faq-item__question::after {
  content: '+';
  font-size: 24px;
  color: var(--color-primary);
  transition: transform 0.3s;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 20px 48px;
}

.faq-item__answer p {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-body);
}

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

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

.concept__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.concept__lead {
  font-family: var(--font-mincho);
  font-size: 24px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.concept__description {
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-text-body);
  margin-bottom: 32px;
}

.concept__elements {
  padding: 32px;
  background: var(--color-bg-cream);
}

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

.concept__elements-text:last-child {
  margin-bottom: 0;
}

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

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

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


/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .daijoubu__inner {
    padding: 80px 60px;
    gap: 60px;
  }

  .daijoubu__circles {
    gap: 20px;
  }

  .daijoubu__circle {
    width: 120px;
    height: 120px;
  }

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

  .daijoubu__body {
    margin-left: 0;
  }

  .inclusive-grid {
    gap: 24px;
  }

  .reason-card {
    grid-template-columns: 320px 1fr;
    gap: 24px;
  }

  .reason-card:nth-child(even) {
    grid-template-columns: 1fr 320px;
  }

  .reassurance-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ft-cta {
    gap: 60px;
    padding-bottom: 60px;
  }

  .ft-cta__hero {
    height: 500px;
  }

  .ft-cta__hero-text {
    top: 26px;
    left: 24px;
  }

  .ft-cta__hero-title {
    font-size: 40px;
    line-height: 60px;
    margin: 0 0 10px 0;
  }

  .ft-cta__hero-body {
    font-size: 24px;
    font-weight: 600;
    line-height: 50px;
  }

  .ft-cta__actions {
    padding: 0 24px;
    gap: 24px;
  }

  .ft-cta__buttons {
    flex-direction: column;
    gap: 16px;
  }

  .ft-cta__btn {
    padding: 10px 60px;
    gap: 15px;
  }

  .ft-cta__btn--white span {
    font-size: 20px;
    line-height: 54px;
  }

  .ft-cta__download {
    padding: 18px 30px;
    align-items: center;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .ft-cta__download-sub {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
  }

  .ft-cta__download-title {
    font-size: 24px;
    line-height: 54px;
    white-space: nowrap;
  }

  .ft-cta__mail-course {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    height: 148px;
    overflow: hidden;
  }

  .ft-cta__mail-course-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .rec-plans__inner {
    padding: 60px 24px;
    gap: 40px;
  }

  .rec-plans__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 55px;
    letter-spacing: 0;
    text-align: center;
  }

  .rec-plans__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rec-plans__card {
    padding: 20px;
  }

  .rec-plans__card-subtitle {
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0;
  }

  .rec-plans__card-duration {
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
  }

  .rec-plans__card-image-wrap {
    width: 100%;
  }

  .testimonial__inner {
    padding: 60px 24px;
    gap: 40px;
  }

  .testimonial__card {
    flex-direction: column;
    gap: 30px;
    padding: 24px;
  }

  .testimonial__card-image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 262 / 142;
    order: -1;
  }

  .testimonial__card-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
  }

  .testimonial__card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
  }

  .testimonial__card-attr {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
  }

  .startday__inner {
    padding: 60px 0 80px;
    gap: 40px;
  }

  .startday__title {
    line-height: 1.4;
    padding: 0 24px;
  }

  .startday__text {
    line-height: 1.8;
    padding: 0 24px;
  }

  .startday__flow {
    padding: 0 24px;
    gap: 24px;
  }

  .startday__timeline {
    display: flex;
    justify-content: center;
  }

  .startday__timeline-img {
    width: 72px;
    height: auto;
  }

  .startday__flow-lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
  }

  .startday__flow-tagline {
    font-size: 27px;
    font-weight: 300;
    line-height: 94px;
    white-space: nowrap;
    padding-bottom: 10px;
  }

  .startday__flow-sub {
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
  }

  .participants__inner {
    padding: 60px 24px;
    gap: 80px;
  }

  .participants__block {
    gap: 30px;
  }

  .participants__title {
    line-height: 1.4;
  }

  .participants__text {
    line-height: 1.8;
  }

  .participants__list-item {
    line-height: 1.8;
  }

  .daijoubu__wave--sp {
    top: 69px;
    width: 100%;
    height: 74px;
  }

  .daijoubu__inner {
    padding: 50px 40px;
    gap: 50px;
  }

  .daijoubu__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 55px;
    letter-spacing: 0;
  }

  .daijoubu__text {
    line-height: 1.8;
  }

  .daijoubu__circles {
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 24px;
    width: 380px;
    justify-content: center;
  }

  .daijoubu__circle {
    width: 120px;
    height: 120px;
    border-style: dashed;
  }

  .daijoubu__circle span {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.9px;
  }

  .daijoubu__body {
    gap: 20px;
    align-items: center;
    max-width: 310px;
  }

  .daijoubu__body .daijoubu__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0;
  }

  .daijoubu__quote {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0;
    width: 220px;
    padding: 10px 24px;
    text-align: center;
    align-self: center;
  }

  .top-design__diagram {
    width: 138.5vw;
    margin-left: calc((100% - 138.5vw) / 2);
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .top-design__diagram::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .top-design__item {
    width: 20.4%;
  }

  .top-design__item--1 { left: 39.9%; top: 3.7%; }
  .top-design__item--2 { left: 68.5%; top: 19.5%; }
  .top-design__item--3 { left: 68.5%; top: 49.4%; }
  .top-design__item--4 { left: 39.9%; top: 65.1%; }
  .top-design__item--5 { left: 11.1%; top: 49.4%; }
  .top-design__item--6 { left: 11.1%; top: 19.5%; }

  .top-design__center {
    left: 29.6%;
    top: 25.4%;
    width: 38.5%;
    height: 38.5%;
  }

  .top-design__center-sub {
    font-size: 2.7vw;
  }

  .top-design__center-title {
    font-size: 5vw;
  }

  .top-design__line--tr { left: 62.6%; top: 17.3%; width: 7.1%; height: 4.3%; }
  .top-design__line--tl { left: 30.4%; top: 17.3%; width: 7.1%; height: 4.3%; }
  .top-design__line--br { left: 62.6%; top: 69.6%; width: 7.1%; height: 4.3%; }
  .top-design__line--bl { left: 30.4%; top: 69.6%; width: 7.1%; height: 4.3%; }
  .top-design__line--r  { left: 79.5%; top: 40.8%; width: 1.8%; height: 8.0%; }
  .top-design__line--l  { left: 18.7%; top: 40.8%; width: 1.8%; height: 8.0%; }

  .top-design__bottom-text {
    top: 88.4%;
  }

  .top-design__bottom-title {
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0;
  }

  .top-design__bottom-sub {
    font-size: 12px;
    line-height: 18px;
  }

  .daijoubu__inner {
    padding-bottom: 80px;
  }

  .daijoubu__btn {
    padding: 14px 24px;
    font-size: 16px;
    white-space: nowrap;
  }

  .hero {
    height: 570px;
    margin-top: 80px;
    background-image: url('../images/hero-sp.png');
    background-position: center;
    background-size: cover;
  }

  .hero__overlay {
    width: 256px;
    background: linear-gradient(263deg, #FFFFFF 0%, #B0A79D 80%, #64513F 100%);
    opacity: 0.7;
    mix-blend-mode: darken;
  }

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

  .hero__title-area--center .hero__title {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 70px;
    color: #fffbf1;
  }

  .hero__title-area--center .hero__subtitle {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__title-area {
    padding: 20px 24px;
  }

  .hero__subtitle {
    font-size: 10px;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 20px;
  }

  .section__title--large {
    font-size: 28px;
  }

  /* Achievements */
  .achievements__stats {
    gap: 32px;
  }

  .achievement-item__number {
    font-size: 36px;
  }

  .achievement-item__unit {
    font-size: 18px;
  }

  /* Inclusive */
  .inclusive-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Reasons */
  .reason-card,
  .reason-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reason-card:nth-child(even) .reason-card__image-wrap {
    order: 0;
  }

  .reason-card:nth-child(even) .reason-card__content {
    order: 0;
  }

  .reason-card__number {
    font-size: 48px;
    top: -10px;
    left: -10px;
  }

  .reason-card:nth-child(even) .reason-card__number {
    left: -10px;
    right: auto;
  }

  .reason-card__title {
    font-size: 18px;
  }

  /* Reassurance */
  .reassurance-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Method */
  .method__lead {
    font-size: 16px;
  }

  .method__flow {
    flex-direction: column;
    gap: 16px;
  }

  .method__arrow {
    transform: rotate(90deg);
    width: 30px;
  }

  .method__quote {
    padding: 20px;
    font-size: 14px;
  }

  /* FAQ */
  .faq-item__text {
    font-size: 14px;
  }

  .faq-item__answer {
    padding-left: 32px;
  }

  /* Concept */
  .concept__lead {
    font-size: 20px;
  }

  .concept__elements {
    padding: 24px 20px;
  }

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

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

}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    height: 570px;
  }

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

  .hero__title-area--center .hero__title {
    font-size: 50px;
    letter-spacing: 0;
  }

  .hero__title-area--center .hero__subtitle {
    font-size: 16px;
  }

  .achievements__stats {
    flex-direction: column;
    gap: 24px;
  }

  .achievement-item__number {
    font-size: 28px;
  }

  .section__title {
    font-size: 18px;
  }

  .section__title--large {
    font-size: 24px;
  }

  /* Inclusive 480px */
  .inclusive-grid {
    max-width: 100%;
  }

  .inclusive-item__icon {
    width: 56px;
    height: 56px;
  }

  .inclusive-item__title {
    font-size: 16px;
  }

  .inclusive-item__description {
    font-size: 13px;
  }

  /* Reasons 480px */
  .reasons-grid {
    gap: 40px;
  }

  .reason-card__image-wrap {
    aspect-ratio: 16/10;
    max-width: 100%;
  }

  .reason-card__number {
    font-size: 40px;
    top: -8px;
    left: -8px;
  }

  .reason-card:nth-child(even) .reason-card__number {
    left: -8px;
    right: auto;
  }

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

  .reason-card__description {
    font-size: 13px;
    line-height: 1.8;
  }

  /* Reassurance 480px */
  .reassurance-grid {
    max-width: 100%;
  }

  .reassurance-card__label {
    font-size: 11px;
    padding: 4px 10px;
  }

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

  .reassurance-card__description {
    font-size: 13px;
  }

  /* Method 480px */
  .method__flow {
    flex-direction: column;
    gap: 16px;
  }

  .method__arrow {
    transform: rotate(90deg);
    width: 24px;
    height: 16px;
  }

  .method-step {
    padding: 16px 24px;
  }

  .method-step__title {
    font-size: 18px;
  }

  /* FAQ 480px */
  .faq-item__question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-item__number {
    font-size: 14px;
    min-width: 32px;
  }

  .faq-item__answer {
    padding: 16px;
    font-size: 13px;
  }

  /* CTA 480px */
  .cta__title {
    font-size: 20px;
  }

  .cta__description {
    font-size: 13px;
  }

  .cta__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta__btn {
    width: 100%;
    justify-content: center;
  }

}

