@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&family=Shippori+Mincho:wght@400;600;700&display=swap');

/* =============================================
   マージャンハウスいでがみ — v3 ブラッシュアップ
   コンセプト: 女性・初心者向け / モダン+温かみ
   参考: ひばな(洗練) + リラックマ(親しみ) + 麻雀LAB(安心感)
   ============================================= */

/* --- リセット & ベース --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === メインカラー: ロイヤルブルー === */
  --green:        #1a35d4;
  --green-mid:    #2548e8;
  --green-light:  #3d60f0;
  --green-dark:   #0e1e8a;
  --green-pale:   #e8eeff;
  --green-pale2:  #c8d4ff;

  /* === アクセント: ゴールド === */
  --rose:         #d4a017;
  --rose-mid:     #e8b82a;
  --rose-pale:    #fff8e1;
  --rose-pale2:   #ffedb0;
  --peach:        #f4a261;
  --peach-pale:   #fff3e8;

  /* === ニュートラル === */
  --cream:        #f0f4ff;
  --ivory:        #e8eeff;
  --warm-white:   #fefefe;
  --blue:         #2563a8;
  --blue-light:   #3b82d6;
  --blue-pale:    #eff6ff;
  --orange:       #e07b39;
  --orange-dark:  #c9682a;

  /* === ピンク（旧互換） === */
  --pink:         #d4507a;
  --pink-pale:    #fce8f0;
  --pink-mid:     #e8789f;

  /* === グレー === */
  --gray-50:      #faf9f8;
  --gray-100:     #f4f2ef;
  --gray-200:     #e8e4de;
  --gray-400:     #a09890;
  --gray-600:     #5a5248;
  --gray-700:     #3d3830;
  --gray-800:     #2a2520;
  --gray-900:     #1a1510;

  /* === シャドウ === */
  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow:       0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 8px 48px rgba(0,0,0,.13);
  --shadow-xl:    0 16px 64px rgba(0,0,0,.16);
  --shadow-green: 0 8px 32px rgba(26,53,212,.25);
  --shadow-rose:  0 8px 32px rgba(212,160,23,.25);

  /* === ボーダーラジウス === */
  --radius-xs:    6px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --radius-2xl:   48px;

  /* === トランジション === */
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font:         'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-mincho:  'Shippori Mincho', 'Hiragino Mincho ProN', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 18px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-white  { background: var(--warm-white); }
.bg-beige  { background: var(--ivory); }
.bg-cream  { background: var(--cream); }
.bg-green  { background: var(--green-pale); }
.bg-rose   { background: var(--rose-pale); }
.bg-dark   { background: var(--gray-900); }

/* セクションラベル */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  color: var(--green); text-transform: uppercase;
  background: var(--green-pale); border-radius: 50px;
  padding: 5px 16px; margin-bottom: 14px;
  border: 1.5px solid var(--green-pale2);
}
.section-label.rose {
  color: var(--rose); background: var(--rose-pale); border-color: var(--rose-pale2);
}

/* セクションタイトル */
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900; line-height: 1.25;
  color: var(--gray-900); margin-bottom: 14px;
  letter-spacing: .02em;
}
.section-title em { color: var(--green); font-style: normal; }
.section-title .rose-em { color: var(--rose); font-style: normal; }
.section-sub {
  color: var(--gray-600); font-size: .95rem; line-height: 1.9;
  max-width: 580px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ディバイダー */
.divider {
  width: 52px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  margin: 16px 0 52px;
}
.center .divider { margin: 16px auto 52px; }
.divider.rose {
  background: linear-gradient(90deg, var(--rose), var(--rose-mid));
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: .03em;
}
.btn-green  {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff; box-shadow: var(--shadow-green);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,53,212,.35); }
.btn-rose   {
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  color: #fff; box-shadow: var(--shadow-rose);
}
.btn-rose:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,160,23,.35); }
.btn-orange {
  background: linear-gradient(135deg, #e07b39, #f4a261);
  color: #fff; box-shadow: 0 6px 24px rgba(224,123,57,.35);
}
.btn-orange:hover { transform: translateY(-3px); }
.btn-white  {
  background: #fff; color: var(--green);
  border: 2px solid var(--green-pale2);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--green-pale); border-color: var(--green); }
