/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest-deep:  #1e3e1e;
  --forest-dark:  #2a5228;
  --forest-mid:   #357030;
  --forest-green: #48903e;
  --forest-light: #5ab050;
  --moss:         #6ec448;
  --sage:         #a8d878;
  --mist:         #cce8b0;
  --cream:        #f0f8e8;
  --white:        #ffffff;
  --gold:         #d4a843;
  --amber:        #e8c96a;
  --bark:         #6b4c2a;
  --bark-light:   #8b6340;
  --text:         #1e2e1e;
  --muted:        #5a6e4a;

  --radius:  16px;
  --shadow:  0 4px 24px rgba(26,46,26,.13);
  --shadow-lg: 0 8px 40px rgba(26,46,26,.22);
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,46,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90,158,79,.2);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  font-size: 28px;
  line-height: 1;
  animation: float 4s ease-in-out infinite;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .7rem;
  color: var(--sage);
  letter-spacing: .06em;
}

.nav-pc {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-pc a {
  color: var(--sage);
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all .2s;
}
.nav-pc a:hover { color: var(--white); background: rgba(90,158,79,.25); }
.nav-cta {
  background: var(--moss) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--forest-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.nav-sp {
  display: none;
  flex-direction: column;
  background: var(--forest-dark);
  padding: 16px 24px;
}
.nav-sp a {
  color: var(--sage);
  padding: 12px 0;
  border-bottom: 1px solid rgba(90,158,79,.15);
  font-size: .95rem;
}
.nav-sp a:last-child { border-bottom: none; }
.nav-sp.open { display: flex; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* 左半分：写真 */
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(42,82,40,.5) 100%);
  pointer-events: none;
}

/* 右半分：テキスト＋森 */
.hero-right {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(65,130,55,.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36,72,36,.8) 0%, transparent 50%),
    linear-gradient(160deg, #1a3a1a 0%, #2a5228 40%, #346834 65%, #2a5228 100%);
  display: flex;
  align-items: center;
  padding: 100px 48px 60px 40px;
  overflow: hidden;
}

/* Forest background trees */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 3px 60px at 5% 100%, rgba(45,90,39,.6) 0%, transparent 100%),
    radial-gradient(ellipse 4px 80px at 10% 100%, rgba(30,60,26,.8) 0%, transparent 100%),
    radial-gradient(ellipse 3px 50px at 20% 100%, rgba(45,90,39,.5) 0%, transparent 100%),
    radial-gradient(ellipse 5px 90px at 30% 100%, rgba(30,60,26,.7) 0%, transparent 100%),
    radial-gradient(ellipse 3px 70px at 70% 100%, rgba(45,90,39,.6) 0%, transparent 100%),
    radial-gradient(ellipse 4px 85px at 80% 100%, rgba(30,60,26,.8) 0%, transparent 100%),
    radial-gradient(ellipse 3px 55px at 90% 100%, rgba(45,90,39,.5) 0%, transparent 100%),
    radial-gradient(ellipse 5px 95px at 95% 100%, rgba(30,60,26,.7) 0%, transparent 100%);
  pointer-events: none;
}

/* Light rays through forest */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg, transparent 40%, rgba(168,201,127,.04) 50%, transparent 60%),
    linear-gradient(155deg, transparent 30%, rgba(168,201,127,.03) 45%, transparent 55%),
    linear-gradient(175deg, transparent 50%, rgba(212,168,67,.05) 60%, transparent 70%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Floating particles (fireflies / forest dust) */
.star {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px 3px rgba(232,201,106,.5);
  animation: firefly 4s ease-in-out infinite;
}

.moon {
  position: absolute;
  top: 10%;
  right: 8%;
  font-size: 80px;
  opacity: .12;
  animation: float 8s ease-in-out infinite;
  filter: sepia(1) hue-rotate(50deg);
}

/* Forest leaves overlay */
.leaf {
  position: absolute;
  font-size: 1.4rem;
  opacity: .15;
  animation: leafFloat 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: inline-block;
  background: var(--moss);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: .1em;
  margin-bottom: 20px;
  border: 1px solid rgba(122,182,72,.4);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-title .highlight {
  color: var(--amber);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--mist);
  margin-bottom: 28px;
  line-height: 1.9;
}
.hero-time {
  margin-bottom: 32px;
}
.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,90,39,.5);
  border: 1px solid rgba(122,182,72,.3);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: .9rem;
  backdrop-filter: blur(8px);
}
.time-icon { font-size: 1.2rem; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--moss);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(122,182,72,.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--forest-light); box-shadow: 0 8px 28px rgba(122,182,72,.45); }

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(122,182,72,.35);
}
.btn-secondary:hover { background: rgba(122,182,72,.2); }

