@charset "utf-8";

:root {
  --gold: #B8955A;
  --gold-mid: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-pale: #F7F0E4;
  --black: #0C0C0C;
  --ink: #1A1A1A;
  --ink-mid: #3D3D3D;
  --ink-soft: #6B6B6B;
  --rule: #D8D3CB;
  --surface: #FAFAF8;
  --white: #FFFFFF;
  --accent-rose: #B87878;
  --font-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  
  --btn-color: #53a128;
  --btn-color-mid: #62be30;
}

@font-face {
	font-family:'MADE-Canvas-Regular';
	src:url('./font/MADE-Canvas-Regular.otf') format('opentype');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

img { max-width: 100%;}
br.sp {display: none;}
@media (max-width: 800px) {
  br.sp {
    display: inherit;
  }
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.gold { color: var(--gold); }
.serif { font-family: var(--font-serif); }
.display { font-family: var(--font-display); font-style: italic; }

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.gold-dash {
  width: 48px; height: 2px;
  background: var(--gold);
  display: block;
  margin-bottom: 28px;
}
.gold-dash.center { margin: 0 auto 28px; }

.section-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 600px) {
  .section-wrap { padding: 0 24px; }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: all 0.4s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) {
  #nav {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink);
}
body.test .nav-logo {
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  .nav-logo {
    font-size: 0.7em;
  }
}

.nav-logo em {
  font-style: normal;
  color: var(--gold);
}
.nav-btn {
  font-family: var(--font-sans);
  font-size: 0.6875em;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  background-color: var(--ink);
  background-image: url("../img/btn_icon_line.png");
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: 0.8em center;
  border: none;
  padding: 12px 20px 12px 45px;
  padding: 12px 20px 12px 50px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  text-decoration: none;
}
body.test .nav-btn {
  letter-spacing: 0.05em;
  background-size: auto 2em;
}

.nav-btn:hover { background-color: var(--btn-color); }
#nav.scrolled .nav-btn { background-color: var(--btn-color); }

@media (max-width: 600px) {
  #nav { padding: 18px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-btn {
    font-size: 0.6em;
    background-size: auto 40%;
    padding: 10px 10px 10px 40px;
  }
  
  
  body.test .nav-btn {
    font-size: 0.5em;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  /*min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;*/
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
@media (max-width: 800px) {
  #hero {
    font-size: 2.7vw;
  }
}

.hero-inner {
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.fv_ariyoshi {
  position: absolute;
  right: 0;
  bottom: 0;
  /*width: clamp(62vw, 62vw, 470px);*/
  width: 640px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
@media (max-width: 800px) {
  .fv_ariyoshi {
    right: -9%;
    width: 65%;
  }
}
.hero-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  /*background: var(--white);*/
  padding: 28px 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .hero-caption {
    font-size: 0.8em;
    right: calc(9% + 1em);
    padding: 1em 1.5em;
  }
}
.hero-caption-award {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 800px) {
  .hero-caption-award {
    font-size: 0.9em;
  }
}
.hero-caption-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
}
@media (max-width: 800px) {
  .hero-caption-name {
    font-size: 1.6em;
  }
}



.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  border: 1px solid rgba(184,149,90,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(184,149,90,0.1);
  border-radius: 50%;
  pointer-events: none;
}



.hero-title-gold {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
  color: #c6bca9;
}
.hero-title-gold span {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: italic;
  font-size: 2em;
  line-height: 1;
  padding-right: 0.04em;
}



.hero-title {/* 画像のタイトル */
  font-size: 1rem;
  width: clamp(62vw, 62vw, 670px);
  margin-bottom: 2em;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
@media (max-width: 800px) {
  .hero-title {
    margin-bottom: 0.6em;
  }
}



.hero-catch {
  font-family: var(--font-serif);
  /*font-size: clamp(4.18vw, 1.8vw, 18px);*/
  font-size: 2.5em;
  line-height: 1.2;
  font-weight: 700;
  color: #fffaeb;
  letter-spacing: 0;
  padding-left: 0.1em;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
@media (max-width: 800px) {
  .hero-catch {
    font-size: 1.56em;
    line-height: 1.3;
    padding-left: 0.2em;
    margin-bottom: 0;
  }
}
.hero-catch .color {
  color: #c59b1b;
}



.hero-catch-sub {
  position: relative;
  font-family: var(--font-serif);
  font-size: 13px;
  font-size: 1.5em;
  line-height: 1.1;
  color: #fffaeb;
  font-style: italic;
  letter-spacing: 0.06em;
  padding-left: 0.1em;
  margin-bottom: 2em;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-catch-sub::after {
  content: "";
  position: absolute;
  bottom:-1em;
  left: 0;
  width: 4.5em;
  height: 1px;
  background: #c19418;
}
@media (max-width: 800px) {
  .hero-catch-sub {
    font-size: 1.18em;
    line-height: 1.3;
    padding-left: 0.2em;
    margin-bottom: 2.3em;
  }
  .hero-catch-sub::after {
    width: 3.8em;
  }
}
.hero-catch-sub .block2 {
  padding-left: 1em;
}
.hero-catch-sub .block3 {
  font-size: 1.5em;
  font-style: normal;
  color: #c59b1b;
  font-weight: 700;
  padding-left: 0.5em; 
}
@media (max-width: 800px) {
  .hero-catch-sub .block3 {
    display: block;
    padding-left: 0;
    margin-top: 0.05em;
  }
}
.hero-catch-sub .block em {
  font-size: 2.4em;
  
}
@media (max-width: 800px) {
  .hero-catch-sub .block em {
    line-height: 1;
  }
}




.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
@media (max-width: 800px) {
  .hero-pills {
    margin-right: 35%;
    margin-bottom: 3em;
    gap: 0.3em;
  }
}
.pill {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
}
@media (max-width: 800px) {
  .pill {
    font-size: 0.76em;
    padding: 0.5em 1em;
  }
}




.hero-cta-group {
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}
@media (max-width: 800px) {
  .hero-cta-group {
    margin-right: 35%;
  }
}
.hero-cta-group-inner {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
}
.hero-cta-group-info {
  /*display: flex;
  flex-direction: column;*/
  /*gap: 16px;*/
  /*align-items: flex-start;*/
  border:1px solid var(--gold);
  padding:16px 24px;
  background:rgba(184,149,90,0.08);
}
@media (max-width: 800px) {
  .hero-cta-group-info {
    line-height: 1;
    padding:1.5em;
    margin-bottom: -0.5em;
  }
}
.hero-cta-title {
  font-size:10px;
  letter-spacing:0.25em;
  color:var(--gold);
  font-weight:500;
  font-family:var(--font-sans);margin-bottom:8px;
}
@media (max-width: 800px) {
  .hero-cta-title {
    font-size:0.8em;
  }
}
.hero-cta-date {
  font-family:var(--font-serif);
  font-size:clamp(16px,2.2vw,20px);
  font-weight:600;
  color:var(--white);
  letter-spacing:0.08em;
  margin-bottom:4px;
}
@media (max-width: 800px) {
  .hero-cta-date {
    font-size:1.06em;
    line-height: 1;
    margin-bottom: 0.5em;
  }
}
.hero-cta-time {
  font-family:var(--font-sans);
  font-size:14px;
  color:var(--gold-mid);
  letter-spacing:0.15em;
}
@media (max-width: 800px) {
  .hero-cta-time {
    font-size: 1em;
    margin-top: 0.4em;
  }
}



.btn-gold {
  display: inline-block;
  background-color: var(--btn-color);
  background-image: url("../img/btn_icon_line.png");
  background-repeat: no-repeat;
  background-size: auto 50% !important;
  background-position: 1em center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 18px 35px 18px 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
body.test .btn-gold {
  padding: 18px 35px 18px 75px;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-gold:hover::after { transform: translateX(0); }
/*.btn-gold:hover { background: var(--btn-color-mid); }*/

@media (max-width: 800px) {
  .btn-gold {
    font-size:0.9em;
    padding: 1em 1.5em 1em 3.5em;
    margin-bottom: 0.5em;
  }
  body.test .btn-gold {
    padding: 1em 1.5em 1em 5em;
  }
}

.btn-outline-white {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 800px) {
  .btn-outline-white {
    font-size:0.8em;
  }
}

/*.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}*/

/*.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, #E8E4DC 0%, #D4CFC5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-photo-placeholder svg { opacity: 0.3; }
.hero-photo-placeholder span {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
}*/




@media (max-width: 800px) {
  .hero-left { padding: 8em 3% 2em; /*min-height: 80vh;*/ }
  .hero-right { min-height: 360px; }
}
@media (max-width: 800px) {
}

/* ══════════════════════════════════════
   PASSION STATEMENT — 講師の情熱
══════════════════════════════════════ */
#passion {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
@media (max-width: 800px) {
  #passion {
    padding-top: 1.5rem;
  }
}

.passion-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2px 2fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 720px) {
  .passion-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 5%;
  }
  .passion-divider { display: none; }
}

.passion-divider { background: var(--gold); }

.passion-label-col {
  padding-top: 8px;
}
.passion-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.passion-label-ja {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.passion-text-col {}

.passion-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.07em;
  color: var(--ink);
  margin-bottom: 36px;
}
.passion-quote em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
}

.passion-body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 2.3;
  margin-bottom: 32px;
}

.passion-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   PAIN SECTION
══════════════════════════════════════ */
#pain {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#pain::before {
  content: 'REALITY';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
}

