/* ===== company.html 専用スタイル（共通スタイルは styles.css）===== */

.company-hero{padding-top:68px;}
.company-hero .inner{display:grid;grid-template-columns:1fr auto;gap:30px;align-items:center;
  padding:clamp(40px,6vw,72px) 0 clamp(24px,3vw,36px);}
.company-hero .eyebrow{font-size:12px;color:var(--accent-d);letter-spacing:.26em;display:inline-flex;align-items:center;gap:13px;margin-bottom:18px;}
.company-hero .eyebrow::before{content:"";width:42px;height:2px;background:var(--accent);display:inline-block;}
.company-hero h1{margin:0;font-weight:700;font-size:clamp(30px,5vw,54px);line-height:1.2;}
.company-hero h1 .ac{color:var(--brand);}
.company-hero p{color:var(--muted);max-width:520px;margin:18px 0 0;}
.company-hero .mascot{width:clamp(120px,15vw,176px);animation:float 5s ease-in-out infinite;}
@media(max-width:760px){.company-hero .mascot{display:none;}}

.profile-wrap{padding-bottom:clamp(70px,10vw,120px);}
.profile{background:var(--paper-2);border:1px solid var(--line);border-radius:10px;overflow:hidden;}
.profile .row{display:grid;grid-template-columns:200px 1fr;border-bottom:1px solid var(--line);}
.profile .row:last-child{border-bottom:none;}
.profile dt{margin:0;padding:24px clamp(20px,3vw,32px);background:var(--paper-3);
  font-size:13.5px;font-weight:700;color:var(--ink);letter-spacing:.04em;
  display:flex;align-items:center;gap:12px;}
.profile dt::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--accent);flex:none;}
.profile dd{margin:0;padding:24px clamp(20px,3vw,32px);color:var(--muted);font-size:15px;line-height:1.8;}
.profile dd .lead{color:var(--ink);font-weight:500;}
.profile .biz{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
.profile .biz li{position:relative;padding-left:22px;color:var(--ink);}
.profile .biz li::before{content:"";position:absolute;left:0;top:.62em;width:9px;height:9px;
  border:1.5px solid var(--brand);border-radius:2px;}
.map-link{display:inline-flex;align-items:center;gap:8px;margin-top:12px;font-size:13px;color:var(--brand);
  border:1px solid rgba(43,79,142,.2);border-radius:100px;padding:7px 16px;transition:all .2s;}
.map-link:hover{background:rgba(43,79,142,.07);border-color:var(--brand);}

@media(max-width:620px){
  .profile .row{grid-template-columns:1fr;}
  .profile dt{padding-bottom:0;background:var(--paper-2);}
  .profile dt::before{display:none;}
  .profile dd{padding-top:10px;}
}
@media(prefers-reduced-motion:reduce){.company-hero .mascot{animation:none!important;}}