:root{
  --fg:#111;
  --bg:#fff;
  --brand:#004B53;
  --border:#eee;
  --container:980px;
  --header-h:56px;
}

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family:system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.6;
}

/* =====================
   Header（PC仕上げ）
===================== */
.site-header{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.site-header.is-overlay{
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
}

.site-header.is-solid{
  background:#fff;
  border-bottom-color:var(--border);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand .symbol{
  width:40px;
  height:auto;
  display:block;
}

.brand .wordmark{
  height:28px;
  width:auto;
  display:block;
}

/* Nav */
.site-nav a{
  margin:0 10px;
  text-decoration:none;
  color:#004B53;
  transition:opacity .2s ease, transform .2s ease;
}

.site-nav a:hover{
  opacity:.85;
}

.site-nav a.cta{
  display:inline-block;
  background:#004B53;
  color:#fff;
  padding:.8rem 1.2rem;
  border-radius:12px;
  border:none;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.site-nav a.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.25);
  filter:brightness(1.03);
}

.site-header.is-overlay .site-nav a{
  color:#004B53;
}

.site-header.is-overlay .site-nav a.cta{
  color:#fff;
  background:#004B53;
  box-shadow:0 14px 34px rgba(0,0,0,.25);
}

.site-header.is-overlay .brand img{
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

/* fixedヘッダー分 */
main{
  padding-top:var(--header-h);
}

/* =====================
   Layout helpers
===================== */
.features,
.cta-band{
  padding:64px 20px;
}

.features > h2,
.cta-band > h2{
  max-width:var(--container);
  margin:0 auto 18px;
}

.features > p,
.cta-band > p{
  max-width:var(--container);
  margin:0 auto 14px;
}

.grid3{
  list-style:none;
  padding:0;
  margin:24px auto 0;
  max-width:var(--container);
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.grid3 li{
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 18px 16px;
  background:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

.grid3 h3{
  margin:0 0 10px;
}

.grid3 p{
  margin:0;
  color:#333;
}

.cta-band{
  text-align:center;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.02);
}

/* =====================
   Hero（通常）
===================== */
.hero:not(.hero-video-wrap){
  padding:64px 20px;
  max-width:var(--container);
  margin:0 auto;
}

.hero:not(.hero-video-wrap) h1{
  font-size:clamp(24px,3.6vw,40px);
  margin:0 0 12px;
}

.lead{
  font-size:1rem;
}

.hero-logo{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  margin:24px 0 18px;
}

.hero-logo .symbol{
  width:56px;
}

.hero-logo .wordmark{
  height:34px;
}

/* =====================
   Button
===================== */
.btn{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  padding:.8rem 1.2rem;
  border-radius:12px;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.25);
  filter:brightness(1.03);
}

.btn:focus-visible{
  outline:2px solid rgba(0,75,83,.65);
  outline-offset:3px;
}

/* =====================
   Footer
===================== */
.site-footer{
  padding:24px 20px;
  border-top:1px solid var(--border);
  text-align:center;
  margin-top:48px;
}

.site-footer .sep{
  margin:0 8px;
  color:#999;
}

/* =====================
   Hero Video
===================== */
.hero.hero-video-wrap{
  max-width:none;
  margin:0;
  padding:0;
  position:relative;
  min-height:calc(100vh - var(--header-h));
  overflow:hidden;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.82));
}

.hero-inner{
  position:relative;
  z-index:1;
  min-height:calc(100vh - var(--header-h));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:72px 20px 64px;
  width:min(var(--container), 92%);
  margin:0 auto;
}

.hero.hero-video-wrap h1{
  font-size:clamp(34px,4.2vw,70px);
  line-height:1.18;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-shadow:0 10px 30px rgba(0,0,0,.45), 0 2px 10px rgba(0,0,0,.35);
}

.hero.hero-video-wrap .lead{
  font-size:clamp(18px,1.6vw,22px);
  line-height:1.6;
  font-weight:600;
  letter-spacing:.01em;
  color:rgba(255,255,255,.94);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:92vw;
  margin:14px 0 0;
  text-shadow:0 8px 22px rgba(0,0,0,.42), 0 2px 8px rgba(0,0,0,.34);
}

.hero.hero-video-wrap .btn{
  margin-top:26px;
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}