.btn-white {
  background: var(--white);
  color: var(--forest-mid);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ===== Hero Illustration ===== */
.hero-illustration {
  position: absolute;
  right: 5%;
  bottom: 60px;
  z-index: 1;
  opacity: .5;
}
.illust-house { position: relative; width: 160px; }
.house-roof {
  width: 0; height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 70px solid var(--forest-mid);
  margin: 0 auto; opacity: .6;
}
.house-body {
  background: var(--forest-dark);
  height: 90px; border-radius: 0 0 8px 8px;
  display: flex; align-items: center;
  justify-content: space-between; padding: 12px; opacity: .6;
}
.house-window {
  width: 28px; height: 28px;
  background: var(--amber); border-radius: 4px; opacity: .9;
  animation: windowGlow 2s ease-in-out infinite alternate;
  box-shadow: 0 0 12px rgba(232,201,106,.6);
}
.house-door { width: 22px; height: 40px; background: var(--bark); border-radius: 11px 11px 0 0; }
.house-chimney { width: 20px; height: 30px; background: var(--forest-dark); position: absolute; top: -50px; right: 30px; border-radius: 2px; opacity: .6; }
.illust-kids { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.kid { font-size: 28px; animation: float 3s ease-in-out infinite; }
.kid2 { animation-delay: .5s; }
.kid3 { animation-delay: 1s; }

/* ===== Info Bar ===== */
.info-bar {
  background: var(--forest-mid);
  padding: 20px 24px;
  border-top: 1px solid rgba(122,182,72,.2);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.info-icon { font-size: 1.3rem; }
.info-label { display: block; font-size: .7rem; opacity: .75; letter-spacing: .08em; }
.info-val { display: block; font-size: .9rem; font-weight: 500; }
.info-val a { color: var(--amber); }
.info-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ===== Sections ===== */
.section { padding: 96px 24px; }
.section-alt { background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--forest-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1.5px solid var(--forest-mid);
  border-radius: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.5;
}
.section-desc { color: var(--muted); font-size: .95rem; line-height: 1.9; }

/* Forest section dividers */
.section::before {
  content: '🌿 ✦ 🌿';
  display: block;
  text-align: center;
  font-size: .9rem;
  opacity: .35;
  margin-bottom: 16px;
  letter-spacing: 12px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.about-card {
  background: var(--cream);
  border: 1px solid rgba(90,158,79,.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s;
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-mid), var(--moss), var(--forest-mid));
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-illust { font-size: 3rem; margin-bottom: 20px; }
.about-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 12px; }
.about-card p { font-size: .9rem; color: var(--muted); line-height: 1.8; }

/* ===== Features ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-item {
  background: var(--cream);
  border: 1px solid rgba(90,158,79,.15);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .25s;
  border-left: 4px solid var(--moss);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-num { font-size: .7rem; font-weight: 700; color: var(--sage); letter-spacing: .1em; min-width: 28px; padding-top: 4px; }
.feature-icon-wrap { font-size: 1.8rem; min-width: 36px; }
.feature-body h3 { font-size: 1rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 8px; }
.feature-body p { font-size: .88rem; color: var(--muted); line-height: 1.8; }

/* ===== Flow ===== */
.flow-steps { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.flow-step { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 200px; max-width: 300px; }
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest-mid);
  color: var(--white);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(45,90,39,.35);
}
.step-connector {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--forest-mid), var(--moss));
  position: relative; top: -26px; left: 50%;
}
.step-connector.last { display: none; }
.step-content { text-align: center; padding: 20px 20px 0; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 8px; }
.step-content p { font-size: .87rem; color: var(--muted); line-height: 1.8; }

