@charset "UTF-8";

/* =========================================
   front page — Top
   ----
   1. Loader
   2. Hero / Base
   3. Hero / Background Deco
   4. Hero / Text
   5. Hero / Visual (3D Badges)
   6. Hero / Scroll Cue
   7. Utilities
   8. Responsive
   ========================================= */


/* =========================================
   1. LOADER
   ========================================= */
.p-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-brand, #0A1F44);
  overflow: hidden;
  transition: transform 1s cubic-bezier(.7, 0, .3, 1), opacity .6s ease;
}
.p-loader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Loader — Ripple */
.p-loader__ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}
.p-loader__ripple span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border: 1px solid var(--c-cta, #E8A50C);
  border-radius: 50%;
  opacity: 0;
  animation: loaderRipple 7s cubic-bezier(.25, .6, .3, 1) infinite;
}
.p-loader__ripple span:nth-child(1) { animation-delay: 0s;   }
.p-loader__ripple span:nth-child(2) { animation-delay: 2.3s; }
.p-loader__ripple span:nth-child(3) { animation-delay: 4.6s; }

@keyframes loaderRipple {
  0%   { transform: scale(.4); opacity: 0;   border-width: 1.5px; }
  15%  {                       opacity: .35;                      }
  100% { transform: scale(8);  opacity: 0;   border-width: .3px;  }
}

/* Loader — Text */
.p-loader__inner {
  position: relative;
  z-index: 2;
}
.p-loader__text {
  display: block;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 2.4;
  letter-spacing: .25em;
  color: var(--c-cta, #E8A50C);
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-feature-settings: "vpal", "palt";
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  filter: blur(6px);
  text-shadow: 0 0 24px rgba(232, 165, 12, .8);
  animation: loaderWrite 3.4s cubic-bezier(.4, .1, .25, 1) .3s forwards;
}

@keyframes loaderWrite {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(6px);
    text-shadow: 0 0 24px rgba(232, 165, 12, .85);
  }
  40% {
    opacity: .9;
    filter: blur(3px);
    text-shadow: 0 0 20px rgba(232, 165, 12, .7);
  }
  80% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(.8px);
    text-shadow: 0 0 14px rgba(232, 165, 12, .5);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    text-shadow: 0 0 10px rgba(232, 165, 12, .35);
  }
}


/* =========================================
   2. HERO / BASE
   ========================================= */
.p-hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--h-header) + 80px) 0 100px;
  background: var(--c-brand, #0A1F44);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.p-hero .l-inner,
.p-hero__inner {
  max-width: 88vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
}
.p-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}



/* =========================================
   3. HERO / BACKGROUND DECO
   ========================================= */
.p-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.p-hero {
  position: relative;
  overflow: hidden;  /* 追加：装飾SVGのはみ出しをクリップ */
}

.p-hero__deco {
  position: absolute;
  width: clamp(280px, 32vw, 480px);
  height: auto;
  pointer-events: none;  /* 追加：装飾なのでクリック判定を無効化 */
}
.p-hero__deco--tr { top: -40px;    right: -60px;  transform: rotate(8deg); }
.p-hero__deco--bl { bottom: -60px; left:  -80px;  transform: rotate(-12deg); }

.p-hero__deco-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: pathFlow 8s var(--ease) infinite;
}
.p-hero__deco-path--slow {
  animation-duration: 12s;
  animation-delay: 1s;
}

/* SP では装飾を縮小・位置調整 */
@media (max-width: 600px) {
  .p-hero__deco {
    width: clamp(180px, 50vw, 280px);
    opacity: 0.5;  /* 主役を邪魔しないよう薄く */
  }
  .p-hero__deco--tr { top: -20px;    right: -40px; }
  .p-hero__deco--bl { bottom: -40px; left:  -40px; }
}

/* さらに小さい画面では非表示 */
@media (max-width: 380px) {
  .p-hero__deco {
    display: none;
  }
}




@keyframes pathFlow {
  0%   { stroke-dashoffset:  400; opacity: 0;  }
  20%  {                          opacity: .5; }
  60%  { stroke-dashoffset:    0; opacity: .5; }
  100% { stroke-dashoffset: -400; opacity: 0;  }
}


