:root {
  --page-bg: #01070d;
  --navy: #001729;
  --deep: #000912;
  --gold: #d8ad51;
  --gold-dark: #a67722;
  --white: #fffdf8;
  --ink: #061323;
  --line: #22c33c;
  --line-dark: #18a82e;
  --width: 393px;
}

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

html {
  background: var(--page-bg);
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--white);
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    YuMincho,
    "Noto Serif JP",
    serif;
  font-feature-settings: "palt";
  line-height: 1.7;
}

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

.lp {
  width: min(100%, var(--width));
  margin: 0 auto;
  overflow: hidden;
  background: var(--navy);
}

.inner {
  position: relative;
  z-index: 2;
  padding-right: 30px;
  padding-left: 30px;
}

.hero {
  position: relative;
  min-height: 650px;
  padding-top: 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(26, 57, 78, 0.55), transparent 210px),
    #00070d;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 420px;
  background: url("assets/photos/hero-athlete-fv.png") right top / cover no-repeat;
  opacity: 0.92;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 7, 13, 0.98) 0%, rgba(0, 7, 13, 0.86) 35%, rgba(0, 7, 13, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 7, 13, 0.04) 0%, rgba(0, 7, 13, 0.52) 63%, #00070d 100%);
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

h1 {
  margin: 0 0 23px;
  color: var(--white);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.33;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
}

.hero-copy {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.92;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.hero-copy span {
  color: var(--gold);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 19px;
  padding: 0;
  list-style: none;
}

.feature-row li {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.feature-row li:last-child {
  border-right: 0;
}

.feature-row img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.line-cta {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(90deg, var(--line), var(--line-dark));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-decoration: none;
}

.line-cta img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.line-cta span {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.line-cta i {
  width: 24px;
  height: 24px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

.line-cta:hover {
  filter: brightness(1.05);
}

.line-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.note {
  margin: 13px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.worries {
  padding: 34px 0 27px;
  background:
    radial-gradient(circle at 50% 40%, rgba(10, 54, 84, 0.6), transparent 245px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 5px),
    #001a2f;
}

.worries h2 {
  margin: 0;
  color: var(--gold);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.55);
}

.title-line {
  display: block;
  width: 40px;
  height: 1px;
  margin: 8px auto 20px;
  background: var(--gold);
}

.worry-list {
  display: grid;
  gap: 8px;
}

.worry-card {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: 92px 1fr;
  align-items: center;
  border: 1px solid rgba(206, 162, 75, 0.72);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(239, 241, 242, 0.98));
  color: var(--ink);
  overflow: hidden;
}

.card-corner {
  position: absolute;
  width: 28px;
  height: 28px;
}

.card-corner.tl {
  top: 0;
  left: 0;
}

.card-corner.br {
  right: 0;
  bottom: 0;
}

.worry-icon {
  width: 74px;
  height: 74px;
  margin-left: 18px;
  object-fit: contain;
}

.worry-card p {
  margin: 0;
  padding: 0 22px 0 16px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.48;
}

.first-wall {
  padding: 28px 0 25px;
  background:
    radial-gradient(circle at 78% 25%, rgba(5, 48, 78, 0.54), transparent 210px),
    linear-gradient(180deg, #000c16, #00070d);
}

.wall-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
}

.wall-text h2 {
  margin: 0 0 11px;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.46;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.68);
}

.wall-text em {
  color: var(--gold);
  font-size: 61px;
  font-style: normal;
  line-height: 1.05;
}

.gold-rule {
  display: block;
  width: 145px;
  height: 1px;
  margin: 0 0 18px;
  background: var(--gold);
}

.wall-text p {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.78;
}

.wall-cards {
  display: grid;
  gap: 10px;
}

.wall-card {
  position: relative;
  display: grid;
  min-height: 131px;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  align-items: center;
  padding: 22px 13px 16px 41px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(0, 20, 34, 0.88);
  box-shadow: inset 0 0 18px rgba(215, 173, 81, 0.04);
}

.number-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 54px;
}

.wall-number {
  position: absolute;
  top: 5px;
  left: 8px;
  z-index: 2;
  color: #fff;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.wall-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.wall-card p {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.mid-cta {
  position: relative;
  min-height: 348px;
  padding: 32px 0 12px;
  overflow: hidden;
  background: #00101d;
}

.boat-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  background: url("assets/photos/boat-cta-fv.png") right bottom / cover no-repeat;
  opacity: 0.82;
}

.photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 15, 28, 0.98) 0%, rgba(0, 15, 28, 0.74) 55%, rgba(0, 15, 28, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 15, 28, 0.58), rgba(0, 15, 28, 0.9));
}

.mid-cta h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.42;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.68);
}

.mid-copy {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.78;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.72);
}

.line-cta.mid {
  width: 83%;
  min-height: 73px;
  margin: 0 auto;
  gap: 16px;
}

.line-cta.mid img {
  width: 49px;
  height: 49px;
}

.line-cta.mid span {
  font-size: 31px;
}

.line-cta.mid i {
  width: 19px;
  height: 19px;
  border-width: 3px;
}

.note.bottom {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 392px) {
  .inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-kicker {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .line-cta span {
    font-size: 31px;
  }

  .worry-card p,
  .wall-card p {
    font-size: 17px;
  }
}

/* Fidelity pass for the high-density mobile reference capture. */
.inner {
  padding-right: 30px;
  padding-left: 30px;
}

.hero {
  min-height: 318px;
  padding-top: 30px;
}

.hero-image {
  width: 70%;
  height: 300px;
  background-position: right top;
}

.hero-kicker {
  margin-bottom: 6px;
  font-size: 18px;
}

h1 {
  margin-bottom: 9px;
  font-size: 32px;
  line-height: 1.24;
}

.hero-copy {
  margin-bottom: 11px;
  font-size: 12px;
  line-height: 1.66;
}

.feature-row {
  margin-bottom: 8px;
}

.feature-row li {
  min-height: 20px;
  gap: 3px;
  font-size: 7px;
}

.feature-row img {
  width: 17px;
  height: 17px;
}

.line-cta {
  min-height: 45px;
  gap: 12px;
  border-radius: 7px;
}

.line-cta img {
  width: 31px;
  height: 31px;
}

.line-cta span {
  font-size: 24px;
  line-height: 1.08;
}

.line-cta i {
  width: 14px;
  height: 14px;
  border-width: 3px;
}

.note {
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.55;
}

.worries {
  padding: 14px 0 13px;
}

.worries h2 {
  font-size: 18px;
  line-height: 1.45;
}

.title-line {
  width: 23px;
  margin: 4px auto 8px;
}

.worry-list {
  gap: 4px;
}

.worry-card {
  min-height: 44px;
  grid-template-columns: 54px 1fr;
}

.card-corner {
  width: 18px;
  height: 18px;
}

.worry-icon {
  width: 34px;
  height: 34px;
  margin-left: 12px;
}

.worry-card p {
  padding: 0 12px 0 10px;
  font-size: 12px;
  line-height: 1.42;
}

.first-wall {
  padding: 12px 0 12px;
}

.wall-grid {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 12px;
}

.wall-text h2 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.48;
}

.wall-text em {
  font-size: 34px;
}

.gold-rule {
  width: 105px;
  margin-bottom: 8px;
}

.wall-text p {
  margin-bottom: 7px;
  font-size: 9px;
  line-height: 1.55;
}

.wall-cards {
  gap: 5px;
}

.wall-card {
  min-height: 55px;
  grid-template-columns: 33px 1fr;
  gap: 6px;
  padding: 10px 7px 8px 31px;
}

.number-corner {
  width: 40px;
  height: 31px;
}

.wall-number {
  top: 4px;
  left: 5px;
  font-size: 17px;
}

.wall-icon {
  width: 33px;
  height: 33px;
}

.wall-card p {
  font-size: 11px;
  line-height: 1.5;
}

.mid-cta {
  min-height: 169px;
  padding: 16px 0 7px;
}

