@charset "UTF-8";
/* =========================================================
   HaterumaOrigin NECO 公式サイト 共通スタイル
   和モダン基調 / ベース生成り / アクセント深緑 / 猫モチーフ
   モバイルファースト
   ========================================================= */

:root {
  --kinari: #f7f2e6;      /* 生成り（ベース背景） */
  --paper: #fffdf7;       /* カード背景 */
  --ink: #33312a;         /* 本文 */
  --muted: #7d7666;       /* 補足テキスト */
  --green: #2e5d4b;       /* アクセント深緑 */
  --green-deep: #21463a;  /* 深緑（濃） */
  --gold: #c2a35c;        /* 差し色（金茶） */
  --line: #e6ddc7;        /* 罫線 */
  --danger: #b3543f;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(51, 49, 42, .08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--kinari);
  -webkit-text-size-adjust: 100%;
  /* anywhere だと「40,000円」や英単語の途中でも折り返してしまうため break-word にする */
  overflow-wrap: break-word;
}

/* ---------- 改行制御ユーティリティ ---------- */
/* フレーズ単位で折り返す（句の途中で改行させない） */
.u-ib { display: inline-block; }
/* 金額は途中で折り返さない */
.price-num { white-space: nowrap; }
/* PC幅でのみ効かせる改行（モバイルでは自然な折り返しに任せる） */
br.pc { display: none; }
@media (min-width: 600px) { br.pc { display: inline; } }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); }
a:hover { opacity: .8; }

h1, h2, h3, h4 {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 600;
  line-height: 1.5;
  color: var(--green-deep);
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-deep);
}
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  line-height: 1.3;
}
.brand-text small {
  display: block;
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .12em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.global-nav { display: none; }
.global-nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.global-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.global-nav a {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--ink);
  font-size: .95rem;
}
.global-nav a.is-current { color: var(--green); font-weight: 700; }
.global-nav a.nav-cta {
  margin: 8px 20px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .global-nav { display: block !important; position: static; background: none; border: 0; box-shadow: none; }
  .global-nav ul { display: flex; align-items: center; gap: 4px; padding: 0; }
  .global-nav a { padding: 8px 12px; font-size: .9rem; }
  .global-nav a.nav-cta { margin: 0 0 0 8px; padding: 8px 20px; }
}

/* ---------- ヒーロー（トップ） ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
}
.hero img.hero-img {
  width: 100%;
  height: min(72vh, 560px);
  object-fit: cover;
  opacity: .55;
}
.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  color: #fff;
}
.hero-copy h1 {
  color: #fff;
  font-size: clamp(1.5rem, 5.4vw, 2.6rem);
  letter-spacing: .1em;
  margin: 0 0 .5em;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-copy p {
  margin: 0 0 1.6em;
  font-size: clamp(.85rem, 3vw, 1.05rem);
  letter-spacing: .06em;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ページ下層ヒーロー */
.page-hero {
  background: linear-gradient(rgba(33,70,58,.85), rgba(33,70,58,.85)), var(--green-deep);
  color: #fff;
  text-align: center;
  padding: 44px 20px 40px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.4rem, 4.5vw, 2rem); margin: 0 0 .3em; letter-spacing: .12em; }
.page-hero p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.85); letter-spacing: .08em; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity .2s, transform .2s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--green); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-outline { background: rgba(255,255,255,.9); color: var(--green-deep); border-color: var(--green); }

/* ---------- セクション ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--paper); }
.section-title {
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  letter-spacing: .14em;
  margin: 0 0 8px;
}
.section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: var(--gold);
}
.section-lead {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 36px;
}

/* 猫の足あと区切り */
.paw-divider {
  text-align: center;
  padding: 8px 0;
  color: var(--gold);
  letter-spacing: .8em;
  font-size: 1.1rem;
  user-select: none;
}

/* ---------- カード ---------- */
.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { margin: 0 0 .4em; font-size: 1.05rem; }
.card-body p { margin: 0; font-size: .88rem; color: var(--muted); }

