:root {
  --main: #eb7d26;
  --main-dark: #d96d18;
  --accent: #f4c94d;
  --accent-strong: #f6d93f;
  --accent-soft: #fff2a8;
  --text: #3c3027;
  --muted: #6f6358;
  --bg: #fffdf6;
  --bg-soft: #fbf5e6;
  --bg-cream: #fff8db;
  --line: #eadbc4;
  --card: #fffdfa;
  --card-yellow: #fff9e9;
  --shadow: 0 18px 36px rgba(105, 74, 33, 0.08);
  --radius: 22px;
  --inner: 1100px;
  --medium: 900px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

/* ==========================
共通
========================== */
.container {
  width: min(calc(100% - 40px), var(--inner));
  margin-inline: auto;
}

.container.medium {
  width: min(calc(100% - 40px), var(--medium));
}

.container.narrow {
  width: min(calc(100% - 40px), var(--narrow));
}

.section {
  padding: 104px 0;
}

.section-beige {
  background: #fff9ea;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--main);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.section-title {
  margin: 0 0 54px;
  font-size: clamp(1.75rem, 3.3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

.section-title::after {
  display: block;
  width: 74px;
  height: 5px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--main) 0%, var(--accent) 100%);
  content: "";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 54px;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--main);
  box-shadow: 0 10px 20px rgba(216, 105, 24, 0.22);
}

.btn-primary:hover {
  background: var(--main-dark);
  box-shadow: 0 14px 26px rgba(216, 105, 24, 0.28);
  transform: translateY(-2px);
}

.btn-large {
  min-width: min(100%, 340px);
  min-height: 62px;
  font-size: 1.08rem;
}

.sp-only {
  display: none;
}

/* ==========================
Header
========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 245, 0.96);
  border-bottom: 1px solid rgba(234, 219, 196, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1180px);
  min-height: 78px;
  margin-inline: auto;
}

.site-logo,
.footer-logo {
  display: block;
}

.site-logo img {
  width: 210px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--main);
  border-radius: 999px;
  color: var(--main-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-cta:hover {
  color: #fff;
  background: var(--main);
}

/* ==========================
FV
========================== */
.fv {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background: linear-gradient(135deg, #fff8e8 0%, #fffdf7 58%, #fff0bf 100%);
}

.fv::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(244, 201, 77, 0.42);
  border-radius: 50%;
  content: "";
}

.fv::after {
  position: absolute;
  bottom: -190px;
  left: -120px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(244, 201, 77, 0.26);
  border-radius: 50%;
  content: "";
}

.fv-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 50px;
}

.fv-kicker {
  margin: 0 0 14px;
  color: var(--main);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.fv h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.06em;
}

.fv-text {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 2;
}

.fv-visual {
  position: relative;
  min-height: 328px;
}

.fv-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 94px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 206, 110, 0.48);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.fv-card::before {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.fv-card-map {
  top: 24px;
  left: 12%;
}

.fv-card-web {
  top: 124px;
  right: 5%;
}

.fv-card-ad {
  bottom: 10px;
  left: 15%;
}

.fv-circle {
  position: absolute;
  border-radius: 50%;
}

.fv-circle-large {
  top: 38px;
  right: 23%;
  width: 172px;
  height: 172px;
  background: rgba(246, 217, 63, 0.26);
}

.fv-circle-small {
  right: 32px;
  bottom: 8px;
  width: 76px;
  height: 76px;
  background: rgba(244, 201, 77, 0.26);
}

.fv-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--main);
}

.fv-dot-one {
  top: 96px;
  left: 8%;
}

.fv-dot-two {
  right: 14%;
  bottom: 114px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

/* ==========================
Mobile CTA
========================== */
.mobile-cta {
  display: none;
}

/* ==========================
悩み
========================== */
.trouble {
  padding-top: 96px;
}

.lead-title {
  margin: 0 0 40px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}

.trouble-illust {
  width: min(100%, 660px);
  margin: 0 auto 32px;
}

.center-text {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 42px;
  margin-top: 70px;
}

.problem-card {
  position: relative;
  padding: 0 30px 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(244, 201, 77, 0.18);
  box-shadow: var(--shadow);
}

.problem-label {
  display: grid;
  width: min(100%, 260px);
  min-height: 48px;
  margin: -24px auto 20px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  place-items: center;
  text-align: center;
}

.problem-illust {
  width: min(100%, 216px);
  height: 150px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.problem-card h4 {
  margin: 0 0 16px;
  padding-bottom: 13px;
  border-bottom: 4px solid var(--accent);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
}

.problem-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-card li {
  position: relative;
  padding-left: 1.2em;
}

.problem-card li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--main);
  content: "";
}

