@charset "UTF-8";
/*
Theme Name: Enmeiji Original
Author: STORE LABO
Description: 延命寺リニューアル用オリジナルテーマ
Version: 1.1.0
*/

/* ============================================
   1. Variables (設定)
   ============================================ */
:root {
  /* 色設定 */
  --c-black: #111111;       /* メインの黒 */
  --c-dark: #2b2b2b;        /* フッター等の濃いグレー */
  --c-white: #ffffff;
  --c-offwhite: #fcfcfc;    /* 背景用：和紙のような白 */
  --c-gold: #c5a059;        /* アクセント：竹灯籠の金 */
  --c-bamboo: #4f6353;      /* アクセント：竹の緑 */
  --c-gray: #888888;        /* 文字色：薄いグレー */

  /* フォント設定 */
  --f-mincho: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --f-gothic: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --f-en: "Cormorant Garamond", serif;

  /* サイズ設定 */
  --w-container: 1200px;
  --w-narrow: 840px;
}

/* ============================================
   2. Base (基本スタイル)
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-gothic);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--c-black);
  background-color: var(--c-offwhite);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
  padding: 0;
}

/* 縦書き用クラス */
.t-vertical {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: upright;
  letter-spacing: 0.15em;
  font-family: var(--f-mincho);
}

/* ============================================
   3. Utility Colors (ユーティリティ)
   ============================================ */
/* 背景色 */
.bg-dark { background-color: var(--c-black); color: var(--c-white); }
.bg-white { background-color: var(--c-white); }
.bg-gray { background-color: #f5f5f5; }

/* 文字色 */
.u-text-white { color: var(--c-white) !important; }
.u-text-black { color: var(--c-black) !important; }
.u-text-gold { color: #b8860b; font-weight: bold; }
.u-text-red { color: #d00; font-weight: bold; }

/* 文字サイズ調整 */
.u-fs-sm { font-size: 1.2rem !important; }

/* 配置・余白 */
.u-text-center { text-align: center; }
.u-mb-20 { margin-bottom: 20px !important; }
.u-mb-30 { margin-bottom: 30px !important; }
.u-mb-40 { margin-bottom: 40px !important; }
.u-mb-60 { margin-bottom: 60px !important; }
.u-mt-20 { margin-top: 20px !important; }
.u-mt-30 { margin-top: 30px !important; }
.u-mt-40 { margin-top: 40px !important; }
.u-mt-60 { margin-top: 60px !important; }

/* 表示切り替え */
.u-mobile-only { display: none !important; }
.u-desktop-only { display: block !important; }

/* アニメーション */
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Screen */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--c-black);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-white);
  font-family: var(--f-mincho);
  font-size: 2rem;
  letter-spacing: 0.2em;
}

/* ============================================
   4. Layout (レイアウト)
   ============================================ */
.container {
  max-width: var(--w-container);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: var(--w-narrow);
}
.section-padding {
  padding: 100px 0;
}
.section-padding-sm {
  padding: 60px 0;
}

/* ============================================
   5. Header (ヘッダー PC)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding: 20px 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
}
.header.is-scrolled {
  background-color: rgba(17, 17, 17, 0.95);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

/* ロゴ */
.header__logo {
  width: 150px; 
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC用ナビゲーション */
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header__list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
}
.header__list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--c-gold);
  transition: width 0.3s;
}
.header__list a:hover::after {
  width: 100%;
}

/* お問い合わせボタン */
.header__btn {
  background-color: var(--c-gold);
  color: var(--c-white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 1.4rem;
  font-family: var(--f-mincho);
  white-space: nowrap;
  display: inline-block;
}
.header__btn:hover {
  background-color: #dcb363;
  opacity: 1;
}

/* LINE Button (Global Style) */
.header__btn--line {
  background-color: #06C755 !important;
  border-color: #06C755 !important;
  color: #fff !important;
}
.header__btn--line:hover {
  background-color: #05b34c !important;
  opacity: 1;
}

/* --------------------------------------------
   Dropdown Menu (PC / 2階層目) 
   -------------------------------------------- */
@media screen and (min-width: 768px) {
  /* 親メニュー設定 */
  .header__list > .menu-item-has-children {
    position: relative;
  }
  
  /* 親メニューリンク（Flexで矢印と並べる） */
  .header__list > .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 5px;
    padding-right: 0;
  }

  /* 下矢印（▼） */
  .header__list > .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--c-gold);
    transition: transform 0.3s ease;
    transform: rotate(0deg);
    position: static; 
    width: auto;
    height: auto;
    background: none;
    margin-top: 2px;
  }
  
  /* ホバー時に矢印反転 */
  .header__list > .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }

  /* サブメニュー (ul.sub-menu) */
  .sub-menu {
    position: absolute;
    top: 100%; 
    left: calc(50% - 10px);
    transform: translateX(-50%);
    
    background-color: rgba(17, 17, 17, 0.95);
    min-width: 160px;
    padding: 10px 0;
    list-style: none;
    
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    transition: all 0.3s ease;
    
    z-index: 1000;
    border-top: 2px solid var(--c-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 0 0 4px 4px;
    text-align: center; 
  }

  /* ホバー時に表示 */
  .menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
  }

  /* サブメニューリンク */
  .sub-menu li a {
    display: block;
    color: #fff;
    padding: 12px 20px;
    font-size: 1.3rem;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .sub-menu li:last-child a {
    border-bottom: none;
  }
  .sub-menu li a:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--c-gold);
  }
  .sub-menu li a::after {
    display: none;
  }
}

/* ============================================
   6. Footer (フッター / PC)
   ============================================ */
.footer {
  background-color: var(--c-black);
  color: var(--c-white);
  padding: 80px 0 20px;
}

/* PC表示：右寄せサイトマップレイアウト */
@media screen and (min-width: 768px) {
  .footer__inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 60px;
  }

  /* ロゴエリア */
  .footer__logo {
      width: 35%; 
      margin-right: 0;
      text-align: left;
      margin-bottom: 0;
  }

  /* ナビエリア */
  .footer__nav {
      width: 60%; 
  }

  /* グリッドレイアウト */
  .footer-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 30px 20px;
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .footer-list > li > a {
      display: block;
      color: var(--c-gold);
      font-family: var(--f-mincho);
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      padding-bottom: 5px;
      border-bottom: 1px solid rgba(197, 160, 89, 0.3);
      position: relative;
  }
  .footer-list > li > a::after {
      display: none;
  }

  /* フッター内サブメニュー常時表示 */
  .footer-list .sub-menu {
      position: static;
      visibility: visible;
      opacity: 1;
      transform: none;
      background: transparent;
      box-shadow: none;
      border: none;
      padding: 0;
      min-width: auto;
      margin-top: 0;
      text-align: left;
      display: block;
  }
  .footer-list .sub-menu li {
      margin-bottom: 5px;
  }
  .footer-list .sub-menu li a {
      color: #ccc;
      font-size: 1.3rem;
      padding: 2px 0;
      border-bottom: none;
      display: block;
      transition: color 0.3s;
      text-align: left;
  }
  .footer-list .sub-menu li a:hover {
      color: #fff;
      background: none;
      padding-left: 5px;
  }
}

