:root{
  --brand:#e60012;
  --brand-2:#b8000f;
  --text:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --bg-sub:#f6f7f9;
  --border:rgba(15,23,42,.10);
  --shadow:0 18px 40px rgba(15,23,42,.10);
  --radius:18px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.8;
}
a{color:inherit; text-decoration:none;}
a:hover{opacity:.92;}
img{max-width:100%; height:auto; display:block;}

.container{width:min(1120px, 92vw); margin:0 auto;}
.small{font-size:14px; color:var(--muted);}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(230,0,18,.25);
  color:var(--brand);
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  background:rgba(230,0,18,.04);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:800;
  border:2px solid var(--brand);
  line-height:1;
  transition:transform .08s ease, opacity .2s ease, background .2s ease;
}
.btn:active{transform:translateY(1px);}
.btn.primary{background:var(--brand); color:#fff;}
.btn.primary:hover{background:var(--brand-2);}
.btn.ghost{background:transparent; color:var(--brand);}
.btn.white{background:#fff; color:var(--brand); border-color:#fff;}
.btn.block{width:100%; border-radius:14px;}

.section{padding:56px 0;}
.section.sub{background:var(--bg-sub);}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:18px;
}
.section-title .left{display:flex; flex-direction:column; gap:2px;}
.section-title .en{
  text-transform:uppercase;
  letter-spacing:.10em;
  font-size:12px;
  color:var(--brand);
  font-weight:900;
}
.section-title h2{
  margin:0;
  font-size:28px;
  line-height:1.3;
}
.section-title .right{display:flex; gap:10px; flex-wrap:wrap;}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 180px;
}
.logo img{height:40px; width:auto;}
.logo .brand-name{
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.2;
}
.logo .brand-sub{font-size:12px; color:var(--muted); margin-top:-2px;}

nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
  align-items:center;
}
nav a{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  color:var(--text);
  font-weight:800;
}
nav a:hover{background:rgba(15,23,42,.06);}
nav a.active{color:var(--brand); background:rgba(230,0,18,.06);}
nav a.nav-cta{
  border:2px solid var(--brand);
  color:#fff;
  background:var(--brand);
  padding:10px 14px;
}
nav a.nav-cta:hover{background:var(--brand-2);}

.menu-toggle{
  display:none;
  font-size:24px;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* Hero */
.hero{
  position:relative;
  min-height:82vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#111;
}
.hero .slides{position:absolute; inset:0;}
.hero .slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .8s ease;
}
.hero .slide.active{opacity:1;}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(230,0,18,.22), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20));
  pointer-events:none;
}
.hero .hero-inner{
  position:relative;
  padding:64px 0 56px 0;
  width:100%;
}
.hero .hero-grid{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap:18px;
  align-items:end;
}
.hero h1{
  margin:14px 0 14px 0;
  font-size:46px;
  line-height:1.18;
  color:#fff;
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}
.hero p{
  margin:0 0 18px 0;
  max-width: 44em;
  color:rgba(255,255,255,.90);
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}
.hero .kicker{
  color:#fff;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.hero .kicker::before{
  content:"";
  width:14px; height:14px;
  border-radius:4px;
  background:var(--brand);
}
.hero .cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.hero .quick-links{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  padding:16px;
  backdrop-filter: blur(10px);
}
.hero .quick-links h3{
  margin:0 0 10px 0;
  color:#fff;
  font-size:16px;
}
.hero .quick-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  margin-top:10px;
}
.hero .quick-links a:hover{background:rgba(255,255,255,.08);}
.hero .quick-links span{opacity:.88; font-size:13px;}
.hero .scroll{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  color:rgba(255,255,255,.85);
  font-size:12px;
  letter-spacing:.12em;
}
.hero .scroll::after{
  content:"";
  display:block;
  width:1px;
  height:24px;
  margin:8px auto 0 auto;
  background:rgba(255,255,255,.55);
}

