:root {
  --paper:    #FCFCFD;
  --paper-2:  #F4F6F9;
  --ink:      #0E1A2B;
  --ink-soft: #4A5670;
  --navy:     #1B2E4A;
  --navy-deep:#0A1628;
  --silver:   #9AA5B5;
  --silver-2: #C8CFDA;
  --display: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  --sans:    'Noto Sans JP', sans-serif;
  --en:      'Cormorant Garamond', 'EB Garamond', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { text-wrap: balance; }
p, blockquote, figcaption, li { text-wrap: pretty; }
h1, h2, h3, h4, h5, p, blockquote, figcaption, li { word-break: auto-phrase; line-break: strict; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

.eyebrow {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: var(--silver);
  text-transform: uppercase;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.section-title small {
  display: block;
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-top: 14px;
  font-weight: 400;
}
@media (max-width: 720px) { .section-title { font-size: 28px; } }

.lead {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.95;
}

.silver-rule {
  width: 60px;
  height: 1px;
  background: var(--silver);
  margin: 22px 0;
}
.silver-rule.center { margin: 22px auto; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(252, 252, 253, 0.96);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--silver-2);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.16em;

  color: var(--nav-ink, #fff);
  font-weight: 500;
  transition: color 0.35s ease;
}
.nav.scrolled .nav-logo { color: var(--ink); }

@media (max-width: 760px) {
  body:has(.nav) [data-mlp-block="0"] > section,
  body:has(.nav) [data-mlp-block="0"] > header {
    padding-top: 92px;
  }
}
.nav-logo .en {
  display: block;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--silver);
  margin-top: 2px;
  font-weight: 400;
}
.nav-list {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--nav-ink, #fff);
  transition: color 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
}
.nav.scrolled .nav-list > li > a { color: var(--ink); }
.nav-list > li > a:hover { color: var(--silver); }

.nav-list .has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 3px;
  opacity: 0.7;
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--paper);
  list-style: none;
  padding: 14px 0;
  min-width: 220px;
  box-shadow: 0 18px 40px rgba(14,26,43,0.12);
  border-top: 1px solid var(--silver-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.has-sub:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu li { list-style: none; }
.submenu li a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.submenu li a:hover { background: var(--paper-2); color: var(--navy); }
.submenu-divider {
  height: 1px;
  background: var(--silver-2);
  margin: 8px 16px;
}
.submenu-section {
  padding: 8px 22px 4px;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--silver);
  text-transform: uppercase;
}
.nav-burger {
  display: none;
  width: 28px; height: 18px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--nav-ink, #fff);
  transition: all 0.3s ease;
}
.nav.scrolled .nav-burger span { background: var(--ink); }
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 50%; }
.nav-burger span:nth-child(3) { bottom: 0; }
.nav-burger.open span:nth-child(1) { top: 50%; transform: rotate(45deg); background: var(--ink); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); background: var(--ink); }

.nav-mobile { display: none; }

@media (max-width: 880px) {
  .nav-list { display: none; }
  .nav-burger { display: block; cursor: pointer; }
  .nav-mobile {
    display: block;
    position: fixed; inset: 0;
    background: var(--paper);
    z-index: 99;
    padding: 110px 32px 40px;
    transform: translateY(-100%);

    visibility: hidden;
    transition: transform 0.4s ease, visibility 0s linear 0.4s;
  }
  .nav-mobile.open { transform: translateY(0); visibility: visible; transition: transform 0.4s ease, visibility 0s; }
  .nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 28px; }
  .nav-mobile a { font-family: var(--display); font-size: 22px; color: var(--ink); }
  .nav-mobile .en { display: block; font-family: var(--en); font-size: 11px; letter-spacing: 0.4em; color: var(--silver); margin-top: 4px; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  opacity: 0;
  animation: heroFade 24s infinite ease-in-out;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
  0%   { opacity: 1; }
  21%  { opacity: 1; }
  25%  { opacity: 0; }
  96%  { opacity: 0; }
  100% { opacity: 1; }
}

.hero-motion-fade-zoom .hero-slide {
  animation: heroFade 24s infinite ease-in-out, heroKenburns 24s infinite ease-in-out;
  will-change: opacity, transform;
}
@keyframes heroKenburns {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.hero-motion-still .hero-slide { animation: none; opacity: 0; }
.hero-motion-still .hero-slide:first-child { opacity: 1; }
.hero-motion-fade .hero-slide:only-child { animation: none; opacity: 1; }
.hero-motion-fade-zoom .hero-slide:only-child { animation: heroKenburnsOnly 24s infinite ease-in-out; opacity: 1; }
@keyframes heroKenburnsOnly {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none !important; opacity: 0; }
  .hero-slide:first-child { opacity: 1; }
}

