/* ==============================
  Base
============================== */
html,
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* text */
p {
  line-height: 1.5;
}

/* link */
a {
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* form base */
input,
textarea,
button {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
}

/* ==============================
  Layout
============================== */

/* container */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 5.2vw; /*39*/
  }
}
@media (max-width: 420px) {
  .container {
    padding: 0 2vw; /*15*/
  }
}

.sec {
  text-align: center;
  margin: 0 auto;
  padding: clamp(65px, 19.4903vh, 130px) 0 0;
  width: 100%;
}
@media (max-width: 768px) {
  .sec {
    width: 100%;
    padding: clamp(50px, 13.3333vw, 100px) 0 0;
  }
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

/* SP */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }
}

/* ------------------------------
  Common title
------------------------------ */

.sec-title {
  width: 100%;
  max-width: 1000px;
  text-align: left;
  position: relative;
  padding-bottom: clamp(27px, 4.6667vw, 35px);
  margin-bottom: clamp(27px, 4.6667vw, 35px);
  font-size: clamp(27px, 6vw, 45px);
  font-weight: 900;
}

.sec-title-sub {
  font-size: clamp(18px, 4.8vw, 36px);
  line-height: 1;
}

.sec-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #333333;
}
.sec-title-sub-line {
  font-size: clamp(27px, 4.6667vw, 35px);
}
.footer-copy {
  text-align: center;
}

/* ==============================
  Responsive (Layout only)
============================== */

@media (max-width: 768px) {
  .sec-title {
    max-width: none;
    padding-bottom: clamp(26px, 6.9333vw, 52px);
    font-size: 6.1333vw;
    margin-bottom: clamp(30px, 8vw, 60px);
  }

  .sec-title::after {
    width: 100px;
    height: 4px;
  }

  .sec-title-sub {
    font-size: clamp(17px, 5.0667vw, 35px);
  }
  .sec-title-sub.sp-only {
    display: block;
    line-height: 2;
  }
}

/* ==============================
  Header
============================== */

/* ==============================
  Header
============================== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: min(1436px, calc(100% - 40px));
  max-height: 80px;

  padding: 20px 80px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);

  display: flex;
  align-items: center;
  gap: 80px;

  z-index: 1000;
}

/* logo */
.header-logo img {
  max-width: 170px;
  height: auto;
  display: block;
  height: auto;
}

/* nav */
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 27px;
}

.header-nav-link {
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

/* tel */
.header-tel {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.header-tel-note {
  font-size: clamp(5px, 0.9vw, 14.4px);
  white-space: nowrap;
  line-height: 1.2;
}

.header-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 33px;
  line-height: 1;
  white-space: nowrap;
}

.header-tel-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;

  border-radius: 50%;
  background: #f05b62;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-tel-icon i {
  font-size: 14px;
  color: #fff;
}

/* hamburger (PCでは非表示) */
.header-menu-btn {
  display: none;
}

/* ==============================
  Header : SP
============================== */

@media (max-width: 768px) {
  /* 並び順 */
  .header-logo {
    order: 1;
  }
  .header-tel {
    order: 2;
  }
  .header-menu-btn {
    order: 3;
  }
  .header-nav {
    order: 4;
  }

  .header {
    padding: 1.6927vw 2.6041vw 1.6927vw 4.9479vw !important;
    gap: 3.9062vw !important;
    top: 3.9062vw !important;
    width: calc(100% - 10.1334vw) !important;
    max-height: 14.1333vw !important;
  }
  .header-logo,
  .header-tel {
    min-width: 0;
  }

  /* navはSP非表示 */
  .header-nav {
    display: none;
  }

  .header-logo img {
    width: 27.7344vw; /* 213/768*100 */
    max-width: 213px;
    height: auto;
    display: block;
  }

  .header-tel {
    margin-left: auto;
    align-items: stretch;
    gap: 0;
    flex: 1 1 auto;
  }

  .header-tel-note {
    display: none;
  }

  .header-tel-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.3021vw; /* 10/768 */

    /* サイズ */
    height: 10.4167vw; /* 80/768*100 */
    max-height: 80px;
    padding: 0 4.6875vw;
    border-radius: 999px;

    /* 文字 */
    font-size: 4.2969vw;
    font-weight: 700;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;

    /* 背景グラデ */
    background: #eb4c57;

    /* 白縁＋立体感 */
    border: 0.5333vw solid rgba(255, 255, 255, 0.2); /* 3/768*100 */
  }

  /* 上部ハイライト */
  .header-tel-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 999px 999px 0 0;

    background: rgba(255, 255, 255, 0.2);

    pointer-events: none;
  }

  /* 押した感 */
  .header-tel-link:active {
    transform: translateY(0.2604vw);
    box-shadow:
      0 0.2604vw 0 rgba(0, 0, 0, 0.1),
      inset 0 0.3906vw 0.7813vw rgba(255, 255, 255, 0.3);
  }
  /* 電話アイコン：白丸なし、白アイコンだけ */
  .header-tel-icon {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    background: transparent;
  }
  .header-tel-icon i {
    color: #fff;
    font-size: 4.6667vw; /* 18/768 */
  }

  /* ハンバーガー：80×80（768基準） */
  .header-menu-btn {
    width: 10.4167vw; /* 80/768 */
    height: 10.4167vw;
    max-width: 80px;
    max-height: 80px;

    border-radius: 50%;
    background: #f2f2f2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
  }

  .header-menu-btn-text {
    display: none;
  }

  /* 三本線 */
  .header-menu-btn-line {
    position: absolute;
    left: 50%;
    width: 5.3333vw; /* 22/768 */
    max-width: 40px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transform: translateX(-50%);
  }
  .header-menu-btn-line:nth-child(1) {
    top: 35%;
  }
  .header-menu-btn-line:nth-child(2) {
    top: 50%;
  }
  .header-menu-btn-line:nth-child(3) {
    top: 65%;
  }

  /* SP Menu (slide down) */
  .sp-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
  }

  /* 背景の暗幕（必要なら） */
  .sp-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 220ms ease;
  }

  /* パネル本体（画像の見た目に合わせて調整OK） */
  .sp-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 3.7333vw 3.7333vw;
    box-shadow: 0 2.4vw 5.3333vw rgba(0, 0, 0, 0.25);

    transform: translateY(-105%);
    transition: transform 260ms ease;
    padding: 2.9333vw 2.9333vw 3.4667vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    height: 109.3333vw;
  }

  /* 開いた状態 */
  .sp-menu.is-open {
    pointer-events: auto;
  }
  .sp-menu.is-open::before {
    opacity: 1;
  }
  .sp-menu.is-open .sp-menu__panel {
    transform: translateY(0);
  }

  /* ナビ */
  .sp-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 6.4vw 0 3.7333vw;
    gap: 3.7333vw;
  }
  .sp-menu__link {
    display: block;
    width: 80%;
    font-size: 3.4667vw;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 3.7333vw;

    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  }

  .sp-menu__link:last-child {
    border: none;
  }

  /* 閉じるボタン */
  .sp-menu__close {
    width: 10.6667vw; /* 50/375*100 */
    height: 10.6667vw; /* 50/375*100 */
    max-width: 80px;
    max-height: 80px;

    border-radius: 50%;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2.6667vw;
  }

  /* ×の線 */
  .sp-menu__close-x {
    position: relative;
    width: 4.8vw; /* 24/375*100 */
    height: 4.8vw;
    max-width: 36px;
    max-height: 36px;
  }

  .sp-menu__close-x::before,
  .sp-menu__close-x::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 0.5333vw; /* 2/375*100 */
    max-height: 2px;
    background: #333;
    border-radius: 999px;
    transform-origin: center;
  }

  .sp-menu__close-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .sp-menu__close-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  body.is-menu-open {
    overflow: hidden;
    touch-action: none;
  }
  /* 開いてる間スクロール禁止 */
  .body-lock {
    overflow: hidden;
  }
}
/* ==============================
  Header : PC（リキッド化）
============================== */
@media (min-width: 769px) {
  .sp-menu {
    display: none;
  }

  .header {
    position: fixed;
    top: 20px;
    transform: translateX(-50%);

    width: min(1436px, calc(100% - 40px));
    max-height: 80px;

    margin: 0;
    padding: clamp(12px, 1.4vw, 20px) clamp(16px, 3.2vw, 80px);
    gap: clamp(16px, 3vw, 80px);

    z-index: 1000;
  }

  .header-logo img {
    width: clamp(120px, 12vw, 170px);
    max-width: 170px;
  }

  .header-nav-list {
    gap: clamp(12px, 2vw, 27px);
  }

  .header-nav-link {
    font-size: clamp(8px, 1.25vw, 18px);
  }

  .header-tel-link {
    font-size: clamp(18px, 2.1vw, 33px);
  }
  .header-nav {
    display: block;
  }

  .header-tel-link {
    font-size: clamp(11px, 2.1333vw, 28px);
  }
}

