*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #F0F7FF;
  color: #0D1B2A;
  overflow-x: hidden;
}
:root {
  --blue: #1A73E8;
  --blue-light: #4094F7;
  --blue-pale: #E8F1FD;
  --sky: #38BDF8;
  --sky-pale: #F0F9FF;
  --teal: #0EA5C9;
  --mint: #06D6A0;
  --mint-pale: #E8FDF7;
  --sea-deep: #0B4F9E;
  --mountain: #2D7A4F;
  --bg: #F0F7FF;
  --bg2: #E8F3FF;
  --text: #0D1B2A;
  --text-muted: #3A5570;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(26,115,232,0.13);
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── Fade in ── */
.fade-in { animation: fadeUp 0.7s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────── */
/*  Header                                          */
/* ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(240,247,255,0.97);
  box-shadow: 0 2px 24px rgba(26,115,232,0.12);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 32px);
  height: 84px; display: flex; align-items: center; justify-content: space-between;
  gap: clamp(12px, 1.6vw, 24px);
}
.brand {
  text-decoration: none;
  display: flex; align-items: center;
  gap: clamp(8px, 0.9vw, 12px);
  flex-shrink: 0;
}
.brand-logo {
  width: clamp(40px, 3.6vw, 52px);
  height: clamp(40px, 3.6vw, 52px);
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 3px 12px rgba(26,115,232,0.35);
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 900; color: var(--blue); line-height: 1.1;
  white-space: nowrap;
}
.brand-sub {
  font-size: clamp(10px, 0.95vw, 13px);
  color: var(--text-muted); font-weight: 500;
  letter-spacing: 0.05em; margin-top: 2px;
  white-space: nowrap;
}

.desktop-nav { display: flex; gap: clamp(2px, 0.4vw, 6px); align-items: center; }
.nav-link {
  text-decoration: none; color: var(--text);
  font-size: clamp(13px, 1.15vw, 16px); font-weight: 500;
  padding: 10px clamp(10px, 1.2vw, 18px);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--blue-pale); color: var(--blue); }
.nav-link--ig {
  display: inline-flex; align-items: center; gap: 6px;
  color: #cc2366;
}
.nav-link--ig:hover { background: rgba(204,35,102,0.08); color: #cc2366; }
.mobile-link--ig {
  display: flex; align-items: center; gap: 8px;
  color: #cc2366;
}
.mobile-link--ig:hover { color: #cc2366; }
.header-cta {
  background: linear-gradient(135deg, #1A73E8, #0EA5E9); color: white; text-decoration: none;
  padding: 13px clamp(16px, 1.8vw, 28px); border-radius: 100px;
  font-size: clamp(13px, 1.15vw, 16px); font-weight: 700;
  box-shadow: 0 4px 18px rgba(26,115,232,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-left: clamp(4px, 0.7vw, 10px);
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,115,232,0.45); }

.hamburger-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
}
.hamburger-btn .icon-close { display: none; }
.site-header.menu-open .hamburger-btn .icon-open { display: none; }
.site-header.menu-open .hamburger-btn .icon-close { display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0; right: 0; bottom: 0;
  background: #F0F7FF;
  border-top: 1px solid #C8DEFA;
  padding: 24px;
  overflow-y: auto;
  z-index: 99;
}
.mobile-menu.open { display: block; }
body:has(.mobile-menu.open) { overflow: hidden; }
.mobile-link {
  display: block; text-decoration: none; color: var(--text);
  font-size: 16px; font-weight: 700; padding: 14px 0;
  border-bottom: 1px solid #E8F3FF; transition: color 0.2s;
}
.mobile-link:hover { color: var(--blue); }
.mobile-cta {
  display: block; text-align: center; margin-top: 16px;
  background: linear-gradient(135deg, #1A73E8, #0EA5E9); color: white;
  text-decoration: none; padding: 14px; border-radius: 100px;
  font-size: 16px; font-weight: 700; box-shadow: 0 4px 18px rgba(26,115,232,0.35);
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: block; }
}

/* ─────────────────────────────────────────────── */
/*  Hero                                            */
/* ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: #dbeeff;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-photo-bg {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  background-image: url(uploads/hero.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 12%,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,1) 100%);
          mask-image: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 12%,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,1) 100%);
}
.hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(219,238,255,0.75) 0%,
    rgba(219,238,255,0.5) 25%,
    rgba(255,255,255,0.35) 60%,
    rgba(255,255,255,0.32) 100%);
}
/* ─── Hero: SP layout (≤900px) ─── */
@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .hero-photo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    background: linear-gradient(180deg,
      rgba(219,238,255,0.85) 0%,
      rgba(219,238,255,0.55) 35%,
      rgba(255,255,255,0.4) 70%,
      rgba(219,238,255,0.5) 100%);
  }
}
.btn-primary {
  background: linear-gradient(135deg, #1A73E8, #0EA5E9); color: white;
  text-decoration: none; padding: 20px 44px; border-radius: 100px;
  font-size: 18px; font-weight: 700;
  box-shadow: 0 6px 28px rgba(26,115,232,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(26,115,232,0.5); }
.btn-outline {
  background: white; color: var(--blue);
  text-decoration: none; padding: 20px 40px; border-radius: 100px;
  font-size: 18px; font-weight: 700; border: 2px solid var(--blue);
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--blue-pale); }

/* ─────────────────────────────────────────────── */
/*  Feature cards                                   */
/* ─────────────────────────────────────────────── */
.feature-card {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: 0 4px 32px rgba(26,115,232,0.08);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,115,232,0.14);
}
.feature-card.is-blue:hover { border-color: var(--blue); }
.feature-card.is-mint:hover { border-color: var(--mint); }
.feature-card.is-teal:hover { border-color: #0EA5C9; }

/* Schedule cards */
.schedule-card {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.2s;
}
.schedule-card:hover { transform: translateY(-4px); }

/* Access cards */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
@media (max-width: 768px) { .access-grid { grid-template-columns: 1fr; } }
.access-card {
  background: white; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(26,115,232,0.08);
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 4px solid var(--blue-pale);
  transition: border-left-color 0.2s;
}
.access-card:hover { border-left-color: var(--blue); }

/* Kobekatsu */
.kobekatsu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .kobekatsu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kobekatsu-grid { grid-template-columns: 1fr; } }
.kobekatsu-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  color: var(--blue); font-weight: 700; font-size: 14px; text-decoration: none;
  border-bottom: 2px solid var(--blue-pale); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.kobekatsu-link:hover { border-color: var(--blue); }
