:root{
  --navy-900:#0d1a30;
  --navy-800:#16264a;
  --navy-700:#1e3256;
  --navy-600:#2c4470;
  --navy-500:#4a6590;
  --navy-300:#8aa0c2;
  --blue-200:#c9dce8;
  --yellow-300:#f5d57a;
  --yellow-500:#eab43d;
  --cream:#faf6ec;
  --bg:#f3efe5;
  --paper:#fffdf7;
  --text:#16264a;
  --text-muted:#5c6a85;
  --text-light:#8892a8;
  --line:#d9d3c2;
  --line-soft:#e8e3d5;
  --shadow-sm:0 2px 8px rgba(22,38,74,.06);
  --shadow-md:0 8px 24px rgba(22,38,74,.10);
  --shadow-lg:0 16px 40px rgba(22,38,74,.14);
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family: "Noto Sans JP","Hiragino Sans","ヒラギノ角ゴ ProN",sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  letter-spacing: .02em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
.page{
  max-width: 430px;
  margin: 0 auto;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.mincho{ font-family: "Shippori Mincho B1","Hiragino Mincho ProN",serif }

/* ======================= Hero ======================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.hero-bg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-cta-overlay {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 340px;
  z-index: 10;
  overflow: hidden;
  border-radius: 50px;
}
.hero-cta-overlay img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50px;
  cursor: pointer;
}
.yure { animation: yure 2s infinite; }
@keyframes yure {
  0% { transform: translate(0px, 2px); }
  5% { transform: translate(0px, -2px); }
  10% { transform: translate(0px, 2px); }
  15% { transform: translate(0px, -2px); }
  20% { transform: translate(0px, 2px); }
  25% { transform: translate(0px, -2px); }
  30% { transform: translate(0px, 0px); }
}

/* ======================= Section base ======================= */
section{
  padding: 30px 20px 10px;
  position: relative
}
.section-eyebrow{
  text-align: center;
  font-size: clamp(0.5rem, 0.136rem + 1.82vw, 0.625rem);
  color: var(--navy-500);
  letter-spacing: .4em;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-eyebrow .line{
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--navy-500);
  vertical-align: middle;
  margin: 0 10px;
}
.section-title{
  font-family: "Shippori Mincho B1",serif;
  text-align: center;
  font-size: clamp(1.25rem, -0.205rem + 7.27vw, 1.75rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.section-title .accent{
  color: #eab43d;
  background: linear-gradient(transparent 60%,#faf0d0 60%);
  padding: 0 3px;
}
.section-title .small{
  font-size: clamp(0.813rem, 0.449rem + 1.82vw, 0.938rem);
  display: block;
  color: var(--navy-600);
  margin-bottom: 6px;
  font-weight: 500
}

/* ======================= Worries ======================= */
.worries{ background: var(--paper); }
.worry-list{
  display: flex;
  flex-direction: column;
  gap: .8em;
  max-width: 360px;
  margin: 0 auto;
}
.worry-item{
  display: flex;
  align-items: center;
  gap: 14px;
}
.worry-item .check-icon{
  flex-shrink:0;
  width: min(26px, 6vw);
  height: min(26px, 6vw);
}
.worry-item .check-icon img{
  width:100%;
  height:100%;
  display:block;
}
.worry-item p{
  font-size: clamp(0.75rem, 0.023rem + 3.64vw, 1rem);
  line-height: 1.4;
  color: var(--navy-800);
}

/* ======================= Answer Bridge ======================= */
.bridge{
  background: linear-gradient(180deg,var(--paper) 0%,var(--cream) 100%);
  padding: 30px 0 40px;
  text-align: center;
}
.bridge-arrow{
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 22px solid var(--navy-700);
  margin: 0 auto 24px;
}
.bridge-headline{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  line-height: 1.5;
  color: var(--navy-800);
  font-weight: 700;
  margin-bottom: 10px;
}
.bridge-headline .hl{
  background: linear-gradient(transparent 60%,var(--yellow-300) 60%);
  padding: 0 4px;
}
.bridge-text{
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin: 12px auto 0;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  max-width: 400px;
}

/* ======================= About ======================= */
.about{
  background: linear-gradient(180deg,var(--navy-800) 0%,var(--navy-900) 100%);
  color: var(--paper);
  position: relative;
}
.about::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%,rgba(245,229,168,.4),transparent),
    radial-gradient(1px 1px at 90% 60%,rgba(245,229,168,.3),transparent),
    radial-gradient(1px 1px at 30% 90%,rgba(245,229,168,.3),transparent);
  pointer-events:none;
}
.about-inner{
  position: relative;
  z-index: 2;
}
.about .section-eyebrow{ color: var(--yellow-300); }
.about .section-eyebrow .line{ background: var(--yellow-500); }
.about .section-title{ color: var(--paper); }
.about .section-title .small{ color: var(--blue-200); opacity: .85; }
.about .section-title .accent{ color: var(--yellow-300); background: linear-gradient(transparent 60%,rgba(234,180,61,.2) 60%); }
.about-card{
  background: linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(234,180,61,.25);
  border-radius: 14px;
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  margin-bottom: 14px;
}
.about-card h3{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  color: var(--yellow-300);
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.about-card h3 .num{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  color: var(--yellow-500);
  font-style: italic;
  line-height: 1.4;
}
.about-card p{
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  line-height: 1.85;
  color: #dfe5ef;
  font-weight: 500;
}
.about-card p strong{ color: var(--paper); font-weight: 700; }

/* ======================= Director Message ======================= */
.director{ background: var(--paper); padding: 50px 20px 55px; }
.director-frame{
  background: linear-gradient(180deg,var(--cream) 0%,var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 4px;
  position: relative;
}
.director-frame::before{
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--line);
  pointer-events: none;
  border-radius: 1px;
}
.director-inner{ padding:28px 18px; }
.director-portrait{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.director-portrait-img{
  width: clamp(5rem, 4.091rem + 4.55vw, 7.5rem);
  height: clamp(5rem, 4.091rem + 4.55vw, 7.5rem);
  border-radius: 50%;
  background: linear-gradient(135deg,#f7f2e4,#faf7ef);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 6px 16px rgba(22,38,74,.15);
  border: 3px solid var(--paper);
  outline: 1px solid var(--line);
  overflow: hidden;
}
.director-portrait-img svg{ width: 100%; height: 100%; display: block; }
.director-logo{
  width: 80%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(22,38,74,.15));
}
.director-role{
  font-size: clamp(0.625rem, 0.557rem + 0.34vw, 0.813rem);
  letter-spacing: .3em;
  color: var(--navy-500);
  font-weight: 700;
  margin-bottom: 4px;
}
.director-name{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: .1em;
}
.director-name small{
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--navy-500);
  margin-left: 4px;
  font-weight: 500;
}
.director-quote-mark{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.875rem, 1.602rem + 1.36vw, 2.625rem);
  color: var(--yellow-500);
  line-height: 1;
  margin-bottom: -10px;
}
.director-message{
  font-family:"Shippori Mincho B1",serif;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  line-height: 1.8;
  color: var(--navy-800);
  font-weight: 500;
  letter-spacing: .04em;
}
.director-message .hl{
  background: linear-gradient(transparent 62%,var(--yellow-300) 62%);
  font-weight: 700;
}
.director-signature{
  text-align: right;
  margin-top: 18px;
  font-size: clamp(0.563rem, 0.472rem + 0.45vw, 0.813rem);
  color: var(--navy-600);
  letter-spacing: .1em;
}
.director-signature .name{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.063rem, 1.017rem + 0.23vw, 1.188rem);
  color: var(--navy-800);
  font-weight: 700;
  margin-left: 6px;
}

/* ======================= Steps ======================= */
.steps{
  background: linear-gradient(180deg,var(--bg) 0%,var(--cream) 100%);
  padding: 50px 20px 55px;
}
.step-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.step-item{
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px 16px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  margin-left: 5px;
}
.step-num{
  width: clamp(2.375rem, 2.193rem + 0.91vw, 2.875rem);
  height: clamp(2.375rem, 2.193rem + 0.91vw, 2.875rem);
  background: linear-gradient(135deg,var(--navy-700),var(--navy-900));
  color: var(--yellow-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(22,38,74,.25);
}
.step-num small{
  font-size: 7px;
  letter-spacing: .2em;
  color: var(--yellow-300);
  line-height: 1;
  font-weight: 700;
}
.step-num strong{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  line-height: 1;
  font-weight: 800;
  color: var(--paper);
}
.step-title{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.4;
}
.step-body{
  display:flex;
  gap: 12px;
  align-items: center;
}
.step-icon{
  flex-shrink: 0;
  width: clamp(3.313rem, 3.153rem + 0.8vw, 3.75rem);
  height: clamp(3.313rem, 3.153rem + 0.8vw, 3.75rem);
  background: #e6eff6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img {
  width: clamp(2.188rem, 2.074rem + 0.57vw, 2.5rem);
  height: clamp(2.188rem, 2.074rem + 0.57vw, 2.5rem);
}
.step-icon svg{
  width: clamp(2.188rem, 2.074rem + 0.57vw, 2.5rem);
  height: clamp(2.188rem, 2.074rem + 0.57vw, 2.5rem);
}
.step-desc{
  font-size: clamp(0.75rem, 0.682rem + 0.34vw, 0.938rem);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.step-arrow{
  width:0;height:0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--navy-500);
  margin: 2px auto;
}

/* ======================= Note ======================= */
.note-section{ background: var(--paper); padding: 50px 20px 55px; }
.note-intro{
  text-align: center;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.note-intro strong{ color: var(--navy-800); font-weight: 700; }
.note-articles{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.note-article{
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 10px 14px 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease,box-shadow .15s ease;
}
.note-article:active{
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}
.note-article-thumb{
  flex-shrink: 0;
  width: clamp(3.125rem, 2.807rem + 1.59vw, 4rem);
  height: clamp(3.125rem, 2.807rem + 1.59vw, 4rem);
  border-radius: 8px;
  background: linear-gradient(135deg,var(--navy-700),var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-300);
  font-family: "Shippori Mincho B1",serif;
  font-size: 28px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.note-article-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(1px 1px at 20% 20%,rgba(245,229,168,.5),transparent),
    radial-gradient(1px 1px at 80% 70%,rgba(245,229,168,.4),transparent);
}
.note-article-body{ flex: 1; min-width: 0; }
.note-article-label{
  display: inline-block;
  font-size: clamp(0.563rem, 0.471rem + 0.46vw, 0.813rem);
  color: var(--navy-500);
  letter-spacing: .2em;
  font-weight: 700;
  margin-bottom: 4px;
}
.note-article-title{
  font-size: clamp(0.75rem, 0.682rem + 0.34vw, 0.938rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy-800);
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow: hidden;
}
.note-more{
  display: block;
  text-align: center;
  margin: 22px auto 0;
  max-width: 280px;
  padding: 14px 18px;
  background: var(--paper);
  border: 2px solid var(--navy-700);
  border-radius: 60px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .05em;
}
.note-more::after{ content: " →"; }

/* ======================= Final CTA ======================= */
.final-cta{
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%,rgba(234,180,61,.25),transparent 70%),
    linear-gradient(180deg,var(--navy-800) 0%,var(--navy-900) 100%);
  color: var(--paper);
  padding: 50px 20px 45px;
  position: relative;
  overflow: hidden;
}
.final-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%,rgba(245,229,168,.6),transparent),
    radial-gradient(1px 1px at 85% 30%,rgba(245,229,168,.5),transparent),
    radial-gradient(1.5px 1.5px at 50% 85%,rgba(245,229,168,.5),transparent),
    radial-gradient(1px 1px at 25% 75%,rgba(245,229,168,.4),transparent);
  pointer-events: none;
}
.final-cta-inner{ position: relative; z-index: 2; text-align: center; }
.final-eyebrow{
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--yellow-300);
  font-weight: 700;
  margin-bottom: 14px;
}
.final-title{
  font-family: "Shippori Mincho B1",serif;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 8px;
}
.final-title .accent{color:var(--yellow-300)}
.final-sub{
  font-size: 13px;
  color: #cfd5e0;
  line-height: 1.85;
  margin-bottom: 26px;
  font-weight: 500;
}
.final-free-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,var(--yellow-500),#d9a330);
  color: var(--navy-900);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(234,180,61,.3);
}
.final-free-badge span{
  font-family: "Shippori Mincho B1",serif;
  font-size: 16px;
  font-style: italic;
}
.final-features{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 auto 24px;
  max-width: 300px;
}
.final-feature{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(234,180,61,.25);
  border-radius:8px;
  padding: 10px 8px;
  font-size: clamp(0.688rem, 0.642rem + 0.23vw, 0.813rem);
  font-weight: 700;
  color: #dfe5ef;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.final-feature::before{
  content:"✓";
  color:var(--yellow-300);
  font-weight:900;
}