.closing-copy {
  margin: 68px 0 0;
  font-size: clamp(1.14rem, 2.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

/* ==========================
相談の流れ
========================== */
.flow {
  background: linear-gradient(180deg, #fffdf7 0%, #fff9ee 100%);
}

.flow-list {
  display: grid;
  gap: 32px;
}

.flow-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: 20px 0 52px;
  border-bottom: 1px solid var(--line);
}

.flow-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.flow-item-reverse .flow-content {
  order: 2;
}

.flow-item-reverse .flow-illust {
  order: 1;
}

.flow-content {
  padding: 10px 0;
}

.flow-number {
  margin: 0 0 8px;
  color: var(--main);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.flow-content h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.76rem);
  font-weight: 600;
  line-height: 1.55;
}

.flow-content h3::after {
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.flow-content > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.flow-illust {
  width: 100%;
  max-height: 235px;
  object-fit: contain;
}

/* ==========================
実績
========================== */
.cases {
  background: linear-gradient(180deg, #fbf5e6 0%, #fff9ef 100%);
}

.case-list {
  display: grid;
  gap: 42px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 36px;
  padding: 38px 44px;
  border-radius: var(--radius);
  background: var(--card-yellow);
  border: 1px solid rgba(240, 206, 110, 0.32);
  box-shadow: var(--shadow);
}

.case-card-reverse .case-copy {
  order: 2;
}

.case-card-reverse .case-illust {
  order: 1;
}

.case-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.case-balloon {
  position: relative;
  margin: 0 0 26px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffef8;
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.65;
}

.case-balloon::after {
  position: absolute;
  right: 30px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffef8;
  content: "";
  transform: rotate(45deg);
}

.case-copy h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 1.5em;
}

.check-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.75em;
  left: 0.32em;
  width: 0.32em;
  height: 0.16em;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.case-result {
  margin: 22px 0 0;
  color: var(--main-dark);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.75;
}

.case-illust {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff5d9;
}

.case-illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* ==========================
プラン
========================== */
.plan {
  background: linear-gradient(180deg, #fffdf6 0%, #fff8dd 100%);
}

.plan-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 46px 52px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.plan-heading .section-kicker {
  text-align: left;
}

.plan-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.46rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
}

.plan-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.plan-price {
  min-width: 255px;
  padding-left: 34px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.price-main {
  margin: 0;
  color: var(--main-dark);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
}

.price-main span {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.25;
}

.price-note,
.under-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.price-note {
  margin: 12px 0 0;
}

.under-note {
  width: min(100%, 720px);
  margin: 24px auto 0;
  text-align: center;
}

/* ==========================
FAQ
========================== */
.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdfa;
}

.faq-item summary {
  position: relative;
  padding: 20px 58px 20px 24px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.6;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--main);
  content: "";
  transition: transform 0.2s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

/* ==========================
プロフィール
========================== */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  gap: 60px;
  margin-bottom: 58px;
}

.profile-copy h3 {
  margin: 0 0 18px;
  font-size: 1.44rem;
  font-weight: 600;
}

.profile-copy p {
  margin: 0 0 16px;
}

.profile-copy p:last-child {
  margin-bottom: 0;
}

.profile-photo {
  display: grid;
  min-height: 270px;
  margin: 0;
  border: 1px dashed #d8c5b1;
  border-radius: 18px;
  background: var(--bg-soft);
  place-items: center;
}

.profile-photo-placeholder {
  color: #a8998b;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
}

.promise-box {
  width: min(100%, 610px);
  margin: 0 auto;
  padding: 34px 42px;
  border-radius: 18px;
  background: #fff9ea;
  border: 1px solid rgba(240, 206, 110, 0.24);
  text-align: center;
}

.promise-box h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 600;
}

.promise-box .check-list {
  display: inline-block;
  text-align: left;
}