/* ==============================
  KV
============================== */
.kv-cta {
  display: flex;
  gap: 16px;
  width: 100%;
}

/* お客様の声（範囲固定で縦スクロール） */
.kv-voice {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #eee;
  overflow: auto;
  max-height: 200px;
  max-width: 500px;
}

.kv-voice-wrap {
  border-bottom: 1px solid #ccc;
}

.kv-voice-wrap:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.kv-voice-meta {
  font-size: 16.2px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 31px;
  white-space: nowrap;
}
.kv-voice-item {
  font-size: 18px;
  font-weight: 900;
}

.kv-voice-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.kv-voice-stars {
  display: flex;
  gap: 6px;
}

.kv-voice-stars img {
  width: 22px;
  height: auto;
  display: block;
}

.kv-voice-score {
  font-size: 27px;
  font-weight: 500;
}

.kv-voice-text {
  font-size: 18px;
  line-height: 1.75;
  text-align: left;
}

/* ==============================
  KV : SP
============================== */

@media (max-width: 768px) {
  .kv .sp-kv-hero {
    position: relative;
  }

  /* 重ねたい本体 */
  .sp-kv-hero .kv-voice {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40vw;
    z-index: 2;
    width: 91.1458vw;
    max-width: 91.1458vw;

    max-height: 49.3333vw;
    padding: 5.6vw 5.0667vw; /*42 38*/
  }
  .kv-voice-wrap {
    padding-bottom: clamp(24px, 2.4vw, 36px);
    margin-bottom: clamp(24px, 2.4vw, 36px);
  }
  .kv-voice-meta {
    font-size: clamp(10px, 2.6667vw, 20px); /*18px*/
    gap: 4.1333vw; /*31px*/
  }
  .kv-voice-item {
    font-size: clamp(13px, 3.4667vw, 26px);
  }
  .kv-voice-rating {
    padding: clamp(5px, 1.3333vw, 10px) 0;
  }
  .kv-voice-stars img {
    width: clamp(12px, 2.9333vw, 22px);
  }

  .kv-voice-score {
    font-size: 3.6vw; /*27px*/
  }

  .kv-voice-text {
    font-size: clamp(12px, 3.0667vw, 23px);
  }

  .kv-img02 {
    display: block;
    margin-top: 40vw;
  }
  .kv-cta {
    width: 100%;
    padding: 0 24px;
  }
}

/* ==============================
  KV : PC
============================== */
@media (min-width: 769px) {
  .cta {
    position: relative;
    overflow: hidden;
    background-color: #f7c33a;

    /* ドット（最背面） */
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.35) 2px,
      transparent 2.5px
    );
    background-size: 18px 18px;
  }
  /* 波 */
  .cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      url("../img/wave-top01.png") repeat-x top center,
      url("../img/wave-bottom.png") repeat-x bottom center;
    pointer-events: none;
    z-index: 2;
  }
  .cta.analy-cta03::after {
    background:
      url("../img/wave-top02.png") repeat-x top center,
      url("../img/wave-bottom.png") repeat-x bottom center;
  }
  /* PCの“重ねる基準箱” */
  .cta-pc {
    position: relative;
    display: block;
  }

  /* 背景写真（ベース） */
  .cta-pc .cta-photos {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
  }

  /* コピー（重ねる） */
  .cta-pc .cta-copy {
    position: absolute;
    top: 14%;
    left: 0;
    right: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
  }

  .cta-pc .cta-copy img {
    display: block;
    width: min(80vw, 955px);
    height: auto;
  }
  .pc-kv-hero {
    position: relative;
    text-align: center;
  }
  .pc-kv-hero .kv-img01 {
    max-width: 1537px;
    width: 100%;
    height: auto;
    display: inline-block;
  }

  .pc-kv-hero > img {
    display: block;
    width: 100%;
    height: auto;
  }

  .pc-kv-hero .kv-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(40px, 5vw, 60px);
    z-index: 2;

    width: min(1100px, calc(100% - 48px));

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .pc-kv-hero .kv-bottom > * {
    min-width: 0;
  }

  /* 左：voice */
  .pc-kv-hero .kv-bottom > .kv-voice {
    grid-column: 1;
    justify-self: start;
    max-width: clamp(420px, 45vw, 500px);
    padding: clamp(16px, 2.2vw, 30px);
    border-radius: clamp(12px, 1.4vw, 15px);
  }
  .kv-voice-wrap {
    padding-bottom: clamp(12px, 1.2vw, 18px);
    margin-bottom: clamp(12px, 1.2vw, 18px);
  }
  .kv-voice-meta {
    font-size: clamp(12px, 1.2vw, 16px);
    gap: clamp(12px, 2.2vw, 31px);
  }
  .kv-voice-item {
    font-size: clamp(14px, 1.35vw, 18px);
  }
  .kv-voice-score {
    font-size: clamp(18px, 2vw, 27px);
  }
  .kv-voice-stars img {
    width: clamp(16px, 1.6vw, 22px);
  }

  /* 右：cta */
  .pc-kv-hero .kv-bottom > .kv-cta {
    grid-column: 2;
    display: flex;
    justify-self: center;
  }

  .pc-kv-hero .kv-cta-wrap {
    width: 73.3333vw;
  }

  .pc-kv-hero .kv-cta-buttons {
    display: flex;
    gap: 0;
    width: 100%;
  }

  .pc-kv-hero .kv-cta-buttons .cta-btn {
    display: block;
    width: 100%;
    padding: 0;
    line-height: 0;
  }
  .pc-kv-hero .kv-cta-buttons .cta-btn img {
    display: block;
    width: clamp(180px, 30.6667vw, 270px);
    height: auto;
    object-fit: contain;
  }
}