.kobekatsu-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1A73E8, #0EA5E9); color: white;
  padding: 16px 40px; border-radius: 100px; font-size: 16px; font-weight: 700;
  box-shadow: 0 6px 28px rgba(26,115,232,0.35);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.kobekatsu-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(26,115,232,0.5); }

/* Instagram */
.instagram-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white; text-decoration: none;
  padding: 16px 40px; border-radius: 100px; font-size: 17px; font-weight: 700;
  box-shadow: 0 6px 28px rgba(220,39,67,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.instagram-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(220,39,67,0.5); }

/* ─────────────────────────────────────────────── */
/*  Contact form (Google Forms embed)               */
/* ─────────────────────────────────────────────── */
.contact-iframe-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}
.contact-iframe {
  width: 100%;
  height: 1100px;
  border: 0;
  display: block;
}
@media (max-width: 560px) {
  .contact-iframe-wrap { padding: 8px; }
  .contact-iframe { height: 1300px; }
}

/* Footer */
.footer-link {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-link:hover { color: #38BDF8; }

/* ─────────────────────────────────────────────── */
/*  Back to top                                     */
/* ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 28px; z-index: 1000;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); border: 2px solid transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,115,232,0.35);
  color: white;
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease,
              background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, color 0.35s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover {
  background: white; border-color: var(--blue);
  box-shadow: 0 6px 28px rgba(26,115,232,0.25);
  color: var(--blue);
}
.back-to-top svg path { stroke: currentColor; }

/* ─────────────────────────────────────────────── */
/*  Layout primitives (section / container / head)  */
/* ─────────────────────────────────────────────── */
.section {
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.section--about { background: var(--bg); }
.section--schedule { background: linear-gradient(180deg, #E8F3FF 0%, var(--bg) 100%); }
.section--access { background: var(--bg); }
.section--kobekatsu { background: linear-gradient(180deg, #f0f7ff 0%, #e6f0ff 100%); }
.container { max-width: 1080px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head--kobekatsu { margin-bottom: 56px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--blue); text-transform: uppercase;
}
.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  margin-top: 8px; color: var(--text);
}
.section-lead {
  color: var(--text-muted); margin-top: 16px;
  font-size: 16px; line-height: 1.9;
}
.accent-blue { color: var(--blue); }

/* ─────────────────────────────────────────────── */
/*  Hero content                                    */
/* ─────────────────────────────────────────────── */
.hero-inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: 140px 56px 100px;
  position: relative; z-index: 2;
}
.hero-content { max-width: 500px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid #1A73E8;
  border-radius: 100px; padding: 8px 18px;
  margin-bottom: 24px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 3.55vw, 60px); font-weight: 900;
  line-height: 1.25; margin-bottom: 24px; color: var(--text);
}
.hero-title__line {
  display: inline-block;
  white-space: nowrap;
}
.hero-lead {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.9; color: var(--text);
  margin-bottom: 36px; max-width: 440px; font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  padding: 16px 32px;
  font-size: 15px;
}
.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.hero-stat-num {
  font-size: 22px; font-weight: 900; color: var(--blue);
  font-family: 'Zen Maru Gothic', sans-serif;
  text-shadow:
    0 0 6px rgba(255,255,255,0.95),
    0 0 12px rgba(255,255,255,0.85),
    0 1px 2px rgba(255,255,255,0.9);
}
.hero-stat-label {
  font-size: 12px; color: var(--text-muted);
  font-weight: 700; margin-top: 4px;
  text-shadow:
    0 0 4px rgba(255,255,255,0.95),
    0 0 8px rgba(255,255,255,0.85),
    0 1px 2px rgba(255,255,255,0.9);
}
/* ─── Hero content: SP layout (≤900px) ─── */
@media (max-width: 900px) {
  .hero-inner {
    padding: 120px 24px 80px;
    z-index: 2;
  }
  .hero-content { max-width: 100%; }
  .hero-badge {
    font-size: 12px;
    padding: 7px 16px;
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(30px, 6.4vw, 48px);
    line-height: 1.3;
    margin-bottom: 18px;
  }
  .hero-lead {
    font-size: clamp(14px, 3.4vw, 16px);
    line-height: 1.85;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    padding: 13px 22px;
    font-size: 14px;
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
  .hero-stats {
    gap: 24px;
    margin-top: 28px;
  }
  .hero-stat-num { font-size: 18px; }
  .hero-stat-label { font-size: 11px; }
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0; z-index: 3;
}

/* ─────────────────────────────────────────────── */
/*  About                                           */
/* ─────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 20px;
}
.feature-icon--blue { background: var(--blue-pale); }
.feature-icon--mint { background: var(--mint-pale); }
.feature-icon--teal { background: #E0F5FF; }
.feature-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--text); margin-bottom: 12px;
}
.feature-text {
  font-size: 15px; line-height: 1.85; color: var(--text-muted);
}
.about-cta {
  margin-top: 64px; border-radius: var(--radius);
  background: linear-gradient(120deg, #E8F3FF 0%, #D0EAFF 100%);
  padding: 48px 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  border: 1.5px solid #C0DEFF;
}
.about-cta__photo {
  flex: 0 0 auto; width: 280px; height: 190px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,115,232,0.18);
}
.about-cta__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-cta__body { flex: 1 1 260px; }
.about-cta__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 26px; font-weight: 900;
  color: var(--text); margin-bottom: 12px;
}
.about-cta__text {
  font-size: 15px; line-height: 1.9; color: var(--text-muted);
}

/* ─────────────────────────────────────────────── */
/*  Schedule                                        */
/* ─────────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.schedule-badge {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #1A73E8, #0EA5E9);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: white;
  font-family: 'Zen Maru Gothic', sans-serif;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(26,115,232,0.3);
}
.schedule-day {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.schedule-time {
  font-size: 22px; font-weight: 900; color: var(--blue);
  margin-bottom: 6px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.schedule-class {
  font-size: 13px; color: var(--blue);
  background: var(--blue-pale);
  display: inline-block; padding: 3px 12px;
  border-radius: 100px; font-weight: 700;
}
.schedule-extra {
  font-size: 13px; color: var(--text-muted); margin-top: 8px;
}
.schedule-info {
  background: white; border-radius: var(--radius);
  padding: 28px 32px; box-shadow: var(--shadow);
  border-left: 6px solid #38BDF8;
  display: flex; align-items: flex-start; gap: 16px;
}
.schedule-info__icon { font-size: 28px; }
.schedule-info__title {
  font-weight: 700; font-size: 16px;
  margin-bottom: 6px; color: var(--text);
}
.schedule-info__text {
  font-size: 15px; color: var(--text-muted); line-height: 1.9;
}
.schedule-info__text strong { color: var(--text); }

/* ─────────────────────────────────────────────── */
/*  Access                                          */
/* ─────────────────────────────────────────────── */
.access-map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.access-map iframe { border: 0; display: block; }
.access-list { display: flex; flex-direction: column; gap: 18px; }
.access-card__icon { font-size: 24px; flex-shrink: 0; }
.access-card__label {
  font-size: 12px; font-weight: 700; color: var(--blue);
  margin-bottom: 4px; letter-spacing: 0.06em;
}
.access-card__text {
  font-size: 15px; color: var(--text);
  line-height: 1.75; white-space: pre-line;
}

/* ─────────────────────────────────────────────── */
/*  Kobekatsu                                       */
/* ─────────────────────────────────────────────── */
.kobekatsu-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 2px solid #1A73E8;
  border-radius: 100px; padding: 8px 20px; margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(26,115,232,0.15);
}
.kobekatsu-tag__icon { font-size: 18px; }
.kobekatsu-tag__text {
  font-size: 13px; font-weight: 900; color: var(--blue);
  letter-spacing: 0.05em;
}
.kobekatsu-about {
  background: white; border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: 0 4px 32px rgba(26,115,232,0.08);
  margin-bottom: 32px;
  border-top: 5px solid var(--blue);
}
.kobekatsu-about__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 900;
  color: var(--blue); margin-bottom: 14px;
}
.kobekatsu-about__text {
  font-size: 15px; line-height: 1.95; color: var(--text-muted);
}
.kobekatsu-about__text strong { color: var(--text); }

.kobekatsu-info-card {
  background: white; border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(26,115,232,0.08);
}
.kobekatsu-info-card__head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.kobekatsu-info-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.kobekatsu-info-card__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px; font-weight: 900; color: var(--text);
}
.kobekatsu-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #E8F3FF;
}
.kobekatsu-info-row__day {
  font-size: 15px; font-weight: 700; color: var(--text);
}
.kobekatsu-info-row__time {
  font-size: 15px; font-weight: 900; color: var(--blue);
  font-family: 'Zen Maru Gothic', sans-serif;
}
.kobekatsu-info-text {
  font-size: 15px; line-height: 1.9; color: var(--text-muted);
}
.kobekatsu-info-text strong { color: var(--text); }
.kobekatsu-fee-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid #E8F3FF;
}
.kobekatsu-fee-row--last { border-bottom: none; }
.kobekatsu-fee-row strong { color: var(--blue); }
.kobekatsu-contact-name { margin-bottom: 6px; }
.kobekatsu-contact-name strong { color: var(--text); }
.kobekatsu-contact-tel {
  display: block; color: var(--blue); font-weight: 700;
  text-decoration: none; margin-bottom: 4px;
}
.kobekatsu-contact-mail {
  color: var(--blue); font-weight: 700;
  text-decoration: none; font-size: 13px;
}
.kobekatsu-cta-wrap { text-align: center; margin-top: 48px; }