/* ==========================
CTA
========================== */
.contact {
  padding: 92px 0;
  background: linear-gradient(180deg, #ffe06a 0%, #f6d93f 100%);
}

.contact-inner {
  text-align: center;
}

.contact h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.contact-inner > p:not(.section-kicker) {
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================
Footer
========================== */
.site-footer {
  padding: 38px 0;
  background: #fff6cf;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  width: 164px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ==========================
レスポンシブ
========================== */
@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .fv {
    padding: 66px 0 72px;
  }

  .fv-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fv-copy {
    text-align: center;
  }

  .fv-visual {
    width: min(100%, 430px);
    min-height: 270px;
    margin-inline: auto;
  }

  .fv-card-map {
    left: 10%;
  }

  .fv-card-web {
    right: 5%;
  }

  .fv-card-ad {
    left: 18%;
  }

  .flow-item,
  .flow-item-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-item-reverse .flow-content,
  .flow-item-reverse .flow-illust {
    order: initial;
  }

  .flow-illust {
    max-height: 260px;
  }

  .case-card,
  .case-card-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-card-reverse .case-copy,
  .case-card-reverse .case-illust {
    order: initial;
  }

  .case-illust {
    width: min(100%, 240px);
    margin-inline: auto;
  }

  .case-card-sp-image-first {
    display: grid;
  }

  .case-card-sp-image-first .case-copy {
    display: contents;
  }

  .case-card-sp-image-first .case-label {
    order: 1;
  }

  .case-card-sp-image-first .case-illust {
    order: 3;
    width: min(100%, 460px);
    height: 220px;
    margin-inline: auto;
  }

  .case-card-sp-image-first .case-balloon {
    order: 2;
    margin-bottom: 14px;
  }

  .case-card-sp-image-first .case-copy h3 {
    order: 4;
  }

  .case-card-sp-image-first .check-list {
    order: 5;
  }

  .case-card-sp-image-first .case-result {
    order: 6;
    margin-top: 12px;
  }

  .plan-box {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px;
    text-align: center;
  }

  .plan-heading .section-kicker {
    text-align: center;
  }

  .plan-price {
    min-width: 0;
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .profile-photo {
    width: min(100%, 280px);
    min-height: 220px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 64px;
  }

  body {
    padding-bottom: 78px;
    font-size: 15px;
    line-height: 1.8;
  }

  .container,
  .container.medium,
  .container.narrow {
    width: min(calc(100% - 40px), var(--inner));
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .header-inner {
    min-height: 62px;
  }

  .site-logo img {
    width: 172px;
  }

  .header-cta {
    display: none;
  }

  .fv {
    padding: 52px 0 60px;
  }

  .fv-kicker {
    margin-bottom: 10px;
    font-size: 0.8rem;
  }

  .fv h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .fv-text {
    margin: 20px 0 28px;
    font-size: 0.93rem;
    line-height: 1.9;
  }

  .fv .btn {
    min-width: 220px;
  }

  .fv-visual {
    min-height: 234px;
  }

  .fv-card {
    width: 142px;
    min-height: 74px;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .fv-card::before {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .fv-card-map {
    top: 16px;
    left: 8%;
  }

  .fv-card-web {
    top: 87px;
    right: 4%;
  }

  .fv-card-ad {
    bottom: 0;
    left: 14%;
  }

  .fv-circle-large {
    top: 31px;
    right: 18%;
    width: 130px;
    height: 130px;
  }

  .fv-circle-small {
    right: 7%;
    bottom: 0;
    width: 58px;
    height: 58px;
  }

  .fv-dot-one {
    top: 73px;
    left: 5%;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    padding: 10px 20px;
    background: rgba(255, 250, 237, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -5px 18px rgba(79, 57, 36, 0.08);
    place-items: center;
  }

  .mobile-cta .btn {
    width: min(100%, 360px);
    min-height: 48px;
  }

  .lead-title {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }

  .trouble-illust {
    margin-bottom: 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 58px;
  }

  .problem-card {
    padding: 0 22px 28px;
  }

  .problem-card h4 {
    font-size: 1rem;
  }

  .closing-copy {
    margin-top: 54px;
    font-size: 1.08rem;
  }

  .flow-list {
    gap: 0;
  }

  .flow-item {
    gap: 18px;
    padding: 10px 0 42px;
    margin-bottom: 32px;
  }

  .flow-content h3 {
    font-size: 1.34rem;
  }

  .flow-content > p:last-child {
    margin-top: 12px;
  }

  .flow-illust {
    max-height: 200px;
  }

  .case-list {
    gap: 28px;
  }

  .case-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .case-balloon {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .case-illust {
    height: 210px;
  }

  .plan-box {
    padding: 30px 22px;
  }

  .faq-item summary {
    padding: 17px 52px 17px 18px;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .profile-grid {
    margin-bottom: 38px;
  }

  .promise-box {
    padding: 28px 20px;
  }

  .contact {
    padding: 64px 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ==========================
SP 事例カードの並び調整
========================== */
@media (max-width: 820px) {
  .case-card-sp-image-first .case-label {
    order: 1;
  }

  .case-card-sp-image-first .case-balloon {
    order: 2;
    margin-bottom: 14px;
  }

  .case-card-sp-image-first .case-illust {
    order: 3;
    height: 220px;
    margin: 0 auto 20px;
  }

  .case-card-sp-image-first .case-copy h3 {
    order: 4;
  }

  .case-card-sp-image-first .check-list {
    order: 5;
  }

  .case-card-sp-image-first .case-result {
    order: 6;
  }
}

/* ==========================
文字サイズ・メリハリ調整
========================== */
body {
  font-size: 17px;
  line-height: 1.95;
}

.section-kicker {
  font-size: 0.96rem;
}

.section-title {
  margin-bottom: 48px;
  font-size: clamp(1.95rem, 3.5vw, 2.55rem);
}

.btn {
  font-size: 1.08rem;
}

.header-cta {
  font-size: 0.98rem;
}

.fv-kicker {
  font-size: 1.02rem;
}

.fv h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.45rem);
  line-height: 1.48;
}

.fv-text {
  font-size: clamp(1.08rem, 1.95vw, 1.24rem);
}

.fv-card {
  font-size: 1.02rem;
}

.lead-title {
  font-size: clamp(1.7rem, 3.1vw, 2.25rem);
}

.center-text,
.problem-card li,
.flow-content > p:last-child,
.faq-item p,
.contact-inner > p:not(.section-kicker),
.site-footer p {
  font-size: 1.02rem;
}

.problem-label,
.case-copy h3,
.promise-box h3,
.faq-item summary {
  font-size: 1.08rem;
}

.problem-card h4 {
  font-size: 1.18rem;
  line-height: 1.65;
}

.closing-copy {
  font-size: clamp(1.24rem, 2.3vw, 1.62rem);
}

.flow-number,
.case-label {
  font-size: 0.98rem;
}

.flow-content h3 {
  font-size: clamp(1.42rem, 2.7vw, 1.92rem);
}

.case-balloon {
  margin-bottom: 20px;
  font-size: clamp(1.12rem, 2.05vw, 1.34rem);
  line-height: 1.62;
}

.case-result {
  font-size: 1.12rem;
  line-height: 1.7;
}

.plan-heading h2 {
  font-size: clamp(1.6rem, 2.95vw, 2.12rem);
}

.price-main {
  font-size: 1.08rem;
}

.price-main span {
  font-size: clamp(1.95rem, 3.2vw, 2.65rem);
}

.price-note,
.under-note {
  font-size: 0.96rem;
}

.profile-copy h3 {
  font-size: 1.58rem;
}

.contact h2 {
  font-size: clamp(1.8rem, 3.15vw, 2.45rem);
}

/* ==========================
ご相談いただいた例 詰め調整
========================== */
.cases .section-title {
  margin-bottom: 38px;
}

.case-list {
  gap: 26px;
}

.case-card {
  gap: 28px;
  padding: 30px 34px;
}

.case-label {
  margin-bottom: 10px;
}

.case-copy h3 {
  margin-bottom: 6px;
}

.check-list li {
  margin-bottom: 4px;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.case-result {
  margin-top: 16px;
}

.case-illust {
  height: 220px;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
    line-height: 1.9;
  }

  .section-title {
    font-size: clamp(1.82rem, 4.8vw, 2.2rem);
    margin-bottom: 38px;
  }

  .fv h1 {
    font-size: clamp(1.98rem, 6vw, 2.5rem);
  }

  .fv-text {
    font-size: 1.02rem;
  }

  .problem-label,
  .case-copy h3,
  .faq-item summary {
    font-size: 1.04rem;
  }

  .problem-card h4,
  .flow-content h3,
  .case-balloon,
  .case-result,
  .contact h2,
  .lead-title {
    font-size: 1.22rem;
  }

  .case-list {
    gap: 20px;
  }

  .case-card {
    gap: 18px;
    padding: 24px 20px;
  }

  .case-illust {
    height: 190px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.85;
  }

  .section-title {
    margin-bottom: 34px;
    font-size: clamp(1.72rem, 7vw, 2rem);
  }

  .btn {
    font-size: 1.06rem;
  }

  .fv-kicker,
  .section-kicker,
  .header-cta {
    font-size: 0.9rem;
  }

  .fv h1 {
    font-size: clamp(1.95rem, 8vw, 2.34rem);
    line-height: 1.45;
  }

  .fv-text,
  .center-text,
  .contact-inner > p:not(.section-kicker),
  .under-note,
  .price-note,
  .faq-item p {
    font-size: 0.98rem;
  }

  .lead-title {
    font-size: 1.56rem;
  }

  .problem-label {
    font-size: 1.02rem;
  }

  .problem-card h4 {
    font-size: 1.12rem;
  }

  .problem-card li,
  .check-list li,
  .profile-copy p,
  .promise-box .check-list,
  .flow-content > p:last-child,
  .site-footer p {
    font-size: 1rem;
  }

  .flow-content h3 {
    font-size: 1.42rem;
  }

  .case-copy h3 {
    font-size: 1.18rem;
  }

  .case-balloon {
    margin-bottom: 14px;
    font-size: 1.14rem;
  }

  .case-result {
    font-size: 1.08rem;
    margin-top: 14px;
  }

  .cases .section-title {
    margin-bottom: 30px;
  }

  .case-list {
    gap: 16px;
  }

  .case-card {
    padding: 20px 18px;
    gap: 14px;
  }

  .case-label {
    min-height: 32px;
    margin-bottom: 8px;
    padding: 5px 12px;
    font-size: 0.98rem;
  }

  .case-illust {
    height: 180px;
  }

  .case-card-sp-image-first .case-balloon {
    margin-bottom: 10px;
  }

  .case-card-sp-image-first .case-illust {
    height: 185px;
    margin: 0 auto 12px;
  }

  .plan-heading h2 {
    font-size: 1.54rem;
  }

  .price-main {
    font-size: 1rem;
  }

  .price-main span {
    font-size: 2.05rem;
  }

  .profile-copy h3 {
    font-size: 1.46rem;
  }

  .contact h2 {
    font-size: 1.7rem;
  }
}


/* ==========================
PC ご相談いただいた例 表示戻し
========================== */
@media (min-width: 821px) {
  .cases .section-title {
    margin-bottom: 54px;
  }

  .case-list {
    gap: 42px;
  }

  .case-card {
    gap: 36px;
    padding: 38px 44px;
  }

  .case-label {
    margin-bottom: 12px;
  }

  .case-balloon {
    margin-bottom: 26px;
    font-size: clamp(1.03rem, 2vw, 1.25rem);
    line-height: 1.65;
  }

  .case-copy h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .check-list li {
    margin-bottom: 0;
  }

  .case-result {
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .case-illust {
    height: 240px;
  }
}

/* ==========================
配色・プラン見せ方 最終調整
========================== */
:root {
  --bg: #ffffff;
  --bg-soft: #fff9ec;
  --bg-cream: #fff9ec;
  --card: #ffffff;
  --card-yellow: #fffdf6;
  --cta-yellow: #ffe46a;
  --line-accent: #ffe46a;
}

body {
  background: #ffffff;
}

.section-beige {
  background: #fff9ec;
}

.site-header {
  background: rgba(255, 253, 247, 0.96);
}

.fv {
  background: #fff9ec;
}

.flow,
.plan,
.profile {
  background: #ffffff;
}

.cases,
.faq {
  background: #fff9ec;
}

.problem-card,
.faq-item,
.profile-photo {
  background: #ffffff;
}

.case-card,
.promise-box {
  background: #fffdf6;
}

.section-title::after,
.flow-content h3::after,
.problem-card h4 {
  background: var(--line-accent);
  border-color: var(--line-accent);
}

.problem-card h4 {
  border-bottom-color: var(--line-accent);
}

/* ==========================
プラン：A案ベース＋C案のやわらかい装飾
========================== */
.plan {
  background: #ffffff;
}

.plan-box {
  position: relative;
  display: block;
  width: min(100%, 860px);
  padding: 54px 56px 42px;
  overflow: hidden;
  border: 1px solid rgba(234, 219, 196, 0.9);
  background: #ffffff;
  text-align: center;
}

.plan-box::before,
.plan-box::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.plan-box::before {
  top: -48px;
  left: -42px;
  width: 138px;
  height: 138px;
  background: radial-gradient(circle, rgba(255, 228, 106, 0.24) 0%, rgba(255, 228, 106, 0.08) 62%, rgba(255, 228, 106, 0) 63%);
}

.plan-box::after {
  right: -34px;
  bottom: -34px;
  width: 122px;
  height: 122px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 228, 106, 0.34) 0, rgba(255, 228, 106, 0.34) 3px, transparent 3.5px) 0 0/12px 12px,
    rgba(255, 228, 106, 0.08);
}

.plan-heading {
  position: relative;
  z-index: 1;
}

.plan-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 auto 18px;
  padding: 6px 18px;
  border-radius: 999px;
  color: var(--main);
  background: #fff8e6;
  text-align: center;
}

.plan-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.plan-heading > p:last-child {
  max-width: 540px;
  margin: 0 auto;
}

.plan-price {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-top: 32px;
  padding: 28px 0 0;
  border-top: 2px dashed rgba(255, 228, 106, 0.95);
  border-left: 0;
  text-align: center;
}

.price-main {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.55;
}

.price-main span {
  display: inline-block;
  margin-right: 10px;
  color: var(--main);
  font-size: clamp(3.35rem, 8vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.price-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.under-note {
  width: min(100%, 740px);
  margin-top: 22px;
  color: var(--muted);
}

/* ==========================
CTA・黄色のなじませ調整
========================== */
.contact {
  background: var(--cta-yellow);
}

.contact .section-kicker {
  color: var(--main-dark);
}

.site-footer {
  background: #fff9ec;
  border-top: 1px solid rgba(255, 228, 106, 0.8);
}

/* 装飾線などに黄色をなじませる */
.case-balloon::after,
.plan-price,
.mobile-cta {
  border-color: rgba(255, 228, 106, 0.95);
}

@media (max-width: 820px) {
  .plan-box {
    padding: 42px 28px 34px;
  }

  .plan-heading h2 {
    font-size: 1.72rem;
  }

  .plan-price {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 2px dashed rgba(255, 228, 106, 0.95);
  }

  .price-main span {
    display: block;
    margin: 0 0 8px;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }
}

@media (max-width: 600px) {
  .fv::before,
  .fv::after {
    opacity: 0.7;
  }

  .plan-box {
    padding: 36px 20px 30px;
  }

  .plan-heading .section-kicker {
    min-height: 32px;
    margin-bottom: 16px;
    padding: 5px 16px;
  }

  .plan-heading h2 {
    font-size: 1.58rem;
  }

  .price-main {
    font-size: 1.02rem;
  }

  .price-main span {
    font-size: clamp(2.55rem, 14vw, 3.7rem);
  }

  .price-note,
  .under-note {
    font-size: 0.9rem;
  }

  .contact {
    background: var(--cta-yellow);
  }
}

/* ==========================
悩みセクション見出しを前の表示に戻す
========================== */
.section-title::after,
.flow-content h3::after {
  background: var(--line-accent);
  border-color: var(--line-accent);
}

.problem-card h4 {
  display: block;
  background: transparent;
  border-bottom: 4px solid var(--accent);
  border-color: var(--accent);
}

/* ==========================
最下部CTAはボタン部分だけ黄色の帯
========================== */
.contact {
  background: #fff9ec;
}

.contact-button-band {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 980px);
  margin: 36px auto 0;
  padding: 34px 24px;
  border-radius: 18px;
  background: var(--cta-yellow);
}

.contact-button-band .btn-large {
  min-width: min(100%, 520px);
}

@media (max-width: 820px) {
  .contact {
    background: #fff9ec;
  }

  .contact-button-band {
    margin-top: 30px;
    padding: 28px 18px;
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .contact {
    background: #fff9ec;
  }

  .contact-button-band {
    width: min(100%, 100%);
    margin-top: 24px;
    padding: 22px 14px;
    border-radius: 14px;
  }

  .contact-button-band .btn-large {
    min-width: 100%;
  }
}


/* ==========================
フッター注記・料金注記・CTA帯調整
========================== */
.price-note {
  font-size: 1.02rem;
  line-height: 1.8;
}

.footer-inner {
  align-items: flex-start;
}

.footer-disclaimer {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.contact-button-band {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

@media (max-width: 820px) {
  .price-note {
    font-size: 1rem;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer-disclaimer {
    max-width: 100%;
    font-size: 0.76rem;
  }

  .contact-button-band {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .price-note {
    font-size: 0.98rem;
  }

  .footer-disclaimer {
    font-size: 0.72rem;
  }

  .contact-button-band {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }
}


/* ==========================
FVリデザイン（イラスト系・アニメーション）
========================== */
.fv {
  position: relative;
  overflow: hidden;
  padding: 78px 0 42px;
  background: #fffefb;
}

.fv::before,
.fv::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.fv::before {
  top: -110px;
  right: -30px;
  width: 430px;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 228, 106, 0.38) 0%, rgba(255, 228, 106, 0.18) 58%, rgba(255, 228, 106, 0) 72%);
  animation: fvFloatSlow 8s ease-in-out infinite;
}

.fv::after {
  bottom: -110px;
  left: -80px;
  width: 420px;
  height: 190px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 228, 106, 0.32) 0%, rgba(255, 228, 106, 0.14) 60%, rgba(255, 228, 106, 0) 72%);
  animation: fvFloatSlow 9s ease-in-out infinite reverse;
}

.fv-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 16px;
  min-height: 700px;
}

.fv-copy {
  position: relative;
  z-index: 2;
  padding: 24px 0 64px;
}

.fv-kicker {
  margin: 0 0 24px;
}

.fv-kicker span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--main);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.fv-kicker span::after {
  display: block;
  width: 100%;
  height: 0;
  margin-left: 16px;
  border-bottom: 6px dotted rgba(235, 125, 38, 0.9);
  content: "";
}

.fv h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.03em;
}

.fv h1 span {
  color: var(--main);
}

.fv-text {
  max-width: 660px;
  margin: 28px 0 36px;
  color: var(--text);
  font-size: clamp(1.16rem, 1.95vw, 1.5rem);
  line-height: 1.9;
}

.fv-actions {
  position: relative;
}

.fv-actions::before {
  position: absolute;
  top: -12px;
  left: -16px;
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--main);
  border-left: 3px solid var(--main);
  border-radius: 3px;
  content: "";
  transform: rotate(-14deg);
}

.fv .btn {
  min-width: 320px;
  min-height: 70px;
  padding: 16px 34px;
  font-size: 1.28rem;
  box-shadow: 0 16px 30px rgba(235, 125, 38, 0.18);
}

.fv-visual {
  position: relative;
  min-height: 700px;
  overflow: visible;
}

.fv-main-illust {
  position: absolute;
  right: -70px;
  bottom: -6px;
  width: min(100%, 940px);
  max-width: 940px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(112, 92, 60, 0.1));
  animation: fvFadeUp 1.1s 0.2s both, fvFloat 6.2s 1.3s ease-in-out infinite;
}

.fv-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.fv-blob-top {
  top: 16px;
  right: 8px;
  width: 235px;
  height: 235px;
  background: rgba(255, 228, 106, 0.25);
  animation: fvPulse 7s ease-in-out infinite;
}

.fv-blob-bottom {
  right: -28px;
  bottom: -34px;
  width: 300px;
  height: 128px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 228, 106, 0.22);
  transform: rotate(-10deg);
  animation: fvFloatSlow 7.2s ease-in-out infinite;
}

.fv-blob-small {
  top: 136px;
  right: 30px;
  width: 66px;
  height: 66px;
  background: rgba(255, 228, 106, 0.28);
  animation: fvPulse 5.8s ease-in-out infinite;
}

.fv-dot-cluster {
  position: absolute;
  width: 126px;
  height: 126px;
  background-image: radial-gradient(rgba(244, 182, 76, 0.9) 1.8px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.7;
  pointer-events: none;
}

.fv-dot-cluster-left {
  left: 8px;
  bottom: 10px;
  animation: fvFloatSlow 8.5s ease-in-out infinite;
}

.fv-dot-cluster-right {
  right: 36px;
  bottom: 72px;
  animation: fvFloatSlow 9s ease-in-out infinite reverse;
}

.fv-copy > * {
  opacity: 0;
  animation: fvFadeUp 0.85s ease forwards;
}

.fv-kicker { animation-delay: 0.05s; }
.fv h1 { animation-delay: 0.18s; }
.fv-text { animation-delay: 0.32s; }
.fv-actions { animation-delay: 0.46s; }

@keyframes fvFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fvFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes fvFloatSlow {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes fvPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.95;
  }
}

@media (max-width: 1180px) {
  .fv-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1fr);
  }

  .fv-main-illust {
    right: -24px;
    width: min(100%, 820px);
  }
}

@media (max-width: 900px) {
  .fv {
    padding: 60px 0 34px;
  }

  .fv-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .fv-copy {
    padding: 8px 0 0;
    text-align: center;
  }

  .fv-kicker span::after {
    display: none;
  }

  .fv-text {
    margin-right: auto;
    margin-left: auto;
  }

  .fv-actions::before {
    left: 50%;
    transform: translateX(-186px) rotate(-14deg);
  }

  .fv-visual {
    min-height: 510px;
  }

  .fv-main-illust {
    right: 50%;
    bottom: 0;
    width: min(100%, 760px);
    transform: translateX(50%);
  }

  .fv-dot-cluster-left {
    left: 12px;
    bottom: 24px;
  }

  .fv-dot-cluster-right {
    right: 22px;
    bottom: 42px;
  }
}

@media (max-width: 600px) {
  .fv {
    padding: 48px 0 26px;
  }

  .fv::before {
    top: -90px;
    right: -80px;
    width: 260px;
    height: 200px;
  }

  .fv::after {
    bottom: -80px;
    left: -60px;
    width: 260px;
    height: 130px;
  }

  .fv-kicker span {
    justify-content: center;
    font-size: 0.92rem;
  }

  .fv h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.4;
  }

  .fv-text {
    margin: 22px auto 28px;
    font-size: 1rem;
    line-height: 1.85;
  }

  .fv .btn {
    min-width: 100%;
    min-height: 60px;
    font-size: 1.12rem;
  }

  .fv-actions::before {
    left: 0;
    transform: rotate(-14deg);
  }

  .fv-visual {
    min-height: 320px;
    margin-top: 8px;
  }

  .fv-main-illust {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .fv-blob-top {
    width: 120px;
    height: 120px;
    right: 0;
  }

  .fv-blob-small {
    top: 72px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .fv-blob-bottom {
    right: -18px;
    bottom: 0;
    width: 180px;
    height: 78px;
  }

  .fv-dot-cluster {
    width: 84px;
    height: 84px;
    background-size: 11px 11px;
  }

  .fv-dot-cluster-left {
    left: 0;
    bottom: 0;
  }

  .fv-dot-cluster-right {
    right: 12px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv-copy > *,
  .fv-main-illust,
  .fv::before,
  .fv::after,
  .fv-blob,
  .fv-dot-cluster {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================
FV最終調整：分解画像＋吹き出しアニメーション
========================== */
.fv.fv-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 34px;
  background: #fffefb;
}

.fv.fv-hero::before,
.fv.fv-hero::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  animation: none;
}

.fv.fv-hero::before {
  top: -118px;
  right: -28px;
  width: 420px;
  height: 240px;
  background: rgba(255, 228, 106, 0.32);
}

.fv.fv-hero::after {
  bottom: -86px;
  left: -76px;
  width: 430px;
  height: 160px;
  background: rgba(255, 228, 106, 0.26);
}

.fv.fv-hero .fv-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  min-height: min(720px, calc(100vh - 90px));
}

.fv.fv-hero .fv-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 18px;
  text-align: left;
}

.fv.fv-hero .fv-copy > * {
  opacity: 1;
  animation: none;
}

.fv.fv-hero .fv-kicker {
  display: none;
}

.fv.fv-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.05rem, 5vw, 4.65rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fv.fv-hero h1 span {
  color: var(--main);
}

.fv.fv-hero .fv-text {
  width: max-content;
  max-width: 100%;
  margin: 30px 0 36px;
  color: var(--text);
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  font-weight: 500;
  line-height: 1.9;
  white-space: nowrap;
}

.fv.fv-hero .fv-actions {
  position: relative;
}

.fv.fv-hero .fv-actions::before {
  position: absolute;
  top: -12px;
  left: -18px;
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--main);
  border-left: 3px solid var(--main);
  border-radius: 3px;
  content: "";
  transform: rotate(-14deg);
}