/* ==============================
  sec01 Anxiety
============================== */

.sec-anxiety {
  position: relative;
  overflow: hidden;
  padding: 0 0 120px;
}

/* 背景 */
.sec-anxiety::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  bottom: 0;
  height: 72%;

  background: url("../img/anxiety-bg-pc.png") no-repeat center bottom / cover;
  z-index: 0;
}
.sec-anxiety .container {
  position: relative;
  z-index: 2;
}

/* ------------------------------
  cards
------------------------------ */

.anxiety-cards {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 33px;
  margin: 0 0 clamp(40px, 10.6667vw, 80px);
}

.anxiety-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.anxiety-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.anxiety-card-text {
  margin: 0;
  padding: 14px 14px;
  margin-bottom: 14px;
  text-align: center;
  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 1.5;
  position: relative;
  display: inline-block;
}
.anxiety-card-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 100px;
  height: 2px;
  background: #ddd;
}
.anxiety-card-text span {
  font-weight: 700;
}

.anxiety-card-name {
  margin: 0;
  padding: 0 14px 14px;
  font-size: clamp(8px, 2.1333vwm 16.2px);
  text-align: center;
  font-weight: 700;
}

/* ------------------------------
  title
------------------------------ */

.sec-anxiety .sec-title {
  max-width: none;
  width: 100%;
  text-align: center;
  color: #fff;
  padding-bottom: 0;
  margin-bottom: clamp(40px, 10.6667vw, 80px);
}

.sec-anxiety .sec-title::after {
  display: none;
}

/* ------------------------------
  voices
------------------------------ */

.anxiety-voices {
  margin: 46px auto 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.anxiety-voice {
  position: relative;
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: clamp(9px, 2.4vw, 18px) 0;
  font-size: clamp(11px, 2.8vw, 21.6px);
  font-weight: 700;
  line-height: 1.5;
}

/* 左寄せに寄る */
.anxiety-voice-left {
  justify-self: start;
}

/* 右寄せに寄る */
.anxiety-voice-right {
  justify-self: end;
  margin-top: 40px;
}

/* 左 */
.anxiety-voice-left::after {
  content: "";
  position: absolute;
  left: 90px;
  bottom: -20px;

  width: 25px;
  height: 20px;

  background: url("../img/anxiety-left.png") no-repeat center / contain;
}

/* 右 */
.anxiety-voice-right::after {
  content: "";
  position: absolute;
  right: 90px;
  bottom: -20px;

  width: 25px;
  height: 20px;

  background: url("../img/anxiety-right.png") no-repeat center / contain;
}

/* ==============================
  sec01 : SP
============================== */
@media (max-width: 768px) {
  /* 背景はSPも下部だけ */
  .sec-anxiety::before,
  .sec-anxiety::after {
    height: 78%;
  }

  .anxiety-cards {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 0 17.3333vw; /*130*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .anxiety-card img {
    height: 30.6667vw; /*230*/
  }
  .anxiety-card-text {
    padding: 2.9333vw 0; /*22*/
    margin-bottom: 2.9333vw;
    font-size: clamp(13px, 3.4667vw, 26px);
  }
  .anxiety-card-name {
    padding: 0 0 2.9333vw;
    font-size: clamp(13px, 3.4667vw, 26px);
  }
  .sec-anxiety .sec-title {
    margin-bottom: 17.3333vw; /*130*/
  }
  .sec-anxiety .sec-title-sub {
    font-size: clamp(19px, 5.2vw, 39px);
    line-height: 1.5;
    margin-bottom: 36px;
    display: inline-block;
  }
  .sec-anxiety .sec-title {
    font-size: clamp(23px, 8.6667vw, 65px);
    line-height: 1.2;
  }

  .anxiety-voices {
    padding: 0 5.2vw;

    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .anxiety-voice {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    width: 68.5333vw;
    max-width: 514px;
    padding: 22px 24px;
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .anxiety-voice {
    margin-left: 0;
    margin-right: 0;
  }

  /* しっぽ（左） */
  .anxiety-voice-left::after {
    left: 100px;
  }

  /* しっぽ（右） */
  .anxiety-voice-right::after {
    right: 100px;
  }
}

/* ==============================
  sec02 : Promise
============================== */

.sec-promise {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: url("../img/promise-bg-pc.png") no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: clamp(31px, 8.2667vw, 62px);
}
.sec-promise .container {
  max-width: 1000px;
}
.sec-promise .sec-title {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: clamp(28px, 7.4667vw, 56px);
}
.sec-promise .sec-title .sec-title-em {
  font-size: clamp(43px, 11.4667vw, 86px);
}

/* 2つの安心（丸＋アイコン） */
.promise-points {
  list-style: none;
  padding: 0;
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 28px;
}

.promise-point {
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #f7c33a;
  background: rgba(255, 205, 80, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.promise-point + .promise-point {
  margin-left: -60px;
}

.promise-point img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.promise-point-text {
  font-weight: 500;
  font-size: clamp(14px, 3.6vw, 27px);
  line-height: 1.4;
  margin: 0;
}
.promise-point-text-em {
  font-size: clamp(18px, 4.8vw, 36px);
}

/* 共通ブロック */
.promise-block {
  margin-top: 64px;
}

.promise-title {
  margin: 0 auto 40px;
  background: #f7c33a;
  color: #333;
  border-radius: 50px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(12px, 3.0667vw, 23.4px);
  letter-spacing: 0.02em;
}

/* 適正価格ブロックだけ三角を入れる */
.promise-block:nth-of-type(1) .promise-tags {
  position: relative;
  margin-bottom: 23px; /* 三角ぶん余白 */
}

.promise-block:nth-of-type(1) .promise-tags::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #f7c33a;
}

.promise-title-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* アイコン */
.promise-title-inner::before {
  content: "";
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: url("../img/promise-icon-white.png") no-repeat center / contain;
}

.promise-body {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 50px;
  align-items: center;
}

.promise-body > :not(img) {
  grid-column: 2;
}

.promise-body > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;

  grid-column: 1;
  grid-row: auto;
}

/* タグ */
.promise-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  gap: 8px;
}

.promise-tag {
  background: #e6e6e6;
  border-radius: 15px;
  padding: 20px 12px;
  margin-bottom: 21px;
  width: 100%;
}

.promise-tag-title {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: clamp(12px, 23px, 23.4px);
  line-height: 1.5;
}

.promise-tag-text {
  margin: 0;
  font-size: clamp(9px, 2.4vw, 18px);
  font-weight: 500;
  line-height: 1.3;
}

.promise-lead {
  margin: 0 0 17px;
  font-weight: 500;
  font-size: clamp(14px, 3.6vw, 27px);
  line-height: 1.5;
  text-align: left;
}

.promise-text {
  margin: 0;
  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 1.5;
  text-align: left;
}

/* 実績 */
.promise-result {
  max-width: 1100px;
  position: relative;
  padding: 80px 0 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.promise-result::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  opacity: 0.35;
  pointer-events: none;
}

.promise-result-lead {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(18px, 4.8vw, 36px);
  line-height: 2;
  text-align: left;
}

.promise-result-em {
  display: inline-block;
  font-size: clamp(23px, 6vw, 45px);
  font-weight: 900;
}

.promise-result-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: nowrap;
}

.promise-result-item {
  display: grid;
  grid-auto-flow: row;
  gap: 6px;
  text-align: center;

  position: relative;
  padding: 18px 32px;
  min-width: 0;
}
.promise-result-item::before,
.promise-result-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(20px, 5.3333vw, 40px);
  height: clamp(65px, 17.3333vw, 130px);
  background: url("../img/laurel.png") no-repeat center / contain;
}