.footer__address {
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #aaa;
}

.footer__copyright {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 1.2rem;
  color: #666;
}

/* ============================================
   7. Modules (共通パーツ)
   ============================================ */
.section-title {
  font-family: var(--f-mincho);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}
.section-title-sub {
  display: block;
  font-size: 1.4rem;
  font-family: var(--f-en);
  color: var(--c-gold);
  margin-top: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-block;
  background-color: var(--c-black);
  color: var(--c-white);
  padding: 16px 50px;
  font-size: 1.5rem;
  border: 1px solid var(--c-black);
  transition: all 0.3s ease;
  min-width: 240px;
  text-align: center;
}
.btn-primary:hover {
  background-color: var(--c-white);
  color: var(--c-black);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mincho);
  font-size: 1.6rem;
  border-bottom: 1px solid var(--c-black);
  padding-bottom: 5px;
}
.btn-arrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--c-black);
  margin-left: 15px;
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after {
  transform: translateX(10px);
}
.btn-border-white {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--f-mincho);
  font-size: 1.6rem;
  background-color: transparent;
  min-width: 300px;
  text-align: center;
}
.btn-border-white:hover {
  background-color: #fff;
  color: var(--c-black);
  opacity: 1;
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  font-size: 1.1rem;
  color: #aaa;
  font-family: var(--f-en), var(--f-gothic);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.breadcrumb a:hover {
  color: var(--c-gold);
}
.breadcrumb span {
  color: #aaa;
}
.breadcrumb .sep {
  margin: 0 10px;
  font-size: 1rem;
  color: #ddd;
}

/* ============================================
   8. Top Page (TOPページ固有)
   ============================================ */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fv__video-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.fv__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.fv__content {
  position: relative;
  z-index: 10;
  color: var(--c-white);
}
.fv__copy {
  display: flex;
  gap: 40px;
  font-size: 4rem;
  font-family: var(--f-mincho);
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  margin: 0;
}
.fv__copy .t-vertical span {
  display: inline-block;
  will-change: transform, opacity, filter;
  min-width: 0.5em;
}

.fv__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-white);
  font-family: var(--f-en);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.fv__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background-color: var(--c-white);
  margin-top: 10px;
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { height: 0; opacity: 0; }
  50% { height: 60px; opacity: 1; }
  100% { height: 0; opacity: 0; transform: translateY(60px); }
}

/* Nio Gate */
.nio-gate {
  background-color: var(--c-black);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.nio-gate__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.nio-item {
  flex: 0 0 35%;
  position: relative;
  z-index: 1;
}
.nio-item img {
  width: 100%;
  height: auto;
  filter: brightness(0.8) contrast(1.2);
  transform-origin: bottom center;
}
.nio-item--left { margin-right: -100px; }
.nio-item--right { margin-left: -100px; }
.nio-text {
  flex: 0 0 30%;
  text-align: center;
  color: var(--c-white);
  z-index: 10;
  position: relative;
}
.nio-text__title { 
  font-family: var(--f-mincho);
  font-size: 3.2rem;
  writing-mode: vertical-rl;
  margin: 0 auto 25px;
  letter-spacing: 0.4em;
  line-height: 2.2;
  height: auto;
  width: auto;
  display: inline-block;
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.6), 0 0 20px rgba(0,0,0,0.8);
  font-feature-settings: "normal";
}
.nio-text__desc {
  font-size: 1.6rem;
  line-height: 2;
  opacity: 0.8;
}

/* Concept */
.concept__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}
.concept__text {
  flex: 0 0 40%;
  font-size: 2rem;
  line-height: 2.2;
  height: 400px;
}
.concept__image {
  flex: 1;
  height: 500px;
  overflow: hidden;
}
.concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept__btn {
  text-align: right;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

/* Content Panels */
.contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.content-panel {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  overflow: hidden;
}
.content-panel__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: -1;
}
.content-panel:hover .content-panel__bg {
  transform: scale(1.1);
}
.content-panel__text {
  text-align: center;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.3);
}
.content-panel__text h3 {
  font-family: var(--f-mincho);
  font-size: 2.8rem;
  margin: 0 0 10px 0;
}
.content-panel__text p { margin: 0; }

/* News (Top) */
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.news__list { border-top: 1px solid #ddd; list-style: none; padding: 0;}
.news__item { border-bottom: 1px solid #ddd; }
.news__item a {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 30px;
}
.news__item:hover { background-color: #fafafa; }
.news__date { font-family: var(--f-en); color: var(--c-gray); }

/* ============================================
   9. Front Page: Noukotsudou Section (トップ納骨堂)
   ============================================ */
.noukotsudou {
  background-color: #fff;
  overflow: visible;
  padding-bottom: 250px;
}

.noukotsudou__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 0;
}

.noukotsudou__img-wrap {
  width: 65%;
  position: relative;
  z-index: 1;
}
.noukotsudou__img-wrap img {
  width: 100%;
  height: auto;
  min-height: 500px; 
  object-fit: cover;
  box-shadow: 20px 20px 0px rgba(0,0,0,0.05);
}

.noukotsudou__card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 45%;
  background-color: var(--c-black);
  color: #fff;
  padding: 60px;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.noukotsudou__title-area {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  padding-bottom: 20px;
}
.noukotsudou__title {
  font-family: var(--f-mincho);
  font-size: 3.2rem;
  color: var(--c-gold);
  margin: 0 20px 0 0;
  line-height: 1.2;
  letter-spacing: 0.1em;
  height: auto;
}
.noukotsudou__subtitle {
  font-family: var(--f-gothic);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  padding-top: 10px;
  opacity: 0.8;
}
.noukotsudou__desc {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 40px;
  font-feature-settings: "palt";
  opacity: 0.9;
}

.btn-arrow-gold {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mincho);
  font-size: 1.6rem;
  color: var(--c-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 5px;
  transition: opacity 0.3s;
}
.btn-arrow-gold::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--c-gold);
  margin-left: 15px;
  transition: transform 0.3s ease;
}
.btn-arrow-gold:hover { opacity: 0.8; }
.btn-arrow-gold:hover::after { transform: translateX(10px); }

/* ============================================
   10. Page Header (下層ページ共通ヘッダー)
   ============================================ */
.page-header {
  width: 100%;
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding-top: 80px;
}
.page-header__title {
  font-family: var(--f-mincho);
  font-size: 3.6rem;
  color: #ffffff;
  margin-bottom: 0;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  line-height: 1.2;
}
.page-header__sub {
  display: block;
  font-family: var(--f-en);
  font-size: 1.4rem;
  color: var(--c-gold);
  margin-top: 10px;
  letter-spacing: 0.1em;
  font-weight: normal;
  text-transform: uppercase;
}