.fv.fv-hero .btn {
  min-width: 290px;
  min-height: 64px;
  padding: 14px 34px;
  font-size: 1.18rem;
}

.fv.fv-hero .fv-visual {
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1536 / 1024;
  min-height: 0;
  margin: 0 auto;
  overflow: visible;
}

.fv.fv-hero .fv-main-illust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(112, 92, 60, 0.08));
  opacity: 1;
  animation: none;
  transform: none;
}

.fv.fv-hero .fv-bubble {
  position: absolute;
  z-index: 2;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: fvBubbleIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
}

.fv.fv-hero .fv-bubble-map {
  top: 17.38%;
  left: 14.52%;
  width: 22.72%;
  animation-delay: 0.2s;
}

.fv.fv-hero .fv-bubble-hp {
  top: 7.42%;
  left: 37.24%;
  width: 23.5%;
  animation-delay: 0.38s;
}

.fv.fv-hero .fv-bubble-sns {
  top: 11.52%;
  left: 61.26%;
  width: 21.22%;
  animation-delay: 0.56s;
}

.fv.fv-hero .fv-bubble-ad {
  top: 41.02%;
  left: 76.24%;
  width: 15.69%;
  animation-delay: 0.74s;
}

@keyframes fvBubbleIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1180px) {
  .fv.fv-hero .fv-inner {
    grid-template-columns: minmax(380px, 0.9fr) minmax(460px, 1.1fr);
  }

  .fv.fv-hero h1 {
    font-size: clamp(2.7rem, 4.8vw, 3.8rem);
  }

  .fv.fv-hero .fv-text {
    font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  }
}

