@charset "utf-8";
/* CSS Document */

/* ===================================================
   CSS変数 / リセット / ベーススタイル
=================================================== */
:root {
  --green-deep: #2d725a;
  --green-mid: #127b45;
  --green-light: #44bb88;
  --green-pale: #a8ccb8;
  --green-mist: #deeee6;
  --green-fog: #f0f6f2;
  --bg-section: #edeee8;
  --gold: #c8a060;
  --gold-light: #e0bc7a;
  --cream: #f8f6f0;
  --warm-white: #ffffff;
  --text-dark: #2a3d30;
  --text-mid: #006F38;
  --text-light: #4a5a52;
  --shadow: rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

ul, ol { list-style: none; }

html, body { overflow-x: hidden; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 19px;
}

a { text-underline-offset:5px; }


/* ===================================================
   全体に使用するクラス
=================================================== */

/* 初期状態では非表示 */
.br-sp,
.br-tb {
  display: none;
}

/* スマホ（〜767px） */
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
  .br-pc,
  .br-tb {
    display: none;
  }
}

/* タブレット（768px〜1024px） */
@media (min-width: 768px) and (max-width: 1024px) {
  .br-tb {
    display: block;
  }
  .br-pc,
  .br-sp {
    display: none;
  }
}

/* TELリンク無効化（PC/タブレット） */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ---- セクション共通 ---- */
section { padding: 88px 24px; }
.container {max-width: 1280px;margin: 0 auto;}
.section-header { text-align: center; margin-bottom: 60px; }

@media (max-width:1300px) {
.container {max-width:94%;margin: 0 auto;}
}

@media (max-width:1000px) {
.container {max-width:96%;margin: 0 auto;}
}

@media (max-width:767px) {
.container {max-width:100%;margin: 0 auto;}
}


/* セクションラベル */
.section-label {
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* セクションリボンラベル（かがやきの会） */
.section-label-ribbon {
  display:inline-block;
  position: relative;
  background: var(--gold);
  color: white;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 6px 33px 8px 20px;
  margin-bottom: 20px;
  font-weight: 500;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.section-label-ribbon::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold-gray);
  opacity: 0.6;
}
.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 18px;
}

#temple .section-title {
  font-size: clamp(30px, 2.5vw, 33px);
}

.section-desc {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0 auto;
  line-height: 2;
}

/* leaf icon */
.leaf-icon { width: 20px; height: 22px; display: block; }
.leaf-icon-lg { width: 46px; height: 53px; display: block; }

/* divider */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-pale);
}
.divider::before, .divider::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--green-pale);
}

/* ---- スクロールアニメーション ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* hoverのtransformが.fade-in.visibleに負けないよう詳細度を上げる */
a.plan-card.fade-in.visible:hover,
a.plan-card.visible:hover {
  transform: translateY(-8px);
}
a.hall-card.fade-in.visible:hover,
a.hall-card.visible:hover {
  transform: translateY(-8px);
}
a.hero-plan-item:hover {
  transform: translateY(-3px);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ---- 汎用ユーティリティ ---- */
.mb-56 { margin-bottom: 56px; }
.text-left { text-align: left; }
.mt-28 { margin-top: 28px; }

@media (max-width:1024px) {
.section-label-ribbon {
display: block;
text-align:center;
clip-path: polygon(
15px 0,
calc(100% - 15px) 0,100% 50%,
calc(100% - 15px) 100%,15px 100%,0 50%);}
.section-desc {
  line-height:1.8;
}
}

@media (max-width: 767px) {
  section { padding: 60px 20px; } 
}


/* ===================================================
   グローバルナビ（HEADER）
=================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green-fog);
  backdrop-filter: blur(8px);
  /* border-bottom: 1px solid rgba(90,143,95,0.15); */
  transition: box-shadow 0.3s;
  overflow: visible;
  box-shadow: rgba(160,210,155,.14) -4px 9px 25px -6px;
}
header.scrolled { box-shadow: 0 2px 20px rgba(160,210,155,.14); }

/* 上段：SEOバー＋アクションボタン */
.header-top {
  background: white;
  color: var(--green-deep);
  border-bottom: 1px solid var(--green-mist);
  min-height: 52px;
}
.header-top-inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 0 0 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 52px;
  gap: 0;
  width: 100%;
  overflow: hidden;
}
.header-seo {
  font-size: 13px;
  color: #333;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
  font-feature-settings: "palt";
}
.header-top-btns {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border-radius: 0;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-weight: 400;
  transition: opacity 0.2s;
}
.top-btn:hover { opacity: 0.85; }
.top-btn-contact {
  background: var(--green-deep);
  color: white;
  border: 1px solid var(--green-deep);
}
.top-btn-urgent {
  background: #e8635a;
  color: white;
}
.top-btn-tel {
  background: white;
  color: #0d5c3a;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  flex-direction: column;
  gap: 1px;
  padding: 0 20px;
}
/* .top-btn-tel 内のTEL表示 */
.tel-flex { display: flex; align-items: center; gap: 6px; }
.tel-sub { font-size: 12px; font-weight: 400; letter-spacing: 0.04em; opacity: 0.8; }