/* =====================
   Responsive（最低限）
===================== */
@media (max-width: 880px){
  .site-nav{
    display:none;
  }

  .grid3{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   ▼ Services page
========================================================= */
.page-services{
  background:#fff;
}

.page-services .services-hero{
  padding:120px 24px 72px;
  background:
    linear-gradient(180deg, rgba(0,75,83,.06) 0%, rgba(0,75,83,.02) 55%, rgba(255,255,255,1) 100%);
}

.page-services .services-hero__inner{
  width:min(1120px, 100%);
  margin:0 auto;
  display:block;
}

.page-services .services-hero__content{
  max-width:720px;
}

.page-services .services-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#004b53;
}

.page-services .services-hero__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

.page-services .services-hero__title{
  margin:0;
  font-size:clamp(34px, 5vw, 60px);
  line-height:1.08;
  letter-spacing:.02em;
  color:#0f2d33;
}

.page-services .services-hero__lead{
  margin:22px 0 0;
  max-width:720px;
  font-size:16px;
  line-height:2;
  color:#35545a;
}

.page-services .service-feature{
  background:#fff;
  padding:0 0 72px;
}

.page-services .service-feature .inner{
  width:min(1120px, 100%);
  margin:0 auto;
  padding:0 24px;
}

.page-services .service-feature__head{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin:0 0 28px;
}

.page-services .service-feature__eyebrow{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#004b53;
}

.page-services .section-title{
  margin:0;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
  color:#102f35;
}

.page-services .section-lead{
  margin:0;
  max-width:700px;
  font-size:15px;
  line-height:1.9;
  color:#4c666b;
}

.feature-grid{
  list-style:none;
  margin:26px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.page-services .feature-card{
  color:var(--fg);
}

.page-services .feature-card__media{
  position:relative;
  overflow:visible;
  height:320px;
}

.page-services .feature-card__frame{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:320px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  padding:0;
}

.page-services .feature-card__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 28%;
  display:block;
  transform:none;
}

.page-services .feature-card__label{
  position:absolute;
  top:0;
  right:0;
  height:320px;
  width:44px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  background:rgba(0,0,0,.35);
  z-index:3;
}

.page-services .feature-card__label span{
  margin-top:12px;
  color:rgba(255,255,255,.80);
  font-weight:700;
  letter-spacing:.22em;
  font-size:12px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
}

.page-services .feature-card__title{
  position:absolute;
  left:24px;
  top:320px;
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  max-width:calc(100% - 90px);
  margin: 0;
  font-size: inherit;
}

@media (min-width: 881px){
  .page-services .feature-card__title{
    left:0;
    right:56px;
    max-width:none;
  }
}

.page-services .badge-line{
  display:inline-block;
  background:rgba(0,0,0,.72);
  color:#fff;
  font-weight:800;
  letter-spacing:.01em;
  line-height:1.12;
  padding:16px 18px;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
  box-shadow:0 12px 26px rgba(0,0,0,.22);
}

.page-services .badge-line--top{
  transform:translateY(-50%);
}

.page-services .badge-line--bottom{
  margin-top:-26px;
}

.page-services .feature-card__body{
  padding:88px 0 0;
}

.page-services .feature-card__text{
  margin:0;
  color:#333;
  font-size:14px;
  line-height:1.95;
  max-width:38em;
}

@media (max-width:1040px){
  .feature-grid{
    grid-template-columns:1fr;
  }

  .page-services .feature-card__media{
    height:320px;
  }

  .page-services .feature-card__title{
    max-width:calc(100% - 84px);
  }
}

@media (max-width:880px){
  .service-feature .inner{
    padding:0 16px;
  }

  .page-services .feature-card__label{
    width:40px;
  }

  .page-services .feature-card__title{
    left:18px;
    max-width:calc(100% - 78px);
  }
}

/* =========================================================
   Privacy policy
========================================================= */
.page-privacy{
  background:#f7f9f9;
  color:#18383b;
}

.page-privacy .privacy-hero{
  padding:140px 24px 54px;
  background:linear-gradient(135deg,#003f46 0%,#00636d 100%);
  color:#fff;
}

.page-privacy .privacy-hero__inner,
.page-privacy .privacy-content__inner{
  width:min(940px,100%);
  margin:0 auto;
}

.page-privacy .privacy-hero__eyebrow{
  margin:0 0 10px;
  color:#b8e4e6;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.page-privacy .privacy-hero__title{
  margin:0;
  color:#fff;
  font-size:clamp(32px,5vw,48px);
  line-height:1.25;
}

.page-privacy .privacy-content{
  padding:64px 24px 88px;
}

.page-privacy .privacy-content__inner{
  padding:52px clamp(24px,5vw,64px);
  border:1px solid rgba(0,75,83,.12);
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 50px rgba(0,51,57,.08);
}

.page-privacy .privacy-content section{
  margin-top:42px;
}

.page-privacy .privacy-content h2{
  margin:0 0 18px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(0,75,83,.18);
  color:#004b53;
  font-size:clamp(20px,3vw,25px);
  line-height:1.45;
}

.page-privacy .privacy-content p,
.page-privacy .privacy-content li,
.page-privacy .privacy-content dt,
.page-privacy .privacy-content dd{
  font-size:15px;
  line-height:1.9;
}

.page-privacy .privacy-content p{
  margin:0 0 16px;
}

.page-privacy .privacy-content ul,
.page-privacy .privacy-content ol{
  margin:0 0 20px;
  padding-left:1.5em;
}

.page-privacy .privacy-content li + li{
  margin-top:5px;
}

.page-privacy .privacy-content a{
  color:#006a74;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}

.page-privacy .privacy-business{
  margin:20px 0;
  border-top:1px solid rgba(0,75,83,.16);
}

.page-privacy .privacy-business > div{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  border-bottom:1px solid rgba(0,75,83,.16);
}

.page-privacy .privacy-business dt,
.page-privacy .privacy-business dd{
  margin:0;
  padding:13px 16px;
}

.page-privacy .privacy-business dt{
  background:#edf5f5;
  color:#004b53;
  font-weight:700;
}

.page-privacy .privacy-signature{
  margin-top:52px;
  text-align:right;
}

@media (max-width:640px){
  .page-privacy .privacy-hero{
    padding:112px 20px 42px;
  }

  .page-privacy .privacy-content{
    padding:36px 14px 64px;
  }

  .page-privacy .privacy-content__inner{
    padding:32px 20px;
    border-radius:14px;
  }

  .page-privacy .privacy-content section{
    margin-top:34px;
  }

  .page-privacy .privacy-business > div{
    grid-template-columns:1fr;
  }

  .page-privacy .privacy-business dd{
    padding-top:8px;
  }
}

/* =========================================================
   404 page
========================================================= */
.page-not-found{
  min-height:100%;
  background:
    radial-gradient(circle at top left, rgba(0,75,83,.12), transparent 40%),
    #f7faf9;
}

.not-found-main{
  min-height:calc(100vh - var(--header-h));
  display:grid;
  place-items:center;
  padding:72px 20px;
}

.not-found-panel{
  width:min(680px,100%);
  padding:48px clamp(24px,6vw,64px);
  border:1px solid rgba(0,75,83,.14);
  border-radius:24px;
  background:#fff;
  box-shadow:0 24px 60px rgba(0,75,83,.1);
  text-align:center;
}

.not-found-code{
  margin:0;
  color:#004b53;
  font-size:clamp(64px,14vw,120px);
  font-weight:800;
  line-height:1;
  letter-spacing:.04em;
}

.not-found-panel h1{
  margin:20px 0 12px;
  color:#12343b;
  font-size:clamp(28px,5vw,42px);
  line-height:1.3;
}

.not-found-panel > p:not(.not-found-code){
  margin:0;
  color:#47636a;
}

.not-found-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:14px 20px;
  margin-top:32px;
}

.not-found-actions .btn{
  margin:0;
}

.not-found-link{
  color:#004b53;
  font-weight:700;
  text-underline-offset:4px;
}

.not-found-link:hover{
  text-decoration:underline;
}

@media (max-width:600px){
  .not-found-main{
    padding:40px 16px;
  }

  .not-found-panel{
    padding:36px 20px;
  }

  .not-found-actions{
    flex-direction:column;
  }
}

/* =========================================================
   ▼ Works page
========================================================= */
.page-works{
  background:#fff;
}

.page-works .works-hero{
  padding:72px 20px 56px;
  background:linear-gradient(180deg, rgba(0,75,83,.07) 0%, rgba(0,75,83,.02) 55%, #fff 100%);
}

.page-works .works-hero__inner,
.page-works .works-section__inner,
.page-works .works-cta__inner{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.page-works .works-hero__inner{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, .8fr);
  gap:32px;
  align-items:end;
}

.page-works .works-hero__eyebrow,
.page-works .works-section__eyebrow{
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-works .works-hero__title{
  margin:0;
  color:#103238;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-works .works-hero__lead{
  margin:20px 0 0;
  color:#35575d;
  font-size:16px;
  line-height:2;
}

.page-works .works-hero__panel{
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:24px;
  box-shadow:0 16px 34px rgba(0,0,0,.06);
}

.page-works .works-hero__panel-title{
  margin:0 0 14px;
  color:#103238;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
}

.page-works .works-hero__panel-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}

.page-works .works-hero__panel-list li{
  padding-top:14px;
  border-top:1px solid rgba(0,75,83,.10);
  color:#46666b;
  font-size:14px;
  line-height:1.9;
}

.page-works .works-hero__panel-list li:first-child{
  padding-top:0;
  border-top:none;
}

.page-works .works-hero__panel-label{
  display:block;
  margin-bottom:4px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-works .works-section{
  padding:0 20px 80px;
}

.page-works .works-section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:28px;
}

.page-works .works-section__title{
  margin:0;
  color:#103238;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
}

.page-works .works-section__desc{
  margin:0;
  max-width:680px;
  color:#4a686d;
  font-size:15px;
  line-height:1.9;
}

.page-works .works-chip{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:#e8f3f4;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}

.page-works .featured-case{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(300px, .85fr);
  gap:24px;
  padding:34px;
  background:#f7fbfb;
  border:1px solid rgba(0,75,83,.10);
  border-radius:28px;
  box-shadow:0 16px 36px rgba(0,0,0,.05);
}

.page-works .featured-case__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.page-works .featured-case__title{
  margin:0 0 18px;
  color:#103238;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.3;
}

.page-works .featured-case__summary{
  margin:0;
  color:#3d5f64;
  font-size:16px;
  line-height:1.95;
}

.page-works .featured-case__grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}

.page-works .featured-case__item{
  padding:20px 22px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:20px;
}

.page-works .featured-case__label{
  margin:0 0 10px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-works .featured-case__text{
  margin:0;
  color:#46666b;
  font-size:14px;
  line-height:1.9;
}

.page-works .featured-case__side{
  display:grid;
  gap:18px;
  align-content:start;
}

.page-works .featured-case__card{
  padding:24px;
  border-radius:22px;
}

.page-works .featured-case__card--dark{
  background:#103238;
  color:#fff;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
}

.page-works .featured-case__card--light{
  background:#fff;
  color:var(--fg);
  border:1px solid rgba(0,75,83,.10);
}

.page-works .featured-case__card-title{
  margin:0 0 12px;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
}

.page-works .featured-case__list{
  margin:0;
  padding-left:18px;
}

.page-works .featured-case__list li{
  margin:0 0 10px;
  line-height:1.85;
  font-size:14px;
}

.page-works .featured-case__list li:last-child{
  margin-bottom:0;
}

.page-works .works-grid{
  list-style:none;
  margin:0 auto;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  max-width:1200px;
}

.page-works .works-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:24px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.page-works .works-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.09);
  border-color:rgba(0,75,83,.18);
}

.page-works .works-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.page-works .works-card__title{
  margin:0 0 14px;
  color:#103238;
  font-size:24px;
  line-height:1.45;
}

.page-works .works-card__block{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(0,75,83,.10);
}

.page-works .works-card__block:first-of-type{
  margin-top:0;
  padding-top:0;
  border-top:none;
}

.page-works .works-card__label{
  margin:0 0 8px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-works .works-card__text{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.9;
}

.page-works .works-approach{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}

.page-works .works-approach__card{
  padding:28px;
  background:#f8fbfb;
  border:1px solid rgba(0,75,83,.10);
  border-radius:22px;
}

.page-works .works-approach__step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:16px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.06em;
}

.page-works .works-approach__title{
  margin:0 0 10px;
  color:#103238;
  font-size:20px;
  line-height:1.5;
}

.page-works .works-approach__text{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.95;
}

.page-works .works-cta{
  padding:0 20px 96px;
}

.page-works .works-cta__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:36px;
  background:#103238;
  border-radius:28px;
  color:#fff;
}

.page-works .works-cta__title{
  margin:0 0 10px;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.4;
}

.page-works .works-cta__text{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.9;
}

.page-works .works-cta__button{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:54px;
  padding:0 24px;
  background:#fff;
  color:#103238;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, opacity .2s ease;
}

.page-works .works-cta__button:hover{
  transform:translateY(-2px);
  opacity:.94;
}

@media (max-width: 1100px){
  .page-works .works-hero__inner,
  .page-works .featured-case{
    grid-template-columns:1fr;
  }

  .page-works .works-grid,
  .page-works .works-approach{
    grid-template-columns:repeat(2, 1fr);
  }

  .page-works .works-section__head,
  .page-works .works-cta__inner{
    display:block;
  }

  .page-works .works-section__desc{
    margin-top:14px;
  }

  .page-works .works-cta__button{
    margin-top:20px;
  }
}

@media (max-width: 767px){
  .page-works .works-hero{
    padding:56px 0 44px;
  }

  .page-works .works-hero__inner,
  .page-works .works-section__inner,
  .page-works .works-cta__inner{
    width:min(100%, calc(100% - 32px));
  }

  .page-works .featured-case{
    padding:22px;
  }

  .page-works .featured-case__grid,
  .page-works .works-grid,
  .page-works .works-approach{
    grid-template-columns:1fr;
  }

  .page-works .works-card,
  .page-works .works-approach__card{
    padding:22px;
  }

  .page-works .works-cta__inner{
    padding:28px 22px;
  }

  .page-works .works-cta__button{
    width:100%;
  }
}

/* =========================================================
   ▼ Company page
========================================================= */
.page-company{
  background:#fff;
}

.page-company .company{
  padding:44px 16px 72px;
}

.page-company .company__container{
  max-width:1040px;
  margin:0 auto;
}

.page-company .company__title{
  font-size:32px;
  font-weight:800;
  margin:12px 0 30px;
  letter-spacing:.02em;
  color:var(--fg);
}

.page-company .company__title--sub{
  margin:0 0 30px;
}

/* 代表メッセージ */
.page-company .company-message{
  margin:0 0 34px;
  padding:0 0 28px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.page-company .company-message__eyebrow{
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
}

.page-company .company-message__headline{
  margin:0 0 28px;
  color:#103238;
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.25;
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
}

.page-company .company-message__body{
  max-width:860px;
}

.page-company .company-message__body p{
  margin:0 0 22px;
  color:#24383c;
  font-size:18px;
  line-height:2;
  font-weight:600;
}

.page-company .company-message__signature{
  margin-top:30px;
  color:#103238;
  font-size:16px;
  font-weight:800;
  line-height:1.9;
}

/* 会社情報 */
.page-company .company-table{
  display:grid;
  gap:18px;
}

.page-company .company-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px;
  align-items:stretch;
}

.page-company .company-label{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:74px;
  background:#3f3f3f;
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  text-align:center;
  padding:18px 12px;
  border-radius:12px;
  line-height:1.2;
}

.page-company .company-value{
  min-height:74px;
  display:flex;
  align-items:center;
  font-size:18px;
  font-weight:700;
  color:var(--fg);
  line-height:1.9;
  padding:0;
}

/* 住所行だけ別制御 */
.page-company .company-row--address{
  align-items:stretch;
}

.page-company .company-row--address .company-label{
  align-self:stretch;
  min-height:0;
  height:auto;
  align-items:flex-start;
  justify-content:center;
  padding-top:26px;
}

.page-company .company-row--address .company-value{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  min-height:560px;
  padding:0;
}

.page-company .company-address{
  margin:0 0 14px;
  font-weight:700;
}

.page-company .company-map{
  flex:1;
  min-height:0;
  width:100%;
  max-width:none;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.10);
  background:#f3f3f3;
  position:relative;
}