.snsw { padding: 80px 0; }
.snsw-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); align-items: start; }
.snsw-col { min-width: 0; }
.snsw-name { font-family: var(--font-en, 'Cormorant Garamond', serif); font-size: 20px; letter-spacing: .08em; margin-bottom: 14px; }
.snsw-ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 14px; }
.snsw-ig-cell { display: block; aspect-ratio: 1 / 1; background-size: cover; background-position: center; border-radius: 4px; }
.snsw-ig-grid a { display: block; transition: opacity .2s; }
.snsw-ig-grid a:hover { opacity: .82; }
.snsw-btn { display: inline-block; padding: 10px 22px; border: 1px solid currentColor; border-radius: 999px;
  font-size: 13px; letter-spacing: .06em; text-decoration: none; transition: opacity .2s; }
.snsw-btn:hover { opacity: .7; }
.snsw-btn-line { background: #06C755; border-color: #06C755; color: #fff; }
.snsw-fb iframe { border-radius: 6px; background: #fff; }
.snsw-card { display: flex; flex-direction: column; gap: 6px; padding: 22px 20px; border: 1px solid rgba(0,0,0,.14);
  border-radius: 10px; text-decoration: none; transition: opacity .2s; }
.snsw-card:hover { opacity: .75; }
.snsw-card-x { font-size: 26px; line-height: 1; }
.snsw-card-handle { font-size: 14px; letter-spacing: .04em; }
.snsw-card-go { font-size: 12.5px; opacity: .65; }
.snsw-note { font-size: 12.5px; line-height: 1.9; opacity: .75; margin: 10px 0 0; }
@media (max-width: 640px) { .snsw { padding: 56px 0; } .snsw-grid { gap: 28px; } }

.mlp-2col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 0 44px;
  max-width: 1200px; margin: 0 auto; align-items: start; }
.mlp-2col-main, .mlp-2col-side { min-width: 0; }
.mlp-2col-side { padding: 40px 20px 40px 0; }
.mlp-side-sticky { position: sticky; top: 24px; max-height: calc(100vh - 48px); overflow-y: auto; }

.mlp-2col-side section { padding: 22px 0; }
.mlp-2col-side .wrap, .mlp-2col-side .wrap-narrow { padding: 0; max-width: none; }
.mlp-2col-side .section-title { font-size: 19px; }
@media (max-width: 900px) {
  .mlp-2col { display: block; }
  .mlp-2col-side { padding: 0 0 40px; }
  .mlp-side-sticky { position: static; max-height: none; overflow: visible; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.35) 60%, rgba(10,22,40,0.55) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero-en {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--silver-2);
  margin-bottom: 28px;
  display: block;
}
.hero-en::before {
  content: "";
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--silver-2);
  vertical-align: middle;
  margin-right: 18px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
  max-width: 720px;
}
.hero h1 .line { display: block; }
.hero p {
  font-size: 16px;
  line-height: 2;
  max-width: 480px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 38px;
  background: #fff;
  color: var(--navy-deep);
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 500;
  border: 1px solid #fff;
  transition: all 0.35s ease;
}
.btn-primary:hover {
  background: transparent;
  color: #fff;
}
.btn-primary .arrow { transition: transform 0.35s ease; }
.btn-primary:hover .arrow { transform: translateX(6px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 38px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 500;
  border: 1px solid var(--navy);
  transition: all 0.35s ease;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

@media (max-width: 720px) {
  .hero h1 { font-size: 32px; letter-spacing: 0.06em; }
  .hero p { font-size: 15px; }
  .btn-primary, .btn-outline { padding: 16px 28px; font-size: 13px; }
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 36px;
  transform: translateX(-50%);
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--silver-2);
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 50px;
  background: var(--silver-2);
  margin: 14px auto 0;
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.6; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.trust {
  padding: 80px 0;
  background: var(--paper);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--silver-2);
  border-bottom: 1px solid var(--silver-2);
}
.trust-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--silver-2);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--en);
  font-size: 64px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.02em;
}
.trust-num .unit {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink-soft);
  margin-left: 6px;
}
.trust-label {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--silver-2); padding: 36px 16px; }
  .trust-item:last-child { border-bottom: none; }
  .trust-num { font-size: 48px; }
}

.about {
  padding: 140px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
}
.about-text .eyebrow { margin-bottom: 18px; }
.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 22px; }
.about-text .btn-outline { margin-top: 18px; }
@media (max-width: 880px) {
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.lessons {
  padding: 140px 0;
  background: var(--paper-2);
}
.lessons-head {
  text-align: center;
  margin-bottom: 80px;
}
.lessons-head .eyebrow { margin-bottom: 14px; display: block; }
.lessons-head .lead { max-width: 580px; margin: 24px auto 0; }
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.lesson-card {
  background: var(--paper);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lesson-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,26,43,0.08); }