/* 下段：ロゴ＋ナビ */
.header-inner {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 15px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  overflow: visible;
  background: #ffffff;
}
.logo-link { 
  text-decoration: none; display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.logo-link:hover { opacity:0.7; }
.logo-img {
  display: block;
  height: 45px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width:1300px) and (min-width: 961px) {
.logo-img {
  height:38px;}
}


/* nav */
nav#nav {
  display: flex;
  align-items: stretch;
  height: 68px;
  flex: 1;
  justify-content: flex-end;
  overflow: visible;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 100%;
  font-size: 15.5px;
  font-weight: 500;
  color: #0d5c3a;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s, background 0.2s;
  gap: 4px;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item:hover > a {color: var(--green-deep);/* background: var(--green-fog); */}
.nav-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 3px;
  opacity: 0.7;
  font-size: 0;
}
.nav-item-mega:hover > a .nav-arrow {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}
/* かがやきの会ナビ */
.nav-kagayaki { display: flex; flex-direction: column; gap: 1px; align-items: center; height: 68px; justify-content: center; }
.nav-kagayaki-sub { font-size: 11.5px; font-weight: 400; letter-spacing: 0.12em; color: var(--text-mid); line-height: 0.8; }

/* プルダウン */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: white;
  border: 1px solid var(--green-mist);
  border-top: 2px solid var(--green-mid);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px var(--shadow);
  opacity: 0;
  visibility: hidden;

  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 15px;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-mist);
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--green-fog); color: var(--green-deep); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 68px;
  height: 68px;
  background: var(--green-deep);
  border: none;
  outline: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--green-mid); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1190px) {
  .header-seo { display: none; }
  .feature-name { font-size: 19px; }
}

@media (max-width: 1100px) {
  .header-seo {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}


@media (max-width:1300px) and (min-width:1160px) {
  .nav-item > a {
    font-size: 15px;
    padding: 0 17px;
    letter-spacing: 0.02em;
  }
  .header-inner {
    padding-left: 15px;
    padding-right: 8px;
  }
}
@media (max-width:1160px) and (min-width:1080px) {
  .nav-item > a {
    font-size: 15px;
    padding: 0 12px;
  }
  .header-inner {
    padding-left: 12px;
    padding-right: 8px;
  }
}
@media (max-width:1080px) and (min-width:980px) {
  .nav-item > a {
    font-size: 14.5px;
    padding: 0 10px;
    letter-spacing: 0.01em;
  }
  .header-inner {
    padding-left: 10px;
    padding-right: 8px;
  }
}





@media (max-width:980px) {
  .header-top-btns { width: 100%; justify-content: flex-end; }
  .header-inner { padding-right: 0; }
  nav#nav { display: none; }
  nav#nav.open {
    display: block;
    position: fixed;
    left: 0;
    width: 100vw;
    background: white;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav#nav.open .nav-item { display: block; }
  nav#nav.open .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px 16px 24px;
    border-bottom: 1px solid var(--green-mist);
    font-size: 17px;
    height: auto;
    color: var(--text-dark);
  }
  nav#nav.open .nav-item > a .nav-arrow {
    transition: transform 0.25s;
    transform: rotate(45deg);
  }
  nav#nav.open .nav-item > a.nav-kagayaki {
    align-items: flex-start;
    height: auto;
  }
  nav#nav.open .nav-item.sp-open > a .nav-arrow {
    transform: rotate(-135deg);
    margin-bottom: -3px;
  }
  /* 通常dropdown */
  nav#nav.open .dropdown {
    display: block;
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--green-fog);
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  nav#nav.open .nav-item.sp-open .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
  }
  nav#nav.open .dropdown a {
    display: block;
    padding: 12px 36px;
    font-size: 16px;
    color: var(--text-mid);
    border-bottom: 1px solid var(--green-mist);
  }
  .hamburger { display: flex; }
}

@media (max-width: 767px) {
  .header-top-btns { gap: 4px 0; }
  .top-btn { padding: 5px 10px; font-size: 14px; }
  .top-btn-tel { display: none; }
}


/* ===================================================
   MEGA MENU
=================================================== */
.nav-item-mega { position: static; }
.mega-menu {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
 /* background: var(--green-fog);*/
background:white;
  border-top: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
.nav-item-mega:hover > .mega-menu,
.nav-item-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
}
.mega-menu-inner a {
  flex: 1;
  display: block;
  padding: 24px 20px;
  text-decoration: none;
  background:#2d725a;
  border-right: 1px solid var(--green-mist);
  transition: background 0.2s;
}
.mega-menu-inner a:last-child { border-right: none; }
.mega-menu-inner a:hover { 
  background:rgba(45, 114, 90, 0.1);
}
.mega-menu-title {
  font-size:16.8px;
  letter-spacing: 0.5px;
  font-weight: 500;
  /* color: var(--green-deep); */
  color: white;
  margin-bottom: 6px;
  white-space: nowrap;
}
.mega-menu-desc {
  font-size:12px;
  /*color: var(--text-light);*/
  color:#deeee6;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.mega-menu-inner a:hover .mega-menu-title { 
color: var(--green-deep); }
.mega-menu-inner a:hover .mega-menu-desc { 
color: rgba(45, 114, 90, 0.7); }