.page-company .company-map iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.page-company .company-tel{
  color:inherit;
  text-decoration:none;
  border-bottom:none;
  padding-bottom:0;
}

@media (max-width: 1024px){
  .page-company .company-message__headline{
    white-space:normal;
  }
}

@media (max-width: 820px){
  .page-company .company{
    padding:32px 16px 56px;
  }

  .page-company .company__title{
    font-size:28px;
    margin:8px 0 22px;
  }

  .page-company .company__title--sub{
    margin:0 0 22px;
  }

  .page-company .company-message{
    margin-bottom:28px;
    padding-bottom:24px;
  }

  .page-company .company-message__headline{
    font-size:clamp(24px, 7vw, 34px);
    line-height:1.4;
    margin-bottom:20px;
    white-space:normal;
  }

  .page-company .company-message__body p{
    font-size:15px;
    line-height:1.95;
    margin-bottom:18px;
  }

  .page-company .company-message__signature{
    font-size:15px;
    margin-top:24px;
  }

  .page-company .company-row{
    grid-template-columns:1fr;
    gap:12px;
    align-items:start;
  }

  .page-company .company-label{
    min-height:auto;
    padding:16px 12px;
    border-radius:10px;
  }

  .page-company .company-value{
    min-height:auto;
    display:block;
    padding:0;
    font-size:16px;
  }

  .page-company .company-row--address .company-label{
    align-self:auto;
    height:auto;
    min-height:auto;
    padding-top:16px;
    align-items:center;
  }

  .page-company .company-row--address .company-value{
    min-height:auto;
    display:block;
  }

  .page-company .company-map{
    height:320px;
    border-radius:14px;
    margin-top:0;
  }
}
/* =========================================================
   ▼ About page（特徴ページ）
========================================================= */
:root{
  --fg:#111;
  --bg:#fff;
  --brand:#004B53;
  --border:#eee;
  --container:980px;
  --header-h:56px;
}

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family:system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.6;
}

/* =====================
   Header（PC仕上げ）
===================== */
.site-header{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.site-header.is-overlay{
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
}

.site-header.is-solid{
  background:#fff;
  border-bottom-color:var(--border);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand .symbol{
  width:40px;
  height:auto;
  display:block;
}

.brand .wordmark{
  height:28px;
  width:auto;
  display:block;
}

/* Nav */
.site-nav a{
  margin:0 10px;
  text-decoration:none;
  color:#004B53;
  transition:opacity .2s ease, transform .2s ease;
}

.site-nav a:hover{
  opacity:.85;
}

.site-nav a.cta{
  display:inline-block;
  background:#004B53;
  color:#fff;
  padding:.8rem 1.2rem;
  border-radius:12px;
  border:none;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.site-nav a.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.25);
  filter:brightness(1.03);
}

.site-header.is-overlay .site-nav a{
  color:#004B53;
}

.site-header.is-overlay .site-nav a.cta{
  color:#fff;
  background:#004B53;
  box-shadow:0 14px 34px rgba(0,0,0,.25);
}

.site-header.is-overlay .brand img{
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

/* fixedヘッダー分 */
main{
  padding-top:var(--header-h);
}

/* =====================
   Layout helpers
===================== */
.features,
.cta-band{
  padding:64px 20px;
}

.features > h2,
.cta-band > h2{
  max-width:var(--container);
  margin:0 auto 18px;
}

.features > p,
.cta-band > p{
  max-width:var(--container);
  margin:0 auto 14px;
}

.grid3{
  list-style:none;
  padding:0;
  margin:24px auto 0;
  max-width:var(--container);
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.grid3 li{
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 18px 16px;
  background:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

.grid3 h3{
  margin:0 0 10px;
}

.grid3 p{
  margin:0;
  color:#333;
}

.cta-band{
  text-align:center;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.02);
}

/* =====================
   Hero（通常）
===================== */
.hero:not(.hero-video-wrap){
  padding:64px 20px;
  max-width:var(--container);
  margin:0 auto;
}

.hero:not(.hero-video-wrap) h1{
  font-size:clamp(24px,3.6vw,40px);
  margin:0 0 12px;
}

.lead{
  font-size:1rem;
}

.hero-logo{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  margin:24px 0 18px;
}

.hero-logo .symbol{
  width:56px;
}

.hero-logo .wordmark{
  height:34px;
}

/* =====================
   Button
===================== */
.btn{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  padding:.8rem 1.2rem;
  border-radius:12px;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.25);
  filter:brightness(1.03);
}

.btn:focus-visible{
  outline:2px solid rgba(0,75,83,.65);
  outline-offset:3px;
}

/* =====================
   Footer
===================== */
.site-footer{
  padding:24px 20px;
  border-top:1px solid var(--border);
  text-align:center;
  margin-top:48px;
}

.site-footer .sep{
  margin:0 8px;
  color:#999;
}

/* =====================
   Hero Video
===================== */
.hero.hero-video-wrap{
  max-width:none;
  margin:0;
  padding:0;
  position:relative;
  min-height:calc(100vh - var(--header-h));
  overflow:hidden;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.82));
}