/* =========================================
   4. HERO / TEXT
   ========================================= */
.p-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .7);
}
.p-hero__eyebrow-sep {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-cta);
}

.p-hero__title {
  margin-bottom: 36px;
  font-family: var(--ff-mincho);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.35;
  letter-spacing: .04em;
  color: #fff;
}
.p-hero__title em {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--c-cta);
}
.p-hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--c-cta);
  opacity: .4;
}

.p-hero__lead {
  margin-bottom: 48px;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
}

.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


/* =========================================
   5. HERO / VISUAL (3D Badges)
   ========================================= */
.p-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* バッジ注釈 */
.p-hero__badges-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-align: center;
  color: rgba(255, 255, 255, .65);
  font-feature-settings: "palt";
}
.p-hero__badges-note::before,
.p-hero__badges-note::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--c-cta, #E8A50C);
  vertical-align: middle;
}

.p-hero__badges {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 24px);
}

.p-hero__badge {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  animation: badgeFadeIn .9s cubic-bezier(.22, .61, .36, 1) forwards;
}
.p-hero__badge:nth-child(1) { animation-delay: 1.0s; }
.p-hero__badge:nth-child(2) { animation-delay: 1.3s; }
.p-hero__badge:nth-child(3) { animation-delay: 1.6s; }

@keyframes badgeFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* 3D Canvas Container */
.p-hero__badge-3d {
  width: 200px;
  height: 200px;
  overflow: visible;
}
.p-hero__badge-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Badge — Label (明朝に統一) */
.p-hero__badge-label {
  margin-top: 18px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .4em;
  text-indent: .4em;
  color: rgba(255, 255, 255, .9);
}
.p-hero__badge-label::before {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--c-cta, #E8A50C);
}
.p-hero__badge:nth-child(1) .p-hero__badge-label::before { content: "★"; }
.p-hero__badge:nth-child(2) .p-hero__badge-label::before { content: "★ ★"; }
.p-hero__badge:nth-child(3) .p-hero__badge-label::before { content: "★ ★ ★"; }

.p-hero__badge:nth-child(3) .p-hero__badge-label {
  color: var(--c-cta, #E8A50C);
  font-weight: 600;
}


/* =========================================
   6. HERO / SCROLL CUE
   ========================================= */
.p-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
}
.p-hero__scroll-text {
  font-size: 10px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}
.p-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, .4);
}
.p-hero__scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--c-cta);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top:  100%; }
}


/* =========================================
   7. UTILITIES
   ========================================= */
.u-pc { display: inline; }




/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 1280px) {
  .p-hero__badge-3d { width: 200px; height: 200px; }
}

@media (max-width: 1024px) {
  .p-hero__badge-3d { width: 170px; height: 170px; }
}

@media (max-width: 900px) {
  .p-hero {
    min-height: auto;
    padding: calc(var(--h-header) + 60px) 0 80px;
  }
  .p-hero .l-inner,
  .p-hero__inner {
    max-width: 92vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    justify-items: center;   /* ← 追加 */
    text-align: center;      /* ← 追加 */
  }
  .p-hero__visual {
    order: -1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;     /* ← 追加 */
  }
  .p-hero__content {
    width: 100%;
    text-align: center;      /* ← 追加 */
  }
  .p-hero__badges {
    justify-content: center; /* ← 追加 */
    width: 100%;
  }
  .p-hero__badge-3d { width: 180px; height: 180px; }
  .u-pc { display: none; }
}


@media (max-width: 768px) {
  .p-hero__badges { gap: 6px; }
  .p-hero__badge-3d { width: 130px; height: 130px; }
  .p-hero__badge-label { font-size: 12px; margin-top: 12px; }
  .p-loader__text { font-size: 20px; letter-spacing: .3em; line-height: 2.2; }
  .p-hero__badges-note { font-size: 11px; letter-spacing: .05em; }
  .p-hero__badges-note::before,
  .p-hero__badges-note::after { width: 12px; margin: 0 6px 3px; }
}