.promise-result-item::before {
  left: -20px;
  transform: translateY(-50%);
}

.promise-result-item::after {
  right: -20px;
  transform: translateY(-50%) scaleX(-1);
}
.promise-result-unitbox {
  display: flex;
  align-items: end;
  gap: 10px;
}
.promise-result-label {
  font-weight: 500;
  font-size: clamp(13px, 3.4667vw, 26px);
  line-height: 1.3;
}

.promise-result-number {
  font-weight: 500;
  font-size: clamp(39px, 10.4vw, 78px);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-family: "Oswald", sans-serif;
  background: linear-gradient(to bottom, #f2c208 0%, #edab06 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.promise-result-unit1 {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.promise-result-unit1,
.promise-result-unit2 {
  font-size: clamp(13px, 3.4667vw, 26px);
  font-weight: 700;
  text-align: left;
  line-height: 1;
}

/* ==============================
  sec02 : SP
============================== */
@media (max-width: 768px) {
  .sec-promise {
    background: url("../img/promise-bg-sp.png") no-repeat center bottom;
    background-size: 100% auto;
    padding-bottom: clamp(31px, 8.2667vw, 62px);
  }
  .promise-block > img,
  .promise-title,
  .promise-tags,
  .promise-lead,
  .promise-text {
    width: 91.1458vw; /* 700/768 */
    margin-left: auto;
    margin-right: auto;
  }
  .sec-promise .sec-title {
    font-size: clamp(40px, 10.6667vw, 80px);
    line-height: 1.2;
  }
  .sec-promise .sec-title .sec-title-em {
    font-size: clamp(50px, 13.3333vw, 100px);
  }
  .promise-points {
    margin-top: 36px;
    gap: 18px;
  }

  .promise-point {
    width: 49.3333vw; /*370px*/
    height: 49.3333vw; /*370px*/
  }

  .promise-point img {
    width: 10.6667vw; /*80*/
    margin-bottom: 8px;
  }

  .promise-point-text {
    font-size: clamp(18px, 5.2vw, 39px);
  }
  .promise-point-text-em {
    font-size: clamp(23px, 6.1333vw, 46px);
  }

  .promise-block {
    margin-top: clamp(55px, 14.6667vw, 110px);
    display: flex;
    flex-direction: column;
  }
  .promise-block:nth-of-type(1) .promise-tags {
    margin-bottom: 30px;
  }
  .promise-block:nth-of-type(1) .promise-tags::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -36px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #f7c33a;
  }
  .promise-title.pc-only {
    display: none;
  }
  .promise-title {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7.3333vw; /* 55px */
    z-index: 2;

    width: 68.5333vw; /*514*/
    height: 10.1333vw; /*76*/
    margin: 0;

    font-size: clamp(17px, 4.4vw, 34px);
    line-height: 1.5;
  }
  .promise-title-inner {
    gap: 3.4667vw;
  }

  /* アイコン */
  .promise-title-inner::before {
    content: "";
    width: clamp(25px, 6.6667vw, 50px);
    height: clamp(25px, 6.6667vw, 50px);
  }

  .promise-body {
    max-width: 91.1458vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .promise-media {
    position: relative;
  }
  .promise-body img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .promise-media > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }
  .promise-body > :not(img) {
    grid-column: auto;
  }
  .promise-right {
    display: block;
    margin-top: 12.9333vw; /*55+60-18*/
  }
  .promise-tags {
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .promise-tag {
    min-width: 0;
    width: 26.6667vw; /* 200/768 くらい */
    padding: 2.6667vw 1.6vw; /*20 12*/
    text-align: center;
  }
  .promise-tag-title {
    margin: 0 0 clamp(9px, 2.4vw, 18px);
    font-size: clamp(17px, 4.4vw, 34px);
  }
  .promise-tag-text {
    font-size: clamp(13px, 3.4667vw, 26px);
    line-height: 1.5;
    font-weight: 500;
  }

  .promise-lead {
    text-align: center;
    font-size: clamp(18px, 3.8667vw, 39px);
    padding-top: 4vw;
    margin-bottom: clamp(18px, 3.8667vw, 39px);
  }

  .promise-text {
    text-align: center;
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .promise-result {
    margin-top: 7.2vw; /*54*/
    padding: 44px 0 34px;
    gap: 8vw; /*60*/
  }
  .promise-result-lead {
    font-size: clamp(27px, 7.3333vw, 55px);
    line-height: 1.5;
    text-align: center;
  }
  .promise-result-em {
    font-size: clamp(40px, 10.6667vw, 80px);
  }
  .promise-result-list {
    padding: 0 clamp(26px, 7.0667vw, 53px);
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }
  .promise-result-item {
    padding: clamp(5px, 2.4vw, 18px) clamp(10px, 4.2667vw, 32px);
  }
  .promise-result-number {
    font-size: clamp(39px, 10.4vw, 78px);
  }
}
@media (min-width: 769px) {
  .promise-media {
    display: contents;
  }

  /* PCではSP用タイトルは非表示のまま */
  .promise-title.sp-only {
    display: none;
  }
  .promise-right {
    grid-column: 2;
    align-self: center;
  }
  .promise-result {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .promise-result-lead {
    flex: 0 0 auto;
  }

  .promise-result-list {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 50px;
  }
}

/* ==============================
  CTA（sec03）
============================== */
.cta {
  position: relative;
  text-align: center;
}
.btn-group {
  display: flex;
  gap: clamp(16px, 2vw, 32px);

  width: min(1100px, calc(100% - 48px));
  margin: 0;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(40px, 5vw, 80px);
}
.btn-group .cta-btn {
  flex: 1 1 0;
  display: block;
}

.btn-group .cta-btn img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .btn-group {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    margin: 0 auto;

    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 2vw, 15px);

    bottom: 10.6667vw;
    text-align: center;
  }

  .btn-group .cta-btn {
    max-width: 81.8667vw;
  }

  .btn-group .cta-btn img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ==============================
  sec03 : Items / Results
============================== */

.sec-items {
  padding: clamp(55px, 14.9333vw, 112px) 0 0;
}

.sec-items .sec-title {
  margin: 0 auto clamp(40px, 10.6667vw, 80px);
}

/* ------------------------------
  買取カテゴリ
------------------------------ */

.item-categories {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 45px 25px;
}

.item-category {
  text-align: center;
}

.item-category img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  border-radius: 18px;
  display: block;
}

.item-category p {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 500;
}

/* ------------------------------
  最近の買取実績
------------------------------ */

.sec-subtitle {
  margin: 111px auto 80px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

.purchase-results {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
}

.purchase-item {
  text-align: center;
}

.purchase-item img {
  height: clamp(140px, 37.3333vw, 280px);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;

  border-radius: 18px;
  display: block;
  margin-bottom: 21.6px;
}

.purchase-name {
  margin: 0 0 16px;
  font-size: clamp(9px, 2.4vw, 18px);
  font-weight: 500;
}

.purchase-place {
  margin: 0;
  font-size: clamp(8px, 1.8667vw, 14.4px);
  font-weight: 700;
}

.purchase-price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
/* 「買取金額」ピル */
.purchase-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #333;

  font-size: clamp(8px, 1.8667vw, 14.4px);
  font-weight: 500;
}

.purchase-price {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 8.4vw, 63px);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(
    to bottom,
    #cf9d1e 0%,
    #cf9d1e 50%,
    #c18015 50%,
    #c18015 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purchase-price span {
  font-size: clamp(9px, 2.4vw, 18px);
  font-weight: 700;
  margin-left: 4px;
}

/* 下のメッセージ */
.sec-message {
  text-align: center;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 700;
  line-height: 2.5;
  margin: 110px auto;
}

.sec-message-em {
  font-size: clamp(27px, 6vw, 45px);
  font-weight: 900;
  line-height: 1.5;
  padding-bottom: 6px;
  display: inline;
  background-image: linear-gradient(#ffcd50, #ffcd50);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 103%;
}

/* ==============================
  sec03 : SP
============================== */
@media (max-width: 768px) {
  .item-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 6.6667vw, 2vw;
    margin-bottom: 7.8125vw; /* 60/768 */
  }

  .item-category img {
    border-radius: 2.0833vw; /* 16/768 */
  }

  .item-category p {
    font-size: clamp(13px, 3.4667vw, 26px);
    margin-top: 3vw; /* 23/768 */
  }

  .sec-subtitle {
    font-size: 6.1333vw; /*47*/
    margin: 13.3333vw auto 9.3333vw; /* 100, 70/768 */
  }

  .purchase-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 10.6667vw 2vw; /* 80/768 , 15/768 */
    margin-bottom: 7.2917vw; /* 56/768 */
  }

  .purchase-item img {
    aspect-ratio: 1 / 1; /* ← 正方形 */
    height: auto;
    border-radius: 2.0833vw;
    margin-bottom: 4vw; /* 30/768 */
  }
  .purchase-name {
    font-size: clamp(13px, 3.4667vw, 26px);
    margin: 0 0 12px;
  }
  .purchase-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .purchase-label {
    height: 30px;
    width: 100%;
    font-size: clamp(10px, 2.6667vw, 20.8px);
    margin-bottom: 15px;
  }
  .purchase-place {
    margin-bottom: 4vw;
    font-size: clamp(11px, 2.6667vw, 21px);
  }
  .purchase-price {
    font-size: clamp(45px, 12vw, 90px);
  }
  .purchase-price span {
    font-size: clamp(13px, 3.4667vw, 26px);
  }
  .sec-message {
    font-size: 6vw; /*45*/
    line-height: 1.6;
    margin: clamp(55px, 14.6667vw, 110px) 0;
  }
  .sec-message-em {
    font-size: 8.6667vw; /*65*/
    line-height: 1.5;
    background-size: 100% 16px;
    background-position: 0 110%;
  }
  .sec-message::after {
    height: 8px;
    width: 92%;
  }
}
@media (min-width: 769px) {
  .purchase-label {
    display: inline-block;
    margin: 10px 10px 0 0;
  }

  .purchase-price {
    display: inline-block;
  }

  .purchase-label,
  .purchase-price {
    vertical-align: baseline;
  }
}
@media (max-width: 420px) {
  .purchase-price {
    font-size: 40px;
  }
  .sec-message {
    font-size: 24px;
  }
  .sec-message-em {
    background-size: 100% 8px;
  }
}
/* ==============================
  sec04 : Voice
============================== */
.sec-voice {
  background: #f7f7f7;
  padding-bottom: clamp(65px, 17.3333vw, 130px);
}

/* list */
.voice-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 26px;
  margin-top: 48px;
}