.hero-inner{
  position:relative;
  z-index:1;
  min-height:calc(100vh - var(--header-h));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:72px 20px 64px;
  width:min(var(--container), 92%);
  margin:0 auto;
}

.hero.hero-video-wrap h1{
  font-size:clamp(34px,4.2vw,70px);
  line-height:1.18;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-shadow:0 10px 30px rgba(0,0,0,.45), 0 2px 10px rgba(0,0,0,.35);
}

.hero.hero-video-wrap .lead{
  font-size:clamp(18px,1.6vw,22px);
  line-height:1.6;
  font-weight:600;
  letter-spacing:.01em;
  color:rgba(255,255,255,.94);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:92vw;
  margin:14px 0 0;
  text-shadow:0 8px 22px rgba(0,0,0,.42), 0 2px 8px rgba(0,0,0,.34);
}

.hero.hero-video-wrap .btn{
  margin-top:26px;
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}

/* =====================
   Responsive（最低限）
===================== */
@media (max-width: 880px){
  .site-nav{
    display:none;
  }

  .grid3{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   ▼ Services page
========================================================= */
.page-services{
  background:#fff;
}

.page-services .page-hero.page-hero--service{
  background:#fff;
  padding:72px 20px 40px;
  border-bottom:1px solid var(--border);
}

.page-services .page-hero.page-hero--service .inner{
  max-width:1200px;
  margin:0 auto;
}

.page-services .page-hero.page-hero--service h1{
  margin:0 0 10px;
  font-size:clamp(26px,3vw,42px);
  letter-spacing:.02em;
  color:var(--brand);
}

.page-services .page-hero.page-hero--service .page-hero__lead,
.page-services .page-hero.page-hero--service p{
  margin:0;
  color:#333;
  line-height:1.8;
}

.page-services .service-feature{
  background:#fff;
  padding:52px 0 72px;
}

.page-services .service-feature .inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.page-services .service-feature__head{
  margin:0 0 18px;
}

.page-services .section-title{
  margin:0 0 8px;
  color:var(--brand);
  font-size:22px;
  letter-spacing:.08em;
}

.page-services .section-lead{
  margin:0;
  color:#333;
  max-width:860px;
  line-height:1.8;
}

.feature-grid{
  list-style:none;
  margin:26px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.page-services .feature-card{
  color:var(--fg);
}

.page-services .feature-card__media{
  position:relative;
  overflow:visible;
  height:320px;
}

.page-services .feature-card__frame{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:320px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  padding-bottom:72px;
}

.page-services .feature-card__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  transform:scale(1.1);
}

.page-services .feature-card__label{
  position:absolute;
  top:0;
  right:0;
  height:320px;
  width:44px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  background:rgba(0,0,0,.35);
  z-index:3;
}

.page-services .feature-card__label span{
  margin-top:12px;
  color:rgba(255,255,255,.80);
  font-weight:700;
  letter-spacing:.22em;
  font-size:12px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
}

.page-services .feature-card__title{
  position:absolute;
  left:24px;
  top:320px;
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  max-width:calc(100% - 90px);
}

@media (min-width: 881px){
  .page-services .feature-card__title{
    left:0;
    right:56px;
    max-width:none;
  }
}

.page-services .badge-line{
  display:inline-block;
  background:rgba(0,0,0,.72);
  color:#fff;
  font-weight:800;
  letter-spacing:.01em;
  line-height:1.12;
  padding:16px 18px;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
  box-shadow:0 12px 26px rgba(0,0,0,.22);
}

.page-services .badge-line--top{
  transform:translateY(-50%);
}

.page-services .badge-line--bottom{
  margin-top:-26px;
}

.page-services .feature-card__body{
  padding:88px 0 0;
}

.page-services .feature-card__text{
  margin:0;
  color:#333;
  font-size:14px;
  line-height:1.95;
  max-width:38em;
}

@media (max-width:1040px){
  .feature-grid{
    grid-template-columns:1fr;
  }

  .page-services .feature-card__media{
    height:320px;
  }

  .page-services .feature-card__title{
    max-width:calc(100% - 84px);
  }
}

@media (max-width:880px){
  .service-feature .inner{
    padding:0 16px;
  }

  .page-services .feature-card__label{
    width:40px;
  }

  .page-services .feature-card__title{
    left:18px;
    max-width:calc(100% - 78px);
  }
}

/* =========================================================
   ▼ Works page
========================================================= */
.page-works{
  background:#fff;
}

.page-works .works-hero{
  padding:72px 20px 56px;
  background:linear-gradient(180deg, rgba(0,75,83,.07) 0%, rgba(0,75,83,.02) 55%, #fff 100%);
}

.page-works .works-hero__inner,
.page-works .works-section__inner,
.page-works .works-cta__inner{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.page-works .works-hero__inner{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, .8fr);
  gap:32px;
  align-items:end;
}

.page-works .works-hero__eyebrow,
.page-works .works-section__eyebrow{
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-works .works-hero__title{
  margin:0;
  color:#103238;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-works .works-hero__lead{
  margin:20px 0 0;
  color:#35575d;
  font-size:16px;
  line-height:2;
}

.page-works .works-hero__panel{
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:24px;
  box-shadow:0 16px 34px rgba(0,0,0,.06);
}

.page-works .works-hero__panel-title{
  margin:0 0 14px;
  color:#103238;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
}

.page-works .works-hero__panel-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}

.page-works .works-hero__panel-list li{
  padding-top:14px;
  border-top:1px solid rgba(0,75,83,.10);
  color:#46666b;
  font-size:14px;
  line-height:1.9;
}

.page-works .works-hero__panel-list li:first-child{
  padding-top:0;
  border-top:none;
}

.page-works .works-hero__panel-label{
  display:block;
  margin-bottom:4px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-works .works-section{
  padding:0 20px 80px;
}

.page-works .works-section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:28px;
}

.page-works .works-section__title{
  margin:0;
  color:#103238;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
}

.page-works .works-section__desc{
  margin:0;
  max-width:680px;
  color:#4a686d;
  font-size:15px;
  line-height:1.9;
}

.page-works .works-chip{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:#e8f3f4;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}

.page-works .featured-case{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(300px, .85fr);
  gap:24px;
  padding:34px;
  background:#f7fbfb;
  border:1px solid rgba(0,75,83,.10);
  border-radius:28px;
  box-shadow:0 16px 36px rgba(0,0,0,.05);
}

.page-works .featured-case__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.page-works .featured-case__title{
  margin:0 0 18px;
  color:#103238;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.3;
}

.page-works .featured-case__summary{
  margin:0;
  color:#3d5f64;
  font-size:16px;
  line-height:1.95;
}

.page-works .featured-case__grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}

.page-works .featured-case__item{
  padding:20px 22px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:20px;
}

.page-works .featured-case__label{
  margin:0 0 10px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-works .featured-case__text{
  margin:0;
  color:#46666b;
  font-size:14px;
  line-height:1.9;
}

.page-works .featured-case__side{
  display:grid;
  gap:18px;
  align-content:start;
}

.page-works .featured-case__card{
  padding:24px;
  border-radius:22px;
}

.page-works .featured-case__card--dark{
  background:#103238;
  color:#fff;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
}

.page-works .featured-case__card--light{
  background:#fff;
  color:var(--fg);
  border:1px solid rgba(0,75,83,.10);
}

.page-works .featured-case__card-title{
  margin:0 0 12px;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
}

.page-works .featured-case__list{
  margin:0;
  padding-left:18px;
}

.page-works .featured-case__list li{
  margin:0 0 10px;
  line-height:1.85;
  font-size:14px;
}

.page-works .featured-case__list li:last-child{
  margin-bottom:0;
}

.page-works .works-grid{
  list-style:none;
  margin:0 auto;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  max-width:1200px;
}

.page-works .works-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:24px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.page-works .works-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.09);
  border-color:rgba(0,75,83,.18);
}

.page-works .works-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.page-works .works-card__title{
  margin:0 0 14px;
  color:#103238;
  font-size:24px;
  line-height:1.45;
}

.page-works .works-card__block{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(0,75,83,.10);
}

.page-works .works-card__block:first-of-type{
  margin-top:0;
  padding-top:0;
  border-top:none;
}

.page-works .works-card__label{
  margin:0 0 8px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-works .works-card__text{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.9;
}

.page-works .works-approach{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}

.page-works .works-approach__card{
  padding:28px;
  background:#f8fbfb;
  border:1px solid rgba(0,75,83,.10);
  border-radius:22px;
}

.page-works .works-approach__step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:16px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.06em;
}

.page-works .works-approach__title{
  margin:0 0 10px;
  color:#103238;
  font-size:20px;
  line-height:1.5;
}

.page-works .works-approach__text{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.95;
}

.page-works .works-cta{
  padding:0 20px 96px;
}

.page-works .works-cta__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:36px;
  background:#103238;
  border-radius:28px;
  color:#fff;
}

.page-works .works-cta__title{
  margin:0 0 10px;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.4;
}

.page-works .works-cta__text{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.9;
}

.page-works .works-cta__button{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:54px;
  padding:0 24px;
  background:#fff;
  color:#103238;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, opacity .2s ease;
}

.page-works .works-cta__button:hover{
  transform:translateY(-2px);
  opacity:.94;
}

@media (max-width: 1100px){
  .page-works .works-hero__inner,
  .page-works .featured-case{
    grid-template-columns:1fr;
  }

  .page-works .works-grid,
  .page-works .works-approach{
    grid-template-columns:repeat(2, 1fr);
  }

  .page-works .works-section__head,
  .page-works .works-cta__inner{
    display:block;
  }

  .page-works .works-section__desc{
    margin-top:14px;
  }

  .page-works .works-cta__button{
    margin-top:20px;
  }
}

@media (max-width: 767px){
  .page-works .works-hero{
    padding:56px 0 44px;
  }

  .page-works .works-hero__inner,
  .page-works .works-section__inner,
  .page-works .works-cta__inner{
    width:min(100%, calc(100% - 32px));
  }

  .page-works .featured-case{
    padding:22px;
  }

  .page-works .featured-case__grid,
  .page-works .works-grid,
  .page-works .works-approach{
    grid-template-columns:1fr;
  }

  .page-works .works-card,
  .page-works .works-approach__card{
    padding:22px;
  }

  .page-works .works-cta__inner{
    padding:28px 22px;
  }

  .page-works .works-cta__button{
    width:100%;
  }
}

/* =========================================================
   ▼ Company page
========================================================= */
.page-company{
  background:#fff;
}

.page-company .company{
  padding:44px 16px 72px;
}

.page-company .company__container{
  max-width:1040px;
  margin:0 auto;
}

.page-company .company__title{
  font-size:32px;
  font-weight:800;
  margin:12px 0 30px;
  letter-spacing:.02em;
  color:var(--fg);
}

.page-company .company__title--sub{
  margin:0 0 30px;
}

/* 代表メッセージ */
.page-company .company-message{
  margin:0 0 34px;
  padding:0 0 28px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.page-company .company-message__eyebrow{
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
}

.page-company .company-message__headline{
  margin:0 0 28px;
  color:#103238;
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.25;
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
}

.page-company .company-message__body{
  max-width:860px;
}

.page-company .company-message__body p{
  margin:0 0 22px;
  color:#24383c;
  font-size:18px;
  line-height:2;
  font-weight:600;
}

.page-company .company-message__signature{
  margin-top:30px;
  color:#103238;
  font-size:16px;
  font-weight:800;
  line-height:1.9;
}

/* 会社情報 */
.page-company .company-table{
  display:grid;
  gap:18px;
}

.page-company .company-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px;
  align-items:stretch;
}

.page-company .company-label{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:74px;
  background:#3f3f3f;
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  text-align:center;
  padding:18px 12px;
  border-radius:12px;
  line-height:1.2;
}

.page-company .company-value{
  min-height:74px;
  display:flex;
  align-items:center;
  font-size:18px;
  font-weight:700;
  color:var(--fg);
  line-height:1.9;
  padding:0;
}

/* 住所行だけ別制御 */
.page-company .company-row--address{
  align-items:stretch;
}

.page-company .company-row--address .company-label{
  align-self:stretch;
  min-height:0;
  height:auto;
  align-items:flex-start;
  justify-content:center;
  padding-top:26px;
}

.page-company .company-row--address .company-value{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  min-height:560px;
  padding:0;
}

.page-company .company-address{
  margin:0 0 14px;
  font-weight:700;
}

.page-company .company-map{
  flex:1;
  min-height:0;
  width:100%;
  max-width:none;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.10);
  background:#f3f3f3;
  position:relative;
}

