:root {
  --page-bg: #f4f0eb;
  --card-bg: #ffffff;
  --text-main: #1f1a17;
  --text-sub: #6b625c;
  --line: #e1d8cf;
  --accent: #ff821e;
  --accent-deep: #dc6000;
  --shadow: 0 18px 48px rgba(61, 44, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f7f3ee 0%, var(--page-bg) 100%);
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

.page {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
  padding: 48px 0 80px;
}

.page-header {
  margin-bottom: 24px;
}

.page-header__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-header__title {
  margin: 0;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1;
}

.page-header__body {
  margin: 16px 0 0;
  max-width: 680px;
  color: var(--text-sub);
  line-height: 1.8;
}

.dev-card {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.dev-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.dev-card p,
.dev-card li {
  color: var(--text-sub);
  line-height: 1.8;
}

.dev-card ol {
  margin: 0;
  padding-left: 20px;
}

.frame-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(320px, 375px);
  gap: 32px;
  align-items: start;
  margin-top: 28px;
}

.frame-showcase__meta {
  padding-top: 8px;
}

.frame-showcase__label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.frame-showcase__meta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.frame-showcase__meta p {
  margin: 16px 0 0;
  color: var(--text-sub);
  line-height: 1.8;
}

.fv-compare {
  width: min(100%, 375px);
}

.fv-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fv-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.fv-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.fv-preview {
  container-type: inline-size;
  width: min(100%, 375px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(72, 49, 21, 0.18);
}

.fv-preview__scale {
  position: relative;
  width: 100%;
  height: calc(665px * (100cqw / 375px));
  overflow: hidden;
}

.fv-preview__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#fv-overlay:checked ~ .fv-preview .fv-preview__overlay {
  opacity: 0.42;
}

#fv-diff:checked ~ .fv-preview .fv-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#fv-overlay:checked ~ .fv-compare__controls label[for="fv-overlay"],
#fv-diff:checked ~ .fv-compare__controls label[for="fv-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.fv-stage {
  position: relative;
  width: 375px;
  background: #fff;
  transform: scale(calc(100cqw / 375px));
  transform-origin: top left;
}

.fv-stage__hero {
  --fv-bg-x: -147.01px;
  --fv-bg-y: -144px;
  --fv-bg-width: 1448.007px;
  --fv-bg-height: 965.103px;
  --fv-person-right: -22px;
  --fv-person-top: 332px;
  position: relative;
  width: 375px;
  height: 665px;
  overflow: hidden;
  background: #f8f4ee;
}

.fv-stage__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fv-stage__background-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv-stage__background-mask img {
  position: absolute;
  left: var(--fv-bg-x);
  top: var(--fv-bg-y);
  width: var(--fv-bg-width);
  height: var(--fv-bg-height);
  max-width: none;
  object-fit: cover;
}

.fv-stage__person {
  position: absolute;
  right: var(--fv-person-right);
  top: var(--fv-person-top);
  width: 202px;
  height: 193px;
  z-index: 1;
}

.fv-stage__person-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv-stage__person-mask img {
  position: absolute;
  left: 0;
  top: 0;
  width: 99.99%;
  height: 150.52%;
  object-fit: cover;
}

.fv-logo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 240px;
  margin: 1px auto 0;
  padding-top: 0;
}

.fv-logo__mark {
  width: 63px;
  height: 63px;
  flex: none;
  margin-right: -4px;
}

.fv-logo__cross {
  width: 19.199px;
  height: 19.199px;
  margin-top: 23px;
  flex: none;
}

.fv-logo__salon {
  position: relative;
  width: 133.521px;
  height: 33.271px;
  margin-top: 12px;
  flex: none;
  color: inherit;
  text-decoration: none;
}

.fv-logo__salon-bg {
  position: absolute;
  inset: 0;
  background: #0f1616;
}

.fv-logo__salon-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 133.521px;
  height: 36.762px;
}

.fv-logo__salon-note {
  position: absolute;
  left: 50%;
  bottom: -0.8px;
  width: 117.812px;
  margin: 0;
  transform: translateX(-50%);
  font-size: 7.7px;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02em;
}

.fv-logo__salon-note span {
  color: #fcff63;
}

.fv-copy {
  position: absolute;
  left: 11px;
  top: 107.44px;
  width: 343px;
  z-index: 3;
}