/* card */
.voice-item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 40px 50px;
}

/* 上の黄色帯 */
.voice-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: #ffcd50;
}

/* card title */
.voice-title {
  margin: 0 0 30px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(14px, 3.6vw, 27px);
  line-height: 1.5;
  color: #333;
}

/* body layout (PC) */
.voice-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: start;
}

/* photo */
.voice-photo {
  aspect-ratio: 1 / 1;
  width: clamp(70px, 18.6667vw, 140px);
  height: clamp(70px, 18.6667vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  background: #d9d9d9; /* 画像ない時の保険 */
  display: block;
  margin: 0 auto;
}

/* content */
.voice-name {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

/* meta */
.voice-meta {
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
}

.voice-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-meta-row dt {
  flex: 0 0 auto;
  background: #ffcd50;
  border-radius: 999px;
  padding: 2.5px 17px;
  font-weight: 500;
  font-size: clamp(7px, 1.8667vw, 14.4px);
  line-height: 1.4;
}

.voice-meta-row dd {
  margin: 0;
  font-weight: 500;
  font-size: clamp(9px, 2.4vw, 18px);
}

.voice-meta-row dd span {
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, 3.6vw, 27px);
  line-height: 1.4;
  font-weight: 400;
}

/* text */
.voice-text {
  font-family:
    "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  margin: 0;
  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 1.8;
  text-align: left;
}

/* ==============================
  sec04 : SP
============================== */
@media (max-width: 768px) {
  .sec-voice .container {
    max-width: 100%;
    padding: 0 clamp(19px, 5.0667vw, 38px);
  }

  .voice-item {
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 38px);
  }
  .voice-body {
    display: grid;
    grid-template-columns: clamp(100px, 26.6667vw, 200px) 1fr;
    column-gap: clamp(20px, 5.3333vw, 40px);
    row-gap: 12px;
    align-items: start;
  }

  .voice-photo {
    grid-column: 1;
    grid-row: 1 / 3;
    width: clamp(100px, 26.6667vw, 200px);
    height: clamp(100px, 26.6667vw, 200px);
  }

  .voice-content {
    display: contents;
  }

  .voice-name {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: left;
    align-self: end;
    width: var(--voice-right-w, 100%);
    max-width: var(--voice-right-max, 100%);

    font-size: clamp(12px, 3.0667vw, 24px);
  }

  .voice-meta {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    gap: 0;

    width: var(--voice-right-w, 100%);
    max-width: var(--voice-right-max, 100%);
  }
  .voice-meta-row {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
  }
  .voice-meta-row dt {
    padding: 2px 0;
    width: clamp(75px, 20vw, 150px);
    font-size: clamp(11px, 2.6667vw, 21px);
  }

  .voice-meta-row dd {
    min-width: 0;
    width: 100%;
    font-size: clamp(8px, 3.4667vw, 26px);
    text-align: right;
    white-space: nowrap;
  }

  .voice-meta-row dd span {
    font-family: "Oswald", sans-serif;
    font-size: clamp(26px, 6.9333vw, 52px);
    line-height: 1.5;
  }

  .voice-text {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: clamp(24px, 6.4vw, 48px) 0 0;
    font-size: clamp(13px, 3.4667vw, 26px);
    line-height: 1.8;
  }

  .voice-body {
    --voice-right-max: 420px;
    --voice-right-w: 100%;
  }
}
/* PC */
@media (min-width: 769px) {
  .sec-voice .container {
    max-width: 1000px;
  }
  .voice-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 50px;
    row-gap: 5px;
    align-items: start;
  }

  .voice-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
  .voice-name {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    font-size: clamp(8px, 2.1333vw, 16px);
  }

  .voice-content {
    grid-column: 2;
    grid-row: 1 / 3;
    padding-top: 10px;
  }

  .voice-meta {
    display: flex;
    gap: 72px;
    align-items: center;
    flex-wrap: wrap;
  }

  .voice-meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
  }
}