@media (max-width: 600px) {
  .p-hero__eyebrow     { flex-wrap: wrap; gap: 8px; font-size: 11px; }
  .p-hero__eyebrow-sep { display: none; }
  .p-hero__title       { font-size: clamp(32px, 8vw, 44px); }
  .p-hero__lead        { font-size: 14px; }
  .p-hero__scroll      { display: none; }
}


/* =========================================
   9. ABOUT
   ========================================= */
.p-about {
  position: relative;
  padding: var(--sp-section) 0;
  background: var(--c-bg);
  overflow: hidden;
}

/* 背景に薄い装飾線 */
.p-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: var(--c-cta);
  opacity: .4;
}

.p-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.p-about__card {
  position: relative;
  padding: 48px 32px 40px;
  border-left: 1px solid var(--c-line);
  transition: background .4s var(--ease);
}
.p-about__card:last-child {
  border-right: 1px solid var(--c-line);
}
.p-about__card:hover {
  background: var(--c-bg-kinari);
}

.p-about__num {
  font-family: var(--ff-mincho);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-cta);
  margin-bottom: 28px;
}

.p-about__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--c-brand);
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.p-about__icon svg {
  width: 100%;
  height: 100%;
}
.p-about__card:hover .p-about__icon {
  color: var(--c-cta);
  transform: translateY(-2px);
}

.p-about__card-title {
  font-family: var(--ff-mincho);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--c-brand);
  margin-bottom: 20px;
  min-height: 3.2em;
}

.p-about__card-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: .02em;
  color: var(--c-text-sub);
}


/* =========================================
   ABOUT — Responsive
   ========================================= */
@media (max-width: 1024px) {
  .p-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-about__card:nth-child(2) {
    border-right: 1px solid var(--c-line);
  }
  .p-about__card:nth-child(3),
  .p-about__card:nth-child(4) {
    border-top: 1px solid var(--c-line);
  }
  .p-about__card:nth-child(3) {
    border-left: 1px solid var(--c-line);
  }
}

@media (max-width: 600px) {
  .p-about__grid {
    grid-template-columns: 1fr;
  }
  .p-about__card {
    padding: 36px 20px 32px;
    border-left: none;
    border-right: none !important;
    border-top: 1px solid var(--c-line);
  }
  .p-about__card:first-child {
    border-top: none;
  }
  .p-about__card-title {
    min-height: 0;
  }
}

/* =========================================
   10. LEVEL
   ========================================= */
.p-level {
  position: relative;
  padding: var(--sp-section) 0;
  background: var(--c-bg-kinari);
  overflow: hidden;
}

.p-level__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Card 基本 --- */
.p-level__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 56px 36px 40px;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

/* --- Card / Coming Soon (グレーアウト) --- */
.p-level__card--coming {
  background: #f4f3ef;
  color: var(--c-text-mute);
  opacity: .75;
}
.p-level__card--coming .p-level__name-ja,
.p-level__card--coming .p-level__name-en,
.p-level__card--coming .p-level__status,
.p-level__card--coming .p-level__badge-mini,
.p-level__card--coming dt,
.p-level__card--coming dd {
  color: var(--c-text-mute);
}
.p-level__card--coming .p-level__star {
  color: #b8b8b8;
}

/* --- Card / Active (中級) --- */
.p-level__card--active {
  background: #fff;
  border: 1px solid var(--c-cta);
  box-shadow: 0 12px 36px rgba(232, 165, 12, .12);
  transform: translateY(-12px);
}
.p-level__card--active:hover {
  transform: translateY(-16px);
  box-shadow: 0 18px 44px rgba(232, 165, 12, .18);
}

/* --- Ribbon (受付中) --- */
.p-level__ribbon {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 16px;
  background: var(--c-cta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
}
.p-level__ribbon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent transparent rgba(0, 0, 0, .2);
}

/* --- Badge mini (星) --- */
.p-level__badge-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(232, 165, 12, .1);
}
.p-level__star {
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--c-cta);
}

/* --- Status badge --- */
.p-level__status {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--c-cta);
}
.p-level__card--coming .p-level__status {
  color: var(--c-text-mute);
}

