/* ================================================================
   リビカル v2 共通スタイル
   Color: Navy #1a2a4a + White + Accent Orange #E8714A
   Font : Noto Sans JP (body) / Noto Serif JP (highlight)
   BP   : 375 / 768 / 1024
   ================================================================ */

:root{
  --navy:#1a2a4a;
  --navy-dark:#101a30;
  --navy-light:#2b3f6b;
  --accent:#E8714A;
  --accent-dark:#c85936;
  --cream:#fafaf7;
  --bg:#ffffff;
  --bg-soft:#f5f6f9;
  --text:#222222;
  --text-sub:#5a6070;
  --line:#e5e7eb;
  --radius:12px;
  --shadow-sm:0 2px 8px rgba(26,42,74,0.06);
  --shadow-md:0 8px 24px rgba(26,42,74,0.10);
  --shadow-lg:0 16px 40px rgba(26,42,74,0.14);
  --nav-h:64px;
  --container:1120px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.8;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--navy);text-decoration:none}
a:hover{color:var(--accent)}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* ---- Utility ---- */
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
@media (min-width:768px){.container{padding:0 32px}}
.section{padding:64px 0}
@media (min-width:768px){.section{padding:96px 0}}
.section-title{
  font-family:"Noto Serif JP",serif;
  font-size:24px;font-weight:600;
  color:var(--navy);
  text-align:center;
  margin-bottom:12px;
  line-height:1.4;
}
@media (min-width:768px){.section-title{font-size:32px}}
.section-lead{
  text-align:center;color:var(--text-sub);
  font-size:15px;margin-bottom:40px;
}
.serif{font-family:"Noto Serif JP",serif}
.accent{color:var(--accent)}

/* ---- Header ---- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  height:var(--nav-h);
}
.site-header .container{
  height:100%;
  display:flex;align-items:center;justify-content:space-between;
}
.site-logo{
  font-family:"Noto Serif JP",serif;
  font-size:22px;font-weight:600;
  color:var(--navy);letter-spacing:1px;
}
.site-logo small{
  font-size:11px;font-weight:400;
  color:var(--text-sub);margin-left:8px;letter-spacing:0;
}
.nav-toggle{
  display:flex;flex-direction:column;gap:5px;
  width:40px;height:40px;
  align-items:center;justify-content:center;
  border-radius:8px;
}
.nav-toggle span{
  display:block;width:22px;height:2px;background:var(--navy);
  transition:transform .3s,opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.site-nav{
  position:fixed;top:var(--nav-h);left:0;right:0;
  background:#fff;border-bottom:1px solid var(--line);
  box-shadow:var(--shadow-md);
  max-height:0;overflow:hidden;
  transition:max-height .3s ease;
}
.site-nav[data-open="true"]{max-height:500px}
.site-nav ul{list-style:none;padding:8px 0}
.site-nav li a{
  display:block;padding:14px 24px;
  font-size:15px;font-weight:500;
  border-bottom:1px solid var(--line);
}
.site-nav li:last-child a{border-bottom:none}

@media (min-width:768px){
  .nav-toggle{display:none}
  .site-nav{
    position:static;max-height:none;overflow:visible;
    background:transparent;border:none;box-shadow:none;
  }
  .site-nav ul{display:flex;gap:8px;padding:0}
  .site-nav li a{
    padding:8px 14px;border:none;border-radius:8px;font-size:14px;
  }
  .site-nav li a:hover{background:var(--bg-soft)}
}

/* ---- Button ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 28px;border-radius:999px;
  font-size:15px;font-weight:700;
  text-decoration:none;
  transition:transform .15s,box-shadow .15s,background .15s;
  letter-spacing:.04em;
  min-height:48px;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),#f08a68);
  color:#fff;
  box-shadow:0 6px 18px rgba(232,113,74,.32);
}
.btn-primary:hover{
  color:#fff;transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(232,113,74,.40);
}
.btn-outline-white{
  background:transparent;color:#fff;border:2px solid #fff;
}
.btn-outline-white:hover{background:#fff;color:var(--navy)}
.btn-outline-navy{
  background:#fff;color:var(--navy);border:2px solid var(--navy);
}
.btn-outline-navy:hover{background:var(--navy);color:#fff}
.btn-group{
  display:flex;flex-direction:column;gap:12px;
  align-items:center;justify-content:center;
}
@media (min-width:768px){
  .btn-group{flex-direction:row}
}

/* ---- Hero（共通ベース） ---- */
.hero{
  position:relative;
  color:#fff;
  padding:80px 0 72px;
  text-align:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(160deg,rgba(16,26,48,.82) 0%,rgba(26,42,74,.78) 50%,rgba(26,42,74,.88) 100%);
  z-index:1;
}
.hero .container{position:relative;z-index:2}
.hero h1{
  font-family:"Noto Serif JP",serif;
  font-size:28px;font-weight:600;
  line-height:1.35;margin-bottom:20px;
  letter-spacing:.02em;
}
.hero h1 em{font-style:normal;color:var(--accent)}
.hero p.lead{
  font-size:15px;opacity:.95;
  max-width:640px;margin:0 auto 32px;
  line-height:1.8;
}
.hero .hero-badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.35);
  padding:6px 18px;border-radius:999px;
  font-size:12px;font-weight:500;
  margin-bottom:20px;letter-spacing:.08em;
}
@media (min-width:768px){
  .hero{padding:120px 0 108px}
  .hero h1{font-size:44px}
  .hero p.lead{font-size:17px}
}
@media (min-width:1024px){
  .hero h1{font-size:52px}
}