/* News */
.news-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.news-tabs{
  display:flex;
  gap:8px;
  padding:12px;
  border-bottom:1px solid var(--border);
}
.news-tabs .tab{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.news-tabs .tab.active{border-color:rgba(230,0,18,.35); background:rgba(230,0,18,.06); color:var(--brand);}
.news-list{list-style:none; margin:0; padding:0;}
.news-list li{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:14px;
  padding:14px 16px;
  border-top:1px solid rgba(15,23,42,.08);
}
.news-list li:first-child{border-top:none;}
.news-date{font-weight:900; color:var(--muted); font-size:14px;}
.news-title{font-weight:800;}
.news-tag{
  display:inline-flex; align-items:center;
  padding:3px 8px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(15,23,42,.12);
  color:var(--muted);
  margin-left:10px;
}
.news-tag.pr{border-color:rgba(230,0,18,.28); color:var(--brand); background:rgba(230,0,18,.06);}

/* Cards & grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card .pad{padding:18px;}
.card h3{margin:0 0 8px 0; font-size:18px;}
.card p{margin:0; color:var(--muted);}
.card .media{height:220px; background:#eee; overflow:hidden;}
.card .media img{width:100%; height:100%; object-fit:cover;}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.split .box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.split .box .pad{padding:18px;}
.split .box .media{height:100%; min-height:320px;}
.split .box .media img{width:100%; height:100%; object-fit:cover;}

.kpi{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.kpi .k{
  background:rgba(230,0,18,.06);
  border:1px solid rgba(230,0,18,.18);
  border-radius:16px;
  padding:12px 12px;
}
.kpi .k strong{display:block; font-size:22px;}
.kpi .k span{display:block; color:var(--muted); font-size:13px; margin-top:2px;}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gallery .g{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#fff;
}
.gallery .g img{width:100%; height:100%; object-fit:cover;}
.gallery .g.big{grid-column: span 6; height:320px;}
.gallery .g.mid{grid-column: span 3; height:240px;}
.gallery .g.sm{grid-column: span 3; height:180px;}

/* Page hero (sub pages) */
.page-hero{
  padding:44px 0 26px 0;
  background:
    radial-gradient(700px 420px at 18% 20%, rgba(230,0,18,.16), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.03), transparent);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.page-hero h1{margin:6px 0 0 0; font-size:34px; line-height:1.25;}
.page-hero p{margin:10px 0 0 0; color:var(--muted); max-width:60em;}

/* Tables (company profile) */
table{
  width:100%;
  border-collapse: collapse;
}
th,td{
  padding:12px 12px;
  border-bottom:1px solid rgba(15,23,42,.10);
  vertical-align:top;
}
th{
  width: 200px;
  text-align:left;
  color:var(--muted);
  font-weight:900;
}

/* Forms */
form{max-width: 760px;}
label{display:block; font-weight:900; margin:16px 0 6px 0;}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  font-size:16px;
  background:#fff;
}
textarea{min-height:140px; resize:vertical;}
button[type="submit"]{
  margin-top:16px;
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  font-size:16px;
  border:none;
  cursor:pointer;
}
button[type="submit"]:hover{background:var(--brand-2);}

