@charset "UTF-8";
/* ========================
  Theme
======================== */
:root {
  --bg: #fff;
  --text: #0b0f14;
  --muted: rgba(11, 15, 20, 0.68);
  --cy-yellow: #f5ff3b;
  --cy-blue: #00e5ff;
  --line: rgba(11, 15, 20, 0.12);
  --soft: rgba(11, 15, 20, 0.06);
  --radius: 16px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* ========================
  Base
======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-page {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  line-height: 1.65;
  padding-bottom: 110px;
  z-index: 0;
}

.container {
  width: min(100% - 32px, 980px);
  margin-inline: auto;
}

section {
  padding: 52px 0;
}

.sectionTitle {
  margin: 0 0 25px;
  font-size: 26px;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.sectionTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 46%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cy-yellow), var(--cy-blue));
  box-shadow: 0 0 18px rgba(245, 255, 59, 0.35);
}

.sectionLead {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .sectionTitle {
    font-size: 32px;
  }
}
/* ========================
  Generic Buttons / Chips (outside MV)
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #0b0f14;
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

@media (hover: hover) {
  .btn--ghost:hover {
    border-color: rgba(57, 255, 20, 0.45);
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--text);
  background: rgba(0, 229, 255, 0.06);
}

/* ========================
  Header
======================== */
.header {
  position: absolute;
  bottom: 207px;
  left: 0;
  z-index: 1;
  background: transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 10px;
}
.header__logo {
  display: inline-flex;
  align-items: center;
}
.header__logo img {
  width: auto;
  height: 150px;
}
.header__cta {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .header {
    top: 0;
    bottom: auto;
  }
}

/* ========================
  MV
======================== */
.mv {
  position: relative;
  overflow: hidden;
  height: 90vh;
  min-height: 520px;
  max-height: 820px;
  background-color: #fff;
  background-image: url("/fangvoice/img/mv-img-sp.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

@media (min-width: 768px) {
  .mv {
    background-image: url("/fangvoice/img/mv-img-pc.png");
    background-position: right center;
  }
}
.mv .container {
  position: absolute;
  z-index: 1;
  width: min(100% - 32px, 620px);
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(11, 15, 20, 0.1);
  top: 3%;
  left: 16px;
  right: 16px;
}

@media (min-width: 768px) {
  .mv .container {
    top: 50%;
    left: 10%;
    right: auto;
    transform: translateY(-50%);
    padding: 20px;
    max-width: 600px;
  }
}
/* MV content */
.mv__badge {
  padding: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #2653ab;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 15, 20, 0.12);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
  .mv__badge {
    font-size: 22px;
  }
}
.mv__title {
  font-weight: 900;
  font-size: 31px;
  line-height: 1.2;
  color: #0b0f14;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mv__title-sub {
  display: block;
  font-size: 20px;
}

@media (min-width: 768px) {
  .mv__title {
    font-size: 40px;
    line-height: 1.18;
  }
  .mv__title-sub {
    font-size: 26px;
  }
}
.mv__lead {
  font-size: 15px;
}

@media (min-width: 768px) {
  .mv__lead {
    font-size: 20px;
  }
}
.mv__notes {
  color: rgba(11, 15, 20, 0.7);
}

/* MV CTA (dedicated buttons) */
.mv__cta {
  display: grid;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .mv__cta {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 560px;
  }
}
.mv__cta .btn {
  all: unset;
  box-sizing: border-box;
  align-self: center;
  justify-self: center;
  display: block;
  width: 100%;
  border-radius: 14px;
  padding: 16px 18px 16px 44px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.14s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
@media (min-width: 768px) {
  .mv__cta .btn {
    max-width: 300px;
  }
}

.mv__cta .btn::after {
  content: "▶";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
  opacity: 0.92;
}

.mv__cta .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  pointer-events: none;
}

.mv__cta .btn--primary {
  background: #06C755;
  color: #fff;
}

.mv__cta .btn--ghost {
  background: #0b0f14;
  color: #fff;
}

@media (hover: hover) {
  .mv__cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }
  .mv__cta .btn:hover::before {
    transition: transform 0.55s ease;
    transform: translateX(120%);
  }
  .mv__cta .btn--primary:hover {
    background: #fff;
    color: #06C755;
    border-color: #06C755;
  }
  .mv__cta .btn--ghost:hover {
    background: #fff;
    color: #0b0f14;
    border-color: #0b0f14;
  }
}
.mv__cta .btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.mv__cta .btn:focus-visible {
  outline: 3px solid rgba(245, 255, 59, 0.85);
  outline-offset: 2px;
}

/* ========================
  Features
======================== */
.features {
  background: #fff;
}

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

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 10px;
}

