/* =============================
   リセット・基本設定
============================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --main:       #83CCD2;   /* テーマカラー */
  --main-dark:  #5aabb2;   /* テーマカラー（濃いめ） */
  --main-light: #e8f7f8;   /* テーマカラー（薄め） */
  --text:       #2c2c2a;   /* 本文テキスト */
  --text-sub:   #7a7a76;   /* サブテキスト */
  --bg:         #fafaf8;   /* 背景 */
  --white:      #ffffff;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

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

/* =============================
   ナビゲーション
============================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 60px;
  background: rgba(250,250,248,0.97);
  border-bottom: 1px solid rgba(131,204,210,0.25);
}

.nav-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  letter-spacing: 0.15em;
  color: var(--main-dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  text-decoration: none;
}

.nav-links a:hover { color: var(--main-dark); }

/* ハンバーガーボタン（スマホのみ表示） */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-sub);
  transition: all 0.3s;
}

/* スマホ用ドロワーメニュー */
.nav-drawer {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(250,250,248,0.98);
  border-bottom: 1px solid rgba(131,204,210,0.25);
  z-index: 99;
  padding: 1rem 5%;
}

.nav-drawer.open {
  display: block;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer ul li a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  text-decoration: none;
  border-bottom: 1px solid rgba(131,204,210,0.15);
}

/* =============================
   セクション共通
============================= */
section {
  padding: 70px 5%;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--main);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.section-text {
  font-size: 14px;
  line-height: 2.3;
  color: var(--text-sub);
}

/* =============================
   予約ボタン（共通）
============================= */
.btn-reserve {
  display: inline-block;
  background: var(--main);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 12px 28px;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  transition: background 0.2s;
}

.btn-reserve:hover {
  background: var(--main-dark);
}

/* =============================
   ページヘッダー（サブページ共通）
============================= */
.page-header {
  margin-top: 60px;
  padding: 60px 5% 50px;
  background: var(--main-light);
  text-align: center;
}

.page-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
}

/* =============================
   フッター
============================= */
footer {
  background: var(--text);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--main);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}


/* =============================
   スマホ対応（共通）
============================= */
@media (max-width: 640px) {
  .nav-links       { display: none; }
  .nav-hamburger   { display: flex; }

  section { padding: 50px 5%; }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* =============================
   サブページ共通：本文エリア見出し（左ボーダー付き）
============================= */
.sub-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--main);
}

/* =============================
   サブページ共通：箇条書きリスト
============================= */
.sub-list {
  list-style: none;
  padding: 0;
}

.sub-list li {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-sub);
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.4rem;
}

.sub-list li::before {
  content: '・';
  color: var(--main);
  position: absolute;
  left: 0;
}

/* =============================
   サブページ共通：TOPへ戻るボタンエリア
============================= */
.back-btn-wrap {
  margin-top: 3rem;
  text-align: center;
}

/* =============================
   サブページ共通：セクション区切り
============================= */
.sub-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(131,204,210,0.25);
}

.sub-section:last-of-type {
  border-bottom: none;
}