/* LP用ヘッダー */
.page-header--lp {
  height: 80vh;
  min-height: 600px;
  padding: 0;
}
.page-header--lp .page-header__title {
  font-size: 4.2rem;
  margin-bottom: 30px;
}
.page-header__lead {
  font-family: var(--f-mincho);
  font-size: 2.4rem;
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
}
.page-header__lead span {
  font-size: 1.6rem !important;
}

/* ============================================
   11. Page About: Statues & Monuments (石仏・石碑)
   ============================================ */
.statue-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}
.statue-item {
  display: flex;
  align-items: center;
  position: relative;
}
.statue-item:nth-child(even) {
  flex-direction: row-reverse;
}
.statue-item__img {
  width: 55%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(0,0,0,0.05);
  z-index: 1;
}
.statue-item:nth-child(even) .statue-item__img {
  box-shadow: -20px 20px 0 rgba(0,0,0,0.05);
}
.statue-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.statue-item:hover .statue-item__img img {
  transform: scale(1.1);
}
.statue-item__body {
  width: 50%;
  background: #fff;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 2;
  margin-left: -5%;
}
.statue-item:nth-child(even) .statue-item__body {
  margin-left: 0;
  margin-right: -5%;
}
.statue-item__title {
  font-family: var(--f-mincho);
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: var(--c-black);
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 0.1em;
}
.statue-item__body p {
  font-size: 1.5rem;
  line-height: 2;
  color: #444;
  margin: 0;
  font-feature-settings: "palt";
}

/* ============================================
   12. Page About: Obaku Zen (黄檗の教え)
   ============================================ */
.obaku-section {
  overflow: visible;
  background: linear-gradient(to bottom, #fff 50%, #f9f9f9 50%);
}
.obaku-inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 0;
}
.obaku-img {
  width: 60%;
  position: relative;
  z-index: 1;
}
.obaku-img img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  box-shadow: 20px 20px 0 rgba(0,0,0,0.05);
}
.obaku-img figcaption {
  color: #888;
  line-height: 1.4;
}
.obaku-img figcaption a {
  color: #888;
  text-decoration: underline;
  transition: color 0.3s;
}
.obaku-img figcaption a:hover {
  color: var(--c-gold);
}
.obaku-content {
  width: 50%;
  background-color: var(--c-black);
  color: #fff;
  padding: 60px 50px;
  margin-left: -10%;
  z-index: 2;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.obaku-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.obaku-title {
  font-family: var(--f-mincho);
  font-size: 3.2rem;
  color: var(--c-gold);
  line-height: 1.2;
  letter-spacing: 0.2em;
  margin: 0;
  height: auto;
}
.obaku-subtitle {
  font-family: var(--f-en);
  font-size: 1.4rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}
.obaku-lead {
  font-family: var(--f-mincho);
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
.obaku-text {
  font-size: 1.5rem;
  line-height: 2.0;
  margin-bottom: 20px;
  opacity: 0.9;
  font-feature-settings: "palt";
}
.obaku-text:last-child { margin-bottom: 0; }

/* ============================================
   13. Page Noukotsudou (納骨堂LPパーツ)
   ============================================ */
.section-title-lp {
  font-family: var(--f-mincho);
  font-size: 3.2rem;
  margin-bottom: 60px;
  line-height: 1.5;
}
.lp-concerns {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.lp-concern-item {
  width: 320px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid var(--c-gold);
  border-radius: 4px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s;
}
.lp-concern-item:hover { transform: translateY(-5px); }
.lp-concern-item::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.05));
}
.lp-concern-icon {
  background: #f4f4f4;
  color: #666;
  font-size: 1.3rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-family: var(--f-mincho);
  text-align: center;
}
.lp-concern-item p {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--c-black);
  margin: 0;
}
.lp-solution-arrow {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: #fcfcfc;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 8px;
}
.lp-solution-arrow::before {
  content: '▼';
  display: block;
  font-size: 4rem;
  color: var(--c-gold);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s infinite;
}
@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}
.lp-solution-arrow p {
  font-family: var(--f-mincho);
  font-size: 2.4rem;
  line-height: 1.8;
  color: var(--c-black);
  margin: 0;
}
.lp-solution-arrow strong {
  color: var(--c-gold);
  font-size: 3.2rem;
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
  padding-bottom: 5px;
}

.lp-features { display: flex; flex-direction: column; gap: 40px; }
.lp-feature-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.lp-feature-img { width: 40%; }
.lp-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-feature-body {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-feature-body h3 {
  font-family: var(--f-mincho);
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--c-black);
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 10px;
  display: inline-block;
}