@media (max-width: 900px) {
  .fv.fv-hero {
    padding: 54px 0 28px;
  }

  .fv.fv-hero .fv-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .fv.fv-hero .fv-copy {
    text-align: center;
  }

  .fv.fv-hero h1 {
    white-space: normal;
  }

  .fv.fv-hero .fv-text {
    width: auto;
    margin-right: auto;
    margin-left: auto;
    white-space: normal;
  }

  .fv.fv-hero .fv-actions::before {
    left: 50%;
    transform: translateX(-178px) rotate(-14deg);
  }

  .fv.fv-hero .fv-visual {
    width: min(100%, 720px);
  }
}

@media (max-width: 600px) {
  .fv.fv-hero {
    padding: 42px 0 26px;
  }

  .fv.fv-hero::before {
    top: -92px;
    right: -86px;
    width: 260px;
    height: 180px;
  }

  .fv.fv-hero::after {
    bottom: -62px;
    left: -70px;
    width: 260px;
    height: 110px;
  }

  .fv.fv-hero h1 {
    font-size: clamp(2.15rem, 9vw, 2.75rem);
    line-height: 1.38;
  }

  .fv.fv-hero .fv-text {
    margin: 22px auto 28px;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .fv.fv-hero .btn {
    min-width: 100%;
    min-height: 58px;
    font-size: 1.1rem;
  }

  .fv.fv-hero .fv-actions::before {
    left: 0;
    transform: rotate(-14deg);
  }

  .fv.fv-hero .fv-visual {
    width: min(100%, 520px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv.fv-hero .fv-bubble {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ==========================
FVあしらい追加調整
========================== */
.fv.fv-hero {
  background: #fdfdfb;
}

.fv.fv-hero::before {
  top: -98px;
  left: -88px;
  right: auto;
  width: 420px;
  height: 280px;
  border-radius: 0 0 72% 0;
  background: #f8f2df;
}

.fv.fv-hero::after {
  right: -64px;
  bottom: -44px;
  left: auto;
  width: 420px;
  height: 170px;
  border-radius: 70% 0 0 0;
  background: #f8f2df;
}

.fv.fv-hero .fv-copy {
  padding-bottom: 34px;
}

.fv.fv-hero .fv-actions::after {
  position: absolute;
  top: -6px;
  left: -42px;
  width: 52px;
  height: 22px;
  background:
    linear-gradient(var(--line-accent), var(--line-accent)) 0 100% / 24px 4px no-repeat,
    linear-gradient(var(--line-accent), var(--line-accent)) 28px 0 / 4px 22px no-repeat;
  content: "";
  transform: rotate(-12deg);
  opacity: 0.9;
}

.fv.fv-hero .fv-visual {
  overflow: visible;
}

.fv.fv-hero .fv-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.fv.fv-hero .fv-deco-surface {
  right: -6%;
  bottom: -1.5%;
  width: 78%;
  height: 34%;
  border-radius: 58% 42% 0 0 / 58% 58% 0 0;
  background: linear-gradient(180deg, rgba(249, 242, 218, 0.78) 0%, rgba(248, 236, 196, 0.96) 100%);
}

.fv.fv-hero .fv-deco-top-circle {
  top: -2%;
  right: 1%;
  width: 27%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 236, 172, 0.76) 0%, rgba(255, 236, 172, 0.4) 48%, rgba(255, 236, 172, 0) 74%);
}

.fv.fv-hero .fv-deco-small-circle {
  top: 11%;
  right: 29%;
  width: 5.8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 228, 106, 0.78);
  box-shadow: 0 0 0 8px rgba(255, 228, 106, 0.18);
}

.fv.fv-hero .fv-deco-dots-left,
.fv.fv-hero .fv-deco-dots-right {
  width: 13%;
  aspect-ratio: 1;
  background-image: radial-gradient(rgba(241, 188, 65, 0.95) 1.7px, transparent 1.7px);
  background-size: 13px 13px;
  opacity: 0.88;
}

.fv.fv-hero .fv-deco-dots-left {
  left: 2%;
  bottom: 23%;
}

.fv.fv-hero .fv-deco-dots-right {
  right: 8%;
  bottom: 42%;
}

.fv.fv-hero .fv-deco-stroke-left,
.fv.fv-hero .fv-deco-stroke-right {
  width: 38px;
  height: 30px;
}

.fv.fv-hero .fv-deco-stroke-left::before,
.fv.fv-hero .fv-deco-stroke-left::after,
.fv.fv-hero .fv-deco-stroke-right::before,
.fv.fv-hero .fv-deco-stroke-right::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--main);
  content: "";
  transform-origin: center;
}

