/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #0f172a;
  background: #f6f9ff;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }

:root{
  --s-blue: #2a6be7;
  --s-blue-ink: #1653ce;
  --s-line: #e7edf6;
}

/* 画面幅制限なし。左右余白だけ気持ちよく */
.s-header-in,
.s-hero-in,
.s-main,
.s-footer {
  padding-inline: clamp(16px, 5vw, 84px);
}

/* ===== Header ===== */
.s-header {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--s-line);
}
.s-header-in {
  height: 64px;
  display: flex;
  align-items: center;
}
.s-company{
  font-weight: 900;
  letter-spacing: .02em;
  color: #0f172a;
}
.s-company:hover { color: var(--s-blue-ink); }

/* ===== Hero ===== */
.s-hero{
  padding: 38px 0 20px;
  position: relative;
  overflow:hidden;
}
.s-hero::before{
  content:"";
  position:absolute;
  inset:-60px -60px auto -60px;
  height: 240px;
  background:
    radial-gradient(800px 220px at 18% 20%, rgba(42,107,231,.18), transparent 60%),
    radial-gradient(700px 240px at 85% 0%, rgba(25,167,174,.12), transparent 58%),
    linear-gradient(120deg, rgba(42,107,231,.08), rgba(42,107,231,0));
  pointer-events:none;
}
.s-hero-inner{
  position: relative;
  padding-inline: clamp(16px, 4vw, 56px);
  text-align: center;
}
.s-hero-title{
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 900;
  color: var(--s-blue);
  line-height: 1;
  letter-spacing: .02em;
}
.s-hero-sub{
  margin-top: 10px;
  font-weight: 900;
  font-size: 14px;
  color: #111827;
}

/* ===== Main / Card ===== */
.s-main{ padding-block: 18px 70px; }

.s-card{
  background: #fff;
  border: 1px solid var(--s-line);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(17,24,39,.06);
  overflow: hidden;
}

.s-card-head{
  padding: 18px 18px 0;
}
.s-card-title{
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
}
.s-card-note{
  margin-top: 6px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

/* ===== Map ===== */
.s-map{
  margin: 14px 0 0;
  padding: 14px;
}
.s-map iframe{
  width: 100%;
  height: min(58vh, 520px);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(42,107,231,.08);
  background: #eef4ff;
}

/* ===== Info ===== */
.s-info{
  padding: 14px 18px 18px;
  display: grid;
  gap: 10px;
}

.s-info-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--s-line);
  border-radius: 12px;
  background: #fbfdff;
}
.s-label{
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}
.s-value{
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

/* ===== Button ===== */
.s-actions{
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}
.s-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 9999px;
  background: var(--s-blue);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid var(--s-blue);
  box-shadow: 0 12px 22px rgba(42,107,231,.20);
  transition: transform .15s ease, filter .15s ease;
}
.s-btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.s-btn-ico{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,.18);
}

/* ===== Footer ===== */
.s-footer{
  padding-block: 18px 22px;
  color: #8a94a7;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid var(--s-line);
  background: rgba(255,255,255,.7);
}

/* ===== Responsive ===== */
@media (max-width: 640px){
  .s-map{ padding: 12px; }
  .s-map iframe{ height: 360px; }
  .s-info-row{ grid-template-columns: 1fr; }
  .s-actions{ justify-content: stretch; }
  .s-btn{ width: 100%; justify-content: center; }
}