/* ---- Hero background images per page ---- */
.hero.hero-top::before{background-image:url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80")}
.hero.hero-colvan::before{background-image:url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80")}
.hero.hero-moshimo::before{background-image:url("https://images.unsplash.com/photo-1559526324-4b87b5e36e44?auto=format&fit=crop&w=1600&q=80")}
.hero.hero-hpservice::before{background-image:url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80")}
.hero.hero-about::before{background-image:url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80")}

/* ---- Cards Grid ---- */
.card-grid{
  display:grid;gap:20px;
  grid-template-columns:1fr;
}
@media (min-width:768px){
  .card-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .card-grid.cols-3{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:1024px){
  .card-grid.cols-3{grid-template-columns:repeat(3,1fr)}
  .card-grid.cols-4{grid-template-columns:repeat(4,1fr)}
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 24px;
  transition:transform .2s,box-shadow .2s;
}
.card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.card h3{
  font-family:"Noto Serif JP",serif;
  font-size:19px;font-weight:600;color:var(--navy);
  margin-bottom:12px;
}
.card p{font-size:14px;color:var(--text-sub);line-height:1.75}
.card .card-icon{
  width:56px;height:56px;border-radius:14px;
  background:rgba(232,113,74,.12);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  color:var(--accent);
}
.card .card-icon svg{width:28px;height:28px}

/* ---- Biz cards (top page 3 services) ---- */
.biz-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 26px;
  text-align:left;
  display:flex;flex-direction:column;
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.biz-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--accent);
}
.biz-card .biz-tag{
  font-size:11px;font-weight:700;letter-spacing:.12em;
  color:var(--accent);margin-bottom:10px;
}
.biz-card h3{
  font-family:"Noto Serif JP",serif;
  font-size:24px;font-weight:600;color:var(--navy);
  margin-bottom:14px;
}
.biz-card .biz-desc{
  flex:1;color:var(--text-sub);font-size:14px;margin-bottom:18px;
}
.biz-card .biz-price{
  font-size:13px;color:var(--navy);font-weight:600;margin-bottom:18px;
}
.biz-card .biz-price strong{font-size:20px;color:var(--accent);margin-right:4px}
.biz-card .biz-link,
.biz-card a.biz-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--navy);font-weight:700;font-size:14px;
}
.biz-card .biz-link::after,
.biz-card a.biz-link::after{content:"→";transition:transform .2s;margin-left:4px}
.biz-card:hover .biz-link::after,
.biz-card a.biz-link:hover::after{transform:translateX(4px)}

/* Clickable card (whole card is a link) */
a.biz-card-link{
  color:inherit;
  text-decoration:none;
}
a.biz-card-link:hover{
  color:inherit;
  border-color:var(--accent);
}
a.biz-card-link:hover .biz-link{color:var(--accent)}
a.biz-card-link:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:2px;
}