.boat-photo {
  width: 58%;
}

.mid-cta h2 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.42;
}

.mid-copy {
  margin-bottom: 9px;
  font-size: 10px;
  line-height: 1.58;
}

.line-cta.mid {
  min-height: 42px;
  gap: 10px;
}

.line-cta.mid img {
  width: 29px;
  height: 29px;
}

.line-cta.mid span {
  font-size: 21px;
}

.line-cta.mid i {
  width: 13px;
  height: 13px;
  border-width: 3px;
}

.note.bottom {
  margin-top: 7px;
  font-size: 8px;
  line-height: 1.45;
}

.feature-row li {
  gap: 2px;
  font-size: 5px;
  letter-spacing: 0;
}

.feature-row img {
  width: 15px;
  height: 15px;
}

.line-cta {
  gap: 8px;
}

.line-cta img {
  width: 29px;
  height: 29px;
}

.line-cta span {
  font-size: 21px;
  letter-spacing: 0.06em;
}

.line-cta i {
  width: 12px;
  height: 12px;
  border-width: 3px;
}

.line-cta.mid {
  width: 84%;
  gap: 8px;
}

.line-cta.mid img {
  width: 27px;
  height: 27px;
}

.line-cta.mid span {
  font-size: 19px;
}

.hero-copy {
  font-size: 12px;
}

.feature-row {
  margin-right: -5px;
  margin-left: -5px;
}

.wall-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
}

.wall-card {
  grid-template-columns: 28px 1fr;
  gap: 5px;
  padding: 10px 6px 8px 29px;
}

.wall-icon {
  width: 29px;
  height: 29px;
}

.wall-card p {
  font-size: 9px;
}

/* ===========================================================
   追加セクション（design 02-04）／393px描画スケール
   =========================================================== */

.centered-gold {
  margin: 0;
  color: var(--gold);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.55);
}

.section-lead {
  margin: 0 0 16px;
  color: #c8d2de;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.78;
}

/* 05 なぜ伸びないのか */
.reason {
  position: relative;
  padding: 22px 0 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #00121f, #00070d);
}

.reason-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 200px;
  background: url("assets/images/thinking-athlete.png") right top / cover no-repeat;
  opacity: 0.9;
}

.reason-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 8, 14, 0.98) 30%, rgba(0, 8, 14, 0.55) 70%, rgba(0, 8, 14, 0.15) 100%),
    linear-gradient(180deg, rgba(0, 8, 14, 0.1), rgba(0, 8, 14, 0.85) 70%, #00070d);
}

.reason h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.reason-lead {
  margin: 0 0 90px;
  color: #cdd6e2;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.85;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.reason-list {
  display: grid;
  gap: 7px;
}

.reason-card {
  position: relative;
  display: grid;
  min-height: 50px;
  grid-template-columns: 44px 34px 1fr;
  align-items: center;
  padding: 8px 14px 8px 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #fbf7ee, #efe8d8);
  color: #16243a;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.reason-icon svg {
  width: 26px;
  height: 26px;
}

