:root{
  --bg:#0a0b0e;
  --bg-soft:#121317;
  --bg-elev:#16181e;
  --surface:#1b1d24;
  --surface-2:#21242d;
  --paper:#f6f2ea;
  --paper-soft:#fbf8f2;
  --ink:#141414;
  --text:#f3ede1;
  --muted:#c9c0b0;
  --muted-dark:#706758;
  --gold:#d7b56d;
  --gold-strong:#e4c67a;
  --line:rgba(255,255,255,.1);
  --line-dark:#e7dece;
  --shadow:0 24px 60px rgba(0,0,0,.24);
  --radius:28px;
  --radius-sm:20px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Noto Sans JP', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
  letter-spacing:.01em;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}
body.menu-open{overflow:hidden}
.container{width:min(1200px, calc(100% - 44px));margin:0 auto}
.narrow{width:min(900px, 100%)}
.section-en{
  margin:0 0 12px;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.section-heading{margin-bottom:28px}
.section-heading.centered{text-align:center}
.section-heading h2,
.page-hero h1,
.hero-copy h1,
.content-card h2,
.wide-message h2,
.legal-article h2,
.message-panel h2,
.activity-panel h2,
.plans-hero h1,
.faq-hero h1,
.company-hero h1,
.legal-hero h1,
.privacy-hero h1{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  line-height:1.18;
  letter-spacing:.02em;
  margin:0 0 14px;
}
p{margin:0 0 16px}
ul{margin:0;padding-left:1.2em}
li{margin:0 0 8px}
.pickup-banner{
  display:block;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
}

.pickup-banner img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.pickup-banner-pc{
  aspect-ratio:1 / 1;
}

.pickup-banner-sp{
  aspect-ratio:16 / 7;
}



/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4em;
  min-height:50px;
  padding:0 20px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  transition:.22s ease;
  white-space:nowrap;
  border:1px solid transparent;
}
.btn.small{min-height:42px;padding:0 16px;font-size:13px}
.btn:hover{transform:translateY(-1px)}
.btn-gold{
  background:linear-gradient(135deg,var(--gold) 0%, var(--gold-strong) 100%);
  color:#17130a;
  border-color:rgba(255,255,255,.18);
  box-shadow:0 12px 32px rgba(215,181,109,.2);
}
.btn-outline{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.18);
}
.btn-outline.light{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-color:rgba(255,255,255,.14);
}
.btn-outline.dark{
  color:#322817;
  border-color:#d1b06b;
  background:transparent;
}
.btn-ghost-dark{
  color:#17130a;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.84);
}
.button-row{display:flex;gap:14px;flex-wrap:wrap}
.button-row.center{justify-content:center}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(10,11,14,.82);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  min-height:82px;
}
.site-logo{width:176px;flex:0 0 auto}
.desktop-nav{display:flex;align-items:center;gap:24px}
.nav-link{
  font-size:14px;
  color:#ece5d7;
  opacity:.92;
}
.nav-link:hover,.nav-link.is-active{color:var(--gold)}
.header-actions{display:flex;align-items:center;gap:10px}
.desktop-only{display:flex}
.mobile-only{display:none}
.menu-toggle{
  width:50px;height:50px;display:grid;place-items:center;border:none;border-radius:50%;
  background:rgba(255,255,255,.06);cursor:pointer;flex:0 0 auto;
}
.menu-toggle span{
  display:block;width:20px;height:2px;background:#fff;border-radius:2px;margin:2.5px 0;
}
.menu-panel{
  position:fixed;inset:82px 0 auto 0;
  opacity:0;pointer-events:none;transform:translateY(-14px);
  transition:.28s ease;
  background:rgba(9,10,13,.98);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.menu-panel.is-open{opacity:1;pointer-events:auto;transform:none}
.menu-panel__inner{padding:28px 0 34px}
.menu-panel__head{
  display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:26px;
}
.menu-panel__head h2{
  margin:0;font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;font-size:32px;line-height:1.15;
}
.menu-actions{display:flex;gap:10px;flex-wrap:wrap}
.menu-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px}
.menu-links{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;
}
.menu-links a{
  display:flex;align-items:center;min-height:68px;padding:0 18px;border-radius:18px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);font-weight:500;
}
.menu-banners{display:grid;gap:12px}
.menu-banner{display:block;border-radius:20px;overflow:hidden;border:1px solid rgba(255,255,255,.08)}