.page-company .company-map iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.page-company .company-tel{
  color:inherit;
  text-decoration:none;
  border-bottom:none;
  padding-bottom:0;
}

@media (max-width: 1024px){
  .page-company .company-message__headline{
    white-space:normal;
  }
}

@media (max-width: 820px){
  .page-company .company{
    padding:32px 16px 56px;
  }

  .page-company .company__title{
    font-size:28px;
    margin:8px 0 22px;
  }

  .page-company .company__title--sub{
    margin:0 0 22px;
  }

  .page-company .company-message{
    margin-bottom:28px;
    padding-bottom:24px;
  }

  .page-company .company-message__headline{
    font-size:clamp(24px, 7vw, 34px);
    line-height:1.4;
    margin-bottom:20px;
    white-space:normal;
  }

  .page-company .company-message__body p{
    font-size:15px;
    line-height:1.95;
    margin-bottom:18px;
  }

  .page-company .company-message__signature{
    font-size:15px;
    margin-top:24px;
  }

  .page-company .company-row{
    grid-template-columns:1fr;
    gap:12px;
    align-items:start;
  }

  .page-company .company-label{
    min-height:auto;
    padding:16px 12px;
    border-radius:10px;
  }

  .page-company .company-value{
    min-height:auto;
    display:block;
    padding:0;
    font-size:16px;
  }

  .page-company .company-row--address .company-label{
    align-self:auto;
    height:auto;
    min-height:auto;
    padding-top:16px;
    align-items:center;
  }

  .page-company .company-row--address .company-value{
    min-height:auto;
    display:block;
  }

  .page-company .company-map{
    height:320px;
    border-radius:14px;
    margin-top:0;
  }
}

/* =========================================================
   ▼ About page
========================================================= */
.page-about{
  background:#fff;
}