.lesson-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.lesson-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.lesson-card:hover .lesson-img img { transform: scale(1.04); }
.lesson-body { padding: 28px 26px 36px; }
.lesson-en {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-bottom: 8px;
}
.lesson-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--ink);
}
.lesson-desc {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.lessons-foot {
  text-align: center;
  margin-top: 64px;
}
@media (max-width: 1080px) { .lessons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .lessons-grid { grid-template-columns: 1fr; } .lessons { padding: 80px 0; } }

.staff {
  padding: 140px 0;
  background: var(--paper);
}
.staff-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.staff-head .lead { max-width: 380px; }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.staff-card { }
.staff-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 22px;
  filter: grayscale(0.2);
  transition: filter 0.6s ease;
}
.staff-card:hover .staff-img { filter: grayscale(0); }
.staff-img img { width: 100%; height: 100%; object-fit: cover; }
.staff-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.staff-en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-bottom: 14px;
}
.staff-role {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
@media (max-width: 880px) {
  .staff { padding: 80px 0; }
  .staff-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) { .staff-grid { grid-template-columns: 1fr; } }

.staff-section-label { text-align: center; margin: 70px 0 44px; }
.staff-section-label:first-of-type { margin-top: 20px; }
.staff-section-label .staff-section-en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--silver);
  display: block;
  margin-bottom: 12px;
}
.staff-section-label .staff-section-jp {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink);
  position: relative;
  display: inline-block;
  padding: 0 28px;
}
.staff-section-label .staff-section-jp::before,
.staff-section-label .staff-section-jp::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--silver);
}
.staff-section-label .staff-section-jp::before { right: 100%; }
.staff-section-label .staff-section-jp::after  { left:  100%; }

.staff-grid-principal,
.staff-grid-instructor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.staff-grid-principal {
  max-width: 580px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}
.staff-grid-principal .staff-card,
.staff-grid-instructor .staff-card {
  position: relative;
}
.staff-grid-principal .staff-img,
.staff-grid-instructor .staff-img {
  margin-bottom: 14px;
}
.staff-grid-principal .staff-name,
.staff-grid-instructor .staff-name {
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.staff-grid-principal .staff-role,
.staff-grid-instructor .staff-role {
  font-size: 12px;
}
.staff-grid-principal .staff-en,
.staff-grid-instructor .staff-en {
  font-size: 10px;
}

.staff-grid-principal .staff-img {
  position: relative;
}
.staff-grid-principal .staff-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--silver);
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.staff-grid-principal .staff-card:hover .staff-img::after { opacity: 1; }
@media (max-width: 1080px) { .staff-grid-instructor { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px)  {
  .staff-grid-instructor { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .staff-grid-principal { max-width: 420px; gap: 16px; }
}
@media (max-width: 540px)  { .staff-grid-principal { max-width: 280px; grid-template-columns: 1fr; } }

.voice {
  padding: 140px 0;
  background: var(--paper-2);
}
.voice-head { text-align: center; margin-bottom: 72px; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voice-card {
  background: var(--paper);
  padding: 40px 36px;
  position: relative;
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 18px; left: 28px;
  font-family: var(--en);
  font-size: 80px;
  color: var(--silver-2);
  line-height: 1;
}
.voice-body {
  position: relative;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 24px;
  padding-top: 26px;
}
.voice-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--silver-2);
}
.voice-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--silver-2);
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-name {
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.voice-attr {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
@media (max-width: 880px) { .voice-grid { grid-template-columns: 1fr; } .voice { padding: 80px 0; } }

.access {
  padding: 140px 0;
  background: var(--paper);
}
.access-head { text-align: center; margin-bottom: 70px; }
.access-head .eyebrow { display: block; margin-bottom: 14px; }
.access-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.access-store {
  background: var(--paper);
}
.access-store-photo { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 24px; }
.access-store-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.access-store:hover .access-store-photo img { transform: scale(1.03); }
.access-store-label {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-bottom: 8px;
}
.access-store-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: var(--ink);
}
.access-store dl { margin-top: 8px; }
.access-store dt {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-bottom: 4px;
  margin-top: 16px;
}
.access-store dt:first-child { margin-top: 0; }
.access-store dd {
  font-size: 15px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--silver-2);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .access { padding: 80px 0; }
  .access-stores { grid-template-columns: 1fr; gap: 56px; }
}