/* Hero */
.hero{
  position:relative;min-height:88vh;display:flex;align-items:flex-end;overflow:hidden;
}
.hero-slides,.hero-slide,.hero-overlay{position:absolute;inset:0}
.hero-slide{
  opacity:0;transition:opacity 0.5s ease;background-size:cover;background-position:center;
}
.hero-slide.is-active{opacity:1}
.hero-overlay{
  background:
    linear-gradient(90deg, rgba(8,9,11,.84) 0%, rgba(8,9,11,.5) 48%, rgba(8,9,11,.78) 100%);
}
.hero-inner{
  position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1fr) 340px;
  gap:28px;align-items:end;padding:110px 0 96px;
}
.hero-copy{max-width:640px}
.hero-copy h1{font-size:clamp(50px,8vw,104px);margin-bottom:18px}
.hero-copy .lead{font-size:18px;color:#f0e8d9;max-width:520px;margin-bottom:26px}
.hero-side-box{
  align-self:end;background:rgba(255,255,255,.08);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.12);border-radius:24px;padding:18px;box-shadow:var(--shadow);
}
.hero-side-box article{display:grid;grid-template-columns:92px 1fr;gap:14px;align-items:start}
.hero-side-box h2{font-size:22px;margin-top:6px}
.hero-side-box span{display:inline-block;color:var(--gold);font-size:11px;font-weight:700;letter-spacing:.16em}
.hero-side-box p{font-size:13px;color:#e7dece;margin-bottom:10px}
.hero-side-box a{font-size:13px;color:var(--gold)}
.hero-mobile-banner{display:none}

/* ticker */
.ticker{
  position:relative;z-index:3;
  overflow:hidden;background:#0f1115;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);
}
.ticker-track{
  display:flex;gap:38px;align-items:center;min-width:max-content;padding:13px 0;
  animation:ticker-move 26s linear infinite;
}
.ticker-track span{
  font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);white-space:nowrap;
}
@keyframes ticker-move{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* Generic blocks */
main{display:block}
.cta-block.cta-wide h2{
  font-size:clamp(34px,4vw,56px);
}

.cta-block.cta-wide p{
  max-width:760px;
  margin:0 auto;
}
.shared-flow .flow-section,
.footer-panels,
.page-hero,
.activity-tabs-block,
.message-tabs-block,
.plans-strip,
.join-flow-block,
.notice-box,
.faq-block,
.company-card,
.legal-article,
.privacy-article{
  position:relative;
}
.bg-image{
  background-image:linear-gradient(180deg, rgba(11,12,15,.38), rgba(11,12,15,.48)), var(--bg);
  background-size:cover;
  background-position:center;
}

.wide-message{
  padding:84px 0;
}
.wide-message .message-inner{
  padding:72px 48px;border-radius:34px;border:1px solid rgba(255,255,255,.09);box-shadow:var(--shadow);text-align:center;
}
.wide-message h2{font-size:clamp(34px,4vw,56px)}
.wide-message p{max-width:760px;margin:0 auto;color:#eee4d3}

.section-card{
  padding:32px;border-radius:34px;border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow);
}
.section-card h2{font-size:clamp(28px,4vw,48px)}
.section-card p{max-width:620px}
.section-card.left{padding:54px 48px}
.section-card.center{text-align:center;padding:64px 48px}
.section-card.light-surface{
  background:#f7f3ec;color:#171717;border-color:#e8dece;
}
.section-card.light-surface .section-en{color:#bb9348}
.section-card.light-surface p{color:#5f5547}
.section-card.dark-surface{
  background:linear-gradient(180deg,rgba(16,17,21,.82),rgba(16,17,21,.88)), var(--bg);
}
.section-card .button-row{margin-top:22px}

.top-sections{padding:42px 0 24px;background:linear-gradient(180deg,#0b0c0f 0%, #0f1013 100%)}
.top-stack{display:grid;gap:22px}

.preview-grid{
  display:grid;grid-template-columns:1fr 420px;gap:22px;align-items:stretch;
}
.preview-visual{
  min-height:290px;border-radius:34px;overflow:hidden;border:1px solid rgba(255,255,255,.08);
  background-image:linear-gradient(180deg, rgba(17,18,21,.18), rgba(17,18,21,.54)), url('../img/wide-plans.svg');
  background-size:cover;background-position:center;box-shadow:var(--shadow);
}
.preview-visual::after{
  content:"";display:block;height:100%;
}
.plans-preview-copy{padding:46px 42px}
.plans-preview-copy h3{
  margin:0 0 18px;font-family:'Noto Serif JP',serif;font-size:34px;line-height:1.2;
}
.plans-preview-list{display:grid;gap:14px;margin:0 0 24px;padding:0;list-style:none}
.plans-preview-list li{
  display:grid;grid-template-columns:84px 1fr;gap:14px;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.08);
}
.plans-preview-list strong{font-size:15px;color:#fff}
.plans-preview-list span{display:block;color:#cfc6b6;font-size:14px}

/* Page hero */
.page-hero{
  padding:130px 0 86px;
  background-size:cover;background-position:center;
}
.page-hero::before{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(10,11,14,.8), rgba(10,11,14,.68));
}
.page-hero .container{position:relative;z-index:1}
.page-hero.center .container{text-align:center}
.page-hero h1{font-size:clamp(40px,5vw,70px);max-width:12ch}
.page-hero.center h1{margin-left:auto;margin-right:auto}
.page-hero p{max-width:720px;color:#efe5d5}
.page-hero.center p{margin-left:auto;margin-right:auto}

/* Page body sections */
.page-section{
  padding:34px 0;
  background:var(--paper);
  color:var(--ink);
}
.page-section.alt{background:var(--paper-soft)}
.page-section.dark-band{background:#101217;color:var(--text)}
.page-section .section-en{color:#b88d45}
.page-section.dark-band .section-en{color:var(--gold)}
.page-section.dark-band p{color:#d7ccbc}
.page-section.dark-band h2,.page-section.dark-band h3{color:#f6efe1}

.about-name,
.activity-intro,
.for-whom,
.page-cta,
.notice-box,
.company-card,
.legal-article,
.privacy-article{
  border-radius:34px;box-shadow:0 16px 40px rgba(13,13,13,.08);overflow:hidden;
}

.media-card{
  display:grid;grid-template-columns:minmax(0,1fr) 1fr;min-height:360px;
  background:#fff;border:1px solid var(--line-dark);
}
.media-card.reverse{grid-template-columns:1fr minmax(0,1fr)}
.media-card .media-bg{
  min-height:100%;
  background-size:cover;background-position:center;
}
.media-card .media-copy{
  padding:44px 40px;
  display:flex;flex-direction:column;justify-content:center;
}
.media-card .media-copy h2{font-size:clamp(28px,3vw,44px)}
.media-card .media-copy p{color:#595245}

/* Tabs blocks */
.message-tabs-block,
.activity-tabs-block{
  border-radius:34px;overflow:hidden;border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow);
}
.message-tabs-block{
  background-image:linear-gradient(180deg, rgba(9,10,13,.64), rgba(9,10,13,.72)), url('../img/message-mission.svg');
  background-size:cover;background-position:center;
  padding:64px 40px;
  text-align:center;
}
.activity-tabs-block{
  background:#fff;border-color:var(--line-dark);
}
.tabs-nav{
  display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:28px;
}
.tab-button{
  appearance:none;border:none;border-radius:999px;padding:11px 18px;background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.74);border:1px solid rgba(255,255,255,.12);cursor:pointer;font-weight:700;
}
.message-tabs-block .tab-button.is-active{background:linear-gradient(135deg, rgba(215,181,109,.18), rgba(215,181,109,.08));color:#fff;border-color:rgba(215,181,109,.45)}
.activity-tabs-block .tab-button{
  background:#faf6ef;color:#6b5f4c;border-color:#e9decb;
}
.activity-tabs-block .tab-button.is-active{background:#17181d;color:var(--gold);border-color:#17181d}
.tab-panel{display:none}
.tab-panel.is-active{display:block}
.message-panel{
  max-width:840px;margin:0 auto;
}
.message-panel h2{font-size:clamp(30px,4vw,52px);color:#fff}
.message-panel p{max-width:720px;margin:0 auto;color:#ece1cf}
.activity-panel{
  display:grid;grid-template-columns:1fr minmax(320px, 42%);gap:0;align-items:stretch;
}
.activity-panel .activity-copy{padding:44px 42px}
.activity-panel .activity-copy h3{
  margin:0 0 14px;font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;font-size:clamp(28px,3vw,42px);line-height:1.18;color:#171717;
}
.activity-panel .activity-copy p{color:#5c5447}
.activity-panel .activity-image{
  min-height:360px;background-size:cover;background-position:center;
}

/* plans page */
.plans-wrap{padding:40px 0 26px;background:var(--paper);color:var(--ink)}
.plan-scroller{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch;
}
.plan-card{
  background:#fff;border:1px solid var(--line-dark);border-radius:28px;padding:26px;box-shadow:0 18px 40px rgba(14,14,14,.06);
  display:flex;flex-direction:column;min-height:100%;
}
.plan-card.featured{
  background:linear-gradient(180deg,#17181d 0%, #101114 100%);
  color:#fff;border-color:#25272f;
}
.plan-badge{
  display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border-radius:999px;
  font-size:11px;font-weight:700;letter-spacing:.15em;color:var(--gold);
  background:rgba(215,181,109,.14);margin-bottom:14px;
}
.plan-name{
  margin:0 0 10px;font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;font-size:34px;line-height:1.18;
}
.plan-price{font-size:38px;font-weight:700;line-height:1.08;margin:0 0 10px}
.plan-price span{font-size:16px;font-weight:600}
.plan-price-sub{font-size:14px;opacity:.76;margin:0 0 18px}
.plan-copy{font-size:14px;color:#5c5549;margin-bottom:16px}
.plan-card.featured .plan-copy,
.plan-card.featured li,
.plan-card.featured .plan-note{color:#d8d0c2}
.plan-list{margin:0 0 18px;padding-left:1.1em}
.plan-note{font-size:13px;color:#756b5b;margin-top:auto;margin-bottom:18px}
.plans-subcopy{
  text-align:center;max-width:760px;margin:28px auto 0;color:#655c4e;
}
.plans-subcopy h2{font-size:34px;color:#161616}
.join-flow-block{
  padding:40px 42px;border-radius:34px;border:1px solid var(--line-dark);background:#fff;box-shadow:0 16px 40px rgba(14,14,14,.06);
}
.join-flow-block .flow-columns{
  display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:24px;
}
.flow-card{
  background:#faf6ef;border:1px solid #ece2d4;border-radius:24px;padding:24px;
}
.flow-card h3{margin:0 0 12px;font-family:'Noto Serif JP',serif;font-size:26px}
.flow-card ol{margin:0;padding-left:1.2em}
.flow-card li{margin:0 0 10px}
.notice-box{
  background:#fff;border:1px solid var(--line-dark);padding:30px 32px;
}
.notice-box h2{font-size:30px;margin-bottom:10px}
.notice-box p{color:#5f5649}

.faq-layout{
  background:#fff;border:1px solid var(--line-dark);border-radius:34px;padding:34px 32px;box-shadow:0 14px 36px rgba(14,14,14,.05);
}
.faq-layout details{
  border-bottom:1px solid #ece3d5;
  padding:18px 0;
}
.faq-layout details:last-of-type{border-bottom:none}
.faq-layout summary{
  list-style:none;cursor:pointer;font-weight:700;padding-right:28px;position:relative;
}
.faq-layout summary::after{
  content:"＋";position:absolute;right:0;top:0;color:#9d7c3c;font-weight:700;
}
.faq-layout details[open] summary::after{content:"－"}
.faq-layout p{color:#5d5548;margin-top:14px}
.inline-cta{
  margin-top:28px;padding-top:8px
}

/* shared footer sections */
.shared-section{padding:22px 0}
.shared-flow{
  background:linear-gradient(180deg,#0e1015 0%, #0b0c0e 100%);
}
.flow-section{
  padding:44px;border-radius:34px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.02);box-shadow:var(--shadow);
}
.phone-steps{
  display:flex;justify-content:center;gap:44px;align-items:flex-start;flex-wrap:wrap;
}
.phone-step{text-align:center;max-width:260px}
.phone-step img{width:180px;margin:0 auto 10px}
.phone-step h3{
  margin:0 0 6px;font-size:14px;letter-spacing:.18em;color:var(--gold);text-transform:uppercase;
}
.phone-step p{color:#ede3d1}
.flow-note{text-align:center;margin-top:10px}
.flow-note p{margin:0 0 6px;color:#8B8B8BEAEAEA}
.shared-faq{
  background:#ffffff;
  color:#141414;
  padding:34px 0 42px;
}

.shared-faq .section-en{
  color:#b88d45;
}

.shared-faq h2{
  color:#141414;
}

.mini-faq-list{
  display:block;
  max-width:920px;
  margin:0 auto;
}

.mini-faq-list details{
  background:none;
  border:none;
  border-bottom:1px solid #ded6c9;
  border-radius:0;
  padding:18px 0;
}

.mini-faq-list details:last-of-type{
  border-bottom:none;
}

.mini-faq-list summary{
  list-style:none;
  cursor:pointer;
  font-weight:700;
  color:#1a1a1a;
  padding-right:28px;
  position:relative;
}

.mini-faq-list summary::after{
  content:"＋";
  position:absolute;
  right:0;
  top:0;
  color:#9d7c3c;
  font-weight:700;
}

.mini-faq-list details[open] summary::after{
  content:"－";
}

.mini-faq-list p{
  margin-top:14px;
  color:#5d5548;
}

.shared-faq .center-actions{
  text-align:center;
  margin-top:24px;
}
.shared-faq .btn{
  background:#141414;
  color:#fff;
  border-color:#141414;
}

.shared-faq .btn:hover{
  background:#222;
  border-color:#222;
}
@media (max-width: 768px){
  .mini-faq-list{
    padding:8px 18px;
    border-radius:22px;
  }

  .mini-faq-list details{
    padding:16px 0;
  }

  .mini-faq-list summary{
    font-size:15px;
    line-height:1.6;
  }
}
.center-actions{text-align:center;margin-top:24px}

.cta-wide{
  width:100%;
  border-radius:0;
  border-left:none;
  border-right:none;
  padding:88px 24px;
  text-align:center;
}

.cta-wide h2{
  font-size:clamp(34px,4vw,56px);
}

.cta-wide p{
  max-width:760px;
  margin:0 auto;
}
.cta-block{
  padding:58px 44px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  text-align:center;
}
.shared-cta{
  padding:0;
  overflow:hidden;
}

.shared-cta .cta-wide{
  text-align:center;
}

.shared-cta .cta-wide .section-en{
  color:var(--gold);
  margin:0 0 10px;
  text-align:center;
  max-width:none;
}

.shared-cta .cta-wide h2{
  margin:0 0 14px;
  line-height:1.15;
  font-size:clamp(34px,4vw,56px);
  text-align:center;
}

.shared-cta .cta-wide > p:not(.section-en){
  max-width:760px;
  margin:0 auto 24px;
  line-height:1.8;
  color:#efe4d3;
  text-align:center;
}

.shared-cta .button-row{
  justify-content:center;
}

@media (min-width: 768px){
  .shared-cta .cta-wide{
    padding:84px 48px;
  }
}
.cta-block h2{font-size:clamp(34px,4vw,56px)}
.cta-block p{max-width:760px;margin:0 auto;color:#efe4d3}

/* footer */
.site-footer{
  padding:28px 0 50px;background:#090a0d;border-top:1px solid rgba(255,255,255,.05);
}
.footer-grid{
  display:grid;grid-template-columns:1.1fr .9fr .9fr;gap:24px;align-items:start;
}
.footer-logo{width:140px}
.footer-logo img{
  width: 40%;
  height: auto;
  display: block;
  margin-bottom: 16px
}
.footer-disclaimer{font-size:13px;color:#a79f90}
.footer-banners{display:grid;gap:12px}
.footer-banners a{display:block;border-radius:20px;overflow:hidden;border:none}
.footer-banners a img{
  display:block;
  width:80%;
  height:auto;
  margin:0 auto;
}
.footer-links-wrap{display:grid;gap:18px}
.footer-links{display:grid;gap:8px}
.footer-links a{color:#f0e8d8}
.copyright{font-size:12px;color:#918779}

/* company/legal/privacy */
.company-card,
.legal-article,
.privacy-article{
  background:#fff;border:1px solid var(--line-dark);padding:34px 32px;
}
.definition-list{margin:0}
.definition-row{
  display:grid;grid-template-columns:180px 1fr;gap:20px;padding:16px 0;border-bottom:1px solid #eee4d6;
}
.definition-row:last-child{border-bottom:none}
.definition-row dt{font-weight:700;color:#463e31}
.definition-row dd{margin:0;color:#544c40}
.legal-copy h2,.privacy-copy h2{font-size:28px;margin-top:18px}
.privacy-copy section{padding:0 0 18px;border-bottom:1px solid #eee4d6;margin-bottom:18px}
.privacy-copy section:last-child{border-bottom:none}
.related-links{display:grid;gap:10px;margin-top:16px}
.related-links a{color:#9d7c3c}

/* login */
.login-page{
  min-height:100vh;
  background:
    linear-gradient(180deg, rgba(8,9,11,.72), rgba(8,9,11,.82)),
    url('../img/login-bg.svg') center/cover no-repeat;
  display:grid;place-items:center;
}
.login-shell{
  width:min(100% - 32px, 520px);
}
.login-card{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.42);
  border-radius:34px;padding:34px 30px;box-shadow:var(--shadow);
}
.login-card .login-logo{width:180px;margin:0 auto 22px}
.login-card label{display:block;margin-bottom:16px}
.login-card span{display:block;font-size:13px;font-weight:700;color:#3b352c;margin-bottom:8px}
.login-card input{
  width:100%;min-height:54px;padding:0 16px;border-radius:16px;border:1px solid #ddd0bc;background:#faf7f1;
}
.login-card .btn{width:100%;margin-top:8px}
.login-copy{margin-top:16px;font-size:13px;color:#655d4f}
.login-copy a{color:#9d7c3c;text-decoration:underline}

/* Utility */
.mt-0{margin-top:0}
.no-header body{}

@media (max-width: 1100px){
  .desktop-nav,.desktop-only{display:none}
  .mobile-only{display:flex}
  .menu-panel{inset:82px 0 0 0;overflow:auto}
  .menu-grid{grid-template-columns:1fr}
  .menu-links{grid-template-columns:1fr 1fr}
  .hero-inner{grid-template-columns:1fr;padding:102px 0 76px}
  .hero-side-box{display:none}
  .hero-mobile-banner{display:block;margin-top:18px}
  .preview-grid{grid-template-columns:1fr}
  .activity-panel{grid-template-columns:1fr}
  .activity-panel .activity-image{min-height:280px;order:-1}
  .footer-grid{grid-template-columns:1fr 1fr}
  .mini-faq-list{grid-template-columns:1fr}
}
@media (max-width: 768px){
  .footer-logo{width:110px}
  .footer-logo img{
	width: 30%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer{
	font-size:13px;
    text-align:center;
	color:#a79f90
	}
  .cta-wide{
    padding:110px 48px;
  }
  .container{width:min(100% - 28px, 100%)}
  .site-logo{width:156px}
  .menu-panel__head{display:block}
  .menu-actions{margin-top:16px}
  .menu-links{grid-template-columns:1fr}
  .hero{min-height:94vh}
  .hero-copy h1{font-size:56px}
  .hero-copy .lead{font-size:16px}
  .button-row{flex-direction:column;align-items:flex-start}
  .hero-mobile-banner .menu-banner{border-radius:22px}
  .section-card.left,.section-card.center,.cta-block,
  .cta-block.cta-wide{
    padding:110px 48px;
  }
  .flow-section,.media-card .media-copy,.join-flow-block,.company-card,.legal-article,.privacy-article{padding:28px 22px}
  .wide-message .message-inner{padding:50px 24px}
  .page-hero{padding:108px 0 64px}
  .page-hero h1{font-size:44px}
  .plan-scroller{
    display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:8px;
    margin:0 calc(-1 * max(0px, (100vw - min(1200px, calc(100% - 44px))) / 2));
    padding-left:22px;padding-right:22px;
  }
  .plan-scroller::-webkit-scrollbar{height:8px}
  .plan-scroller::-webkit-scrollbar-thumb{background:#d2c2a0;border-radius:999px}
  .plan-card{
    min-width:86%;scroll-snap-align:start;
  }
  .join-flow-block .flow-columns{grid-template-columns:1fr}
  .definition-row{grid-template-columns:1fr;gap:8px}
  .footer-grid{grid-template-columns:1fr}
  .phone-step img{width:156px}
  .hero-mobile-banner{display:block}
}
@media (max-width: 768px){
  .cta-inline-buttons{
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:10px;
  }

  .cta-inline-buttons .btn{
    min-width:0;
    padding:0 14px;
    font-size:13px;
  }
}
.line-link-text a{
  color:#d7b56d;
  text-decoration:underline;
  text-underline-offset:3px;
}

.line-link-text a:hover{
  opacity:.85;
}.space{
  display:inline-block;
  width:1.5em;
}


/* === TOP PAGE CSS REVISION === */

/* Header / menu */
@media (min-width: 1101px){
  .header-inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:24px;
  }

  .desktop-nav{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:26px;
    width:auto;
    margin-left:0;
    padding-right:12px;
  }

  .menu-panel__head .menu-actions-mobile{
    display:none;
  }
}

@media (max-width: 1100px){
  .menu-panel__head .menu-actions-mobile{
    display:flex;
  }
}

.menu-toggle{
  width:54px;
  height:54px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  transition:background .24s ease,border-color .24s ease,transform .24s ease;
}

.menu-toggle:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
}

.menu-toggle span{
  width:22px;
  height:2.5px;
  margin:3px 0;
  transition:transform .24s ease, opacity .24s ease, background .24s ease;
}

.menu-toggle.is-active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.menu-panel{
  z-index:58;
}

/* Hero */
.hero-copy .section-en{
  margin:0 0 6px;
}

.hero-copy h1{
  font-size:clamp(44px,7vw,88px);
  line-height:.92;
  letter-spacing:.005em;
  margin:0 0 12px;
}

.hero-copy .lead{
  margin:0 0 22px;
  font-size:18px;
  line-height:1.62;
}

.hero-side-box .section-en{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
}

.hero-side-box .section-en::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#72db7a;
  box-shadow:0 0 0 4px rgba(114,219,122,.16);
  flex:0 0 auto;
}

/* Top section heading rhythm */
.top-sections .section-en,
.shared-cta .cta-wide .section-en{
  margin:0 0 10px;
}

.top-sections .wide-message h2,
.top-sections .section-card h2,
.top-sections .plans-preview-copy h3,
.shared-cta .cta-wide h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(28px,3vw,35px);
  line-height:1.24;
  letter-spacing:.01em;
  margin:0 0 14px;
}

.top-sections .wide-message p,
.top-sections .section-card p,
.top-sections .plans-preview-copy > p,
.shared-cta .cta-wide > p:not(.section-en){
  line-height:1.82;
}

.top-sections .section-card.left,
.top-sections .plans-preview-copy{
  padding:54px 48px;
}

.top-sections .section-card.center{
  padding:72px 48px;
}

/* Vision full-bleed */
.top-sections .wide-message{
  padding:0;
}

.top-sections .wide-message .message-inner{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:84px 48px;
  border:none;
  border-radius:0;
  box-shadow:none;
}

.top-sections .wide-message p{
  max-width:760px;
}

/* Membership preview typography */
.plans-preview-copy h3{
  font-size:clamp(30px,3.4vw,42px);
  margin:0 0 14px;
}

.plans-preview-copy .section-en{
  color:var(--gold);
}

.plans-preview-list{
  margin:18px 0 24px;
}

.plans-preview-list li{
  padding-bottom:16px;
}

/* Flow / FAQ heading size */
.shared-flow .section-heading h2,
.shared-faq .section-heading h2{
  font-size:clamp(32px,3vw,40px);
  line-height:1.24;
}

.flow-note p{
  color:#d1c6b5;
}

/* FAQ should remain plain white list */
.shared-faq .mini-faq-list{
  padding:0 !important;
  border-radius:0 !important;
}

.shared-faq .mini-faq-list details{
  padding:18px 0;
}

/* CTA */
.shared-cta .cta-wide h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
}

@media (max-width: 1100px){
  .desktop-nav{
    display:none;
  }
}

@media (max-width: 768px){
  .hero-copy h1{
    font-size:48px;
    margin-bottom:10px;
  }

  .hero-copy .lead{
    font-size:15px;
    line-height:1.55;
    margin-bottom:20px;
  }

  .top-sections .wide-message .message-inner,
  .top-sections .section-card.left,
  .top-sections .section-card.center,
  .top-sections .plans-preview-copy,
  .shared-cta .cta-wide{
    padding:58px 24px;
  }

  .top-sections .wide-message h2,
  .top-sections .section-card h2,
  .top-sections .plans-preview-copy h3,
  .shared-cta .cta-wide h2,
  .shared-flow .section-heading h2,
  .shared-faq .section-heading h2{
    font-size:30px;
  }

  .cta-inline-buttons{
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:10px;
  }

  .cta-inline-buttons .btn{
    flex:1 1 0;
    min-width:0;
    padding:0 10px;
    font-size:12px;
  }

  .shared-faq .mini-faq-list{
    max-width:none;
  }

  .shared-faq .mini-faq-list details{
    padding:16px 0;
  }

  .shared-faq .mini-faq-list summary{
    font-size:15px;
    line-height:1.6;
  }
}

/* === ABOUT PAGE CSS REVISION === */
.about-hero .section-en{
  color:var(--gold);
}

.about-hero h1{
  font-size:clamp(34px,4.8vw,56px);
  line-height:1.2;
  margin-bottom:16px;
}

.about-name-section,
.about-do-section,
.about-for-whom-section{
  background:#fff;
}

.about-flat-card,
.about-activity-tabs,
.about-message-tabs{
  border-radius:0;
  border:none;
  box-shadow:none;
}

.about-flat-card{
  background:#fff;
  min-height:420px;
}

.about-flat-card .media-copy{
  padding:52px 48px;
  align-items:flex-start;
  text-align:left;
}

.about-flat-card .media-copy .section-en{
  color:var(--gold);
  margin-bottom:10px;
}

.about-flat-card .media-copy h2{
  font-size:clamp(28px,3vw,40px);
  line-height:1.22;
  margin-bottom:12px;
}

.about-flat-card .media-copy p{
  line-height:1.72;
  color:#5a5347;
}

.about-name .media-copy h2{
  margin-bottom:10px;
}

.about-message-section{
  padding:0;
}

.about-message-wrap,
.about-activity-wrap{
  width:100%;
}

.about-message-tabs{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:68px 0;
  background-image:linear-gradient(180deg, rgba(9,10,13,.66), rgba(9,10,13,.74)), var(--bg);
  background-size:cover;
  background-position:center;
}

.about-message-tabs .tabs-nav{
  margin-bottom:34px;
}

.about-message-tabs .tab-button{
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.76);
  border:1px solid rgba(255,255,255,.14);
}

.about-message-tabs .tab-button.is-active{
  background:linear-gradient(135deg, rgba(215,181,109,.18), rgba(215,181,109,.08));
  color:#fff;
  border-color:rgba(215,181,109,.45);
}

.about-message-tabs .message-panel{
  max-width:800px;
}

.about-message-tabs .message-panel .section-en{
  margin-bottom:10px;
}

.about-message-tabs .message-panel h2{
  font-size:clamp(28px,3.2vw,38px);
  line-height:1.24;
  margin-bottom:14px;
}

.about-message-tabs .message-panel p{
  max-width:760px;
  line-height:1.8;
}

.about-do-card .media-copy h2{
  font-size:clamp(28px,3vw,38px);
}

.about-activity-section{
  padding:0;
  background:#fff;
}

.about-activity-tabs{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#fff;
  padding:60px 0 0;
}

.about-activity-tabs .tabs-nav{
  margin-bottom:28px;
}

.about-activity-tabs .activity-panel{
  grid-template-columns:minmax(0,1fr) minmax(320px,42%);
  background:#fff;
}

.about-activity-tabs .activity-copy{
  padding:54px 48px;
}

.about-activity-tabs .activity-copy .section-en{
  color:var(--gold);
  margin-bottom:10px;
}

.about-activity-tabs .activity-copy h3{
  font-size:clamp(28px,3vw,38px);
  line-height:1.24;
  margin-bottom:12px;
}

.about-activity-tabs .activity-copy p{
  line-height:1.82;
}

.about-activity-tabs .activity-image{
  min-height:420px;
}

.about-for-whom-heading{
  max-width:900px;
  margin:0 auto 34px;
}

.about-for-whom-heading .section-en{
  color:var(--gold);
}

.about-for-whom-heading h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(28px,3.2vw,35px);
  line-height:1.24;
  margin:0 0 14px;
  color:#171717;
}

.about-for-whom-heading p{
  color:#5e564a;
  line-height:1.82;
}

.for-whom-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.for-whom-card{
  background:#fff;
  border:1px solid #eadfce;
  border-radius:24px;
  padding:26px 24px 24px;
  box-shadow:0 16px 38px rgba(16,15,13,.05);
}

.for-whom-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:0 12px;
  border-radius:999px;
  margin-bottom:16px;
  background:rgba(215,181,109,.14);
  color:#9f7d3b;
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
}

.for-whom-card h3{
  margin:0 0 10px;
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:22px;
  line-height:1.35;
  color:#191919;
}

.for-whom-card p{
  margin:0;
  color:#5e564a;
  line-height:1.78;
}

.about-join-section{
  padding:0;
  background:#fff;
}

.about-join-wide{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:84px 48px;
}

.about-join-wide .section-en{
  color:var(--gold);
  margin-bottom:10px;
}

.about-join-wide h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(30px,3.4vw,42px);
  line-height:1.24;
  margin:0 0 14px;
}

.about-join-wide > p:not(.section-en){
  max-width:760px;
  margin:0 auto 24px;
  color:#efe4d3;
  line-height:1.8;
}

@media (max-width: 1100px){
  .for-whom-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .about-activity-tabs .activity-panel{
    grid-template-columns:1fr;
  }

  .about-activity-tabs .activity-image{
    order:-1;
    min-height:320px;
  }
}

@media (max-width: 768px){
  .about-hero h1{
    font-size:34px;
  }

  .about-flat-card,
  .about-do-card{
    min-height:auto;
    grid-template-columns:1fr;
  }

  .about-flat-card .media-bg,
  .about-do-card .media-bg{
    min-height:260px;
    order:-1;
  }

  .about-flat-card .media-copy{
    padding:32px 24px;
  }

  .about-flat-card .media-copy h2,
  .about-message-tabs .message-panel h2,
  .about-do-card .media-copy h2,
  .about-activity-tabs .activity-copy h3,
  .about-for-whom-heading h2,
  .about-join-wide h2{
    font-size:29px;
  }

  .about-message-tabs{
    padding:54px 0;
  }

  .about-activity-tabs{
    padding-top:48px;
  }

  .about-activity-tabs .activity-copy{
    padding:32px 24px;
  }

  .for-whom-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .for-whom-card{
    padding:22px 20px;
  }

  .about-join-wide{
    padding:58px 24px;
  }
}
.shared-flow{
  background:#0a0b0e;
}

.shared-flow .flow-section{
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  padding:44px 0;
}

@media (max-width: 768px){
  .shared-flow .flow-section{
    padding:32px 0;
  }
}

/* === PLANS PAGE CSS REVISION === */
.page-plans .plans-hero .section-en{
  color:var(--gold);
}

.page-plans .plans-hero h1{
  font-size:clamp(34px,4.6vw,54px);
  line-height:1.22;
  margin-bottom:16px;
}

.page-plans .plans-hero p{
  max-width:760px;
}

.page-plans .plan-price-label{
  font-size:30px;
  line-height:1.15;
  letter-spacing:.02em;
}

.page-plans .plans-subcopy{
  max-width:760px;
  margin:30px auto 0;
  text-align:center;
}

.page-plans .plans-subcopy p{
  color:#655c4e;
  line-height:1.82;
}

.page-plans .join-flow-note{
  margin-top:24px;
  padding-top:18px;
}

.page-plans .join-flow-note p{
  margin:0 0 6px;
  font-size:13px;
  line-height:1.72;
  color:#6a6153;
}

.page-plans .page-plans-join-section{
  padding:0;
  background:#fff;
}

.page-plans .page-plans-join-wide{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:84px 48px;
  text-align:center;
}

.page-plans .page-plans-join-wide .section-en{
  color:var(--gold);
  margin:0 0 10px;
}

.page-plans .page-plans-join-wide h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(30px,3.4vw,42px);
  line-height:1.24;
  margin:0 0 14px;
}

.page-plans .page-plans-join-wide > p:not(.section-en){
  max-width:760px;
  margin:0 auto 24px;
  color:#efe4d3;
  line-height:1.8;
}

@media (max-width: 768px){
  .page-plans .plans-hero h1{
    font-size:32px;
  }

  .page-plans .plan-price-label{
    font-size:24px;
  }

  .page-plans .plans-subcopy{
    margin-top:24px;
  }

  .page-plans .page-plans-join-wide{
    padding:58px 24px;
  }

  .page-plans .page-plans-join-wide h2{
    font-size:29px;
  }

  .page-plans .join-flow-note{
    margin-top:20px;
    padding-top:16px;
  }

  .page-plans .join-flow-note p{
    font-size:12px;
  }
}


/* === FAQ PAGE CSS REVISION === */
.page-faq .faq-hero .section-en{
  color:var(--gold);
}

.page-faq .faq-hero h1{
  font-size:clamp(32px,4.3vw,50px);
  line-height:1.22;
  margin-bottom:16px;
}

.page-faq .faq-hero p{
  max-width:760px;
}

.page-faq .page-section{
  background:#fff;
}

.page-faq .page-section.alt{
  background:var(--paper-soft);
}

.page-faq .faq-layout{
  background:#fff;
  border:none;
  border-radius:0;
  box-shadow:none;
  padding:0;
}

.page-faq .faq-layout details{
  border-bottom:1px solid #ded6c9;
  padding:18px 0;
}

.page-faq .faq-layout details:last-of-type{
  border-bottom:none;
}

.page-faq .faq-layout summary{
  list-style:none;
  cursor:pointer;
  font-weight:700;
  color:#1a1a1a;
  padding-right:28px;
  position:relative;
}

.page-faq .faq-layout summary::after{
  content:"＋";
  position:absolute;
  right:0;
  top:0;
  color:#9d7c3c;
  font-weight:700;
}

.page-faq .faq-layout details[open] summary::after{
  content:"－";
}

.page-faq .faq-layout p{
  margin-top:14px;
  color:#5d5548;
  line-height:1.78;
}

.page-faq .faq-inline-contact{
  margin-top:28px;
  padding-top:16px;
  text-align:center;
}

.page-faq .faq-inline-contact p{
  color:#5d5548;
}

.page-faq .faq-inline-contact .button-row{
  justify-content:center;
}

.page-faq .faq-subtle-cta-section{
  padding-top:8px;
  padding-bottom:34px;
}

.page-faq .faq-subtle-cta{
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  text-align:center;
  padding:36px 0 10px;
}

.page-faq .faq-subtle-cta h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(26px,3vw,34px);
  line-height:1.28;
  margin:0 0 12px;
  color:#171717;
}

.page-faq .faq-subtle-cta p{
  max-width:720px;
  margin:0 auto 20px;
  color:#5f5649;
  line-height:1.8;
}

.page-faq .faq-subtle-cta .button-row{
  justify-content:center;
}

@media (max-width: 768px){
  .page-faq .faq-hero h1{
    font-size:30px;
  }

  .page-faq .faq-layout details{
    padding:16px 0;
  }

  .page-faq .faq-layout summary{
    font-size:15px;
    line-height:1.6;
  }

  .page-faq .faq-subtle-cta{
    padding:28px 0 6px;
  }

  .page-faq .faq-subtle-cta h2{
    font-size:26px;
  }

  .page-faq .faq-inline-contact{
    margin-top:24px;
  }
}
.page-login .login-backlink{
  margin-top:20px;
  margin-bottom:4px;
  display:flex;
  justify-content:center;
}

.page-login .login-backlink .btn{
  min-width:180px;
  justify-content:center;
}

@media (max-width: 768px){
  .page-login .login-backlink{
    margin-top:16px;
    margin-bottom:0;
  }

  .page-login .login-backlink .btn{
    min-width:160px;
  }
}
.page-company .company-hero .section-en{
  color:var(--gold);
}

.page-company .company-hero h1{
  font-size:clamp(32px,4.2vw,48px);
  line-height:1.22;
  margin-bottom:16px;
}

.page-company .company-hero p{
  max-width:760px;
}

.page-company .page-section{
  background:#fff;
}

.page-company .page-section.alt{
  background:var(--paper-soft);
}

.page-company .company-info-card,
.page-company .operation-policy-card{
  background:#fff;
  border:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
}

.page-company .company-info-card{
  padding:0;
}

.page-company .company-info-card .definition-row{
  padding:18px 0;
  border-bottom:1px solid #ded6c9;
}

.page-company .company-info-card .definition-row:last-child{
  border-bottom:none;
}

.page-company .operation-policy-card{
  padding:0;
}

.page-company .operation-policy-card .section-en{
  color:var(--gold);
  margin:0 0 8px;
}

.page-company .operation-policy-card h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(24px,2.6vw,32px);
  line-height:1.3;
  margin:0 0 10px;
  color:#171717;
}

.page-company .operation-policy-card p{
  font-size:14px;
  line-height:1.68;
  color:#5d5548;
  margin:0 0 14px;
}

.page-company .operation-policy-card .related-links{
  gap:8px;
  margin-top:10px;
}

.page-company .operation-policy-card .related-links a{
  color:#9d7c3c;
  font-size:14px;
  line-height:1.6;
}

@media (max-width: 768px){
  .page-company .company-hero h1{
    font-size:30px;
  }

  .page-company .company-info-card .definition-row{
    padding:16px 0;
  }

  .page-company .operation-policy-card h2{
    font-size:24px;
  }

  .page-company .operation-policy-card p,
  .page-company .operation-policy-card .related-links a{
    font-size:13px;
  }
}
.page-legal .legal-hero .section-en{
  color:var(--gold);
}

.page-legal .legal-hero h1{
  font-size:clamp(32px,4.2vw,48px);
  line-height:1.22;
  margin-bottom:16px;
}

.page-legal .legal-hero p{
  max-width:760px;
}

.page-legal .page-section{
  background:#fff;
}

.page-legal .page-section.alt{
  background:var(--paper-soft);
}

.page-legal .legal-info-card,
.page-legal .legal-note-card{
  background:#fff;
  border:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
}

.page-legal .legal-info-card{
  padding:0;
}

.page-legal .legal-info-card .definition-row{
  padding:18px 0;
  border-bottom:1px solid #ded6c9;
}

.page-legal .legal-info-card .definition-row:last-child{
  border-bottom:none;
}

.page-legal .legal-note-card{
  padding:0;
}

.page-legal .legal-note-card h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(22px,2.4vw,30px);
  line-height:1.3;
  margin:0 0 10px;
  color:#171717;
}

.page-legal .legal-note-card p{
  font-size:14px;
  line-height:1.66;
  color:#5d5548;
  margin:0;
}

@media (max-width: 768px){
  .page-legal .legal-hero h1{
    font-size:30px;
  }

  .page-legal .legal-info-card .definition-row{
    padding:16px 0;
  }

  .page-legal .legal-note-card h2{
    font-size:23px;
  }

  .page-legal .legal-note-card p{
    font-size:13px;
  }
}
.page-privacy .privacy-hero .section-en{
  color:var(--gold);
}

.page-privacy .privacy-hero h1{
  font-size:clamp(32px,4.2vw,48px);
  line-height:1.22;
  margin-bottom:16px;
}

.page-privacy .privacy-hero p{
  max-width:760px;
}

.page-privacy .page-section{
  background:#fff;
}

.page-privacy .privacy-flat-card{
  background:#fff;
  border:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  padding:0;
  font-family:'Noto Serif JP','凸版文久見出し明朝 StdN',serif;
}

.page-privacy .privacy-flat-card section{
  padding:18px 0;
  border-bottom:1px solid #ded6c9;
  margin:0;
}

.page-privacy .privacy-flat-card section:last-child{
  border-bottom:none;
}

.page-privacy .privacy-flat-card h2{
  font-family:'Noto Serif JP','凸版文久見出し明朝 StdN',serif;
  font-size:clamp(22px,2.4vw,30px);
  line-height:1.34;
  margin:0 0 10px;
  color:#171717;
}

.page-privacy .privacy-flat-card p,
.page-privacy .privacy-flat-card li,
.page-privacy .privacy-flat-card ul{
  font-family:'Noto Serif JP','凸版文久見出し明朝 StdN',serif;
  color:#5d5548;
  line-height:1.8;
}

.page-privacy .privacy-flat-card p{
  margin:0 0 12px;
}

.page-privacy .privacy-flat-card ul{
  margin:0;
  padding-left:1.2em;
}

.page-privacy .privacy-flat-card li{
  margin:0 0 8px;
}

@media (max-width: 768px){
  .page-privacy .privacy-hero h1{
    font-size:30px;
  }

  .page-privacy .privacy-flat-card section{
    padding:16px 0;
  }

  .page-privacy .privacy-flat-card h2{
    font-size:23px;
  }

  .page-privacy .privacy-flat-card p,
  .page-privacy .privacy-flat-card li{
    font-size:14px;
  }
}
.page-home .wide-message .section-en{
  color:var(--gold);
  display:block;
  width:fit-content;
  max-width:none;
  margin:0 auto 10px;
  text-align:center;
}
.page-home .top-sections{
  padding-top:0;
}
.page-home .top-stack{
  gap:14px;
}

.page-home .top-sections{
  padding-bottom:8px;
}

.page-home .shared-flow{
  padding-top:8px;
}
.page-home .section-card.center .section-en,
.page-home .section-card.center p,
.page-home .section-card.center .button-row{
  text-align:center;
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
}
.page-home .top-about-wide,
.page-home .top-open-wide,
.page-home .top-offer-wide{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  border:none;
  border-radius:0;
  box-shadow:none;
}

.page-home .top-about-wide,
.page-home .top-open-wide,
.page-home .top-offer-wide{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  border:none;
  border-radius:0;
  box-shadow:none;

  padding-top:84px;
  padding-bottom:84px;
  padding-left:max(22px, calc((100vw - 1200px) / 2 + 22px));
  padding-right:max(22px, calc((100vw - 1200px) / 2 + 22px));
}
.page-home .top-sections .section-card.left.top-about-wide,
.page-home .top-sections .section-card.left.top-offer-wide,
.page-home .top-sections .section-card.center.top-open-wide{
  padding-top:84px;
  padding-bottom:84px;
  padding-left:max(22px, calc((100vw - 1200px) / 2 + 22px));
  padding-right:max(22px, calc((100vw - 1200px) / 2 + 22px));
}

.page-home .top-about-wide,
.page-home .top-offer-wide{
  text-align:left;
}

.page-home .top-open-wide{
  text-align:center;
}

.page-home .top-open-wide .section-en,
.page-home .top-open-wide h2,
.page-home .top-open-wide p,
.page-home .top-open-wide .button-row{
  text-align:center;
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
}

.page-home .top-about-wide .section-en,
.page-home .top-open-wide .section-en,
.page-home .top-offer-wide .section-en{
  color:var(--gold);
}

.page-home .top-about-wide h2,
.page-home .top-open-wide h2,
.page-home .top-offer-wide h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(28px,2.6vw,30px);
  line-height:1.24;
  margin:0 0 14px;
}

.page-home .top-about-wide p,
.page-home .top-open-wide p,
.page-home .top-offer-wide p{
  line-height:1.82;
}

@media (max-width: 768px){
  .page-home .top-about-wide,
  .page-home .top-open-wide,
  .page-home .top-offer-wide{
    padding:58px 24px;
  }

  .page-home .top-about-wide h2,
  .page-home .top-open-wide h2,
  .page-home .top-offer-wide h2{
    font-size:30px;
  }
}
.page-home .preview-visual{
  border-radius:0;
  border:none;
  box-shadow:none;
  overflow:visible;
}
.page-home .top-sections .wide-message .message-inner{
  padding:300px 48px;
}

@media (max-width: 768px){
  .page-home .top-sections .wide-message .message-inner{
    padding:72px 24px;
  }
}
.page-home .top-stack{
  gap:0;
}
.page-home .plans-preview-copy{
  border:none;
  border-radius:0;
  box-shadow:none;
}
.page-about .about-hero h1{
  font-size:clamp(28px,3.6vw,42px);
  line-height:1.12;
  max-width:none;
}
.page-about .about-flat-card .media-copy .section-en{
  margin:0 0 4px;
}

.page-about .about-flat-card .media-copy h2{
  margin:0 0 12px;
}
.page-about .about-name .media-copy h2,
.page-about .about-do-card .media-copy h2{
  font-size:clamp(24px,2.5vw,34px);
  line-height:1.2;
}
.page-about .about-name .media-copy h2,
.page-about .about-do-card .media-copy h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
}
.page-about .about-join-wide h2{
  color:#fff;
}
.page-home #join{
  scroll-margin-top:110px;
}
.page-about .about-hero{
  padding-top:170px;
  padding-bottom:120px;
}
.page-plans .plans-hero h1{
  font-size:clamp(28px,3.6vw,42px);
  line-height:1.12;
  max-width:none;
  margin-left:auto;
  margin-right:auto;
}

.page-plans .plans-hero .section-en{
  color:var(--gold);
  display:block;
  width:fit-content;
  max-width:none;
  margin:0 auto 14px;
  text-align:center;
}

.page-plans .plans-hero p{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.page-plans .page-plans-join-wide h2{
  color:#fff;
}
.page-faq .faq-inline-contact .btn{
  background:#141414;
  color:#fff;
  border-color:#141414;
}

.page-faq .faq-inline-contact .btn:hover{
  background:#222;
  border-color:#222;
}
.page-login .login-copy p{
  margin:0 0 6px;
  line-height:1.5;
}

.page-login .login-copy p:last-child{
  margin-bottom:0;
}
.page-company .company-hero,
.page-legal .legal-hero,
.page-privacy .privacy-hero{
  padding-top:108px;
  padding-bottom:58px;
}

.page-company .company-hero h1,
.page-legal .legal-hero h1,
.page-privacy .privacy-hero h1{
  font-size:clamp(28px,3.2vw,40px);
  line-height:1.12;
  max-width:none;
  margin:0 auto 12px;
}

.page-company .company-hero p,
.page-legal .legal-hero p,
.page-privacy .privacy-hero p{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

@media (min-width: 769px){
  .page-company .company-hero h1,
  .page-legal .legal-hero h1,
  .page-privacy .privacy-hero h1{
    white-space:nowrap;
  }
}

@media (max-width: 768px){
  .page-company .company-hero,
  .page-legal .legal-hero,
  .page-privacy .privacy-hero{
    padding-top:96px;
    padding-bottom:48px;
  }

  .page-company .company-hero h1,
  .page-legal .legal-hero h1,
  .page-privacy .privacy-hero h1{
    font-size:30px;
    white-space:normal;
  }
}

.page-company .company-info-card,
.page-company .operation-policy-card,
.page-legal .legal-info-card,
.page-legal .legal-note-card,
.page-privacy .privacy-flat-card{
  background:transparent;
}
.page-legal .legal-note-card h2{
  font-size:clamp(18px,2vw,24px);
  line-height:1.25;
}
.page-privacy .privacy-flat-card h2{
  font-size:22px;
  line-height:1.3;
}
.page-privacy .privacy-update-note{
  text-align:center;
  margin-top:28px;
  color:#5d5548;
  font-size:13px;
  line-height:1.7;
}

.page-privacy .privacy-update-note p{
  margin:0 0 4px;
}

.page-privacy .privacy-update-note p:last-child{
  margin-bottom:0;
}
.page-login .login-error{
  margin:0 0 16px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(180, 40, 40, .08);
  border:1px solid rgba(180, 40, 40, .24);
  color:#8a1f1f;
  font-size:13px;
  line-height:1.6;
}

@media (max-width: 768px){
  html, body{
    overflow-x: clip;
  }

  .page-home .top-sections .wide-message .message-inner,
  .page-home .top-about-wide,
  .page-home .top-open-wide,
  .page-home .top-offer-wide{
    width:100%;
    margin-left:0;
    margin-right:0;
    padding-left:24px;
    padding-right:24px;
  }

  .page-home .wide-message,
  .page-home .top-sections,
  .page-home .top-stack,
  .page-home .preview-grid{
    overflow-x: clip;
  }
}


@media (max-width: 1100px){
  .site-header{
    z-index:80;
  }

  .header-actions.mobile-only{
    position:relative;
    z-index:82;
  }

  .menu-toggle{
    position:relative;
    z-index:82;
  }

  .menu-panel{
    z-index:81;
    inset:82px 0 0 0;
  }
}
@media (max-width: 1100px){
  .menu-panel{
    display:none;
    inset:82px 0 0 0;
    z-index:81;
  }

  .menu-panel.is-open{
    display:block;
    opacity:1;
    pointer-events:auto;
    transform:none;
  }

  .header-actions.mobile-only,
  .menu-toggle{
    position:relative;
    z-index:82;
  }
}
@media (max-width: 1100px){
  .menu-panel{
    display:none;
  }

  .menu-panel.is-open{
    display:block;
    opacity:1;
    pointer-events:auto;
    transform:none;
  }
}
.site-menu-toggle{
  position:relative;
  z-index:82;
  flex:0 0 auto;
}

@media (max-width: 1100px){
  .desktop-only{
    display:none;
  }

  .site-menu-toggle{
    display:grid;
  }

  .menu-panel{
    display:none;
    inset:82px 0 0 0;
    z-index:81;
  }

  .menu-panel.is-open{
    display:block;
    opacity:1;
    pointer-events:auto;
    transform:none;
  }
}
@media (max-width: 1100px){
  .site-header{
    overflow:visible;
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
  }

  .menu-panel{
    position:absolute;
    top:82px;
    left:0;
    right:0;
    bottom:auto;
    height:calc(100dvh - 82px);
    overflow:auto;
    display:none;
    opacity:1;
    pointer-events:none;
    transform:none;
    z-index:200;
  }

  .menu-panel.is-open{
    display:block;
    pointer-events:auto;
  }

  .menu-toggle{
    overflow:visible;
  }

  .menu-toggle span{
    transform-origin:center;
  }
}

@media (max-width: 768px){
  .page-home .top-sections .wide-message .message-inner{
    min-height:420px;
    padding:96px 24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .page-home .top-sections .wide-message .message-inner h2{
    font-size:20px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-home .top-sections .wide-message .message-inner .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  .page-home .top-sections .wide-message .message-inner > p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }
}

@media (max-width: 768px){

  .page-home .top-sections .wide-message .message-inner h2,
  .page-home .top-about-wide h2,
  .page-home .top-open-wide h2,
  .page-home .top-offer-wide h2,
  .page-home .plans-preview-copy h3,
  .page-home .shared-flow .section-heading h2,
  .page-home .shared-faq .section-heading h2,
  .page-home .shared-cta .cta-wide h2{
    font-size:20px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-home .top-sections .wide-message .message-inner .section-en,
  .page-home .top-about-wide .section-en,
  .page-home .top-open-wide .section-en,
  .page-home .top-offer-wide .section-en,
  .page-home .plans-preview-copy .section-en,
  .page-home .shared-flow .section-heading .section-en,
  .page-home .shared-faq .section-heading .section-en,
  .page-home .shared-cta .cta-wide .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  .page-home .top-sections .wide-message .message-inner > p:not(.section-en),
  .page-home .top-about-wide > p:not(.section-en),
  .page-home .top-open-wide > p:not(.section-en),
  .page-home .top-offer-wide > p:not(.section-en),
  .page-home .plans-preview-copy > p:not(.section-en),
  .page-home .shared-cta .cta-wide > p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }

  .page-home .top-open-wide .button-row,
  .page-home .top-open-wide .button-row.center{
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .page-home .top-open-wide .button-row .btn{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 768px){
  .page-home .plan-card .plan-name{ font-size:26px; }
  .page-home .plan-card .plan-price{ font-size:30px; }
  .page-home .plan-card .plan-price span{ font-size:14px; }
  .page-home .plan-card .plan-price-sub{ font-size:12px; }
  .page-home .plan-card .plan-copy{ font-size:13px; }
}

@media (max-width: 1100px){
  .site-header{
    z-index:220;
    overflow:visible;
  }

  .menu-panel{
    display:none;
    position:fixed !important;
    top:82px !important;
    left:0 !important;
    right:0 !important;
    width:100%;
    height:calc(100dvh - 82px) !important;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    opacity:1 !important;
    pointer-events:none;
    transform:none !important;
    z-index:210 !important;
  }

  .menu-panel.is-open{
    display:block;
    pointer-events:auto;
  }

  
  body.menu-open .site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:230;
  }

  body.menu-open .header-inner{
    position:relative;
    z-index:231;
  }

  body.menu-open .header-actions.mobile-only,
  body.menu-open .menu-toggle{
    position:relative;
    z-index:232;
  }
}

@media (max-width: 768px){
  .phone-steps{
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:flex-start;
    gap:16px;
  }

  .phone-step{
    flex:1 1 0;
    max-width:none;
    min-width:0;
    text-align:center;
  }

  .phone-step img{
    width:100%;
    max-width:140px;
    margin:0 auto 10px;
  }

  .phone-step h3{
    font-size:12px;
  }

  .phone-step p{
    font-size:11px;
    line-height:1.8;
  }
}

@media (max-width: 768px){
  .flow-note p{
    font-size:10px;
    line-height:1.7;
  }
}
@media (max-width: 768px){
  .footer-disclaimer{
    font-size:10px;
    line-height:1.7;
  }
}
.sp-break{
  display:none;
}

@media (max-width: 768px){
  .sp-break{
    display:block;
  }
}
@media (max-width: 768px){
  .footer-links-wrap{
    text-align:center;
    justify-items:center;
  }

  .footer-links{
    justify-items:center;
  }

  .footer-links a{
    text-align:center;
  }

  .copyright{
    text-align:center;
  }
}

@media (max-width: 768px){

  .page-about .about-flat-card .media-copy h2,
  .page-about .about-message-tabs .message-panel h2,
  .page-about .about-activity-tabs .activity-copy h3,
  .page-about .about-for-whom-heading h2,
  .page-about .about-join-wide h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-about .about-flat-card .media-copy .section-en,
  .page-about .about-message-tabs .message-panel .section-en,
  .page-about .about-activity-tabs .activity-copy .section-en,
  .page-about .about-for-whom-heading .section-en,
  .page-about .about-join-wide .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  .page-about .about-flat-card .media-copy > p:not(.section-en),
  .page-about .about-message-tabs .message-panel > p:not(.section-en),
  .page-about .about-activity-tabs .activity-copy > p:not(.section-en),
  .page-about .about-for-whom-heading > p:not(.section-en),
  .page-about .about-join-wide > p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }
}

@media (max-width: 768px){

  /* hero */
  .page-about .about-hero h1{
    font-size:20px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-about .about-hero .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  .page-about .about-hero p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }

  /* FOR WHOM 6カード */
  .page-about .for-whom-card{
    padding:18px 16px;
  }

  .page-about .for-whom-number{
    min-width:34px;
    min-height:34px;
    padding:0 10px;
    margin-bottom:12px;
    font-size:10px;
    letter-spacing:.12em;
  }

  .page-about .for-whom-card h3{
    font-size:15px;
    line-height:1.5;
    margin-bottom:8px;
  }

  .page-about .for-whom-card p{
    font-size:11px;
    line-height:1.85;
  }
}
@media (max-width: 768px){
  .page-about .about-hero p:not(.section-en){
    max-width:300px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }
}

@media (max-width: 768px){

  /* OUR MISSION / VISION / WHAT WE AIM FOR ボタン */
  .page-about .about-message-tabs .tab-button{
    min-height:34px;
    padding:8px 12px;
    font-size:10px;
    letter-spacing:.08em;
    line-height:1.3;
    border-radius:999px;
  }

  /* Daily Information / Learning / Exchange ボタン */
  .page-about .about-activity-tabs .tab-button{
    min-height:34px;
    padding:8px 12px;
    font-size:10px;
    letter-spacing:.04em;
    line-height:1.3;
    border-radius:999px;
  }

 
  .page-about .about-message-tabs .tabs-nav,
  .page-about .about-activity-tabs .tabs-nav{
    gap:8px;
    margin-bottom:20px;
  }
}

@media (max-width: 768px){

  .page-plans .plans-hero h1,
  .page-plans .join-flow-block .section-heading h2,
  .page-plans .page-plans-join-wide h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-plans .plans-hero .section-en,
  .page-plans .join-flow-block .section-heading .section-en,
  .page-plans .page-plans-join-wide .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  .page-plans .plans-hero p:not(.section-en),
  .page-plans .plans-subcopy p,
  .page-plans .page-plans-join-wide > p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }

  
  .page-plans .join-flow-block .flow-card{
    padding:18px 16px;
  }

  .page-plans .join-flow-block .flow-card h3{
    font-size:15px;
    line-height:1.45;
    margin-bottom:10px;
  }

  .page-plans .join-flow-block .flow-card li,
  .page-plans .join-flow-block .flow-card p{
    font-size:11px;
    line-height:1.85;
  }

  .page-plans .join-flow-block .flow-card ol{
    padding-left:1.1em;
  }

  .page-plans .join-flow-note p{
    font-size:10px;
    line-height:1.7;
  }


  .page-plans .page-plans-join-wide .button-row,
  .page-plans .page-plans-join-wide .button-row.center{
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .page-plans .page-plans-join-wide .button-row .btn{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 768px){
  .page-plans .plan-scroller{
    gap:12px;
    padding-left:calc((100vw - 82vw) / 2);
    padding-right:calc((100vw - 82vw) / 2);
    scroll-padding-left:calc((100vw - 82vw) / 2);
    scroll-padding-right:calc((100vw - 82vw) / 2);
  }

  .page-plans .plan-card{
    min-width:82vw;
    padding:20px 18px;
    scroll-snap-align:center;
  }

  .page-plans .plan-badge{
    font-size:10px;
    min-height:24px;
    padding:0 8px;
    margin-bottom:10px;
  }

  .page-plans .plan-name{
    font-size:22px;
    line-height:1.2;
    margin-bottom:8px;
  }

  .page-plans .plan-price{
    font-size:26px;
    line-height:1.1;
    margin-bottom:6px;
  }

  .page-plans .plan-price span{
    font-size:12px;
  }

  .page-plans .plan-price-sub{
    font-size:11px;
    margin-bottom:10px;
  }

  .page-plans .plan-price-label{
    font-size:22px;
    line-height:1.2;
  }

  .page-plans .plan-copy{
    font-size:11px;
    line-height:1.7;
    margin-bottom:12px;
  }

  .page-plans .plan-list{
    margin-bottom:14px;
    padding-left:1em;
  }

  .page-plans .plan-list li{
    font-size:10px;
    line-height:1.7;
    margin-bottom:8px;
  }

  .page-plans .plan-note{
    font-size:10px;
    line-height:1.7;
    margin-bottom:14px;
  }

  .page-plans .plan-card .btn{
    min-height:40px;
    padding:0 14px;
    font-size:12px;
  }
}

@media (max-width: 768px){
  .page-company .company-hero h1,
  .page-legal .legal-hero h1,
  .page-privacy .privacy-hero h1,
  .page-faq .faq-hero h1{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-company .company-hero .section-en,
  .page-legal .legal-hero .section-en,
  .page-privacy .privacy-hero .section-en,
  .page-faq .faq-hero .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  .page-company .company-hero p:not(.section-en),
  .page-legal .legal-hero p:not(.section-en),
  .page-privacy .privacy-hero p:not(.section-en),
  .page-faq .faq-hero p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }
}
@media (max-width: 768px){
  .page-faq .faq-inline-contact p{
    font-size:11px;
    line-height:1.9;
  }

  .page-faq .faq-inline-contact .button-row,
  .page-faq .faq-inline-contact .button-row.center,
  .page-faq .faq-subtle-cta .button-row,
  .page-faq .faq-subtle-cta .button-row.center{
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .page-faq .faq-inline-contact .button-row .btn,
  .page-faq .faq-subtle-cta .button-row .btn{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 768px){

  /* ===== A NEW PARADIGM BEGINS HERE. ===== */
  body:not(.page-home) .shared-cta .cta-wide h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  body:not(.page-home) .shared-cta .cta-wide .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  body:not(.page-home) .shared-cta .cta-wide > p:not(.section-en){
    font-size:11px;
    line-height:1.9;
  }

  /* ===== FLOW OF JOINING ===== */
  body:not(.page-home) .shared-flow .section-heading h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  body:not(.page-home) .shared-flow .section-heading .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  body:not(.page-home) .shared-flow .phone-step h3{
    font-size:12px;
  }

  body:not(.page-home) .shared-flow .phone-step p{
    font-size:11px;
    line-height:1.8;
  }

  body:not(.page-home) .shared-flow .phone-step img{
    width:140px;
  }

  body:not(.page-home) .shared-flow .flow-note p{
    font-size:10px;
    line-height:1.7;
  }

  /* ===== FAQ ===== */
  body:not(.page-home) .shared-faq .section-heading h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  body:not(.page-home) .shared-faq .section-heading .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }

  body:not(.page-home) .shared-faq .mini-faq-list summary{
    font-size:11px;
    line-height:1.8;
  }

  body:not(.page-home) .shared-faq .mini-faq-list p{
    font-size:11px;
    line-height:1.9;
  }

  body:not(.page-home) .shared-faq .center-actions .btn{
    margin-left:auto;
    margin-right:auto;
  }
}
@media (max-width: 768px){
  .page-faq .faq-subtle-cta h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-faq .faq-subtle-cta p{
    font-size:11px;
    line-height:1.9;
  }
}
@media (max-width: 768px){
  .page-privacy .privacy-flat-card section{
    font-size:11px;
    line-height:1.9;
  }

  .page-privacy .privacy-flat-card h2{
    font-size:19px;
    line-height:1.35;
    margin-bottom:8px;
  }

  .page-privacy .privacy-flat-card p,
  .page-privacy .privacy-flat-card li,
  .page-privacy .privacy-flat-card ul{
    font-size:11px;
    line-height:1.9;
  }

  .page-privacy .privacy-flat-card li{
    margin-bottom:6px;
  }
}

.page-faq .faq-layout summary,
.page-faq .faq-layout details > p{
  position:relative;
  padding-left:42px;
}

.page-faq .faq-layout summary::before,
.page-faq .faq-layout details > p::before{
  position:absolute;
  left:0;
  top:0.1em;
  width:26px;
  height:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  line-height:1;
}

.page-faq .faq-layout summary::before{
  content:"Q";
  background:#141414;
  color:#fff;
}

.page-faq .faq-layout details > p::before{
  content:"A";
  background:#d7b56d;
  color:#17130a;
}

@media (max-width: 768px){
  .page-faq .faq-layout summary,
  .page-faq .faq-layout details > p{
    padding-left:36px;
  }

  .page-faq .faq-layout summary::before,
  .page-faq .faq-layout details > p::before{
    width:22px;
    height:22px;
    font-size:10px;
  }
}

.shared-faq .mini-faq-list summary,
.shared-faq .mini-faq-list details > p{
  position:relative;
  padding-left:42px;
}

.shared-faq .mini-faq-list summary::before,
.shared-faq .mini-faq-list details > p::before{
  position:absolute;
  left:0;
  top:0.1em;
  width:26px;
  height:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  line-height:1;
}

.shared-faq .mini-faq-list summary::before{
  content:"Q";
  background:#141414;
  color:#fff;
}

.shared-faq .mini-faq-list details > p::before{
  content:"A";
  background:#d7b56d;
  color:#17130a;
}

@media (max-width: 768px){
  .shared-faq .mini-faq-list summary,
  .shared-faq .mini-faq-list details > p{
    padding-left:36px;
  }

  .shared-faq .mini-faq-list summary::before,
  .shared-faq .mini-faq-list details > p::before{
    width:22px;
    height:22px;
    font-size:10px;
  }
}
.page-seminar-dialogue .dialogue-hero{
  padding-top:140px;
  padding-bottom:92px;
}
.page-seminar-dialogue .dialogue-hero h1{
  max-width:none;
  font-size:clamp(28px,3.6vw,46px);
  line-height:1.14;
}
.page-seminar-dialogue .dialogue-hero .section-en,
.page-seminar-dialogue .dialogue-article .section-en,
.page-seminar-dialogue .dialogue-summary .section-en,
.page-seminar-dialogue .dialogue-cta .section-en{
  color:var(--gold);
}
.page-seminar-dialogue .dialogue-hero p:not(.section-en){
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}
.page-seminar-dialogue .dialogue-summary,
.page-seminar-dialogue .dialogue-article,
.page-seminar-dialogue .dialogue-cta{
  border:none;
  border-radius:0;
  box-shadow:none;
}
.page-seminar-dialogue .dialogue-summary{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:84px 48px;
  background:#101218;
}
.page-seminar-dialogue .dialogue-summary .container{max-width:1100px}
.page-seminar-dialogue .dialogue-summary h2,
.page-seminar-dialogue .dialogue-article h2,
.page-seminar-dialogue .dialogue-cta h2{
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:clamp(28px,3.2vw,35px);
  line-height:1.24;
  margin:0 0 14px;
}
.page-seminar-dialogue .dialogue-summary h2,
.page-seminar-dialogue .dialogue-summary p,
.page-seminar-dialogue .dialogue-summary li,
.page-seminar-dialogue .dialogue-cta h2,
.page-seminar-dialogue .dialogue-cta p{
  color:#f6efe1;
}
.page-seminar-dialogue .dialogue-summary p,
.page-seminar-dialogue .dialogue-summary li,
.page-seminar-dialogue .dialogue-copy p,
.page-seminar-dialogue .dialogue-copy li,
.page-seminar-dialogue .voice-body p,
.page-seminar-dialogue .dialogue-cta p{
  line-height:1.9;
}
.page-seminar-dialogue .dialogue-points{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:30px;
}
.page-seminar-dialogue .dialogue-point{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:24px 22px;
  border-radius:24px;
}
.page-seminar-dialogue .dialogue-point span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  min-height:38px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(215,181,109,.14);
  color:var(--gold);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
}
.page-seminar-dialogue .dialogue-point h3{
  margin:0 0 10px;
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
  font-size:22px;
  line-height:1.34;
  color:#fff;
}
.page-seminar-dialogue .dialogue-point p{margin:0;color:#ddd3c3}
.page-seminar-dialogue .dialogue-article{
  background:#fff;
}
.page-seminar-dialogue .dialogue-block{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:34px;
  padding:64px 0;
  border-bottom:1px solid rgba(20,20,20,.08);
}
.page-seminar-dialogue .dialogue-block:last-child{border-bottom:none}
.page-seminar-dialogue .dialogue-copy h2{margin-bottom:18px}
.page-seminar-dialogue .dialogue-copy p{margin:0 0 18px;color:#4c453a}
.page-seminar-dialogue .dialogue-copy p:last-child{margin-bottom:0}
.page-seminar-dialogue .dialogue-copy .lead{
  font-size:18px;
  color:#1d1b18;
}
.page-seminar-dialogue .dialogue-sidebar{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.page-seminar-dialogue .voice-card{
  background:#faf6ef;
  border-left:2px solid rgba(215,181,109,.54);
  padding:20px 20px 18px 22px;
}
.page-seminar-dialogue .voice-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
.page-seminar-dialogue .voice-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  border-radius:50%;
  background:#151515;
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
}
.page-seminar-dialogue .voice-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  flex:0 0 44px;
  object-fit:cover;
  border:1px solid rgba(20,20,20,.08);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  display:block;
}
.page-seminar-dialogue .quote-block{
  margin:0 0 22px;
}
.page-seminar-dialogue .quote-block:last-child{
  margin-bottom:0;
}
.page-seminar-dialogue .quote-speaker{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.page-seminar-dialogue .quote-speaker strong{
  font-size:16px;
  line-height:1.2;
  color:#1a1714;
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
}
.page-seminar-dialogue .quote-block p{
  margin:0;
}
.page-seminar-dialogue .voice-role{
  font-size:12px;
  letter-spacing:.12em;
  color:#8e7a61;
}
.page-seminar-dialogue .voice-name{
  font-size:18px;
  line-height:1.2;
  color:#1a1714;
  font-family:'凸版文久見出し明朝 StdN','Noto Serif JP',serif;
}
.page-seminar-dialogue .voice-body p{
  margin:0 0 14px;
  color:#534b40;
}
.page-seminar-dialogue .voice-body p:last-child{margin-bottom:0}
.page-seminar-dialogue .dialogue-cta-wrap{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:84px 48px;
  text-align:center;
}
.page-seminar-dialogue .dialogue-cta .button-row{justify-content:center}
@media (max-width: 1100px){
  .page-seminar-dialogue .dialogue-points{grid-template-columns:1fr}
  .page-seminar-dialogue .dialogue-block{grid-template-columns:1fr}
}
@media (max-width: 768px){
  .page-seminar-dialogue .dialogue-hero{
    padding-top:98px;
    padding-bottom:52px;
  }
  .page-seminar-dialogue .dialogue-hero h1,
  .page-seminar-dialogue .dialogue-summary h2,
  .page-seminar-dialogue .dialogue-article h2,
  .page-seminar-dialogue .dialogue-cta h2{
    font-size:20px;
    line-height:1.35;
    margin-bottom:8px;
  }
  .page-seminar-dialogue .dialogue-hero h1{
    font-size:18px;
    line-height:1.4;
  }
  .page-seminar-dialogue .dialogue-hero .section-en,
  .page-seminar-dialogue .dialogue-summary .section-en,
  .page-seminar-dialogue .dialogue-article .section-en,
  .page-seminar-dialogue .dialogue-cta .section-en{
    font-size:11px;
    letter-spacing:.18em;
    margin-bottom:12px;
  }
  .page-seminar-dialogue .dialogue-hero p:not(.section-en),
  .page-seminar-dialogue .dialogue-summary p,
  .page-seminar-dialogue .dialogue-summary li,
  .page-seminar-dialogue .dialogue-point p,
  .page-seminar-dialogue .dialogue-copy p,
  .page-seminar-dialogue .voice-body p,
  .page-seminar-dialogue .dialogue-cta p{
    font-size:11px;
    line-height:1.9;
  }
  .page-seminar-dialogue .dialogue-summary,
  .page-seminar-dialogue .dialogue-cta-wrap{
    padding:58px 24px;
  }
  .page-seminar-dialogue .dialogue-block{padding:48px 0}
  .page-seminar-dialogue .dialogue-point{padding:20px 18px}
  .page-seminar-dialogue .dialogue-point h3{font-size:16px;line-height:1.5}
  .page-seminar-dialogue .dialogue-point span{min-width:32px;min-height:32px;font-size:10px;margin-bottom:10px}
  .page-seminar-dialogue .dialogue-copy .lead{font-size:13px}
  .page-seminar-dialogue .voice-name{font-size:16px}
  .page-seminar-dialogue .voice-avatar{
    width:38px;
    height:38px;
    flex-basis:38px;
  }
  .page-seminar-dialogue .quote-speaker strong{
    font-size:14px;
  }
  .page-seminar-dialogue .dialogue-cta .button-row,
  .page-seminar-dialogue .dialogue-cta .button-row.center{
    justify-content:center;
    align-items:center;
    text-align:center;
  }
  .page-seminar-dialogue .dialogue-cta .button-row .btn{
    margin-left:auto;
    margin-right:auto;
  }
}

.page-seminar-dialogue{
  background:#fff;
}


.page-seminar-dialogue .page-section,
.page-seminar-dialogue .page-section.alt,
.page-seminar-dialogue .dialogue-article{
  background:#fff;
}


.page-seminar-dialogue .page-section.alt{
  padding:0;
}

.page-seminar-dialogue .dialogue-cta-wrap{
  margin:0;
  padding:72px 48px;
}

@media (max-width: 768px){
  .page-seminar-dialogue .dialogue-cta-wrap{
    padding:48px 24px;
  }
}

.page-seminar-dialogue .dialogue-hero{
  padding-bottom:48px;
}

.page-seminar-dialogue .page-section.dark-band{
  padding-top:0;
  padding-bottom:0;
}

.page-seminar-dialogue .dialogue-summary{
  padding-top:56px;
  padding-bottom:56px;
}

@media (max-width: 768px){
  .page-seminar-dialogue .dialogue-hero{
    padding-bottom:28px;
  }

  .page-seminar-dialogue .dialogue-summary{
    padding-top:40px;
    padding-bottom:40px;
  }
}

body.page-seminar-dialogue .site-header{
  background:#0a0b0e;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.page-home .top-offer-wide.bg-image{
  background-image:
    linear-gradient(180deg, rgba(11,12,15,.58), rgba(11,12,15,.66)),
    var(--bg);
}


.page-seminar-dialogue .dialogue-hero.bg-image{
  background-image:
    linear-gradient(180deg, rgba(11,12,15,.58), rgba(11,12,15,.66)),
    var(--bg);
}
.page-seminar-dialogue .dialogue-hero::before{
  background:linear-gradient(180deg, rgba(10,11,14,.22), rgba(10,11,14,.14));
}

.page-company .company-hero,
.page-legal .legal-hero,
.page-privacy .privacy-hero,
.page-faq .faq-hero{
  min-height:220px;
  padding-top:42px;
  padding-bottom:32px;
  display:flex;
  align-items:center;
}

.page-company .company-hero h1,
.page-legal .legal-hero h1,
.page-privacy .privacy-hero h1,
.page-faq .faq-hero h1{
  font-size:clamp(24px,2.6vw,32px);
  line-height:1.2;
  margin-bottom:10px;
}

.page-company .company-hero p,
.page-legal .legal-hero p,
.page-privacy .privacy-hero p,
.page-faq .faq-hero p{
  font-size:14px;
  line-height:1.75;
  max-width:680px;
}

.page-company .company-hero .section-en,
.page-legal .legal-hero .section-en,
.page-privacy .privacy-hero .section-en,
.page-faq .faq-hero .section-en{
  font-size:11px;
  margin-bottom:8px;
}

/* SP版 */
@media (max-width: 768px){
  .page-company .company-hero,
  .page-legal .legal-hero,
  .page-privacy .privacy-hero,
  .page-faq .faq-hero{
    padding-top:84px;
    padding-bottom:28px;
  }

  .page-company .company-hero h1,
  .page-legal .legal-hero h1,
  .page-privacy .privacy-hero h1,
  .page-faq .faq-hero h1{
    font-size:17px;
    line-height:1.35;
    margin-bottom:6px;
  }

  .page-company .company-hero p:not(.section-en),
  .page-legal .legal-hero p:not(.section-en),
  .page-privacy .privacy-hero p:not(.section-en),
  .page-faq .faq-hero p:not(.section-en){
    font-size:10px;
    line-height:1.8;
  }

  .page-company .company-hero .section-en,
  .page-legal .legal-hero .section-en,
  .page-privacy .privacy-hero .section-en,
  .page-faq .faq-hero .section-en{
    font-size:10px;
    letter-spacing:.16em;
    margin-bottom:8px;
  }
}


.page-company .company-hero .container,
.page-legal .legal-hero .container,
.page-privacy .privacy-hero .container,
.page-faq .faq-hero .container{
  text-align:center;
}

.page-home .top-sections .wide-message .message-inner.bg-image{
  background-image:
    linear-gradient(180deg, rgba(11,12,15,.22), rgba(11,12,15,.30)),
    var(--bg);
}

.page-home .top-about-wide.bg-image{
  background-image:
    linear-gradient(180deg, rgba(11,12,15,.18), rgba(11,12,15,.26)),
    var(--bg);
}

.page-home .preview-visual{
  display:none;
}

.page-home .preview-grid{
  grid-template-columns:1fr;
}

.page-home .preview-visual{
  display:none;
}


.page-home .preview-grid{
  grid-template-columns:1fr;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);

  background-image:
    linear-gradient(180deg, rgba(10,11,14,.48), rgba(10,11,14,.62)),
    url('../img/wide-plans.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  padding:84px max(22px, calc((100vw - 1200px) / 2 + 22px));
}


.page-home .plans-preview-copy.dark-surface{
  background:transparent;
  padding:0;
}

.page-home .plans-preview-copy{
  max-width:620px;
}

.page-home .top-sections{
  padding-bottom:0;
}

.page-home .shared-flow{
  padding-top:0;
}

.page-home .shared-flow .flow-section{
  padding-top:28px;
}

.page-about .about-hero.bg-image{
  background-image:var(--bg);
}

.page-about .about-hero::before{
  background:none;
}

.page-plans .plans-hero.bg-image{
  background-image:
    linear-gradient(180deg, rgba(11,12,15,.18), rgba(11,12,15,.26)),
    var(--bg);
}

.page-plans .plans-hero::before{
  background:linear-gradient(180deg, rgba(10,11,14,.18), rgba(10,11,14,.12));
}

.page-company .company-info-card,
.page-legal .legal-info-card{
  font-family:'Noto Serif JP','凸版文久見出し明朝 StdN',serif;
}

.page-company .company-info-card .definition-row dt,
.page-company .company-info-card .definition-row dd,
.page-legal .legal-info-card .definition-row dt,
.page-legal .legal-info-card .definition-row dd{
  font-family:'Noto Serif JP','凸版文久見出し明朝 StdN',serif;
  font-size:16px;
  line-height:1.8;
}

.page-company .company-info-card .definition-row dt,
.page-legal .legal-info-card .definition-row dt{
  color:#171717;
  font-weight:700;
}

.page-company .company-info-card .definition-row dd,
.page-legal .legal-info-card .definition-row dd{
  color:#5d5548;
}

.page-company .company-info-card a,
.page-legal .legal-info-card a{
  color:#9d7c3c;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width: 768px){
  .page-company .company-info-card .definition-row dt,
  .page-company .company-info-card .definition-row dd,
  .page-legal .legal-info-card .definition-row dt,
  .page-legal .legal-info-card .definition-row dd{
    font-size:14px;
    line-height:1.8;
  }
}

body{
  font-family:'Noto Serif JP','Noto Sans JP',serif;
  letter-spacing:.025em;
}

.section-en,
.nav-link,
.btn,
.plan-badge,
.ticker-track span,
.menu-panel__head h2{
  font-family:'Cinzel','Tenor Sans','Noto Serif JP',serif;
  letter-spacing:.12em;
}

p,
li,
dd,
summary{
  line-height:1.9;
}

.nav-link,
.btn{
  letter-spacing:.08em;
}

.btn,
.btn.small,
.tab-button,
.menu-toggle,
.menu-links a,
.login-card .btn,
.login-backlink .btn {
  border-radius: 0;
}

.page-privacy .privacy-copy h2,
.page-terms .privacy-copy h2{
  font-size: 20px;
  line-height: 1.45;
}

@media (max-width: 768px){
  .page-privacy .privacy-copy h2,
  .page-terms .privacy-copy h2{
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 768px){
  main > section:not(.hero):not(.page-hero) > .container,
  .page-section > .container,
  .plans-wrap > .container,
  .top-sections > .container{
    width: 100%;
  }
}

@media (max-width: 768px){
  .page-seminar-dialogue .dialogue-block{
    padding:48px 22px;
  }
}

@media (max-width: 768px){
  .page-about .about-hero .container,
  .page-about .about-hero h1,
  .page-about .about-hero .section-en,
  .page-about .about-hero p{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 768px){
  .page-about .about-hero .container > p:not(.section-en){
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 768px){
  body.page-faq main > .page-section > .container,
  body.page-legal main > .page-section > .container,
  body.page-privacy main > .page-section > .container,
  body.page-company main > .page-section > .container,
  body.page-terms main > .page-section > .container{
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 768px){
  .page-home .top-about-wide{
    --bg:url('../img/wide-about-sp.jpg') !important;
  }

  .page-home .top-open-wide{
    --bg:url('../img/wide-open-sp.jpg') !important;
  }
}

@media (min-width: 1101px){
  .desktop-nav .nav-link{
    font-size:13px;
    letter-spacing:.02em;
    white-space:nowrap;
  }

  .desktop-nav{
    gap:20px;
  }
}