/* ==============================
  sec05 : Flow
============================== */

/* steps
------------------------------ */

.flow-steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  gap: 28px;
}

/* STEPバッジ（吹き出しっぽい形） */
.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* 画像の箱 */
.flow-step-media {
  position: relative;
  border-radius: 18px;
}

.flow-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-step-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  font-weight: 900;
}
.flow-step-number img {
  max-width: 50%;
  height: auto;
  display: block;
}

.flow-step-title {
  margin: clamp(14px, 4vw, 30px) 0;
  font-weight: 900;
  font-size: clamp(12px, 3.0667vw, 23.4px);
}

.flow-step-text {
  font-size: clamp(9px, 2.4vw, 18px); /*18*/
  position: static;
  inset: auto;
  display: block;
}

/* free guarantee
------------------------------ */

.flow-free {
  margin-top: 50px;
  display: grid;
  gap: 28px;
  align-items: center;
}

.flow-free-lead {
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.4;
  color: #333;
}

.flow-free-lead-sub {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(14px, 3.6vw, 27px);
  line-height: 1.5;
}

.flow-free-lead-main {
  display: inline-block;
  font-weight: 900;
  font-size: clamp(17px, 6vw, 45px);
  line-height: 1.5;
}

.flow-free-items {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 447px;
  height: 442px;
  justify-self: end;
}

.flow-free-item {
  position: absolute;
  width: 211px;
  height: 211px;
  border-radius: 50%;
  background: rgba(255, 205, 80, 0.45);
  border: 2px solid rgba(255, 205, 80, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: clamp(14px, 3.7333vw, 28.39px);
  color: #333;
  flex-direction: column;
}

/* 1: 即日出張 */
.flow-free-item:nth-child(1)::before {
  background-image: url("../img/icon-truck.png");
}

/* 2: 査定 */
.flow-free-item:nth-child(2)::before {
  background-image: url("../img/icon-search.png");
}

/* 4: 見積り */
.flow-free-item:nth-child(4)::before {
  background-image: url("../img/icon-calculator.png");
}

/* 5: キャンセル */
.flow-free-item:nth-child(5)::before {
  background-image: url("../img/icon-cancel.png");
}
/* 四葉 */
.flow-free-item:nth-child(1) {
  left: 0;
  top: 0;
} /* 即日出張 */
.flow-free-item:nth-child(2) {
  right: 0;
  top: 0;
} /* 査定 */
.flow-free-item:nth-child(4) {
  left: 0;
  bottom: 0;
} /* 見積り */
.flow-free-item:nth-child(5) {
  right: 0;
  bottom: 0;
} /* キャンセル */

/* 真ん中 */
.flow-free-item.is-main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 182px;
  height: 182px;
  background: #ffcd50;
  border: 14px solid #ffbd24;
  box-shadow: 0 0 0 rgba(0, 0, 0, 4.37);
  font-size: clamp(10px, 5.4667vw, 41.5px);
  line-height: 1.2;
}
/* is-mainは除外 */
.flow-free-item:not(.is-main)::before {
  position: static;
  transform: none;
  content: "";

  top: 50%;
  left: 50%;

  width: clamp(24px, 6.2vw, 48px);
  height: clamp(24px, 6.2vw, 48px);

  background-size: contain;
  background-repeat: no-repeat;
}

