@charset "UTF-8";
/* =========================================================
   index.css  TOPページ（LP）専用スタイル
   ========================================================= */

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  background:
    radial-gradient(120% 90% at 8% 110%, rgba(228, 99, 116, .16), transparent 52%),
    radial-gradient(130% 90% at 92% -10%, rgba(195, 227, 34, .18), transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .45;
}
.hero__blob--lime { width: 260px; height: 260px; background: var(--lime); top: -70px; right: -50px; opacity: .32; }
.hero__blob--pink { width: 360px; height: 360px; background: var(--pink); bottom: 10px; left: -110px; opacity: .4; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 72px) clamp(30px, 5vw, 48px);
}

.hero__ribbon {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: clamp(.92rem, 2.6vw, 1.08rem);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__ribbon em { color: var(--lime); font-style: normal; font-size: 1.2em; }

.hero__title {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(2rem, 6.4vw, 3.4rem);
  line-height: 1.28;
  letter-spacing: .01em;
}
.hero__title-big { font-size: 1.12em; }

.hero__sub {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(.96rem, 2.6vw, 1.08rem);
  font-weight: 500;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 12px 16px;
  box-shadow: var(--shadow-s);
}
.hero__points-ic {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(228, 99, 116, .12);
  color: var(--pink);
}
.hero__points-ic svg { width: 24px; height: 24px; }
.hero__points b { display: block; font-family: var(--font-rounded); color: var(--navy); font-size: .98rem; }
.hero__points small { color: var(--muted); font-size: .74rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ヒーロー右カード */
.hero__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-m);
}
.hero__badge {
  position: absolute;
  top: -34px; right: 22px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(171, 201, 26, .4);
  transform: rotate(-6deg);
}
.hero__badge-num { font-size: 1.9rem; line-height: 1; }
.hero__badge-num small { font-size: .8rem; }
.hero__badge-txt { font-size: .76rem; }

.hero__line-ttl {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 8px;
}
.hero__line-note { color: var(--pink); font-weight: 700; font-size: .92rem; margin: 8px 0 18px; }

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--cream-deep);
}
.hero__tags span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--cream);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- 保証バンド（0円） ---------- */
.guarantee { background: var(--navy); padding-block: 22px; }
.guarantee__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 30px;
}
.guarantee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 1rem;
}
.guarantee__item b { color: var(--lime); font-size: 1.5rem; }
.guarantee__sep { width: 1px; height: 26px; background: rgba(255, 255, 255, .2); }

/* ---------- お悩み ---------- */
.worry { background: var(--cream); }
.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin-inline: auto;
}
.worry-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  box-shadow: var(--shadow-s);
  font-weight: 500;
}
.worry-item__mark {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(228, 99, 116, .14);
  color: var(--pink);
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.2rem;
}
.worry-bridge {
  text-align: center;
  margin-top: 34px;
}
.worry-bridge__arrow {
  display: inline-block;
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--pink);
  background: var(--lime);
  padding: 10px 30px;
  border-radius: 999px;
  position: relative;
}
.worry-bridge__arrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -12px;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--lime);
}
.worry-bridge p {
  margin-top: 26px;
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
}

/* ---------- 対応車種・状態 ---------- */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.type-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.type-card__ic {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: rgba(228, 99, 116, .14);
  color: var(--pink);
}
.type-card__ic svg { width: 30px; height: 30px; }
.type-card h3 {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
}
.type-card p { font-size: .8rem; color: var(--muted); }
.types-note { text-align: center; margin-top: 26px; font-size: .92rem; color: var(--ink); }
.types-note b { color: var(--pink); }