.plan-category { margin-bottom: 80px; }
.plan-category__header { text-align: center; margin-bottom: 40px; }
.plan-category__title {
  font-family: var(--f-mincho);
  font-size: 2.8rem;
  color: var(--c-black);
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 10px;
}
.plan-category__label {
  background: var(--c-black);
  color: #fff;
  padding: 5px 15px;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 10px;
}
.plan-category__label--gold { background: var(--c-gold); }
.plan-category__desc { font-size: 1.4rem; color: #666; line-height: 1.6; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plan-card {
  background: var(--c-white);
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.plan-card--premium { border: 2px solid var(--c-gold); }
.plan-card--gold { border: 2px solid var(--c-gold); background-color: #fffff0; }
.plan-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--c-gold);
  color: var(--c-white);
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 10;
  font-family: var(--f-mincho);
}
.plan-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}
.plan-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.plan-card:hover .plan-card__img img { transform: scale(1.1); }
.plan-card__body {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plan-card__name {
  font-family: var(--f-mincho);
  font-size: 2.0rem;
  margin-bottom: 10px;
  color: var(--c-black);
}
.plan-card__name-sub { font-size: 1.2rem; color: #888; }
.plan-card__price {
  font-family: var(--f-en);
  font-size: 3.2rem;
  color: var(--c-gold);
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1;
}
.plan-card__yen { font-size: 1.4rem; color: var(--c-black); margin-left: 2px; }
.plan-card__cost {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d00;
  margin-bottom: 15px;
  white-space: nowrap;
}
.plan-card__feature {
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.6;
  color: #666;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #eee;
  height: 10em;
}

.plan-card--soldout {
  background-color: #fafafa;
  color: #999;
}
.plan-card--soldout .plan-card__img {
  position: relative;
  filter: grayscale(100%);
  opacity: 0.7;
}
.plan-card--soldout .plan-card__img::after {
  content: '満枠';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(50, 50, 50, 0.85);
  color: #fff;
  font-family: var(--f-mincho);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 10;
  white-space: nowrap;
}
.plan-card--soldout .plan-card__price,
.plan-card--soldout .plan-card__name {
  color: #999;
}
.plan-card--soldout .plan-card__badge {
  display: none;
}

.plan-row-single { max-width: 800px; margin: 80px auto 0; }
.plan-card--horizontal { flex-direction: row; }
.plan-card--horizontal .plan-card__img {
  width: 40%;
  aspect-ratio: auto;
  border-bottom: none;
  border-right: 1px solid #eee;
}
.plan-card--horizontal .plan-card__body {
  width: 60%;
  text-align: left;
  justify-content: center;
}
.plan-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.plan-card__price-wrap { text-align: right; }

.flow-list { display: flex; flex-direction: column; gap: 20px; }
.flow-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
}
.flow-item__num {
  font-family: var(--f-en);
  font-size: 3rem;
  font-weight: bold;
  color: var(--c-gold);
  margin-right: 30px;
  line-height: 1;
}

.faq-list { display: flex; flex-direction: column; gap: 30px; }
.faq-item__q {
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.faq-item__q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-gold);
  font-weight: bold;
  font-family: var(--f-en);
}
.faq-item__a {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  margin: 0;
  position: relative;
  padding-left: 40px;
}
.faq-item__a::before {
  content: 'A';
  position: absolute;
  left: 15px;
  top: 20px;
  color: var(--c-black);
  font-weight: bold;
  font-family: var(--f-en);
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.btn-tel {
  display: inline-block;
  color: #fff;
  font-size: 2.8rem;
  font-family: var(--f-mincho);
  line-height: 1.2;
  text-align: left;
}
.btn-tel__sub {
  font-size: 1.4rem;
  display: block;
  opacity: 0.8;
  font-family: var(--f-gothic);
}

/* ============================================
   14. Page Access (アクセス)
   ============================================ */
/* Access Map - Monochrome Style */
.access-map {
  width: 100%;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
}
.access-map img, .access-map iframe {
  width: 100%;
  height: 500px;
  object-fit: cover;
  vertical-align: bottom;
  filter: grayscale(100%); 
  transition: filter 0.5s ease; 
}
.access-map:hover iframe {
  filter: grayscale(0%);
}

.access-basic {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  padding: 40px;
  background: #fff;
}
.access-basic__head { flex: 1; min-width: 300px; margin-bottom: 20px; }
.access-basic__body { flex: 1; min-width: 300px; }
.access-basic__name { font-family: var(--f-mincho); font-size: 2.8rem; margin-bottom: 5px; }
.access-basic__en { font-family: var(--f-en); color: var(--c-gold); letter-spacing: 0.1em; }
.access-dl {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 20px;
}
.access-dl dt { width: 100px; font-weight: bold; }
.access-dl dd { flex: 1; line-height: 1.8; }
.access-tel { font-size: 2.4rem; font-family: var(--f-en); color: var(--c-black); font-weight: bold; margin-right: 10px; }

.transport-list { display: flex; flex-direction: column; gap: 30px; }
.transport-item {
  display: flex;
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  align-items: flex-start;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.transport-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.transport-item__icon {
  width: 70px;
  height: 70px;
  background: var(--c-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.icon-svg {
  width: 36px;
  height: 36px;
  fill: var(--c-gold);
  transition: transform 0.3s;
}
.transport-item:hover .icon-svg { transform: scale(1.1); }
.transport-item__body { flex: 1; }
.transport-item__body h3 {
  font-family: var(--f-mincho);
  font-size: 2.0rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
}
.parking-info {
  margin-top: 20px;
  background: #fafafa;
  padding: 20px;
  border: 1px solid #eee;
}
.parking-badge {
  background: var(--c-black);
  color: #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  font-family: var(--f-en);
}

/* ============================================
   15. Page Experience (体験・研修・御朱印)
   ============================================ */
.experience-nav { background: #f5f5f5; padding: 40px 0; }
.experience-nav .container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.exp-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 200px; height: 120px; background: #fff; border: 1px solid #ddd;
  text-decoration: none; color: var(--c-black); transition: all 0.3s;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
.exp-nav-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--c-gold); }
.exp-nav-en { font-family: var(--f-en); color: var(--c-gold); font-size: 1.4rem; letter-spacing: 0.1em; margin-bottom: 5px; }
.exp-nav-jp { font-family: var(--f-mincho); font-size: 1.8rem; font-weight: bold; }
.exp-nav-item--black { background: #333; color: #fff; border-color: #333; }
.exp-nav-item--black .exp-nav-jp { color: #fff; }

.exp-block { display: flex; gap: 60px; align-items: center; }
.exp-block--reverse { flex-direction: row-reverse; }
.exp-block__img { flex: 1; }
.exp-block__img img { width: 100%; height: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.exp-block__content { flex: 1; }
.exp-title {
  font-family: var(--f-mincho); font-size: 2.8rem; margin-bottom: 30px;
  border-bottom: 2px solid var(--c-gold); display: inline-block; padding-bottom: 10px;
}
.exp-title-sub { font-family: var(--f-en); font-size: 1.6rem; color: var(--c-gold); margin-left: 15px; font-weight: normal; }
.exp-dl { display: flex; border-bottom: 1px solid #eee; padding: 15px 0; }
.exp-dl dt { width: 100px; font-weight: bold; color: var(--c-black); }
.exp-dl dd { flex: 1; }

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.biz-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: var(--c-black);
  height: 100%;
}
.biz-card__icon {
  font-family: var(--f-mincho);
  font-size: 3rem;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--c-black);
  color: var(--c-gold);
  border-radius: 50%;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.biz-card h3 {
  font-family: var(--f-mincho);
  font-size: 2.0rem;
  margin-bottom: 15px;
  color: var(--c-black);
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
  padding-bottom: 5px;
}
.biz-card p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  opacity: 1;
  text-align: left;
}
.schedule-box { background: #fff; color: #333; padding: 30px; max-width: 800px; margin: 0 auto; }
.schedule-row { display: flex; border-bottom: 1px dashed #ddd; padding: 15px 0; }
.schedule-row:last-child { border-bottom: none; }
.schedule-time { width: 80px; font-weight: bold; font-family: var(--f-en); color: var(--c-gold); }
.schedule-desc { flex: 1; }

/* ============================================
   16. Page News / Single (お知らせ)
   ============================================ */
.news-archive { border-top: 1px solid #ddd; }
.news-row { border-bottom: 1px solid #ddd; transition: background-color 0.3s; }
.news-row:hover { background-color: #fafafa; }
.news-row__link { display: flex; align-items: center; padding: 25px 0; color: var(--c-black); text-decoration: none; gap: 30px; }
.news-row__meta { min-width: 140px; display: flex; flex-direction: column; gap: 5px; }
.news-row__date { font-family: var(--f-en); color: #888; font-size: 1.4rem; }
.news-row__cat {
  display: inline-block; background-color: var(--c-black); color: #fff;
  font-size: 1.1rem; padding: 3px 10px; width: fit-content;
}
.news-row__title { font-size: 1.6rem; font-weight: normal; flex: 1; line-height: 1.6; margin: 0; }
.news-row__arrow { color: var(--c-gold); font-size: 1.4rem; padding-right: 10px; }

.pagination { display: flex; justify-content: center; gap: 10px; }
.pagination .page-numbers {
  display: block; width: 40px; height: 40px; line-height: 40px; text-align: center;
  border: 1px solid #ddd; color: var(--c-black); text-decoration: none; font-family: var(--f-en);
}
.pagination .current { background-color: var(--c-black); color: #fff; border-color: var(--c-black); }

.post-header { margin-bottom: 50px; border-bottom: 1px solid #ddd; padding-bottom: 30px; }
.post-header__meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.post-header__date { font-family: var(--f-en); color: #666; font-size: 1.4rem; }
.post-header__cat { background-color: var(--c-gold); color: #fff; font-size: 1.2rem; padding: 4px 12px; }
.post-header__title { font-family: var(--f-mincho); font-size: 2.8rem; line-height: 1.4; margin-bottom: 30px; }
.post-header__thumb img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }

.post-content p { margin-bottom: 2em; line-height: 1.8; }
.post-content h2 { font-family: var(--f-mincho); font-size: 2.2rem; border-left: 5px solid var(--c-gold); padding-left: 15px; margin: 50px 0 30px; }
.post-content h3 { font-size: 1.8rem; font-weight: bold; margin: 40px 0 20px; }
.post-content img { max-width: 100%; height: auto; margin: 20px 0; }
.post-content blockquote { background: #f9f9f9; padding: 20px; border-left: 3px solid #ccc; margin: 30px 0; }
.post-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 80px; border-top: 1px solid #ddd; padding-top: 40px; }
.post-nav a { color: var(--c-black); text-decoration: none; transition: color 0.3s; }
.post-nav a:hover { color: var(--c-gold); }
.post-nav__list a { border: 1px solid #ddd; padding: 10px 30px; font-size: 1.3rem; }

/* ============================================
   17. Page Contact (お問い合わせ)
   ============================================ */

/* お電話エリア */
.contact-phone {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 50px;
  display: inline-block;
  min-width: 320px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.contact-phone__label {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #888;
  font-family: var(--f-gothic);
}
.contact-phone__number {
  font-family: var(--f-en);
  font-size: 3.8rem;
  font-weight: bold;
  color: var(--c-black);
  line-height: 1;
  display: block;
  letter-spacing: 0.05em;
}
.contact-phone__number:hover {
  opacity: 0.6;
  color: var(--c-gold);
}

/* フォーム外枠 */
.form-container {
  padding: 80px;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: none;
}

/* フォーム行 */
.form-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding: 35px 0;
  margin: 0;
  align-items: center;
}
.form-row:first-child { padding-top: 0; }
.form-row:last-of-type { border-bottom: none; }

/* ラベル (左側) */
.form-row dt {
  width: 260px;
  font-weight: normal;
  font-family: var(--f-mincho);
  font-size: 1.6rem;
  padding-top: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* 必須バッジ */
.required {
  background-color: var(--c-black);
  color: #fff;
  font-size: 1.1rem;
  padding: 4px 10px;
  border-radius: 0;
  vertical-align: middle;
  font-family: var(--f-gothic);
  letter-spacing: 0.05em;
}

/* 入力欄 (右側) */
.form-row dd {
  width: calc(100% - 260px);
  margin: 0;
}

/* Input Styles */
.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fdfdfd;
  font-size: 1.6rem;
  font-family: var(--f-gothic);
  transition: all 0.3s ease;
  appearance: none;
}
.wpcf7-text:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus {
  border-color: var(--c-gold);
  background: #fff;
  outline: none;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}
.wpcf7-textarea {
  height: 240px;
  line-height: 1.8;
}
::placeholder {
  color: #ccc;
}

/* 送信エリア */
.form-submit-area {
  position: relative;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.wpcf7-submit {
  background-color: var(--c-black);
  color: #fff;
  font-size: 1.6rem;
  font-family: var(--f-mincho);
  letter-spacing: 0.2em;
  padding: 20px 0;
  width: 320px;
  border: 1px solid var(--c-black);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
}
.wpcf7-submit:hover {
  background-color: #fff;
  color: var(--c-black);
}
.wpcf7-not-valid-tip {
  font-size: 1.3rem;
  color: #d00;
  margin-top: 8px;
  font-weight: bold;
}

/* ============================================
   18. Page Mizuko: 水子供養専用デザイン
   ============================================ */
.page-template-page-mizuko .main {
    background-color: #fffaf5; 
}
.page-template-page-mizuko img {
    border-radius: 8px; 
}
.page-template-page-mizuko .page-header {
    border-radius: 0 0 20px 20px; 
}
.page-template-page-mizuko .btn-primary,
.page-template-page-mizuko .btn-tel {
    border-radius: 50px; 
    background-color: #d8cbb6 !important;
    border-color: #d8cbb6 !important;
    color: #4a4a4a !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.page-template-page-mizuko .btn-tel {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    min-width: 300px;
    height: auto;
    text-align: center;
    text-decoration: none;
}
.page-template-page-mizuko .btn-tel__sub {
    font-size: 1.2rem;
    margin-bottom: 2px;
    opacity: 0.8;
}
.page-template-page-mizuko .btn-primary:hover,
.page-template-page-mizuko .btn-tel:hover {
    background-color: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #fff !important;
    transform: translateY(-2px);
    opacity: 1;
}
.page-template-page-mizuko .section-title-sub,
.page-template-page-mizuko .exp-title {
    color: #a89f91;
    border-color: #e0d8cc !important;
}
.page-template-page-mizuko .schedule-table,
.page-template-page-mizuko .flow-item {
    border-color: #eee8e0 !important;
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.05);
}
.page-template-page-mizuko body {
    color: #444; 
}

/* ============================================
   19. Responsive Global (スマホ対応まとめ)
   ============================================ */
@media screen and (max-width: 767px) {
  /* Utility Overrides */
  .u-mobile-only { display: block !important; }
  .u-desktop-only { display: none !important; }

  /* Common */
  .container { padding: 0 20px; }
  .section-padding { padding: 60px 0; }
  
  /* Font Sizes */
  h1 { font-size: 2.8rem; line-height: 1.3; }
  h2 { font-size: 2.4rem; line-height: 1.4; }
  h3 { font-size: 2.0rem; line-height: 1.5; }
  .section-title { font-size: 2.4rem; margin-bottom: 30px; }
  .section-title-sub { font-size: 1.1rem; margin-top: 5px; }
  .section-title-lp { font-size: 2.2rem; line-height: 1.5; margin-bottom: 30px; }

  /* Header Structure (Mobile) */
  .header { padding: 15px 0; } /* 少しパディングを縮小 */
  .header__inner { 
    padding: 0 20px; 
    position: relative;
  }

  /* Logo Centered */
  .header__logo {
    margin-right: 0;
    width: 120px; 
  }

  /* Hamburger Right */
  .header__hamburger {
    display: block;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: absolute; /* 絶対配置 */
    right: 20px;        /* 右端 */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1001;
    margin-left: 0;
  }
  .header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--c-white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  .header__hamburger span:nth-child(1) { top: 0; }
  .header__hamburger span:nth-child(2) { top: 11px; }
  .header__hamburger span:nth-child(3) { bottom: 0; }
  .header__hamburger.is-active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .header__hamburger.is-active span:nth-child(2) { opacity: 0; }
  .header__hamburger.is-active span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

  /* Header Nav (Menu Open) - Left Aligned */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--c-black);
    padding: 80px 40px; 
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    
    display: flex !important;
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
    justify-content: flex-start; /* 上から順に */
    overflow-y: auto;
    text-align: left;
  }
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  .header__list {
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
  }
  .header__list a {
    font-size: 1.8rem;
    font-family: var(--f-mincho);
    padding: 5px 0;
    display: block;
    width: 100%;
    text-align: left;
  }
  .header__list a::after { display: none; }

  /* Sub Menu in Header (Mobile) - Left Line */
  .menu-item-has-children {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    box-shadow: none;
    width: auto;
    border: none;
    border-left: 1px solid var(--c-gold);
    padding: 0 0 0 20px; 
    margin: 10px 0 10px 5px;
    display: block;
    text-align: left;
  }
  .sub-menu li { width: 100%; text-align: left; }
  .sub-menu li a {
    font-size: 1.4rem; 
    color: #ccc;       
    padding: 8px 0;
    line-height: 1.4;
  }

  /* Header Button (Contact) */
  .header__btn {
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 16px 0;
    font-size: 1.6rem;
    border: 1px solid var(--c-gold);
    background: var(--c-gold);
    margin-left: 0;
    margin-right: auto;
  }
  /* LINE Button spacing */
  .header__btn--line {
    margin-top: 15px !important;
  }

  /* Top Page Fixes */
  .fv__copy { font-size: 2.4rem; gap: 20px; }
  
  /* Nio Gate (Mobile) */
  .nio-gate { padding: 80px 0; }
  .nio-gate__inner { 
    flex-direction: row; 
    gap: 0; 
    align-items: center;
    justify-content: center;
    position: relative; 
    min-height: 450px; 
  }
  .nio-item { 
    flex: none; width: 190px; position: absolute; bottom: 0; z-index: 1; opacity: 0.9; 
    margin: 0; order: unset;
  }
  .nio-item--left { left: -30px; }
  .nio-item--right { right: -30px; }
  .nio-item img {
    width: 100%; height: auto; filter: brightness(0.6) contrast(1.1); 
  }
  .nio-text { 
    position: relative; z-index: 10; width: 100%; margin: 0; color: #fff; text-align: center; order: unset;
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.9);
  }
  .nio-text__title { 
    font-size: 3.4rem; writing-mode: vertical-rl; margin: 0 auto 20px; letter-spacing: 0.3em; height: auto;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.6), 0 0 20px rgba(0,0,0,0.8);
  }
  .nio-text__desc {
    width: 240px ;font-size: 1.3rem; font-weight: 500; letter-spacing: 0.1em; background: rgba(0, 0, 0, 0.6); 
    display: inline-block; padding: 8px 20px; border-top: 1px solid var(--c-gold); border-bottom: 1px solid var(--c-gold);
  }

  /* Concept Mobile */
  .concept__inner { flex-direction: column; gap: 40px; }
  .concept__text { width: 100%; height: auto; font-size: 1.6rem; writing-mode: horizontal-tb; }
  .concept__image { width: 100%; height: 300px; }
  .concept__btn { text-align: center; margin-top: 30px; }

  /* Panels Mobile */
  .contents { grid-template-columns: 1fr; }
  .content-panel { height: 300px; }
  
  /* News Mobile */
  .news__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .news__item a { display: block; }
  .news__date { display: block; margin-bottom: 5px; font-size: 1.2rem; }

  /* Page Header Mobile */
  .page-header .container { padding-top: 120px; }
  .page-header { height: auto; min-height: 250px; padding-bottom: 40px; align-items: flex-end; }
  .page-header__title { font-size: 2.8rem; line-height: 1.3; margin-bottom: 5px; }
  .page-header__sub { font-size: 1.2rem; margin-bottom: 0; }
  
  .page-header--lp { height: auto; min-height: 450px; padding-bottom: 60px; align-items: center; }
  .page-header--lp .page-header__title { font-size: 3.0rem; margin-bottom: 15px; }
  .page-header__lead { font-size: 1.5rem; line-height: 1.8; }
  .page-header__lead span { font-size: 1.3rem !important; }

  /* Front Noukotsudou Mobile */
  .noukotsudou { padding-bottom: 60px; }
  .noukotsudou__inner { flex-direction: column; padding: 0; }
  .noukotsudou__img-wrap { width: 100%; margin-bottom: -40px; }
  .noukotsudou__img-wrap img { min-height: 250px; box-shadow: none; }
  .noukotsudou__card {
    position: relative; top: auto; left: auto; transform: none; width: 90%; margin: 0 auto; padding: 40px 30px;
  }
  .noukotsudou__title { font-size: 2.4rem; }
  .noukotsudou__desc { font-size: 1.4rem; margin-bottom: 30px; }

  .access-dl dd { margin-left: 20px; }

  /* Footer (Mobile 2-column Grid) */
  .footer__inner { flex-direction: column; align-items: center; gap: 40px; }
  .footer__logo { width: 100%; text-align: center; margin-right: 0; display: flex; flex-direction: column; align-items: center; margin-bottom: 6rem;}
  .footer__address { text-align: center; }
  .footer__nav { width: 100%; }
  
  .footer-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 15px;
      padding: 0;
      list-style: none;
      text-align: left; 
  }
  .footer-list > li > a {
      color: var(--c-gold);
      font-size: 1.6rem;
      font-weight: bold;
      display: block;
      padding-bottom: 5px;
      margin-bottom: 8px;
      border-bottom: 1px dashed rgba(197, 160, 89, 0.3);
  }
  /* Footer Submenu Mobile */
  .footer-list .sub-menu {
      display: block; 
      padding: 0; margin: 0; list-style: none;
  }
  .footer-list .sub-menu li { margin-bottom: 4px; }
  .footer-list .sub-menu li a {
      color: #aaa;       
      font-size: 1.3rem; 
      display: block;
      padding: 2px 0;
      line-height: 1.4;
      padding-left: 1em;
  }

  /* About / Statue / Obaku Mobile */
  .statue-grid { gap: 60px; margin-top: 40px; }
  .statue-item, .statue-item:nth-child(even) { flex-direction: column; align-items: flex-start; }
  .statue-item__img { width: 100%; aspect-ratio: 3 / 2; box-shadow: none; margin-bottom: -30px; }
  .statue-item:nth-child(even) .statue-item__img { box-shadow: none; }
  .statue-item__body, .statue-item:nth-child(even) .statue-item__body {
    width: 90%; margin: 0 auto; padding: 30px; margin-left: auto; margin-right: auto;
  }
  .statue-item__title { font-size: 2.0rem; margin-bottom: 15px; }
  .statue-item__body p { font-size: 1.4rem; line-height: 1.8; }

  .obaku-inner { flex-direction: column; padding: 0; }
  .obaku-img { width: 100%; margin-bottom: -40px; }
  .obaku-img img { min-height: 300px; box-shadow: none; }
  .obaku-content { width: 90%; margin-left: 0; padding: 40px 30px; }
  .obaku-title { font-size: 2.4rem; writing-mode: horizontal-tb; }
  .obaku-lead { font-size: 1.8rem; }
  .obaku-text { font-size: 1.4rem; }

  /* Experience Mobile */
  .exp-block, .exp-block--reverse { flex-direction: column; gap: 30px; }
  .business-grid { grid-template-columns: 1fr; gap: 20px; }
  .biz-card { padding: 30px 20px; }
  .exp-nav-item { width: 100%; height: auto; padding: 20px; flex-direction: row; justify-content: space-between; }
  .exp-nav-en { order: 2; margin: 0; }
  .exp-nav-jp { order: 1; }

  /* Contact Mobile */
  .form-container { padding: 30px 20px; }
  .form-row { flex-direction: column; padding: 20px 0; }
  .form-row dt { width: 100%; margin-bottom: 5px; }
  .form-row dd { width: 100%; }
  .wpcf7-submit { width: 100%; }
  .contact-phone__number { font-size: 2.8rem; }
  .contact-phone { min-width: auto; width: 100%; padding: 30px; }
  
  /* News Single Mobile */
  .news-row__link { flex-direction: column; align-items: flex-start; gap: 10px; }
  .news-row__arrow { display: none; }
  .post-header__title { font-size: 2.2rem; }
  .post-nav { flex-direction: column; gap: 20px; }

  /* LP / Noukotsudou Mobile */
  .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .plan-card__body { padding: 15px 10px; }
  .plan-card__name { font-size: 2.5rem; margin: 20px auto 0; text-align: center; }
  .plan-card__name-sub { font-size: 1.0rem; display: block; }
  .plan-card__price { font-size: 2.2rem; }
  .plan-card__yen { font-size: 1.1rem; }
  .plan-card__cost { font-size: 1.0rem; }
  .plan-card__feature { font-size: 1.1rem; line-height: 1.4; }
  .plan-card__badge { font-size: 1.0rem; padding: 3px 6px; top: 5px; left: 5px; }
  .plan-card--soldout .plan-card__img::after { font-size: 1.2rem; padding: 5px 10px; }
  .plan-category__title { font-size: 2.0rem; margin-bottom: 10px; }
  
  .plan-row-single { margin-top: 50px; }
  .plan-card--horizontal { flex-direction: column; }
  .plan-card--horizontal .plan-card__img { width: 100%; aspect-ratio: 16/9; border-right: none; border-bottom: 1px solid #eee; }
  .plan-card--horizontal .plan-card__body { width: 100%; text-align: center; padding: 20px; }
  .plan-card--horizontal .plan-card__price { text-align: center; font-size: 3.2rem; }
  .plan-card__header-row { flex-direction: column; text-align: left; }
  .plan-card__price-wrap { text-align: center; margin-top: 10px; width: 100%; }

  .lp-concerns { gap: 20px; margin-bottom: 60px; }
  .lp-concern-item { width: 100%; padding: 30px 20px; border-radius: 8px; aspect-ratio: auto; flex-direction: row; text-align: left; align-items: center; }
  .lp-concern-item::after { display: none; }
  .lp-concern-icon { margin-bottom: 0; margin-right: 20px; flex-shrink: 0; }
  .lp-concern-item p { font-size: 1.6rem; }
  .lp-solution-arrow { padding: 30px 20px; }
  .lp-solution-arrow p { font-size: 1.8rem; }
  .lp-solution-arrow strong { font-size: 2.2rem; }

  .lp-feature-card { flex-direction: column; }
  .lp-feature-img { width: 100%; height: 200px; }
  .lp-feature-body { width: 100%; padding: 20px; }
  .lp-feature-body h3 { font-size: 1.8rem; margin-bottom: 10px; }
  
  .flow-item { flex-direction: column; text-align: center; }
  .flow-item__num { margin: 0 0 10px 0; }
  .cta-buttons { flex-direction: column; gap: 20px; }
  .btn-tel { text-align: center; }
  
  .faq-item__q { font-size: 1.6rem; padding-left: 25px; }

  .access-map img, .access-map iframe { height: 300px; }
  .access-basic { flex-direction: column; padding: 30px; }
  .access-dl { flex-direction: column; }
  .transport-item { flex-direction: column; }
  .transport-item__icon { margin-bottom: 20px; }
}

/* ============================================
   Footer CTA Buttons (お問い合わせ & LINE)
   ============================================ */

/* ボタン配置エリア */
.footer__cta {
  display: flex;
  gap: 15px; /* ボタン間の隙間 */
  margin-top: 30px;
  width: 100%;
  max-width: 400px; /* PCでの最大幅 */
}

/* 共通ボタンスタイル */
.footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; /* 2つのボタンを均等な幅にする */
  padding: 12px 10px;
  font-size: 1.4rem;
  font-family: var(--f-gothic);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

/* お問い合わせボタン（枠線スタイル） */
.footer-btn--contact {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.footer-btn--contact:hover {
  background-color: #fff;
  color: var(--c-black);
}

/* LINEボタン（緑色塗りつぶし） */
.footer-btn--line {
  background-color: #06C755;
  border: 1px solid #06C755;
  color: #fff;
}
.footer-btn--line:hover {
  background-color: #05b34c;
  opacity: 1;
  transform: translateY(-2px); /* ホバー時に少し浮く */
}

/* スマホ表示時の調整 */
@media screen and (max-width: 767px) {
  .footer__cta {
    flex-direction: column; /* 縦並びにする */
    gap: 15px;
    max-width: 100%; /* 横幅いっぱい */
    padding: 0 20px; /* 画面端との余白 */
  }

  .footer-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.5rem; /* スマホでは少し大きくして押しやすく */
  }
}

/* ============================================
   Page Archive (お知らせ一覧 - Refined Design)
   ============================================ */

/* リスト全体の枠組み */
.post-list {
  border-top: 1px solid #eee;
}

/* 個々の記事アイテム */
.post-item {
  border-bottom: 1px solid #eee;
  transition: background-color 0.4s ease;
}
.post-item:hover {
  background-color: #fafafa;
}

/* リンクエリア全体 */
.post-item__link {
  display: flex;
  align-items: center;
  padding: 35px 20px;
  color: var(--c-black);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* 左側のメタ情報（日付・タグ群） */
.post-item__meta {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  margin-right: 40px;
  flex-shrink: 0;
}

/* 日付 */
.post-item__date {
  font-family: var(--f-en);
  font-size: 1.6rem;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  line-height: 1;
}

/* タグなどをまとめるラッパー */
.post-item__tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* カテゴリーラベル */
.post-item__cat {
  font-size: 1.1rem;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #666;
  padding: 3px 10px;
  line-height: 1;
  transition: all 0.3s;
  font-family: var(--f-gothic);
}

/* ★NEWマーク */
.post-item__new {
  font-size: 1.0rem;
  font-family: var(--f-en);
  color: #d00; /* 赤色で強調 */
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 2px; /* 視覚調整 */
}

/* タイトル */
.post-item__title {
  font-family: var(--f-mincho);
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  transition: color 0.3s;
}

/* 矢印アイコン（CSSで描画） - 位置調整強化版 */
.post-item__arrow {
  width: 40px;
  height: 1px;
  background-color: #ddd;
  position: relative;
  margin-left: 30px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.post-item__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% + 1px); /* 中央配置 */
  width: 8px;
  height: 8px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  transform: translateY(-50%) rotate(45deg); /* Y軸中央補正＋回転 */
  transition: all 0.3s ease;
  margin-top: -1px; /* 線の太さ分の微調整 */
}

/* --- ホバー時のアクション --- */
.post-item:hover .post-item__date {
  color: var(--c-gold);
}
.post-item:hover .post-item__cat {
  background-color: var(--c-black);
  border-color: var(--c-black);
  color: #fff;
}
.post-item:hover .post-item__arrow {
  background-color: var(--c-black);
  width: 50px; /* 線がスッと伸びる */
  transform: translateX(10px);
}
.post-item:hover .post-item__arrow::after {
  border-color: var(--c-black);
}


/* --- スマホ表示 (767px以下) --- */
@media screen and (max-width: 767px) {
  .post-item__link {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 0;
  }

  .post-item__meta {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .post-item__date {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  
  .post-item__title {
    font-size: 1.6rem;
    width: 100%;
  }

  .post-item__arrow {
    display: none; 
  }
}

/* ============================================
   Page Info (境内案内 - Stylish)
   ============================================ */

/* 導入文の強調 */
.info-lead {
  font-family: var(--f-mincho);
  font-size: 3.2rem;
  line-height: 1.6;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}

/* マップエリア */
.info-map img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

/* --------------------------------------------
   Spot Item (見どころ - Zigzag Layout)
   -------------------------------------------- */
.spot-item {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
.spot-item:last-child {
  margin-bottom: 0;
}
.spot-item--reverse {
  flex-direction: row-reverse;
}

/* 画像エリア（外枠） */
.spot-item__img {
  width: 55%;
  aspect-ratio: 4 / 3; /* 比率を固定 */
  position: relative;  
  z-index: 1;
  overflow: hidden;    /* はみ出た分を隠す */
  box-shadow: 20px 20px 0 rgba(0,0,0,0.05);
  background-color: transparent; /* 背景色を削除（念のため透明に） */
}
.spot-item--reverse .spot-item__img {
  box-shadow: -20px 20px 0 rgba(0,0,0,0.05);
}

/* 画像本体 */
.spot-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  /* ★重要：パララックスで動く分（約50px）を考慮して高さを余分に確保 */
  height: 120% !important; 
  object-fit: cover; /* 枠に合わせて隙間なく埋める */
  transition: transform 0.6s ease;
}

/* テキストエリア */
.spot-item__txt {
  width: 50%; /* 画像と少し重ねる */
  background: #fff;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 2;
  margin-left: -5%; /* 重ねる設定 */
  position: relative;
}
.spot-item--reverse .spot-item__txt {
  margin-left: 0;
  margin-right: -5%;
}

/* ナンバリング (01, 02...) */
.spot-number {
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: var(--f-en);
  font-size: 10rem;
  font-weight: bold;
  color: var(--c-gold);
  opacity: 0.2; /* 薄く表示して背景になじませる */
  line-height: 1;
  z-index: -1;
}
.spot-item--reverse .spot-number {
  left: auto;
  right: 20px;
}

/* タイトル */
.spot-item__title {
  font-family: var(--f-mincho);
  font-size: 2.6rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
  padding-bottom: 10px;
}

/* リード文 */
.spot-item__lead {
  font-weight: bold;
  color: var(--c-black);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* --------------------------------------------
   Other Spots (その他の見どころ - Grid)
   -------------------------------------------- */
.other-spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #fff;
  border-top: 4px solid var(--c-gold); /* 上部に金色のアクセント */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}
.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box__inner {
  padding: 30px;
}

.feature-box__title {
  font-family: var(--f-mincho);
  font-size: 2.0rem;
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}

.feature-box__desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* --- スマホ表示 (767px以下) --- */
@media screen and (max-width: 767px) {
  .info-lead {
    font-size: 2.4rem;
    text-align: left;
  }
  
  /* Spot Item (Stack vertically) */
  .spot-item, .spot-item--reverse {
    flex-direction: column;
    margin-bottom: 60px;
  }
  
  .spot-item__img {
    width: 100%;
    margin-bottom: -30px; /* テキストボックスを少し食い込ませる */
    box-shadow: none;
  }
  
  .spot-item__txt, .spot-item--reverse .spot-item__txt {
    width: 90%;
    margin: 0 auto;
    padding: 30px;
  }
  
  .spot-number {
    font-size: 6rem;
    top: -20px;
    left: 10px;
  }
  
  .spot-item__title {
    font-size: 2.2rem;
  }
  
  .other-spots-grid {
    grid-template-columns: 1fr; /* 1列 */
  }
}

/* ============================================
   Updated: Contact Phone Card (お問い合わせ電話エリア)
   ============================================ */
.contact-card {
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
  background-color: #fff;
  border: 1px solid #e0d8cc; /* 薄いベージュの枠線 */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 金色のラインアクセント（上部） */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--c-gold);
}

/* ホバー時の動き */
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(197, 160, 89, 0.15); /* 金色の淡い影 */
}

.contact-card__inner {
  padding: 50px 40px;
  text-align: center;
}

/* リード文 */
.contact-card__lead {
  font-family: var(--f-mincho);
  font-size: 1.6rem;
  color: var(--c-black);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* 電話リンク全体 */
.contact-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  color: var(--c-black);
  transition: opacity 0.3s;
  line-height: 1;
  margin-bottom: 15px;
}
.contact-card__link:hover {
  opacity: 0.7;
}

/* アイコン */
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--c-gold);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-card__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* 電話番号テキスト */
.contact-card__number {
  font-family: var(--f-en); /* 英語フォントで美しく */
  font-size: 4.2rem;
  color: var(--c-black);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
/* ホバー時に番号の下にラインを引く */
.contact-card:hover .contact-card__number {
  border-bottom-color: var(--c-black);
}

/* 受付時間 */
.contact-card__time {
  font-family: var(--f-gothic);
  font-size: 1.3rem;
  color: #888;
  margin: 0;
  letter-spacing: 0.05em;
}
.contact-card__time::before {
  content: '●';
  color: var(--c-gold);
  font-size: 0.8rem;
  margin-right: 8px;
  vertical-align: 2px;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .contact-card__inner {
    padding: 30px 20px;
  }
  .contact-card__lead {
    font-size: 1.4rem;
  }
  .contact-card__link {
    gap: 10px;
  }
  .contact-card__icon {
    width: 32px;
    height: 32px;
  }
  .contact-card__icon svg {
    width: 16px;
    height: 16px;
  }
  .contact-card__number {
    font-size: 2.8rem; /* スマホでは少し小さくして改行を防ぐ */
  }
}

/* reCAPTCHAロゴを非表示 */
.grecaptcha-badge { 
    visibility: hidden; 
}