/* ---- Stance section（3本柱の姿勢） ---- */
.stance{background:var(--navy);color:#fff;padding:80px 0}
.stance .section-title{color:#fff}
.stance .stance-grid{
  display:grid;gap:28px;
  grid-template-columns:1fr;
  margin-top:40px;
}
@media (min-width:768px){.stance .stance-grid{grid-template-columns:repeat(3,1fr)}}
.stance-item{
  text-align:center;padding:24px 16px;
  border-top:3px solid var(--accent);
}
.stance-item h3{
  font-family:"Noto Serif JP",serif;
  font-size:18px;font-weight:600;margin-bottom:12px;
}
.stance-item p{font-size:14px;opacity:.92;line-height:1.85}

/* ---- News ---- */
.news-list{list-style:none;max-width:720px;margin:0 auto;padding:0}
.news-list li{
  padding:18px 4px;
  border-bottom:1px solid var(--line);
  display:flex;flex-direction:column;gap:6px;
}
@media (min-width:768px){
  .news-list li{flex-direction:row;align-items:baseline;gap:24px}
}
.news-date{
  font-size:13px;color:var(--text-sub);font-family:"Noto Sans JP",sans-serif;
  letter-spacing:.04em;flex-shrink:0;
}
.news-tag{
  display:inline-block;font-size:11px;font-weight:700;
  padding:2px 10px;border-radius:4px;
  background:rgba(232,113,74,.12);color:var(--accent);
  margin-right:8px;
}
.news-title{font-size:15px;color:var(--navy);font-weight:500}

/* ---- Plan cards ---- */
.plan-grid{
  display:grid;gap:20px;
  grid-template-columns:1fr;
}
@media (min-width:768px){.plan-grid{grid-template-columns:repeat(3,1fr);gap:24px}}
.plan-card{
  background:#fff;border:2px solid var(--line);
  border-radius:16px;padding:32px 24px;
  position:relative;display:flex;flex-direction:column;
}
.plan-card.recommended{
  border-color:var(--accent);
  box-shadow:0 12px 32px rgba(232,113,74,.18);
}
.plan-card.recommended::before{
  content:"おすすめ";
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:#fff;
  font-size:12px;font-weight:700;padding:5px 18px;border-radius:999px;
  letter-spacing:.08em;
}
.plan-name{
  font-family:"Noto Serif JP",serif;
  font-size:20px;font-weight:600;color:var(--navy);
  margin-bottom:6px;
}
.plan-desc{font-size:13px;color:var(--text-sub);margin-bottom:16px}
.plan-price{
  font-size:14px;color:var(--text-sub);margin-bottom:20px;
  padding-bottom:20px;border-bottom:1px dashed var(--line);
}
.plan-price strong{
  font-family:"Noto Serif JP",serif;font-size:36px;
  color:var(--navy);font-weight:600;margin-right:4px;
}
.plan-price small{font-size:12px;color:var(--text-sub)}
.plan-features{list-style:none;flex:1;margin-bottom:22px}
.plan-features li{
  position:relative;padding:6px 0 6px 26px;
  font-size:13.5px;color:var(--text);line-height:1.7;
}
.plan-features li::before{
  content:"";
  position:absolute;left:0;top:12px;
  width:16px;height:16px;border-radius:50%;
  background:var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3 3 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}
.plan-features li.muted{color:var(--text-sub)}
.plan-features li.muted::before{background:#d1d5db}

/* ---- Compare table ---- */
.compare-wrap{overflow-x:auto;margin-top:32px}
.compare{
  width:100%;min-width:640px;border-collapse:collapse;
  background:#fff;border-radius:12px;overflow:hidden;
  box-shadow:var(--shadow-sm);
  font-size:13.5px;
}
.compare th,.compare td{
  padding:14px 14px;text-align:center;
  border-bottom:1px solid var(--line);border-right:1px solid var(--line);
  vertical-align:middle;
}
.compare th:last-child,.compare td:last-child{border-right:none}
.compare thead th{background:var(--navy);color:#fff;font-weight:600}
.compare thead th.highlight{background:var(--accent)}
.compare tbody th{
  text-align:left;background:var(--bg-soft);font-weight:500;color:var(--navy);
}
.compare .yes{color:var(--accent);font-weight:700}
.compare .no{color:#aaa}

/* ---- FAQ ---- */
.faq-list{max-width:760px;margin:0 auto}
.faq-item{
  background:#fff;border:1px solid var(--line);
  border-radius:10px;margin-bottom:12px;overflow:hidden;
}
.faq-q{
  padding:18px 52px 18px 22px;
  font-weight:600;color:var(--navy);font-size:15px;
  cursor:pointer;position:relative;
  line-height:1.6;
}
.faq-q::before{
  content:"Q";
  color:var(--accent);margin-right:10px;font-weight:700;
}
.faq-q::after{
  content:"+";
  position:absolute;right:20px;top:50%;transform:translateY(-50%);
  font-size:22px;color:var(--accent);
  transition:transform .2s;
}
.faq-item[open] .faq-q::after{transform:translateY(-50%) rotate(45deg)}
.faq-a{
  padding:0 22px 18px 54px;
  color:var(--text-sub);font-size:14px;line-height:1.85;
}

/* ---- CTA Block ---- */
.cta-block{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%);
  color:#fff;padding:64px 0;text-align:center;
}
.cta-block h2{
  font-family:"Noto Serif JP",serif;
  font-size:24px;font-weight:600;margin-bottom:14px;
  line-height:1.4;
}
@media (min-width:768px){.cta-block h2{font-size:32px}}
.cta-block p{opacity:.9;margin-bottom:28px;font-size:15px}

/* ---- Comparison vs competitors ---- */
.vs-wrap{overflow-x:auto;margin-top:32px}
.vs-table{
  width:100%;min-width:640px;border-collapse:collapse;
  background:#fff;font-size:13.5px;
  border-radius:12px;overflow:hidden;box-shadow:var(--shadow-sm);
}
.vs-table th,.vs-table td{
  padding:14px;border-bottom:1px solid var(--line);text-align:center;
}
.vs-table th{background:var(--bg-soft);color:var(--navy);font-weight:600}
.vs-table .col-us{background:rgba(232,113,74,.08)}
.vs-table thead .col-us{background:var(--accent);color:#fff}
.vs-table tbody th{text-align:left;font-weight:500}

/* ---- Scene cards (moshimo-plus) ---- */
.scene-grid{
  display:grid;gap:24px;grid-template-columns:1fr;
  margin-top:32px;
}
@media (min-width:768px){.scene-grid{grid-template-columns:repeat(2,1fr)}}
.scene-card{
  background:#fff;border-radius:14px;overflow:hidden;
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;
}
.scene-card .scene-img{
  width:100%;aspect-ratio:16/9;
  background-size:cover;background-position:center;
}
.scene-card .scene-body{padding:24px}
.scene-card h3{
  font-family:"Noto Serif JP",serif;
  font-size:19px;font-weight:600;color:var(--navy);margin-bottom:10px;
}
.scene-card p{font-size:14px;color:var(--text-sub);line-height:1.85}

/* ---- Info table (about) ---- */
.info-table{width:100%;border-collapse:collapse;background:#fff;border-radius:12px;overflow:hidden;box-shadow:var(--shadow-sm)}
.info-table th,.info-table td{
  padding:16px 20px;border-bottom:1px solid var(--line);
  font-size:14.5px;text-align:left;vertical-align:top;line-height:1.8;
}
.info-table th{
  background:var(--bg-soft);font-weight:600;color:var(--navy);
  width:140px;
}
@media (min-width:768px){.info-table th{width:200px}}

/* ---- Footer ---- */
.site-footer{
  background:var(--navy-dark);color:#c8cdda;padding:48px 0 24px;
  font-size:13.5px;
}
.footer-grid{
  display:grid;gap:32px;grid-template-columns:1fr;
  margin-bottom:32px;
}
@media (min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-logo{
  font-family:"Noto Serif JP",serif;
  font-size:22px;font-weight:600;color:#fff;margin-bottom:12px;letter-spacing:1px;
}
.footer-desc{color:#9aa3b8;line-height:1.8;font-size:13px;max-width:360px}
.footer-col h4{
  font-size:13px;color:#fff;font-weight:600;margin-bottom:14px;
  letter-spacing:.06em;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:8px}
.footer-col a{color:#c8cdda;font-size:13px}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:20px;
  display:flex;flex-direction:column;gap:8px;
  align-items:center;justify-content:space-between;
  color:#7a8196;font-size:12px;
}
@media (min-width:768px){.footer-bottom{flex-direction:row}}

/* ---- Utility helpers ---- */
.text-center{text-align:center}
.mt-0{margin-top:0}
.mt-2{margin-top:20px}
.mt-4{margin-top:40px}
.mb-0{margin-bottom:0}

/* ---- Problems / Solutions ---- */
.problem-list{
  display:grid;gap:16px;grid-template-columns:1fr;
}
@media (min-width:768px){.problem-list{grid-template-columns:repeat(3,1fr);gap:20px}}
.problem-item{
  background:#fff;border:1px solid var(--line);
  border-radius:12px;padding:22px;text-align:left;
}
.problem-item .icon{
  width:44px;height:44px;border-radius:50%;
  background:rgba(232,113,74,.12);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:12px;color:var(--accent);
}
.problem-item h3{
  font-family:"Noto Serif JP",serif;
  font-size:16px;color:var(--navy);margin-bottom:8px;
}
.problem-item p{font-size:13.5px;color:var(--text-sub)}

/* ---- Illustration helpers (irasutoya) ---- */
.illust-wrap{
  display:flex;align-items:center;justify-content:center;
  padding:16px;
}
.illust-wrap img{
  max-width:220px;width:100%;height:auto;
}
.illust-wrap.size-sm img{max-width:140px}
.illust-wrap.size-lg img{max-width:320px}
@media (min-width:768px){
  .illust-wrap img{max-width:260px}
  .illust-wrap.size-lg img{max-width:380px}
}
.feature-with-illust{
  display:grid;gap:24px;
  grid-template-columns:1fr;
  align-items:center;
  margin-top:32px;
}
@media (min-width:768px){
  .feature-with-illust{grid-template-columns:1fr 1fr;gap:48px}
  .feature-with-illust.reverse .illust-wrap{order:2}
}
.feature-with-illust h3{
  font-family:"Noto Serif JP",serif;
  font-size:22px;font-weight:600;color:var(--navy);margin-bottom:14px;
}
.feature-with-illust p{
  color:var(--text-sub);font-size:15px;line-height:1.9;
}

/* ---- Option / upsell cards ---- */
.option-grid{
  display:grid;gap:16px;grid-template-columns:1fr;margin-top:32px;
}
@media (min-width:768px){.option-grid{grid-template-columns:repeat(3,1fr);gap:20px}}
.option-card{
  background:#fff;border:1px solid var(--line);border-radius:12px;
  padding:22px 20px;
  display:flex;flex-direction:column;gap:8px;
}
.option-card .option-tag{
  font-size:11px;font-weight:700;letter-spacing:.1em;
  color:var(--accent);margin-bottom:4px;
}
.option-card h3{
  font-family:"Noto Serif JP",serif;
  font-size:17px;font-weight:600;color:var(--navy);
}
.option-card p{font-size:13.5px;color:var(--text-sub);line-height:1.8;flex:1}
.option-card .option-price{
  font-size:14px;color:var(--navy);font-weight:700;margin-top:6px;
  padding-top:10px;border-top:1px dashed var(--line);
}
.option-card .option-price strong{color:var(--accent);font-size:18px;margin-right:4px}

/* 404 */
.notfound{
  min-height:60vh;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:80px 20px;
}
.notfound h1{
  font-family:"Noto Serif JP",serif;
  font-size:72px;font-weight:600;color:var(--navy);line-height:1;
  margin-bottom:12px;
}
.notfound p{color:var(--text-sub);margin-bottom:24px}

/* ---- Hero Benefits（目玉機能セクション） ---- */
.highlights{background:var(--bg-soft)}
.highlights .highlight-lead{
  max-width:720px;margin:0 auto 40px;text-align:center;
  color:var(--text-sub);font-size:15px;line-height:1.85;
}
.highlight-grid{
  display:grid;gap:20px;
  grid-template-columns:1fr;
  margin-top:32px;
}
@media (min-width:768px){
  .highlight-grid{grid-template-columns:repeat(2,1fr);gap:24px}
}
@media (min-width:1024px){
  .highlight-grid.cols-3{grid-template-columns:repeat(3,1fr)}
}
.highlight-card{
  background:#fff;border:1px solid var(--line);
  border-radius:16px;padding:28px 24px;
  position:relative;overflow:hidden;
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.highlight-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:var(--accent);
}
.highlight-card .hl-tag{
  display:inline-block;
  font-size:11px;font-weight:700;letter-spacing:.1em;
  padding:4px 12px;border-radius:4px;
  background:rgba(232,113,74,.12);color:var(--accent);
  margin-bottom:14px;
}
.highlight-card .hl-tag.unique{background:var(--accent);color:#fff}
.highlight-card .hl-illust{
  width:100%;max-width:200px;height:130px;
  margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,#faf8f3 0%,#ffffff 100%);
  border-radius:12px;padding:8px;
}
.highlight-card .hl-illust svg{width:100%;height:100%}
.highlight-card h3{
  font-family:"Noto Serif JP",serif;
  font-size:18px;font-weight:600;color:var(--navy);
  margin-bottom:10px;line-height:1.5;
}
.highlight-card p{
  font-size:14px;color:var(--text-sub);line-height:1.85;
}
.highlight-card .hl-benefit{
  margin-top:14px;padding-top:14px;
  border-top:1px dashed var(--line);
  font-size:13px;color:var(--navy);
  font-weight:500;line-height:1.7;
}
.highlight-card .hl-benefit::before{
  content:"→ ";color:var(--accent);font-weight:700;
}

/* ---- Competitor comparison（A社/B社/C社・プラン上） ---- */
.vs-abc{background:#fff}
.vs-abc-wrap{overflow-x:auto;margin-top:24px;-webkit-overflow-scrolling:touch}
.vs-abc-table{
  width:100%;min-width:640px;border-collapse:separate;border-spacing:0;
  background:#fff;font-size:14px;
  border-radius:12px;overflow:hidden;box-shadow:var(--shadow-sm);
}
.vs-abc-table th,.vs-abc-table td{
  padding:14px 12px;text-align:center;
  border-bottom:1px solid var(--line);border-right:1px solid var(--line);
  vertical-align:middle;
}
.vs-abc-table th:last-child,.vs-abc-table td:last-child{border-right:none}
.vs-abc-table tbody tr:last-child th,
.vs-abc-table tbody tr:last-child td{border-bottom:none}
.vs-abc-table thead th{
  background:var(--bg-soft);color:var(--navy);font-weight:600;
  font-size:13px;letter-spacing:.02em;
}
.vs-abc-table thead th.col-us{
  background:var(--accent);color:#fff;
}
.vs-abc-table tbody th{
  text-align:left;background:#fff;
  font-weight:500;color:var(--navy);font-size:13.5px;
  width:32%;
}
.vs-abc-table tbody td{color:var(--text);font-size:13.5px}
.vs-abc-table tbody td.col-us{
  background:rgba(232,113,74,.08);color:var(--accent-dark);font-weight:700;
}
.vs-abc-table .mark-ok{color:var(--accent);font-weight:700;font-size:16px}
.vs-abc-table .mark-partial{color:#8a8a8a;font-weight:500}
.vs-abc-table .mark-no{color:#b5b8bf;font-size:16px}
.vs-abc-note{
  text-align:center;margin-top:16px;
  font-size:12px;color:var(--text-sub);line-height:1.7;
}

/* ---- Plan matrix（機能カテゴリ別テーブル） ---- */
.plan-matrix-wrap{
  overflow-x:auto;margin-top:32px;
  -webkit-overflow-scrolling:touch;
  background:#fff;border-radius:12px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
}
.plan-matrix{
  width:100%;min-width:680px;border-collapse:separate;border-spacing:0;
  font-size:13.5px;
}
.plan-matrix thead th{
  position:sticky;top:0;z-index:2;
  padding:16px 12px;
  background:var(--navy);color:#fff;
  font-weight:600;text-align:center;
  font-size:14px;letter-spacing:.02em;
  border-right:1px solid rgba(255,255,255,.15);
}
.plan-matrix thead th:last-child{border-right:none}
.plan-matrix thead th.plan-col{
  background:var(--navy);
}
.plan-matrix thead th.plan-col.recommended{
  background:var(--accent);
}
.plan-matrix thead th .plan-price-tag{
  display:block;font-size:12px;font-weight:500;
  color:rgba(255,255,255,.88);margin-top:4px;
  letter-spacing:.02em;
}
.plan-matrix tbody .cat-row th{
  background:var(--bg-soft);color:var(--navy);
  font-weight:700;font-size:13px;
  text-align:left;
  padding:12px 16px;
  letter-spacing:.04em;
  border-top:2px solid var(--navy);
}
.plan-matrix tbody .cat-row th .cat-icon{
  display:inline-block;vertical-align:middle;
  width:18px;height:18px;margin-right:8px;
  color:var(--accent);
}
.plan-matrix tbody tr.feat-row th{
  text-align:left;padding:10px 16px 10px 42px;
  font-weight:500;color:var(--text);
  background:#fff;font-size:13.5px;
  border-bottom:1px solid var(--line);
  width:38%;
}
.plan-matrix tbody tr.feat-row td{
  padding:10px 8px;text-align:center;
  border-bottom:1px solid var(--line);
  border-left:1px solid var(--line);
}
.plan-matrix tbody tr.feat-row td.has-it{
  background:rgba(232,113,74,.10);
  color:var(--accent-dark);font-weight:700;
}
.plan-matrix tbody tr.feat-row td.has-it.recommended-col{
  background:rgba(232,113,74,.20);
}
.plan-matrix tbody tr.feat-row td.no-it{
  background:#fafbfc;color:#c5c8cf;font-weight:400;
}
.plan-matrix tbody tr.feat-row td .val{
  display:inline-block;font-size:13px;line-height:1.4;
}
.plan-matrix tbody tr.feat-row td .check{
  display:inline-block;font-size:16px;font-weight:700;
}
.plan-matrix tbody tr:last-child th,
.plan-matrix tbody tr:last-child td{border-bottom:none}
.plan-matrix-scroll-hint{
  display:none;
  text-align:center;margin-top:12px;
  font-size:12px;color:var(--text-sub);
}
@media (max-width:767px){
  .plan-matrix-scroll-hint{display:block}
}

.plan-headrow{
  display:grid;gap:16px;
  grid-template-columns:1fr;
  margin-bottom:24px;
}
@media (min-width:768px){
  .plan-headrow{grid-template-columns:repeat(3,1fr);gap:20px}
}
.plan-headcard{
  background:#fff;border:2px solid var(--line);
  border-radius:14px;padding:20px 18px;text-align:center;
  position:relative;
}
.plan-headcard.recommended{
  border-color:var(--accent);
  background:linear-gradient(180deg,rgba(232,113,74,.06),#fff);
}
.plan-headcard.recommended::before{
  content:"おすすめ";
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:#fff;
  font-size:11px;font-weight:700;padding:4px 14px;border-radius:999px;
  letter-spacing:.08em;
}
.plan-headcard .hn{
  font-family:"Noto Serif JP",serif;
  font-size:18px;font-weight:600;color:var(--navy);margin-bottom:4px;
}
.plan-headcard .hp{
  font-family:"Noto Serif JP",serif;
  font-size:28px;font-weight:600;color:var(--navy);
}
.plan-headcard .hp small{
  font-size:12px;color:var(--text-sub);font-weight:400;margin-left:4px;
  font-family:"Noto Sans JP",sans-serif;
}
.plan-headcard .hinit{
  font-size:12px;color:var(--text-sub);margin-top:4px;
}

/* ---- Feature options（機能追加オプション） ---- */
.options-grid{
  display:grid;gap:16px;grid-template-columns:1fr;
  margin-top:32px;
}
@media (min-width:768px){
  .options-grid{grid-template-columns:repeat(2,1fr);gap:20px}
}
@media (min-width:1024px){
  .options-grid{grid-template-columns:repeat(3,1fr)}
}
.option-card{
  background:#fff;border:1px solid var(--line);
  border-radius:12px;padding:22px 20px;
  display:flex;flex-direction:column;
  transition:border-color .2s,box-shadow .2s;
}
.option-card:hover{
  border-color:var(--accent);
  box-shadow:var(--shadow-sm);
}
.option-card .opt-icon{
  width:44px;height:44px;border-radius:10px;
  background:rgba(232,113,74,.12);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent);margin-bottom:14px;
}
.option-card .opt-icon svg{width:22px;height:22px}
.option-card h3{
  font-family:"Noto Serif JP",serif;
  font-size:16px;font-weight:600;color:var(--navy);
  margin-bottom:8px;line-height:1.5;
}
.option-card p{
  font-size:13px;color:var(--text-sub);line-height:1.8;
  flex:1;margin-bottom:14px;
}
.option-card .opt-price{
  padding-top:14px;border-top:1px dashed var(--line);
  display:flex;flex-wrap:wrap;gap:8px;align-items:baseline;
  font-size:13px;color:var(--navy);
}
.option-card .opt-price .init{color:var(--text-sub)}
.option-card .opt-price .monthly{font-weight:700;color:var(--accent)}
.option-card .opt-price strong{
  font-family:"Noto Serif JP",serif;font-size:18px;
  font-weight:600;color:var(--navy);
}

/* ---- Transfer price note ---- */
.transfer-note{
  max-width:720px;margin:32px auto 0;
  background:#fff;border:1px solid var(--line);
  border-left:3px solid var(--accent);
  border-radius:8px;padding:18px 22px;
}
.transfer-note h4{
  font-family:"Noto Serif JP",serif;
  font-size:15px;color:var(--navy);font-weight:600;
  margin-bottom:10px;
}
.transfer-note table{
  width:100%;font-size:13px;border-collapse:collapse;margin-bottom:8px;
}
.transfer-note table th,
.transfer-note table td{
  padding:6px 8px;text-align:left;
  border-bottom:1px solid var(--line);
  font-weight:400;
}
.transfer-note table th{font-weight:600;color:var(--navy)}
.transfer-note table tr:last-child th,
.transfer-note table tr:last-child td{border-bottom:none}
.transfer-note p.small{
  font-size:12px;color:var(--text-sub);line-height:1.7;margin:0;
}

/* ---- Responsive plan matrix horizontal scroll fade ---- */
@media (max-width:767px){
  .plan-matrix thead th{font-size:12px;padding:12px 6px}
  .plan-matrix tbody tr.feat-row th{padding:8px 10px 8px 28px;font-size:12.5px}
  .plan-matrix tbody .cat-row th{padding:10px 12px;font-size:12.5px}
  .plan-matrix tbody tr.feat-row td{padding:8px 4px;font-size:12.5px}
}

/* ================================================================
   Storytelling (4-6 panel manga-style situation) + Demo Trial
   2026-04-22 Part3 (DX電話風シチュエーション物語)
   ================================================================ */

.story-section{
  background:linear-gradient(180deg,#fdfbf7 0%,#f5f1ea 100%);
  padding:72px 0 80px;
  position:relative;
}
.story-section .section-title{margin-bottom:8px}
.story-section .section-lead{
  color:var(--text-sub);font-size:14.5px;
  max-width:640px;margin:0 auto 36px;
}

/* Panels grid - mobile: 1col, tablet: 2col, desktop: 3col (for 6 panels) */
.story-panels{
  display:grid;gap:18px;
  grid-template-columns:1fr;
  max-width:1040px;margin:0 auto;
}
@media (min-width:600px){
  .story-panels{grid-template-columns:repeat(2,1fr);gap:20px}
}
@media (min-width:1024px){
  .story-panels.cols-3{grid-template-columns:repeat(3,1fr)}
}

.story-panel{
  background:#fff;
  border:2px solid #2b2b2b;
  border-radius:8px;
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:4px 4px 0 rgba(26,42,74,0.12);
  position:relative;
  transition:transform .2s;
}
.story-panel:hover{transform:translateY(-2px)}
.story-panel .panel-number{
  position:absolute;top:-1px;left:-1px;
  background:var(--navy);color:#fff;
  font-family:"Noto Serif JP",serif;
  font-size:13px;font-weight:700;
  padding:4px 12px 5px;
  border-bottom-right-radius:8px;
  letter-spacing:.06em;z-index:3;
}
.story-panel .panel-art{
  width:100%;aspect-ratio:4/3;
  background:#fef9f0;
  position:relative;overflow:hidden;
  border-bottom:2px solid #2b2b2b;
}
.story-panel .panel-art svg{
  width:100%;height:100%;display:block;
}
.story-panel .panel-caption{
  padding:14px 16px 16px;
  font-size:14px;line-height:1.65;
  color:var(--text);
  font-weight:500;
  min-height:68px;
  display:flex;align-items:center;
  background:#fff;
}

/* Speech bubble overlay inside art */
.panel-bubble{
  position:absolute;
  background:#fff;
  border:2px solid #2b2b2b;
  border-radius:14px;
  padding:5px 11px;
  font-size:11.5px;font-weight:700;
  color:var(--navy);
  line-height:1.35;
  max-width:55%;
  box-shadow:2px 2px 0 rgba(0,0,0,.08);
  z-index:2;
}
.panel-bubble.tr{right:10px;top:12px}
.panel-bubble.tl{left:10px;top:12px}
.panel-bubble.br{right:10px;bottom:12px}
.panel-bubble.bl{left:10px;bottom:12px}

/* Moshimo softer palette override */
.story-section.story-moshimo{
  background:linear-gradient(180deg,#f6f9fc 0%,#eaf1f7 100%);
}

/* ---- Demo Trial (イメージ動画+QR+電話番号) ---- */
.demo-trial{
  background:var(--navy);
  color:#fff;
  padding:72px 0;
  position:relative;
}
.demo-trial .section-title{color:#fff}
.demo-trial .section-lead{color:rgba(255,255,255,.82)}

.demo-grid{
  display:grid;gap:24px;
  grid-template-columns:1fr;
  max-width:1040px;margin:36px auto 0;
  align-items:stretch;
}
@media (min-width:900px){
  .demo-grid{grid-template-columns:1.4fr 1fr;gap:32px}
}

.demo-video{
  background:#0e1623;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  position:relative;
  aspect-ratio:16/9;
  display:flex;align-items:center;justify-content:center;
}
.demo-video .placeholder-inner{
  text-align:center;padding:24px;
  color:#c8cdda;
}
.demo-video .placeholder-inner svg.icon-play{
  width:64px;height:64px;margin:0 auto 12px;
  color:var(--accent);
  opacity:.9;
}
.demo-video .placeholder-inner .label-tag{
  display:inline-block;
  background:rgba(232,113,74,.16);
  color:var(--accent);
  font-size:11px;font-weight:700;letter-spacing:.1em;
  padding:4px 12px;border-radius:999px;
  margin-bottom:10px;
}
.demo-video .placeholder-inner h3{
  font-family:"Noto Serif JP",serif;
  font-size:20px;color:#fff;margin-bottom:8px;font-weight:600;
}
.demo-video .placeholder-inner p{
  font-size:13px;line-height:1.7;color:#9aa3b8;
  max-width:340px;margin:0 auto;
}

.demo-try{
  background:linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:28px 22px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.demo-try .demo-badge{
  display:inline-block;
  background:var(--accent);color:#fff;
  font-size:11px;font-weight:700;letter-spacing:.1em;
  padding:5px 14px;border-radius:999px;
  margin-bottom:14px;
}
.demo-try h3{
  font-family:"Noto Serif JP",serif;
  font-size:19px;font-weight:600;
  color:#fff;margin-bottom:10px;line-height:1.4;
}
.demo-try .demo-hint{
  font-size:13px;color:#c8cdda;line-height:1.7;
  margin-bottom:18px;max-width:280px;
}
.demo-try .qr-box{
  background:#fff;border-radius:12px;
  padding:14px;margin-bottom:16px;
  box-shadow:0 6px 20px rgba(0,0,0,.22);
}
.demo-try .qr-box img{
  width:150px;height:150px;display:block;
}
.demo-try .phone-number{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  border-radius:10px;
  padding:14px 20px;
  margin-bottom:10px;
  width:100%;max-width:300px;
}
.demo-try .phone-number .ph-label{
  font-size:11px;font-weight:700;letter-spacing:.1em;
  color:var(--accent);margin-bottom:4px;
  display:block;
}
.demo-try .phone-number a{
  font-family:"Noto Serif JP",serif;
  font-size:22px;font-weight:700;color:#fff;
  letter-spacing:.04em;
}
.demo-try .phone-number a:hover{color:var(--accent)}
.demo-try .demo-note{
  font-size:11.5px;color:#9aa3b8;
  line-height:1.6;margin-top:8px;
}

@media (max-width:480px){
  .demo-try{padding:22px 16px}
  .demo-try .qr-box img{width:130px;height:130px}
  .demo-try .phone-number a{font-size:19px}
}

/* ================================================================
   モバイル表示改善（2026-04-22 小林さん指示）
   - 他社比較表: 項目列 + 自社列の2列を sticky 固定、他社3列は横スクロール
   - 料金プランマトリクス: 1画面で3プラン並び（横スクロールなし）
   - 通話料テーブル: 値の改行防止（white-space:nowrap）
   ================================================================ */

/* ---- 767px以下（スマホ全般） ---- */
@media (max-width:767px){

  /* === 他社比較表（vs-abc）: sticky 2列 ===
     項目列 110px + 自社列(コルバン/もしも+) 80px = 190px 固定
     残り幅で A社 / B社 / C社 を横スクロール */
  .vs-abc-wrap{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    border-radius:12px;
    /* スクロール可能なことを右端のグラデで示す */
    background:
      linear-gradient(90deg, #fff 30%, rgba(255,255,255,0)) 0 0/40px 100% no-repeat,
      linear-gradient(270deg, #fff 30%, rgba(255,255,255,0)) 100% 0/40px 100% no-repeat,
      radial-gradient(farthest-side at 0 50%, rgba(26,42,74,.12), transparent) 0 0/14px 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(26,42,74,.12), transparent) 100% 0/14px 100% no-repeat,
      #fff;
    background-attachment:local,local,scroll,scroll,local;
  }
  .vs-abc-table{
    min-width:480px; /* 5列が最低限見える幅 */
    font-size:12.5px;
    box-shadow:none;
    border-radius:0;
  }
  .vs-abc-table th,
  .vs-abc-table td{
    padding:10px 8px;
    font-size:12px;
    line-height:1.45;
  }
  /* 項目列を sticky */
  .vs-abc-table thead th:first-child,
  .vs-abc-table tbody th:first-child,
  .vs-abc-table tbody th[scope="row"]{
    position:sticky;
    left:0;
    z-index:3;
    background:#fff;
    width:110px;
    min-width:110px;
    max-width:110px;
    text-align:left;
    box-shadow:1px 0 0 var(--line);
    font-size:11.5px;
    padding-left:10px;
    padding-right:6px;
  }
  /* 自社列（2列目 col-us）を sticky */
  .vs-abc-table thead th.col-us,
  .vs-abc-table tbody td.col-us{
    position:sticky;
    left:110px;
    z-index:2;
    width:86px;
    min-width:86px;
    max-width:86px;
    box-shadow:2px 0 4px rgba(26,42,74,.07);
  }
  .vs-abc-table thead th.col-us{
    background:var(--accent);
    color:#fff;
  }
  .vs-abc-table tbody td.col-us{
    background:#fef0ea; /* 不透明な明オレンジ（sticky重なり時に下が透けないよう） */
    color:var(--accent-dark);
    font-weight:700;
  }
  .vs-abc-table tbody th[scope="row"]{
    font-weight:500;
    color:var(--navy);
  }
  /* 他社列は幅を詰める */
  .vs-abc-table thead th:not(:first-child):not(.col-us),
  .vs-abc-table tbody td:not(.col-us){
    min-width:78px;
  }
  .vs-abc-table .mark-ok{font-size:14px}
  .vs-abc-table .mark-no{font-size:14px}

  /* === 料金プランマトリクス: 1画面で3プランが並ぶ ===
     機能名 135px + 3プラン列 × 約66px = 合計 333px (iPhone SE 335px に収まる)
     横スクロールは発生させない */
  .plan-matrix-wrap{
    overflow-x:hidden; /* 横スクロール廃止（1画面に収めるため） */
    border-radius:10px;
  }
  .plan-matrix{
    min-width:0;
    width:100%;
    table-layout:fixed;
    font-size:12px;
  }
  .plan-matrix colgroup + thead th,
  .plan-matrix thead th{
    font-size:11.5px;
    padding:10px 2px;
    letter-spacing:0;
    line-height:1.25;
  }
  /* 列幅を固定で配分 */
  .plan-matrix thead th:first-child,
  .plan-matrix tbody tr.feat-row th{
    width:40%;
  }
  .plan-matrix thead th.plan-col{
    width:20%;
  }
  .plan-matrix tbody tr.feat-row th{
    padding:8px 4px 8px 10px;
    font-size:11.5px;
    line-height:1.4;
    font-weight:500;
    word-break:break-all; /* 長い機能名は折り返し */
  }
  /* 機能名内の補足（small）は非常に小さく */
  .plan-matrix tbody tr.feat-row th small{
    font-size:10px !important;
    line-height:1.35;
    margin-top:2px;
  }
  .plan-matrix tbody .cat-row th{
    padding:8px 10px;
    font-size:11.5px;
    letter-spacing:.02em;
  }
  .plan-matrix tbody .cat-row th .cat-icon{
    width:14px;height:14px;margin-right:5px;
  }
  .plan-matrix tbody tr.feat-row td{
    padding:8px 2px;
    font-size:11px;
    line-height:1.35;
    word-break:break-all;
  }
  .plan-matrix tbody tr.feat-row td .val{
    font-size:10.5px;
    line-height:1.3;
    letter-spacing:-.02em;
  }
  .plan-matrix tbody tr.feat-row td .check{
    font-size:13px;
  }
  /* 横スクロールヒントは非表示（スクロールしない設計のため） */
  .plan-matrix-scroll-hint{display:none !important}

  /* プランヘッダーカードも縦積みでなく横並びを継続させる（比較しやすく） */
  .plan-headrow{
    grid-template-columns:repeat(3,1fr);
    gap:6px;
  }
  .plan-headcard{
    padding:14px 6px 12px;
    border-width:1.5px;
    border-radius:10px;
  }
  .plan-headcard::before{display:none}
  .plan-headcard.recommended::before{
    display:block;
    font-size:9px;
    padding:2px 8px;
    top:-9px;
    letter-spacing:.04em;
  }
  .plan-headcard .hn{font-size:13px;margin-bottom:2px}
  .plan-headcard .hp{font-size:18px;line-height:1.2}
  .plan-headcard .hp small{font-size:9px;margin-left:2px;display:block;margin-top:1px}
  .plan-headcard .hinit{font-size:9.5px;line-height:1.3;margin-top:4px}

  /* === 通話料テーブル（transfer-note）: 項目が1行で見えるように === */
  .transfer-note{
    padding:14px 12px;
    max-width:100%;
  }
  .transfer-note h4{
    font-size:14px;
    margin-bottom:8px;
  }
  .transfer-note table{
    display:block;
    font-size:12px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .transfer-note table tbody{
    display:block;
    width:100%;
  }
  .transfer-note table tr{
    display:flex;
    align-items:flex-start;
    gap:6px;
    padding:6px 0;
    border-bottom:1px solid var(--line);
  }
  .transfer-note table tr:last-child{border-bottom:none}
  .transfer-note table th,
  .transfer-note table td{
    padding:0;
    border-bottom:none;
    line-height:1.5;
  }
  .transfer-note table th{
    flex:0 0 108px;
    font-size:11.5px;
    font-weight:600;
    color:var(--navy);
    white-space:normal;
    word-break:keep-all;
    line-height:1.3;
  }
  .transfer-note table td{
    flex:1 1 auto;
    font-size:11.5px;
    color:var(--text);
    line-height:1.5;
    /* 値の途中での不自然な改行を避ける */
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .transfer-note p.small{font-size:11px;line-height:1.6;margin-top:6px}
}

/* ---- 480px以下（iPhone 14 Pro / Galaxy 程度） ---- */
@media (max-width:480px){
  .vs-abc-table thead th:first-child,
  .vs-abc-table tbody th:first-child,
  .vs-abc-table tbody th[scope="row"]{
    width:100px;min-width:100px;max-width:100px;
    font-size:11px;padding-left:8px;
  }
  .vs-abc-table thead th.col-us,
  .vs-abc-table tbody td.col-us{
    left:100px;
    width:80px;min-width:80px;max-width:80px;
  }
}

/* ---- 375px以下（iPhone SE） ---- */
@media (max-width:375px){
  /* 比較表: 項目列をさらに細く、自社列は維持 */
  .vs-abc-table thead th:first-child,
  .vs-abc-table tbody th:first-child,
  .vs-abc-table tbody th[scope="row"]{
    width:94px;min-width:94px;max-width:94px;
    font-size:10.5px;padding:8px 4px 8px 8px;
  }
  .vs-abc-table thead th.col-us,
  .vs-abc-table tbody td.col-us{
    left:94px;
    width:74px;min-width:74px;max-width:74px;
    font-size:11px;
  }
  .vs-abc-table th,.vs-abc-table td{padding:8px 5px;font-size:11px}
  .vs-abc-table thead th:not(:first-child):not(.col-us),
  .vs-abc-table tbody td:not(.col-us){min-width:72px}

  /* 料金プラン: さらに幅を詰めて 335px にフィット */
  .plan-matrix{font-size:11px}
  .plan-matrix thead th{font-size:10.5px;padding:8px 1px;line-height:1.2}
  .plan-matrix tbody tr.feat-row th{
    padding:7px 2px 7px 8px;font-size:10.5px;line-height:1.35;
  }
  .plan-matrix tbody tr.feat-row td{padding:7px 1px;font-size:10px}
  .plan-matrix tbody tr.feat-row td .val{font-size:9.5px}
  .plan-matrix tbody tr.feat-row td .check{font-size:12px}
  .plan-matrix tbody .cat-row th{padding:7px 8px;font-size:10.5px}
  .plan-matrix tbody tr.feat-row th small{font-size:9.5px !important}

  /* プランヘッダー */
  .plan-headcard{padding:12px 4px 10px}
  .plan-headcard .hn{font-size:12px}
  .plan-headcard .hp{font-size:16px}
  .plan-headcard .hp small{font-size:8.5px}
  .plan-headcard .hinit{font-size:8.5px}

  /* 通話料 */
  .transfer-note table th{flex:0 0 94px;font-size:11px}
  .transfer-note table td{font-size:11px}
}