/* ===== Fee ===== */
.fee-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.fee-card {
  background: var(--cream);
  border: 1px solid rgba(90,158,79,.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s;
}
.fee-card:hover { transform: translateY(-4px); }
.fee-card-main {
  background: linear-gradient(145deg, var(--forest-deep), var(--forest-mid));
  color: var(--white);
  transform: scale(1.03);
}
.fee-card-main:hover { transform: scale(1.03) translateY(-4px); }
.fee-icon { font-size: 2.4rem; margin-bottom: 16px; }
.fee-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--forest-deep); }
.fee-card-main h3 { color: var(--white); }
.fee-desc { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }
.fee-card-main .fee-desc { color: var(--mist); }
.fee-note { font-size: .78rem; color: var(--sage); }
.fee-card-main .fee-note { color: rgba(200,221,176,.6); }
.fee-cta {
  text-align: center; padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fee-cta p { font-size: 1rem; color: var(--muted); margin-bottom: 20px; }

/* ===== CTA Banner ===== */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(45,90,39,.6) 0%, transparent 50%),
    linear-gradient(135deg, var(--forest-deep) 0%, #0e2010 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 2px 40px at 5% 100%, rgba(90,158,79,.4) 0%, transparent 100%),
    radial-gradient(ellipse 3px 60px at 15% 100%, rgba(45,90,39,.5) 0%, transparent 100%),
    radial-gradient(ellipse 2px 35px at 85% 100%, rgba(90,158,79,.4) 0%, transparent 100%),
    radial-gradient(ellipse 3px 50px at 95% 100%, rgba(45,90,39,.5) 0%, transparent 100%);
  pointer-events: none;
}
.cta-stars { position: absolute; top: 20px; left: 0; right: 0; display: flex; justify-content: space-around; }
.cta-star { color: var(--amber); font-size: 1.2rem; opacity: .5; animation: twinkle 2s ease-in-out infinite; }
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
}
.cta-banner p { color: var(--mist); font-size: 1rem; margin-bottom: 40px; line-height: 1.9; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== Access ===== */
.access-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.access-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.access-icon { font-size: 1.4rem; margin-top: 2px; }
.access-label { font-size: .75rem; font-weight: 700; color: var(--forest-mid); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.access-val { font-size: .95rem; color: var(--text); line-height: 1.7; }
.access-val a { color: var(--forest-mid); font-weight: 500; }
.access-val a:hover { text-decoration: underline; }
.access-note { font-size: .8rem; color: var(--muted); }
.map-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 700px; margin: 0 auto; }
.contact-card { display: block; border-radius: var(--radius); padding: 44px 32px; text-align: center; box-shadow: var(--shadow); transition: all .25s; color: var(--white); }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-phone { background: linear-gradient(135deg, var(--forest-mid), var(--forest-deep)); }
.contact-threads { background: linear-gradient(135deg, #3d6b2a, #1e3a14); }
.contact-card-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.contact-number { font-size: 1.2rem; font-weight: 700; color: var(--amber); margin-bottom: 8px; }
.contact-desc { font-size: .85rem; opacity: .8; margin-bottom: 20px; }
.contact-btn { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: var(--white); padding: 10px 28px; border-radius: 20px; font-size: .88rem; font-weight: 600; transition: background .2s; }
.contact-card:hover .contact-btn { background: rgba(255,255,255,.25); }

/* ===== Footer ===== */
body { padding-bottom: 80px; }
.site-footer { background: var(--forest-deep); color: var(--mist); padding: 64px 24px 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(90,158,79,.15);
}
.footer-logo .logo-main { color: var(--white); }
.footer-tagline { font-size: .82rem; color: var(--sage); margin-top: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { font-size: .88rem; }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 20px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.25); }

/* ===== Fee Tables ===== */
.fee-plans-wrap {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.fee-extra-wrap { margin-bottom: 40px; }

.fee-plan-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 14px;
}
.fee-table-wrap { overflow-x: auto; }
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fee-table th {
  background: var(--forest-mid);
  color: var(--white);
  padding: 12px 14px;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
}
.fee-table td {
  padding: 11px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(90,158,79,.12);
  color: var(--text);
}
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:nth-child(even) { background: rgba(90,158,79,.05); }
.fee-table tbody tr:hover { background: rgba(90,158,79,.1); }
.fee-table td:first-child { font-weight: 700; color: var(--forest-mid); }

.fee-table-spot, .fee-table-extra { font-size: .92rem; }

.fee-option-box {
  margin-top: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--moss);
}
.fee-option-title {
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
  font-size: .95rem;
}
.fee-option-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fee-option-list li { font-size: .88rem; color: var(--muted); }
.fee-option-list li strong { color: var(--forest-mid); }
.fee-note-item { font-size: .8rem !important; color: var(--sage) !important; }
.fee-beauty {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--forest-mid);
}