/* ======================= Footer ======================= */
footer{
  background: var(--navy-900);
  color: var(--navy-300);
  padding: 24px 20px 30px;
  text-align: center;
  font-size: clamp(0.688rem, 0.642rem + 0.23vw, 0.813rem);
  line-height: 1.8;
}
.footer-brand{
  font-family: "Shippori Mincho B1",serif;
  color: var(--paper);
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
footer .divider{
  width: 40px;
  height: 1px;
  background: var(--navy-600);
  margin: 12px auto;
}
footer small{
  color: var(--navy-500);
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  letter-spacing: .1em;
}

/* ======================= Sticky bottom CTA ======================= */
.sticky-cta .cta-wrap{ text-align: center; }
.sticky-cta .cta-btn{
  display: inline-flex;
/*
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg,#06c755 0%,#04a846 100%);
  color: #fff;
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  font-weight: 700;
  padding: 15px 20px;
  text-decoration: none;
  letter-spacing: .06em;
  box-shadow: 0 4px 0 #037a33,0 10px 20px rgba(0,0,0,.25);
*/
  border-radius: 60px;
  width: 100%;
  max-width: none;
  position: relative;
  transition: transform .15s ease,box-shadow .15s ease;
  animation: none;
  overflow: hidden;
}
.sticky-cta .cta-btn:active{
  transform: translateY(3px);
  box-shadow: 0 3px 0 #037a33,0 6px 14px rgba(6,199,85,.3);
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 6px 0 #037a33,0 10px 24px rgba(6,199,85,.35)}
  50%{ box-shadow: 0 6px 0 #037a33,0 10px 30px rgba(6,199,85,.55),0 0 0 8px rgba(6,199,85,.15)}
}
.sticky-cta .cta-btn .line-icon{ width: 26px; height: 26px; }
.sticky-cta .cta-btn small{
  display:block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 2px;
  opacity: .9;
}
.sticky-cta .cta-note{
  font-size: 11px;
  color: #cfd5e0;
  margin-top: 10px;
  letter-spacing: .08em;
}
.sticky-cta .cta-note.dark{ color: var(--text-muted); }

.sticky-cta{
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: calc(100% - 24px);
  max-width: 376px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.sticky-cta.visible{ opacity: 1; pointer-events: auto; }
.sticky-cta .cta-btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -100%;
  left: -50%;
  width: 60px;
  height: 300%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0) 100%
  );
  z-index: 20;
  pointer-events: none;
  animation: kiran 3s ease-in-out infinite;
}
@keyframes kiran {
  0%   { transform: translateX(-100px) rotate(45deg); opacity: 0; }
  80%  { transform: translateX(-100px) rotate(45deg); opacity: 0; }
  81%  { opacity: 1; }
  100% { transform: translateX(600px) rotate(45deg); opacity: 0.8; }
}