.btn-outline-white {
  background: rgba(255,255,255,.15); color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.28); }
.btn-lg { padding: 18px 48px; font-size: 1.08rem; }
.btn-sm { padding: 10px 22px; font-size: .84rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 2px solid var(--green-pale2);
  box-shadow: 0 2px 24px rgba(26,53,212,.1);
}
.header-inner {
  display: flex; align-items: center;
  padding: 0 24px; max-width: 1240px; margin: 0 auto;
  height: 72px; gap: 12px;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo-img { height: 56px; width: auto; object-fit: contain; display: block; border-radius: 6px; }
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(26,53,212,.3);
}
.logo-text-wrap { line-height: 1.3; }
.logo-name { font-size: .9rem; font-weight: 800; color: var(--green-dark); }
.logo-sub  { font-size: .68rem; color: var(--gray-400); font-weight: 400; }

.header-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.header-nav a {
  padding: 8px 14px; font-size: .82rem; font-weight: 600;
  color: var(--gray-600); border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--green); background: var(--green-pale);
}
.header-beginner {
  background: var(--rose-pale); color: var(--rose);
  border: 1.5px solid var(--rose-pale2);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.header-beginner:hover { background: var(--rose); color: #fff; }

.header-tel {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #e07b39, #f4a261);
  color: #fff;
  padding: 10px 18px; border-radius: 50px;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(224,123,57,.4);
}
.header-tel:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(224,123,57,.4); }
.header-tel-small { font-size: .65rem; font-weight: 400; opacity: .85; display: block; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }

/* モバイルメニュー */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999; overflow-y: auto;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px; font-size: 1rem; font-weight: 600;
  color: var(--gray-800); border-bottom: 1px solid var(--gray-100);
  transition: var(--transition); display: flex; align-items: center; gap: 12px;
}
.mobile-nav a:hover { background: var(--green-pale); color: var(--green); }
.mobile-nav-tel {
  margin: 16px !important; background: linear-gradient(135deg,#e07b39,#f4a261) !important;
  color: #fff !important; border-radius: var(--radius) !important;
  text-align: center; padding: 18px !important;
  font-size: 1.1rem !important; border-bottom: none !important;
  justify-content: center; box-shadow: 0 4px 16px rgba(224,123,57,.3);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 95vh; height: 95vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 1s ease;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,30,138,.78) 0%,
    rgba(26,53,212,.58) 45%,
    rgba(212,160,23,.22) 100%
  );
}
/* 装飾的な丸 */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,96,240,.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 800px; padding: 0 40px;
  margin: 0 auto;
  text-align: center !important;
  display: flex; flex-direction: column; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 20px;
  align-self: center;
}
.hero-title-sub {
  color: rgba(255,255,255,.7);
  font-size: .95rem; font-weight: 500;
  letter-spacing: .1em; margin-bottom: 10px;
}
.hero-title {
  font-family: var(--font-mincho);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff; line-height: 1.2;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero-copy {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem; line-height: 1.9;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  text-align: center; width: 100%;
}
.hero-copy strong { color: #fff; font-weight: 800; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; align-items: center; justify-content: center; }
.hero-tel-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  padding: 14px 24px;
  transition: var(--transition); color: #fff;
}
.hero-tel-card:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.hero-tel-label { font-size: .72rem; opacity: .75; letter-spacing: .08em; margin-bottom: 3px; }
.hero-tel-num   { font-size: 1.5rem; font-weight: 800; letter-spacing: .03em; }
.hero-tel-hours { font-size: .72rem; opacity: .7; margin-top: 2px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.hero-badge {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 50px;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .65rem; letter-spacing: .15em;
  z-index: 2;
}
.hero-scroll span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  position: relative; z-index: 10;
  box-shadow: 0 8px 40px rgba(14,66,41,.3);
}
.features-strip-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(255,255,255,.08); }
.strip-icon { font-size: 1.8rem; margin-bottom: 6px; }
.strip-label { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.95); margin-bottom: 2px; }
.strip-val   { font-size: .7rem; color: rgba(255,255,255,.6); }

