/* ===========================
   カスタムプロパティ
   =========================== */
:root {
  --bg:          #fdfaff;
  --pink-light:  #fdf0f4;
  --pink-mid:    #fdf7f9;
  --pink-pale:   #fffdfe;
  --accent:          #d6a3c2;
  --accent-dark:     #ab829b;
  --accent-gradient: linear-gradient(90deg, #f09fa8 0%, #b59de6 100%);
  --purple:      #656a9f;
  --line-green:  #06C755;
  --line-hover:  #05b04a;
  --text:        #777777;
  --text-dark:   #333333;
  --text-mid:    #5a5070;
  --white:       #ffffff;
  --radius:      16px;
  --radius-sm:   8px;
  --shadow:      0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg:   0 8px 32px rgba(0, 0, 0, 0.11);
  --container:   1160px;
  --font:        'Noto Sans JP', 'Hiragino Sans', sans-serif;
}

/* ===========================
   リセット・ベース
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; }
em  { font-style: normal; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   レイアウト共通
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* ===========================
   アクセントカラー：グラデーションテキスト共通
   =========================== */
.section-label,
.label-tag,
.hero-title em,
.hero-title-catch em,
.service-container .section-title em,
.area-section .section-sub em,
.closing-title em,
.pain-arrow,
.voice-skill,
.closing-label {
  background-image: linear-gradient(90deg, #f09fa8 0%, #b59de6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===========================
   セクション見出し共通
   =========================== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.5;
}

.section-sub {
  margin-top: 12px;
  font-size: 1.367rem;
  color: var(--text);
}

.ta-left {
  text-align: left;
}

.service-container .section-title em {
  font-style: normal;
}

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

/* ===========================
   ロゴ
   =========================== */
.logo         { display: inline-flex; align-items: center; }
.logo-img     { height: 36px; width: auto; }
.logo-img--footer { height: 28px; }

/* ===========================
   LINEボタン
   =========================== */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--line-green);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(6, 199, 85, 0.35);
  letter-spacing: 0.022em;
  line-height: 1.4;
}

.btn-line:hover {
  background-color: var(--line-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6, 199, 85, 0.42);
}

.btn-line:active { transform: translateY(0); }

.btn-line-sm  { font-size: 0.8rem;  padding: 10px 22px; }
.btn-line-md  { font-size: 1rem;    padding: 16px 32px; }
.btn-line-lg  {
  font-size: 1.25rem;
  padding: 26px 70px 24px;
  width: auto;
}
.btn-line-xl  {
  font-size: 1.35rem;
  padding: 28px 70px 26px;
  width: auto;
}

/* 白背景バリアント（CTA帯内） */
.btn-line-white {
  background-color: var(--white);
  color: var(--line-green);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.btn-line-white:hover {
  background-color: #f0fdf4;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
}

/* ===========================
   CTAボタン（赤バッジ付きデザイン）
   =========================== */
.cta-btn {
  position: relative;
  background: var(--accent-gradient) center/cover no-repeat !important;
  color: var(--white) !important;
  border-radius: 18px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(171, 130, 155, 0.4);
  margin-top: 18px;
  letter-spacing: 0.1em;
}

.btn-line-sm.cta-btn {
  margin-top: 0;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(171, 130, 155, 0.4);
}

.cta-btn:hover {
  background: var(--accent-gradient) center/cover no-repeat !important;
  box-shadow: 0 14px 30px rgba(171, 130, 155, 0.48);
}

.cta-btn:active {
  box-shadow: 0 6px 14px rgba(171, 130, 155, 0.35);
}

.cta-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: #694159;
  border: 2px solid #694159;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.cta-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 700;
}

/* LINE バッジ */
.line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
  flex-shrink: 0;
}
.line-badge-dark {
  background: rgba(6, 199, 85, 0.18);
  color: var(--line-green);
}

/* ===========================
   画像プレースホルダー
   =========================== */