.trial-cta {
  padding: 140px 0;
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trial-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://picsum.photos/seed/ginpa-demo-cta/1920/800?grayscale') center/cover no-repeat;
  opacity: 0.12;
  filter: brightness(0.6);
}
.trial-cta .wrap { position: relative; text-align: center; }
.trial-cta .eyebrow { color: var(--silver-2); margin-bottom: 24px; display: inline-block; }
.trial-cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.trial-cta p {
  max-width: 520px;
  margin: 0 auto 48px;
  color: rgba(255,255,255,0.82);
  line-height: 2;
}
@media (max-width: 720px) {
  .trial-cta { padding: 80px 0; }
  .trial-cta h2 { font-size: 28px; }
}

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-logo .en {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--silver);
  margin-top: 6px;
}
.footer p { font-size: 14px; line-height: 1.9; }
.footer h4 {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-bottom: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
}
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap-narrow { padding: 0 22px; } }

.profile-hero { padding: 40px 0 120px; background: var(--paper); }

.ph-visual { position: relative; overflow: hidden; padding: 96px 0 130px; }
.ph-visual .wrap { position: relative; z-index: 2; }
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }

@media (max-width: 720px) {
  .ph-visual .ph-bg { height: 76vh; bottom: auto; }
}
.ph-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(252, 252, 253, .93) 0%, rgba(252, 252, 253, .82) 38%,
    rgba(252, 252, 253, .72) 68%, var(--paper) 100%);
}
@media (max-width: 640px) { .ph-visual { padding: 64px 0 96px; } }
.profile-name {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  color: var(--ink);
}
.profile-name-en {
  display: block;
  font-family: var(--en);
  font-size: 18px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-top: 14px;
  font-weight: 400;
}
.silver-rule.center { margin-left: auto; margin-right: auto; }
@media (max-width: 880px) {
  .profile-hero { padding: 20px 0 60px; }
  .profile-name { font-size: 40px; letter-spacing: 0.14em; }
}

.message { padding: 120px 0; background: var(--paper-2); position: relative; }
.lesson-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.lesson-detail:last-child { margin-bottom: 0; }
.lesson-detail-rev .lesson-detail-photo { order: 2; }
.lesson-detail-photo { aspect-ratio: 9 / 7; overflow: hidden; }
.lesson-detail-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.lesson-detail:hover .lesson-detail-photo img { transform: scale(1.02); }
.lesson-detail-body .lesson-en {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-bottom: 10px;
}
.lesson-detail-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.45;
}
.lesson-detail-desc { font-size: 15px; line-height: 2; color: var(--ink-soft); margin-bottom: 22px; }

.lesson-detail-nophoto { display: block; max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.lesson-detail-nophoto .lesson-detail-desc:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .message { padding: 70px 0; }
  .lesson-detail { grid-template-columns: 1fr; gap: 34px; margin-bottom: 60px; }
  .lesson-detail-rev .lesson-detail-photo { order: 0; }
}

.pricing { padding: 60px 0 120px; background: var(--paper-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }

.pricing-grid:has(.pricing-card:only-child) { grid-template-columns: minmax(0, 440px); justify-content: center; }
.pricing-card { background: var(--paper); padding: 40px 32px; text-align: center; }
.pricing-card-en { font-family: var(--en); font-size: 11px; letter-spacing: 0.4em; color: var(--silver); margin-bottom: 10px; }
.pricing-card-name { font-family: var(--display); font-size: 20px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 22px; }
.pricing-price { font-family: var(--en); font-size: 36px; font-weight: 300; color: var(--navy); letter-spacing: 0.02em; }
.pricing-price .yen { font-family: var(--display); font-size: 16px; color: var(--ink-soft); margin-left: 4px; }
.pricing-unit { font-size: 12px; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0.06em; }
.pricing-card-note { font-size: 13px; color: var(--ink-soft); margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--silver-2); line-height: 1.85; }
.pricing-foot { text-align: center; font-size: 14px; color: var(--ink); }
@media (max-width: 880px) { .pricing { padding: 30px 0 70px; } .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card.is-popular {
  position: relative;
  border: 1px solid var(--navy);
  box-shadow: 0 18px 44px rgba(14, 26, 43, 0.10);
}

.pricing-ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--navy); color: var(--paper);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; line-height: 1; white-space: nowrap;
  padding: 8px 22px 8px 24px;
}

.pricing-old {
  font-family: var(--en); font-size: 19px; color: var(--ink-soft);
  text-decoration: line-through; letter-spacing: 0.02em; margin-bottom: 2px;
}

