/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'Noto Sans JP',sans-serif;color:#1a1a1a;background:#fff;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ===== TOKENS ===== */
:root{
  --orange:#FF6B2B;
  --orange-deep:#E5521A;
  --peach:#FFE3D1;
  --cream:#FFF8F3;
  --cream-dark:#FFF6EF;
  --ink:#1A1A1A;
  --gray:#5a524c;
  --radius-card:16px;
  --radius-button:44px;
  --shadow-card:0 6px 18px rgba(229,82,26,.08);
  --shadow-cta:0 10px 24px rgba(0,0,0,.16);
  --max-width:1440px;
}
.text-orange{color:var(--orange)}

/* ===== HEADER ===== */
.header{
  position:fixed;top:0;left:0;width:100%;z-index:100;
  background:rgba(255,255,255,.96);
  height:78px;
}
.header__inner{
  max-width:var(--max-width);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  height:100%;padding:0 40px;
}
.header__logo{height:46px;width:auto}
.header__right{display:flex;align-items:center;gap:16px}
.header__badge{
  background:#ff6b00;color:#fff;font-weight:700;
  font-size:14px;padding:6px 16px;border-radius:17px;
}
.header__service{color:var(--orange-deep);font-weight:700;font-size:15px}

/* ===== HERO ===== */
.hero{
  position:relative;padding-top:0;
  background:var(--cream);
  overflow:hidden;
}
.hero__bg-curve{
  position:absolute;top:0;left:0;width:100%;height:760px;
  object-fit:cover;pointer-events:none;
}
.hero__deco{position:absolute;pointer-events:none;opacity:.6}
.hero__deco--1{top:164px;left:34px;width:9px}
.hero__deco--2{top:130px;left:450px;width:8px}
.hero__deco--3{top:700px;left:800px;width:10px}
.hero__deco--4{top:620px;left:111px;width:7px}
.hero__deco--diamond1{top:598px;left:20px;width:16px;transform:rotate(-45deg)}
.hero__deco--diamond2{top:390px;left:615px;width:16px;transform:rotate(-45deg)}

.hero__deco-stripe{
  position:absolute;top:0px;left:-100px;width:130px;height:130px;
  border-radius:50%;overflow:hidden;pointer-events:none;z-index:1;opacity:.7;
  background:repeating-linear-gradient(
    -45deg,
    transparent,transparent 5px,
    #e8a070 5px,#e8a070 7px
  );
}
.hero__deco-pink{
  position:absolute;top:300px;left:500px;width:150px;
  pointer-events:none;z-index:0;opacity:.6;
}
.hero__deco-yellow{
  position:absolute;bottom:120px;left:60px;width:140px;
  pointer-events:none;z-index:1;opacity:.6;
}