.mega-menu-inner--halls {
  align-items: stretch;
}
.mega-menu-hall-item {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-dark);
  border-right: 1px solid var(--green-mist) !important;
  border-radius: 0;
  overflow: hidden;
  transition: background 0.2s;
  padding: 24px 20px !important;
}
.mega-menu-hall-item:last-child { border-right: none !important; }
.mega-menu-hall-item:hover { background: var(--green-fog) !important; }
.mega-menu-hall-photo {
  width: 100%;
  height: 120px;
  overflow: hidden;
  margin: -24px -20px 12px;
  width: calc(100% + 40px);
  position: relative;
}
.mega-menu-hall-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  pointer-events: none;
}
.mega-menu-hall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mega-menu-hall-item:hover .mega-menu-hall-photo img {
  transform: scale(1.04);
}
.mega-menu-hall-text {
  padding: 14px 16px;
}


@media (max-width: 960px) {
  /* メガメニュー：スマホではアコーディオン */
  .mega-menu {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    background: var(--green-fog) !important;
    transition: none !important;
    display: none;
    overflow: hidden;
  }
  nav#nav.open .nav-item-mega .mega-menu { display: none; }
  nav#nav.open .nav-item-mega.sp-open .mega-menu { display: block; }
  .mega-menu-inner {
    flex-direction: column !important;
    padding: 0 !important;
  }
  .mega-menu-inner a {
    flex: none !important;
    padding: 12px 36px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--green-mist) !important;
    background: var(--green-fog) !important;
  }
  .mega-menu-inner a:hover { background: #fff !important; }
  .mega-menu-title {font-size: 16px !important;white-space: normal !important;color: var(--green-deep);}
  .mega-menu-desc {white-space: normal !important;color: var(--green-light);}
  /* スマホ：会館写真を非表示 */
  .mega-menu-hall-photo { display: none !important; }
  .mega-menu-hall-text { padding: 0 !important; }
}


/* ===================================================
   HERO（スライダー）
=================================================== */
.hero {
  padding-top: 112px; /* header-top 52px + header-inner 68px */
  height: 78vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 木漏れ日差し込みのグラデーション背景 */
  background-color: #e8f4ee;
  background-image:
    /* 左上から厚みのある葉叢 */
    radial-gradient(ellipse 60% 45% at -5% 5%,   rgba(168,210,160,0.72) 0%, rgba(168,210,160,0.0) 65%),
    radial-gradient(ellipse 45% 35% at 18% -2%,  rgba(150,200,145,0.60) 0%, rgba(150,200,145,0.0) 60%),
    radial-gradient(ellipse 30% 28% at 38% 3%,   rgba(160,205,150,0.45) 0%, rgba(160,205,150,0.0) 58%),
    /* 右上から厚みのある葉叢 */
    radial-gradient(ellipse 55% 40% at 108% 4%,  rgba(158,208,148,0.68) 0%, rgba(158,208,148,0.0) 62%),
    radial-gradient(ellipse 38% 32% at 88% -1%,  rgba(145,198,138,0.55) 0%, rgba(145,198,138,0.0) 58%),
    radial-gradient(ellipse 28% 25% at 72% 2%,   rgba(155,202,145,0.42) 0%, rgba(155,202,145,0.0) 55%),
    /* 光源 1（中央左） */
    radial-gradient(ellipse 28% 32% at 32% 8%,   rgba(255,255,220,0.55) 0%, rgba(255,255,220,0.0) 55%),
    /* 光源 2（右） */
    radial-gradient(ellipse 22% 26% at 72% 5%,   rgba(255,255,215,0.50) 0%, rgba(255,255,215,0.0) 52%),
    /* 下部の明るい空 */
    radial-gradient(ellipse 100% 80% at 50% 110%, rgba(245,252,248,0.95) 0%, rgba(245,252,248,0.0) 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(232,244,238,1.00) 0%, transparent 100%);
}

/* 葉っぱ装飾（スライダー周囲に散らばる） */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* 光の振り射し（簡略） */
    radial-gradient(ellipse 18% 22% at 32% 10%, rgba(255,255,240,0.40) 0%, rgba(255,255,240,0.0) 50%),
    radial-gradient(ellipse 14% 18% at 72% 7%,  rgba(255,255,240,0.35) 0%, rgba(255,255,240,0.0) 48%);
  pointer-events: none;
  z-index:3;
}

/* 全幅スライドショー */
.hero-slideshow {
  position: absolute;
  top: 152px; bottom: 40px;
  left: 40px; right: 40px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.6s ease;
  animation: kenburns 10s ease-in-out infinite alternate;
}
.hero-slideshow .slide.active { opacity: 1; }
.hero-slideshow .slide:nth-child(2) { animation-delay: -5s; }

@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 75, 40, 0.58) 0%,
    rgba(15, 80, 45, 0.22) 50%,
    rgba(0, 60, 30, 0.00) 80%
  );
  pointer-events: none;
}

/* スライダー枠の外側の装飾（リング） */
.hero-slideshow::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(68,187,136,0.4), rgba(45,114,90,0.25), rgba(168,204,184,0.5));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 0; left: 40px; right: 40px;
  bottom: 0;
  z-index: 2;
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 60px;
  background: none;
}

.hero-text { 
  max-width: 520px;
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
}

.hero-eyebrow {
  font-size: 17px;
  letter-spacing: 0.22em;
  color: white;
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
    backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: white;
}