.reason-num {
  color: var(--gold-dark);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.reason-card p {
  margin: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* 06 合格に必要な対策 */
.approach {
  padding: 22px 0 22px;
  background:
    radial-gradient(circle at 75% 12%, rgba(8, 50, 80, 0.5), transparent 220px),
    linear-gradient(180deg, #001a30, #00111f);
}

.approach h2,
.chosen h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.55);
}

.approach-list,
.chosen-list {
  display: grid;
  gap: 8px;
}

.approach-card {
  display: grid;
  min-height: 66px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 6px;
  padding: 11px 13px;
  border: 1px solid rgba(216, 173, 81, 0.85);
  border-radius: 5px;
  background: rgba(0, 21, 38, 0.85);
  box-shadow: inset 0 0 16px rgba(216, 173, 81, 0.04);
}

.approach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-icon svg {
  width: 32px;
  height: 32px;
}

.approach-body h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.approach-num {
  margin-right: 7px;
  color: var(--gold);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.approach-body p {
  margin: 0;
  color: #b9c4d2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* 07 選ばれる理由 */
.chosen {
  padding: 22px 0 22px;
  background: linear-gradient(180deg, #000d18, #00060c);
}

.chosen-card {
  position: relative;
  display: grid;
  min-height: 58px;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 8px;
  padding: 11px 13px 11px 8px;
  border: 1px solid rgba(216, 173, 81, 0.8);
  border-radius: 5px;
  background:
    linear-gradient(120deg, rgba(216, 173, 81, 0.16) 0 38px, rgba(0, 20, 34, 0.86) 38px);
  overflow: hidden;
}

.chosen-num {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  color: var(--white);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.chosen-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 14px;
}

.chosen-icon svg {
  width: 26px;
  height: 26px;
}

.chosen-body h3 {
  margin: 0 0 3px;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

.chosen-body p {
  margin: 0;
  color: #b9c4d2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.6;
}

/* 08 実績 */
.results {
  position: relative;
  padding: 24px 0 48px;
  background: linear-gradient(180deg, #001426, #000a14);
}

.results-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url("assets/images/boat-result.png") right center / cover no-repeat;
  opacity: 0.42;
}

.results-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 12, 22, 0.97) 35%, rgba(0, 12, 22, 0.6) 75%, rgba(0, 12, 22, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 12, 22, 0.4), rgba(0, 12, 22, 0.82));
}

.results h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.72);
}

.results-lead {
  margin: 0 0 18px;
  color: #cdd6e2;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.85;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.72);
}

.results-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10px;
  align-items: center;
}

.result-number {
  position: relative;
  padding: 6px 18px;
  text-align: center;
}

.laurel {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 58px;
  transform: translateY(-50%);
}

.laurel svg {
  width: 100%;
  height: 100%;
}

.laurel.left {
  left: -2px;
}

.laurel.right {
  right: -2px;
}

.result-label {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.result-big {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.result-big strong {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.result-plate {
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 14px 10px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: rgba(0, 14, 26, 0.7);
  box-shadow: inset 0 0 18px rgba(216, 173, 81, 0.06);
}

.plate-stars {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.plate-rank {
  margin-top: 4px;
  color: #cdd6e2;
  font-size: 10px;
  font-weight: 700;
}

.plate-name {
  margin-top: 2px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plate-name small {
  font-size: 11px;
}

.plate-sub {
  margin-top: 2px;
  color: #cdd6e2;
  font-size: 10px;
  font-weight: 700;
}

/* 09 / bridge CTA */
.cta-bridge {
  padding: 26px 0 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 48, 78, 0.5), transparent 240px),
    linear-gradient(180deg, #00111f, #00070d);
  text-align: center;
}

.cta-bridge h2,
.mid-cta h2 {
  text-align: center;
}

.cta-bridge h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.42;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.6);
}

.bridge-copy {
  margin: 0 0 16px;
  color: #cdd6e2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
}

/* 10 トレーナー紹介 */
.trainer {
  padding: 24px 0 24px;
  background: linear-gradient(180deg, #00060c, #000d18);
}

.trainer h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.42;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.55);
}

.trainer-card {
  display: grid;
  grid-template-columns: 1fr 122px;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.trainer-photo {
  order: 2;
  border-radius: 5px;
  overflow: hidden;
}

.trainer-photo img {
  width: 122px;
  height: 168px;
  object-fit: cover;
  object-position: center 18%;
}

.trainer-info {
  order: 1;
}

.trainer-name {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.trainer-role {
  margin: 2px 0 8px;
  color: #c8d2de;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.trainer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.2;
}

.trainer-badge svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.trainer-bio {
  margin: 10px 0 0;
  grid-column: 1 / -1;
  color: #b9c4d2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.75;
}

.trainer-card .trainer-bio {
  order: 3;
}
.trainer-bio p {
  margin: 0 0 6px;
}

/* trainer 3ポイントリスト */
.trainer-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trainer-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(216,173,81,0.07);
  border: 1px solid rgba(216,173,81,0.25);
  border-radius: 6px;
  padding: 14px;
}
.tp-num {
  font-size: 13px;
  font-style: italic;
  color: #d8ad51;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 24px;
  padding-top: 1px;
}
.tp-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: #d8ad51;
  margin: 0 0 4px;
  line-height: 1.5;
}
.tp-body p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.7;
}