/* ─────────────────────────────────────────────── */
/*  Instagram                                       */
/* ─────────────────────────────────────────────── */
.ig-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f8f0ff 0%, #fff0f8 100%);
  position: relative; overflow: hidden;
}
.ig-deco { position: absolute; border-radius: 50%; }
.ig-deco--1 {
  top: 20px; right: 20px; width: 200px; height: 200px;
  background: rgba(193,53,132,0.07);
}
.ig-deco--2 {
  bottom: 20px; left: 20px; width: 160px; height: 160px;
  background: rgba(88,81,219,0.06);
}
.ig-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center; position: relative;
}
.ig-icon {
  width: 72px; height: 72px; border-radius: 20px;
  margin: 0 auto 24px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(220,39,67,0.3);
}
.ig-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: #cc2366; text-transform: uppercase;
}
.ig-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 900;
  margin-top: 8px; margin-bottom: 16px; color: var(--text);
}
.ig-accent { color: #cc2366; }
.ig-lead {
  font-size: 16px; line-height: 1.9;
  color: var(--text-muted); margin-bottom: 36px;
}
.ig-handle {
  margin-top: 20px; font-size: 14px; color: var(--text-muted);
}

/* ─────────────────────────────────────────────── */
/*  Contact section                                 */
/* ─────────────────────────────────────────────── */
.contact-section {
  padding: 100px 24px;
  background: linear-gradient(160deg, #1A73E8 0%, #0B4F9E 100%);
  position: relative; overflow: hidden;
}
.contact-deco { position: absolute; border-radius: 50%; }
.contact-deco--1 {
  top: -100px; right: -100px; width: 360px; height: 360px;
  background: rgba(255,255,255,0.07);
}
.contact-deco--2 {
  bottom: -80px; left: -80px; width: 280px; height: 280px;
  background: rgba(255,255,255,0.05);
}
.contact-wave {
  position: absolute; top: 0; left: 0; right: 0; line-height: 0;
}
.contact-inner {
  max-width: 640px; margin: 0 auto; position: relative;
}
.contact-head { text-align: center; margin-bottom: 48px; }
.contact-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.contact-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  margin-top: 8px; color: white;
}
.contact-lead {
  color: rgba(255,255,255,0.8); margin-top: 14px;
  font-size: 15px; line-height: 1.9;
}

/* ─────────────────────────────────────────────── */
/*  Footer                                          */
/* ─────────────────────────────────────────────── */
.site-footer {
  background: #071828; color: rgba(255,255,255,0.65);
  padding: 52px 24px 28px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-cols {
  display: flex; gap: 40px; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 40px;
}
.footer-brand-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
}
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px; font-weight: 900; color: white;
}
.footer-name-sub { font-size: 11px; opacity: 0.5; margin-top: 2px; }
.footer-tagline {
  font-size: 14px; line-height: 1.85; max-width: 280px;
}
.footer-ig {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 100px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white; font-size: 13px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(220,39,67,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,39,67,0.45);
}
.footer-section-title {
  font-weight: 700; color: white;
  margin-bottom: 14px; font-size: 13px; letter-spacing: 0.08em;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-place {
  font-size: 14px; line-height: 1.95;
}
.footer-place__day { color: white; font-weight: 700; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; text-align: center; font-size: 12px;
}