.card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

.card__title {
  margin: 0;
  font-size: 18px;
}

.card__text {
  margin: 0;
  font-size: 14px;
  color: rgba(11, 15, 20, 0.75);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .card__text {
    font-size: 16px;
  }
}

/* ========================
  CV
======================== */
.cv {
  background: radial-gradient(circle at 15% 40%, rgba(0, 229, 255, 0.1), transparent 55%), rgba(11, 15, 20, 0.02);
}

.cv__grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .cv__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cvCard {
  position: relative;
  overflow: hidden;
  align-self: center;
  justify-self: center;
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: 600px;
  padding: 16px 64px 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.14s ease, box-shadow 0.18s ease;
}

.cvCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
}

.cvCard::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.cvCard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(11, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.cvCard__title {
  font-weight: 900;
  font-size: 16px;
}

.cvCard__sub {
  font-size: 13px;
  color: var(--muted);
}

.cvCard--line {
  background: linear-gradient(rgba(6, 199, 85, 0.06), rgba(6, 199, 85, 0.03)) padding-box, linear-gradient(-21deg, rgba(6, 199, 85, 0.55), rgba(0, 229, 255, 0.25)) border-box;
}

.cvCard--line::before {
  background: #06C755;
}

.cvCard--line::after {
  background: #06C755;
  color: #fff;
}

.cvCard--line .cvCard__icon {
  color: #06C755;
}

.cvCard--x {
  background: linear-gradient(rgba(11, 15, 20, 0.05), rgba(11, 15, 20, 0.02)) padding-box, linear-gradient(-21deg, rgba(11, 15, 20, 0.55), rgba(0, 229, 255, 0.2)) border-box;
}

.cvCard--x::before {
  background: #0b0f14;
}

.cvCard--x::after {
  background: #0b0f14;
  color: #fff;
}

.cvCard--x .cvCard__icon {
  color: #0b0f14;
}

@media (hover: hover) {
  .cvCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  }
  .cvCard:hover::after {
    transform: translate(4px, -50%);
  }
  .cvCard--line:hover::after {
    background: #fff;
    color: #06C755;
    border: 2px solid #06C755;
  }
  .cvCard--x:hover::after {
    background: #fff;
    color: #0b0f14;
    border: 2px solid #0b0f14;
  }
}
.cvCard:active {
  transform: translateY(1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.cvCard:focus-visible {
  outline: 3px solid rgba(245, 255, 59, 0.85);
  outline-offset: 3px;
}

.cv--repeat {
  padding: 44px 0;
}

/* ========================
  Trainer
======================== */
.trainer {
  background: #fff;
}

.trainer__wrap {
  display: grid;
  gap: 16px;
}
.trainer__wrap + .trainer__wrap {
  margin-top: 40px;
}

.trainer__img-item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.18), transparent 60%), rgba(11, 15, 20, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
}

.imgDummy--round {
  border-radius: 999px;
  aspect-ratio: 1/1;
}

.trainer__name {
  margin: 0 0 8px;
  font-size: 28px;
}

.trainer__text {
  margin: 0;
  color: rgba(11, 15, 20, 0.76);
  font-size: 14px;
}