/* ===== PAGE HERO (下層ページ) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, rgba(212,80,122,.6) 100%);
  padding: 72px 24px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath fill='rgba(255,255,255,.04)' d='M0 0 Q25 20 50 0 Q75 -20 100 0 V20 H0Z'/%3E%3C/svg%3E") repeat-x bottom / 100px;
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-mincho);
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  color: #fff; margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1rem; position: relative;
  margin-bottom: 16px;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 50px; padding: 5px 16px;
  font-size: .75rem; color: rgba(255,255,255,.7);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* ===== APPEAL CARDS (選ばれる理由) ===== */
.appeal-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.appeal-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.appeal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.appeal-card.rose-card { border-color: var(--rose-pale2); }

.appeal-card-img {
  height: 220px; overflow: hidden;
}
.appeal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.appeal-card:hover .appeal-card-img img { transform: scale(1.04); }

.appeal-card-body { padding: 28px; }
.appeal-num {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  color: var(--green); margin-bottom: 8px;
}
.rose-card .appeal-num { color: var(--rose); }
.appeal-card-body h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--gray-900);
  line-height: 1.5; margin-bottom: 10px;
}
.appeal-card-body p { font-size: .88rem; color: var(--gray-600); line-height: 1.85; margin-bottom: 14px; }
.appeal-card-tag {
  display: inline-block;
  background: var(--green-pale); color: var(--green);
  font-size: .76rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
}

/* ===== 初心者向けセクション ===== */
.beginner-section {
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--ivory) 50%, var(--green-pale) 100%);
  position: relative; overflow: hidden;
}
.beginner-section::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,80,122,.08) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.beginner-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.beginner-text { position: relative; z-index: 1; }