@media (max-width: 760px) {
  .fee-plans-wrap { grid-template-columns: 1fr; }
  .fee-table { font-size: .82rem; }
  .fee-table th, .fee-table td { padding: 9px 10px; }
}

/* ===== Blog Preview (index) ===== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.blog-preview-card {
  background: var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(90,158,79,.15);
  transition: transform .25s, box-shadow .25s;
}
.blog-preview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-preview-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--forest-deep);
}
.blog-preview-thumb svg { width: 100%; height: 100%; display: block; }
.blog-preview-body { padding: 14px 16px 18px; }
.blog-preview-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin: 6px 0 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-preview-excerpt {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-preview-more { text-align: center; }

@media (max-width: 900px) {
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
}

/* ===== Director Section ===== */
.director-section { background: var(--white); }
.director-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.director-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.director-photo-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(45,90,39,.2);
}
.director-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.8);
  transform-origin: 50% 12%;
}
.director-name-plate {
  text-align: center;
  background: var(--cream);
  border: 1px solid rgba(90,158,79,.2);
  border-radius: 12px;
  padding: 12px 28px;
}
.director-title {
  font-size: .75rem;
  color: var(--forest-mid);
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.director-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-deep);
}
.director-career {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.career-tag {
  font-weight: 700;
  color: var(--forest-mid);
  white-space: nowrap;
}
.director-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.director-text p {
  font-size: .97rem;
  color: var(--text);
  line-height: 2;
}
.director-text strong { color: var(--forest-mid); font-weight: 700; }
.director-highlight {
  background: linear-gradient(135deg, var(--cream), #e0f0d0);
  border-left: 4px solid var(--moss);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.director-highlight p { font-size: .97rem; color: var(--forest-deep); line-height: 1.9; }
.director-closing {
  font-family: var(--font-serif);
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--forest-mid) !important;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .director-wrap { grid-template-columns: 1fr; gap: 32px; }
  .director-photo { flex-direction: row; align-items: center; position: static; }
  .director-photo-inner { width: 100px; height: 100px; flex-shrink: 0; }
}

/* ===== Gallery ===== */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-main:hover img { transform: scale(1.03); }

.gallery-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { aspect-ratio: 16/9; }
}

/* ===== Staff ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.staff-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(90,158,79,.15);
}
.staff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.staff-card-soon { opacity: .75; }

.staff-avatar {
  background: linear-gradient(135deg, var(--cream), #d8ecc0);
  padding: 36px 0 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.staff-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 24px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.staff-avatar-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(45,90,39,.2);
  position: relative;
  z-index: 1;
}
.staff-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* 大竹美沙：全身写真なので顔にズーム */
.staff-card:nth-child(1) .staff-avatar-inner img {
  object-position: center 12%;
  transform: scale(1.8);
  transform-origin: 50% 12%;
}

/* 大竹千景：上半身写真なので少しだけズーム */
.staff-card:nth-child(2) .staff-avatar-inner img {
  object-position: center 20%;
  transform: scale(1.3);
  transform-origin: 50% 20%;
}

.staff-avatar-soon { opacity: .7; }

.staff-info {
  padding: 8px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.staff-name-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.staff-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-deep);
}
.staff-role {
  font-size: .75rem;
  font-weight: 700;
  color: var(--forest-mid);
  background: var(--cream);
  border: 1px solid rgba(90,158,79,.3);
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .05em;
}
.staff-role-soon {
  color: var(--muted);
  background: #f0f0f0;
  border-color: #ddd;
}
.staff-message {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.85;
  padding-left: 14px;
  border-left: 3px solid var(--moss);
}
.staff-message-soon {
  border-color: #ccc;
  color: #aaa;
}
.staff-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.staff-tag {
  font-size: .78rem;
  background: var(--cream);
  color: var(--forest-mid);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(90,158,79,.2);
}