/* ==============================
  PC
============================== */
@media (min-width: 769px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .flow-step-media {
    width: min(250px, 100%);
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .flow-step {
    --badge-size: clamp(45px, 12vw, 90px);
  }
  .flow-step-number img {
    max-width: 90px;
    height: auto;
    display: block;
  }
  .flow-step-body {
    margin-top: calc(var(--badge-size) * 0.6);
  }

  .flow-free {
    grid-template-columns: 1fr auto;
  }
}

/* ==============================
  SP
============================== */
@media (max-width: 768px) {
  .flow-steps {
    gap: clamp(55px, 14.6667vw, 110px);
    padding-top: clamp(30px, 7.3333vw, 55px);
  }
  .flow-step {
    position: relative;
  }

  .flow-step-body {
    display: grid;
    grid-template-columns: 345px 1fr;
    column-gap: 18px;
    align-items: stretch;
  }
  .flow-step-body > :not(.flow-step-media) {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }
  .flow-step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  .flow-step-media {
    grid-row: 1 / 3;
    aspect-ratio: 345 / 409;
    width: min(345px, 45vw);
    overflow: hidden;
    position: relative;
    grid-row: auto;
  }

  .flow-step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .flow-step-title,
  .flow-step-text {
    margin: 0;
    line-height: 1.5;
    text-align: left;
    grid-column: auto;
    grid-row: auto;
  }
  .flow-step-title {
    font-size: clamp(17px, 4.5333vw, 34px);
  }

  .flow-step-text {
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  /* バッジ */
  .flow-step-number {
    position: absolute;
    top: -7.3333vw; /*55*/
    left: 0;
    z-index: 3;
    width: auto;
    height: auto;
    display: block;
  }

  .flow-step-number img {
    width: clamp(60px, 14vw, 120px);
    height: auto;
    max-height: 180px;
    display: block;
  }

  .flow-free {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .flow-free-lead-sub {
    font-size: clamp(19px, 5.2vw, 39px);
    line-height: 1.4;
  }
  .flow-free-lead-main {
    font-size: clamp(33px, 8.6667vw, 65px);
    line-height: 1.4;
  }

  .flow-free-items {
    width: clamp(320px, 85.3333vw, 640px);
    height: clamp(300px, 80vw, 600px);
    justify-self: center;
    margin-top: 10.6667vw; /*80*/
  }

  .flow-free-item {
    width: clamp(145px, 38.6667vw, 290px);
    height: clamp(145px, 38.6667vw, 290px);
    font-size: clamp(18px, 5.2vw, 39px);
    line-height: 1.5;
  }

  .flow-free-item.is-main {
    width: clamp(175px, 33.3333vw, 250px);
    height: clamp(175px, 33.3333vw, 250px);
    font-size: clamp(28px, 7.6vw, 57px);
    line-height: 1.2;
  }
  .flow-free {
    margin-top: 15.4667vw;
    display: grid;
    gap: 28px;
    align-items: center;
  }
}
@media (min-width: 421px) and (max-width: 768px) {
  .flow-step-body {
    grid-template-columns: clamp(160px, 38vw, 260px) 1fr;
  }

  .flow-step-media {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .flow-steps {
    padding-top: 0;
    gap: 30px;
  }
  .flow-step-body {
    grid-template-columns: 140px 1fr;
    column-gap: 12px;
    align-items: center;
  }

  .flow-step-media {
    width: 140px;
    aspect-ratio: 345 / 409;
  }

  .flow-step-body > :not(.flow-step-media) {
    gap: 14px;
  }

  .flow-step-title {
    font-size: 18px;
    line-height: 1.35;
  }

  .flow-step-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .flow-step-number {
    top: -18px;
  }
  .flow-step-number img {
    width: 46px;
    height: auto;
    max-height: 800px;
  }
}
/* ==============================
  sec06 : FAQ
============================== */
.sec-faq .sec-title {
  text-align: left;
  color: #333;
}

/* list */
.faq {
  margin: clamp(40px, 10.6667vw, 80px) 0 0;
}

/* 1件 */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 26px 0;
}

.faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}

/* Q行 */
.faq-q {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 22px;
  align-items: start;
  margin: 0;
}

/* Q/Aラベル共通 */
.faq-label {
  width: clamp(35px, 9.3333vw, 70px);
  height: clamp(35px, 9.3333vw, 70px);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(27px, 6vw, 45px);
  line-height: 1;
  user-select: none;
}

/* Qは黄色 */
.faq-label-q {
  background: #ffcd50;
  color: #333;
}

/* Aは枠 */
.faq-label-a {
  background: transparent;
  border: 2px solid #ccc;
  color: #333;
}

/* 質問ボタン */
.faq-btn {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;

  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 2;
}

/* 右の▼ */
.faq-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  position: relative;
}

.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #333;
  clip-path: polygon(20% 35%, 50% 65%, 80% 35%, 80% 45%, 50% 75%, 20% 45%);
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

/* open時回転 */
.faq-item.is-open .faq-icon::before,
.faq-btn[aria-expanded="true"] .faq-icon::before {
  transform: rotate(180deg);
}

/* A行 */
.faq-a {
  margin: 18px 0 0;
  display: none;
  grid-template-columns: clamp(35px, 10.4948vh, 70px) 1fr;
  column-gap: clamp(15px, 4vh, 30px);
  align-items: start;
  align-items: flex-start;
  gap: clamp(15px, 4vw, 30px);
}
.faq-item.is-open .faq-a {
  display: flex;
}
.faq-label-a {
  flex-shrink: 0;
}
/* 回答本文 */
.faq-answer {
  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 768px) {
  .faq-q,
  .faq-a {
    grid-template-columns: 13.3333vw 1fr; /*100*/
    column-gap: 4.8vw; /*36*/
  }

  .faq-label {
    width: clamp(50px, 13.3333vw, 100px);
    height: clamp(50px, 13.3333vw, 100px);
    font-size: clamp(32px, 8.6667vw, 65px); /*65*/
  }
  .faq-label-a {
    gap: clamp(18px, 4.8vw, 36px);
  }
  .faq-answer,
  .faq-btn {
    font-size: clamp(13px, 3.4667vw, 26px); /*26*/
    line-height: 1.75;
  }
}

/* ==============================
  sec07 : Form
============================== */

.sec-form {
  background: #fff;
}

.sec-form .sec-title {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: left;
}

/* form本体 */
.form {
  max-width: 800px;
  margin: 0 auto;
}

/* 行の区切り（薄い罫線） */
.form-row {
  padding: 27px 0;
  border-top: 1px solid #ddd;
}
.form-row:first-child {
  border-top: 0;
}
.form-row:last-child {
  border-top: 0;
  padding-bottom: clamp(75px, 20vw, 150px);
}
/* 2カラム（PC） */
.form-row.is-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* field */
.form-field {
  min-width: 0;
}

/* label */
.form-label {
  margin: 0 0 9px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

/* 必須/任意バッジ */
.form-required,
.form-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 16.2px;
  font-weight: 500;
  line-height: 1;
}
.form-required {
  background: #ffcd50;
  line-height: 1;
}
.form-optional {
  background: #e7e7e7;
}

/* input/textarea 共通 */
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 20px;
  padding: 30px 20px;
  font-size: 18px;
  color: #333;
  background: #fff;
  outline: none;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
  height: 53px;
}

.form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

/* placeholder */
.form input::placeholder,
.form textarea::placeholder {
  color: #c8c8c8;
}