.fv-copy__line {
  position: absolute;
  margin: 0;
  white-space: nowrap;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.fv-copy__line--01 {
  left: 7px;
  top: 0;
  line-height: 1.2;
}

.fv-copy__line--02 {
  left: 7px;
  top: 45px;
  font-size: 28.775px;
  line-height: 1.2;
  letter-spacing: 0;
}

.fv-copy__line--02 span + span {
  margin-left: -4px;
}

.fv-copy__large-black {
  font-size: 38.697px;
  letter-spacing: 0.04em;
}

.fv-copy__line--03 {
  left: 20px;
  top: 88px;
  display: flex;
  align-items: flex-end;
  height: 62px;
  gap: 0;
}

.fv-copy__line--04 {
  left: 7px;
  top: 157px;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.fv-copy__line--05 {
  left: 7px;
  top: 220.56px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.05em;
}

.fv-copy__line--06 {
  left: 7px;
  top: 281.12px;
  font-size: 28.773px;
  line-height: 1.52;
  letter-spacing: 0.03em;
}

.fv-copy__line--07 {
  left: 7px;
  top: 325.9px;
  font-size: 28.773px;
  line-height: 1.52;
  letter-spacing: 0.01em;
}

.fv-copy__accent,
.fv-copy__number {
  color: transparent;
  background-image: linear-gradient(180deg, #ff821e 0%, #ff821e 49%, #dc6000 50.01%, #ff821e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.fv-copy__accent--small {
  font-size: 28.775px;
  line-height: 1.2;
}

.fv-copy__accent--pay,
.fv-copy__accent--yen {
  font-size: 38.697px;
  line-height: 1.2;
}

.fv-copy__number {
  font-family: "din-2014-narrow", "Oswald", sans-serif;
  font-weight: 800;
  line-height: 1;
}

.fv-copy__number--hourly {
  font-size: 45.603px;
  letter-spacing: 0.1em;
}

.fv-copy__number--hourly-last {
  margin-left: -6px;
  letter-spacing: -0.01em;
}

.fv-copy__tatta {
  position: relative;
  margin-right: 14px;
  padding: 5px 0 10px;
  font-size: 22.04px;
  line-height: 1;
}

.fv-copy__tatta::before,
.fv-copy__tatta::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 69.674px;
  height: 2px;
  background: url("../images/s1/tatta-line.svg") center / 100% 100% no-repeat;
  transform: translateX(-50%);
}

.fv-copy__tatta::before {
  top: 0;
}

.fv-copy__tatta::after {
  bottom: 0;
}

.fv-copy__number--month {
  margin-right: 0;
  font-size: 52.509px;
  color: #000;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  line-height: 0.8em;
}

.fv-copy__months-text {
  margin-right: 1px;
  font-size: 38.697px;
  line-height: 1.2;
}

.fv-copy__months-tail {
  margin-right: 0;
  font-size: 28.775px;
  line-height: 1.2;
}

.fv-copy__accent--really {
  font-size: 38.697px;
  line-height: 1.2;
}

.fv-copy__accent--really-small {
  font-size: 28.773px;
  line-height: 1.2;
}

.fv-copy__accent--sales {
  font-size: 48.342px;
  line-height: 1.4;
}

.fv-copy__number--sales {
  margin: 0 0 -3px 8px;
  font-size: 71.362px;
  letter-spacing: 0.05em;
}

.fv-copy__accent--sales-tail {
  font-size: 28.775px;
  line-height: 1.8;
}

.fv-copy__accent--earned {
  font-size: 38.697px;
  line-height: 1.4;
}

.fv-copy__body-small {
  font-size: 28.773px;
  line-height: 1.6;
}

.fv-cta {
  position: relative;
  width: 375px;
  height: 140px;
  margin-top: -140px;
  background: rgba(255, 248, 53, 0.8);
  overflow: hidden;
  z-index: 4;
}

.fv-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 375px;
  height: 140px;
  background: url("../images/s1/cta-bg.svg") top center / cover no-repeat;
  opacity: 0.9;
}

.fv-cta__banner {
  position: absolute;
  left: 11px;
  top: 7px;
  width: 352px;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.fv-cta__banner p {
  margin: 0;
}

.fv-cta__green {
  color: #06bf50;
}

.fv-cta__button {
  position: absolute;
  left: 21px;
  top: 60px;
  display: block;
  width: 335px;
  height: 64px;
  text-decoration: none;
  z-index: 2;
}

.fv-cta__button-shadow {
  position: absolute;
  inset: 0;
  border-radius: 42.97px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.fv-cta__button-main {
  position: absolute;
  inset: 4px;
  display: flex;
  align-items: center;
  border-radius: 42.97px;
  background: linear-gradient(180deg, #00c8ff 2%, #00c850 100%);
  overflow: hidden;
}

.fv-cta__button-main::after,
.site-footer__cta::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -35%;
  width: 28%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(22deg);
  animation: cta-shine 3.6s ease-in-out infinite;
  pointer-events: none;
}

.fv-cta__bubble {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: 7px;
  border-radius: 50%;
  background: #fff835;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  flex: none;
}

.fv-cta__bubble strong {
  display: block;
  margin-top: -15px;
}

.fv-cta__button-copy {
  margin-top: -10px;
  margin-left: -2px;
  text-align: center;
  color: #fff;
  flex: 1;
}

.fv-cta__button-copy small,
.fv-cta__button-copy strong {
  display: block;
}

.fv-cta__button-copy small {
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
}

.fv-cta__button-copy strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 22.204px;
  letter-spacing: -0.08em;
  margin-left: 0;
}

.fv-cta__button-copy strong span {
  color: #faff00;
}

.fv-cta__arrow {
  margin-top: -10px;
  margin-right: 14px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.voices-preview {
  width: min(100%, 375px);
}

.voices-compare {
  width: min(100%, 375px);
}

.voices-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.voices-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.voices-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

/* fv-comp2.png 375×970 オーバーレイ用（イラストはみ出しのため visible） */
.voices-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 970;
  overflow: visible;
}

.voices-preview__scale > .owner-voices {
  box-sizing: border-box;
  min-height: 100%;
}

.voices-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#voices-overlay:checked ~ .voices-preview .voices-preview__overlay {
  opacity: 0.42;
}

#voices-diff:checked ~ .voices-preview .voices-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#voices-overlay:checked ~ .voices-compare__controls label[for="voices-overlay"],
#voices-diff:checked ~ .voices-compare__controls label[for="voices-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

/* ========= Owner Voices（voice_bg.png + slick） ========= */
.owner-voices {
  position: relative;
  width: 375px;
  padding: 50px 20px 28px;
  overflow: hidden; /* slick-track の横幅露出を防ぐ */
  background-color: #fff8eb;
  background-image: url("../images/s2/voice_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 90% 50%;
  border-radius: 0;
  box-shadow: none;
}

/* 中央・1行（段落ち防止） */
.owner-voices__chip {
  position: relative;
  box-sizing: border-box;
  width: max-content;
  max-width: calc(100% - 8px);
  min-height: 32px;
  margin: 0 auto 8px;
  padding: 7px 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff8d31 0%, #ff6a00 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.owner-voices__chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff6a00;
  transform: translateX(-50%);
}

/* 14193:3001: 25px Bold 中央 / 14193:3002 下線 335×4 相当 */
.owner-voices__title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  padding: 0 0 8px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.owner-voices__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f39445 0%, #fde74f 50%, #f28e3f 100%);
}

.owner-voices__slider-outer {
  position: relative;
  margin-top: 20px;
  /* overflow はデフォルト visible のまま → 矢印が外にはみ出せる */
}

/* slick ターゲット */
.owner-voices__slider {
  /* slick が管理するので独自 overflow は指定しない */
}

/* 
 * overflow: hidden（slick デフォルト）を維持してトラック幅漏れを防ぐ。
 * padding-top: 28px = 女性イラスト上はみ出し 20px + 影余白 8px
 * padding-bottom: 20px = カード下影余白
 */
.owner-voices__slider .slick-list {
  overflow: hidden !important;
  padding: 28px 0 20px !important;
}

.owner-voices__slider .slick-track {
  display: flex !important;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.owner-voices__slider .slick-list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.owner-voices__slider .slick-slide {
  height: auto; /* flex子要素なので自動伸縮 */
}

/* slick が生成する内部ラッパー div を高さ伝搬させる */
.owner-voices__slider .slick-slide > div {
  height: 100%;
}

.owner-voices__slide {
  outline: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.owner-voice-card {
  position: relative;
  flex: 1;                  /* スライド高さいっぱいに伸ばす */
  height: 100%;
  padding: 22px 18px 34px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* 神奈川：イラストが白枠上辺からはみ出す余白（padding-top は不要） */
.owner-voice-card--kanagawa .owner-voice-card__head {
  padding-top: 0;
}

.owner-voice-card__head {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.owner-voice-card__summary {
  flex: 1;
  min-width: 0;
}

/* 18200:19 基準 + 左上へはみ出し */
.owner-voice-card__figure-wrap {
  position: relative;
  flex: none;
  width: 111px;
  min-height: 181px;
  z-index: 2;
}

.owner-voice-card__figure-wrap--bleed-tl {
  align-self: flex-start;
  margin-top: -46px;
  margin-left: -19px;
  width: 108px;
  min-height: 180px;
}

.owner-voice-card__badge {
  display: block;
  width: 111px;
  height: auto;
  max-width: none;
}

.owner-voice-card__figure-wrap--bleed-tl .owner-voice-card__badge {
  width: 113px;
}

.owner-voice-card__figure-wrap--tokyo .owner-voice-card__badge {
  width: 111px;
}

.owner-voice-card__region {
  margin: 4px 0 3px;
  color: #ff821e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.owner-voice-card__intro {
  margin: 0 0 -1px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.owner-voice-card__intro-man {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.7;
}

/* 14193:2912: 16px Bold */
.owner-voice-card__intro--tokyo-lead {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.owner-voice-card__intro-lg {
  font-size: 20px;
}

.owner-voice-card__intro-sm {
  font-size: 16px;
}

.owner-voice-card__result {
  margin: -4px auto -3px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.owner-voice-card__result-label {
  margin-right: 2px;
}

.owner-voice-card__result-de {
  margin-left: 1px;
  font-size: 16px;
  font-weight: 700;
}

.owner-voice-card__result-end {
  margin-left: 1px;
  font-size: 20px;
  font-weight: 700;
}

.owner-voice-card__num {
  margin: 0;
  font-family: "din-2014", "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  vertical-align: -0.01em;
  background: linear-gradient(180deg, #00c8ff 2%, #00c850 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.owner-voice-card__num--tight {
  letter-spacing: -0.12em;
}

.owner-voice-card__num--300 {
  letter-spacing: -0.06em;
}

.owner-voice-card__accent-sm {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.08em;
  background: linear-gradient(180deg, #00c8ff 2%, #00c850 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.owner-voice-card__body {
  margin-top: 19px;
  padding: 20px 0 0;
  border-top: 1px solid #f0a86e;
}

.owner-voice-card__body p {
  margin: 0 0 5px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.owner-voice-card__body-first {
  margin-top: 8px;
}

.owner-voice-card__body-em {
  margin: 0 0 5px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.owner-voice-card__body-plain {
  font-weight: 500;
}

.owner-voice-card__body mark {
  padding: 0 1px;
  background: rgba(255, 230, 0, 0.5);
  color: inherit;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 矢印：右のみ表示、幅の半分（15px）を右端からはみ出す */
.owner-voices .owner-voices__slick-arrow--prev {
  display: none !important;
}

.owner-voices .owner-voices__slick-arrow {
  position: absolute;
  z-index: 10;
  top: 48.5%;
  transform: translateY(-50%);
  width: 30px;
  height: 150px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 111, 0, 0.5);
  color: #fff;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-voices .owner-voices__slick-arrow span {
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

/*
 * right: -15px = 矢印（30px幅）の中心が slider-outer の右端に来る。
 * slider-outer 右端は owner-voices 右端から 20px 内側 = 355px 地点。
 * 矢印右端は 355 + 15 = 370px → owner-voices 幅 375px 内に収まり、
 * overflow: hidden でもクリップされない。
 */
.owner-voices .owner-voices__slick-arrow--next {
  right: -20px;
}

.owner-voices .owner-voices__slick-arrow:focus-visible {
  outline: 2px solid #ff821e;
  outline-offset: 2px;
}

.owner-voices .slick-arrow::before {
  display: none !important;
  content: none !important;
}

/* 白枠の下・マージンを空けてドット（カンプ：左が現在地オレンジ） */
.owner-voices__dots-host {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 4px;
  min-height: 20px;
}

.owner-voices .owner-voices__slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.owner-voices .owner-voices__slick-dots li {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

.owner-voices .owner-voices__slick-dots button {
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 0;
  cursor: pointer;
  box-shadow: none;
}

.owner-voices .owner-voices__slick-dots .slick-active button {
  background: #ff821e;
  box-shadow: none;
}

/* ========= りふぉ～む本舗とは？ ========= */
.about-compare {
  width: min(100%, 375px);
}

.about-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.about-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.about-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.about-preview {
  width: min(100%, 375px);
}

.about-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 1175;
  overflow: visible;
}

.about-preview__scale > .about-reform {
  box-sizing: border-box;
  min-height: 100%;
}

.about-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#about-overlay:checked ~ .about-preview .about-preview__overlay {
  opacity: 0.42;
}

#about-diff:checked ~ .about-preview .about-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#about-overlay:checked ~ .about-compare__controls label[for="about-overlay"],
#about-diff:checked ~ .about-compare__controls label[for="about-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.about-reform {
  position: relative;
  width: 375px;
  padding: 51px 17px 32px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fff5ea;
  background-image: url("../images/s3/bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.about-reform__title-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding-bottom: 12px;
}

.about-reform__title-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #f7a15d;
}

.about-reform__logo {
  width: 260px;
  height: auto;
  display: block;
}

.about-reform__title {
  margin: 0;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.about-reform__lead {
  margin: 20px 0 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.about-reform__lead-accent {
  color: #ff821e;
  font-weight: 700;
}

.about-reform__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px 0 0;
  padding: 0;
  width: calc(100% + 34px);
  margin-left: -17px;
}

.about-card {
  position: relative;
  width: calc(100% - 65px);
  min-height: 144px;
  padding: 24px 50px 18px 20px;
  box-sizing: border-box;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(85, 64, 39, 0.2);
}

.about-card--image-right {
  align-self: flex-start;
  margin-bottom: -5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.about-card--image-left {
  align-self: flex-end;
  padding: 28px 18px 18px 58px;
  margin-bottom: -5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.about-card--tall {
  min-height: 168px;
  padding-top: 12px;
  padding-bottom: 16px;
}

.about-card__figure {
  position: absolute;
  top: 28px;
  right: -45px;
  width: 91px;
  height: 100px;
}

.about-card__figure--left {
  left: -45px;
  top: 20px;
  right: auto;
}

.about-card__figure--tall {
  top: 31px;
}

.about-card__body {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.about-card__line {
  margin: 0;
}

.about-card__line--em {
  font-weight: 700;
}

.about-card__mark {
  padding: 0 2px;
  background: rgba(255, 230, 0, 0.58);
  color: inherit;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about-card__note {
  margin: 3px 0 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.triangle-label {
  position: relative;
  width: 118px;
  height: 42px;
  margin: 22px auto 0;
  background: #000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.triangle-label span {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.about-reform__summary {
  min-height: 210px;
  margin: -18px auto 0;
  padding: 20px 20px 35px;
  box-sizing: border-box;
  border-radius: 20px;
  background: linear-gradient(180deg, #ff821e 0%, #ffe600 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-reform__summary-title {
  margin: 0;
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
}

.about-reform__summary-title--first {
  margin-left: -25px;
}

.about-reform__summary-title--second {
  margin-right: -25px;
}

.about-reform__summary-quote {
  position: relative;
  display: inline-block;
}

.about-reform__summary-quote--open {
  top: -3px;
  margin-right: 10px;
}

.about-reform__summary-quote--close {
  top: 10px;
  margin-left: 2px;
}

.about-reform__summary-sub {
  margin: 1px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.about-reform__summary-body {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

/* ========= 収益実績 ========= */
.revenue-compare {
  width: min(100%, 375px);
}

.revenue-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.revenue-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.revenue-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.revenue-preview {
  width: min(100%, 375px);
}

.revenue-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 437;
  overflow: visible;
}

.revenue-preview__scale > .revenue-section {
  box-sizing: border-box;
  min-height: 100%;
}

.revenue-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#revenue-overlay:checked ~ .revenue-preview .revenue-preview__overlay {
  opacity: 0.42;
}

#revenue-diff:checked ~ .revenue-preview .revenue-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#revenue-overlay:checked ~ .revenue-compare__controls label[for="revenue-overlay"],
#revenue-diff:checked ~ .revenue-compare__controls label[for="revenue-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.revenue-section {
  position: relative;
  width: 375px;
  padding: 45px 20px 45px;
  overflow: hidden;
  background: #f6ad6e;
}

.revenue-section__bg {
  position: absolute;
  inset: 0;
}

.revenue-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.revenue-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 145, 56, 0.2);
}

.revenue-section__title,
.revenue-section__line,
.revenue-card {
  position: relative;
  z-index: 1;
}

.revenue-section__title {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.revenue-section__line {
  width: 335px;
  height: 4px;
  margin: 10px auto 30px;
  background: linear-gradient(90deg, #f09a3b 0%, #f6de63 50%, #f09a3b 100%);
}

.revenue-card {
  margin-top: 13px;
  padding: 22px 20px 15px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(85, 64, 39, 0.3);
}

.revenue-card__chips {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.revenue-card__chip {
  min-width: 120px;
  margin: 0;
  padding: 0 10px 0;
  border: 2px solid #f28b27;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.revenue-card__chip span {
  font-family: "din-2014", "Oswald", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  margin-right: 6px;
}

.revenue-card__headline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
}

.revenue-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #ff821e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  flex: none;
}

.revenue-card__amount {
  margin: 0;
  color: transparent;
  line-height: 1;
  white-space: nowrap;
}

.revenue-card__amount-num,
.revenue-card__amount-unit {
  background: linear-gradient(180deg, #00c8ff 2%, #00c850 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.revenue-card__amount-num {
  font-family: "din-2014", "Oswald", sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: 0.02em;
}

.revenue-card__amount-unit {
  margin-left: 2px;
  font-size: 29.6px;
}

.revenue-card__detail {
  position: relative;
  margin-top: 9px;
  padding-left: 2px;
  min-height: 129px;
}

.revenue-card__badge--profit {
  position: absolute;
  left: 0;
  top: 36px;
}

.revenue-card__blur {
  width: 236px;
  margin-left: 55px;
  margin-top: -15px;
  overflow: hidden;
}

.revenue-card__blur img {
  width: 236px;
  height: 113px;
  object-fit: cover;
}

.revenue-card__notice {
  position: absolute;
  left: 92px;
  top: 24px;
  width: 167px;
  height: 69px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.revenue-card__notice p {
  margin: 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

.revenue-card__note {
  margin: -8px 0 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

/* ========= オープンまでの流れ ========= */
.flow-compare {
  width: min(100%, 375px);
}

.flow-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.flow-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.flow-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.flow-preview {
  width: min(100%, 375px);
}

.flow-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 466;
  overflow: visible;
}

.flow-preview__scale > .flow-section {
  box-sizing: border-box;
  min-height: 100%;
}

.flow-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#flow-overlay:checked ~ .flow-preview .flow-preview__overlay {
  opacity: 0.42;
}

#flow-diff:checked ~ .flow-preview .flow-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#flow-overlay:checked ~ .flow-compare__controls label[for="flow-overlay"],
#flow-diff:checked ~ .flow-compare__controls label[for="flow-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.flow-section {
  position: relative;
  width: 375px;
  padding: 38px 0 20px;
  overflow: hidden;
  background: #fff5ea;
}

.flow-section__bg,
.flow-section__overlay {
  position: absolute;
  inset: 0;
}

.flow-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-section__overlay {
  background: linear-gradient(180deg, rgba(255, 232, 198, 0.75) 0%, rgba(255, 246, 232, 0.78) 55%, rgba(255, 242, 223, 0.76) 100%);
  pointer-events: none;
}

.flow-section__title,
.flow-section__line,
.flow-slider,
.flow-progress,
.flow-scroll-hint {
  position: relative;
  z-index: 1;
}

.flow-section__title {
  margin: 0;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.flow-section__line {
  width: 335px;
  height: 4px;
  margin: 4px auto 0;
  background: linear-gradient(90deg, #f08d39 0%, #f7d66a 50%, #f08d39 100%);
}

.flow-slider {
  margin-top: 38px;
}

.flow-slider__track {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  scroll-padding-left: 20px;
  scroll-padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
}

.flow-slider__track::-webkit-scrollbar {
  display: none;
}

.flow-slider__track.is-dragging {
  cursor: grabbing;
}

.flow-download {
  position: relative;
  flex: 0 0 120px;
  width: 120px;
  height: 172px;
  margin-bottom: 11px;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
  overflow: visible;
}

.flow-download__circle {
  position: absolute;
  top: 50px;
  left: 0;
  width: 120px;
  height: 120px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 4px solid #fff;
  background: linear-gradient(180deg, #22c1ef 0%, #2dc458 100%);
  filter: drop-shadow(0 5px 6px rgba(61, 44, 28, 0.2));
}

.flow-download__icon {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  display: block;
}

.flow-download__label {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 120px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.flow-step {
  margin-left: -48px;
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: visible;
}

.flow-step--first {
  margin-left: -24px;
}

.flow-step--1 {
  width: 180px;
  height: 251px;
  z-index: 10;
}

.flow-step--2 {
  width: 180px;
  height: 160px;
  z-index: 9;
}

.flow-step--3 {
  width: 180px;
  height: 160px;
  z-index: 8;
}

.flow-step--4 {
  margin-right: 20px;
  width: 146px;
  height: 251px;
  z-index: 4;
}

.flow-step__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 6px rgba(61, 44, 28, 0.18));
}

.flow-step--1 .flow-step__image {
  height: 239px;
}

.flow-step--2 .flow-step__image,
.flow-step--3 .flow-step__image {
  height: 148px;
}

.flow-step--4 .flow-step__image {
  height: 239px;
}

.flow-step__label {
  position: absolute;
  left: -8px;
  width: 100%;
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.flow-step--1 .flow-step__label {
  bottom: 32px;
}

.flow-step--2 .flow-step__label {
  bottom: 32px;
}

.flow-step--3 .flow-step__label {
  bottom: 32px;
}

.flow-step--4 .flow-step__label {
  bottom: 63px;
}

.flow-step__bubble-text {
  position: absolute;
  left: 26px;
  top: 21px;
  z-index: 1;
  width: 100px;
  margin: 0;
  color: #ffe600;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
}

.flow-step__bubble-text p {
  margin: 0;
}

.flow-step__bubble-text--support {
  left: 31px;
  top: 28px;
  width: 90px;
  color: #ffe600;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.flow-step--4 .flow-step__label {
  bottom: 32px;
  left: 7px;
}

.flow-progress {
  width: 335px;
  height: 8px;
  margin: 30px auto 0;
  border-radius: 999px;
  background: #d9dde4;
  overflow: hidden;
}

.flow-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 14px auto 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(61, 44, 28, 0.08);
  color: #6b625c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.flow-scroll-hint__text {
  display: inline-block;
  color: inherit;
  white-space: nowrap;
  font-size: 12px;
  opacity: 1;
}

.flow-scroll-hint__arrow {
  display: inline-block;
  font-size: 18px;
  margin-top: -5px;
  line-height: 1;
  color: #ff821e;
  animation: flow-hint-nudge 1.2s ease-in-out infinite;
}

.flow-progress__bar {
  width: 120px;
  height: 100%;
  border-radius: 999px;
  background: #111;
  transform: translateX(0);
  will-change: transform;
}

/* ========= 説明会で不安解消 ========= */
.qa-compare {
  width: min(100%, 375px);
}

.qa-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.qa-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.qa-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.qa-preview {
  width: min(100%, 375px);
}

.qa-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 635;
  overflow: visible;
}

.qa-preview__scale > .qa-section {
  box-sizing: border-box;
  min-height: 100%;
}

.qa-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#qa-overlay:checked ~ .qa-preview .qa-preview__overlay {
  opacity: 0.42;
}

#qa-diff:checked ~ .qa-preview .qa-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#qa-overlay:checked ~ .qa-compare__controls label[for="qa-overlay"],
#qa-diff:checked ~ .qa-compare__controls label[for="qa-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.qa-section {
  position: relative;
  width: 375px;
  min-height: 635px;
  overflow: hidden;
  background: #ffb500;
}

.qa-section__bg {
  position: absolute;
  inset: 0;
}

.qa-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qa-callout,
.qa-card,
.qa-people {
  position: relative;
  z-index: 1;
}

.qa-callout {
  position: relative;
  width: 335px;
  margin: 50px auto 30px;
  height: 165px;
  padding: 17px 12px 0;
  border-radius: 20px;
  background: #f98625;
  box-shadow: 0 4px 8px rgba(120, 80, 24, 0.28);
  box-sizing: border-box;
}

.qa-callout::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -29px;
  width: 39px;
  height: 35px;
  transform: translateX(-50%);
  background: #f98625;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 4px 2px rgba(120, 80, 24, 0.2));
}

.qa-callout__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 129px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.78;
  text-align: center;
}

.qa-callout__title span {
  display: block;
  white-space: nowrap;
}

.qa-card {
  position: relative;
  width: 335px;
  height: 280px;
  margin: 13px auto 0;
  padding: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(98, 67, 21, 0.28);
  box-sizing: border-box;
}

.qa-list {
  position: absolute;
  top: 33px;
  left: 19px;
  right: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qa-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 0 10px;
  border-bottom: 2px solid #f0ae5b;
}

.qa-list__item + .qa-list__item {
  margin-top: 19px;
}

.qa-list__item--multi {
  align-items: flex-start;
  min-height: 74px;
  padding-bottom: 3px;
}

.qa-list__icon {
  width: 32px;
  height: 32px;
  flex: none;
  margin-left: 1px;
}

.qa-list__item p {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  max-width: 240px;
}

.qa-list__item--multi p {
  margin-top: -8px;
  display: flex;
  flex-direction: column;
  max-width: 220px;
}

.qa-list__item--multi .qa-list__icon {
  align-self: center;
  margin-top: 0;
}

.qa-people {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
}

.qa-people__person {
  position: absolute;
  bottom: 0;
  display: block;
}

.qa-people__person--left {
  left: 62px;
  width: 108px;
  height: 130px;
}

.qa-people__person--right {
  left: 198px;
  width: 112px;
  height: 130px;
}

/* ========= フォーム ========= */
.contact-compare {
  width: min(100%, 375px);
}

.contact-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.contact-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.contact-preview {
  width: min(100%, 375px);
}

.contact-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 1826;
  overflow: visible;
}

.contact-preview__scale > .contact-section {
  box-sizing: border-box;
  min-height: 100%;
}

.contact-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#contact-overlay:checked ~ .contact-preview .contact-preview__overlay {
  opacity: 0.42;
}

#contact-diff:checked ~ .contact-preview .contact-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#contact-overlay:checked ~ .contact-compare__controls label[for="contact-overlay"],
#contact-diff:checked ~ .contact-compare__controls label[for="contact-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.contact-section {
  position: relative;
  width: 375px;
  min-height: 1826px;
  padding: 50px 20px 44px;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-section__hero {
  width: 335px;
  min-height: 92px;
  padding: 13px 14px 13px;
  border-radius: 18px;
  background: linear-gradient(180deg, #22c6e9 0%, #0ed171 100%);
  box-shadow: 0 6px 10px rgba(18, 115, 73, 0.18);
  box-sizing: border-box;
}

.contact-section__hero-note {
  margin: 5px auto 0;
  color: #fff;
  font-size: 13.88px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.contact-section__hero-title {
  margin: 5px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.contact-section__lead {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 21px 0 0;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.contact-section__quick-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 185px;
  height: 34px;
  margin: 18px auto 0;
  padding: 0 12px;
  border-radius: 5px;
  background: #ffe600;
  box-sizing: border-box;
  width: fit-content;
}

.contact-section__quick-prefix,
.contact-section__quick-suffix {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.contact-section__quick-num {
  color: #ff821e;
  font-family: "din-2014", "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.contact-section__required-note {
  margin: 13px 0 0;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  text-align: right;
}

.contact-section__required-note span {
  color: #ff801e;
}

.contact-section .request_form {
  margin-top: 0;
  padding-top: 2px;
}

.contact-section .form_item {
  margin: 0 8px 10px;
}

.contact-section .form_item--radio {
  margin-bottom: 12px;
}

.contact-section .form_title {
  display: block;
  margin: 0 0 11px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-section .form_required {
  color: #ff801e;
}

.contact-section .form_note {
  margin: 6px 0 8px;
  color: #231815;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-section .form_note--company {
  margin: -8px 0 7px;
}

.contact-section .form_control {
  width: 100%;
}

.contact-section .form-text,
.contact-section .form-select,
.contact-section .form-textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: #f7f7f6;
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.1);
  color: #111;
  font: inherit;
  box-sizing: border-box;
}

.contact-section .form-text,
.contact-section .form-select {
  height: 48px;
  padding: 0 12px;
}

.contact-section .form-textarea {
  min-height: 200px;
  padding: 14px 0;
  resize: vertical;
}

.contact-section .form-text::placeholder,
.contact-section .form-textarea::placeholder {
  color: #bababa;
}

.contact-section .form-select {
  appearance: none;
  padding-right: 44px;
  border: 0;
  background-color: rgba(255, 128, 30, 0.1);
  box-shadow: none;
  background-image:
    linear-gradient(45deg, transparent 40%, #7c6546 41%, #7c6546 59%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, #7c6546 41%, #7c6546 59%, transparent 60%);
  background-position:
    calc(100% - 20px) 20px,
    calc(100% - 13px) 20px;
  background-size: 9px 9px, 9px 9px;
  background-repeat: no-repeat;
}

.contact-section .form_radio-group {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}

.contact-section .form_radio {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-section .form_radio input {
  margin: 0;
  accent-color: #111;
}

.contact-section .form_zip-wrap {
  display: flex;
  gap: 12px;
}

.contact-section .form_zip-wrap .form-text {
  width: 189px;
  flex: none;
}

.contact-section .form-zip-btn {
  width: 119px;
  height: 48px;
  flex: none;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  background: #fff;
  color: #231815;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.contact-section .form_privacy-policy-wrap {
  margin-top: 22px;
}

.contact-section .form_privacy-policy {
  margin: 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

.contact-section .form_privacy-policy a {
  color: #ff821e;
  text-decoration: underline;
}

.contact-section .form_submit-wrap {
  margin-top: 22px;
  text-align: center;
}

.contact-section .form_submit {
  min-width: 226px;
  height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #00c8ff 2%, #00c850 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 10px rgba(0, 140, 92, 0.2);
}

.contact-section .form_item--checkbox {
  margin-top: 32px;
  margin-bottom: 0;
  text-align: center;
}

.contact-section .form_checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b6b6b6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  justify-content: center;
}

.contact-section .form_checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-section .form_checkbox-mark {
  position: relative;
  width: 15px;
  height: 15px;
  flex: none;
  border-radius: 2px;
  background: #d9d9d9;
}

.contact-section .form_checkbox input:checked + .form_checkbox-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* ========= フッター ========= */
.footer-compare {
  width: min(100%, 375px);
}

.footer-compare__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.footer-compare__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-compare__controls label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 44, 28, 0.08);
}

.footer-preview {
  width: min(100%, 375px);
}

.footer-preview__scale {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 522;
  overflow: visible;
}

.footer-preview__scale > .site-footer {
  box-sizing: border-box;
}

.footer-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

#footer-overlay:checked ~ .footer-preview .footer-preview__overlay {
  opacity: 0.42;
}

#footer-diff:checked ~ .footer-preview .footer-preview__overlay {
  opacity: 0.9;
  mix-blend-mode: difference;
}

#footer-overlay:checked ~ .footer-compare__controls label[for="footer-overlay"],
#footer-diff:checked ~ .footer-compare__controls label[for="footer-diff"] {
  border-color: #ffbf8a;
  background: #fff3e7;
  color: #9d4f1f;
}

.site-footer {
  width: 375px;
  padding: 22px 20px 28px;
  background: #f98625;
  box-sizing: border-box;
}

.site-footer__card {
  width: 335px;
  margin: 0 auto;
  padding: 13px 20px 17px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
}

.site-footer__brand-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-footer__brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 153px;
  height: 35px;
}

.site-footer__brand-badge img {
  display: block;
  width: 153px;
  height: auto;
}

.site-footer__brand-line h3 {
  margin: 0;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.site-footer__card-body {
  margin: 4px 0 0;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.site-footer__company {
  margin-top: 21px;
  color: #fff;
}

.site-footer__company + .site-footer__company {
  margin-top: 22px;
}

.site-footer__company-name,
.site-footer__company-text {
  margin: 0;
}

.site-footer__company-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.site-footer__company-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.site-footer__cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 271px;
  min-height: 54px;
  margin: 26px 0 0;
  padding: 4px 4px 4px 20px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
}

.site-footer__cta-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.07em;
}

.site-footer__cta-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.site-footer__copyright {
  margin: 23px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.03em;
}

.js-reveal {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.js-reveal--up {
  transform: translateY(28px);
}

.js-reveal--left {
  transform: translateX(-28px);
}

.js-reveal--right {
  transform: translateX(28px);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes cta-shine {
  0% {
    left: -35%;
  }
  55% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

@keyframes flow-hint-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@media (max-width: 767px) {
  .page {
    width: min(100% - 20px, 420px);
    padding-top: 24px;
  }

  .dev-card {
    padding: 18px;
    border-radius: 18px;
  }

  .frame-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fv-preview {
    margin: 0 auto;
  }

  .fv-stage {
    width: 375px;
  }

  .voices-preview {
    margin: 0 auto;
  }

  .about-preview {
    margin: 0 auto;
  }

  .revenue-preview {
    margin: 0 auto;
  }

  .flow-preview {
    margin: 0 auto;
  }

  .qa-preview {
    margin: 0 auto;
  }

  .contact-preview {
    margin: 0 auto;
  }

  .footer-preview {
    margin: 0 auto;
  }
}

html, body {
  margin: 0;
  background: #fff;
}

.page-scale-shell {
  width: min(100%, 428px);
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.page-scale-frame {
  position: relative;
  width: 100%;
}

.merged-page {
  width: 375px;
  margin: 0;
  background: #fff;
  overflow: hidden;
  transform: scale(var(--page-scale, 1));
  transform-origin: top left;
}

.merged-page > * {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.fv-preview,
.voices-preview,
.about-preview,
.revenue-preview,
.flow-preview,
.qa-preview,
.contact-preview,
.footer-preview {
  width: 100% !important;
  margin: 0 auto;
}

.fv-preview {
  border-radius: 0;
  box-shadow: none;
}

.voices-preview,
.about-preview,
.revenue-preview,
.flow-preview,
.qa-preview,
.contact-preview,
.footer-preview {
  overflow: visible;
}

.owner-voices,
.about-reform,
.revenue-section,
.flow-section,
.qa-section,
.contact-section,
.site-footer {
  margin: 0 auto;
}

/* ========= Contact Form 7 compatibility ========= */
.contact-section .wpcf7 {
  display: block;
}

.contact-section .wpcf7-form-control-wrap {
  display: block;
}

.contact-section .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin: 18px 0;
}

.contact-section .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.contact-section .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.contact-section .wpcf7-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #ff801e;
}

.contact-section .wpcf7-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-section .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.contact-section .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #111;
}

.contact-section .wpcf7-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #ff801e;
}

.contact-section .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  color: #e53935;
  font-size: 12px;
  font-weight: 500;
}

.contact-section .wpcf7-response-output {
  margin: 16px 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.contact-section .wpcf7-mail-sent-ok {
  border-color: #4caf50;
  background: #e8f5e9;
  color: #2e7d32;
}

.contact-section .wpcf7-validation-errors {
  border-color: #ff9800;
  background: #fff3e0;
  color: #e65100;
}

.contact-section .wpcf7 .ajax-loader {
  display: block;
  margin: 8px auto 0;
}

.contact-section .wpcf7-form .form_submit {
  border: none;
  cursor: pointer;
}

.contact-section .wpcf7-spinner {
  display: block;
  margin: 8px auto 0;
}