.fv.fv-hero .fv-deco-stroke-left {
  left: 25%;
  top: 48%;
}

.fv.fv-hero .fv-deco-stroke-right {
  right: 40%;
  top: 57%;
}

.fv.fv-hero .fv-deco-stroke-left::before,
.fv.fv-hero .fv-deco-stroke-right::before {
  transform: translate(-50%, -50%) rotate(-20deg);
}

.fv.fv-hero .fv-deco-stroke-left::after,
.fv.fv-hero .fv-deco-stroke-right::after {
  transform: translate(-18%, -50%) rotate(24deg);
}

.fv.fv-hero .fv-main-illust {
  z-index: 1;
  inset: auto 0 0 0;
  height: auto;
}

.fv.fv-hero .fv-bubble {
  z-index: 3;
}

.fv.fv-hero .fv-bubble-map {
  top: 14%;
  left: 13%;
  width: 23.5%;
}

.fv.fv-hero .fv-bubble-hp {
  top: 4%;
  left: 38%;
  width: 24%;
}

.fv.fv-hero .fv-bubble-sns {
  top: 10%;
  left: 64%;
  width: 21.5%;
}

.fv.fv-hero .fv-bubble-ad {
  top: 40%;
  left: 82%;
  width: 15.5%;
}

@media (max-width: 1180px) {
  .fv.fv-hero .fv-deco-dots-right {
    right: 2%;
  }

  .fv.fv-hero .fv-bubble-ad {
    left: 80%;
  }
}