.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(22px, 2.8vw, 33px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-title strong {
  font-weight: 600;
  color: #ffffff;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 2.1;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- ヒーロー内ボタン ---- */
.btn-primary {
  background: white;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  padding: 15px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: background 0.25s, transform 0.15s;
  display: inline-flex;
  align-items: center;

  gap: 8px;
}
.btn-primary:hover { background: var(--green-fog); color: var(--green-deep); transform: translateY(-1px); }


/* ===================================================
   イベント SECTION
=================================================== */
iframe#iframe-thumbnail {
  height:180px;
  margin-top:-80px;
}
iframe#iframe-news {
  height: 220px;
}

section#event { padding: 0; margin: 0; }
.event-section { position: relative; }

/* ヒーロープランカード */
.hero-plans {
  position: absolute;
  top: 6px; /* ホバー時のtranslateY(-3px)で上端がiframe外に出てクリップされないための余白 */
  /*bottom: -60px;*/
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 8px;
  z-index:5;
}
.hero-plan-item {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(6px);
  border: 3px solid var(--green-pale);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(58,110,64,0.10);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  flex: 1;
  max-width: 460px;
  cursor: pointer;
  opacity: 1;
}
.hero-plan-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.2s ease;
  opacity: 0.9;
}
.hero-plan-item:active {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  opacity: 0.9;
}
.hero-plan-item.featured {
  border-top-color: var(--green-mid);
}
/* 画像付きイベントボックス */
.hero-plan-item--img {
  display: flex;
  padding: 0;
  overflow: hidden;
}
.hero-plan-img {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.hero-plan-item--img:hover .hero-plan-img img { transform: scale(1.05); }
.hero-plan-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
.hero-plan-badge {
  display: inline-block;
  font-size:11.5px;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  border: 1.1px solid var(--green-mid);
  border-radius: 20px;
  padding:2px 10px 3px;
  margin-bottom: 7px;
  line-height: 1.4;
  align-self: flex-start;
  flex-shrink: 0;
  box-sizing: border-box;
}
.hero-plan-badge.cat-1{
background: #e8635a;
border: 1.1px solid #e8635a;
color:#fff;
}

.hero-plan-badge.event {
  background: #e8635a;
  color: white;
  border: 1.1px solid #e8635a;
}
.hero-plan-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a3d28;
  margin-bottom: 0;
  line-height: 1.4;
  flex: 1;
}
.hero-plan-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
  flex-shrink: 0;
  height: 18px;
  line-height: 18px;
  letter-spacing: 0.05em;
  margin-right: 0.5em;
  font-feature-settings: "palt";
}
.hero-plan-detail {
  font-size: 14px;
  color: var(--green-mid);
  text-align: right;
  margin-top: 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@media (max-width:1023px) {
  iframe#iframe-thumbnail { 
  height:400px;
  margin-top:-80px;}
  
  .hero-plans {
    display: flex;
    bottom:0px;
    position: relative;
    bottom: auto;
    /* margin:-120px 0 0; */
    left: auto;
    right: auto;
    flex-direction: column;
    padding: 16px;
    gap: 10px;
  }
  .hero-plan-item {
  max-width:650px;
  margin: auto;
  }
}

@media (max-width: 960px) {
  .event-section { margin-top: 16px; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-slideshow {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    top: 140px; bottom: 24px;
  }
  .hero-content { align-items: center; padding: 80px 24px 120px; }
  .hero-eyebrow { justify-content: center; font-size: 13px; }
  .hero-title { font-size: 22px; }
  .hero-desc { font-size: 14px; line-height: 1.9; margin-bottom: 30px; }
  .hero-overlay {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 60, 30, 0.52) 60%, rgba(0, 60, 30, 0.00) 100%);
  }
}

@media (max-width: 767px) {
  iframe#iframe-thumbnail { height:350px; }
  iframe#iframe-news { height:280px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-content { padding: 130px 24px 120px; }
  .hero-title { font-size: 28px; }
  .hero-plans {
    padding: 12px 30px;
    gap: 15px;
    /* margin-top: -50px; */
  }
  .hero-plan-item--img .hero-plan-img {
    width: 35%;
  }
}


/* ===================================================
   新着情報 SECTION
=================================================== */
.shinchaku-section {
  background: white;
  padding: 50px 24px 64px;
}
.shinchaku-head {
  max-width: 1480px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-mist);
}
.shinchaku-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}
.shinchaku-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--green-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.shinchaku-more-btn:hover { text-decoration: underline; }
.shinchaku-more-btn:active {
  text-decoration: none;
  opacity: 0.8;
}
.shinchaku-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--green-deep);
  border-radius: 50%;
  flex-shrink: 0;
}
.shinchaku-list {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.shinchaku-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  border-bottom: 1px solid var(--green-mist);
  font-size: 16px;
}
.shinchaku-item:last-child { border-bottom: 1px solid var(--green-mist); }
.shinchaku-item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.shinchaku-item-link:hover { opacity: 0.75; }
.shinchaku-cat {
  flex-shrink: 0; width: 110px;
  text-align: center; display: inline-block;
  padding: 3px 0; border: 1.2px solid var(--green-mid);
  border-radius: 20px; font-size: 13px; color: var(--green-mid);
  white-space: nowrap;
}
.newMark {
  background:#44bb88;
  font-size:11.5px;
  margin:0 0 0 3px;
  padding:0.5px 4px 2px;
  color:#fff;
}

/* イベント情報 */
.cat-1 .shinchaku-cat {
  border: 1.2px solid #e8635a;
  background: #e8635a;
  color: #fff;
}
.shinchaku-date {
  margin-left: 16px;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--green-mid);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-right: 0.5em;
  font-feature-settings: "palt";
}
.shinchaku-text {
  color: var(--text-gray);
  line-height:1.7
}