/* ---------- 選ばれる理由 ---------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reason-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.reason-card__no {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(228, 99, 116, .25);
}
.reason-card__ic {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--pink);
  color: #fff;
  margin-bottom: 18px;
}
.reason-card__ic svg { width: 32px; height: 32px; }
.reason-card h3 {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.reason-card p { font-size: .9rem; color: var(--ink); }

/* ---------- LINE診断バンド ---------- */
.line-band {
  background: linear-gradient(135deg, #2c3a4b 0%, #38536b 100%);
  color: #fff;
  padding-block: clamp(56px, 8vw, 92px);
  overflow: hidden;
}
.line-band__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.line-band__tag {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: .8rem;
  padding: 6px 16px;
  border-radius: 999px;
}
.line-band h2 {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.6vw, 2.4rem);
  line-height: 1.4;
  margin: 16px 0 14px;
}
.line-band h2 .mark { background: linear-gradient(transparent 60%, var(--line-green) 60%); }
.line-band p { color: #d7dee5; font-size: .96rem; }
.line-band__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.line-band .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .6); }
.line-band .btn--ghost:hover { background: #fff; color: var(--navy); }

.line-band__art { display: grid; place-items: center; }
.phone {
  width: min(280px, 80%);
  background: var(--cream);
  border-radius: 26px;
  padding: 22px 16px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}
.phone__top {
  width: 60px; height: 7px;
  background: #c7cdd4;
  border-radius: 999px;
  margin: 0 auto 18px;
}
.phone__bubble {
  max-width: 84%;
  font-size: .82rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.phone__bubble--in { background: #fff; color: var(--ink); border-top-left-radius: 4px; }
.phone__bubble--out {
  background: var(--line-green);
  color: #fff;
  margin-left: auto;
  border-top-right-radius: 4px;
}

/* ---------- 買取の流れ ---------- */
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: flow;
}
.flow-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  box-shadow: var(--shadow-s);
}
.flow-item::before {
  content: "";
  position: absolute;
  top: 50%; right: -16px;
  width: 22px; height: 22px;
  border-top: 3px solid var(--pink);
  border-right: 3px solid var(--pink);
  transform: translateY(-50%) rotate(45deg);
}
.flow-list .flow-item:last-child::before { display: none; }
.flow-item__step {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--pink);
  font-size: .9rem;
  letter-spacing: .08em;
}
.flow-item h3 {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.16rem;
  margin: 8px 0 10px;
}
.flow-item p { font-size: .9rem; }

/* ---------- 事業内容 ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover { border-color: var(--lime); transform: translateY(-4px); }
.service-card h3 {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}
.service-card h3::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 6px; height: 1.1em;
  background: var(--pink);
  border-radius: 3px;
}
.service-card p { font-size: .92rem; }

/* ---------- 料金カード ---------- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-s);
}
.price-card__name {
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.price-card__value {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--pink);
  font-size: 2.4rem;
  line-height: 1;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .92rem;
}
.faq-item summary::after {
  content: "";
  margin-left: auto;
  width: 11px; height: 11px;
  border-right: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body { padding: 0 22px 20px 66px; }
.faq-item__body p { font-size: .92rem; }

/* ---------- 会社概要 ---------- */
.about-box {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-s);
  max-width: 760px;
  margin-inline: auto;
}
.about-dl { display: grid; gap: 0; }
.about-dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--cream-deep);
}
.about-dl dt {
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--navy);
}
.about-dl dd { margin: 0; }
.about-dl a:hover { color: var(--pink); }

/* ---------- 最終CTA ---------- */
.final-cta { position: relative; background: var(--cream-deep); }
.driveband--top { background: transparent; }
.final-cta__inner {
  text-align: center;
  padding-block: clamp(46px, 7vw, 76px);
}
.final-cta h2 {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.5rem, 4.6vw, 2.2rem);
  line-height: 1.45;
}
.final-cta p { margin-top: 16px; color: var(--ink); }
.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .line-band__inner { grid-template-columns: 1fr; }
  .line-band__art { order: -1; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-item::before {
    top: auto; right: 50%; bottom: -16px;
    transform: translateX(50%) rotate(135deg);
  }
  .service-grid, .price-cards { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero__points { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .worry-grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .final-cta__btns .btn, .line-band__cta .btn { width: 100%; }
  .guarantee__sep { display: none; }
}