.hero__inner{
  position:relative;max-width:var(--max-width);margin:0 auto;
  display:flex;align-items:flex-start;
  padding:0px 40px 0;min-height:590px;
}
.hero__text{flex:0 0 50%;padding-top:20px;position:relative;z-index:2}
.hero__label-img{width:300px;height:auto;margin:0 auto;display:block}
.hero__title{
  font-size:56px;font-weight:900;line-height:1.05;
  color:#222;margin-bottom:20px;text-align:center;
}
.hero__title--orange{color:#ff6b00}
.hero__lead{font-size:23px;font-weight:700;line-height:1.4;color:#333;margin-bottom:32px;text-align:center}
.hero__lead--bold{font-weight:900}

/* Benefits */
.hero__benefits{display:flex;gap:26px;margin-bottom:28px;justify-content:center}
.hero__benefit{text-align:center;width:170px}
.hero__benefit-circle{
  width:170px;height:130px;
  background:rgba(255,255,255,.85);
  border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(229,82,26,.06);
  padding:10px;
}
.hero__benefit-icon{height:55px;width:auto}
.hero__benefit-text{font-size:14px;font-weight:500;line-height:1.3;text-align:center}

/* Hero image */
.hero__image-area{
  flex:0 0 50%;position:relative;z-index:1;
}
.hero__woman-wrap{
  width:480px;height:480px;
  border-radius:50%;
  overflow:hidden;
  margin:20px auto 0;
}
.hero__woman{
  width:100%;height:100%;
  object-fit:cover;
}
.hero__deco-item{position:absolute;z-index:4;pointer-events:none}
.hero__deco-item--laptop{width:180px;bottom:10px;left:-20px}
.hero__deco-item--magnifier{width:110px;top:0;right:-20px}
.hero__deco-item--lightbulb{width:70px;top:40px;left:460px}
.hero__deco-item--books{width:260px;bottom:5px;right:50px}
.hero__speech{position:absolute;top:10px;left:-50px;z-index:5}
.hero__speech-img{width:280px}
.hero__speech-text{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-size:21px;font-weight:900;color:#ff5a00;
  text-align:center;line-height:1.6;white-space:nowrap;
}
.hero__photo-note{
  font-size:12px;color:#999;margin-top:8px;text-align:right;
}

/* ===== CTA BUTTON ===== */
.cta-button{
  display:flex;align-items:center;
  background:linear-gradient(90deg,var(--orange),var(--orange-deep));
  border-radius:38px;padding:0 24px;height:76px;
  box-shadow:var(--shadow-cta);
  max-width:650px;position:relative;margin:0 auto;
  transition:opacity .2s;
}
.cta-button:hover{opacity:.9}
.cta-button--large{
  height:88px;max-width:780px;margin:3% auto;
  border-radius:var(--radius-button);
}
.cta-button__badge{
  background:#fff;color:var(--orange);font-weight:900;
  font-size:18px;width:54px;height:54px;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.cta-button--large .cta-button__badge{width:50px;height:50px}
.cta-button__text{
  flex:1;text-align:center;
  color:#fff;font-weight:900;font-size:30px;
}
.cta-button--large .cta-button__text{font-size:32px}
.cta-button__arrow{
  background:#fff;color:var(--orange);font-weight:900;
  font-size:28px;width:46px;height:46px;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.cta-button--large .cta-button__arrow{width:50px;height:50px;font-size:30px}
.cta-note{
  text-align:center;color:var(--gray);font-size:14px;
  font-weight:500;margin-top:12px;
}

/* ===== RECOMMEND ===== */
.recommend{
  padding:60px 40px 40px;
  max-width:var(--max-width);margin:0 auto;
}
.section-heading{
  text-align:center;font-size:30px;font-weight:900;
  color:var(--ink);margin-bottom:40px;
  display:flex;align-items:center;justify-content:center;gap:16px;
}
.section-heading__slash{width:20px;height:auto}
.recommend__cards{
  display:flex;gap:70px;justify-content:center;
}
.recommend__card{
  background:#fff4ec;
  border-radius:var(--radius-card);
  box-shadow:var(--shadow-card);
  width:230px;padding:24px 20px 20px;text-align:center;
}
.recommend__icon{
  height:80px;width:auto;margin:0 auto 16px;
  object-fit:contain;
}
.recommend__text{font-size:14px;font-weight:500;line-height:1.35}

/* ===== RESULT ===== */
.result{
  background:var(--cream-dark);
  padding:60px 0;
}
.result__inner{
  max-width:var(--max-width);margin:0 auto;padding:0 90px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:40px;
  align-items:start;
}
.result__text-area{grid-column:1;grid-row:1/3}
.result__label{
  display:inline-block;
  background:var(--peach);color:var(--orange-deep);
  font-size:18px;font-weight:900;
  padding:4px 16px;border-radius:5px;
  margin-bottom:16px;
}
.result__title{
  font-size:34px;font-weight:900;line-height:1.35;
  margin-bottom:32px;
}
.result__title--large{font-size:40px}
.result__checks{display:flex;flex-direction:column;gap:12px}
.result__check{
  display:flex;align-items:center;gap:12px;
  font-size:22px;font-weight:700;
}
.result__check-icon{width:22px;height:22px;flex-shrink:0}

.result__phone{
  grid-column:2;grid-row:1/3;
}
.result__phone-img{
  width:330px;
}

.result__support{
  grid-column:3;grid-row:1/3;
  background:#fff;border-radius:12px;
  box-shadow:var(--shadow-card);
  padding:40px 32px;
  width:420px;
}
.result__support-heading{
  font-size:24px;font-weight:900;color:var(--orange-deep);
  line-height:1.35;margin-bottom:20px;
}
.result__support-body{
  font-size:14px;font-weight:500;line-height:1.7;
  color:var(--ink);margin-bottom:24px;
}
.result__support-bold{font-weight:900}
.result__support-large{font-size:18px}
.result__support-staff{width:253px;margin:0 auto}

/* ===== STEPS ===== */
.steps{
  padding:40px 40px 30px;
  max-width:var(--max-width);margin:0 auto;
}
.steps__heading{
  text-align:center;font-size:30px;font-weight:900;
  color:var(--ink);margin-bottom:40px;
}
.steps__cards{
  display:flex;align-items:center;justify-content:center;gap:30px;
}
.steps__card{
  background:#fff4ec;
  border-radius:14px;
  box-shadow:0 5px 15px rgba(229,82,26,.08);
  width:320px;height:120px;padding:24px;
  display:flex;align-items:center;gap:16px;
}
.steps__num{
  background:var(--orange);color:#fff;font-weight:900;
  font-size:18px;width:34px;height:34px;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.steps__icon{height:51px;width:auto;flex-shrink:0}
.steps__text{font-size:18px;font-weight:700;line-height:1.35}
.steps__arrow{color:var(--orange);font-size:28px;flex-shrink:0}

/* ===== BOTTOM CTA ===== */
.bottom-cta{
  background:#fff2e8;
  padding:40px 40px 60px;
  text-align:center;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  /* Header */
  .header{height:56px}
  .header__inner{padding:0 16px}
  .header__logo{height:32px}
  .header__badge{font-size:11px;padding:4px 10px}
  .header__service{font-size:12px}

  /* Hero */
  .hero__bg-curve{height:500px}
  .hero__inner{
    flex-direction:column;align-items:center;
    padding:0 16px;min-height:auto;
  }
  .hero__text{flex:none;width:100%;padding-top:12px}
  .hero__label-img{width:180px}
  .hero__title{font-size:36px;margin-bottom:12px}
  .hero__lead{font-size:15px;margin-bottom:20px}
  .hero__benefits{gap:12px;margin-bottom:20px}
  .hero__benefit{width:100px}
  .hero__benefit-circle{width:100px;height:80px;padding:6px}
  .hero__benefit-icon{height:35px}
  .hero__benefit-text{font-size:11px}
  .cta-button{height:60px;padding:0 16px;max-width:100%}
  .cta-button__badge{width:42px;height:42px;font-size:14px}
  .cta-button__text{font-size:18px}
  .cta-button__arrow{width:36px;height:36px;font-size:22px}
  .cta-button--large{height:64px;max-width:100%;margin:40px auto}
  .cta-button--large .cta-button__text{font-size:20px}
  .cta-note{font-size:11px;margin-top:8px}

  /* Hero image */
  .hero__image-area{flex:none;width:100%;max-width:360px;margin:0 auto}
  .hero__woman-wrap{width:280px;height:280px;margin:10px auto 0}
  .hero__speech{top:-10px;left:-20px}
  .hero__speech-img{width:180px}
  .hero__speech-text{font-size:14px}
  .hero__deco-stripe{width:80px;height:80px;top:0;left:-40px}
  .hero__deco-item--laptop{width:110px;bottom:0;left:-10px}
  .hero__deco-item--lightbulb{width:45px;top:20px;left:280px}
  .hero__deco-item--books{width:150px;bottom:0;right:0}
  .hero__deco-pink{width:90px;top:200px;left:300px}
  .hero__deco-yellow{width:80px;bottom:80px;left:30px}
  .hero__deco{display:none}
  .hero__deco-stripe{display:none}

  /* Recommend */
  .recommend{padding:32px 16px 24px}
  .section-heading{font-size:22px;margin-bottom:24px;gap:10px}
  .section-heading__slash{width:14px}
  .recommend__cards{
    display:grid;grid-template-columns:repeat(2,1fr);gap:16px;
  }
  .recommend__card{width:auto;padding:16px 12px 12px}
  .recommend__icon{height:55px;margin-bottom:10px}
  .recommend__text{font-size:12px}

  /* Result */
  .result{padding:32px 0}
  .result__inner{
    display:flex;flex-direction:column;
    padding:0 16px;gap:24px;
  }
  .result__text-area{grid-column:auto;grid-row:auto}
  .result__label{font-size:14px;padding:3px 12px}
  .result__title{font-size:22px;margin-bottom:20px}
  .result__title--large{font-size:26px}
  .result__check{font-size:16px;gap:8px}
  .result__check-icon{width:18px;height:18px}
  .result__phone{grid-column:auto;grid-row:auto;width:100%;text-align:center}
  .result__phone-img{width:220px;margin:0 auto;display:block}
  .result__support{
    grid-column:auto;grid-row:auto;
    width:100%;padding:24px 20px;
  }
  .result__support-heading{font-size:18px;margin-bottom:14px}
  .result__support-body{font-size:13px;margin-bottom:16px}
  .result__support-large{font-size:15px}
  .result__support-staff{width:180px}

  /* Steps */
  .steps{padding:24px 16px 20px}
  .steps__heading{font-size:22px;margin-bottom:24px}
  .steps__cards{flex-direction:column;gap:16px}
  .steps__card{width:100%;height:auto;padding:16px}
  .steps__arrow{transform:rotate(90deg);font-size:20px}
  .steps__text{font-size:15px}
  .steps__icon{height:40px}
}