.pain-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 800px) {
  .pain-inner {
    padding: 0 5%;
  }
}

.section-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.section-heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.pain-heading { color: var(--white); margin-bottom: 64px; }
.pain-heading .underline-gold {
  position: relative;
  display: inline;
}
.pain-heading .underline-gold::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

.pain-cell {
  background: var(--ink);
  padding: 48px 40px;
  transition: background 0.3s;
  border-left: 2px solid transparent;
}
.pain-cell:hover {
  background: rgba(184,149,90,0.05);
  border-left-color: var(--gold);
}
@media (max-width: 800px) {
  .pain-cell {
    padding: 1.5em 5%;
  }
}

.pain-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  color: rgba(184,149,90,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.pain-cell h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pain-cell p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 2;
}

/* ══════════════════════════════════════
   VISION
══════════════════════════════════════ */
#vision {
  padding: 100px 0;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
}

#vision::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(184,149,90,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.vision-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
@media (max-width: 800px) {
  .vision-inner {
    padding: 0 5%;
  }
}

.vision-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 32px 0 64px;
}
.vision-heading em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(184,149,90,0.15);
}

@media (max-width: 720px) {
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .vision-grid { grid-template-columns: 1fr; }
}

.vision-cell {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s;
}
.vision-cell:hover { background: var(--gold-pale); }