/* Footer */
footer{
  margin-top:56px;
  padding:34px 0;
  background:#0b1220;
  color:rgba(255,255,255,.86);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
footer a{color:rgba(255,255,255,.86);}
footer a:hover{color:#fff;}
.footer-title{font-weight:900; margin:0 0 10px 0;}
.footer-list{list-style:none; margin:0; padding:0; display:grid; gap:8px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:22px;
  padding-top:16px;
  font-size:13px;
  color:rgba(255,255,255,.70);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

/* Responsive */
@media (max-width: 980px){
  .hero .hero-grid{grid-template-columns:1fr;}
  .hero h1{font-size:36px;}
  .grid-3{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr;}
  .gallery .g.big{grid-column: span 12;}
  .gallery .g.mid{grid-column: span 6;}
  .gallery .g.sm{grid-column: span 6;}
  th{width: 160px;}
}

@media (max-width: 760px){
  nav ul{display:none; position:absolute; top:74px; left:0; right:0; background:#fff; border-bottom:1px solid var(--border); padding:12px; flex-direction:column; gap:6px;}
  nav.active ul{display:flex;}
  .menu-toggle{display:flex;}
  .header-inner{height:70px;}
  .logo .brand-name{display:none;}
  .hero{min-height: 76vh;}
  .news-list li{grid-template-columns: 1fr; gap:6px;}
}


/* === JCU-like Typography & Layout Scale === */
:root{
  --container: 1200px;
  --gutter: 24px;

  /* Type scale */
  --fs-base: 16px;
  --lh-base: 1.85;

  --fs-h1: clamp(34px, 4.6vw, 56px);
  --lh-h1: 1.12;

  --fs-h2: clamp(24px, 2.5vw, 36px);
  --lh-h2: 1.25;

  --fs-h3: 20px;
  --lh-h3: 1.35;

  --fs-lead: 17px;
  --lh-lead: 1.95;

  --fs-small: 14px;

  /* Spacing */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 18px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 72px;

  --radius: 14px;
  --radius-sm: 10px;

  --line: rgba(0,0,0,.10);
  --muted: rgba(0,0,0,.70);
  --muted2: rgba(0,0,0,.55);
  --main-red: var(--brand);
  --main-red-2: var(--brand-2);

}

/* Global */
html{scroll-behavior:smooth;}
body{
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  letter-spacing: .02em;
  color:#111;
  background:#fff;
}
p{color: var(--muted);}
a{color:inherit; text-decoration:none;}
a:hover{opacity:.92;}

.container{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline:auto;
}

/* Header  */
header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  height: 76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 var(--gutter);
  background: transparent;
  color:#fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
header.is-scrolled{
  background:#fff;
  color:#111;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
header nav ul{gap: 18px;}
header nav a{font-weight:600; opacity:.95;}
header.is-scrolled nav a{opacity:.85;}
header nav a.active, header nav a:hover{opacity:1;}

/* Mobile menu button visibility (既存があれば調整) */
.menu-toggle{font-size:26px; cursor:pointer;}
@media (min-width: 880px){
  .menu-toggle{display:none;}
}

/* Section spacing */
section{padding: var(--s-8) 0;}
section .container{padding: 0;}

/* Headings */
h1,h2,h3{letter-spacing:.02em;}
h1{font-size: var(--fs-h1); line-height: var(--lh-h1); margin:0;}
h2{font-size: var(--fs-h2); line-height: var(--lh-h2); margin:0 0 var(--s-5) 0;}
h3{font-size: var(--fs-h3); line-height: var(--lh-h3); margin:0 0 var(--s-3) 0;}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
.section-eyebrow{
  display:flex;
  gap: 12px;
  align-items:baseline;
}
.section-eyebrow .en{
  font-weight:800;
  letter-spacing:.04em;
}
.section-eyebrow .jp{
  font-size: var(--fs-small);
  color: var(--muted2);
}

/* Buttons (角丸控えめ＋余白大きめ) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid var(--main-red);
  transition: transform .08s ease, opacity .2s ease, background .2s ease;
}
.btn:active{transform: translateY(1px);}
.btn.primary{background: var(--main-red); color:#fff;}
.btn.primary:hover{background: var(--main-red-2, var(--brand-2));}
.btn.ghost{background: transparent; color: var(--main-red);}
.btn.ghost:hover{background: rgba(230,0,18,.06);}
.btn.small{padding: 10px 16px; font-size: 14px; border-radius: 8px;}

/* Hero */
.hero-sales{
  position: relative;
  height: min(86vh, 820px);
  min-height: 620px;
  padding:0;
  margin:0;
}
.hero-sales .slides{height:100%;}
.hero-sales .slide{height:100%; object-fit:cover;}
.hero-sales::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.18));
  z-index:1;
}
.hero-copy{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:flex-end;
  padding: 0 0 74px 0;
}
.hero-copy .container{padding:0;}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(230,0,18,.95);
  color:#fff;
  font-weight:800;
  font-size: 14px;
  margin-bottom: var(--s-4);
}
.hero-lead{
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  max-width: 46em;
  margin: var(--s-4) 0 var(--s-5) 0;
  color: rgba(255,255,255,.92);
}
.hero-note{font-size: 13px; color: rgba(255,255,255,.85); margin-top: var(--s-4);}
.hero-copy h1{color:#fff; text-shadow: 0 10px 22px rgba(0,0,0,.35);}

/* Scroll indicator */
.scroll-indicator{
  position:absolute;
  left:50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index:3;
  font-size: 12px;
  letter-spacing:.2em;
  color: rgba(255,255,255,.80);
}
.scroll-indicator::after{
  content:"";
  display:block;
  width: 1px;
  height: 26px;
  margin: 8px auto 0 auto;
  background: rgba(255,255,255,.55);
}

/* News (JCU風の一覧) */
.news-block{padding-top: var(--s-7);}
.news-list{
  border-top: 1px solid var(--line);
}
.news-item{
  display:grid;
  grid-template-columns: 110px 110px 1fr auto;
  gap: 14px;
  align-items:center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.news-date{font-weight:700; color:#111;}
.news-tag{
  font-size: 12px;
  font-weight: 800;
  letter-spacing:.08em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(230,0,18,.28);
  color: var(--main-red);
  width: fit-content;
}
.news-title{color:#111; font-weight:600;}
.news-arrow{color: var(--muted2);}

/* Split sections (Business/Company風) */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--s-6);
  align-items:stretch;
}
.panel{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
}
.panel .panel-img{
  height: 320px;
  width: 100%;
  object-fit: cover;
  display:block;
}
.panel .panel-body{
  padding: 18px 18px 20px 18px;
}
.panel p{margin: 0 0 var(--s-4) 0;}
.panel .links{display:flex; gap:10px; flex-wrap:wrap;}
.panel .links a{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  font-weight:700;
  font-size: 13px;
  color:#111;
}
.panel .links a:hover{border-color: rgba(230,0,18,.35);}

/* CTA band (白地＋赤ライン) */
.cta-band{padding: var(--s-7) 0; background: #fff;}
.cta-band-inner{
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(230,0,18,.20);
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
  padding: 26px 20px;
}
.cta-band-inner h2{margin-bottom: 10px;}

/* Footer */
footer{
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
footer p{margin:0; color: var(--muted2);}

/* Responsive tweaks */
@media (max-width: 980px){
  .split{grid-template-columns:1fr; }
  .news-item{grid-template-columns: 110px 110px 1fr; }
  .news-arrow{display:none;}
  header nav{display:none;} /* 既存のモバイルメニューがある前提 */
}
@media (max-width: 560px){
  .news-item{grid-template-columns: 1fr; gap:8px;}
  .hero-sales{min-height: 560px;}
  header{height:70px;}
}


/* === Viewport Toggle (Force PC/Mobile) === */
/* Toggle UI */
#viewToggle{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  display: flex;
  gap: 6px;
  padding: 6px;
  backdrop-filter: blur(6px);
}
#viewToggle button{
  border: 1px solid rgba(0,0,0,.10);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  color: #111;
}
#viewToggle button.active{
  border-color: rgba(230,0,18,.40);
  background: rgba(230,0,18,.08);
  color: var(--main-red);
}
#viewToggle .auto{
  color: rgba(0,0,0,.55);
  border-color: rgba(0,0,0,.08);
}
#viewToggle .auto.active{
  color: #111;
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.14);
}
@media (max-width: 560px){
  #viewToggle{right: 10px; bottom: 10px;}
  #viewToggle button{padding: 8px 10px;}
}