.pricing-benefits {
  list-style: none; display: inline-block; text-align: left;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--silver-2);
}
.pricing-benefits li {
  position: relative; padding-left: 26px;
  font-size: 15px; line-height: 1.9; color: var(--ink);
}
.pricing-benefits li + li { margin-top: 6px; }
.pricing-benefits li::before {
  content: ''; position: absolute; left: 3px; top: 0.58em;
  width: 11px; height: 6px;
  border-left: 1.6px solid var(--navy); border-bottom: 1.6px solid var(--navy);
  transform: rotate(-45deg);
}

.pricing-benefits + .pricing-card-note { border-top: none; margin-top: 16px; padding-top: 0; }

.pricing-grid:has(.pricing-card-foot) .pricing-card { display: flex; flex-direction: column; }
.pricing-card-foot { margin-top: auto; padding-top: 26px; }

.pricing-card-cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 34px;
  background: transparent; color: var(--navy); border: 1px solid var(--navy);
  font-size: 15px; letter-spacing: 0.1em; border-radius: 2px;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
}
.pricing-card-cta:hover { background: var(--navy); color: var(--paper); }
.pricing-card.is-popular .pricing-card-cta { background: var(--navy); color: var(--paper); }
.pricing-card.is-popular .pricing-card-cta:hover { opacity: 0.85; }
@media (max-width: 880px) {
  .pricing-card.is-popular { margin-top: 12px; }
  .pricing-benefits li { font-size: 15.5px; }
}

.problem-list { padding: 110px 0; background: var(--paper-2); }
.problem-items { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.problem-items[data-cols="1"] { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
.problem-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--paper); padding: 22px 26px;
  font-size: 17px; line-height: 1.8; color: var(--ink);
}
.problem-text { flex: 1; min-width: 0; }

.problem-num {
  flex-shrink: 0; width: 30px; height: 30px; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--navy); border-radius: 50%;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  line-height: 1; letter-spacing: 0; color: var(--navy);
}

.problem-check {
  flex-shrink: 0; position: relative; width: 30px; height: 30px; margin-top: 2px;
}
.problem-check::before {
  content: ''; position: absolute; left: 7px; top: 10px;
  width: 15px; height: 8px;
  border-left: 1.8px solid var(--navy); border-bottom: 1.8px solid var(--navy);
  transform: rotate(-45deg);
}
.problem-foot { text-align: center; margin-top: 44px; font-size: 16px; color: var(--ink); }
@media (max-width: 880px) {
  .problem-list { padding: 70px 0; }
  .problem-items { grid-template-columns: 1fr; gap: 12px; }
  .problem-item { padding: 18px 20px; font-size: 16.5px; }
}

.anav { position: sticky; top: 0; z-index: 60; }
.craft-serve .anav { position: fixed; left: 0; right: 0; }