/* ===== Sticky Bottom Banner ===== */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: linear-gradient(135deg, var(--forest-deep) 0%, #0e2010 100%);
  border-top: 2px solid rgba(122,182,72,.3);
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.sticky-banner.visible {
  transform: translateY(0);
}
.sticky-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-banner-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.sticky-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}
.sticky-banner-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-banner-sub {
  font-size: .75rem;
  color: var(--sage);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 28px;
  font-size: .9rem;
  font-weight: 700;
  transition: all .22s;
  white-space: nowrap;
}
.sticky-btn-phone {
  background: var(--moss);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(122,182,72,.35);
}
.sticky-btn-phone:hover { background: var(--forest-light); transform: translateY(-2px); }
.sticky-btn-dm {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(122,182,72,.4);
}
.sticky-btn-dm:hover { background: rgba(122,182,72,.2); transform: translateY(-2px); }

@media (max-width: 600px) {
  .sticky-banner-inner { padding: 12px 16px; gap: 12px; }
  .sticky-banner-text { gap: 10px; }
  .sticky-banner-icon { font-size: 1.4rem; }
  .sticky-banner-title { font-size: .82rem; }
  .sticky-banner-sub { display: none; }
  .sticky-btn { padding: 10px 16px; font-size: .82rem; }
  .sticky-btn-label { display: none; }
  .sticky-btn { padding: 11px 14px; gap: 0; font-size: 1.1rem; border-radius: 50%; width: 46px; height: 46px; justify-content: center; }
}

/* ===== Forest Scene ===== */
.forest-scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 700px;
  z-index: 1;
  pointer-events: none;
}
.forest-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Firefly animations */
.ff1 { animation: fireflyMove 4.5s ease-in-out infinite; }
.ff2 { animation: fireflyMove 3.8s ease-in-out infinite 0.6s; }
.ff3 { animation: fireflyMove 5.2s ease-in-out infinite 1.1s; }
.ff4 { animation: fireflyMove 4.0s ease-in-out infinite 1.8s; }
.ff5 { animation: fireflyMove 3.5s ease-in-out infinite 0.3s; }
.ff6 { animation: fireflyMove 6.0s ease-in-out infinite 2.2s; }

/* Forest wave divider */
.forest-divider {
  margin-top: -2px;
  line-height: 0;
  background: var(--forest-deep);
}
.forest-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Section leaf decorations */
.section-leaf-left,
.section-leaf-right {
  position: absolute;
  width: 120px;
  opacity: 0.12;
  pointer-events: none;
}
.section-leaf-left { left: 0; top: 40px; }
.section-leaf-right { right: 0; top: 40px; transform: scaleX(-1); }
.section { position: relative; }

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes firefly {
  0%, 100% { opacity: .2; transform: translate(0, 0) scale(1); }
  25% { opacity: .9; transform: translate(8px, -12px) scale(1.2); }
  50% { opacity: .4; transform: translate(-5px, -20px) scale(.9); }
  75% { opacity: .8; transform: translate(10px, -8px) scale(1.1); }
}
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes windowGlow {
  from { opacity: .6; box-shadow: 0 0 8px rgba(232,201,106,.4); }
  to { opacity: 1; box-shadow: 0 0 18px rgba(232,201,106,.8); }
}
@keyframes fireflyMove {
  0%   { opacity: 0.1; transform: translate(0px, 0px) scale(1); }
  20%  { opacity: 0.9; transform: translate(6px, -10px) scale(1.4); }
  40%  { opacity: 0.3; transform: translate(-4px, -18px) scale(0.8); }
  60%  { opacity: 0.85; transform: translate(10px, -8px) scale(1.3); }
  80%  { opacity: 0.2; transform: translate(3px, -22px) scale(0.9); }
  100% { opacity: 0.1; transform: translate(0px, 0px) scale(1); }
}
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .15; }
  33% { transform: translateY(-15px) rotate(5deg); opacity: .25; }
  66% { transform: translateY(-8px) rotate(-3deg); opacity: .18; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-pc { display: none; }
  .hamburger { display: flex; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
  .hero-illustration { display: none; }
  .forest-scene { width: 100%; opacity: 0.6; }
  /* ヒーロー：スマホでは縦並び */
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 50vw; max-height: 320px; }
  .hero-right { padding: 60px 24px 60px; }
}

@media (max-width: 600px) {
  .hero { padding-top: 80px; }
  .hero-title { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .info-bar-inner { flex-direction: column; gap: 16px; }
  .info-divider { width: 80%; height: 1px; }
  .flow-steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
