:root {
  --green-dark: #2c503c;
  --green: #3d6b50;
  --green-pale: #f0f4ef;
  --gold: #b3924f;
  --ink: #2b3330;
  --sub: #67736c;
  --line: #e3e7e2;
  --bg: #faf9f6;
  --white: #ffffff;
  --logo-blue: #6ba4cc;
  --logo-orange: #dd6b3f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-size: 15.5px;
}

img { max-width: 100%; height: auto; }
a { color: var(--green); }

/* ヘッダー */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo { height: 38px; width: auto; }
.header-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.header-nav { display: flex; gap: 24px; }
.header-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.header-nav a:hover { color: var(--green); border-bottom-color: var(--gold); }

/* ヒーロー */
.hero {
  /* 上＝青・下＝オレンジ（ロゴの水色・橙に合わせた斜めの弧・水色の弧・紫のにじみ） */
  background:
    radial-gradient(120% 82% at 12% 120%, rgba(135,208,244,.95) 0%, rgba(135,208,244,.35) 22%, transparent 40%),
    radial-gradient(130% 72% at 28% 102%, rgba(150,115,205,.65) 0%, rgba(150,115,205,.2) 30%, transparent 50%),
    radial-gradient(90% 90% at 100% -2%, rgba(55,140,240,.9) 0%, transparent 55%),
    radial-gradient(100% 85% at 102% 102%, rgba(252,182,30,.95) 0%, transparent 52%),
    radial-gradient(90% 80% at -2% 120%, rgba(238,112,12,.95) 0%, transparent 55%),
    linear-gradient(166deg,#0f4fd2 0%,#1a63e0 26%,#3a7ddb 42%,#9088b4 52%,#dd8f4d 60%,#f6982a 76%,#f57d08 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 88px 24px 96px;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(44, 80, 60, 0.1);
  margin-bottom: 22px;
}
.hero-eyebrow {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hero-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.9rem, 5.5vw, 2.8rem);
  letter-spacing: 0.12em;
  margin-top: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.hero-stars {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 26px 0;
}
.hero-stars span {
  width: 13px;
  height: 13px;
  background: #f2c14e;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.9;
}
.hero-copy {
  color: #fff;
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-cta {
  display: inline-block;
  margin-top: 36px;
  background: var(--white);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 14px 48px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-cta:hover { background: #f3f7f2; transform: translateY(-1px); }

/* セクション共通 */
main { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-top: 88px; }
.section-en {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--green-dark);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.section-lead {
  text-align: center;
  color: var(--sub);
  font-size: 0.92rem;
  margin: 16px auto 44px;
  max-width: 560px;
}

/* 店舗カード */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}
.store-card:hover { box-shadow: 0 6px 24px rgba(44, 80, 60, 0.1); }
.store-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.store-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.store-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  flex: none;
}
.store-depts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 5px;
}
.dept {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 3px 10px 3px 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  white-space: nowrap;
}
.dept svg { width: 14px; height: 14px; flex: none; }
.store-info { flex: 1; font-size: 0.9rem; }
.store-info > div {
  display: flex;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dotted var(--line);
}
.store-info > div:last-child { border-bottom: none; }
.store-info dt {
  flex: 0 0 3em;
  color: var(--sub);
  font-size: 0.82rem;
  padding-top: 2px;
}
.store-info dd a { font-weight: 700; text-decoration: none; letter-spacing: 0.04em; }
.store-link {
  display: block;
  text-align: center;
  margin-top: 22px;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 11px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.store-link:hover { background: var(--green); color: var(--white); }

/* お約束 */
.promise-section { margin-bottom: 96px; }
.promise-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.promise-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.promise-num {
  font-family: "Noto Serif JP", serif;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.promise-text { font-size: 0.95rem; }

/* フッター */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 44px 24px 36px;
}
.footer-logo {
  height: 52px;
  width: auto;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}
.footer-name {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
  margin-top: 12px;
  font-size: 0.98rem;
}
.footer-copy { font-size: 0.8rem; opacity: 0.75; margin-top: 8px; }

@media (max-width: 640px) {
  .header-nav { display: none; }
  .hero { padding: 64px 20px 72px; }
  .section-head { margin-top: 64px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-section { margin-bottom: 72px; }
}