@media (min-width: 768px) {
  .trainer__text {
    margin: 0;
    color: rgba(11, 15, 20, 0.76);
    font-size: 16px;
  }
}
/* ========================
  Price
======================== */
.priceTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.priceTable thead th {
  padding: 14px 10px;
  font-weight: 900;
  font-size: 14px;
  background: rgba(11, 15, 20, 0.04);
  border-bottom: 1px solid rgba(11, 15, 20, 0.1);
}

.priceTable th,
.priceTable td {
  padding: 16px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.priceTable th[scope=row] {
  text-align: center;
  font-weight: 700;
  color: rgba(11, 15, 20, 0.85);
}

.priceTable .is-now,
.priceTable td:nth-child(2):not([colspan]) {
  background: rgba(245, 255, 59, 0.12);
}

.priceTable td[colspan="2"] {
  border-left: 1px solid rgba(11, 15, 20, 0.08);
}

.priceTable {
  background: #fff;
}

.priceCell {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.priceMain {
  font-size: 17px;
  font-weight: 900;
  color: #0b0f14;
}

.priceSub {
  font-size: 12px;
  color: rgba(11, 15, 20, 0.6);
}

.is-strike {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 800;
}

.priceTable tbody tr:last-child th,
.priceTable tbody tr:last-child td {
  border-bottom: none;
}

/* badge */
.priceHead {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.priceHead__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(180deg, #ff4d4d, #d60000);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px rgba(214, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.priceHead__label {
  font-weight: 900;
}

@media (min-width: 768px) {
  .priceTable thead th {
    font-size: 16px;
    padding: 18px 12px;
  }
  .priceTable th[scope=row] {
    font-size: 16px;
  }
  .priceMain {
    font-size: 20px;
  }
  .priceSub {
    font-size: 13px;
  }
  .priceTable th,
  .priceTable td {
    font-size: 15px;
    padding: 18px 12px;
  }
}
/* ========================
  Flow
======================== */
.flowList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.flowItem {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.flowItem::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 229, 255, 0.35);
  border-radius: 999px;
}

.flowItem:first-child::before {
  top: 22px;
}

.flowItem:last-child::before {
  bottom: 69px;
}

.flowItem__badge {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: #17c9ef;
  color: #fff;
  border: 2px solid rgba(0, 229, 255, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.flowItem__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.flowItem__text {
  margin: 0;
  color: rgba(11, 15, 20, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .flowList {
    gap: 14px;
  }
  .flowItem {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .flowItem__badge {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .flowItem__title {
    font-size: 17px;
  }
  .flowItem__text {
    font-size: 15px;
  }
  .flowItem::before {
    left: 36px;
  }
}
/* ========================
  Voice
======================== */
.voiceCard {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.voiceCard__img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.voiceCard__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.voiceCard__text {
  margin: 0 0 14px;
  line-height: 1.75;
  color: rgba(11, 15, 20, 0.75);
  font-size: 14px;
}

.voiceCard__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.voiceLink {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: #4ec3d9;
  border-bottom: 2px solid rgba(78, 195, 217, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .voiceLink:hover {
    color: #0b0f14;
    border-color: #4ec3d9;
  }
}
@media (min-width: 768px) {
  .voiceCard {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 26px 28px;
  }
  .voiceCard__img {
    flex: 0 0 38%;
  }
  .voiceCard__body {
    flex: 1;
  }
  .voiceCard__text {
    font-size: 15px;
  }
}
/* ========================
  Partner Band
======================== */
.partnerBand {
  padding: 44px 0;
  background: radial-gradient(circle at 15% 30%, rgba(0, 180, 210, 0.1), transparent 55%), radial-gradient(circle at 80% 70%, rgba(245, 255, 59, 0.1), transparent 55%), rgba(11, 15, 20, 0.02);
  border-top: 1px solid rgba(11, 15, 20, 0.06);
  border-bottom: 1px solid rgba(11, 15, 20, 0.06);
}

.partnerBand__inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.partnerBand__kicker {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(11, 15, 20, 0.8);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 15, 20, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.partnerBand__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.partnerBand__desc {
  margin: 0;
  color: rgba(11, 15, 20, 0.74);
  line-height: 1.75;
  font-size: 14px;
}

.partnerBand__link a {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: #4ec3d9;
  border-bottom: 2px solid rgba(78, 195, 217, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.partnerBand__link a::before, .partnerBand__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.partnerBand__link a::before {
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: rgba(78, 195, 217, 0.35);
  transition: color 0.2s ease, background 0.2s ease;
}
.partnerBand__link a::after {
  left: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  border-right: 0;
}
@media (hover: hover) {
  .partnerBand__link a:hover {
    color: #0b0f14;
    border-color: #4ec3d9;
  }
  .partnerBand__link a:hover::before {
    background: #4ec3d9;
  }
}

.partnerBand__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .partnerBand__img img:hover {
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .partnerBand__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }
  .partnerBand__title {
    font-size: 24px;
  }
  .partnerBand__desc {
    font-size: 16px;
  }
  .partnerBand__visual img {
    max-height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
/* ========================
  FAQ (plus icon)
======================== */
.faq {
  background: #fff;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faqItem {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.faqItem__q {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(0, 180, 210, 0.08);
  transition: background 0.2s ease;
}

.faqItem__q::-webkit-details-marker {
  display: none;
}

@media (hover: hover) {
  .faqItem__q:hover {
    background: rgba(0, 180, 210, 0.14);
  }
}
.faqItem__qBadge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  background: #4ec3d9;
  color: #0b0f14;
  border: 1px solid rgba(11, 15, 20, 0.15);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.faqItem__qText {
  font-weight: 800;
  color: rgba(11, 15, 20, 0.9);
  line-height: 1.4;
}

.faqItem__chev {
  position: relative;
  width: 18px;
  height: 18px;
}

.faqItem__chev::before,
.faqItem__chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #4ec3d9;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: opacity 0.2s ease;
}

.faqItem__chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faqItem[open] .faqItem__chev::after {
  opacity: 0;
}

.faqItem__a {
  padding: 0 14px 14px;
  background: #fff;
}

.faqItem__aInner {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 15, 20, 0.08);
}

.faqItem__aBadge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  background: #f3f6a8;
  color: #0b0f14;
  border: 1px solid rgba(11, 15, 20, 0.12);
}

.faqItem__aBody {
  font-size: 14px;
  color: rgba(11, 15, 20, 0.76);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .faqItem__qText {
    font-size: 15px;
  }
  .faqItem__aBody {
    font-size: 15px;
  }
}
/* ========================
  Footer
======================== */
.lp-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.lp-footer__copy {
  margin: 0;
  color: rgba(11, 15, 20, 0.58);
  text-align: center;
}

/* =========================
  追従CV（fangact風）
========================= */
.floating-cv {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(12px);
  width: calc(100% - 32px);
  max-width: 420px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
@media (min-width: 768px) {
  .floating-cv {
    right: -193px;
    left: auto;
  }
}
.floating-cv.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.floating-cv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.floating-cv__text {
  margin: 0;
  text-align: center;
  line-height: 1.4;
}
.floating-cv__text strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--cy-yellow);
  text-shadow: 0 0 8px rgba(245, 255, 59, 0.4);
}
.floating-cv__text span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
.floating-cv__btn {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  background: #06c755;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.floating-cv__btn:active {
  transform: translateY(1px);
}
@media (hover: hover) {
  .floating-cv__btn:hover {
    background: #05a847;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  }
}

/* 被り防止（重要） */
body.lp-page {
  padding-bottom: 110px;
}

/* ========================
  Desktop layout
======================== */
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trainer__wrap {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
  .imgDummy--round {
    width: 120px;
    height: 120px;
  }
}
/* ========================
  Adjust
======================== */
.sp-break {
  display: block;
}
@media (min-width: 768px) {
  .sp-break {
    display: inline;
  }
}