@media (max-width: 900px) {
  .fv.fv-hero::before {
    top: -78px;
    left: -64px;
    width: 280px;
    height: 200px;
  }

  .fv.fv-hero::after {
    right: -42px;
    bottom: -30px;
    width: 260px;
    height: 110px;
  }

  .fv.fv-hero .fv-actions::after {
    left: calc(50% - 198px);
  }

  .fv.fv-hero .fv-visual {
    width: min(100%, 680px);
  }
}

@media (max-width: 600px) {
  .fv.fv-hero::before {
    top: -58px;
    left: -48px;
    width: 190px;
    height: 130px;
  }

  .fv.fv-hero::after {
    right: -40px;
    bottom: -24px;
    width: 200px;
    height: 90px;
  }

  .fv.fv-hero .fv-actions::after {
    left: -8px;
    width: 40px;
    height: 16px;
    background:
      linear-gradient(var(--line-accent), var(--line-accent)) 0 100% / 20px 3px no-repeat,
      linear-gradient(var(--line-accent), var(--line-accent)) 24px 0 / 3px 16px no-repeat;
  }

  .fv.fv-hero .fv-visual {
    width: min(100%, 520px);
  }

  .fv.fv-hero .fv-deco-dots-left,
  .fv.fv-hero .fv-deco-dots-right {
    width: 15%;
    background-size: 10px 10px;
  }

  .fv.fv-hero .fv-deco-dots-left {
    left: 0;
    bottom: 20%;
  }

  .fv.fv-hero .fv-deco-dots-right {
    right: 4%;
    bottom: 40%;
  }

  .fv.fv-hero .fv-deco-stroke-left {
    left: 22%;
    top: 50%;
  }

  .fv.fv-hero .fv-deco-stroke-right {
    right: 35%;
    top: 60%;
  }
}