/* FAQカード (初心者向け) */
.beginner-qa { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.qa-item {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.qa-q {
  background: var(--green-pale);
  color: var(--green-dark); font-weight: 700; font-size: .9rem;
  padding: 12px 18px;
  display: flex; align-items: flex-start; gap: 10px;
}
.qa-q::before { content: 'Q'; flex-shrink: 0; font-weight: 900; font-size: 1rem; color: var(--green); }
.qa-a {
  padding: 12px 18px; font-size: .88rem; color: var(--gray-700);
  line-height: 1.75; display: flex; align-items: flex-start; gap: 10px;
}
.qa-a::before { content: 'A'; flex-shrink: 0; font-weight: 900; font-size: 1rem; color: var(--rose); }

.beginner-image { position: relative; }
.beginner-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%; height: 460px;
}
.beginner-image::before {
  content: '';
  position: absolute; inset: -8px; border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(135deg, var(--green-pale2), var(--rose-pale2));
  z-index: -1;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.pricing-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 40px rgba(224,123,57,.2);
}

.pricing-card-head {
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff; text-align: center;
}
.pricing-card.featured .pricing-card-head {
  background: linear-gradient(135deg, #c9682a, #e07b39);
}

.pricing-badge-top {
  display: inline-block;
  padding: 4px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  margin-bottom: 12px;
}
.badge-normal  { background: rgba(255,255,255,.18); color: #fff; }
.badge-student { background: rgba(59,130,214,.35); color: #fff; }
.badge-hot     { background: rgba(255,255,255,.18); color: #fff; }
.badge-drink   { background: rgba(212,80,122,.35); color: #fff; }

.pricing-plan { font-size: .8rem; opacity: .75; margin-bottom: 8px; }
.pricing-amount {
  font-size: 2.2rem; font-weight: 900;
  letter-spacing: -.02em;
}
.pricing-amount small { font-size: .55em; opacity: .8; font-weight: 600; margin-left: 3px; }

.pricing-card-body { padding: 20px 24px; }
.pricing-card-body ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: .88rem; color: var(--gray-700);
  display: flex; align-items: center; gap: 8px;
}
.pricing-card-body ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card-body ul li:last-child { border-bottom: none; }

.pricing-note-box {
  background: var(--ivory);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  font-size: .84rem; color: var(--gray-600);
  line-height: 1.9; text-align: center;
}

/* ===== EVENTS ===== */
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.event-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-head {
  padding: 28px 24px; color: #fff;
  display: flex; flex-direction: column; gap: 6px;
}
.ev-color-health { background: linear-gradient(135deg, #059669, #10b981); }
.ev-color-women  { background: linear-gradient(135deg, var(--rose), var(--rose-mid)); }
.ev-color-mu     { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.ev-color-rista  { background: linear-gradient(135deg, #d97706, #f59e0b); }

.event-card-icon { font-size: 2.2rem; }
.event-card-freq { font-size: .7rem; font-weight: 700; opacity: .75; letter-spacing: .1em; }
.event-card-name { font-size: 1.1rem; font-weight: 800; line-height: 1.4; }

.event-card-body { padding: 20px 24px; }
.ev-detail-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem; color: var(--gray-700);
}
.ev-detail-row:last-child { border-bottom: none; }
.ev-icon { font-size: 1rem; flex-shrink: 0; }

.ev-price-box {
  margin-top: 14px; padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 700; text-align: center;
}
.ev-price-health { background: #d1fae5; color: #065f46; }
.ev-price-mu     { background: var(--blue-pale); color: var(--blue); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testi-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 28px; position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-size: 5rem; color: var(--green-pale);
  font-family: serif; line-height: 1;
}
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.testi-body  { font-size: .9rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .88rem; color: var(--gray-900); }
.testi-tag  { font-size: .75rem; color: var(--gray-400); margin-top: 2px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius);
  cursor: pointer; position: relative;
  background: var(--gray-100);
}
.gallery-item.main {
  grid-column: 1 / 4; grid-row: 1 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(14,66,41,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  opacity: 0; transition: var(--transition);
  backdrop-filter: blur(2px);
}
.gallery-item:hover .g-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-xl); }
.lb-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2.5rem; color: rgba(255,255,255,.8); cursor: pointer;
  line-height: 1; transition: var(--transition);
}
.lb-close:hover { color: #fff; transform: scale(1.2); }

/* ===== SNS SECTION ===== */
.sns-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0a2a18 100%);
  position: relative; overflow: hidden;
}
.sns-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,196,109,.08) 0%, transparent 60%);
  border-radius: 50%;
}
.sns-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sns-text .section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-color: transparent; }
.sns-text .section-title { color: #fff; }
.sns-text .section-title em { color: var(--green-light); }
.sns-text .section-sub { color: rgba(255,255,255,.6); max-width: none; }
.sns-links { margin-top: 28px; }
.sns-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: .9rem; transition: var(--transition);
}
.sns-btn-x {
  background: #000; color: #fff;
  border: 1px solid #333;
}
.sns-btn-x:hover { background: #111; transform: translateY(-2px); }

.sns-timeline {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 40px 32px; text-align: center;
  backdrop-filter: blur(8px);
}
.sns-timeline p { color: rgba(255,255,255,.6); margin: 0 0 20px; font-size: .9rem; }
.sns-timeline > p:last-child { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 16px; margin-bottom: 0; }

/* ===== ACCESS ===== */
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.access-info { display: flex; flex-direction: column; gap: 16px; }
.access-row { display: flex; gap: 16px; align-items: flex-start; }
.access-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.access-label { font-size: .75rem; font-weight: 700; color: var(--gray-400); letter-spacing: .08em; margin-bottom: 3px; }
.access-val   { font-size: .95rem; color: var(--gray-800); font-weight: 500; line-height: 1.7; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrap iframe { width: 100%; height: 440px; border: none; display: block; }

/* ===== NEWS ===== */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--gray-200);
  border-left: 4px solid var(--green-light);
  padding-left: 16px; margin-left: -20px;
  transition: var(--transition);
  flex-wrap: wrap;
}
.news-item:hover { background: var(--green-pale); border-radius: 0 var(--radius) var(--radius) 0; }
.news-date { font-size: .78rem; color: var(--gray-400); white-space: nowrap; font-weight: 600; padding-top: 3px; }
.news-tag {
  display: inline-block; flex-shrink: 0;
  background: var(--gray-100); color: var(--gray-600);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 50px; white-space: nowrap;
  width: 80px;
  text-align: center;
}
.news-title { font-weight: 700; font-size: .95rem; color: var(--gray-900); margin-bottom: 4px; }
.news-body  { font-size: .85rem; color: var(--gray-600); line-height: 1.75; }
.news-body p { margin-bottom: 1em;}

/* ===== CALENDAR ===== */
.calendar-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.cal-head {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 20px 24px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.cal-head h3 { font-size: 1rem; font-weight: 700; }
.cal-legend { display: flex; gap: 14px; flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: rgba(255,255,255,.8); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day-h {
  background: var(--gray-50);
  padding: 10px 4px; text-align: center;
  font-size: .75rem; font-weight: 700; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.cal-day-h.sun { color: #ef4444; }
.cal-day-h.sat { color: var(--blue); }
.cal-cell {
  min-height: 80px; padding: 6px;
  border: 1px solid var(--gray-100);
  vertical-align: top; font-size: .8rem;
}
.cal-cell.empty { background: var(--gray-50); }
.cal-cell.is-closed { background: #fef2f2; }
.cal-cell.is-today  { background: var(--green-pale); }
.cal-date { font-weight: 600; color: var(--gray-800); margin-bottom: 3px; }
.cal-cell.is-sun .cal-date { color: #ef4444; }
.cal-cell.is-sat .cal-date { color: var(--blue); }
.cal-cell.is-today .cal-date { color: var(--green-dark); font-weight: 900; }
.cal-ev {
  display: block; font-size: .6rem; font-weight: 600;
  padding: 2px 5px; border-radius: 3px; margin-bottom: 2px;
  line-height: 1.4;
}
.cal-ev-h { background: #d1fae5; color: #065f46; }
.cal-ev-w { background: var(--rose-pale); color: #9d174d; }
.cal-ev-m { background: var(--blue-pale); color: #1e40af; }
.cal-ev-c { background: #fee2e2; color: #991b1b; }

/* ===== CTA BAR ===== */
.cta-bar {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 72px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='40'/%3E%3C/svg%3E") center / 600px no-repeat;
  pointer-events: none;
}
.cta-bar h2 { font-size: clamp(1.5rem,4vw,2rem); font-weight: 900; color: #fff; margin-bottom: 12px; position: relative; }
.cta-bar p  { color: rgba(255,255,255,.7); margin-bottom: 32px; position: relative; }
.cta-bar-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; }

.cta-tel-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--green-dark);
  padding: 16px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: var(--transition);
}
.cta-tel-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(0,0,0,.25); }
.cta-tel-btn small { display: block; font-size: .65rem; font-weight: 400; color: var(--gray-400); }

/* ===== FOOTER ===== */
.site-footer { background: var(--gray-900); }
.footer-main { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.footer-sns { display: flex; gap: 10px; margin-top: 16px; }
.footer-sns a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-sns a:hover { background: var(--green); color: #fff; }

.footer-nav h4 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .15em; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul a { font-size: .85rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-nav ul a:hover { color: var(--green-light); }

.footer-info h4 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .15em; margin-bottom: 16px; }
.footer-tel-big {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.4rem; font-weight: 800; color: #fff;
  margin-bottom: 14px;
}
.footer-info p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.85; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px; text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.3);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff; font-size: 1.2rem; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(26,107,66,.4);
  opacity: 0; transform: translateY(12px);
  transition: var(--transition); pointer-events: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(26,107,66,.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .appeal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-nav, .header-beginner { display: none; }
  .hamburger { display: flex; }
  .header-tel { display: none; padding: 8px 14px; font-size: .82rem; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }

  .hero-content { padding: 0 24px; text-align: center !important; align-items: center; }
  .hero-title { font-size: 2.2rem; text-align: center; }

  .beginner-inner { grid-template-columns: 1fr; gap: 40px; }
  .beginner-image { display: none; }

  .sns-inner { grid-template-columns: 1fr; gap: 40px; }
  .access-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.main { grid-column: 1 / 3; grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .appeal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 100svh; padding: 80px 0 60px; }
  .hero-content { padding: 0 20px; text-align: center !important; align-items: center; }
  .cta-tel-btn { font-size: 1.05rem; }
  .btn-lg { padding: 16px 32px; font-size: .95rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.main { grid-column: auto; }
}

/* キャッチフレーズ */
.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  transform: skewX(-10deg);
  display: inline-block;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ロゴ画像 */
.site-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