/* 同意エリア */
.form-consent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ラベルを少し右へ（必須バッジのぶん） */
.form-consent-label {
  margin-left: 27px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-consent-weight {
  font-weight: 700;
}

/* checkbox隠して見た目を作る */
.form-consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-consent-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid #e1e1e1;
  background: #fff;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

/* チェック（ON） */
.form-consent-label input[type="checkbox"]:checked + .form-consent-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 21px;
  height: 14px;
  border-left: 4px solid #ffcd50;
  border-bottom: 4px solid #ffcd50;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* リンク */
.form-link {
  text-decoration: underline;
  font-weight: 900;
}
.form-consent-label {
  font-size: clamp(9px, 2.4vw, 18px);
}
/* 送信ボタン */
.form-submit {
  max-width: clamp(275px, 73.3333vw, 550px);
}

/* ==============================
  sec07 : SP
============================== */
@media (max-width: 768px) {
  .sec-form .sec-title {
    max-width: 700px;
    margin: 0 auto 28px;
  }

  .form {
    max-width: 700px;
  }
  .form-row {
    padding: clamp(18px, 4.8vw, 36px) 0;
  }
  .form-row.is-2col {
    grid-template-columns: 1fr;
    gap: clamp(18px, 4.8vw, 36px);
  }
  .form-row.is-2col .form-field:first-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 36px;
  }
  .form-row:last-child {
    padding-bottom: clamp(100px, 26.6667vw, 200px);
  }
  .form-label {
    margin: 0 0 clamp(9px, 2.4vw, 18px);
    gap: clamp(12px, 3.2vw, 24px);
    font-size: clamp(13px, 3.4667vw, 26px);
    line-height: 1.8;
  }
  .form input[type="text"],
  .form input[type="tel"],
  .form input[type="email"] {
    height: clamp(45px, 12vw, 90px);
  }
  .form input[type="text"],
  .form input[type="tel"],
  .form input[type="email"],
  .form textarea {
    padding: clamp(18px, 4.8vw, 36px);
    font-size: clamp(13px, 3.4667vw, 26px);
  }
  .form-consent-label {
    margin-left: clamp(12px, 3.2vw, 24px);
    align-items: flex-start;
  }
  .form-required,
  .form-optional {
    height: clamp(20px, 5.3333vw, 40px);
    padding: 0 clamp(12px, 3.2vw, 24px);
    font-size: clamp(12px, 2.3438vw, 23.4px);
    font-weight: 500;
    white-space: nowrap;
  }
  .form-required-consent {
    left: 0;
  }
  .form-consent-label {
    font-size: clamp(13px, 3.4667vw, 26px);
    white-space: nowrap;
  }
  .form-consent-label
    input[type="checkbox"]:checked
    + .form-consent-box::after {
    width: clamp(15px, 4vw, 30px);
    height: clamp(10px, 2.6667vw, 20px);
  }
  .form-consent-box {
    width: clamp(25px, 6.6667vw, 50px);
    height: clamp(25px, 6.6667vw, 50px);
  }
  .form-submit {
    max-width: 100%;
  }
}

/* ==============================
  footer
============================== */

.footer {
  background: #eee;
  padding: 18px 0;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer {
    padding: clamp(13px, 3.4667vw, 26px) 0;
  }

  .footer-copy {
    font-size: clamp(10px, 2.6667vw, 20px);
  }
}

/* ==============================
  Thanks
============================== */

.thanks {
  background: #fff;
  color: #333;
  padding: clamp(150px, 29.3333vw, 220px) 16px clamp(50px, 13.3333vw, 100px);
}

.thanks-container {
  max-width: clamp(400px, 106.6667vw, 800px);
  margin: 0 auto;
  text-align: center;
}

.thanks-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.thanks-title-line {
  display: block;
  width: 80px;
  height: 3px;
  background: #333;
  margin: 36px auto 0;
}

.thanks-lead {
  margin-top: clamp(18px, 4.8vw, 36px);
  font-size: clamp(10px, 2.4vw, 18px);
  line-height: 1.75;
}

.thanks-card {
  margin: clamp(18px, 4.8vw, 36px) auto 0;
  max-width: clamp(400px, 106.6667vw, 800px);
  background: #f7f7f7;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 27px);
}

.thanks-card-text {
  font-size: clamp(10px, 2.4vw, 18px);
  line-height: 1.75;
}

.thanks-strong {
  font-weight: 700;
}

.thanks-note {
  margin-top: clamp(18px, 2.6vw, 26px);
  font-size: clamp(10px, 2.4vw, 18px);
  line-height: 2;
  opacity: 0.9;
}

.thanks-contact {
  margin: clamp(18px, 4.8vw, 36px) auto 0;
  max-width: clamp(400px, 106.6667vw, 800px);

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #eee;
  border-radius: 999px;
  padding: clamp(11px, 2.9333vw, 22px);
  gap: 21px;
}

.thanks-contact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 16vw, 120px);
  height: clamp(13px, 3.3333vw, 25px);
  border-radius: 999px;
  background: #ffcd50;
  font-weight: 500;
  font-size: clamp(7px, 1.8667vw, 14px);
}

.thanks-contact-value {
  font-size: clamp(10px, 2.4vw, 18px);
  word-break: break-all;
}

.thanks-note--bottom {
  font-size: clamp(10px, 2.4vw, 18px);
}

.thanks-actions {
  margin-top: clamp(60px, 16vw, 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.thanks-back {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: min(350px, 100%);
  height: 54px;

  border-radius: 999px;
  border: 2px solid #333;
  text-decoration: none;
  font-weight: 700;
  background: transparent;
}

/* アイコンを左に固定 */
.thanks-back-icon {
  position: absolute;
  left: 30px;
  font-weight: 900;
}

.thanks-back:hover {
  border-color: rgba(51, 51, 51, 0.45);
}

/* SP微調整 */
@media (max-width: 768px) {
  .thanks {
    padding: clamp(180px, 33.3333vw, 250px) 16px clamp(40px, 10.6667vw, 80px);
  }

  .thanks-container {
    max-width: clamp(365px, 81.8667vw, 614px);
  }

  .thanks-title {
    font-size: clamp(23px, 6vw, 45px);
  }

  .thanks-title-line {
    display: block;
    width: 100px;
    height: 4px;
    margin: clamp(26px, 6.9333vw, 52px) auto 0;
  }

  .thanks-lead {
    margin-top: clamp(50px, 13.3333vw, 100px);
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .thanks-card {
    margin: clamp(26px, 6.9333vw, 52px) auto 0;
    max-width: clamp(365px, 81.8667vw, 614px);
    border-radius: 20px;
    padding: clamp(23px, 6vw, 45px);
  }

  .thanks-card-text {
    font-size: clamp(13px, 3.4667vw, 26px);
    line-height: 1.75;
  }

  .thanks-strong {
    font-weight: 700;
  }

  .thanks-note {
    margin-top: clamp(26px, 6.9333vw, 52px);
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .thanks-contact {
    margin: clamp(26px, 6.9333vw, 52px) auto 0;
    max-width: clamp(365px, 81.8667vw, 614px);
    padding: clamp(13px, 3.4667vw, 26px);
    gap: 2.8vw; /*21*/
  }

  .thanks-contact-label {
    width: clamp(75px, 2vw, 150px);
    height: clamp(15px, 4vw, 30px);
    border-radius: 20px;
    font-size: clamp(10px, 2.6667vw, 20px);
  }

  .thanks-contact-value {
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .thanks-note--bottom {
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .thanks-actions {
    margin-top: clamp(75px, 20vw, 150px);
  }

  .thanks-back {
    width: min(clamp(275px, 60vw, 450px), 100%);
    height: clamp(40px, 10.6667vw, 80px);
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  /* アイコンを左に固定 */
  .thanks-back-icon {
    position: absolute;
    left: 30px;
    font-weight: 900;
  }

  .thanks-back:hover {
    border-color: rgba(51, 51, 51, 0.45);
  }
}


/* ===== PC CTA click fix (overlay/z-index) ===== */
@media (min-width: 769px) {
  .cta::after {
    pointer-events: none;
  }

  .cta .btn-group {
    z-index: 5;
  }

  .cta .btn-group .cta-btn {
    pointer-events: auto;
  }
}
/* ===== /PC CTA click fix ===== */