.vision-cell-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.vision-cell h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  line-height: 1.6;
}

.vision-cell p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ══════════════════════════════════════
   CURRICULUM
══════════════════════════════════════ */
#curriculum {
  padding: 72px 0 120px;
  scroll-margin-top: 72px;
  background: var(--white);
}
@media (max-width: 800px) {
  #curriculum {
    scroll-margin-top: 76px;
  }
}
.curriculum-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 800px) {
  .curriculum-inner {
    padding: 0 5%;
  }
}

.curriculum-heading { color: var(--ink); margin-bottom: 80px; }

.step-list { display: flex; flex-direction: column; }

.step-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  transition: all 0.3s;
}
.step-row:last-child { border-bottom: 1px solid var(--rule); }
.step-row:hover { background: var(--surface); }

.step-left {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.step-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.step-month {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .step-month {
    writing-mode: vertical-rl;
  }
}

.step-right {
  padding: 36px 0 36px 40px;
}

.step-right h3 {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.step-right p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
}

@media (max-width: 600px) {
  .step-row { grid-template-columns: 45px 1fr; }
  .step-left { padding: 24px 16px 24px 0; }
  .step-right { padding: 24px 0 24px 20px; }
}

.curriculum-info-row {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.video-summary-row {
  display: flex;
  gap: 2px;
  margin: 20px 0 24px;
  background: var(--rule);
}
.vs-item {
  flex: 1;
  background: var(--white);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s;
}
.vs-item:hover { background: var(--gold-pale); }
.vs-item.vs-total {
  background: var(--ink);
}
.vs-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.vs-item.vs-total .vs-num { color: var(--gold-mid); }
.vs-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}
.vs-item.vs-total .vs-label { color: rgba(255,255,255,0.45); }

.acc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.acc-item { background: var(--surface); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
  font-family: var(--font-sans);
}
.acc-head:hover { background: var(--gold-pale); border-left-color: var(--gold); }
.acc-item.open .acc-head { background: var(--gold-pale); border-left-color: var(--gold); }
.acc-cat {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  flex: 1;
}
.acc-count {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.acc-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
  border-radius: 2px;
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); border-color: var(--gold); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.acc-item.open .acc-body { max-height: 1200px; }

.acc-body .feature-topics {
  padding: 12px 18px 20px;
}

.feature-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.topic-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(184,149,90,0.3);
  padding: 4px 10px;
  background: var(--gold-pale);
}