@media (max-width:1023px) {
.shinchaku-section {
  background: white;
  padding:50px 24px 64px;
}
}

@media (max-width: 767px) {
  .shinchaku-section {
    padding: 60px 24px 64px;
  }
  .shinchaku-head {
    flex-wrap: wrap;
    padding-bottom: 8px;
  }
  .shinchaku-title {
    width: 100%; text-align: center;
    font-size: 24px; font-weight: 500;
    color: var(--green-deep); letter-spacing: 0.06em;
  }
  a.shinchaku-more-btn {
    padding: 5px 0;
    display: flex;
    margin: 10px 0 0 auto;
  }
  .shinchaku-item-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    padding:15px 0 12px;
  }
  .shinchaku-text {
    width: 100%;
    display:block;
    padding:8px 0 0;
  }
  .shinchaku-meta {
    width: 100%;
    align-items: center;
    text-align: left;
    gap:10px;
    justify-content: left;
  }
}


/* ===================================================
   PLAN SECTION
=================================================== */
.plan-section {
overflow: visible;
background:
  /* 左上の淡い緑 */
  radial-gradient(
    ellipse 140% 90% at -25% -25%,
    rgba(160,210,155,.14),
    transparent 75%
  ),
  /* 右上の淡い光 */
  radial-gradient(
    ellipse 120% 90% at 120% -10%,
    rgba(255,255,220,.18),
    transparent 80%
  ),
  /* センター上部を明るく抜く */
  radial-gradient(
    ellipse 60% 30% at 50% 12%,
    rgba(255,255,255,1.0),
    transparent 75%
  ),
  linear-gradient(
    180deg,
    #e8f2ec 0%,
    #f1f7f4 50%
  );
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 8px 0 16px;
}
.plan-card-photo {
  height: 150px;
  overflow: hidden;
  margin: -32px -24px 0px;
  width: calc(100% + 48px);
  position: relative;
}
.plan-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plan-card-photo + .plan-badge {
  margin-top: 0;
}
.plan-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
  display: block;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-pale);
  transition: background 0.6s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
.plan-card:hover::before { background: var(--green-mid); }

/* オススメプラン */
.plan-card.featured {
  background: rgba(90,143,95,0.1);
}
.plan-card.featured::before { background: var(--green-mid); }

