/* コミュニティスタンド咲 — 共通スタイル
   ブランドカラーはロゴ（Community stand 咲 / SAKI）から採取 */

:root {
  --brown:  #3B2416;
  --brown-2:#5A392A;
  --cream:  #FBF4E4;
  --cream-2:#F3E7CD;
  --white:  #FFFFFF;
  --red:    #D9463A;
  --blue:   #2354A6;
  --yellow: #EFB717;
  --green:  #1E8B4E;
  --pink:   #E85C9E;
  --ink:    #2B1A10;
  --muted:  #6E5A4C;
  --line:   #E3D5B8;
  --radius: 16px;
  --wrap:   1080px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
               "Yu Gothic Medium", "Yu Gothic", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
a:hover { opacity: .8; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- スカラップ（窓装飾のモチーフ） ---------- */
.scallop {
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20' viewBox='0 0 100 20'%3E%3Ccircle cx='10' cy='0' r='10' fill='%231E8B4E'/%3E%3Ccircle cx='30' cy='0' r='10' fill='%23E85C9E'/%3E%3Ccircle cx='50' cy='0' r='10' fill='%232354A6'/%3E%3Ccircle cx='70' cy='0' r='10' fill='%23D9463A'/%3E%3Ccircle cx='90' cy='0' r='10' fill='%23EFB717'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 100px 20px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 244, 228, .94);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--brown);
}
.site-header .bar {
  display: flex; align-items: center; gap: 20px;
  padding: 10px 0; min-height: 56px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand img { width: 108px; }
.brand b { font-size: .95rem; letter-spacing: .04em; line-height: 1.3; }
.brand span { display: block; font-size: .68rem; color: var(--muted); font-weight: 400; letter-spacing: .12em; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.site-nav a {
  display: block; padding: 6px 11px; border-radius: 999px;
  font-size: .86rem; font-weight: 700; text-decoration: none; color: var(--brown);
}
.site-nav a:hover { background: var(--cream-2); opacity: 1; }
.site-nav a.cta { background: var(--red); color: #fff; }
.site-nav a.cta:hover { background: #c23b30; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  background: transparent; border: 2px solid var(--brown); border-radius: 12px;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--brown);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero { padding: 44px 0 8px; }
.hero .inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero-logo { background: #fff; border: 3px solid var(--brown); border-radius: var(--radius); padding: 20px 22px; max-width: 340px; box-shadow: 6px 6px 0 var(--brown); }
.hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.3; margin: 24px 0 12px; letter-spacing: .02em; }
.hero h1 .mk { color: var(--red); }
.hero .lead { font-size: 1.05rem; margin: 0 0 8px; font-weight: 700; }
.hero .sub { color: var(--muted); margin: 0 0 24px; }
.hero-photo { border: 3px solid var(--brown); border-radius: var(--radius); overflow: hidden; box-shadow: 8px 8px 0 var(--brown); }

.daynight { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.daynight li { background: #fff; border: 2px solid var(--brown); border-radius: 999px; padding: 5px 16px 5px 6px; font-size: .9rem; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.daynight .badge { border-radius: 999px; padding: 2px 11px; font-size: .82rem; color: #fff; }
.badge-day { background: var(--yellow); color: var(--brown) !important; }
.badge-night { background: var(--blue); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 800; text-decoration: none; border: 3px solid var(--brown);
  box-shadow: 4px 4px 0 var(--brown); transition: transform .08s ease, box-shadow .08s ease;
}
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--brown); }
.btn-primary { background: var(--red); color: #fff; }
.btn-secondary { background: var(--yellow); color: var(--brown); }
.btn-ghost { background: #fff; color: var(--brown); }
.btn:hover { opacity: 1; }

/* ---------- お知らせ帯 ---------- */
.notice {
  margin: 40px 0 0; border: 3px solid var(--brown); border-radius: var(--radius);
  background: var(--yellow); box-shadow: 8px 8px 0 var(--brown); overflow: hidden;
}
.notice .head { background: var(--brown); color: var(--yellow); padding: 8px 22px; font-weight: 800; letter-spacing: .08em; font-size: .9rem; }
.notice .body { padding: 22px 24px 26px; }
.notice .date { font-size: clamp(2rem, 7vw, 3.4rem); font-weight: 900; line-height: 1.1; color: var(--red); letter-spacing: -.02em; }
.notice .date small { font-size: .34em; color: var(--brown); margin-left: 6px; letter-spacing: .04em; }
.notice h2 { margin: 4px 0 14px; font-size: clamp(1.3rem, 4vw, 1.9rem); }
.notice dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin: 0; }
.notice dt { font-weight: 800; }
.notice dd { margin: 0; }
.notice .event {
  margin-top: 18px; padding: 16px 18px; background: var(--white);
  border: 2px dashed var(--brown); border-radius: var(--radius);
}
.notice .event-label {
  display: inline-block; margin: 0; background: var(--red); color: #fff;
  border-radius: 999px; padding: 3px 14px; font-size: .78rem; font-weight: 800; letter-spacing: .1em;
}
.notice .event-time {
  margin: 10px 0 0; font-size: clamp(1.3rem, 4.4vw, 1.9rem); font-weight: 900;
  line-height: 1.2; color: var(--brown); letter-spacing: -.01em;
}
.notice .event-time small { font-size: .55em; margin-left: 2px; letter-spacing: .02em; }
.notice .event-title { margin: 2px 0 0; font-size: clamp(1.05rem, 3.4vw, 1.3rem); font-weight: 800; color: var(--red); }
.notice .event-note { margin: 10px 0 0; font-size: .9rem; line-height: 1.8; color: var(--muted); }
.notice .event-note a { color: var(--blue); }

.notice .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding: 0; list-style: none; }
.notice .tags li { background: var(--brown); color: #fff; border-radius: 999px; padding: 3px 14px; font-size: .84rem; font-weight: 700; }

/* ---------- セクション ---------- */
section { padding: 60px 0; }
.section-title { text-align: center; margin: 0 0 8px; font-size: clamp(1.5rem, 4.5vw, 2.1rem); }
.section-title .en { display: block; font-size: .62rem; letter-spacing: .3em; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.section-lead { text-align: center; color: var(--muted); margin: 0 auto 36px; max-width: 46em; }

.card {
  background: #fff; border: 3px solid var(--brown); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: 5px 5px 0 var(--brown);
}
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.use-card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.use-card .tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; padding: 2px 12px; border-radius: 999px; color: #fff; margin-bottom: 10px; }
.use-card p { margin: 0; font-size: .93rem; color: var(--muted); }
.c-red { background: var(--red); } .c-blue { background: var(--blue); }
.c-green { background: var(--green); } .c-pink { background: var(--pink); }
.c-yellow { background: var(--yellow); color: var(--brown) !important; }

.equip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.equip li { background: #fff; border: 2px solid var(--brown); border-radius: 999px; padding: 8px 20px 8px 16px; font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 9px; }
.dot { width: 12px; height: 12px; border-radius: 50%; flex: none; display: inline-block; }
.dot-red { background: var(--red); } .dot-blue { background: var(--blue); }
.dot-green { background: var(--green); } .dot-yellow { background: var(--yellow); }
.dot-pink { background: var(--pink); } .dot-brown { background: var(--brown); }

.price-hero { text-align: center; }
.price-hero .amount { font-size: clamp(2.6rem, 9vw, 4.4rem); font-weight: 900; color: var(--red); line-height: 1; margin: 14px 0 10px; }
.price-hero .amount small { font-size: .3em; color: var(--brown); margin-left: 4px; }
.price-hero .cond { font-weight: 800; font-size: 1.05rem; }
.note { font-size: .86rem; color: var(--muted); }

/* ---------- テーブル ---------- */
.table-wrap { overflow-x: auto; border: 3px solid var(--brown); border-radius: var(--radius); background: #fff; box-shadow: 5px 5px 0 var(--brown); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .94rem; }
caption { caption-side: top; text-align: left; font-weight: 800; padding: 16px 18px 6px; font-size: 1.05rem; }
th, td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; }
thead th { background: var(--brown); color: #fff; font-size: .86rem; letter-spacing: .04em; border-bottom: none; }
tbody th { font-weight: 800; white-space: nowrap; }
th .tw { display: inline-block; border-radius: 999px; color: #fff; font-size: .74rem; padding: 1px 9px; margin-right: 7px; vertical-align: 1px; }
.tw-day { background: var(--yellow); color: var(--brown) !important; }
.tw-night { background: var(--blue); }
.tw-late { background: var(--brown); }
.tw-both { background: var(--green); }
th.num { text-align: right; }
td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: #FCF8EE; }

/* ---------- アクセス ---------- */
.access { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.info-list { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px; }
.info-list dt { font-weight: 800; color: var(--brown); }
.info-list dd { margin: 0; }

/* ---------- フォーム ---------- */
.form-grid { display: grid; gap: 16px; }
.field label { display: block; font-weight: 800; margin-bottom: 5px; font-size: .92rem; }
.field .req { color: var(--red); font-size: .78rem; margin-left: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 13px; font: inherit; font-size: .96rem;
  border: 2px solid var(--brown); border-radius: 10px; background: #fff; color: inherit;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin-top: 14px; font-weight: 800; }
.form-msg.ok { color: var(--green); }
.form-msg.ng { color: var(--red); }

/* ---------- フッター ---------- */
.site-footer { background: var(--brown); color: #F4E9D6; padding: 44px 0 28px; margin-top: 60px; }
.site-footer a { color: #FFD97A; }
.site-footer .cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
.site-footer h3 { font-size: .95rem; margin: 0 0 10px; color: var(--yellow); letter-spacing: .06em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; font-size: .92rem; }
.site-footer li { margin-bottom: 6px; }
.site-footer .copy { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-size: .82rem; opacity: .8; }

/* SNS リンク（アイコンはインライン SVG・追加リクエストなし） */
.sns { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 14px 0 0; padding: 0; }
.sns a { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; text-decoration: none; }
.sns-i { width: 19px; height: 19px; flex: none; }

.sns-follow { margin: 26px auto 0; max-width: 720px; text-align: center; }
.sns-follow p { margin: 0 0 12px; font-size: .95rem; color: var(--muted); }
.sns-follow .btn-row { justify-content: center; }
.sns-follow .btn { display: inline-flex; align-items: center; gap: 9px; }

.page-head { padding: 46px 0 10px; }
.page-head h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin: 0 0 8px; }
.page-head .en { font-size: .66rem; letter-spacing: .3em; color: var(--muted); font-weight: 700; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin: 0 0 6px; }
.breadcrumb a { color: var(--muted); }

.disclaimer { background: var(--cream-2); border: 2px dashed var(--brown-2); border-radius: 12px; padding: 14px 18px; font-size: .87rem; color: var(--brown-2); }

@media (max-width: 900px) {
  .hero .inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .access { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
}
/* ---------- 料金表：スマホではカード表示に切り替える ---------- */
@media (max-width: 640px) {
  .table-cards { overflow-x: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .table-cards table { display: block; min-width: 0; width: 100%; }
  .table-cards caption { display: block; padding: 0 2px 12px; font-size: 1rem; }
  .table-cards thead { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .table-cards tbody { display: block; }
  .table-cards tbody tr {
    display: block; margin-bottom: 14px; overflow: hidden;
    border: 3px solid var(--brown); border-radius: var(--radius);
    background: #fff; box-shadow: 4px 4px 0 var(--brown);
  }
  .table-cards tbody tr:last-child { margin-bottom: 0; }
  .table-cards tbody th, .table-cards tbody td { display: block; text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); }
  .table-cards tbody tr > *:last-child { border-bottom: 0; }
  .table-cards tbody th[scope="row"] { background: var(--cream-2); font-weight: 800; }
  .table-cards tbody td { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
  .table-cards tbody td::before { content: attr(data-label); font-size: .86rem; font-weight: 700; color: var(--brown-2); }
  .table-cards tbody td.num { text-align: right; white-space: normal; }
}

@media (max-width: 620px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .notice dl { grid-template-columns: 1fr; }
  .notice dt { margin-top: 8px; }
  section { padding: 44px 0; }
}

/* ---------- モバイルヘッダー（ロゴ＋ハンバーガー） ---------- */
@media (max-width: 860px) {
  html { scroll-padding-top: 64px; }

  .site-header .bar {
    flex-wrap: nowrap; gap: 12px;
    padding: 6px 0; min-height: 0;
  }
  .brand img { width: 32px; }
  .brand b { display: none; }
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    margin-left: 0;
    display: none;
    background: var(--cream);
    border-bottom: 2px solid var(--brown);
    box-shadow: 0 10px 20px rgba(59, 36, 22, .12);
    padding: 10px 0 14px;
  }
  .nav-open .site-nav { display: block; }
  .site-nav ul {
    flex-direction: column; flex-wrap: nowrap; gap: 2px;
    width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  }
  .site-nav a { padding: 11px 14px; border-radius: 12px; font-size: .95rem; }
  .site-nav a.cta { text-align: center; margin-top: 6px; }
}