.curriculum-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ci-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
}
.ci-value {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
}




/* ══════════════════════════════════════
   SCHEDULE
══════════════════════════════════════ */
#schedule {
  padding:120px 0;
  background:var(--ink);
}


.schedule-innder {
  max-width:900px;
  margin:0 auto;
  padding:0 40px;
}
@media (max-width: 800px) {
  .schedule-innder {
    padding:0 3%;
  }
}


.schedule-table {
  border-collapse:collapse;
  font-size:15px;
  width: 100%;
}
@media (max-width: 800px) {
  .schedule-table {
    font-size:0.7em;
    width:150%;
  }
}


/* ══════════════════════════════════════
   push
══════════════════════════════════════ */
#push {
  padding:0;
  overflow:hidden;
}


.push-innder {
  background:var(--white);
  padding:100px 40px 80px;
  text-align:center;
  position:relative;
}
@media (max-width: 800px) {
  .push-innder {
    padding:100px 5% 80px;
  }
}




/* ══════════════════════════════════════
   JOIN
══════════════════════════════════════ */
#join {
  scroll-margin-top: 72px;
  background:var(--ink);
  padding:80px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
@media (max-width: 800px) {
  #join {
    scroll-margin-top: 76px;
    padding:80px 5%;
  }
}




/* ══════════════════════════════════════
   INSTRUCTOR
══════════════════════════════════════ */
#instructor {
  padding: 0;
  background: var(--surface);
  overflow: hidden;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

@media (max-width: 760px) {
  .instructor-grid { grid-template-columns: 1fr; }
}

.instructor-photo-col {
  position: relative;
  background: #D4CFC5;
  min-height: 400px;
}

.instructor-photo-col-placeholder {
  width: 100%; height: 100%;
  min-height: 400px;
  /*background: linear-gradient(160deg, #E2DDD5 0%, #CBC6BC 100%);*/
  background: url("../img/instructor_photo.webp") center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.instructor-photo-col-placeholder svg { opacity: 0.25; }
.instructor-photo-col-placeholder span {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
}

.instructor-badge {
  position: absolute;
  top: 40px; right: -1px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 20px 14px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .instructor-badge {
    top: auto;
    bottom:40px;
    padding: 1em 1.5em;
  }
}

.instructor-content-col {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 760px) {
  .instructor-content-col {
    padding: 60px 5%;
  }
}

.instructor-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}

.instructor-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.2;
}

.instructor-award-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.award-trophy { font-size: 20px; }
.award-detail { line-height: 1.6; }
.award-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  font-weight: 500;
}
.award-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.instructor-passion-heading {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.instructor-bio {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 2.3;
  margin-bottom: 40px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.istat {
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
}
.istat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.istat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════
   RESULTS
══════════════════════════════════════ */
#results {
  padding: 100px 0;
  background: var(--white);
}

.results-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 800px) {
  .results-inner {
    padding: 0 5%;
  }
}

.results-heading { color: var(--ink); margin-bottom: 16px; }

.results-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 72px;
  line-height: 2;
}