.plan-badge {
  display: inline-block;
  top: 135px;
  position: absolute;
  font-size: 13px;
  letter-spacing: 0.05em;
  background: var(--green-deep);
  color: var(--green-mist);
  padding: 2px 14px 5px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.plan-card-photo .plan-badge {
  position: absolute;
  bottom: -13px;
  left: 16px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.plan-badge.popular {
  color: white;
  background: #e8635a;
}

.plan-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 8px;
  margin-top: 25px;
  letter-spacing: 0.04em;
}
.plan-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.plan-price {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--green-mist);
}
.featured .plan-price {
  border-bottom: 1px solid rgba(255,255,255,0.8);
}
.plan-price-from {
  font-size: 15px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.plan-price-from.member {
  display: inline-block;
  background: #e8635a;
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 3px 14px 3px 10px;
  margin-bottom: 6px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}
.plan-price-val {
  font-size: 26px;
  font-weight: 500;
  color: var(--green-deep);
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1.2;
}
.plan-price-unit {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
}
.plan-price-tax {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 3px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-features li {
  font-size: 13px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before {
  content: '✓';
  color: var(--green-light);
  font-size: 13px;
  flex-shrink: 0;
}
.plan-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 20px;
  color: var(--green-pale);
  transition: color 0.2s, right 0.2s;
}
.plan-card:hover .plan-arrow {
  color: var(--green-mid);
  right: 20px;
}
/* プラン注記 */
.plan-note-center { 
  text-align: center; margin-top: 32px;
  font-size: 14px; color: var(--text-light);
  line-height: 2; }

.plan-section .container {
  max-width:90%;margin: 0 auto;}

@media (max-width:1560px) {
.plan-section .container {max-width:96%;margin: 0 auto;}
}
@media (max-width:1460px) {
.plan-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:1000px) {
.plan-section .container {max-width:96%;margin: 0 auto;}
.plan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:767px) {
.plan-section .container {max-width:100%;margin: 0 auto;}
.plan-grid { grid-template-columns: 1fr; }
}


/* ===================================================
   HALLS
=================================================== */
.halls-section {
  padding-top: 80px;
}
.halls-grid {
  padding: 8px 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.hall-card {
  background: white;
  border-radius: 0;
  border: none;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: visible;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hall-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
.hall-img {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  border-radius: 10px 0 0 10px;
  margin: 0 16px 0 0;
}
.hall-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  border-radius: 10px 0 0 10px;
}
.hall-card:hover .hall-img img { transform: scale(1.05); }
.hall-tag {
  display: inline-block;
  align-self: flex-start;
  background: white;
  color: var(--green-mid);
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  font-weight:500;
  border:2px solid var(--green-mid);
  margin-bottom: 14px;
}
.hall-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.hall-body-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hall-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.hall-name-jp {
  font-size: 28px;
  color: var(--green-mid);
}
.hall-address {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.hall-address::before {
  content: '〒';
  font-size: 12px;
}
.hall-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}
.hall-feat-tag {
  font-size: 13px;
  background: var(--green-mist);
  color: var(--green-deep);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.hall-more {
  font-size: 14px;
  color: var(--green-mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: auto;
}
.hall-more-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.hall-card:hover .hall-more-arrow {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .halls-grid { padding: 8px 0 16px; grid-template-columns: 1fr; }
  .hall-card { grid-template-columns: 1fr; }
  .hall-img { height: 220px; min-height: unset; border-radius: 10px 10px 0 0; margin: 0 0 16px 0; }
  .hall-body { padding: 24px 20px; }
  .hall-name { font-size: 18px; }
  .hall-name-jp { font-size: 22px; }
}

/* ===================================================
   HALLS 2カラム版（halls-grid-2col）
   ※ hall-name / hall-name-jp / hall-address /
     hall-features / hall-feat-tag / hall-tag は
     既存クラスをそのまま流用
=================================================== */
.halls-section-2col {
  padding-top: 80px;
}
.halls-grid-2col {
  padding: 8px 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.hall-card-2col {
  background: white;
  border-radius: 8px;
  border: 3px solid rgba(90,143,95,0.22);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hall-card-2col:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
.hall-img-2col {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 0 0;
}
.hall-img-2col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hall-card-2col:hover .hall-img-2col img { transform: scale(1.05); }
.hall-body-2col { padding: 24px; }
.hall-card-2col .hall-tag {
  position: absolute;
  top: 16px; left: 16px;
  margin-bottom: 0;
  align-self: unset;
}

@media (max-width: 767px) {
  .halls-grid-2col { grid-template-columns: 1fr; }
}


/* ===================================================
   FEATURES（お寺さん紹介）
=================================================== */
.features-section { background: white; }
#temple {
  background:
    linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0.93)),
    url('img/monk/monk.webp') -550px center / cover no-repeat;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-item {
  text-align: center;
  background:rgba(255,255,255,0.6);
  padding: 22px 18px 30px;
  border: 4px solid rgba(90, 143, 95, 0.15);
  border-radius: 12px;
}
.feature-name {
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom:22px;
  letter-spacing: 0.05em;
  position:relative;
}
.feature-name:before {
  position:absolute;
  content:"";
  width:8px;
  height:8px;
  background:#44bb88;
  border-radius:50%;
  left: 50%;
  transform: translateX(-50%);
  bottom:-12px;
}
.feature-text {
  font-size: 15.5px;
  color: var(--text-dark);
  line-height:1.8;
  text-align:left;
}

/* お寺ボタン */
.btn-temple {
  background: var(--green-deep);
  color: white;
  border: 2px solid var(--green-deep);
  padding: 13px 34px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: background 0.25s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-temple:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }
/* ボタン矢印 */
.btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.btn-temple:hover .btn-arrow,
.btn-gold:hover .btn-arrow,
.contact-btn:hover .btn-arrow {
  transform: translateX(5px);
}
/* テキストリンク */
.text-center-mt28 { text-align: center; margin-top: 28px; }

@media (max-width: 1190px) {
  .feature-name { font-size:20px; }
}

@media (max-width:960px) {
  #temple {
    background:
      linear-gradient(rgba(255,255,255,0.60), rgba(255,255,255,0.93)),
      url('img/monk/monk.webp') -550px center / cover no-repeat;
  }
  .features-grid {
  gap:20px;
}
}

@media (max-width:819px) {
.features-grid { grid-template-columns: 1fr; gap: 50px; }
#temple {
    background:
      linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,1.0)),
      url('img/monk/monk.webp') -580px -500px / cover no-repeat;
}
.feature-name {
  font-size:22px;
}
}


/* ===================================================
   MEMBER（かがやきの会）
=================================================== */
.member-section {
  background: linear-gradient(145deg, #116644 0%, #1a8c5e 40%, #1a3d2a 100%);
  position: relative;
  overflow: hidden;
}
.member-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(0,180,130,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0,80,60,0.3) 0%, transparent 55%);
  pointer-events: none;
}
.member-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.member-text .section-label {}
.member-text .section-title { color: white; margin-bottom: 16px; }
.member-text .section-desc {
  color: rgba(255,255,255,0.65);
  text-align: left;
  max-width: none;
}
.member-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.perk-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.perk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 12px 12px 0 0;
}
.perk-label {
  font-size: 15px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  line-height: 1.6;
}
.perk-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: 10px;
}
.perk-desc {
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 8px;
}
.member-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.member-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/member/member_back.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
  /*filter: blur(2px);*/
}
.member-cta > * {
  position: relative;
  z-index: 1;
}
.member-cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.member-cta-price {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: -16px;
}
/* member内ユーティリティ */
.flex-center-mb4 { display: flex; justify-content: center; margin-bottom: 4px; }
.member-cta-sub {color: rgba(255,255,255,0.7);font-size: 15px;}
.member-cta-link {color: rgba(255,255,255,1.0);font-size: 14px;text-decoration: none;}
/* かがやきの会ボタン */
.btn-gold {
  background: var(--gold);
  color: white;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-gold:hover { background: var(--gold-light); }

@media (max-width:1024px) {
  .member-text .section-title { 
    text-align:center; }
}

@media (max-width: 960px) {
  .member-inner {align-items:flex-start;}
  .member-perks { grid-template-columns: 1fr; }
  .perk-card {padding:20px 24px 15px;}
  .perk-value {font-size:33px;margin-bottom:0px;}
  .perk-label {margin-bottom:5px;line-height: 1.5;
}
}

@media (max-width: 767px) {
  .member-inner { grid-template-columns: 1fr; }
}


/* ===================================================
   CONTACT
=================================================== */
.contact-section { background: white; }
.contact-section.sub {
  border-top:8px solid rgba(90,143,95,0.05);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  border: 2.6px solid rgba(90,143,95,0.15);
  border-radius: 8px;
  padding: 36px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.contact-card.urgent {
  background: var(--green-deep);
  border-color: transparent;
}
.contact-icon {
  width: 56px; height: 56px;
  background: var(--green-fog);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card.urgent .contact-icon {
  background: rgba(255,255,255,0.72);
}
.contact-icon svg {
  width: 24px; height: 24px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.5;
}
.contact-card.urgent .contact-icon svg { stroke: white; }
.contact-label {
  font-size: 17px;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.contact-card.urgent .contact-label {
  color: rgba(255,255,255,0.6);
}
.contact-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}
.contact-card.urgent .contact-title { color: white; }
.contact-tel {
  font-size: 30px;
  font-weight: 500;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: block;
  margin: 12px 0;
  transition: color 0.2s;
}
.contact-tel:hover { color: var(--green-mid); }
.contact-card.urgent .contact-tel { color: white; }
.contact-note {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}
.contact-card.urgent .contact-note {
  color: rgba(255,255,255,0.55);
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 30px 13px;
  border-radius: 4px;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: background 0.25s, transform 0.15s;
}
.contact-btn:hover { transform: translateY(-1px); }
.contact-btn-outline {
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
}
.contact-btn-outline:hover { background: var(--green-fog); border-color: var(--green-deep); }
/* contact内ユーティリティ */
.contact-plan-note { font-size: 15px; color: var(--text-light); margin: 12px 0 0; line-height: 1.8; }
/* icon */
.icon-bright { filter: brightness(10); }

@media (max-width:1024px) {
  .contact-label { font-size: 15px; margin-bottom: 4px; }
  .contact-title {font-size: 26px;margin-bottom: 4px;}
  .contact-tel { font-size: 28px; margin: 6px 0; }
  .contact-note { font-size: 13px; line-height: 1.6; }
  .contact-plan-note { font-size: 13px; line-height: 1.6; }
  .contact-btn {font-size: 14px;padding: 12px 20px 13px;white-space: nowrap;letter-spacing: 0.05em;}
}

@media (max-width:767px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-title { font-size:24px; margin-bottom: 4px; }
}


/* ===================================================
   FOOTER
=================================================== */
footer {
  background: #f3f7f4;
  color: #333;
  padding: 100px 24px 0;
background-color: #edf6f1;
background-image:
  radial-gradient(
    ellipse 70% 50% at -10% -10%,
    rgba(150,205,145,0.16) 0%,
    transparent 72%
  ),

  radial-gradient(
    ellipse 60% 45% at 110% -5%,
    rgba(155,208,148,0.14) 0%,
    transparent 70%
  ),
  radial-gradient(
    circle at 25% 5%,
    rgba(255,255,220,0.24) 0%,
    transparent 24%
  ),
  radial-gradient(
    circle at 45% 10%,
    rgba(255,255,220,0.15) 0%,
    transparent 22%
  ),
  radial-gradient(
    circle at 70% 6%,
    rgba(255,255,220,0.18) 0%,
    transparent 22%
  ),
  radial-gradient(
    circle at 85% 12%,
    rgba(255,255,220,0.13) 0%,
    transparent 20%
  ),
  radial-gradient(
    ellipse 120% 90% at 50% 120%,
    rgba(255,255,255,0.30) 0%,
    transparent 60%
  );  
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ナビカラム */
.footer-top {
  display: flex;
  justify-content: center;
  max-width: 1160px;
  margin: auto;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.8);
}
.footer-col:not(.last-content) {
  flex: 0 0 auto;
  width: calc(25% + 24px);
}
.footer-col.last-content {
  flex: 0 0 auto;
  width: calc(25% - 80px);
}
.footer-col h4 {
  font-size: 17px;
  letter-spacing: 0.08em;
  color: #127b45;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-head-leaf {
  width: 26px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.85;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.footer-col-green { gap: 16px !important; }
.footer-col ul li a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
  display: inline-block;
}
.footer-col ul li a:hover { color: #1a8c5e; }
.footer-col-green li a {
  color: #127b45 !important;
  font-weight: 500;
  font-size: 17px !important;
  text-decoration: none;
}
.footer-col-green li a:hover { color: #116644 !important; }
/* かがやきの会フッターリンク */
.footer-li-leaf {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-leaf-icon {
  width: 26px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.85;
}
.footer-li-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}
.footer-kagayaki-name {
  color: #127b45 !important;
  font-weight: 500;
  font-size: 17px !important;
  text-decoration: none;
}
.footer-kagayaki-sub { font-size: 13px; opacity: 0.8; }

/* 会社情報バー */
.footer-company {
  background: #ffffff;
  margin: 0 -24px;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-company-logo {
  display: flex;
  align-items: center;
}
.footer-company-logo-img {
  height: 48px;
  width: auto;
}
.footer-company-divider {
  width: 1px;
  height: 36px;
  background: #c8c9c4;
  flex-shrink: 0;
}
.footer-company-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.footer-company-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-company-value {
  font-size: 14px;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0;
}
.footer-company-sub {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.03em;
  margin-top: 0;
}
.footer-company-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.footer-company-tel-number {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0d5c3a;
  line-height: 1.2;
}
.footer-company-tel-note {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.04em;
}

/* コピーライト */
.footer-bottom {
  background: #31705b;
  margin: 0 -24px;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #b8c8bb;
}

@media (max-width: 1060px) {
  .footer-col:not(.last-content) {
    flex: 0 0 auto;
    width: calc(25% + 20px);
  }
  .footer-col.last-content {
    flex: 0 0 auto;
    width: calc(25% - 60px);
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 36px 48px;
    width: 80%;
  }
  .footer-col:not(.last-content),
  .footer-col.last-content {
    width: calc(50% - 48px);
  }
}

@media (max-width: 960px) {
  footer { padding: 80px 24px 0; }
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-col {
    width: auto;
    min-width: 200px;
  }
  .footer-col h4 { font-size: 20px; }
  .footer-col ul li a { font-size: 16px; }
  .footer-col-green li a { font-size: 20px !important; }
  .footer-col-green { gap: 26px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-company { gap: 20px; padding: 20px 24px; }
  .footer-company-divider { display: none; }
}

@media (max-width: 570px) {
  .footer-company-sub { font-size: 14px; }
  .footer-company-tel-number { font-size: 24px; color: #0d5c3a; }
  .footer-company-tel-note { font-size: 14px; }
  .footer-company-logo-img {
    margin-top: 15px;
    height: 52px;
    width: auto;
  }
  .footer-company-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
  }
  .footer-company-label { font-size: 11px; }
  .footer-company-value { font-size: 15px; }
}


/* ===================================================
   FLOAT CTA
=================================================== */
.float-contact {
  position: fixed;
  bottom: 115px; right: 24px;
  z-index: 50;
  background: #e8635a;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 240px;
  height: 55px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.float-tel {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 50;
  background: var(--green-deep);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 240px;
  height: 64px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}
.float-tel svg {
  width: 18px; height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
.float-pulse { display: none; }
/* float内ユーティリティ */
.float-tel-inner {display: flex;flex-direction: column;gap: 1px;align-items: center;padding: 10px 24px;line-height: 1.4;}
.float-pulse-pos { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }
.float-tel-row { display: flex; align-items: center; gap: 8px; }
.float-tel-sub { font-size: 13px; opacity: 0.85; letter-spacing: 0.04em; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@media (max-width: 767px) {
  .float-contact { display: none; }
  .float-tel { bottom: 16px; right: 16px; font-size: 15px; padding: 12px 18px 12px 16px; }
}


/* ========================================
   Margin Top
======================================== */

.mt10 { margin-top:10px !important; }
.mt20 { margin-top:20px !important; }
.mt30 { margin-top:30px !important; }
.mt40 { margin-top:40px !important; }
.mt60 { margin-top:60px !important; }
.mt80 { margin-top:80px !important; }

/* ========================================
   Margin Bottom
======================================== */

.mb10 { margin-bottom:10px !important; }
.mb20 { margin-bottom:20px !important; }
.mb30 { margin-bottom:30px !important; }
.mb40 { margin-bottom:40px !important; }
.mb60 { margin-bottom:60px !important; }
.mb80 { margin-bottom:80px !important; }

/* ========================================
   Padding Top
======================================== */

.pt10 { padding-top:10px !important; }
.pt20 { padding-top:20px !important; }
.pt30 { padding-top:30px !important; }
.pt40 { padding-top:40px !important; }
.pt60 { padding-top:60px !important; }
.pt80 { padding-top:80px !important; }

/* ========================================
   Padding Bottom
======================================== */

.pb10 { padding-bottom:10px !important; }
.pb20 { padding-bottom:20px !important; }
.pb30 { padding-bottom:30px !important; }
.pb40 { padding-bottom:40px !important; }
.pb60 { padding-bottom:60px !important; }
.pb80 { padding-bottom:80px !important; }

/* ========================================
   Smartphone
======================================== */

@media (max-width:768px){

  .mt10 { margin-top:8px !important; }
  .mt20 { margin-top:16px !important; }
  .mt30 { margin-top:24px !important; }
  .mt40 { margin-top:32px !important; }
  .mt60 { margin-top:48px !important; }
  .mt80 { margin-top:64px !important; }

  .mb10 { margin-bottom:8px !important; }
  .mb20 { margin-bottom:16px !important; }
  .mb30 { margin-bottom:24px !important; }
  .mb40 { margin-bottom:32px !important; }
  .mb60 { margin-bottom:48px !important; }
  .mb80 { margin-bottom:64px !important; }

  .pt10 { padding-top:8px !important; }
  .pt20 { padding-top:16px !important; }
  .pt30 { padding-top:24px !important; }
  .pt40 { padding-top:32px !important; }
  .pt60 { padding-top:48px !important; }
  .pt80 { padding-top:64px !important; }

  .pb10 { padding-bottom:8px !important; }
  .pb20 { padding-bottom:16px !important; }
  .pb30 { padding-bottom:24px !important; }
  .pb40 { padding-bottom:32px !important; }
  .pb60 { padding-bottom:48px !important; }
  .pb80 { padding-bottom:64px !important; }

}