/* --- Name --- */
.p-level__name {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.p-level__name-en {
  display: block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-text-mute);
  margin-bottom: 8px;
}
.p-level__name-ja {
  display: block;
  font-family: var(--ff-mincho);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--c-brand);
}
.p-level__card--active .p-level__name-ja {
  color: var(--c-brand);
}

/* --- Spec list --- */
.p-level__spec {
  flex: 1;
  margin-bottom: 32px;
}
.p-level__spec-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--c-line);
}
.p-level__spec-row:last-child {
  border-bottom: none;
}
.p-level__spec dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--c-text-mute);
  padding-top: 2px;
}
.p-level__spec dd {
  font-family: var(--ff-mincho);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
}

/* --- Action --- */
.p-level__action {
  text-align: center;
}
.p-level__action-text {
  display: inline-block;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-text-mute);
  border: 1px dashed var(--c-text-mute);
  border-radius: var(--radius);
}
.p-level__action .c-btn {
  min-width: 200px;
}


/* =========================================
   LEVEL — Responsive
   ========================================= */
@media (max-width: 1024px) {
  .p-level__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 560px;
  }
  .p-level__card--active {
    transform: translateY(0);
    order: -1;
  }
  .p-level__card--active:hover {
    transform: translateY(-4px);
  }
  .p-level__spec-row {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 600px) {
  .p-level__card {
    padding: 48px 24px 32px;
  }
  .p-level__spec-row {
    grid-template-columns: 100px 1fr;
    gap: 12px;
  }
  .p-level__spec dt {
    font-size: 10px;
  }
  .p-level__spec dd {
    font-size: 13px;
  }
}

/* 11. BENEFIT */
.p-benefit {
  position: relative;
  padding: var(--sp-section) 0;
  background: var(--c-bg);
  overflow: hidden;
}
.p-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 120px;
  background: var(--c-cta);
  opacity: .3;
}
.p-benefit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.p-benefit__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 28px 36px;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.p-benefit__card:hover {
  transform: translateY(-6px);
  border-color: var(--c-cta);
  box-shadow: 0 14px 32px rgba(20, 30, 70, .06);
}
.p-benefit__num {
  font-family: var(--ff-mincho);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-cta);
  margin-bottom: 24px;
}
.p-benefit__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--c-brand);
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.p-benefit__icon svg { width: 100%; height: 100%; }
.p-benefit__card:hover .p-benefit__icon {
  color: var(--c-cta);
  transform: translateY(-2px);
}
.p-benefit__card-title {
  font-family: var(--ff-mincho);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--c-brand);
  margin-bottom: 20px;
  min-height: 2.5em;
}
.p-benefit__card-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: .02em;
  color: var(--c-text-sub);
}

/* Responsive */
@media (max-width: 1024px) {
  .p-benefit__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .p-benefit__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .p-benefit__card { padding: 36px 24px 32px; }
  .p-benefit__card-title { min-height: 0; font-size: 18px; }
}


/* 12. FLOW */
.p-flow {
  position: relative;
  padding: var(--sp-section) 0;
  background: var(--c-bg-kinari);
  overflow: hidden;
}
.p-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 1px;
  height: 100px;
  background: var(--c-cta);
  opacity: .3;
}
.p-flow__list {
  position: relative;
  max-width: 880px;
  margin: 56px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}
.p-flow__list::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 60px;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-cta) 0%, var(--c-cta) 80%, transparent 100%);
  opacity: .35;
}
.p-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 0 48px;
}
.p-flow__item:last-child { padding-bottom: 0; }