.result-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 640px) {
  .result-cards { grid-template-columns: 1fr; }
}


.result-card {
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s;
}
.result-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 40px rgba(184,149,90,0.08);
}
.rc-top {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--rule);
}
.rc-tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-sans);
}
.rc-nums {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-before-block { text-align: center; }
.rc-bl {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #BBBBBB;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-sans);
}
.rc-before-val {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 300;
  color: #C8C4BC;
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.15);
  line-height: 1;
}
.rc-before-val .u { font-size: 0.55em; }
.rc-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.rc-sep-line { width: 1px; height: 18px; background: var(--rule); }
.rc-sep-arrow { font-size: 16px; color: var(--gold); line-height: 1; }
.rc-after-block { text-align: center; flex: 1; }
.rc-al {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.rc-after-val {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 60px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.rc-after-val .u {
  font-size: 0.3em;
  font-family: var(--font-sans);
  color: var(--gold);
  vertical-align: baseline;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.rc-achieve {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: 0.08em;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
  line-height: 1.6;
}
.rc-bottom {
  padding: 20px 28px;
}
.rc-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
#pricing {
  padding: 100px 0;
  background: var(--surface);
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing-heading { color: var(--ink); margin-bottom: 16px; }

.pricing-intro {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 72px;
  line-height: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
}

@media (max-width: 620px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pc {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.pc.featured {
  background: var(--ink);
}
.pc.featured .pc-plan,
.pc.featured .pc-name,
.pc.featured .pc-price,
.pc.featured .pc-note { color: var(--white); }
.pc.featured .pc-price { color: var(--gold); }
.pc.featured .pc-list li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.pc.featured .pc-list li::before { background: var(--gold); }

.pc-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 14px;
}

.pc-plan {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.pc-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 28px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-price sup { font-size: 0.35em; vertical-align: top; margin-top: 0.6em; }

.pc-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.9;
}

.pc-list {
  list-style: none;
  margin-bottom: 40px;
}
.pc-list li {
  font-size: 13px;
  color: var(--ink-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}
.pc-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  margin-top: 11px;
  flex-shrink: 0;
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 17px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  width: 100%;
}
.pc-btn.outline {
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.pc-btn.outline:hover { background: var(--ink); color: var(--white); }
.pc-btn.solid {
  background: var(--gold);
  color: var(--white);
}
.pc-btn.solid:hover { background: var(--gold-mid); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
#faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 800px) {
  .faq-inner {
    padding: 0 5%;
  }
}

.faq-heading { color: var(--ink); margin-bottom: 64px; }

.faq-item {
  border-top: 1px solid var(--rule);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); border-color: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.3;
}

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
#cta {
  padding: 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(184,149,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(184,149,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

@media (max-width: 760px) {
  .cta-grid { grid-template-columns: 1fr; }
}

.cta-left {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 760px) {
  .cta-left { padding: 80px 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .cta-right { padding: 60px 32px; }
}

.cta-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: 24px;
}
.cta-heading em {
  font-style: normal;
  color: var(--gold);
}

.cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 2.2;
}

.cta-right {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cta-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(184,149,90,0.35);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold-mid);
  margin-bottom: 8px;
}

.btn-gold-lg {
  display: block;
  background-color: var(--btn-color);
  background-image: url("../img/btn_icon_line.png");
  background-repeat: no-repeat;
  background-size: auto 50% !important;
  background-position: 0.8em center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 22px 20px 22px 65px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
body.test .btn-gold-lg {
  padding: 22px 20px 22px 75px;
}
.btn-gold-lg:hover { background-color: var(--btn-color-mid); }

@media (max-width: 800px) {
  .btn-gold-lg {
    font-size: 0.7em;
    padding: 1em 1.5em 1em 3.5em;
  }
  
  body.test .btn-gold-lg {
    padding: 1em 1.5em 1em 4.5em;
  }
}

.cta-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #080808;
  padding: 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo-group { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.footer-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.18em;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* ══════════════════════════════════════
   メッセージのモーダル
══════════════════════════════════════ */
.remodal_message .btn-gold-lg {
  display: inline-block;
}
