:root{
  --blue:#3687c6;
  --cyan:#53b9c8;
  --yellow:#fffa5f;
  --grad:linear-gradient(90deg,#53b9c8 0%,#3687c6 100%);
  --grad-rev:linear-gradient(90deg,#3687c6 0%,#53b9c8 100%);
  --ink:#3e3e40;
  --ink2:#55555a;
  --ink3:#5b5b60;
  --muted:#666;
  --card-sh:0 0 16px rgba(0,0,0,.08);
  --card-sh-sm:0 4px 16px rgba(0,0,0,.04);
  --ease:.3s cubic-bezier(.4,.4,0,1);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN","Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  line-height:1.8;-webkit-font-smoothing:antialiased;color:var(--ink);
  background:#fff;overflow-x:hidden;
}
.zen{font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif}
.afacad{font-family:"Afacad",sans-serif}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:1080px;margin:0 auto;padding:0 30px}
.sec{padding:clamp(64px,9vw,100px) 0;position:relative}
.gtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}

/* ===== 英語ラベル ===== */
.en-label{
  font-family:"Afacad",sans-serif;font-weight:600;letter-spacing:3px;text-transform:capitalize;
  font-size:clamp(28px,5vw,36px);line-height:1;text-align:center;display:block;
  background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.h2{
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;font-weight:700;
  font-size:clamp(26px,5.2vw,40px);text-align:center;letter-spacing:1.5px;
  margin-top:6px;line-height:1.45;
}
.h2 em{font-style:normal}
.lead{
  text-align:center;font-size:clamp(15px,2.6vw,19px);line-height:2;color:var(--ink2);
  margin:22px auto 0;max-width:760px;
}

/* ===== ボタン ===== */
.btn{
  height:80px;border-radius:96px;padding:0 30px;min-width:300px;flex:0 1 408px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;font-weight:700;
  transition:transform var(--ease);text-align:center;
}
.btn .pill{background:var(--yellow);color:var(--blue);border-radius:100px;padding:3px 12px 2px;font-size:13px;font-weight:700;line-height:1.4}
.btn .main{font-size:clamp(19px,3.4vw,24px);display:flex;align-items:center;gap:8px}
.btn-fill{background:var(--grad);color:#fff}
.btn-fill:hover{transform:translateY(-3px)}
.btn-outline{background:#fff;border:2px solid var(--blue);color:var(--blue)}
.btn-outline:hover{transform:translateY(-3px)}
.btn .main svg{width:22px;height:22px;flex:none}
.cta-row{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;align-items:center}

/* ===== アナウンスバー ===== */
.announce{
  background:linear-gradient(90deg,#e8f6f8 0%,#fff171 100%);
  text-align:center;padding:9px 20px;font-size:clamp(12px,2.4vw,15px);font-weight:700;
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
}
.announce span{
  background:linear-gradient(0deg,#53b9c8,#3687c6);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

/* ===== ヘッダー ===== */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);backdrop-filter:blur(8px);border-bottom:1px solid #eef2f4}
.header-bar{display:flex;align-items:center;justify-content:space-between;height:74px;gap:18px}
.logo{display:flex;align-items:center;gap:11px}
.logo .mark{width:42px;height:42px;flex:none}
.logo .txt b{display:block;font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;font-weight:900;font-size:18px;letter-spacing:1px;line-height:1.1;color:var(--blue)}
.logo .txt small{display:block;font-size:11px;color:var(--muted);letter-spacing:.5px}
.hnav{display:flex;align-items:center;gap:26px}
.hnav a{font-size:14px;font-weight:600;color:var(--ink2);transition:color var(--ease)}
.hnav a:hover{color:var(--blue)}
.htel{text-align:right;line-height:1.2}
.htel b{font-family:"Afacad",sans-serif;font-weight:700;font-size:22px;color:var(--blue);letter-spacing:.5px}
.htel small{display:block;font-size:11px;color:var(--muted)}
.header-cta{
  height:50px;border-radius:96px;padding:0 26px;background:var(--grad);color:#fff;font-weight:700;
  display:flex;align-items:center;gap:7px;font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  font-size:15px;transition:transform var(--ease);white-space:nowrap;
}
.header-cta:hover{transform:translateY(-2px)}
.header-cta svg{width:18px;height:18px}
.hnav-extra{display:flex;align-items:center;gap:18px}
@media(max-width:980px){.hnav{display:none}}
@media(max-width:680px){
  .header-bar{height:62px}
  .htel{display:none}
  .logo .mark{width:36px;height:36px}
  .logo .txt b{font-size:15px}
  .header-cta{height:42px;padding:0 18px;font-size:13px}
}

/* ===== ヒーロー ===== */
.hero{position:relative;overflow:hidden;background:
  radial-gradient(circle at 85% 12%,rgba(83,185,200,.14),transparent 42%),
  radial-gradient(circle at 8% 88%,rgba(54,135,198,.10),transparent 40%),
  linear-gradient(180deg,#f4fbfc 0%,#fff 70%);
  padding:clamp(48px,7vw,80px) 0 clamp(56px,8vw,90px)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(26px,4vw,50px);align-items:center}
.hero h1{
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;font-weight:700;
  font-size:clamp(28px,5.2vw,46px);line-height:1.32;letter-spacing:1.5px;
}
.hero h1 .big{display:inline-block;font-size:clamp(40px,8vw,72px);line-height:1.1;letter-spacing:2px}
.hero .sub{margin-top:20px;font-size:clamp(14px,2.4vw,17px);color:var(--ink2);line-height:1.95}
.hero-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.hero-tags li{
  list-style:none;background:#fff;border:1.5px solid #d9ecf1;border-radius:96px;
  padding:8px 16px 7px;font-size:clamp(12px,2.2vw,14px);font-weight:700;color:var(--blue);
  display:flex;align-items:center;gap:7px;box-shadow:var(--card-sh-sm);
}
.hero-tags li svg{width:16px;height:16px;flex:none}
.hero .cta-row{justify-content:flex-start;margin-top:30px}
.hero .btn{flex:0 1 300px;min-width:260px;height:74px}
/* ヒーロー右：ビジュアルカード */
.hero-visual{position:relative}
.hero-card{
  background:#fff;border-radius:30px;box-shadow:var(--card-sh);padding:30px 28px;position:relative;
  border:1px solid #eef4f6;
}
.hero-num{display:flex;align-items:flex-end;gap:12px;justify-content:center;margin-bottom:6px}
.hero-num .n{font-family:"Afacad",sans-serif;font-weight:700;font-size:clamp(56px,11vw,96px);line-height:.9}
.hero-num .u{font-weight:700;font-size:22px;color:var(--ink);padding-bottom:14px}
.hero-card .cap{text-align:center;font-weight:700;font-size:15px;color:var(--ink2);letter-spacing:1px}
.hero-card .cap b{color:var(--blue)}
.hero-mini{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;margin-top:24px}
.hero-mini div{background:#f4fbfc;border-radius:16px;padding:14px 8px;text-align:center}
.hero-mini .mn{font-family:"Afacad",sans-serif;font-weight:700;font-size:26px;line-height:1;color:var(--blue)}
.hero-mini .ml{font-size:11px;color:var(--muted);margin-top:5px;font-weight:600}
.hero-badge{
  position:absolute;top:-18px;right:-10px;z-index:3;background:var(--yellow);color:var(--blue);
  font-weight:900;font-size:13px;border-radius:50%;width:84px;height:84px;display:flex;
  align-items:center;justify-content:center;text-align:center;line-height:1.25;transform:rotate(-8deg);
  box-shadow:0 8px 22px rgba(54,135,198,.18);font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
}
@media(max-width:880px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{order:-1;max-width:460px;margin:0 auto}
  .hero .cta-row{justify-content:center}
}

/* ===== About / POINT ===== */
.point-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:clamp(36px,5vw,54px)}
.point-card{background:#fff;border-radius:24px;box-shadow:var(--card-sh);padding:30px 22px;text-align:center;position:relative}
.point-card .pn{
  font-family:"Afacad",sans-serif;font-weight:700;font-size:13px;letter-spacing:1.5px;color:#fff;
  background:var(--grad);border-radius:96px;padding:5px 16px;display:inline-block;margin-bottom:18px;
}
.point-ico{width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#e8f6f8,#f4fbfc);display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.point-ico svg{width:32px;height:32px}
.point-card p{font-size:14px;color:var(--ink2);line-height:1.75;text-align:left}
@media(max-width:900px){.point-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.point-grid{grid-template-columns:1fr}}

/* ===== 課題 ===== */
.challenge-section{
  position:relative;width:100%;height:688px;padding:100px 0 120px;overflow:hidden;
  color:#3e3e40;background:linear-gradient(180deg,#fff 0%,#f8f8f8 56%,#fff 100%)
}
.challenge-inner{
  position:relative;width:1080px;height:468px;margin:0 auto;padding:0 30px
}
.challenge-heading{
  position:relative;width:1020px;height:98px;display:flex;flex-direction:column;
  align-items:center;gap:4px
}
.challenge-label{
  width:100%;height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;
  font-weight:600;line-height:36px;letter-spacing:3px;text-align:center
}
.challenge-heading h2{
  height:58px;margin:0;display:flex;align-items:flex-end;justify-content:center;gap:2px;
  font-size:40px;font-weight:700;line-height:58px;letter-spacing:1.5px;text-align:center;
  white-space:nowrap
}
.challenge-heading h2 span,.challenge-heading h2 em{
  font-size:40px;font-style:normal;line-height:58px
}
.challenge-heading h2 em{
  background:linear-gradient(90deg,#53b9c8,#3687c6);
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:50px
}
.challenge-illustration{
  position:absolute;z-index:1;top:-66px;left:806px;width:518px;height:390px;
  max-width:none;object-fit:contain;pointer-events:none
}
.challenge-grid{
  position:relative;z-index:2;width:920px;height:310px;margin:60px auto 0;
  display:flex;flex-wrap:wrap;align-content:center;align-items:center;gap:30px
}
.challenge-card{
  width:445px;height:140px;padding:29px 31px;display:flex;align-items:center;gap:14px;
  border:1px solid #f0f0f0;border-radius:24px;background:#fff;
  box-shadow:0 0 16px rgba(0,0,0,.08)
}
.challenge-card:last-child{height:116px}
.challenge-check{
  width:42px;height:42px;flex:0 0 42px;display:flex;align-items:center;
  justify-content:center;border-radius:50%;background:#f1f1f1
}
.challenge-check img{width:24px;height:24px}
.challenge-card p{
  width:327px;margin:0;color:#3e3e40;font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;
  font-size:19px;font-weight:600;line-height:1.6;letter-spacing:1.14px
}
.challenge-card p b{color:#3687c6;font-weight:600}
@media(max-width:760px){
  .challenge-section{height:698px;padding:120px 0 60px}
  .challenge-inner{width:100%;height:518px;margin:0;padding:0}
  .challenge-heading{width:100%;height:98px;gap:4px}
  .challenge-label{font-size:24px;line-height:36px}
  .challenge-heading h2{
    width:100%;height:58px;display:block;font-size:26px;line-height:29px;
    letter-spacing:1px;white-space:normal
  }
  .challenge-heading h2 span,.challenge-heading h2 em{font-size:26px;line-height:29px}
  .challenge-heading h2 em{font-size:32px}
  .challenge-question-end{display:block}
  .challenge-illustration{
    top:-105px;right:0;left:auto;width:180px;height:136px
  }
  .challenge-grid{
    width:330px;max-width:calc(100% - 60px);height:400px;margin:20px auto 0;
    display:flex;flex-direction:column;flex-wrap:nowrap;gap:16px
  }
  .challenge-card,.challenge-card:last-child{
    width:330px;max-width:100%;height:88px;min-height:88px;padding:20px;
    gap:14px;border-radius:24px
  }
  .challenge-check{width:22px;height:22px;flex-basis:22px}
  .challenge-check img{width:14px;height:14px}
  .challenge-card p{
    width:254px;max-width:calc(100% - 36px);font-size:16px;line-height:1.5;
    letter-spacing:.96px
  }
}

/* ===== 解決策 ===== */
.solution-section{
  position:relative;width:100%;height:1005px;overflow:visible;
  background:
    radial-gradient(ellipse 50% 378% at 50% 50%,rgba(255,253,234,.2) 0%,rgba(255,249,193,.2) 50%,rgba(255,245,151,.2) 100%),
    #fff
}
.solution-badge{
  position:absolute;z-index:4;top:-30px;left:50%;width:183px;height:73px;
  transform:translateX(-50%)
}
.solution-badge p{
  position:relative;z-index:2;width:183px;height:61px;margin:0;padding:5px 36px;
  border-radius:80px;background:#fff;color:#eb8329;font-size:26px;font-weight:700;
  line-height:51px;letter-spacing:1.56px;text-align:center;white-space:nowrap;
  box-shadow:0 0 16px rgba(0,0,0,.08)
}
.solution-badge p span{letter-spacing:3.64px}
.solution-badge img{
  position:absolute;z-index:1;top:58.5px;left:50%;width:19.588px;height:14.5px;
  max-width:none;transform:translateX(-50%)
}
.solution-heading{
  position:absolute;top:65.442px;left:50%;width:497px;height:189.115px;
  transform:translateX(-50%)
}
.solution-heading-inner{
  width:100%;height:100%;padding-top:15px;display:flex;flex-direction:column;
  align-items:center;gap:5px
}
.solution-logo-row{height:106.115px;display:flex;align-items:flex-end;gap:7px}
.solution-logo{
  position:relative;width:434px;height:106.115px;flex:0 0 434px;overflow:hidden
}
.solution-logo img{
  position:absolute;top:1.12%;left:-3.57%;width:106.31%;height:114.61%;
  max-width:none
}
.solution-logo-row>p{
  width:56px;margin:0;color:#55555a;font-size:28px;font-weight:700;line-height:51px;
  text-align:center;white-space:nowrap
}
.solution-heading h2{
  width:366px;height:63px;margin:0;padding-top:7px;color:#55555a;font-size:0;
  font-weight:700;line-height:51px;letter-spacing:2.04px;text-align:center;white-space:nowrap
}
.solution-heading h2 span{font-size:34px}
.solution-heading h2 em{
  color:#eb8329;font-size:44px;font-style:normal;letter-spacing:2.64px
}
.solution-cards{
  position:absolute;z-index:2;top:283.609px;left:50%;width:1090px;height:225px;
  padding:0 20px;transform:translateX(-50%);display:flex;align-items:flex-start;gap:50px
}
.solution-card{
  width:500px;height:225px;padding:51px 30px;display:flex;align-items:center;
  justify-content:center;overflow:hidden;border-radius:28px;background:#fff;
  box-shadow:0 0 16px rgba(0,0,0,.08)
}
.solution-card:nth-child(2){padding-top:52px;padding-bottom:52px}
.solution-card p{
  width:438px;margin:0;color:#3e3e40;font-size:23px;font-weight:700;
  line-height:1.8;letter-spacing:1.38px
}
.solution-card:nth-child(2) p{font-size:22.8px;letter-spacing:1.2px}
.solution-card p b{color:#3687c6;font-weight:700}
.solution-break-mobile{display:none}
.solution-illustration{
  position:absolute;z-index:1;top:441px;left:50%;width:731px;height:487px;
  transform:translateX(-50%)
}
.solution-illustration img{width:100%;height:100%;object-fit:cover}
@media(max-width:760px){
  .solution-section{height:700px}
  .solution-badge{top:-27px;width:160px;height:62px}
  .solution-badge p{
    width:160px;height:50px;padding:5px 24px;font-size:20px;line-height:40px;
    letter-spacing:1.2px
  }
  .solution-badge p span{letter-spacing:2.8px}
  .solution-badge img{top:47.5px;width:16px;height:12px}
  .solution-heading{top:45px;width:320px;height:132px}
  .solution-heading-inner{padding-top:15px;gap:5px}
  .solution-logo-row{height:61px;gap:7px}
  .solution-logo{width:250px;height:61px;flex-basis:250px}
  .solution-logo-row>p{
    width:36px;font-size:20px;line-height:30px
  }
  .solution-heading h2{
    width:280px;height:51px;padding-top:0;line-height:51px;letter-spacing:1.56px
  }
  .solution-heading h2 span{font-size:26px}
  .solution-heading h2 em{font-size:34px;letter-spacing:2.04px}
  .solution-cards{
    top:180px;width:330px;height:258px;padding:0;display:flex;flex-direction:column;
    gap:20px
  }
  .solution-card,.solution-card:nth-child(2){
    width:330px;height:119px;min-height:119px;padding:16px 20px;border-radius:20px
  }
  .solution-card p{
    width:290px;font-size:16px;line-height:1.8;letter-spacing:.96px;text-align:center
  }
  .solution-card:nth-child(2) p{font-size:16px;letter-spacing:.96px}
  .solution-break-mobile{display:inline}
  .solution-break-desktop{display:none}
  .solution-illustration{top:446px;width:330px;height:220px}
}

/* ===== 強み ===== */
.strength-section{
  position:relative;width:100%;height:1544px;overflow:hidden;color:#3e3e40;
  background:
    radial-gradient(ellipse 118.27% 274.06% at 85% 70.3%,rgba(83,185,200,.112) 0%,rgba(42,93,100,.056) 21%,transparent 42%),
    radial-gradient(ellipse 78.87% 182.77% at 8% 40.1%,rgba(54,135,198,.08) 0%,transparent 40%),
    linear-gradient(180deg,rgba(244,251,252,.1) 0%,rgba(255,255,255,.1) 70%),
    #fff
}
.strength-inner{
  width:1080px;height:100%;margin:0 auto;padding:100px 30px 140px;
  display:flex;flex-direction:column;align-items:center;gap:40px
}
.strength-heading{width:1020px;height:100px;flex:0 0 100px;text-align:center}
.strength-label{
  width:100%;height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;
  font-weight:600;line-height:36px;letter-spacing:3px
}
.strength-heading h2{
  width:100%;height:64px;margin:0;padding-top:6px;color:#3e3e40;font-size:40px;
  font-weight:700;line-height:58px;letter-spacing:1.5px;white-space:nowrap
}
.strength-heading h2 em{
  background:linear-gradient(90deg,#53b9c8,#3687c6);
  -webkit-background-clip:text;background-clip:text;color:transparent;font-style:normal
}
.strength-list{
  width:1024px;height:1164px;display:grid;grid-template-rows:206px 220px 206px 206px 206px;
  gap:30px
}
.strength-card{
  width:1024px;padding:40px;display:flex;align-items:center;justify-content:center;
  gap:30px;border-radius:24px;background:#fff;box-shadow:0 0 16px rgba(0,0,0,.08)
}
.strength-icon{
  width:126px;height:126px;flex:0 0 126px;padding:20px;display:flex;align-items:center;
  justify-content:center;border-radius:50%;background:rgba(54,135,198,.06)
}
.strength-icon img{width:86px;height:86px}
.strength-copy{
  width:788px;flex:0 0 788px;display:flex;flex-direction:column;align-items:flex-start
}
.strength-copy h3{
  width:672px;margin:0;color:#3e3e40;font-size:24px;font-weight:700;
  line-height:1.4;letter-spacing:1.44px
}
.strength-copy h3 em{color:#eb8329;font-style:normal}
.strength-copy p{
  width:788px;margin:0;padding-top:10px;color:#5b5b60;font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;
  font-size:18px;font-weight:400;line-height:1.8;letter-spacing:1.08px
}
@media(max-width:760px){
  .strength-section{height:2055px}
  .strength-inner{
    width:100%;height:100%;padding:60px 0;gap:30px
  }
  .strength-heading{width:100%;height:71px;flex-basis:71px}
  .strength-label{font-size:24px;line-height:36px}
  .strength-heading h2{
    height:35px;padding-top:0;font-size:26px;line-height:35px;letter-spacing:1px
  }
  .strength-heading h2 em{font-size:32px}
  .strength-list{
    width:330px;max-width:calc(100% - 60px);height:1834px;
    grid-template-rows:313px 400px 313px 371px 313px;gap:30px
  }
  .strength-card{
    width:330px;max-width:100%;padding:25px;flex-direction:column;justify-content:flex-start;
    gap:20px;border-radius:24px
  }
  .strength-icon{
    width:96px;height:96px;flex-basis:96px;padding:16px
  }
  .strength-icon img{width:64px;height:64px}
  .strength-copy{width:280px;flex:0 0 auto}
  .strength-copy h3{
    width:280px;font-size:18px;line-height:1.4;letter-spacing:1.08px
  }
  .strength-copy p{
    width:280px;padding-top:10px;font-size:16px;line-height:1.8;letter-spacing:.96px
  }
}

/* ===== 比較表 ===== */
.comparison-section{
  width:100%;height:1011px;padding:100px 0 120px;overflow:hidden;background:#fff;color:#3e3e40
}
.comparison-inner{
  width:1020px;height:791px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:16px
}
.comparison-heading{width:980px;height:104px;flex:0 0 104px;text-align:center}
.comparison-label{
  width:100%;height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;font-weight:600;
  line-height:36px;letter-spacing:3px
}
.comparison-heading h2{
  width:100%;height:58px;margin:10px 0 0;display:flex;align-items:center;justify-content:center;
  font-size:40px;font-weight:700;line-height:58px;letter-spacing:1.5px;white-space:nowrap
}
.comparison-heading h2 em{
  background:linear-gradient(90deg,#53b9c8,#3687c6);-webkit-background-clip:text;
  background-clip:text;color:transparent;font-style:normal
}
.comparison-stage{position:relative;width:1020px;height:671px;flex:0 0 671px}
.comparison-scroller{
  position:absolute;top:0;left:0;width:100%;height:631px;overflow:hidden
}
.comparison-table-wrap{position:relative;width:940px;height:599px;margin:32px 0 0 40px}
.comparison-table{
  position:absolute;top:74px;left:0;width:940px;border:0;border-collapse:separate;border-spacing:0;
  table-layout:fixed;color:#55555a
}
.comparison-table .comparison-col-label{width:185px}
.comparison-table .comparison-col-feature{width:226px}
.comparison-table .comparison-col-other{width:176.333px}
.comparison-table th,.comparison-table td{
  height:64px;padding:0 10px;border:0;border-bottom:1px solid #e7eef2;background:#fff;
  font-size:15px;font-weight:400;line-height:27px;text-align:center;vertical-align:middle;white-space:nowrap
}
.comparison-table thead th{
  position:relative;height:76px;background:#eef4f8;color:#3e3e40;
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;font-size:17px;font-weight:700;
  line-height:30.6px
}
.comparison-table thead th:first-child,.comparison-table tbody th{
  padding-left:10px;text-align:left;color:#3e3e40;font-size:14px;font-weight:700;line-height:25.2px
}
.comparison-table tbody tr:nth-child(even) th,
.comparison-table tbody tr:nth-child(even) td:not(.is-feature){background:#f3f9fb}
.comparison-table th.is-feature{
  height:76px;padding:0;border:0;background:transparent;color:#fff;line-height:1
}
.comparison-feature-head{
  position:absolute;top:-25px;left:0;width:100%;height:101px;border:2.5px solid #3687c6;
  border-bottom:1px solid #e3eef6;border-radius:20px 20px 0 0;
  background:linear-gradient(90deg,#53b9c8,#3687c6)
}
.comparison-feature-head strong{
  display:block;margin-top:31px;font-size:22px;font-weight:700;line-height:20.74px
}
.comparison-feature-head small{
  display:block;margin-top:4px;font-size:12px;font-weight:500;line-height:14.64px;opacity:.92
}
.comparison-table td.is-feature{
  padding:0;border-right:2.5px solid #3687c6;border-bottom:1px solid #e3eef6;
  border-left:2.5px solid #3687c6;background:#fff
}
.comparison-table tbody tr:last-child td.is-feature{border-bottom:2.5px solid #3687c6}
.comparison-duration{
  color:#3687c6;font-size:27px;font-weight:700;line-height:27px;letter-spacing:.5px
}
.comparison-mark{
  display:inline-block;color:#a3b9c6;font-family:"Afacad",sans-serif;font-size:26px;
  font-weight:700;line-height:26px
}
.comparison-mark.is-primary{color:#3687c6}
.comparison-mark.is-muted{color:#b6c0c6}
.comparison-bubble{
  position:absolute;top:-49px;left:50%;z-index:2;width:209px;height:61px;transform:translateX(-50%);
  display:flex;align-items:center;justify-content:center;border-radius:80px;background:#fffa5f;
  color:#3687c6;font-size:26px;font-weight:700;line-height:51px;letter-spacing:1.56px;
  white-space:nowrap
}
.comparison-bubble img{
  position:absolute;top:58.5px;left:50%;width:19.5885px;height:14.5px;
  max-width:none;transform:translateX(-50%) rotate(180deg)
}
.comparison-footer{
  position:absolute;top:623px;left:0;width:1020px;height:48px;display:flex;align-items:flex-start;
  justify-content:center;text-align:center
}
.comparison-footer p{
  height:47px;margin:0;display:flex;align-items:center;border-bottom:3px solid #eb8329;
  font-size:26px;font-weight:700;line-height:46.8px;white-space:nowrap
}
.comparison-footer p span{
  background:linear-gradient(90deg,#53b9c8,#3687c6);-webkit-background-clip:text;
  background-clip:text;color:transparent
}
.comparison-footer p strong{font-weight:700}
@media(max-width:760px){
  .comparison-section{height:791px;padding:40px 0}
  .comparison-inner{width:390px;max-width:100%;height:711px;margin:0;align-items:flex-start;gap:0}
  .comparison-heading{width:390px;max-width:100%;height:94px;flex-basis:94px}
  .comparison-label{font-size:26px;line-height:36px}
  .comparison-heading h2{height:58px;margin:0;font-size:22px;line-height:58px}
  .comparison-heading h2 em{font-size:28px}
  .comparison-stage{width:390px;max-width:100%;height:617px;flex-basis:617px}
  .comparison-scroller{
    top:0;width:100%;height:552px;padding:20px 0 26px 20px;overflow-x:auto;overflow-y:hidden;
    -webkit-overflow-scrolling:touch;scrollbar-width:none
  }
  .comparison-scroller::-webkit-scrollbar{display:none}
  .comparison-table-wrap{width:720px;height:506px;margin:0;flex:0 0 720px}
  .comparison-table{top:43px;width:720px}
  .comparison-table .comparison-col-label{width:142px}
  .comparison-table .comparison-col-feature{width:173px}
  .comparison-table .comparison-col-other{width:135px}
  .comparison-feature-head{top:-10.542px;height:89px;border-radius:20px 20px 0 0}
  .comparison-feature-head strong{margin-top:22px;font-size:17px}
  .comparison-feature-head small{margin-top:2px}
  .comparison-bubble{
    top:-34.18px;width:114px;height:39px;font-size:14px;line-height:25.2px;
    letter-spacing:0;box-shadow:0 5px 7px rgba(54,135,198,.18)
  }
  .comparison-bubble img{top:31.64px;left:calc(50% + 2.54px)}
  .comparison-footer{
    top:552px;width:390px;max-width:100%;height:65px;align-items:flex-start
  }
  .comparison-footer p{
    width:286px;height:65px;padding-bottom:12px;flex-direction:column;gap:5px;
    justify-content:flex-start;border-bottom-width:3px;font-size:20px;line-height:24px
  }
  .comparison-footer p span,.comparison-footer p strong{display:block;height:24px}
}

/* ===== 実績 ===== */
.results-section{
  position:relative;z-index:1;width:100%;height:700.383px;padding:100px 0;
  display:flex;flex-direction:column;align-items:center;gap:35px;color:#3e3e40;text-align:center;
  background:radial-gradient(ellipse 50% 378% at 50% 50%,#fffdea 0%,#fff9c1 50%,#fff597 100%)
}
.results-heading{width:100%;height:94px;flex:0 0 94px}
.results-label{
  width:100%;height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;font-weight:600;
  line-height:36px;letter-spacing:3px
}
.results-heading h2{
  width:100%;height:58px;margin:0;display:flex;align-items:center;justify-content:center;
  font-size:30px;font-weight:700;line-height:58px;letter-spacing:1.5px;white-space:nowrap
}
.results-heading h2 em{
  background:linear-gradient(90deg,#53b9c8,#3687c6);-webkit-background-clip:text;
  background-clip:text;color:transparent;font-size:40px;font-style:normal
}
.results-claims{position:relative;width:558px;height:165.383px;flex:0 0 165.383px}
.results-laurel{
  position:absolute;top:0;width:68.573px;height:147.904px;display:block;max-width:none
}
.results-laurel-left{left:0}
.results-laurel-right{right:0;transform:scaleX(-1)}
.results-claims-copy{position:absolute;inset:0}
.results-claims-title{
  position:absolute;top:2.69px;left:0;width:100%;margin:0;font-size:32.27px;
  font-weight:700;line-height:48.405px;letter-spacing:2.0169px;white-space:nowrap
}
.results-claims-count{
  position:absolute;top:53.78px;left:50%;margin:0;transform:translateX(-50%);
  display:flex;align-items:flex-end;justify-content:center;gap:1.345px;color:#eb8329;
  font-weight:700;line-height:1.5;white-space:nowrap
}
.results-claims-count>*,
.results-region-count>*{
  text-box-trim:trim-both;text-box-edge:cap alphabetic
}
.results-claims-count span:first-child{font-size:48.405px;letter-spacing:2.0169px}
.results-claims-count strong{font-size:121.012px;font-weight:700;letter-spacing:-4.8405px}
.results-claims-count span:last-child{font-size:61.851px;letter-spacing:2.0169px}
.results-note{
  position:absolute;top:154px;left:0;width:100%;margin:0;font-size:14px;
  font-weight:300;line-height:21px;letter-spacing:1.5px;white-space:nowrap
}
.results-region{
  width:415px;height:171px;flex:0 0 171px;padding:30px 68px;display:flex;
  flex-direction:column;align-items:center;gap:14px;border-radius:30px;background:#fff
}
.results-region-title{
  width:100%;margin:0;font-size:24px;font-weight:700;
  line-height:36px;letter-spacing:1.5px;white-space:nowrap
}
.results-region-count{
  width:100%;margin:0;display:flex;align-items:flex-end;
  justify-content:center;color:#eb8329;font-weight:700;line-height:1.5;white-space:nowrap
}
.results-region-count strong{font-size:90px;font-weight:700;letter-spacing:-3.6px}
.results-region-count span{font-size:46px;letter-spacing:1.5px}
.results-region-note{
  width:100%;margin:0;font-size:13px;font-weight:300;
  line-height:19.5px;letter-spacing:1.5px;white-space:nowrap
}
.results-region-title,
.results-region-note{ text-box-trim:trim-both;text-box-edge:cap alphabetic }
.results-map{
  position:absolute;bottom:-38.617px;left:calc(50% + 210px);
  width:min(630px,calc(50% - 234px));height:auto;aspect-ratio:3/2;
  display:block;max-width:none;object-fit:contain;pointer-events:none
}
@media(max-width:760px){
  .results-section{height:425px;padding:50px 0;gap:20px}
  .results-heading{height:70px;flex-basis:70px}
  .results-label{font-size:26px}
  .results-heading h2{height:34px;align-items:flex-end;gap:2px;font-size:22px;line-height:33.6px}
  .results-heading h2 em{font-size:28px}
  .results-claims{width:330px;height:98px;flex-basis:98px}
  .results-laurel{width:40.308px;height:86.94px}
  .results-claims-title{
    top:3.58px;font-size:16px;line-height:24px;letter-spacing:1.1855px
  }
  .results-claims-count{top:28.61px;gap:.79px}
  .results-claims-count span:first-child{font-size:28.453px;letter-spacing:1.1855px}
  .results-claims-count strong{font-size:71.133px;letter-spacing:-2.8453px}
  .results-claims-count span:last-child{font-size:36.357px;letter-spacing:1.1855px}
  .results-note{top:84.31px;font-size:10px;line-height:15px;letter-spacing:1.1855px}
  .results-region{
    width:330px;height:117px;flex-basis:117px;padding:20px 38px;border-radius:20px
  }
  .results-region-title{font-size:18px;line-height:27px}
  .results-region-count strong{font-size:45px;letter-spacing:-1.8px}
  .results-region-count span{font-size:30px}
  .results-region-note{font-size:10px;line-height:15px}
  .results-map{top:316.54px;right:15px;bottom:auto;left:auto;width:200px}
}

/* ===== お客様の声 ===== */
.voice-section{
  position:relative;padding:100px 0 120px;background:#fff;overflow:hidden
}
.voice-heading{
  width:min(1020px,calc(100% - 60px));height:100px;margin:0 auto
}
.voice-label{
  margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  font-size:36px;font-weight:600;line-height:36px;letter-spacing:3px;text-align:center
}
.voice-heading h2{
  height:64px;margin:0;padding-top:6px;display:flex;align-items:flex-start;justify-content:center;
  color:var(--ink);font-size:40px;font-weight:700;line-height:58px;letter-spacing:1.5px;
  text-align:center;white-space:nowrap
}
.voice-heading h2 em{
  background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;
  font-style:normal
}
.voice-track-scroller{
  width:min(1080px,calc(100% - 60px));margin:40px auto 0;overflow:visible
}
.voice-track{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:50px;width:100%
}
.voice-card{
  min-width:0;display:flex;flex-direction:column;gap:32px;overflow:hidden;
  padding:0 0 40px;border-radius:20px;background:#fff;color:#000;
  box-shadow:0 0 16px rgba(0,0,0,.08);
  transition:transform var(--ease),box-shadow var(--ease)
}
.voice-card:hover{
  transform:translateY(-4px);box-shadow:0 12px 28px rgba(0,0,0,.12)
}
.voice-card:focus-visible{
  outline:3px solid rgba(54,135,198,.45);outline-offset:4px
}
.voice-card-media{
  width:100%;height:232px;flex:0 0 232px;overflow:hidden;background:#eef5f7
}
.voice-card-image{
  width:100%;height:100%;max-width:none;object-fit:cover
}
.voice-card-body{
  display:flex;flex-direction:column;align-items:flex-start;gap:22px;
  width:100%;padding:0 30px;color:#000
}
.voice-card-body h3{
  width:100%;margin:0;font-size:20px;font-weight:700;line-height:normal;
  letter-spacing:1.2px
}
.voice-card-profile{
  width:100%;font-size:16px;font-weight:400;line-height:normal;letter-spacing:.96px
}
.voice-card-profile p{margin:0}
.voice-card-profile p:first-child{font-weight:500}
.voice-button-wrap{
  display:flex;justify-content:center;padding-top:40px
}
.voice-button{
  display:flex;align-items:center;justify-content:center;gap:16px;
  min-height:58px;padding:14px 38px;border-radius:30px;background:var(--grad);
  color:#fff;font-size:20px;font-weight:500;line-height:1.5;letter-spacing:1.2px;
  transition:transform var(--ease),box-shadow var(--ease)
}
.voice-button svg{width:26px;height:26px;flex:none}
.voice-button:hover{
  transform:translateY(-3px);box-shadow:0 10px 20px rgba(54,135,198,.2)
}
.voice-button:focus-visible{
  outline:3px solid rgba(54,135,198,.45);outline-offset:4px
}
@media(max-width:760px){
  .voice-section{padding:50px 0 60px}
  .voice-heading{width:100%;height:70px}
  .voice-label{font-size:26px;line-height:36px}
  .voice-heading h2{
    height:34px;padding:0 10px;align-items:flex-end;font-size:22px;line-height:33.6px
  }
  .voice-heading h2 em{font-size:28px}
  .voice-track-scroller{
    --voice-card-width:min(70.94vw,276.667px);
    --voice-card-gap:min(5.128vw,20px);
    width:100%;margin-top:20px;margin-bottom:-32px;padding-bottom:32px;
    overflow-x:auto;overflow-y:hidden;
    scroll-snap-type:x mandatory;scroll-padding-inline:calc((100vw - var(--voice-card-width))/2);
    overscroll-behavior-inline:contain;-webkit-overflow-scrolling:touch;
    scrollbar-width:none
  }
  .voice-track-scroller::-webkit-scrollbar{display:none}
  .voice-track{
    display:flex;gap:var(--voice-card-gap);width:max-content;
    padding-inline:calc((100vw - var(--voice-card-width))/2)
  }
  .voice-card{
    width:var(--voice-card-width);flex:0 0 var(--voice-card-width);
    gap:32px;padding-bottom:40px;scroll-snap-align:center
  }
  .voice-card:hover{transform:none}
  .voice-card-media{
    height:auto;flex-basis:auto;aspect-ratio:276.667/202
  }
  .voice-card-body{gap:22px;padding:0 30px}
  .voice-card-body h3{font-size:18px;line-height:normal;letter-spacing:1.08px}
  .voice-card-profile{font-size:16px;line-height:normal}
  .voice-button-wrap{padding-top:30px}
  .voice-button{
    min-height:54px;padding:13px 38px;font-size:18px;letter-spacing:1.08px
  }
  .voice-button svg{width:16px;height:16px}
}

/* ===== フロー ===== */
.flow-section{
  position:relative;width:100%;padding:100px 0;overflow:hidden;color:#3e3e40;
  background:linear-gradient(162deg,rgba(242,246,249,.9) 14%,rgba(242,246,249,.36) 84%)
}
.flow-inner{width:1080px;margin:0 auto;padding:0 30px}
.flow-heading{width:1020px;height:160px;text-align:center}
.flow-label{
  width:100%;height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;font-weight:600;
  line-height:36px;letter-spacing:3px
}
.flow-heading h2{
  width:100%;height:64px;margin:0;display:flex;align-items:flex-end;justify-content:center;
  font-size:40px;font-weight:700;line-height:58px;letter-spacing:1.5px;white-space:nowrap
}
.flow-heading h2 em{
  background:linear-gradient(90deg,#53b9c8,#3687c6);-webkit-background-clip:text;
  background-clip:text;color:transparent;font-style:normal
}
.flow-lead{
  width:760px;height:60px;margin:0 auto;padding-top:22px;color:#55555a;
  font-size:18px;font-weight:400;line-height:38px;letter-spacing:1.08px;text-align:center;
  white-space:nowrap
}
.flow-mobile-break{display:none}
.flow-scroller{width:1020px;margin-top:10px;padding-top:74px;overflow:visible}
.flow-list{
  width:1020px;height:179.5555px;margin:0;padding:0;display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));gap:20px;list-style:none
}
.flow-card{
  position:relative;width:100%;height:178.5555px;padding:13px 17px 23px;
  display:flex;flex-direction:column;justify-content:center;background:#fff;
  border:1px solid #f0f0f0;border-radius:24px;box-shadow:0 0 8px rgba(0,0,0,.08);
  text-align:center;scroll-snap-align:start
}
.flow-step-label{
  position:absolute;top:-39.57px;left:-1px;width:153.3333px;margin:0;
  display:flex;flex-direction:column;align-items:center;color:#eb8329;font-weight:700;
  line-height:25.2px;text-align:center;white-space:nowrap
}
.flow-step-label span{font-size:16px;letter-spacing:2px}
.flow-step-label strong{font-size:40px;font-weight:700;line-height:25.2px}
.flow-card-image{width:100%;height:93.5555px;padding-top:14px}
.flow-card-image img{width:100%;height:auto;aspect-ratio:3/2;object-fit:cover}
.flow-card-title{
  width:100%;height:49px;margin:0;padding-top:8px;color:#3e3e40;
  font-size:15px;font-weight:700;line-height:30.6px;letter-spacing:.45px;text-align:center
}
.flow-card:nth-child(3) .flow-card-title{line-height:20.25px}
@media(max-width:760px){
  .flow-section{padding:50px 0;background:linear-gradient(128deg,rgba(242,246,249,.9) 14%,rgba(242,246,249,.36) 84%)}
  .flow-inner{width:100%;margin:0;padding:0}
  .flow-heading{width:calc(100% - 60px);max-width:330px;height:162px;margin:0 auto}
  .flow-label{font-size:26px;line-height:36px}
  .flow-heading h2{height:34px;align-items:flex-end;font-size:22px;line-height:33.6px}
  .flow-heading h2 em{font-size:28px}
  .flow-lead{
    width:100%;height:92px;padding:20px 12px 0;font-size:16px;line-height:24px;
    letter-spacing:.96px;white-space:normal
  }
  .flow-mobile-break{display:block}
  .flow-scroller{
    width:100%;margin-top:10px;margin-bottom:-12px;padding:44px 30px 12px;
    overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;
    scroll-padding-inline:30px;overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;scrollbar-width:none
  }
  .flow-scroller::-webkit-scrollbar{display:none}
  .flow-list{flex:0 0 1020px}
}

/* ===== FAQ ===== */
.faq-list{max-width:820px;margin:clamp(36px,5vw,52px) auto 0;display:flex;flex-direction:column;gap:14px}
.faq-item{background:#fff;border-radius:22px;box-shadow:var(--card-sh);overflow:hidden;transition:box-shadow 280ms cubic-bezier(.4,.4,0,1)}
.faq-q{display:flex;align-items:center;gap:16px;padding:20px 24px;cursor:pointer;list-style:none;font-weight:700;font-size:clamp(15px,2.6vw,17px);color:var(--ink)}
.faq-q::-webkit-details-marker{display:none}
.faq-q .qmark{font-family:"Afacad",sans-serif;font-weight:700;font-size:22px;color:var(--blue);flex:none;width:26px}
.faq-q .ttl{flex:1}
.faq-q .pl{width:30px;height:30px;border-radius:50%;background:rgba(54,135,198,.1);flex:none;position:relative;transition:background-color 280ms cubic-bezier(.4,.4,0,1)}
.faq-q .pl::before{content:"+";position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:var(--blue);font-weight:700;font-family:"Afacad",sans-serif;font-size:20px}
.faq-item:not(.is-faq-enhanced)[open] .faq-q .pl,
.faq-item.is-faq-open .faq-q .pl{background:rgba(54,135,198,.16)}
.faq-item:not(.is-faq-enhanced)[open] .faq-q .pl::before,
.faq-item.is-faq-open .faq-q .pl::before{content:"−"}
.faq-a{display:none;padding:0 24px 22px 66px;color:var(--ink2);font-size:14.5px;line-height:1.9}
.faq-item[open] .faq-a{display:block}
@media(max-width:560px){.faq-a{padding-left:24px}}

/* ===== トップ：お知らせ ===== */
.news-home-section{
  position:relative;width:100%;padding:100px 0;background:rgba(245,248,251,.4);color:#3e3e40
}
.news-home-inner{
  width:1080px;margin:0 auto;padding:0 30px;display:flex;flex-direction:column;align-items:center
}
.news-home-heading{width:1020px;height:94px;text-align:center}
.news-home-label{
  width:100%;height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;font-weight:600;
  line-height:36px;letter-spacing:3px
}
.news-home-heading h2{
  height:58px;margin:0;color:#3e3e40;font-size:40px;font-weight:700;
  line-height:58px;letter-spacing:1.5px;text-align:center
}
.news-home-list-wrap{width:840px;min-height:310px;padding-top:16px}
.news-home-list{width:100%;min-height:294px}
.news-home-item{
  width:100%;min-height:98px;padding:30px 0 20px;display:flex;flex-direction:column;
  align-items:flex-start;gap:3px;border-bottom:1px solid #999;color:#3e3e40
}
.news-home-date{
  width:100%;font-size:15px;font-weight:500;line-height:1;letter-spacing:.9px;opacity:.66
}
.news-home-title{
  width:100%;font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN","Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  font-size:18px;font-weight:500;line-height:2;letter-spacing:1.8px
}
.news-home-empty{
  min-height:294px;padding-top:30px;border-bottom:1px solid #999;color:#55555a;
  font-size:16px;letter-spacing:1px
}
.news-home-button-wrap{padding-top:40px}
.news-home-button{
  width:266px;height:57px;padding:14px 38px;display:flex;align-items:center;justify-content:center;
  gap:16px;border-radius:30px;background:linear-gradient(90deg,#53b9c8,#3687c6);
  color:#fff;font-size:20px;font-weight:500;line-height:normal;letter-spacing:1.2px;
  white-space:nowrap;transition:transform var(--ease),box-shadow var(--ease)
}
.news-home-button-icon{
  width:26px;height:26px;display:flex;align-items:center;justify-content:center;overflow:hidden;flex:none
}
.news-home-button-icon img{width:21.1667px;height:16.8333px;max-width:none}
.news-home-button:hover{transform:translateY(-3px);box-shadow:0 10px 20px rgba(54,135,198,.2)}
.news-home-button:focus-visible{outline:3px solid rgba(54,135,198,.45);outline-offset:4px}
@media(max-width:760px){
  .news-home-section{padding:50px 0;background:#fbfcfd}
  .news-home-inner{width:100%;padding:0 30px}
  .news-home-heading{width:100%;height:70px}
  .news-home-label{font-size:26px;line-height:36px}
  .news-home-heading h2{height:34px;font-size:22px;line-height:33.6px}
  .news-home-list-wrap{width:100%;min-height:348px;padding-top:18px}
  .news-home-list{min-height:330px}
  .news-home-item{min-height:86px;padding:30px 0 20px}
  .news-home-title{font-size:16px;line-height:1.5;letter-spacing:1.6px}
  .news-home-empty{min-height:330px;font-size:15px}
  .news-home-button-wrap{padding-top:30px}
  .news-home-button{width:241px;height:54px;font-size:18px;letter-spacing:1.08px}
  .news-home-button-icon{width:16px;height:16px}
  .news-home-button-icon img{width:13.6667px;height:10.8667px}
}

/* ===== トップ：Contact ===== */
.home-contact{
  position:relative;width:100%;padding:100px 0;
  scroll-margin-top:var(--cm-header-height,116px);
  background:linear-gradient(90deg,#e8f6f8 0%,#fffbd8 100%);color:#3e3e40
}
.home-contact-anchor{position:absolute;top:0;left:0}
.home-contact-inner{
  width:1080px;max-width:100%;margin:0 auto;display:flex;flex-direction:column;
  align-items:center;gap:50px
}
.home-contact-heading{width:100%;height:100px;text-align:center}
.home-contact-label{
  height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  font-size:36px;font-weight:600;line-height:36px;letter-spacing:3px
}
.home-contact-heading h2{
  height:64px;margin:0;display:flex;align-items:flex-start;justify-content:center;
  color:#3e3e40;font-size:40px;font-weight:700;line-height:58px;
  letter-spacing:1.5px;white-space:nowrap
}
.home-contact-heading h2 strong{
  background:linear-gradient(90deg,#53b9c8,#3687c6);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.home-contact-cards{
  width:100%;padding:0 30px;display:flex;flex-direction:column;align-items:center;gap:40px
}
.home-contact-main-card,
.home-contact-phone-card,
.home-contact-instagram-card{
  width:1020px;max-width:100%;background:#fff;border-radius:24px;
  box-shadow:0 0 8px rgba(0,0,0,.08)
}
.home-contact-main-card{
  position:relative;min-height:302px;padding:60px 52px 50px;
  display:flex;flex-direction:column;align-items:center;gap:30px;border-radius:32px
}
.home-contact-download-badge{
  position:absolute;top:-27px;left:50%;min-width:423px;height:61px;margin:0;
  padding:5px 36px;display:flex;align-items:center;justify-content:center;
  border-radius:80px;background:#fffa5f;transform:translateX(-50%);
  color:#3e3e40;font-size:26px;font-style:normal;font-weight:700;
  line-height:51px;letter-spacing:1.56px;white-space:nowrap
}
.home-contact-download-badge strong{color:#eb8329;font-size:41px;line-height:51px}
.home-contact-download-badge em{color:#eb8329;font-size:26px;font-style:normal}
.home-contact-download-badge img{
  position:absolute;left:50%;bottom:-14px;width:19.59px;height:14.5px;
  transform:translateX(-50%) rotate(180deg)
}
.home-contact-points{
  width:628px;max-width:100%;margin:0;padding:0;display:grid;
  grid-template-columns:repeat(2,308px);gap:12px;list-style:none
}
.home-contact-points li{
  height:26px;display:flex;align-items:center;gap:10px;color:#55555a;
  font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN","Zen Kaku Gothic New",sans-serif;
  font-size:16px;font-weight:600;line-height:25.2px;white-space:nowrap
}
.home-contact-points img{width:20px;height:20px;flex:none}
.home-contact-actions{display:flex;align-items:flex-start;gap:22px}
.home-contact-action{
  width:408px;height:80px;padding:0 28px;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:2px;border-radius:96px;color:#fff;
  transition:transform var(--ease),box-shadow var(--ease)
}
.home-contact-action--request{background:linear-gradient(90deg,#53b9c8,#3687c6)}
.home-contact-action--line{background:#53c86c}
.home-contact-action small{
  padding:5px 9px 4px;border-radius:100px;background:#fffa5f;
  font-size:13px;font-weight:700;line-height:1;letter-spacing:.78px
}
.home-contact-action--request small{color:#3687c6}
.home-contact-action--line small{color:#53c86c}
.home-contact-action strong{font-size:24px;font-weight:700;line-height:28.8px;letter-spacing:1.44px}
.home-contact-action:hover,.home-contact-action:focus-visible,
.home-contact-instagram-button:hover,.home-contact-instagram-button:focus-visible{
  transform:translateY(-2px);box-shadow:0 9px 20px rgba(54,135,198,.18)
}
.home-contact-action:focus-visible,.home-contact-phone-card:focus-visible,
.home-contact-instagram-button:focus-visible{outline:3px solid rgba(54,135,198,.45);outline-offset:4px}
.home-contact-phone-card{
  min-height:164px;padding:28px 48px;display:flex;flex-direction:column;
  align-items:center;justify-content:center;color:#666
}
.home-contact-phone-card>span{
  font-size:16px;font-weight:600;line-height:23.4px;letter-spacing:.96px
}
.home-contact-phone-card strong{
  display:flex;align-items:center;justify-content:center;gap:4px;color:#3687c6;
  font-size:52px;font-weight:700;line-height:54.6px;letter-spacing:1px
}
.home-contact-phone-card strong img{width:40px;height:40px;flex:none}
.home-contact-phone-card small{font-size:13px;line-height:21.6px;letter-spacing:.78px}
.home-contact-instagram-card{
  position:relative;height:269px;padding:22px 48px 0;display:flex;align-items:center;
  justify-content:center;gap:40px;overflow:hidden
}
.home-contact-instagram-phone{
  width:150px;height:262px;align-self:flex-start;object-fit:contain;object-position:center top
}
.home-contact-instagram-copy{
  display:flex;flex-direction:column;align-items:flex-start;gap:10px;color:#666
}
.home-contact-instagram-copy>p{
  margin:0;font-size:18px;font-weight:600;line-height:23.4px;letter-spacing:1.08px
}
.home-contact-instagram-name{height:51px;display:flex;align-items:center;gap:6px}
.home-contact-instagram-name>img{width:150px;height:41px;object-fit:contain}
.home-contact-instagram-name strong{
  display:flex;align-items:baseline;color:#3e3e40;font-size:26px;font-weight:700;
  line-height:54.6px;letter-spacing:1px;
  white-space:nowrap
}
.home-contact-instagram-button{
  width:250px;height:50px;padding:0 28px;display:flex;align-items:center;justify-content:center;
  gap:5px;border-radius:96px;background:linear-gradient(90deg,#61bd6e,#1aad94);
  color:#fff;font-size:18px;font-weight:700;line-height:28.8px;letter-spacing:1.08px;
  transition:transform var(--ease),box-shadow var(--ease)
}
.home-contact-instagram-button img{width:26px;height:26px;flex:none}

/* ===== 下層共通：Contact CTA ===== */
.common-contact-cta{
  width:100%;padding:100px 0;background:linear-gradient(90deg,#e8f6f8 0%,#fffbd8 100%);
  color:#3e3e40;scroll-margin-top:var(--cm-header-height,116px)
}
.common-contact-cta-inner{
  width:1080px;max-width:100%;margin:0 auto;display:flex;flex-direction:column;
  align-items:center
}
.common-contact-cta .home-contact-cards{gap:40px}
.common-contact-cta-main-card{min-height:302px}
.common-contact-cta-actions{justify-content:center}
@media(min-width:761px) and (max-width:1100px){
  .common-contact-cta-inner{width:calc(100% - 60px);max-width:1020px}
  .common-contact-cta .home-contact-cards{padding-right:0;padding-left:0}
}
@media(max-width:760px){
  .home-contact{padding:50px 30px}
  .home-contact-inner{width:330px;gap:50px}
  .home-contact-heading{height:129px}
  .home-contact-label{font-size:26px;line-height:36px}
  .home-contact-heading h2{
    height:93px;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
    gap:5px;font-size:22px;line-height:1.2;white-space:nowrap
  }
  .home-contact-heading h2 strong{font-size:26px;line-height:31.2px}
  .home-contact-cards{width:100%;padding:0;gap:20px}
  .home-contact-main-card{
    width:330px;min-height:456px;padding:60px 20px 50px;gap:30px;border-radius:22px
  }
  .home-contact-download-badge{
    top:-24px;min-width:259px;height:51px;padding:0 18px;font-size:18px;
    line-height:51px;letter-spacing:1.08px
  }
  .home-contact-download-badge strong{font-size:28px;line-height:51px}
  .home-contact-download-badge em{font-size:18px}
  .home-contact-download-badge img{bottom:-14px}
  .home-contact-points{
    width:290px;display:grid;grid-template-columns:1fr;gap:12px
  }
  .home-contact-points li{gap:5px;font-size:15px}
  .home-contact-actions{width:290px;flex-direction:column;gap:16px}
  .home-contact-action{width:290px;height:80px}
  .home-contact-action small{font-size:12px;letter-spacing:.72px}
  .home-contact-action--line small{font-size:10px;letter-spacing:.5px;white-space:nowrap}
  .home-contact-action strong{font-size:18px;letter-spacing:1.08px}
  .home-contact-phone-card{width:330px;min-height:157px;padding:28px 24px}
  .home-contact-phone-card>span{font-size:16px}
  .home-contact-phone-card strong{gap:4px;font-size:35px}
  .home-contact-phone-card strong img{width:30px;height:30px}
  .home-contact-instagram-card{
    width:330px;height:301px;padding:0;display:block;overflow:hidden
  }
  .home-contact-instagram-copy{display:block}
  .home-contact-instagram-copy>p{
    position:absolute;top:28px;left:48px;width:234px;height:47px;margin:0;
    text-align:center;font-size:16px;line-height:23.4px;letter-spacing:.96px
  }
  .home-contact-instagram-phone{
    position:absolute;top:85px;left:48px;width:78px;height:128px
  }
  .home-contact-instagram-name{
    position:absolute;top:117px;left:140px;width:142px;height:64px;
    display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:2px
  }
  .home-contact-instagram-name>img{width:126px;height:35px}
  .home-contact-instagram-name strong{
    font-size:16.5px;line-height:1;letter-spacing:.92px;white-space:nowrap
  }
  .home-contact-instagram-name strong span:last-child{font-size:19.3px}
  .home-contact-instagram-button{
    position:absolute;top:223px;left:40px;width:250px;height:50px
  }
  .common-contact-cta{padding:74px 30px 50px}
  .common-contact-cta-inner{width:330px}
  .common-contact-cta .home-contact-cards{gap:20px}
  .common-contact-cta .common-contact-cta-main-card{min-height:360px}
}

/* ===== フッター ===== */
.site-footer{background:#2c3e48;color:#cfd9de;padding:54px 0 26px}
.foot-top{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap}
.foot-logo .txt b{color:#fff;font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;font-weight:900;font-size:19px;display:block;letter-spacing:1px}
.foot-logo .txt small{font-size:11px;color:#9fb0b8}
.foot-logo p{font-size:12.5px;line-height:1.9;margin-top:14px;max-width:380px;color:#aebcc3}
.foot-links{display:flex;gap:40px;flex-wrap:wrap}
.foot-col h5{font-size:12px;color:#7f939c;letter-spacing:1px;margin-bottom:12px;font-weight:700}
.foot-col a{display:block;font-size:13px;padding:5px 0;color:#cfd9de;transition:color var(--ease)}
.foot-col a:hover{color:var(--cyan)}
.foot-bottom{border-top:1px solid #3d525c;margin-top:36px;padding-top:18px;text-align:center;font-size:11.5px;color:#8fa3ab}
@media(max-width:760px){.foot-top{flex-direction:column;text-align:center;align-items:center}.foot-links{justify-content:center}.foot-logo p{margin-left:auto;margin-right:auto}}

/* ===== scroll reveal ===== */
.reveal{
  opacity:0;translate:0 22px;
  transition:
    opacity .64s cubic-bezier(.22,.61,.36,1) var(--reveal-delay,0ms),
    translate .72s cubic-bezier(.16,1,.3,1) var(--reveal-delay,0ms)
}
.cm-preparing-reveal .reveal{transition:none}
.reveal.in{opacity:1;translate:0 0}

/* ==========================================================================
   Figma shared shell
   ========================================================================== */
:root{
  --cm-primary:#3687c6;
  --cm-secondary:#53b9c8;
  --cm-accent:#fffa5f;
  --cm-line:#53c86c;
  --cm-text:#3e3e40;
  --cm-text-subtle:#55555a;
  --cm-gradient:linear-gradient(90deg,#53b9c8 0%,#3687c6 100%);
  --cm-container:1080px;
  --cm-header-height:86px;
}
body.cocomedica-site{min-width:0;color:var(--cm-text);background:#fff}
body.cm-menu-open{overflow:hidden}
.screen-reader-text{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
}
.screen-reader-text:focus{
  z-index:100000;top:8px;left:8px;width:auto;height:auto;margin:0;padding:12px 16px;
  clip:auto;background:#fff;color:var(--cm-primary)
}
.cm-main{min-height:45vh}
.cm-site-header{
  position:sticky;z-index:1000;top:0;width:100%;height:var(--cm-header-height);
  background:rgba(255,255,255,.98);box-shadow:0 2px 12px rgba(0,0,0,.04)
}
.cm-header-inner{
  width:100%;height:100%;padding:10px 30px;display:flex;align-items:center;
  justify-content:space-between;gap:30px
}
.cm-brand{display:block;width:236px;height:62px;flex:0 0 236px}
.cm-brand img{width:100%;height:100%;object-fit:contain}
.cm-desktop-actions{display:flex;align-items:center;gap:46px;margin-left:auto}
.cm-primary-nav{display:flex;align-items:center;justify-content:center;gap:26px}
.cm-primary-nav a{
  color:#55555a;font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;
  font-size:14px;font-weight:600;line-height:1.8;letter-spacing:.84px;white-space:nowrap
}
.cm-header-invoice-nav{
  width:168px;height:50px;flex:0 0 168px;padding:8px 14px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid #eee;border-radius:12px;background:#fff;
  transition:border-color var(--ease),background-color var(--ease)
}
.cm-header-invoice-nav img{width:140px;max-width:100%;height:auto;display:block}
.cm-header-invoice-nav:hover,.cm-header-invoice-nav:focus-visible{
  border-color:rgba(235,90,111,.38);background:#fffafb
}
.cm-primary-nav a:hover,.cm-primary-nav a:focus-visible{color:var(--cm-primary)}
.cm-header-contact{display:flex;align-items:center;gap:15px}
.cm-header-phone{display:flex;flex:0 0 auto;flex-direction:column;align-items:flex-end;line-height:1}
.cm-header-phone>span{
  display:flex;align-items:center;color:var(--cm-primary);font-family:"Afacad",sans-serif;
  font-size:27px;font-weight:700;letter-spacing:.5px
}
.cm-header-phone>span img{width:20px;height:20px}
.cm-header-phone small{margin-top:2px;color:#666;font-size:11px;line-height:1.2}
.cm-header-cta{
  min-width:288px;height:50px;padding:0 36px;border-radius:96px;background:var(--cm-gradient);
  color:#fff;display:flex;align-items:center;justify-content:center;gap:5px;
  font-family:"Zen Kaku Gothic New",sans-serif;font-size:17px;font-weight:700;
  letter-spacing:.68px;transition:transform var(--ease),box-shadow var(--ease)
}
.cm-header-cta:hover,.cm-header-cta:focus-visible{
  transform:translateY(-2px);box-shadow:0 8px 22px rgba(54,135,198,.18)
}
.cm-header-cta img{width:24px;height:24px}
.cm-mobile-actions,.cm-mobile-menu{display:none}

/* Figma first-view composition. */
.cm-results-intro{
  position:relative;width:100vw;height:458px;margin-left:0;
  padding:0 30px 50px;overflow:hidden;display:flex;flex-direction:column;
  align-items:center;gap:30px;text-align:center;color:#3e3e40;
  font-family:"Zen Kaku Gothic New",sans-serif;
  background:
    radial-gradient(ellipse 960px 1731px at 50% 50%,#fffdea 0%,#fff9c1 50%,#fff597 100%)
}
.cm-results-specialty{
  width:326.42px;height:84px;flex:0 0 84px;padding:20px 32.97px;display:flex;
  align-items:center;justify-content:center;gap:11.48px;border-radius:0 0 30px 30px;
  background:linear-gradient(90deg,#53b9c8 0%,#3687c6 100%);
  color:#fff;font-size:32.02px;font-weight:700;line-height:1;letter-spacing:2.56px
}
.cm-results-specialty>span:last-child{
  flex:0 0 auto;white-space:nowrap;text-box-trim:trim-both;
  text-box-edge:cap alphabetic
}
.cm-results-home{position:relative;width:44px;height:44px;flex:0 0 44px;overflow:hidden}
.cm-results-home img{
  position:absolute;top:9.09%;left:11.99%;width:79.54%;height:77.27%;
  max-width:none
}
.cm-results-home::before,.cm-results-home::after{
  content:"";position:absolute;z-index:1;left:50%;top:50%;border-radius:2px;
  background:#4fb0c8;transform:translate(-50%,-42%)
}
.cm-results-home::before{width:7px;height:19px}
.cm-results-home::after{width:19px;height:7px}
.cm-results-achievement{
  position:relative;width:625px;height:110px;flex:0 0 110px;margin:0
}
.cm-results-copy{position:absolute;inset:0;z-index:1;margin:0;font-weight:700}
.cm-results-monthly{
  position:absolute;top:2px;left:50%;margin:0;display:flex;align-items:flex-end;
  justify-content:center;gap:3px;transform:translateX(-50%);white-space:nowrap;
  font-size:24px;font-weight:700;line-height:1.5;letter-spacing:1.5px
}
.cm-results-monthly>*,
.cm-results-total>*{
  text-box-trim:trim-both;text-box-edge:cap alphabetic
}
.cm-results-monthly strong{
  color:#eb8329;font-family:"Afacad",sans-serif;font-size:40px;font-weight:600;
  line-height:1.5;letter-spacing:0
}
.cm-results-monthly span{margin:0;font-size:24px}
.cm-results-monthly-label{color:#3e3e40}
.cm-results-monthly-unit{color:#eb8329}
.cm-results-total{
  position:absolute;top:40px;left:69px;margin:0;display:flex;align-items:flex-end;
  justify-content:center;gap:1px;white-space:nowrap;font-size:0;font-weight:700;line-height:1.5
}
.cm-results-cumulative{
  margin:0;color:#eb8329;font-size:36px;letter-spacing:1.5px
}
.cm-results-total>strong{
  color:#eb8329;font-family:"Afacad",sans-serif;font-size:90px;font-weight:700;
  line-height:1;letter-spacing:-3.6px
}
.cm-results-unit{color:#eb8329;font-size:46px;letter-spacing:1.5px}
.cm-results-connector{margin:0;color:#3e3e40;font-size:36px;letter-spacing:1.5px}
.cm-results-outcome{color:#3e3e40;font-size:46px;letter-spacing:1.5px}
.cm-results-laurel{
  position:absolute;top:0;width:51px;height:110px
}
.cm-results-laurel--left{left:0}
.cm-results-laurel--right{right:0;transform:scaleX(-1)}
.cm-official-card{
  width:706px;height:154px;flex:0 0 154px;margin:0;padding:20px 40px;
  display:flex;align-items:center;justify-content:center;gap:20px;border-radius:20px;
  background:#fff;box-shadow:0 0 12px rgba(0,0,0,.06)
}
.cm-official-seal{
  position:relative;width:114px;height:114px;flex:0 0 114px;display:block;color:#fff;
  font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;font-size:26px;
  font-weight:600;line-height:1.3;letter-spacing:2.6px
}
.cm-official-seal img{position:absolute;z-index:0;inset:0;width:100%;height:100%}
.cm-official-seal span,.cm-official-seal i{
  position:absolute;z-index:1;display:block;white-space:nowrap;
  text-box-trim:trim-both;text-box-edge:cap alphabetic;transform:translateX(-50%)
}
.cm-official-seal-industry{top:30px;left:50%}
.cm-official-seal-only{top:62px;left:calc(50% - 9.5px)}
.cm-official-seal i{
  top:62px;left:calc(50% + 28.5px);font-family:"Afacad",sans-serif;
  font-size:33px;font-style:italic;
  font-weight:700;letter-spacing:3.3px
}
.cm-official-card p{
  width:492px;margin:0;background:linear-gradient(90deg,#53b9c8 0%,#3687c6 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;font-size:31px;
  font-weight:600;line-height:1.5;letter-spacing:1.86px;text-align:left;white-space:nowrap
}
.cm-official-product{display:block}
.cm-official-option,.cm-official-selected{display:inline}
.hero{
  height:790px;padding:0;overflow:hidden;background:#fff;
  font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif
}
.hero-main{height:610px;padding-top:44px}
.hero-grid{
  width:1204px;max-width:calc(100% - 60px);height:566px;margin:0 auto;padding:17px 0;
  display:grid;grid-template-columns:446px minmax(0,757px);gap:0;align-items:center
}
.hero-copy{
  position:relative;z-index:2;height:532px;display:flex;flex-direction:column;
  align-items:flex-start;gap:32px
}
.hero-heading{width:446px;height:248px;flex:0 0 248px}
.hero h1{
  width:446px;height:130px;margin:0;color:#3e3e40;font-size:0;font-weight:700;
  line-height:0;letter-spacing:1.5px;text-align:left
}
.hero h1 span{display:inline-block;line-height:1.42}
.hero-heading-primary{
  background:linear-gradient(90deg,#3687c6 0%,#53b9c8 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:46px
}
.hero-heading-small{margin-left:-1.5px;color:#3e3e40;font-size:32px}
.hero-heading-secondary{color:#3e3e40;font-size:46px}
.hero-logo-frame{
  position:relative;width:394px;height:118px;padding-top:10px;overflow:hidden
}
.hero-logo-frame img{
  position:absolute;top:10px;left:-3.67%;width:103.87%;height:108px;
  max-width:none;object-fit:fill
}
.hero-tags{
  width:375px;height:232px;margin:0;padding:0;display:flex;flex-direction:column;
  flex-wrap:nowrap;gap:18px;list-style:none
}
.hero-tags li{
  width:375px;min-height:54px;margin:0;padding:14px 24px;display:flex;
  align-items:center;justify-content:flex-start;gap:10px;border:0;border-radius:14px;
  background:#fff;box-shadow:0 0 10px rgba(0,0,0,.08)
}
.hero-tags li:last-child{height:88px;flex:0 0 88px}
.hero-tags li>img{width:16px;height:16px;flex:0 0 16px}
.hero-tags p{
  margin:0;color:#3687c6;font-size:20px;font-weight:700;line-height:1.5;
  letter-spacing:1.2px;text-align:left;white-space:nowrap
}
.hero-tags strong{
  color:#eb8329;font-family:"Afacad",sans-serif;font-size:30px;font-weight:700;
  line-height:25.2px;letter-spacing:1.8px
}
.hero-tags em{
  color:#eb8329;font-size:20px;font-style:normal;font-weight:700;
  line-height:25.2px;letter-spacing:1.2px
}
.hero-visual{
  position:relative;width:757px;height:532px;min-height:0;overflow:hidden;
  display:block;order:0;max-width:none;margin:0
}
.hero-visual>img{
  position:absolute;top:0;left:-2.38%;width:105.42%;height:100%;max-width:none;
  object-fit:fill
}
.hero-cta-row{
  height:180px;padding-bottom:100px;display:flex;align-items:flex-start;
  justify-content:center
}
.hero .cta-row{margin:0;display:flex;justify-content:center}
.hero .btn{
  width:408px;height:80px;min-width:408px;flex:0 0 408px;padding:0 28px;
  gap:2px;border:0
}
.hero .btn .pill{
  padding:8px 9px 5px;font-size:13px;line-height:28.8px;letter-spacing:.78px;
  text-box-trim:trim-both;text-box-edge:cap alphabetic
}
.hero .btn .main{font-size:24px;line-height:28.8px;letter-spacing:1.44px}
.about-section{
  height:1390.39px;overflow:hidden;color:#3e3e40;
  background:
    radial-gradient(ellipse 118.27% 274.06% at 85% 70.3%,rgba(83,185,200,.112) 0%,rgba(42,93,100,.056) 21%,transparent 42%),
    radial-gradient(ellipse 78.87% 182.77% at 8% 40.1%,rgba(54,135,198,.08) 0%,transparent 40%),
    linear-gradient(180deg,rgba(244,251,252,.1) 0%,rgba(255,255,255,.1) 70%),
    #fff
}
.about-inner{
  width:100%;height:100%;padding:100px 0 120px;display:flex;flex-direction:column;
  align-items:center;gap:20px
}
.about-intro{width:100%;height:218px;flex:0 0 218px;text-align:center}
.about-label{
  height:36px;margin:0;background:linear-gradient(90deg,rgba(54,135,198,.3),rgba(83,185,200,.3));
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:36px;
  font-weight:600;line-height:36px;letter-spacing:3px
}
.about-heading{width:100%;height:98px}
.about-eyebrow{
  height:40px;margin:0;padding-top:16px;color:#3e3e40;font-size:20px;font-weight:700;
  line-height:1.2;letter-spacing:1.5px;text-align:center
}
.about-heading h2{
  height:58px;margin:0;display:flex;align-items:flex-start;justify-content:center;
  font-size:0;font-weight:700;line-height:58px;letter-spacing:1.5px;white-space:nowrap
}
.about-heading h2>span{
  background:linear-gradient(90deg,#53b9c8 0%,#3687c6 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;font-size:40px
}
.about-title-service{margin-left:.25em}
.about-heading h2>small{color:#3e3e40;font-size:30px;font-weight:700}
.about-lead{
  width:760px;max-width:100%;height:84px;margin:0 auto;padding:8px 0;
  color:#55555a;font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;
  font-size:19px;font-weight:400;line-height:1.8;text-align:center
}
.about-features{
  width:100%;height:932.39px;display:flex;flex-direction:column;align-items:center;
  gap:20px
}
.about-features-title{
  height:76px;margin:0;display:flex;align-items:flex-start;justify-content:center;
  color:#3687c6;font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;
  font-size:24px;font-style:normal;font-weight:700;line-height:60px;
  letter-spacing:1.44px;white-space:nowrap
}
.about-features-title strong{
  color:#eb8329;font-family:"Afacad",sans-serif;font-size:60px;font-weight:700;
  line-height:1;letter-spacing:3.6px
}
.about-features-title em{
  color:#eb8329;font-size:24px;font-style:normal;font-weight:700;line-height:60px;
  letter-spacing:1.44px
}
.point-grid{
  width:980px;height:836.39px;margin:0;display:grid;
  grid-template-columns:repeat(2,465px);grid-template-rows:repeat(2,388.195px);
  gap:60px 50px
}
.point-card{
  position:relative;width:465px;height:388.195px;padding:40px 50px;
  display:flex;flex-direction:column;align-items:center;border-radius:24px;
  background:#fff;box-shadow:0 0 16px rgba(0,0,0,.08)
}
.point-label{
  position:absolute;top:-39px;left:50%;width:240px;height:50.4px;
  transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;
  color:#eb8329;font-weight:700;line-height:25.2px;text-align:center;white-space:nowrap
}
.point-label span{font-size:16px;letter-spacing:2px}
.point-label strong{font-size:45px;font-weight:700;letter-spacing:0}
.point-image{
  width:365px;height:234.195px;flex:0 0 234.195px;margin:0;overflow:hidden;
  border-radius:14px
}
.point-image img{width:100%;height:100%;object-fit:cover}
.point-card .point-copy{
  width:365px;margin:0;padding-top:20px;color:#55555a;
  font-family:"Hiragino Sans","Zen Kaku Gothic New",sans-serif;font-size:18px;
  font-weight:400;line-height:1.5;letter-spacing:.18px;text-align:center
}
.point-card .point-copy b{font-weight:700}
.point-card:nth-child(n+2) .point-copy{letter-spacing:1.08px}
.point-break-mobile{display:none}

/* Figma footer. */
.cm-site-footer{border-top:1px solid #eee;background:#fff}
.cm-footer-inner{max-width:1439px;margin:0 auto;padding:100px 174px 40px}
.cm-footer-main{display:flex;align-items:center;justify-content:space-between;gap:80px}
.cm-footer-company{width:350px;max-width:100%;flex:0 1 350px}
.cm-footer-logo{width:256px;height:70px;object-fit:contain;object-position:left center}
.cm-footer-company strong{
  display:block;margin-top:0;font-family:"Zen Kaku Gothic New",sans-serif;font-size:20px;
  letter-spacing:2px;line-height:2
}
.cm-footer-company address{
  color:var(--cm-text);font-family:"Zen Kaku Gothic New",sans-serif;font-size:16px;
  font-style:normal;font-weight:500;line-height:1.6;letter-spacing:1.6px;white-space:nowrap
}
.cm-footer-links{display:flex;align-items:flex-start;gap:50px}
.cm-footer-links nav{width:197px;display:flex;flex-direction:column;gap:12px}
.cm-footer-links nav a{
  font-family:"Zen Kaku Gothic New",sans-serif;font-size:18px;font-weight:500;
  line-height:2;letter-spacing:1.08px
}
.cm-footer-invoice{
  width:325px;height:164px;padding:34px 30px;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:18px;border-radius:20px;background:#fff;
  box-shadow:0 0 16px rgba(0,0,0,.08)
}
.cm-footer-invoice>img{width:256px;height:auto}
.cm-footer-invoice span{
  display:flex;align-items:center;gap:8px;font-family:"Zen Kaku Gothic New",sans-serif;
  font-size:16px;font-weight:500;letter-spacing:.96px
}
.cm-footer-invoice span img{width:18px;height:18px}
.cm-copyright{
  margin:52px 0 0;text-align:center;font-family:"Zen Kaku Gothic New",sans-serif;
  font-size:13px;font-weight:500;line-height:1.6;letter-spacing:1.3px
}

@media(max-width:1280px){
  .cm-header-inner{gap:18px}
  .cm-brand{width:210px;height:auto;flex-basis:210px}
  .cm-desktop-actions{gap:14px}
  .cm-primary-nav{gap:10px}
  .cm-header-invoice-nav{
    width:122px;height:44px;flex-basis:122px;padding:7px 9px;border-radius:10px
  }
  .cm-header-invoice-nav img{width:104px}
  .cm-header-contact{gap:8px}
  .cm-header-cta{min-width:210px;padding:0 20px;font-size:14px}
  .cm-header-phone>span{font-size:21px}
  .cm-footer-inner{padding-left:80px;padding-right:80px}
}
@media(max-width:1200px){
  :root{--cm-header-height:70px}
  .cm-site-header{height:70px;background:rgba(255,255,255,.95)}
  .cm-header-inner{padding:8px 20px}
  .cm-brand{width:194px;height:53px;flex-basis:194px}
  .cm-desktop-actions{display:none}
  .cm-mobile-actions{display:flex;align-items:center;gap:8px;margin-left:auto}
  .cm-round-action{
    width:34px;height:34px;border-radius:50%;display:flex;align-items:center;
    justify-content:center;background:var(--cm-gradient)
  }
  .cm-round-action img{width:20px;height:20px}
  .cm-round-action[href^="tel:"] img{filter:brightness(0) invert(1)}
  .cm-menu-toggle{
    position:relative;width:25px;height:34px;margin-left:12px;padding:0;border:0;
    background:transparent;cursor:pointer
  }
  .cm-menu-bars,.cm-menu-bars::before,.cm-menu-bars::after{
    position:absolute;left:50%;width:25px;height:1.5px;background:#111;
    transform:translateX(-50%)
  }
  .cm-menu-bars{top:50%;transform:translate(-50%,-50%)}
  .cm-menu-bars::before,.cm-menu-bars::after{content:"";left:0;transform:none}
  .cm-menu-bars::before{top:-8px}
  .cm-menu-bars::after{top:8px}
  .cm-menu-close{
    display:none;position:absolute;inset:0;
    background:url("../img/icon-menu.svg") center/25px 21px no-repeat
  }
  .cm-menu-toggle[aria-expanded="true"] .cm-menu-bars{display:none}
  .cm-menu-toggle[aria-expanded="true"] .cm-menu-close{display:block}
  .cm-mobile-menu{
    position:fixed;z-index:999;top:70px;right:0;bottom:0;left:0;padding:30px;
    overflow-y:auto;background:#fff;outline:0
  }
  .cm-mobile-menu:not([hidden]){display:block}
  .cm-mobile-nav{
    width:197px;margin:0 auto;display:flex;flex-direction:column;align-items:center;
    gap:10px;text-align:center
  }
  .cm-mobile-nav a{
    width:100%;font-family:"Zen Kaku Gothic New",sans-serif;font-size:15px;
    font-weight:500;line-height:2;letter-spacing:.9px
  }
  .cm-mobile-nav a:nth-child(2),
  .cm-mobile-nav a:nth-child(3){
    color:var(--cm-text-subtle);font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
    font-size:14px;font-weight:600;line-height:25.2px;letter-spacing:.84px
  }
  .cm-mobile-cta-list{
    width:min(100%,330px);margin:33px auto 0;display:flex;flex-direction:column;gap:16px
  }
  .cm-mobile-cta{
    width:100%;height:80px;padding:8px 22px;border-radius:96px;display:flex;
    flex-direction:column;align-items:center;justify-content:center;color:#fff
  }
  .cm-mobile-cta small{
    padding:2px 9px;border-radius:100px;background:var(--cm-accent);
    color:var(--cm-primary);font-size:12px;font-weight:700;line-height:1.5
  }
  .cm-mobile-cta strong{font-size:18px;line-height:1.6;letter-spacing:1.08px}
  .cm-mobile-cta--contact{background:var(--cm-gradient)}
  .cm-mobile-cta--line{background:var(--cm-line)}
  .cm-mobile-cta--line small{color:var(--cm-line)}
  .cm-invoice-card{
    width:min(100%,325px);height:164px;min-height:164px;margin:30px auto 0;padding:24px 30px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;
    border-radius:20px;background:#fff;box-shadow:0 0 16px rgba(0,0,0,.08)
  }
  .cm-invoice-card>img{width:256px;height:auto}
  .cm-invoice-card span{display:flex;align-items:center;gap:8px;font-size:16px;letter-spacing:.96px}
  .cm-invoice-card span img{width:18px;height:18px}
  .point-grid{gap:54px 28px}
  .point-card{padding:34px}
  .cm-footer-inner{padding:70px 40px 36px}
  .cm-footer-main{align-items:flex-start;gap:50px}
  .cm-footer-links{gap:30px}
}
@media(min-width:761px) and (max-width:1100px){
  .hero{
    --hero-tablet-scale:calc((100vw - 40px) / 1204px);
    height:calc(675px * var(--hero-tablet-scale))
  }
  .hero-main{
    height:calc(557px * var(--hero-tablet-scale));
    padding-top:calc(23px * var(--hero-tablet-scale))
  }
  .hero-grid{
    width:1204px;max-width:none;height:532px;margin:0 0 0 20px;padding:0;
    grid-template-columns:446px 757px;
    transform:scale(var(--hero-tablet-scale));transform-origin:top left
  }
  .hero-copy{height:532px;gap:17px}
  .hero-visual{width:757px;height:532px;max-width:none;margin:0;order:0}
  .hero-cta-row{
    height:calc(118px * var(--hero-tablet-scale));
    padding:0 0 calc(38px * var(--hero-tablet-scale))
  }
  .hero .cta-row{
    width:408px;height:80px;flex:0 0 408px;
    transform:scale(var(--hero-tablet-scale));transform-origin:top center
  }
}
@media(max-width:760px){
  .cm-results-intro{
    height:421px;min-height:421px;padding:0 20px 41px;gap:0;
    background:radial-gradient(ellipse 195px 720px at 50% 50%,#fffdea 0%,#fff9c1 50%,#fff597 100%)
  }
  .cm-results-specialty{
    width:228px;height:60px;flex-basis:60px;padding:14px 16px;gap:8px;
    border-radius:0 0 23px 23px;font-size:23px;letter-spacing:.8px
  }
  .cm-results-home{width:32px;height:32px;flex-basis:32px}
  .cm-results-achievement{width:350px;height:155px;flex-basis:155px;margin-top:24px}
  .cm-results-copy{margin:0}
  .cm-results-monthly{top:5px;font-size:23px;line-height:1.2;letter-spacing:.5px}
  .cm-results-monthly strong{font-size:34px;line-height:1.2}
  .cm-results-monthly span{font-size:21px;line-height:1.2;letter-spacing:.5px}
  .cm-results-total{
    top:47px;left:50%;width:auto;margin:0;display:block;line-height:.95;
    transform:translateX(-50%);white-space:nowrap
  }
  .cm-results-cumulative{margin-right:3px;font-size:24px;letter-spacing:.5px}
  .cm-results-total>strong{font-size:58px;line-height:.95;letter-spacing:-2.5px}
  .cm-results-unit{font-size:34px;letter-spacing:.5px}
  .cm-results-connector{margin:0 2px;color:#3e3e40;font-size:28px;letter-spacing:.5px}
  .cm-results-outcome{
    display:block;margin-top:1px;color:#3e3e40;font-size:32px;
    line-height:1.15;letter-spacing:.5px
  }
  .cm-results-laurel{top:40px;width:42px;height:91px}
  .cm-results-laurel--left{left:22px}
  .cm-results-laurel--right{right:22px}
  .cm-official-card{
    width:350px;max-width:100%;height:133px;min-height:133px;flex-basis:133px;
    margin:8px 0 0;padding:18px 20px 18px 34px;gap:20px;border-radius:21px;
    justify-content:flex-start
  }
  .cm-official-seal{
    width:93px;height:93px;flex-basis:93px;font-size:22px;line-height:1.25;
    letter-spacing:1px
  }
  .cm-official-seal-industry{top:24px}
  .cm-official-seal-only{top:51px;left:calc(50% - 8px)}
  .cm-official-seal i{
    top:51px;left:calc(50% + 23px);font-size:27px;letter-spacing:1px
  }
  .cm-official-card p{
    width:176px;font-size:22px;line-height:1.45;letter-spacing:0;white-space:normal
  }
  .cm-official-product,.cm-official-option,.cm-official-selected{display:block}
  .hero{height:803px;padding:0}
  .hero-main{height:661px;padding:0}
  .hero-grid{
    width:390px;max-width:100%;height:661px;margin:0 auto;padding:30px 24px 0;
    display:flex;flex-direction:column;align-items:center
  }
  .hero-copy{display:contents}
  .hero-heading{
    order:1;width:342px;max-width:100%;height:183px;flex:0 0 183px;
    display:flex;flex-direction:column;align-items:center
  }
  .hero h1{
    width:342px;max-width:100%;height:91px;margin:0;text-align:center;
    letter-spacing:1px
  }
  .hero-heading-primary{font-size:32px}
  .hero-heading-small{font-size:20px}
  .hero-heading-secondary{font-size:32px}
  .hero-logo-frame{
    width:300px;height:92px;flex:0 0 92px;padding-top:10px
  }
  .hero-logo-frame img{top:10px;height:82px}
  .hero-visual{
    order:2;width:342px;max-width:100%;height:228px;flex:0 0 228px;margin:0
  }
  .hero-visual>img{left:0;width:100%;height:100%}
  .hero-tags{
    order:3;width:342px;max-width:100%;height:198px;flex:0 0 198px;
    margin:22px 0 0;gap:18px
  }
  .hero-tags li{
    width:342px;max-width:100%;height:46px;min-height:46px;flex:0 0 46px;
    padding:10px 16px;border-radius:14px
  }
  .hero-tags li:last-child{height:70px;flex-basis:70px}
  .hero-tags p{font-size:16px;line-height:1.5;letter-spacing:.96px}
  .hero-tags strong{font-size:20px;line-height:24px;letter-spacing:1.2px}
  .hero-tags em{font-size:16px;line-height:24px;letter-spacing:.96px}
  .hero-cta-row{
    height:142px;padding:25px 0 47px;align-items:flex-start
  }
  .hero .cta-row{width:330px;max-width:calc(100% - 60px);display:block}
  .hero .btn{
    width:330px;max-width:100%;height:70px;min-width:0;flex-basis:70px;
    padding:0 22px;gap:2px
  }
  .hero .btn .pill{
    padding:8px 9px 5px;font-size:12px;line-height:28.8px;letter-spacing:.72px
  }
  .hero .btn .main{font-size:18px;line-height:28.8px;letter-spacing:1.08px}
  .about-section{height:1915px}
  .about-inner{padding:50px 0 100px;gap:20px}
  .about-intro{height:246px;flex-basis:246px}
  .about-label{font-size:24px}
  .about-heading{height:107px}
  .about-eyebrow{
    height:35px;padding-top:16px;font-size:16px;line-height:19.2px;letter-spacing:.8px
  }
  .about-heading h2{
    width:342px;max-width:calc(100% - 48px);height:72px;margin:0 auto;display:block;
    line-height:36px;letter-spacing:1px;white-space:normal
  }
  .about-heading h2>span{font-size:26px;line-height:36px}
  .about-heading h2>small{font-size:20px;line-height:36px}
  .about-heading h2>.about-title-brand{display:block}
  .about-title-service{margin-left:0}
  .about-lead{
    width:342px;height:103px;padding:8px 0;font-size:16px;line-height:1.8
  }
  .about-features{height:1499px}
  .point-grid{
    width:330px;max-width:calc(100% - 60px);height:1403px;display:flex;
    flex-direction:column;gap:50px
  }
  .point-card{
    width:330px;max-width:100%;height:325.24px;min-height:325.24px;
    padding:30px
  }
  .point-card:nth-child(n+3){
    height:301.24px;min-height:301.24px
  }
  .point-image{
    width:270px;max-width:100%;height:173.24px;flex-basis:173.24px
  }
  .point-card .point-copy{
    width:270px;max-width:100%;font-size:16px;line-height:1.5;
    letter-spacing:.18px;text-align:left
  }
  .point-card:nth-child(n+2) .point-copy{letter-spacing:.18px}
  .point-break-desktop{display:none}
  .point-break-mobile{display:inline}
  .cm-footer-inner{padding:64px 24px 32px}
  .cm-footer-main,.cm-footer-links{flex-direction:column;align-items:center}
  .cm-footer-main{gap:46px}
  .cm-footer-company{text-align:center}
  .cm-footer-logo{object-position:center}
  .cm-footer-links nav{align-items:center;text-align:center}
  .cm-copyright{font-size:11px;letter-spacing:.5px}
}

/* ==========================================================================
   Tablet: keep the approved desktop/mobile compositions unchanged and
   fluidize only the 761–1100px gap between them.
   ========================================================================== */
@media(min-width:761px) and (max-width:1100px){
  /* About */
  .about-section{height:auto}
  .about-inner{height:auto;padding:80px 0 100px}
  .about-features{height:auto}
  .point-grid{
    width:calc(100% - 60px);height:auto;grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:none;gap:54px 30px
  }
  .point-card{
    width:100%;height:auto;min-height:340px;padding:34px 30px
  }
  .point-image{
    width:100%;height:auto;flex-basis:auto;aspect-ratio:365/234.195
  }
  .point-card .point-copy{width:100%;font-size:16px}

  /* Challenges */
  .challenge-inner{width:100%}
  .challenge-heading{width:100%}
  .challenge-heading h2,
  .challenge-heading h2 span,
  .challenge-heading h2 em{font-size:clamp(31px,4vw,40px)}
  .challenge-illustration{
    top:-58px;right:0;left:auto;width:210px;height:158px
  }
  .challenge-grid{
    width:calc(100% - 60px);height:310px;gap:30px 20px
  }
  .challenge-card,
  .challenge-card:last-child{
    width:calc(50% - 10px);height:140px;padding:24px;gap:12px
  }
  .challenge-card p{
    width:auto;min-width:0;font-size:clamp(15px,1.8vw,18px);letter-spacing:.6px
  }

  /* Solution */
  .solution-cards{
    width:calc(100% - 60px);padding:0;gap:30px
  }
  .solution-card,
  .solution-card:nth-child(2){
    width:calc(50% - 15px);padding:42px 28px
  }
  .solution-card p,
  .solution-card:nth-child(2) p{
    width:100%;font-size:clamp(18px,2.25vw,22px);letter-spacing:.75px
  }

  /* Strength */
  .strength-section{height:auto}
  .strength-inner{width:100%;height:auto;padding:80px 30px 100px}
  .strength-heading{width:100%}
  .strength-list{
    width:100%;height:auto;grid-template-rows:none;gap:30px
  }
  .strength-card{
    width:100%;min-height:220px;padding:32px;gap:26px
  }
  .strength-copy{width:auto;min-width:0;flex:1 1 auto}
  .strength-copy h3,.strength-copy p{width:100%}
  .strength-copy h3{font-size:22px}
  .strength-copy p{font-size:16px;letter-spacing:.75px}

  /* Comparison: retain the desktop table, but make its viewport scrollable. */
  .comparison-inner{width:100%}
  .comparison-heading{width:100%}
  .comparison-stage{width:100%}
  .comparison-scroller{
    width:100%;padding-left:30px;overflow-x:auto;overflow-y:hidden;
    overscroll-behavior-inline:contain;-webkit-overflow-scrolling:touch;scrollbar-width:none
  }
  .comparison-scroller::-webkit-scrollbar{display:none}
  .comparison-table-wrap{margin-left:0}
  .comparison-footer{width:100%}

  /* Voice: two-card infinite carousel. */
  .voice-track-scroller{
    --voice-card-gap:30px;
    --voice-card-width:calc((var(--voice-carousel-width, 100vw) - 90px)/2);
    width:min(900px,100%);margin:40px auto -32px;padding-bottom:32px;
    overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;
    scroll-padding-inline:30px;overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;scrollbar-width:none
  }
  .voice-track-scroller::-webkit-scrollbar{display:none}
  .voice-track{
    display:flex;gap:var(--voice-card-gap);width:max-content;padding-inline:30px
  }
  .voice-card{
    width:var(--voice-card-width);flex:0 0 var(--voice-card-width);
    scroll-snap-align:start
  }
  .voice-card:hover{transform:none}
  .voice-card-media{
    height:clamp(232px,28vw,285px);flex-basis:clamp(232px,28vw,285px)
  }

  /* Flow: same horizontal interaction as SP, with the desktop card size. */
  .flow-inner{width:100%;padding:0}
  .flow-heading{width:calc(100% - 60px);margin:0 auto}
  .flow-lead{width:min(760px,100%)}
  .flow-scroller{
    width:100%;margin-bottom:-18px;padding:74px 30px 18px;
    overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;
    scroll-padding-inline:30px;overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;scrollbar-width:none
  }
  .flow-scroller::-webkit-scrollbar{display:none}
  .flow-list{flex:0 0 1020px}

  /* News */
  .news-home-inner{width:100%}
  .news-home-heading{width:calc(100% - 60px)}
  .news-home-list-wrap{width:min(840px,calc(100% - 60px))}

  /* Contact */
  .home-contact{padding:80px 30px}
  .home-contact-inner{width:100%;max-width:900px;gap:50px}
  .home-contact-heading{height:auto}
  .home-contact-heading h2{
    height:auto;font-size:clamp(30px,3.7vw,40px);line-height:1.45;white-space:normal;
    text-wrap:balance
  }
  .home-contact-cards{padding:0}
  .home-contact-main-card{width:100%;padding:60px 40px 46px}
  .home-contact-points{
    width:100%;grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .home-contact-points li{
    min-width:0;font-size:clamp(14px,1.8vw,16px);white-space:normal
  }
  .home-contact-actions{width:100%;gap:20px}
  .home-contact-action{width:auto;min-width:0;flex:1 1 0;padding-inline:18px}
  .home-contact-action strong{font-size:clamp(18px,2.25vw,24px)}
  .home-contact-action--line small{
    max-width:100%;font-size:clamp(10px,1.2vw,13px);letter-spacing:.45px;white-space:nowrap
  }
  .home-contact-phone-card,.home-contact-instagram-card{width:100%}
}
@media(min-width:1101px) and (max-width:1640px){
  .challenge-illustration{
    top:-50px;right:0;left:auto;width:clamp(360px,30vw,430px);height:auto
  }
}
@media(max-width:359px){
  .cm-header-inner{padding-left:14px;padding-right:14px}
  .cm-brand{width:168px;flex-basis:168px}
  .cm-mobile-actions{gap:6px}
  .cm-round-action{width:32px;height:32px}
  .cm-menu-toggle{width:30px}
  .cm-mobile-menu{padding:30px 20px}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .reveal{opacity:1;translate:none}
  .faq-item,.faq-q .pl{transition:none}
}