/* ==========================
FV微調整：装飾削除・文字サイズ・吹き出し速度
========================== */
.fv.fv-hero {
  background: #fdfdfb;
}

.fv.fv-hero::before,
.fv.fv-hero::after,
.fv.fv-hero .fv-deco,
.fv.fv-hero .fv-actions::before,
.fv.fv-hero .fv-actions::after {
  display: none !important;
}

.fv.fv-hero .fv-copy {
  padding-bottom: 18px;
}

.fv.fv-hero h1 {
  font-size: clamp(2.8rem, 4.7vw, 4.4rem);
}

.fv.fv-hero .fv-text {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin: 28px 0 34px;
}

.fv.fv-hero .fv-bubble {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: fvBubbleInSoft 1.55s ease-out forwards;
}

.fv.fv-hero .fv-bubble-map { animation-delay: 0.25s; }
.fv.fv-hero .fv-bubble-hp { animation-delay: 0.5s; }
.fv.fv-hero .fv-bubble-sns { animation-delay: 0.75s; }
.fv.fv-hero .fv-bubble-ad {
  left: 84.2%;
  width: 14.8%;
  animation-delay: 1s;
}

@keyframes fvBubbleInSoft {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1180px) {
  .fv.fv-hero h1 {
    font-size: clamp(2.5rem, 4.45vw, 3.55rem);
  }

  .fv.fv-hero .fv-text {
    font-size: clamp(0.96rem, 1.45vw, 1.12rem);
  }

  .fv.fv-hero .fv-bubble-ad {
    left: 83%;
  }
}

@media (max-width: 900px) {
  .fv.fv-hero h1 {
    font-size: clamp(2.3rem, 6.7vw, 3.3rem);
  }

  .fv.fv-hero .fv-text {
    font-size: 1.02rem;
  }

  .fv.fv-hero .fv-bubble-ad {
    left: 82%;
    width: 15.2%;
  }
}

@media (max-width: 600px) {
  .fv.fv-hero h1 {
    font-size: clamp(1.95rem, 8.3vw, 2.5rem);
  }

  .fv.fv-hero .fv-text {
    margin: 20px auto 26px;
    font-size: 0.9rem;
  }

  .fv.fv-hero .fv-bubble-ad {
    left: 81%;
    width: 15.5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv.fv-hero .fv-bubble {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ==========================
FV微調整：画像下寄せ・上下余白調整
========================== */
.fv.fv-hero {
  padding: 57px 0 19px;
}

.fv.fv-hero .fv-visual {
  transform: translateY(20px);
}

@media (max-width: 900px) {
  .fv.fv-hero {
    padding: 39px 0 13px;
  }
}

@media (max-width: 600px) {
  .fv.fv-hero {
    padding: 27px 0 11px;
  }
}