/* 特徴アイコンカード */
.feature { text-align: center; padding: 26px 18px; }
.feature .feature-icon { font-size: 2rem; line-height: 1; margin-bottom: 10px; }
.feature h3 { font-size: 1rem; margin: 0 0 .4em; }
.feature p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- テーブル ---------- */
.table-scroll { overflow-x: auto; }
table.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .92rem;
}
table.data-table th, table.data-table td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
table.data-table thead th {
  background: var(--green-deep);
  color: #fff;
  font-weight: 600;
  letter-spacing: .06em;
}
table.data-table tbody th {
  background: #f2ecdc;
  font-weight: 600;
  white-space: nowrap;
}
.price-num { font-size: 1.15em; font-weight: 700; color: var(--green-deep); }

/* 注記 */
.note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 10px;
}
.note-box {
  background: #f2ecdc;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: .9rem;
  margin: 24px 0;
}
.note-box strong { color: var(--green-deep); }
.todo-badge {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 8px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ---------- カレンダー ---------- */
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: .85rem;
  margin-bottom: 24px;
}
.calendar-legend span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -2px;
  background: #fff;
}
.calendar-legend .legend-booked::before { background: #d5d0c4; }

.calendar-months {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .calendar-months { grid-template-columns: 1fr 1fr; align-items: start; } }

.cal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cal h3 { text-align: center; margin: 0 0 12px; font-size: 1.1rem; letter-spacing: .1em; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: .85rem;
}
.cal-grid .dow { font-weight: 700; color: var(--muted); font-size: .75rem; padding: 4px 0; }
.cal-grid .dow.sun { color: var(--danger); }
.cal-grid .dow.sat { color: #3c6e9f; }
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.cal-cell.is-empty { border: none; background: none; }
.cal-cell.is-booked { background: #d5d0c4; color: #8a836f; text-decoration: line-through; }
.cal-cell.is-past { background: #f4f0e5; color: #c2bba7; }
.cal-status { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 16px; }

/* ---------- フォーム ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 640px) { .form-card { padding: 36px 40px; } }

.form-row { margin-bottom: 22px; }
.form-row label.field-label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 6px;
}
.req {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  font-size: .68rem;
  border-radius: 4px;
  padding: 0 6px;
  margin-left: 6px;
  vertical-align: 1px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
.form-grid-2 { display: grid; gap: 16px; }
@media (min-width: 560px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.agree-row {
  background: #f2ecdc;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .9rem;
}
.agree-row label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.agree-row input { margin-top: 5px; width: 18px; height: 18px; flex: none; }

/* ハニーポット（人間には見えない） */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-submit { text-align: center; margin-top: 28px; }
.form-submit .btn { width: 100%; max-width: 360px; font-size: 1.05rem; padding: 15px 32px; }

/* ---------- 約款・法令 ---------- */
.terms-body { max-width: 780px; margin: 0 auto; font-size: .92rem; }
.terms-body h2 {
  font-size: 1.05rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin: 2.2em 0 .8em;
}
.terms-body ol, .terms-body ul { padding-left: 1.4em; }
.terms-body li { margin-bottom: .4em; }

/* ---------- CTAバンド ---------- */
.cta-band {
  background: var(--green-deep);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
}
.cta-band h2 { color: #fff; margin: 0 0 .4em; font-size: 1.3rem; letter-spacing: .12em; }
.cta-band p { margin: 0 0 1.4em; font-size: .9rem; color: rgba(255,255,255,.85); }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 40px 0 90px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.footer-brand { font-family: "Shippori Mincho", serif; font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 20px; margin: 16px 0; padding: 0; list-style: none; }
.footer-nav a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-meta { border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,.65); }

/* ---------- 追従予約バー（モバイル） ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 1px;
  box-shadow: 0 -2px 10px rgba(0,0,0,.15);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: .04em;
}
.sticky-cta .cta-cal { background: var(--gold); }
.sticky-cta .cta-book { background: var(--green); }
@media (min-width: 900px) { .sticky-cta { display: none; } .site-footer { padding-bottom: 40px; } }

/* ---------- 地図 ---------- */
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 汎用 ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 40px; }
