@charset "utf-8";

/* ===== ベース ===== */
:root{
  --emerald-50: #e9f7f4;
  --emerald-100:#d6f1ea;
  --emerald-300:#69cdb9;
  --emerald-700:#0b6b5b;

  --text: #1a1a1a;
  --muted: rgba(0,0,0,.68);
  --white:#fff;

  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--text);
  font-family: "BIZ UDPゴシック", "BIZ UDゴシック", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--emerald-50), #ffffff 40%);
}
a{ color: inherit; text-decoration: none; }

.container{
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.section{ padding: 52px 0; }
h1,h2,h3{ margin: 0 0 12px; line-height: 1.25; }
h1{ font-size: clamp(28px, 4.5vw, 44px); }
h2{ font-size: 24px; }
h3{ font-size: 16px; }
p{ margin: 0 0 12px; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }
.kv{ margin-top: 10px; }

/* ===== ヘッダー/ナビ ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner{
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.logo{ display: grid; gap: 2px; }
.logo__main{ font-weight: 800; letter-spacing: .02em; }
.logo__sub{ font-size: 12px; color: var(--emerald-700); }

.nav{ margin-left: auto; }
.nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__list a{
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav__list a:hover{ background: var(--emerald-100); }
.nav__cta{
  background: var(--emerald-300);
  color: #063b33;
  font-weight: 800;
}
.nav__cta:hover{ filter: brightness(.98); }

/* ハンバーガー（PC非表示） */
.navToggle{ display:none; }
.hamburger{
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background: var(--emerald-700);
  border-radius:2px;
}

/* ===== ヒーロー ===== */
.hero{ padding: 64px 0 22px; }
.badge{
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-weight: 800;
  margin-bottom: 10px;
}
.hero__lead{ max-width: 62ch; color: var(--muted); }

/* ===== UI ===== */
.card{
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card--plain{
  box-shadow: none;
  background: rgba(255,255,255,.75);
}

.grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.list{
  margin: 0;
  padding-left: 1.2em;
}
.list li{ margin: 4px 0; }

.actions{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--emerald-300);
  font-weight: 900;
  box-shadow: var(--shadow);
  border: 0;
}
.button--ghost{
  background: transparent;
  border: 1px solid rgba(11,107,91,.35);
  box-shadow: none;
}

.map{
  border-radius: 12px;
  background: linear-gradient(180deg, var(--emerald-50), #fff);
  border: 1px dashed rgba(11,107,91,.35);
  min-height: 240px;
  padding: 12px;
}

/* ===== テーブル ===== */
.tableWrap{ overflow-x: auto; }
.hours{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}
.hours th, .hours td{
  padding: 10px 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  text-align: center;
  white-space: nowrap;
}
.hours thead th{ background: var(--emerald-100); }
.hours tbody th{
  text-align: left;
  background: rgba(233,247,244,.55);
}

/* ===== フォーム ===== */
.field{ display: grid; gap: 6px; margin: 12px 0; }
.field > span{ font-weight: 700; font-size: 14px; }
input, select, textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font: inherit;
}
input:focus, select:focus, textarea:focus{
  outline: 2px solid rgba(105,205,185,.55);
  border-color: rgba(11,107,91,.35);
}
.hp{
  position: absolute;
  left: -9999px;
}

/* ===== フッター ===== */
.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
  color: var(--muted);
}

/* ===== スマホ ===== */
@media (max-width: 600px){
  .hamburger{ display: inline-flex; }

  .nav{
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid rgba(0,0,0,.06);
    transform: translateY(-120%);
    transition: transform .25s ease;
    padding: 12px 16px;
    margin-left: 0;
  }
  .nav__list{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav__list a{
    padding: 12px 12px;
    background: var(--emerald-50);
    border: 1px solid rgba(0,0,0,.06);
  }
  .navToggle:checked ~ .nav{ transform: translateY(0); }

  .hero{ padding: 46px 0 18px; }
  .grid2{ grid-template-columns: 1fr; }
}