.anav-spacer { display: none; }
.craft-serve .anav-spacer { display: block; }
.anav-bar {
  display: flex; align-items: center; gap: 24px;
  padding: 0 32px; min-height: 60px;
  background: rgba(252, 252, 253, 0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--silver-2);
}
.anav-brand { font-family: var(--display); font-size: 17px; letter-spacing: 0.1em; color: var(--ink); white-space: nowrap; }
.anav-links { display: flex; align-items: center; gap: 26px; flex: 1; min-width: 0; }
.anav-link {
  font-size: 15px; letter-spacing: 0.04em; color: var(--ink);
  white-space: nowrap; padding: 6px 0; border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.anav-link:hover { border-bottom-color: var(--navy); }

.craft-serve .anav-link.is-missing { display: none; }
.anav-cta {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 10px 26px; background: var(--navy); color: var(--paper);
  font-size: 14px; letter-spacing: 0.08em; border-radius: 2px; transition: opacity 0.3s;
}
.anav-cta:hover { opacity: 0.85; }
.anav-burger { display: none; flex-shrink: 0; width: 44px; height: 44px; position: relative; }
.anav-burger span {
  display: block; position: absolute; left: 12px; width: 20px; height: 1.5px;
  background: var(--ink); transition: transform 0.3s, opacity 0.3s;
}
.anav-burger span:nth-child(1) { top: 16px; }
.anav-burger span:nth-child(2) { top: 21.5px; }
.anav-burger span:nth-child(3) { top: 27px; }
.anav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.anav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.anav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.anav-panel {
  display: none; flex-direction: column;
  background: var(--paper); border-bottom: 1px solid var(--silver-2);
  padding: 8px 32px 18px;
}
.anav-panel .anav-link { padding: 14px 0; border-bottom: 1px solid var(--silver-2); font-size: 16.5px; }
.anav-panel .anav-link:last-child { border-bottom: none; }

.anav-point { display: block; height: 0; scroll-margin-top: var(--anav-offset, 90px); }

.anav-fixcta { display: none; }
.anav-fixcta a {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 15px 24px;
  background: var(--navy); color: var(--paper);
  font-size: 16px; letter-spacing: 0.08em;
}
@media (max-width: 880px) {
  .anav-bar { gap: 12px; padding: 0 20px; min-height: 56px; }
  .anav-links { display: none; }
  .anav-burger { display: block; }
  .anav-brand { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .anav-cta { padding: 10px 18px; font-size: 13px; }
  .anav-panel { display: flex; }
  .anav-panel[hidden] { display: none; }

  .anav.has-fixcta .anav-cta { display: none; }
  .anav-fixcta { display: block; }
  .craft-serve .anav-fixcta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    box-shadow: 0 -2px 16px rgba(14, 26, 43, 0.14);
  }

  .craft-serve:has(.anav-fixcta) .craft-serve-foot { padding-bottom: 76px; }
}

.schedule { padding: 120px 0; background: var(--paper); }
.schedule-head { text-align: center; margin-bottom: 60px; }
.schedule-head .eyebrow { display: block; margin-bottom: 14px; }

.schedule-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 2px 30px;
  margin-bottom: -30px;
}
.schedule-scroll .schedule-table { min-width: 385px; }
.schedule-table {
  max-width: 760px; margin: 0 auto; width: 100%;
  border-collapse: collapse; background: var(--paper);
  box-shadow: 0 22px 50px rgba(14,26,43,0.12), 0 4px 12px rgba(14,26,43,0.06);
  border-radius: 3px; overflow: hidden;
}
.schedule-table th, .schedule-table td {
  padding: 20px 14px; text-align: center; font-size: 14px;
  border-bottom: 1px solid var(--silver-2); border-right: 1px solid var(--silver-2);
}
.schedule-table th:last-child, .schedule-table td:last-child { border-right: none; }
.schedule-table tr:last-child th, .schedule-table tr:last-child td { border-bottom: none; }
.schedule-table th {
  font-family: var(--en); font-size: 12px; letter-spacing: 0.3em;
  color: var(--silver); font-weight: 500; background: var(--paper-2);
}
.schedule-table td.has { color: var(--navy); font-weight: 500; }
.schedule-table td.off { color: var(--silver-2); }
.schedule-note { text-align: center; color: var(--ink-soft); font-size: 14px; margin-top: 40px; }
@media (max-width: 720px) {
  .schedule { padding: 70px 0; }
  .schedule-table th, .schedule-table td { padding: 12px 6px; font-size: 12px; }
}

.gallery-grid-page { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gp-item { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); transition: filter 0.8s ease, transform 1.2s ease; }
.gp-item:hover img { filter: grayscale(0); transform: scale(1.05); }
.gp-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
  background: linear-gradient(to top, rgba(10,22,40,0.7), transparent);
  color: #fff; font-family: var(--en); font-size: 11px; letter-spacing: 0.24em;
  opacity: 0; transition: opacity 0.4s ease;
}
.gp-item:hover figcaption { opacity: 1; }
@media (max-width: 880px) { .gallery-grid-page { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.faq { padding: 0 0 120px; background: var(--paper-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--silver-2); padding: 22px 0; }
.faq-q {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--display); font-size: 17px; color: var(--ink);
  letter-spacing: 0.04em; margin-bottom: 12px; line-height: 1.6;
}
.faq-q::before { content: "Q"; font-family: var(--en); font-size: 14px; color: var(--silver); letter-spacing: 0.2em; }
.faq-a { display: flex; align-items: baseline; gap: 16px; font-size: 14px; line-height: 1.95; color: var(--ink-soft); }
.faq-a::before { content: "A"; font-family: var(--en); font-size: 14px; color: var(--navy); letter-spacing: 0.2em; }
@media (max-width: 880px) { .faq { padding: 0 0 70px; } }

.directions { padding: 60px 0 120px; background: var(--paper-2); }
.directions-block { max-width: 920px; margin: 0 auto 56px; counter-reset: step; }
.directions-block:last-child { margin-bottom: 0; }
.directions-block-label { font-family: var(--en); font-size: 11px; letter-spacing: 0.4em; color: var(--silver); margin-bottom: 10px; }
.directions-block h3 { font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 24px; }
.directions-steps { list-style: none; padding: 0; counter-reset: step; }
.directions-steps li {
  position: relative; padding: 16px 0 16px 64px;
  border-bottom: 1px solid var(--silver-2);
  font-size: 15px; line-height: 1.85; color: var(--ink);
}
.directions-steps li:last-child { border-bottom: none; }
.directions-steps li::before {
  content: counter(step, decimal-leading-zero); counter-increment: step;
  position: absolute; left: 0; top: 18px;
  font-family: var(--en); font-size: 14px; letter-spacing: 0.2em; color: var(--silver);
}
@media (max-width: 880px) { .directions { padding: 30px 0 70px; } }

.contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-channel { background: var(--paper); padding: 40px 28px; position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.trial-step-num { font-family: var(--en); font-size: 32px; font-weight: 300; color: var(--silver); letter-spacing: 0.04em; margin-bottom: 14px; }
.trial-step-name { font-family: var(--display); font-size: 18px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 12px; }
.trial-step-desc { font-size: 14px; line-height: 1.85; color: var(--ink-soft); }
@media (max-width: 880px) { .contact-channels { grid-template-columns: 1fr; } }

.career-head .eyebrow, .tags-head .eyebrow, .related-head .eyebrow,
.blog-head .eyebrow, .news-head .eyebrow, .trial-flow-head .eyebrow {
  display: block; margin-bottom: 14px;
}

.career { padding: 120px 0; background: var(--paper); }
.career-list { max-width: 720px; margin: 0 auto; list-style: none; }
.career-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--silver-2);
  align-items: baseline;
}
.career-item:last-child { border-bottom: none; }
.career-year {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--silver);
  font-weight: 500;
}
.career-text { font-size: 15px; line-height: 1.85; color: var(--ink); }
@media (max-width: 720px) {
  .career { padding: 70px 0; }
  .career-item { grid-template-columns: 80px 1fr; gap: 16px; }
}