.p-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}
.p-flow__step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--c-bg-kinari);
  border: 1.5px solid var(--c-cta);
  border-radius: 50%;
  z-index: 1;
}
.p-flow__step-label {
  font-family: var(--ff-mincho);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-text-mute);
  margin-bottom: 36px;
}
.p-flow__step-num {
  font-family: var(--ff-mincho);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-brand);
  line-height: 1;
}
.p-flow__body {
  position: relative;
  padding: 28px 32px 28px 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.p-flow__item:hover .p-flow__body {
  border-color: var(--c-cta);
  box-shadow: 0 10px 28px rgba(20, 30, 70, .06);
}
.p-flow__body::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transform: rotate(45deg);
  transition: border-color .4s var(--ease);
}
.p-flow__item:hover .p-flow__body::before {
  border-color: var(--c-cta);
}
.p-flow__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--c-brand);
}
.p-flow__icon svg { width: 100%; height: 100%; }
.p-flow__title {
  font-family: var(--ff-mincho);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--c-brand);
  margin-bottom: 12px;
}
.p-flow__text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: .02em;
  color: var(--c-text-sub);
}
.p-flow__em {
  font-style: normal;
  font-weight: 600;
  color: var(--c-brand);
  background: linear-gradient(transparent 65%, rgba(232,165,12,.25) 65%);
  padding: 0 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .p-flow__list::before { left: 28px; }
  .p-flow__item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 16px 0 36px;
  }
  .p-flow__step-label { font-size: 10px; margin-bottom: 24px; }
  .p-flow__step-num { font-size: 24px; }
  .p-flow__step::before { width: 12px; height: 12px; top: 14px; }
  .p-flow__body { padding: 24px 20px; }
  .p-flow__body::before { display: none; }
  .p-flow__title { font-size: 16px; }
}

/* 13. FEE */
.p-fee {
  position: relative;
  padding: var(--sp-section) 0;
  background: var(--c-bg);
  overflow: hidden;
}
.p-fee::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100px;
  background: var(--c-cta);
  opacity: .3;
}
.p-fee__wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 56px auto 0;
  align-items: start;
}

/* ===== 価格カード ===== */
.p-fee__card {
  position: relative;
  padding: 48px 48px 40px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: 0 14px 36px rgba(20, 30, 70, .06);
}
.p-fee__price-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--c-line);
}
.p-fee__price-label {
  font-family: var(--ff-mincho);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-text-sub);
  margin-bottom: 12px;
}
.p-fee__price-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.p-fee__price-num {
  font-family: var(--ff-mincho);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--c-brand);
}
.p-fee__price-unit {
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--c-brand);
}
.p-fee__price-sub {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--c-text-mute);
}

.p-fee__included {
  margin: 28px 0 0;
  padding: 16px 20px;
  background: var(--c-bg-kinari);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .04em;
  color: var(--c-text);
  text-align: center;
}
.p-fee__included-label {
  display: block;
  font-family: var(--ff-mincho);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--c-cta);
  margin-bottom: 6px;
}

/* ===== クーポン ===== */
.p-fee__coupons {
  margin-top: 36px;
}
.p-fee__coupons-title {
  font-family: var(--ff-mincho);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2em;
  text-align: center;
  color: var(--c-brand);
  margin: 0 0 20px;
  padding-bottom: 14px;
  position: relative;
}
.p-fee__coupons-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--c-cta);
}

.p-fee__coupon {
  position: relative;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  margin-bottom: 14px;
  transition: border-color .4s var(--ease);
}
.p-fee__coupon--member {
  border-color: var(--c-cta);
  background: linear-gradient(180deg, rgba(232,165,12,.04) 0%, #fff 100%);
}
.p-fee__coupon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.p-fee__coupon-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-bg-kinari);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--c-text-sub);
}
.p-fee__coupon-tag--member {
  background: var(--c-cta);
  color: #fff;
}
.p-fee__coupon-rate {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--c-cta);
}
.p-fee__coupon-rate small {
  font-size: 13px;
  margin-left: 2px;
}
.p-fee__coupon-name {
  font-family: var(--ff-mincho);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--c-brand);
  margin: 0 0 6px;
}
.p-fee__coupon-desc {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .03em;
  color: var(--c-text-sub);
  margin: 0 0 10px;
}
.p-fee__coupon-price {
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--c-text);
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--c-line);
}
.p-fee__coupon-price em {
  font-style: normal;
  font-family: var(--ff-mincho);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-cta);
  margin: 0 2px;
}
.p-fee__coupon-note {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: var(--c-bg-kinari);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .03em;
  color: var(--c-text-sub);
  text-align: center;
}

