:root{
  --text:#2B2C2C;
  --blue:#00549B;
  --footer-blue:#294995;
  --bg:#f2f2f2;
  --white:#ffffff;
  --container:1000px;
  --header-h:100px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}

/* fixed header */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--header-h);
  background:rgba(255,255,255,0.95);
  z-index:1000;
  border-bottom:1px solid #e6e6e6;
}

.header-inner{
  height:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand img{display:block; height:65px; width:auto;}

.site-nav ul{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  align-items:center;
  gap:22px;
}

.site-nav a{
  color:var(--text);
  text-decoration:none;
  font-size:16px;
  padding:6px 0;
  border-bottom:2px solid transparent;
}

.site-nav a:hover{
  border-bottom:2px solid var(--blue);
}

/* hamburger */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:none;
  background:transparent;
  padding:10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:var(--text);
  margin:6px 0;
  border-radius:2px;
}

/* main spacing under fixed header */
.page{
  padding-top:var(--header-h);
}

/* hero */
.hero{
  background:#fff;
}
.hero-img{
  width:100%;
  height:auto;
  display:block;
  /* 1525px画像ならそのままOK。切り抜きしたいならobject-fitに変更 */
}

/* sections */
.section{
  background:#fff;
  padding:56px 0;
}
.section-alt{
  background:var(--bg);
}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

h2{
  font-weight:400;
  margin:0 0 20px;
  letter-spacing:0.2px;
}
h3{
  font-weight:500;
  margin:0 0 10px;
}

/* ページタイトル用（h2強化） */
.page-title{
  font-size:1.9rem;
  font-weight:500;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:28px;
}
@media (max-width: 560px){
  .page-title{
    font-size:1.6rem;
    letter-spacing:0.04em;
  }
}

/* DUMMYバッジ */
.badge-dummy{
  display:inline-block;
  margin-left:10px;
  padding:3px 10px;
  font-size:0.6em;
  letter-spacing:0.12em;
  border-radius:999px;
  background:#E6007A; /* vivid magenta */
  color:#ffffff;
  vertical-align:middle;
}

.center{ text-align:center; }

.text-block{
  margin:26px 0 0;
  padding-top:10px;
}
.bullets{
  margin:10px 0 0 18px;
}

/* button */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:320px;
  padding:16px 22px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  letter-spacing:0.4px;
  border:2px solid var(--blue);
  transition: all .15s ease;
}
.btn-primary:hover{
  background:transparent;
  color:var(--blue);
}

/* company table */
.company-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}
.company-table th,
.company-table td{
  padding:16px 18px;
  border-bottom:1px solid #e6e6e6;
  vertical-align:top;
}
.company-table th{
  width:32%;
  font-weight:600;
  background:#fafafa;
}
.company-table tr:last-child th,
.company-table tr:last-child td{
  border-bottom:none;
}

/* 日本語補足用 */
.note-ja{
  display:block;
  margin-top:4px;
  font-size:0.85em;
  color:#777777;
}

/* map */
.map-embed{
  margin-top:18px;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
.map-embed iframe{
  width:100%;
  height:280px;
  border:0;
  display:block;
}

/* footer */
.site-footer{
  background:var(--footer-blue);
  color:#fff;
  padding:44px 0;
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:24px;
}
.site-footer h4{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:0.5px;
}
.site-footer ul{
  list-style:none;
  margin:0;
  padding:0;
}
.site-footer li{margin:6px 0;}
.site-footer a{
  color:#fff;
  text-decoration:none;
  opacity:0.92;
}
.site-footer a:hover{opacity:1; text-decoration:underline;}

.copyright{
  margin:28px 0 0;
  font-size:12px;
  opacity:0.85;
}

/* responsive */
@media (max-width: 900px){
  :root{ --header-h: 80px; }
  .brand img{ height:52px; }
  .site-nav{
    position:absolute;
    top:var(--header-h);
    left:0; right:0;
    background:rgba(255,255,255,0.98);
    border-top:1px solid #e6e6e6;
    display:none;
  }
  .site-nav ul{
    flex-direction:column;
    gap:0;
    padding:10px 20px 18px;
    align-items:flex-start;
  }
  .site-nav li{width:100%;}
  .site-nav a{
    display:block;
    width:100%;
    padding:14px 0;
    border-bottom:1px solid #ededed;
  }
  .site-nav a:hover{
    border-bottom:1px solid #ededed;
    color:var(--blue);
  }
  .nav-toggle{ display:block; }

  .footer-cols{
    grid-template-columns:1fr;
  }
  .company-table th{ width:40%; }
}

@media (max-width: 560px){
  .btn-primary{ min-width: 100%; }
  .company-table th, .company-table td{
    display:block;
    width:100%;
  }
  .company-table th{
    background:#fafafa;
    border-bottom:none;
  }
  .company-table td{
    padding-top:6px;
  }
}