.tags-section { padding: 60px 0; background: var(--paper); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.profile-tag {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  padding: 6px 14px;
  border: 1px solid var(--silver);
  color: var(--ink-soft);
  text-transform: uppercase;
}

.related { padding: 120px 0; background: var(--paper); }
.studio-classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.studio-class-card {
  display: block;
  background: var(--paper);
  padding: 32px 28px;
  border: 1px solid var(--silver-2);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.studio-class-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.studio-class-card h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 8px 0 10px;
  color: var(--ink);
}
.studio-class-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .related { padding: 70px 0; }
  .studio-classes-grid { grid-template-columns: 1fr; }
}

.blog-section { padding: 120px 0; background: var(--paper); }
.article-list { list-style: none; max-width: 820px; margin: 0 auto; }
.article-card {
  display: block;
  padding: 36px 0;
  border-bottom: 1px solid var(--silver-2);
  transition: padding 0.3s ease;
}
.article-card:first-child { border-top: 1px solid var(--silver-2); }
.article-card:hover { padding-left: 12px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.article-date {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--silver);
  font-weight: 500;
}
.article-tag {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--navy);
  padding: 4px 10px;
  background: rgba(27,46,74,0.06);
  text-transform: uppercase;
}
.article-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}
.article-excerpt { font-size: 14px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 14px; }
.article-readmore {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--navy);
  font-weight: 500;
}
.article-readmore .arrow { display: inline-block; transition: transform 0.35s ease; margin-left: 4px; }
.article-card:hover .article-readmore .arrow { transform: translateX(6px); }
@media (max-width: 720px) { .blog-section { padding: 70px 0; } }

.news-section { padding: 120px 0; background: var(--paper); }
.news-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--silver-2); }
.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--silver-2);
  transition: padding 0.3s ease;
}
a.news-item:hover { padding-left: 12px; }
.news-date {
  flex: 0 0 92px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--silver);
  font-weight: 500;
}
.news-tag {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--navy);
  padding: 4px 10px;
  background: rgba(27,46,74,0.06);
  text-transform: uppercase;
}
.news-title { flex: 1 1 280px; min-width: 200px; font-size: 15px; line-height: 1.85; color: var(--ink); }
@media (max-width: 720px) {
  .news-section { padding: 70px 0; }
  .news-title { flex-basis: 100%; }
}

.trial-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trial-step {
  background: var(--paper);
  padding: 36px 28px;
  position: relative;
}
@media (max-width: 880px) { .trial-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trial-flow { grid-template-columns: 1fr; } }