/* ===== CTA ===== */
.p-fee__cta {
  margin-top: 32px;
  text-align: center;
}
.p-fee__cta .c-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 280px;
  padding: 18px 32px;
}
.p-fee__cta .c-btn__sub {
  font-size: 11px;
  letter-spacing: .15em;
  opacity: .85;
  font-weight: 400;
}

/* ===== 情報リスト ===== */
.p-fee__info { padding-top: 8px; }
.p-fee__info-list { margin: 0; padding: 0; }
.p-fee__info-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.p-fee__info-row:first-child { border-top: 1px solid var(--c-line); }
.p-fee__info-row dt {
  font-family: var(--ff-mincho);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--c-cta);
  margin-bottom: 10px;
}
.p-fee__info-row dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .03em;
  color: var(--c-text);
}
.p-fee__pay {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-fee__pay li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.p-fee__pay li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--c-cta);
}
.p-fee__note {
  font-size: 11px;
  color: var(--c-text-mute);
  margin-left: 4px;
}
.p-fee__link {
  color: var(--c-cta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity .3s var(--ease);
}
.p-fee__link:hover { opacity: .7; }

/* Responsive */
@media (max-width: 1024px) {
  .p-fee__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 640px;
  }
}
@media (max-width: 600px) {
  .p-fee__card { padding: 40px 24px 32px; }
  .p-fee__price-num { font-size: 44px; }
  .p-fee__cta .c-btn { min-width: 100%; }
  .p-fee__coupon { padding: 18px 18px; }
}

/* 14. FAQ */
.p-faq {
  position: relative;
  padding: var(--sp-section) 0;
  background: var(--c-bg-kinari);
  overflow: hidden;
}
.p-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 1px;
  height: 100px;
  background: var(--c-cta);
  opacity: .3;
}
.p-faq__wrap {
  max-width: 880px;
  margin: 56px auto 0;
}

/* ===== タブ ===== */
.p-faq__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 32px;
}
.p-faq__tab {
  flex: 1;
  padding: 16px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--ff-mincho);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--c-text-mute);
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
  margin-bottom: -1px;
}
.p-faq__tab:hover { color: var(--c-brand); }
.p-faq__tab.is-active {
  color: var(--c-brand);
  border-bottom-color: var(--c-cta);
  font-weight: 600;
}

/* ===== パネル ===== */
.p-faq__panel { display: none; }
.p-faq__panel.is-active {
  display: block;
  animation: faqFade .4s var(--ease);
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== アコーディオン ===== */
.p-faq__item {
  background: #fff;
  border: 1px solid var(--c-line);
  margin-bottom: 12px;
  transition: border-color .3s var(--ease);
}
.p-faq__item[open] { border-color: var(--c-cta); }
.p-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 56px 20px 28px;
  font-family: var(--ff-mincho);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--c-brand);
  cursor: pointer;
  list-style: none;
  transition: background .3s var(--ease);
}
.p-faq__item summary::-webkit-details-marker { display: none; }
.p-faq__item summary:hover { background: var(--c-bg-kinari); }
.p-faq__item summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: var(--c-cta);
  color: #fff;
  font-family: var(--ff-mincho);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  flex-shrink: 0;
}
.p-faq__item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--c-cta);
  border-bottom: 1.5px solid var(--c-cta);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease);
}
.p-faq__item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.p-faq__answer {
  padding: 0 28px 24px 68px;
  position: relative;
}
.p-faq__answer::before {
  content: "A";
  position: absolute;
  top: -4px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  color: var(--c-cta);
  border: 1px solid var(--c-cta);
  font-family: var(--ff-mincho);
  font-size: 12px;
  font-weight: 600;
}
.p-faq__answer p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  letter-spacing: .03em;
  color: var(--c-text);
}
.p-faq__answer em {
  font-style: normal;
  font-weight: 600;
  color: var(--c-brand);
  background: linear-gradient(transparent 65%, rgba(232,165,12,.25) 65%);
  padding: 0 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .p-faq__tabs {
    flex-wrap: wrap;
    gap: 0;
  }
  .p-faq__tab {
    flex: 1 1 50%;
    font-size: 12px;
    padding: 14px 8px;
    letter-spacing: .08em;
  }
  .p-faq__item summary {
    padding: 18px 48px 18px 20px;
    font-size: 14px;
  }
  .p-faq__item summary::before {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    font-size: 11px;
  }
  .p-faq__item summary::after { right: 20px; }
  .p-faq__answer { padding: 0 20px 20px 54px; }
  .p-faq__answer::before { left: 20px; }
}