.img-ph {
  background: #e0e0e0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaaaaa;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-img-ph    { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); }
.hero-img       { width: 100%; height: auto; display: block; }
.service-img-ph { width: 100%; aspect-ratio: 5 / 4; border-radius: var(--radius); }
.service-img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.voice-avatar   {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

/* ===========================
   ヘッダー
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* ===========================
   01 ヒーロー
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 48px 0 56px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-img-sp { display: none; }

/* デコレーション円 */
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.dc {
  position: absolute;
  border-radius: 50%;
}
.dc1 {
  width: 480px; height: 480px;
  background: var(--accent-gradient) center/cover no-repeat;
  opacity: 0.07;
  top: -160px; right: -120px;
}
.dc2 {
  width: 240px; height: 240px;
  background: var(--purple);
  opacity: 0.08;
  bottom: -80px; left: -80px;
}
.dc3 {
  width: 140px; height: 140px;
  background: var(--accent-gradient) center/cover no-repeat;
  opacity: 0.06;
  top: 40%; left: 38%;
}

.hero-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.hero-text { max-width: 58%; min-width: 0; }

.label-tag {
  display: inline-block;
  font-size: 1.3333rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 1pt solid var(--accent);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 0;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 0;
  margin-bottom: 36px;
}

.hero-title-body {
  font-size: 1.45rem;
  line-height: 1.5;
}

.hero-title em {
  position: relative;
}

.hero-title-catch {
  font-size: 2.183rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-title-catch em {
  font-style: normal;
  font-size: 3.25rem;
  font-weight: 700;
}

@media (min-width: 901px) {
  .hero-title-catch em {
    font-size: 4.5rem;
  }
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-badge-circle {
  width: 96.25px;
  height: 96.25px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-badge-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 901px) {
  .hero-badges {
    margin-top: -20px;
  }

  .hero-badge-circle {
    width: 138.6px;
    height: 138.6px;
  }
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-cta {
  margin-bottom: 24px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.trust-bar strong { color: var(--text-dark); }

.check-mark {
  color: var(--line-green);
  font-weight: 700;
  font-size: 1rem;
}

.hero-visual { flex: 0 0 420px; max-width: 420px; }

/* ===========================
   02 悩みセクション
   =========================== */
.pain-section {
  background: var(--pink-light);
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.pain-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.pain-resolve {
  text-align: center;
}

.pain-arrow {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1;
}

.pain-solution-box {
  background: linear-gradient(135deg, rgba(221, 177, 210, 0.65) 0%, rgba(253, 232, 218, 0.65) 50%, rgba(101, 106, 159, 0.65) 100%);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.pain-solution-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===========================
   03 ストーリー
   =========================== */
.story-section {
  background: var(--white);
}

.story-new {
  text-align: center;
}

.story-new .section-title {
  margin-bottom: 8px;
}

.story-new .section-sub {
  margin-top: 35px;
  margin-bottom: 40px;
  font-weight: 700;
  background: var(--accent-gradient) center/cover no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 吹き出し 4列横並び */
.story-quotes-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

/* 吹き出し本体 */
.story-quote {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #555555;
  box-shadow: 0 4px 16px rgba(221, 177, 210, 0.25);
  text-align: center;
}

/* 下向き三角の尻尾 */
.story-quote::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 16px 13px 0;
  border-style: solid;
  border-color: var(--white) transparent transparent;
}

/* SP版 まとめ吹き出し */
.story-quotes-sp {
  display: none;
}

.story-image-ph {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 16 / 6;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform: translateY(calc(-30% - 30px));
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-body {
  font-size: 1.0667rem;
  color: var(--text);
  line-height: 1.85;
  margin-top: -65px;
}

/* ===========================
   04 サービス紹介
   =========================== */
.service-section { background: var(--pink-mid); }

.service-container {
  text-align: center;
}

.service-visual {
  width: 70%;
  margin: 24px auto 0;
}

.service-container .section-sub {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  background-image: linear-gradient(90deg, #f09fa8 0%, #b59de6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service-desc {
  font-size: 1.0667rem;
  color: var(--text);
  line-height: 1.9;
  margin-top: 16px;
}

/* ===========================
   05 選ばれる3つの理由
   =========================== */
#features { background: var(--white); padding: 120px 0; }

#features .section-label { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
#features .section-title  { text-align: center; }

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 38.4px;
  column-gap: 8.4px;
  margin-top: 56px;
}

.reason-card {
  position: relative;
  flex: 0 1 calc((100% - 16.8px) / 3);
  padding: 28px 28px 19px;
  border-radius: 16px;
  text-align: center;
}

.reason-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.67px;
  background: var(--accent-gradient) center/cover no-repeat;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width: 901px) {
  .reason-card::before {
    inset: 0 25px;
  }

  .reason-icon {
    margin-top: 52px;
  }
}

.reason-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.reason-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--text-dark);
}

.reason-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333333;
}

.reason-desc strong { color: var(--text-dark); }

/* ===========================
   CTA帯
   =========================== */
.cta-band {
  background: linear-gradient(135deg, rgba(221, 177, 210, 0.65) 0%, rgba(253, 232, 218, 0.65) 50%, rgba(101, 106, 159, 0.65) 100%);
  padding: 56px 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.cta-band-text {
  font-size: 1.246rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===========================
   06 スキル
   =========================== */
.skills-section { background: var(--pink-pale); }

.skills-section .section-label { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
.skills-section .section-title { text-align: center; }
.skills-section .section-sub {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 700;
  background-image: linear-gradient(90deg, #f09fa8 0%, #b59de6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.skills-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.skills-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.skills-cards::-webkit-scrollbar {
  display: none;
}

.skills-card-img {
  width: 300px;
  height: auto;
  aspect-ratio: 600 / 540;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.skills-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--accent-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.skills-arrow:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

/* ===========================
   07 おすすめセクション
   =========================== */
.recommend-section { background: var(--white); }

.recommend-section .section-label { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
.recommend-section .section-title  { text-align: center; }
.recommend-section .section-sub    { text-align: center; }

.recommend-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.recommend-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.07));
}

.recommend-list li::before { display: none; }

.recommend-person-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.recommend-text {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

/* 左向き吹き出し三角 */
.recommend-text::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 7px 10px 7px 0;
  border-style: solid;
  border-color: transparent var(--white) transparent transparent;
}

.recommend-list strong { color: var(--text-dark); }

.recommend-cta {
  text-align: center;
  display: flex;
  justify-content: center;
}

/* ===========================
   08 対応領域
   =========================== */
.area-section { background: var(--pink-pale); }

.area-section .section-label { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
.area-section .section-title  { text-align: center; }
.area-section .section-sub    { text-align: center; font-weight: 700; }

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.area-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--accent-gradient);
}

.area-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}

.area-card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--pink-light);
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .section-label {
    font-size: 0.9072rem;
  }

  .closing-label {
    font-size: 0.9375rem;
  }
}

/* ===========================
   09 ユーザーの声
   =========================== */
.voice-section { background: #f8f8f8; }

.voice-section .section-label { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
.voice-section .section-title  { text-align: center; margin-bottom: 40px; }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pink-light);
}

.voice-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.voice-meta { flex: 1; }

.voice-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.voice-skill {
  font-size: 0.75rem;
  font-weight: 500;
}

.voice-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text);
}

.voice-note {
  text-align: center;
  font-size: 0.75rem;
  color: #aaaaaa;
  margin-top: 20px;
}

/* ===========================
   11 FAQ
   =========================== */
.faq-section { background: var(--pink-mid); }

.faq-section .section-label { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
.faq-section .section-title  { text-align: center; margin-bottom: 48px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: var(--pink-mid);
  border: none;
  font-family: inherit;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  margin-left: auto;
  margin-top: 1px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-gradient) center/cover no-repeat;
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-icon--a { background: var(--purple); }

/* ===========================
   12 クロージングCTA
   =========================== */
.closing-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf0f3 0%, #fffcfe 50%, #eeeff8 100%);
  padding: 96px 0;
  text-align: center;
}

.closing-deco { position: absolute; inset: 0; pointer-events: none; }
.cdc {
  position: absolute;
  border-radius: 50%;
}
.cdc1 {
  width: 500px; height: 500px;
  background: var(--accent-gradient) center/cover no-repeat;
  opacity: 0.05;
  top: -200px; right: -150px;
}
.cdc2 {
  width: 300px; height: 300px;
  background: var(--purple);
  opacity: 0.06;
  bottom: -120px; left: -80px;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.closing-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 24px;
}

.closing-desc {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.9;
  max-width: 700px;
  margin-bottom: 44px;
}

/* ===========================
   フッター
   =========================== */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--pink-light);
  padding: 32px 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.footer-company {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0;
  text-align: center;
}

.footer-link {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: #555;
}

.footer-copy {
  font-size: 0.72rem;
  color: #bbbbbb;
  text-align: center;
}

/* ===========================
   レスポンシブ：タブレット（〜 900px）
   =========================== */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-visual {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-title-catch { font-size: 2.0rem; }

  .story-voice-card {
    padding: 28px 24px 0;
  }

  .story-quotes-row {
    gap: 14px;
  }

.reasons-grid { flex-direction: column; }
  .reasons-grid .reason-card { flex-basis: 100%; }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .area-card {
    padding: 22px;
  }

  .voice-grid { grid-template-columns: 1fr; }
}

/* ===========================
   レスポンシブ：スマートフォン（〜 600px）
   =========================== */
@media (max-width: 600px) {
  .section { padding: 60px 0; }

  .section-title { font-size: 1.4rem; }

  .pain-section .section-title { font-size: clamp(1.05rem, 4.5vw, 1.18rem); }

  .service-container .section-title { font-size: 1.2333rem; }

  .story-new .section-title { font-size: 1.2333rem; }

  .service-visual { width: 100%; }

  .section-sub { font-size: 1rem; }

  .hero {
    padding: 0 0 48px;
  }

  .hero::after {
    display: none;
  }

  .hero-img-pc { display: none; }

  .hero-img-sp {
    display: block;
    position: static;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
  }

  .hero-text {
    max-width: 100%;
    width: 100%;
    padding-top: 28px;
    text-align: center;
  }

  .hero-title { font-size: 1.25rem; }
  .hero-title-catch { font-size: clamp(1.15rem, 0.6rem + 2.44vw, 1.3333rem); line-height: 1.197; position: relative; top: 10px; }

  .hero-title-body {
    font-size: 1.3333rem;
    position: relative;
    top: 15px;
  }

  .hero-title-catch em {
    font-size: clamp(2.3rem, 9vw, 2.8333rem);
    letter-spacing: -0.05em;
    position: relative;
    top: 8.21px;
  }

  .label-tag {
    font-size: clamp(0.88rem, 0.27rem + 2.71vw, 1.0833rem);
  }

  .hero-badges {
    justify-content: center;
    gap: 10px;
    margin-top: -11.65px;
  }

  .hero-badge-item {
    gap: 13px;
  }

  .hero-badge-circle {
    width: clamp(90px, 25px + 19vw, 116.4625px);
    height: clamp(90px, 25px + 19vw, 116.4625px);
  }

  .hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .btn-line-lg,
  .btn-line-xl {
    font-size: clamp(1.05rem, 0.6rem + 2vw, 1.2rem);
    padding: 23.25px clamp(28px, 8px + 5.5vw, 48px) 23.25px clamp(20px, 4px + 4.5vw, 28px);
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .closing-section .btn-line-xl {
    font-size: clamp(1.05rem, 0.6rem + 2vw, 1.2rem);
    padding: 23.25px clamp(28px, 8px + 5.5vw, 48px) 23.25px clamp(20px, 4px + 4.5vw, 28px);
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .trust-bar {
    flex-direction: column;
    gap: 8px;
  }

  .pain-list {
    grid-template-columns: 1fr;
  }

  #features {
    padding-top: 7.5px;
    padding-bottom: 61px;
  }

  #service,
  #area,
  #faq {
    padding-top: 30px;
  }

  .reasons-grid {
    flex-direction: row;
    gap: 14px;
    margin-top: 21.27px;
  }

  .reasons-grid .reason-card {
    flex: 0 1 calc((100% - 14px) / 2);
    padding: 6.912px 5.28px 7px;
  }

  .reasons-grid .reason-card:nth-last-child(-n+2) {
    padding-bottom: 8.4px;
  }

  .reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
  }

  .reason-title {
    font-size: clamp(0.6rem, 2.6vw, 0.68rem);
    line-height: 1.3;
  }

  .reason-desc {
    font-size: clamp(0.52rem, 2.2vw, 0.58rem);
    line-height: 1.5;
    margin-top: 4px;
  }

  .story-voice-card {
    padding: 24px 16px 0;
  }

  .story-quotes-row {
    display: none;
  }

  .story-quotes-sp {
    display: block;
    position: relative;
    z-index: 2;
    width: calc(80% + 10px);
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 5px 9px;
    box-shadow: 0 4px 16px rgba(221,177,210,0.3);
    margin-bottom: 52px;
  }

  .story-quotes-sp::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 16px 13px 0;
    border-style: solid;
    border-color: var(--white) transparent transparent;
  }

  .story-quotes-sp-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .story-quotes-sp-list li {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: clamp(0.78rem, 3.8vw, 0.95rem);
    font-weight: 700;
    color: #555555;
    padding: 8px 0;
  }

  .story-image-ph {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -100px;
    aspect-ratio: 4 / 3;
    position: relative;
    z-index: 1;
    transform: none;
  }

  .story-body {
    position: relative;
    z-index: 2;
    margin-top: 24px;
  }

  .pain-solution-box { padding: 28px 20px; }
  .pain-solution-text { font-size: 1.05rem; }

  .skills-carousel {
    gap: 8px;
    margin-top: 22.4px;
  }

  .skills-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .recommend-list {
    grid-template-columns: 1fr;
  }

  .faq-q, .faq-a-inner { padding: 16px 18px; }

  .closing-section { padding: 72px 0; }
  .closing-title { font-size: 1.2rem; }

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

  .cta-band { padding: 44px 0; }
  .cta-band-text { font-size: 0.95rem; }
}

/* ===========================
   レスポンシブ：極小（〜 390px）
   =========================== */
@media (max-width: 390px) {
  .hero-title { font-size: 1.5rem; }

  .header-inner .btn-line-sm { display: none; }
}

/* ===========================
   レスポンシブ：初代iPhone SE等（〜 359px）
   =========================== */
@media (max-width: 359px) {
  .story-new .section-title br.sp-only {
    display: none;
  }

  .label-tag {
    font-size: 0.8rem;
  }

  .hero-title-catch em {
    font-size: 1.95rem;
  }

  .hero-title-catch {
    font-size: 1rem;
  }

  .hero-title-body {
    font-size: 1.22rem;
  }

  .pain-section .section-title {
    font-size: 0.94rem;
  }

  .hero-badge-circle {
    width: 78px;
    height: 78px;
  }
}