@media (max-width: 600px) {
  .lesson-desc, .voice-body, .lesson-detail-desc { font-size: 16px; line-height: 1.9; }
  .hero p { font-size: 16px; }
  .footer p, .schedule-note, .pricing-card-note { font-size: 15px; line-height: 1.85; }
  .btn-primary, .btn-outline {
    font-size: 16px; min-height: 48px; box-sizing: border-box;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .nav-logo .en, .submenu-section, .staff-en { font-size: 11px; }
}

.gp-sns { padding: 34px 0; background: var(--paper); }
.gp-sns-title {
  text-align: center;
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.gp-sns-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.gp-sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  color: var(--ink);
  transition: color 0.25s ease, transform 0.25s ease;
}
.gp-sns-icon:hover { color: var(--navy); transform: translateY(-2px); }
.gp-sns-icon svg { width: 22px; height: 22px; fill: currentColor; display: block; }

.gp-sns-icon.is-sample { opacity: 0.35; }
.gp-sns-hint { text-align: center; font-size: 13px; color: var(--ink-soft); margin: 8px 0 0; }

.lkp { position: relative; padding: 130px 22px 90px; min-height: 100vh; }
.lkp-bg { position: absolute; inset: 0; }
.lkp-bgimg { background-size: cover; background-position: center; }
.lkp-veil { position: absolute; inset: 0; }
.lkp-tone-light .lkp-veil { background: rgba(10, 12, 18, 0.45); }
.lkp-tone-dark .lkp-veil { background: rgba(252, 250, 246, 0.55); }
.lkp-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; text-align: center; }
.lkp-photo {
  width: 112px; height: 112px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 18px;
  box-shadow: 0 10px 30px rgba(14, 18, 28, 0.18);
}
.lkp-tone-dark .lkp-photo { border: 3px solid rgba(255, 255, 255, 0.9); }
.lkp-tone-light .lkp-photo { border: 3px solid rgba(255, 255, 255, 0.35); }
.lkp-name {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 5vw, 27px); letter-spacing: 0.12em;
  margin: 0 0 6px;
}
.lkp-title { font-size: 14px; letter-spacing: 0.1em; margin: 0 0 12px; }
.lkp-lead { font-size: 15px; line-height: 1.9; max-width: 460px; margin: 0 auto 6px; }
.lkp.lkp-tone-dark { color: var(--ink); }
.lkp-tone-dark .lkp-name { color: var(--ink); }
.lkp-tone-dark .lkp-title, .lkp-tone-dark .lkp-lead, .lkp-tone-dark .lkp-note { color: var(--ink-soft); }
.lkp-tone-light .lkp-name { color: #F7F8FB; }
.lkp-tone-light .lkp-title, .lkp-tone-light .lkp-lead, .lkp-tone-light .lkp-note { color: rgba(238, 240, 248, 0.82); }

.lkp-sns { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4px; margin: 14px 0 8px; }
.lkp-sns-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lkp-sns-icon:hover { transform: translateY(-2px); opacity: 0.75; }
.lkp-sns-icon svg { width: 21px; height: 21px; display: block; fill: currentColor; }
.lkp-tone-dark .lkp-sns-icon { color: var(--ink); }
.lkp-tone-light .lkp-sns-icon { color: #F2F4F9; }

.lkp-banners { display: grid; gap: 16px; margin: 22px 0 0; }
.lkp-banner {
  position: relative; display: block; border-radius: 14px; overflow: hidden;
  box-shadow: 0 14px 34px rgba(14, 18, 28, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lkp-banner:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(14, 18, 28, 0.22); }
.lkp-banner img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; display: block; }
.lkp-banner-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 12px; text-align: left;
  font-family: var(--display); font-size: 16px; letter-spacing: 0.1em; color: #FBFBFD;
  background: linear-gradient(to top, rgba(10, 10, 14, 0.62), rgba(10, 10, 14, 0));
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.lkp-cards { display: grid; gap: 12px; margin: 18px 0 0; }
.lkp-card {
  display: block; text-align: center; border-radius: 12px;
  padding: 15px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.lkp-tone-dark .lkp-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(120, 110, 90, 0.16);
  box-shadow: 0 8px 22px rgba(14, 18, 28, 0.08);
}
.lkp-tone-dark .lkp-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14, 18, 28, 0.13); background: #fff; }
.lkp-tone-light .lkp-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.lkp-tone-light .lkp-card:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.16); }
.lkp-card-title { display: block; font-size: 16px; font-weight: 600; letter-spacing: 0.06em; }
.lkp-tone-dark .lkp-card-title { color: var(--ink); }
.lkp-tone-light .lkp-card-title { color: #F7F8FB; }
.lkp-card-desc { display: block; font-size: 13px; margin-top: 3px; }
.lkp-tone-dark .lkp-card-desc { color: var(--ink-soft); }
.lkp-tone-light .lkp-card-desc { color: rgba(238, 240, 248, 0.75); }
.lkp-note { font-size: 13px; margin: 26px 0 0; }
@media (max-width: 480px) {
  .lkp { padding: 110px 16px 70px; }
  .lkp-banner img { aspect-ratio: 16 / 9; }
}