/* 15. LAST CTA */
.p-cta {
  position: relative;
  padding: calc(var(--sp-section) + 20px) 0;
  background: var(--c-brand);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* ===== 背景装飾 ===== */
.p-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-cta__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,165,12,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(232,165,12,.06) 0%, transparent 50%);
}
.p-cta__deco-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(232,165,12,.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.p-cta__deco-circle::before,
.p-cta__deco-circle::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(232,165,12,.1);
  border-radius: 50%;
}
.p-cta__deco-circle::after {
  inset: 140px;
  border-color: rgba(232,165,12,.06);
}
.p-cta__deco-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--c-cta) 0%, transparent 100%);
}

/* ===== 中身 ===== */
.p-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.p-cta__eyebrow {
  display: inline-block;
  font-family: var(--ff-mincho);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .4em;
  color: var(--c-cta);
  margin-bottom: 28px;
  padding: 0 12px;
}
.p-cta__title {
  font-family: var(--ff-mincho);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .06em;
  color: #fff;
  margin: 0 0 32px;
}
.p-cta__title em {
  font-style: normal;
  font-family: var(--ff-mincho);
  color: var(--c-cta);
  font-size: 1.3em;
  font-weight: 700;
  margin: 0 4px;
}
.p-cta__title em small {
  font-size: .6em;
  margin-left: 2px;
}
.p-cta__title time {
  color: var(--c-cta);
  font-weight: 700;
}

.p-cta__lead {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  margin: 0 0 48px;
}
.p-cta__lead em {
  font-style: normal;
  font-weight: 600;
  color: var(--c-cta);
  margin: 0 2px;
}

/* ===== 日付バー ===== */
.p-cta__countdown {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,165,12,.25);
  margin-bottom: 48px;
}
.p-cta__countdown-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.p-cta__countdown-label {
  font-family: var(--ff-mincho);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  color: rgba(255,255,255,.6);
}
.p-cta__countdown-date {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #fff;
  line-height: 1;
}
.p-cta__countdown-row--end .p-cta__countdown-label { color: var(--c-cta); }
.p-cta__countdown-row--end .p-cta__countdown-date { color: var(--c-cta); }
.p-cta__countdown-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

/* ===== アクション ===== */
.p-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.p-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 320px;
  padding: 20px 40px;
  box-shadow: 0 14px 40px rgba(232,165,12,.3);
}
.p-cta__btn:hover { box-shadow: 0 18px 48px rgba(232,165,12,.4); }
.p-cta__btn .c-btn__sub {
  font-size: 11px;
  letter-spacing: .15em;
  opacity: .9;
  font-weight: 400;
}
.p-cta__note {
  margin: 0;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
}

/* Responsive */
@media (max-width: 768px) {
  .p-cta { padding: 80px 0; }
  .p-cta__deco-circle { width: 360px; height: 360px; }
  .p-cta__deco-circle::before { inset: 36px; }
  .p-cta__deco-circle::after { inset: 84px; }
  .p-cta__title { font-size: 24px; letter-spacing: .04em; }
  .p-cta__title em { font-size: 1.2em; }
  .p-cta__lead { font-size: 13px; margin-bottom: 36px; }
  .p-cta__countdown {
    gap: 20px;
    padding: 16px 24px;
    margin-bottom: 36px;
  }
  .p-cta__countdown-date { font-size: 18px; }
  .p-cta__btn { min-width: 100%; padding: 18px 24px; }
}
@media (max-width: 480px) {
  .p-cta__countdown {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 18px 20px;
  }
  .p-cta__countdown-divider {
    width: 36px;
    height: 1px;
  }
}