.page-about .page-hero.page-hero--about{
  padding:72px 20px 44px;
  background:linear-gradient(180deg, rgba(0,75,83,.07) 0%, rgba(0,75,83,.02) 55%, #fff 100%);
  border-bottom:1px solid var(--border);
}

.page-about .page-hero.page-hero--about .inner,
.page-about .about-philosophy .inner,
.page-about .about-features .inner,
.page-about .about-process .inner,
.page-about .about-value .inner,
.page-about .about-message .inner{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.page-about .page-hero.page-hero--about h1{
  margin:0 0 12px;
  color:var(--brand);
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-about .page-hero.page-hero--about .lead{
  margin:0;
  max-width:760px;
  color:#35575d;
  font-size:16px;
  line-height:2;
}

.page-about .about-philosophy,
.page-about .about-features,
.page-about .about-process,
.page-about .about-value{
  padding:0 20px 80px;
}

.page-about .about-philosophy{
  padding-top:56px;
}

.page-about .about-section-head{
  margin:0 0 28px;
  text-align:left;
}

.page-about .about-section-head.about-section-head--lead{
  max-width:760px;
}

.page-about .about-section-head__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-about .about-section-head__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

.page-about .about-section-head h2{
  margin:0;
  color:#103238;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
}

.page-about .about-section-head p{
  margin:14px 0 0;
  max-width:760px;
  color:#4a686d;
  font-size:15px;
  line-height:1.9;
}

.page-about .about-philosophy__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.page-about .about-panel{
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:24px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
}

.page-about .about-panel h3{
  margin:0 0 14px;
  color:#103238;
  font-size:24px;
  line-height:1.45;
}

.page-about .about-panel ul{
  margin:0;
  padding-left:20px;
}

.page-about .about-panel li{
  margin-bottom:10px;
  color:#49676c;
  font-size:14px;
  line-height:1.9;
}

.page-about .about-panel li:last-child{
  margin-bottom:0;
}

.page-about .about-features{
  background:#fff;
}

.page-about .about-features__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.page-about .about-features .feature-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:24px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
}

.page-about .about-features .feature-card__num{
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-about .about-features .feature-card h3{
  margin:0 0 12px;
  color:#103238;
  font-size:24px;
  line-height:1.45;
}

.page-about .about-features .feature-card p:last-child{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.9;
}

.page-about .about-process__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.page-about .process-card{
  padding:28px 22px;
  background:#f8fbfb;
  border:1px solid rgba(0,75,83,.10);
  border-radius:22px;
}

.page-about .process-card__step{
  display:inline-block;
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.page-about .process-card h3{
  margin:0 0 10px;
  color:#103238;
  font-size:20px;
  line-height:1.5;
}

.page-about .process-card p{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.95;
}

.page-about .about-value__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.page-about .value-box{
  padding:28px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-left:6px solid var(--brand);
  border-radius:22px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
}

.page-about .value-box h3{
  margin:0 0 10px;
  color:#103238;
  font-size:22px;
  line-height:1.45;
}

.page-about .value-box p{
  margin:0;
  color:#49676c;
  font-size:14px;
  line-height:1.9;
}

.page-about .about-message{
  padding:0 20px 96px;
}

.page-about .about-message .inner{
  padding:36px;
  background:#103238;
  border-radius:28px;
  color:#fff;
  text-align:center;
}

.page-about .about-message__lead{
  margin:0 0 10px;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.4;
  font-weight:800;
}

.page-about .about-message__text{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.9;
}

@media (max-width: 1100px){
  .page-about .about-philosophy__grid,
  .page-about .about-features__grid,
  .page-about .about-value__grid{
    grid-template-columns:1fr;
  }

  .page-about .about-process__grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .page-about .page-hero.page-hero--about{
    padding:56px 0 40px;
  }

  .page-about .page-hero.page-hero--about .inner,
  .page-about .about-philosophy .inner,
  .page-about .about-features .inner,
  .page-about .about-process .inner,
  .page-about .about-value .inner,
  .page-about .about-message .inner{
    width:min(100%, calc(100% - 32px));
  }

  .page-about .about-philosophy,
  .page-about .about-features,
  .page-about .about-process,
  .page-about .about-value{
    padding:0 0 56px;
  }

  .page-about .about-philosophy{
    padding-top:40px;
  }

  .page-about .about-panel,
  .page-about .about-features .feature-card,
  .page-about .process-card,
  .page-about .value-box{
    padding:22px;
  }

  .page-about .about-features .feature-card h3,
  .page-about .about-panel h3{
    font-size:22px;
  }

  .page-about .about-process__grid,
  .page-about .about-value__grid{
    grid-template-columns:1fr;
  }

  .page-about .about-message{
    padding:0 0 72px;
  }

  .page-about .about-message .inner{
    padding:28px 22px;
  }
}

/* =========================================================
   ▼ About page top override（全文維持のまま最下部で上書き）
========================================================= */
.page-about .about-hero{
  padding:120px 24px 72px;
  background:linear-gradient(180deg, rgba(0,75,83,.07) 0%, rgba(0,75,83,.02) 55%, #fff 100%);
}

.page-about .about-hero__inner,
.page-about .about-philosophy .inner,
.page-about .about-features .inner,
.page-about .about-process .inner,
.page-about .about-value .inner,
.page-about .about-message .inner{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.page-about .about-hero__content{
  max-width:760px;
}

.page-about .about-hero__eyebrow,
.page-about .about-section-head__eyebrow{
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-about .about-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.page-about .about-hero__eyebrow::before,
.page-about .about-section-head__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

.page-about .about-section-head__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.page-about .about-hero__title{
  margin:0;
  color:#103238;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-about .about-hero__lead{
  margin:20px 0 0;
  max-width:760px;
  color:#35575d;
  font-size:16px;
  line-height:2;
}

.page-about .about-section-head{
  margin:0 0 28px;
  text-align:left;
}

.page-about .about-section-head.about-section-head--lead{
  max-width:760px;
}

.page-about .about-section-head h2{
  margin:0;
  color:#103238;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
}

.page-about .about-section-head p{
  margin:14px 0 0;
  max-width:760px;
  color:#4a686d;
  font-size:15px;
  line-height:1.9;
}

@media (max-width: 767px){
  .page-about .about-hero{
    padding:56px 0 44px;
  }

  .page-about .about-hero__inner,
  .page-about .about-philosophy .inner,
  .page-about .about-features .inner,
  .page-about .about-process .inner,
  .page-about .about-value .inner,
  .page-about .about-message .inner{
    width:min(100%, calc(100% - 32px));
  }

  .page-about .about-hero__lead{
    font-size:15px;
    line-height:1.9;
  }
}

/* =========================================================
   ▼ eyebrow横線統一（services / works / about）
   全文維持のまま最下部で上書き
========================================================= */
.page-services .services-hero__eyebrow,
.page-services .service-feature__eyebrow,
.page-works .works-hero__eyebrow,
.page-works .works-section__eyebrow,
.page-about .about-hero__eyebrow,
.page-about .about-section-head__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.page-services .services-hero__eyebrow::before,
.page-services .service-feature__eyebrow::before,
.page-works .works-hero__eyebrow::before,
.page-works .works-section__eyebrow::before,
.page-about .about-hero__eyebrow::before,
.page-about .about-section-head__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

/* =========================================================
   ▼ company キャッチコピー1行表示（PCのみ最終上書き）
========================================================= */
@media (min-width: 1025px){
  .page-company .company-message__headline{
    font-size:clamp(28px, 3.4vw, 44px);
    line-height:1.2;
    white-space:nowrap;
  }
}


/* =========================================================
   ▼ Company page 統一調整（works hero寄せ・再調整）
   既存は削除せず最下部で上書き
========================================================= */
.page-company .company{
  padding:120px 24px 72px;
}

.page-company .company__container{
  width:min(1200px, calc(100% - 40px));
  max-width:none;
  margin:0 auto;
}

.page-company .company-message{
  max-width:760px;
  margin:0 0 64px;
  padding:0;
  border-bottom:none;
}

.page-company .company-message__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  color:#004b53;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-company .company-message__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

.page-company .company-message .company__title{
  margin:0;
  color:#103238;
  font-size:clamp(32px, 4.3vw, 52px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-company .company-message__body{
  max-width:760px;
  margin-top:18px;
}

.page-company .company-message__lead{
  margin:0 0 24px;
  color:#103238;
  font-size:clamp(30px, 3.15vw, 39px);
  line-height:1.18;
  font-weight:800;
  letter-spacing:.01em;
}

@media (min-width: 1025px){
  .page-company .company-message__lead{
    white-space:nowrap;
  }
}

.page-company .company-message__body p{
  margin:0 0 20px;
  color:#35575d;
  font-size:16px;
  line-height:2;
  font-weight:600;
}

.page-company .company-message__signature{
  margin-top:28px;
  color:#103238;
  font-size:16px;
  font-weight:800;
  line-height:1.9;
}

.page-company .company__title--sub{
  margin:0 0 30px;
  color:#103238;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
  font-weight:800;
  letter-spacing:.02em;
}

@media (max-width: 820px){
  .page-company .company{
    padding:56px 0 56px;
  }

  .page-company .company__container{
    width:min(100%, calc(100% - 32px));
  }

  .page-company .company-message{
    margin:0 0 40px;
  }

  .page-company .company-message__eyebrow{
    margin-bottom:12px;
  }

  .page-company .company-message .company__title{
    font-size:clamp(32px, 9.2vw, 46px);
  }

  .page-company .company-message__body{
    margin-top:16px;
  }

  .page-company .company-message__lead{
    font-size:clamp(24px, 6.8vw, 34px);
    line-height:1.3;
    white-space:normal;
    margin-bottom:18px;
  }

  .page-company .company-message__body p{
    font-size:15px;
    line-height:1.95;
    margin-bottom:18px;
  }

  .page-company .company__title--sub{
    margin:0 0 22px;
  }
}



/* =========================================================
   ▼ Company page top override（about-hero と同じ作り方で統一）
   全文維持のまま最下部で上書き
========================================================= */
.page-company{
  background:#fff;
}

.page-company .company{
  padding:0;
}

.page-company .company-hero{
  padding:120px 24px 72px;
  background:linear-gradient(180deg, rgba(0,75,83,.07) 0%, rgba(0,75,83,.02) 55%, #fff 100%);
}

.page-company .company-hero__inner,
.page-company .company-message .inner,
.page-company .company-outline .inner{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.page-company .company-hero__content,
.page-company .company-message__body{
  max-width:760px;
}

.page-company .company-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-company .company-hero__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

.page-company .company-hero__title{
  margin:0;
  color:#103238;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-company .company-hero__lead{
  margin:20px 0 0;
  max-width:760px;
  color:#35575d;
  font-size:clamp(30px, 3vw, 35px);
  line-height:1.2;
  font-weight:800;
}

@media (min-width: 1025px){
  .page-company .company-hero__lead{
    white-space:nowrap;
  }
}

.page-company .company-message{
  padding:0 24px 56px;
}

.page-company .company-message{
  margin:0;
  border-bottom:none;
}

.page-company .company-message__body{
  max-width:760px;
}

.page-company .company-message__body p{
  margin:0 0 20px;
  color:#35575d;
  font-size:16px;
  line-height:2;
  font-weight:600;
}

.page-company .company-message__signature{
  margin-top:28px;
  color:#103238;
  font-size:16px;
  font-weight:800;
  line-height:1.9;
}

.page-company .company-outline{
  padding:0 24px 72px;
}

.page-company .company__title{
  color:#103238;
}

.page-company .company__title--sub{
  margin:0 0 30px;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.25;
  letter-spacing:.02em;
}

.page-company .company-table{
  display:grid;
  gap:18px;
}

@media (max-width: 820px){
  .page-company .company-hero{
    padding:56px 0 44px;
  }

  .page-company .company-message,
  .page-company .company-outline{
    padding-left:0;
    padding-right:0;
  }

  .page-company .company-hero__inner,
  .page-company .company-message .inner,
  .page-company .company-outline .inner{
    width:min(100%, calc(100% - 32px));
  }

  .page-company .company-hero__lead{
    font-size:clamp(24px, 6.6vw, 32px);
    line-height:1.3;
    white-space:normal;
  }

  .page-company .company-message{
    padding-bottom:40px;
  }

  .page-company .company-message__body p{
    font-size:15px;
    line-height:1.95;
    margin-bottom:18px;
  }

  .page-company .company__title--sub{
    margin:0 0 22px;
  }

  .page-company .company-outline{
    padding-bottom:56px;
  }
}



/* =========================================================
   ▼ company 1行目コピー最終上書き
   PCで1行に収まる最大寄りフォントに調整
========================================================= */
@media (min-width: 1025px){
  .page-company .company-hero__lead{
    font-size:clamp(34px, 3.2vw, 40px);
    line-height:1.15;
    white-space:nowrap;
    letter-spacing:0;
  }
}


/* =========================================================
   ▼ company 本文開始位置統一（最終上書き）
   lead と本文の左端を同じ基準に固定
========================================================= */
.page-company .company-hero__inner,
.page-company .company-message > .inner,
.page-company .company-outline > .inner{
  width:min(1200px, calc(100% - 40px)) !important;
  margin:0 auto !important;
  padding:0 !important;
}

.page-company .company-hero__content,
.page-company .company-message__body{
  width:100%;
  max-width:760px !important;
  margin:0 !important;
}

.page-company .company-message{
  padding:0 24px 56px !important;
}

.page-company .company-message__body p{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.9;
  font-weight:400;
  color:#4a686d;
}

.page-company .company-message__signature{
  margin-top:24px;
  font-size:15px;
  font-weight:700;
  line-height:1.8;
  color:#103238;
}

.page-company .company-outline{
  padding:0 24px 72px;
}

.page-company .company-outline__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-company .company-outline__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

@media (max-width: 820px){
  .page-company .company-message,
  .page-company .company-outline{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .page-company .company-hero__inner,
  .page-company .company-message > .inner,
  .page-company .company-outline > .inner{
    width:min(100%, calc(100% - 32px)) !important;
  }
}

/* =========================================================
   ▼ company 左位置最終補正（section自体の左寄り解除）
   既存の max-width:760px / margin:0 を打ち消す
========================================================= */
.page-company .company-message{
  max-width:none !important;
  margin:0 !important;
  padding:0 24px 56px !important;
}

.page-company .company-outline{
  max-width:none !important;
  margin:0 !important;
  padding:0 24px 72px !important;
}

@media (max-width: 820px){
  .page-company .company-message,
  .page-company .company-outline{
    max-width:none !important;
    margin:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }
}


/* =========================================================
   ▼ Contact / Thanks page
========================================================= */
.page-contact,
.page-thanks{
  background:#fff;
}

.page-contact .contact-hero,
.page-thanks .thanks-hero{
  padding:120px 24px 72px;
  background:linear-gradient(180deg, rgba(0,75,83,.07) 0%, rgba(0,75,83,.02) 55%, #fff 100%);
}

.page-contact .contact-hero__inner,
.page-contact .contact-content__inner,
.page-thanks .thanks-hero__inner,
.page-thanks .thanks-links__inner{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.page-contact .contact-hero__content,
.page-thanks .thanks-hero__content{
  max-width:760px;
}

.page-contact .contact-hero__eyebrow,
.page-contact .contact-section__eyebrow,
.page-thanks .thanks-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.page-contact .contact-hero__eyebrow::before,
.page-contact .contact-section__eyebrow::before,
.page-thanks .thanks-hero__eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  background:#004b53;
  opacity:.5;
}

.page-contact .contact-hero__title,
.page-thanks .thanks-hero__title{
  margin:0;
  color:#103238;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:.02em;
}

.page-thanks .thanks-hero__title-segment{
  display:inline-block;
  white-space:nowrap;
}

.page-contact .contact-hero__lead,
.page-thanks .thanks-hero__lead{
  margin:20px 0 0;
  max-width:760px;
  color:#35575d;
  font-size:16px;
  line-height:2;
}

.page-contact .contact-content{
  padding:0 24px 96px;
}

.page-contact .contact-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(320px, .95fr);
  gap:28px;
  align-items:start;
}

.page-contact .contact-panel,
.page-contact .contact-form-panel,
.page-thanks .thanks-panel,
.page-thanks .thanks-links{
  padding:34px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  border-radius:28px;
  box-shadow:0 16px 36px rgba(0,0,0,.05);
}

.page-contact .contact-panel--accent,
.page-thanks .thanks-panel{
  background:#f7fbfb;
}

.page-contact .contact-section__title,
.page-thanks .thanks-section__title{
  margin:0 0 16px;
  color:#103238;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.35;
}

.page-contact .contact-text,
.page-thanks .thanks-text{
  margin:0;
  color:#4a686d;
  font-size:15px;
  line-height:1.95;
}

.page-contact .contact-text + .contact-text,
.page-thanks .thanks-text + .thanks-text{
  margin-top:14px;
}

.page-contact .contact-points,
.page-thanks .thanks-actions{
  list-style:none;
  margin:26px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}

.page-contact .contact-points li,
.page-thanks .thanks-actions li{
  padding:18px 20px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
}

.page-contact .contact-points strong,
.page-thanks .thanks-actions strong{
  display:block;
  margin-bottom:6px;
  color:#103238;
  font-size:15px;
}

.page-contact .contact-points span,
.page-thanks .thanks-actions span{
  color:#4a686d;
  font-size:14px;
  line-height:1.85;
}

.page-contact .contact-form-wrap{
  margin-top:22px;
}

.page-contact .contact-form-target{
  min-height:400px;
}

.page-contact .contact-form-note{
  margin:18px 0 0;
  color:#61797d;
  font-size:13px;
  line-height:1.8;
}

.page-contact .hs-form-frame,
.page-contact .hbspt-form{
  width:100%;
}

.page-contact .hbspt-form form{
  display:grid;
  gap:16px;
}

.page-contact .hbspt-form .hs-form-field{
  margin:0 0 6px;
}

.page-contact .hbspt-form label{
  display:block;
  margin:0 0 8px;
  color:#103238;
  font-weight:700;
  font-size:14px;
}

.page-contact .hbspt-form .input,
.page-contact .hbspt-form .hs-input,
.page-contact .hbspt-form textarea,
.page-contact .hbspt-form select{
  width:100% !important;
  border:1px solid rgba(0,75,83,.16);
  border-radius:14px;
  padding:14px 16px;
  background:#fff;
  color:#12343b;
  font-size:15px;
  line-height:1.6;
}

.page-contact .hbspt-form textarea{
  min-height:160px;
  resize:vertical;
}

.page-contact .hbspt-form .hs-button,
.page-contact .hbspt-form input[type="submit"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:54px;
  padding:0 24px;
  border:none;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.page-contact .hbspt-form .hs-button:hover,
.page-contact .hbspt-form input[type="submit"]:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  filter:brightness(1.03);
}

.page-contact .hbspt-form ul,
.page-contact .hbspt-form .inputs-list{
  margin:6px 0 0;
  padding-left:18px;
}

.page-contact .hbspt-form .hs-error-msg,
.page-contact .hbspt-form .hs-main-font-element{
  color:#c0392b;
  font-size:13px;
}

.page-thanks .thanks-hero{
  padding-bottom:48px;
}

.page-thanks .thanks-links{
  margin-top:28px;
}

.page-thanks .thanks-links__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}

.page-thanks .thanks-link-card{
  display:block;
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(0,75,83,.10);
  color:inherit;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-thanks .thanks-link-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(0,0,0,.06);
  border-color:rgba(0,75,83,.18);
}

.page-thanks .thanks-link-card strong{
  display:block;
  margin-bottom:8px;
  color:#103238;
  font-size:17px;
}

.page-thanks .thanks-link-card span{
  color:#4a686d;
  font-size:14px;
  line-height:1.85;
}

@media (max-width: 960px){
  .page-contact .contact-layout,
  .page-thanks .thanks-links__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .page-contact .contact-hero,
  .page-thanks .thanks-hero{
    padding:56px 0 44px;
  }

  .page-contact .contact-content,
  .page-thanks .thanks-links{
    padding-left:0;
    padding-right:0;
  }

  .page-contact .contact-hero__inner,
  .page-contact .contact-content__inner,
  .page-thanks .thanks-hero__inner,
  .page-thanks .thanks-links__inner{
    width:min(100%, calc(100% - 32px));
  }

  .page-contact .contact-panel,
  .page-contact .contact-form-panel,
  .page-thanks .thanks-panel,
  .page-thanks .thanks-links{
    padding:24px 22px;
    border-radius:24px;
  }

  .page-contact .contact-hero__lead,
  .page-thanks .thanks-hero__lead,
  .page-contact .contact-text,
  .page-thanks .thanks-text{
    font-size:15px;
    line-height:1.9;
  }

  .page-contact .hbspt-form .hs-button,
  .page-contact .hbspt-form input[type="submit"]{
    width:100%;
  }
}


/* =========================================================
   ▼ Services page image alignment tuning
   余白なし・見え方統一用の最終上書き
========================================================= */
.page-services .feature-card__frame{
  padding:0 !important;
  background:#fff !important;
}

.page-services .feature-card__frame img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  transform:none !important;
}

/* 3枚の主役位置を揃えるため、少し上寄せで個別調整 */
.page-services .feature-card:nth-child(1) .feature-card__frame img{
  object-position:center 24% !important;
}

.page-services .feature-card:nth-child(2) .feature-card__frame img{
  object-position:center 22% !important;
}

.page-services .feature-card:nth-child(3) .feature-card__frame img{
  object-position:center 24% !important;
}

/* =========================================================
   Services page: adopted feature-card design
========================================================= */
.page-services .service-feature .feature-card__media{
  height:422px;
}

.page-services .service-feature .feature-card__label{
  top:0;
  left:0;
  right:0;
  width:100%;
  height:34px;
  padding:0 14px;
  border-radius:0;
  background:#004B53;
  align-items:center;
  justify-content:flex-start;
  box-shadow:none;
  filter:none;
  backdrop-filter:none;
}

.page-services .service-feature .feature-card__label span{
  margin:0;
  color:#fff;
  font-size:12px;
  font-weight:700;
  line-height:1;
  letter-spacing:.12em;
  writing-mode:horizontal-tb;
  text-orientation:mixed;
  text-shadow:none;
}

.page-services .service-feature .feature-card__title{
  top:342px;
  bottom:auto;
  gap:5px;
  padding-left:14px;
  border-left:3px solid #004B53;
}

.page-services .service-feature .feature-card__title .badge-line{
  padding:0;
  background:transparent;
  box-shadow:none;
}

.page-services .service-feature .badge-line--top{
  order:1;
  color:#004B53;
  font-size:22px;
  font-weight:800;
  line-height:1.35;
  transform:none;
}

.page-services .service-feature .badge-line--bottom{
  order:2;
  margin-top:0;
  color:#171717;
  font-size:15px;
  font-weight:700;
  line-height:1.45;
}

.page-services .service-feature .feature-card__body{
  padding-top:14px;
}

.page-services .service-feature .feature-card:nth-child(2) .feature-card__frame img,
.page-services .service-feature .feature-card:nth-child(3) .feature-card__frame img{
  object-position:center 0% !important;
}

@media (max-width:880px){
  .page-services .service-feature .feature-card__title{
    right:40px;
    max-width:none;
  }

  .page-services .service-feature .badge-line--top{
    font-size:20px;
  }
}

/* =========================================================
   ▼ Works page STEPバッジ調整
   円形から「お問い合わせ」ボタン寄りの角丸形状へ変更
========================================================= */
.page-works .approach-card__step,
.page-works .works-approach__step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:74px;
  height:34px;
  padding:0 16px;
  margin-bottom:18px;
  border-radius:999px;
  background:#004B53;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  white-space:nowrap;
  line-height:1;
}

/* =========================================================
   Mobile navigation and top-page hero readability
========================================================= */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:10px;
  border:1px solid rgba(0,75,83,.24);
  border-radius:10px;
  background:#fff;
  color:#004b53;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:4px auto;
  border-radius:999px;
  background:currentColor;
  transition:transform .2s ease, opacity .2s ease;
}

@media (max-width:880px){
  .site-header{
    padding:6px 14px;
  }

  .nav-toggle{
    display:block;
    flex:0 0 auto;
  }

  .site-header.nav-open{
    background:#fff;
    border-bottom-color:var(--border);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
  }

  .site-header .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    gap:4px;
    padding:12px 16px 18px;
    background:#fff;
    border-top:1px solid var(--border);
    box-shadow:0 18px 30px rgba(0,0,0,.14);
  }

  .site-header.nav-open .site-nav{
    display:flex;
  }

  .site-header .site-nav a,
  .site-header.is-overlay .site-nav a{
    display:block;
    width:100%;
    margin:0;
    padding:10px 12px;
    color:#004b53;
  }

  .site-header .site-nav a.cta,
  .site-header.is-overlay .site-nav a.cta{
    margin-top:4px;
    text-align:center;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2){
    opacity:0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
  }

  .hero.hero-video-wrap h1{
    max-width:100%;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    font-size:clamp(30px,8vw,44px);
  }

  .hero.hero-video-wrap .lead{
    max-width:100%;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    font-size:clamp(16px,4.5vw,20px);
  }
}