.rep-card {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(216, 173, 81, 0.55);
  border-radius: 5px;
  background: rgba(0, 18, 32, 0.7);
  margin-top: 16px;
}

.rep-photo {
  flex-shrink: 0;
  width: 122px;
  height: 168px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(216,173,81,0.3);
}

.rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.rep-body {
  flex: 1;
  min-width: 0;
}

.rep-info {
  margin-bottom: 8px;
}

.rep-name {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.rep-role {
  margin: 2px 0 0;
  color: var(--gold);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.rep-comment {
  margin: 0;
  color: #b9c4d2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
}
.rep-comment p {
  margin: 0 0 6px;
}
.rep-sub-heading {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 10px 0 3px !important;
}
.rep-sub-heading:first-child {
  margin-top: 0 !important;
}

/* 受講生の声（ケーススタディ） */
.cases-wrap {
  margin-top: 40px;
}

.cases-heading {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.case-card {
  margin-bottom: 16px;
  padding: 22px 18px 20px;
  background: rgba(255, 253, 248, 0.04);
  border: 1px solid rgba(216, 173, 81, 0.2);
  border-radius: 10px;
}

.case-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(216, 173, 81, 0.25);
  border-radius: 6px;
  overflow: hidden;
}

.case-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 2px;
}

.case-stat:first-child {
  border-right: 1px solid rgba(216, 173, 81, 0.25);
}

.stat-kind {
  color: rgba(255, 253, 248, 0.55);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.stat-delta {
  color: var(--gold);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.stat-delta strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.stat-range {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 253, 248, 0.07);
  border-radius: 4px;
  color: rgba(255, 253, 248, 0.65);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.case-quote {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.case-meta {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.case-body {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.85;
}

.case-card--plain .case-note {
  margin: 0 0 4px;
  color: rgba(255, 253, 248, 0.55);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.case-quote-large {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
}

/* 動画・教え子セクション */
.proof-video {
  background: var(--navy-dark);
  padding: 48px 0;
}
.proof-inner {
  margin-top: 32px;
  border-top: 1px solid rgba(216,173,81,0.2);
  padding-top: 28px;
}
.proof-label {
  text-align: center;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.proof-note {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 16px;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(216,173,81,0.3);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.proof-caption {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin: 10px 0 28px;
}
.alumni-wrap {
  border-top: 1px solid rgba(216,173,81,0.2);
  padding-top: 20px;
}
.alumni-title {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}
.alumni-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.alumni-list li a {
  display: block;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  background: rgba(216,173,81,0.08);
  border: 1px solid rgba(216,173,81,0.25);
  border-radius: 4px;
  padding: 8px 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.alumni-list li a:hover {
  background: rgba(216,173,81,0.18);
}

/* 11 料金プラン */
.price {
  padding: 24px 0 24px;
  background:
    radial-gradient(circle at 50% 10%, rgba(8, 48, 78, 0.45), transparent 240px),
    linear-gradient(180deg, #001426, #00070d);
}

.price .title-line,
.faq .title-line,
.access .title-line {
  margin: 9px auto 18px;
}

.price-card {
  margin-bottom: 12px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(216, 173, 81, 0.7);
  border-radius: 6px;
  background: rgba(0, 16, 29, 0.82);
}

.price-card.reco {
  border-color: var(--gold);
  background:
    linear-gradient(165deg, rgba(33, 54, 90, 0.6), rgba(0, 16, 29, 0.86));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34), inset 0 0 20px rgba(216, 173, 81, 0.06);
}

.price-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-tag {
  padding: 5px 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #0c1626;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-cond {
  color: #c8d2de;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.price-amount {
  margin: 12px 0 10px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.price-amount strong {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.price-amount small {
  font-size: 12px;
}

.price-list {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  margin-bottom: 8px;
  color: #dbe2ec;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

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

.price-list svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.price-note {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.45);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11.5px;
  line-height: 1.7;
  text-align: center;
}

/* 12 LINEでできること */
.line-can {
  padding: 24px 0 24px;
  background: linear-gradient(180deg, #00060c, #000f1b);
}

.can-lead {
  margin: 9px 0 16px;
  color: #c8d2de;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.can-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.can-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px 8px 0;
  border: 1px solid rgba(216, 173, 81, 0.4);
  border-radius: 5px;
  background: rgba(0, 18, 32, 0.7);
  color: #e6ecf3;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.can-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.can-icon svg {
  width: 22px;
  height: 22px;
}

.assure {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 173, 81, 0.55);
  border-radius: 6px;
  background: rgba(0, 22, 40, 0.6);
}

.assure svg {
  width: 24px;
  height: 24px;
}

.assure p {
  margin: 0;
  color: #cdd6e2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.7;
}

/* 13 最後のCTA */
.final-cta {
  position: relative;
  padding: 28px 0 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #001a30, #00060c);
}

.final-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 150px;
  background: url("assets/photos/boat-cta-fv.png") right top / cover no-repeat;
  opacity: 0.5;
}

.final-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 12, 22, 0.96) 35%, rgba(0, 12, 22, 0.6) 75%, rgba(0, 12, 22, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 12, 22, 0.15), rgba(0, 12, 22, 0.9) 65%, #00060c);
}

.final-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.7);
}

.final-cta h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.38;
  text-shadow: 0 3px 11px rgba(0, 0, 0, 0.72);
}

.final-copy {
  margin: 0 0 16px;
  color: #cdd6e2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.72);
}

.final-notes {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.final-notes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: #c2ccd8;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.6;
}

.final-notes svg {
  width: 15px;
  height: 15px;
  margin-top: 1px;
}

/* 14 FAQ */
.faq {
  padding: 24px 0 22px;
  background: linear-gradient(180deg, #000d18, #00060c);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  padding: 0 14px;
  border: 1px solid rgba(216, 173, 81, 0.6);
  border-radius: 5px;
  background: rgba(0, 18, 32, 0.6);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px 13px 0;
  position: relative;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-q {
  color: var(--gold);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

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

.faq-item p {
  margin: 0;
  padding: 0 0 14px;
  color: #b9c4d2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.75;
}

/* 15 アクセス */
.access {
  padding: 24px 0 26px;
  background: linear-gradient(180deg, #00060c, #001020);
}

.map-frame {
  border: 1px solid rgba(216, 173, 81, 0.6);
  border-radius: 6px;
  overflow: hidden;
}

.map-art {
  display: block;
  width: 100%;
  height: 150px;
}

.info-list {
  margin: 12px 0 0;
}

.info-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 12px;
  margin-bottom: 7px;
  border: 1px solid rgba(216, 173, 81, 0.45);
  border-radius: 5px;
  background: rgba(0, 18, 32, 0.6);
}

.info-row dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.info-row dt svg {
  width: 18px;
  height: 18px;
}

.info-row dd {
  margin: 0;
  color: #dbe2ec;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}

.info-row dd a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.info-pill {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 9px;
  border: 1px solid rgba(216, 173, 81, 0.7);
  border-radius: 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

/* フッター */
.site-footer {
  padding: 26px 0 30px;
  background: #00050a;
  text-align: center;
}

.footer-logo {
  margin: 0;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.footer-ornament {
  display: block;
  width: 70px;
  height: 10px;
  margin: 8px auto;
  background:
    linear-gradient(90deg, transparent, var(--gold) 45%, var(--gold) 55%, transparent) center / 100% 1px no-repeat;
}

.footer-copy {
  margin: 6px 0 0;
  color: #8a96a6;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9px;
  letter-spacing: 0.04em;
}