/* Force Mobile: apply "max-width" responsive layout regardless of actual viewport */
body.force-mobile header nav{display:none !important;}
body.force-mobile .menu-toggle{display:block !important;}
body.force-mobile .split{grid-template-columns: 1fr !important;}
body.force-mobile .feature-grid{grid-template-columns: 1fr !important;}
body.force-mobile .news-item{grid-template-columns: 1fr !important; gap: 8px !important;}
body.force-mobile .news-arrow{display:none !important;}
body.force-mobile .hero-sales{min-height: 560px !important;}
body.force-mobile header{height: 70px !important;}

/* Force Desktop: restore desktop layout regardless of actual viewport */
body.force-desktop header nav{display:block !important;}
body.force-desktop header nav ul{display:flex !important;}
body.force-desktop .menu-toggle{display:none !important;}
body.force-desktop .split{grid-template-columns: 1.15fr .85fr !important;}
body.force-desktop .feature-grid{grid-template-columns: repeat(3, minmax(0, 1fr)) !important;}
body.force-desktop .news-item{grid-template-columns: 110px 110px 1fr auto !important;}
body.force-desktop .news-arrow{display:block !important;}


/* === Hero Inner Visibility Fix === */
/* ヒーロー内テキストの可視性を上げる（ぼやけ対策） */
.hero-inner,
.hero-copy .container{
  position: relative;
  z-index: 5;
}

.hero-inner{
  /* ぼやけて見える原因（過度なblur/透明度）を避け、読みやすい面を作る */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.hero-inner *{
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* もし既存でfilter: blur()が当たっていた場合は解除 */
.hero-inner, .hero-inner *{
  filter: none !important;
}


/* === Map Embed === */
.map-embed{
  margin-top: 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
/* Fit nicely into the company text area on top page */
#company .map-embed{
  border-radius: 16px;
  box-shadow: none;
  background: rgba(255,255,255,.92);
}
.map-embed iframe{
  width: 100%;
  height: 240px;
  border: 0;
  display:block;
}
/* Slightly taller map on About page */
main .map-embed iframe{
  height: 320px;
}
.map-note{margin-top: 8px;}
@media (max-width: 760px){
  .map-embed iframe{height: 240px;}
  main .map-embed iframe{height: 260px;}
}


/* === Capability Section === */
.cap-head{
  margin: 0 0 12px 0;
  font-size: 18px;
}
.cap-grid{
  align-items: stretch;
}
.cap-cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 980px){
  .cap-head{font-size: 17px;}
}
