@charset "UTF-8";
/*
 * ======================================
 * 千鶴寺（ふくろう寺） — サイト固有CSS（site.css）
 * ======================================
 * 配色・フォントは scss/main.scss で @use "vars" with(...) により上書きし、
 * css/main.css にコンパイル済み（base=#4c7d2a / sub=#1e2e17 / accent=#73e03c /
 * bg_section=#f6f5f0 / bg_dark=#20241c / 明朝フォント）。
 * 本ファイルは claude-design-output の固有デザイン（縦書き見出し・和の余白感・
 * 変形ヘッダー・エディトリアルレイアウト等）を chz- プレフィックスで補完する。
 *
 * --------------------------------------
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * --------------------------------------
 * 共通
 *   .chz-mincho / .chz-section(--lg/--md/--sm) / .chz-wrap(--1040〜720)
 *   .chz-divider / .chz-vline / .chz-btn-dark / .chz-label
 * ヘッダー/フッター
 *   .chz-header(.is-overlay/.is-vertical) - 縦書き＋写真上重ね→スクロールで白背景横並びに変形
 *   .chz-mobile / .chz-burger / .chz-drawer - SPバー＋フルスクリーンドロワー
 *   .chz-footer - 山並み背景（fixed）＋地図＋寺情報＋コピーライト
 * 下層共通
 *   .chz-phero / .chz-crumb - 写真ヒーロー（暗幕＋パンくず＋タイトル＋サブ）
 * TOP
 *   .chz-mv - 全画面クロスフェード＋ケンバーンズMV
 *   .chz-greet(縦書きごあいさつ) / .chz-news / .chz-guide-card / .chz-info / .chz-uranai / .chz-cform
 * about
 *   .chz-lead / .chz-band / .chz-story / .chz-events / .chz-owl-*
 * jusanmairi
 *   .chz-jintro / .chz-note-block / .chz-guide-dl
 * kigan
 *   .chz-acc(アコーディオン) / .chz-fees / .chz-birthday
 * taiken
 *   .chz-taiken-item
 * news
 *   .chz-entrylist / .chz-post / .chz-pager / .chz-side / .chz-article
 *
 * --------------------------------------
 * 共通SCSSに不足していたもの（5分類）
 * --------------------------------------
 * ・構造不足：縦書き（writing-mode）見出し・本文、スクロールで縦→横に変形するヘッダー、
 *             写真＋テキストの非対称エディトリアルレイアウト
 * ・装飾パターン不足：全画面クロスフェード＋ケンバーンズMV、fixed背景の山並みフッター、
 *             ご案内カードのリップルホバー
 * ・値の粒度不足：design固有の余白（140/104/96px）・clampフォント・letter-spacing(.14〜.42em)
 * ・状態不足：ヘッダー overlay/solid の色反転
 * ・指定方向不足：—
 */

/* ============ ベース ============ */
.chz-mincho { font-family: 'Shippori Mincho', serif; }
::selection { background: rgba(115, 224, 60, 0.28); }
img { max-width: 100%; }

.chz-section    { padding: 120px 6vw; }
.chz-section--lg { padding: 140px 6vw; }
.chz-section--md { padding: 104px 6vw; }
.chz-section--sm { padding: 80px 6vw; }
.chz-section--cream    { background: #f6f5f0; }
.chz-section--cream2   { background: #faf8f3; }
.chz-section--white    { background: #fefefe; }

.chz-wrap      { max-width: 1100px; margin: 0 auto; }
.chz-wrap--1160 { max-width: 1160px; margin: 0 auto; }
.chz-wrap--1040 { max-width: 1040px; margin: 0 auto; }
.chz-wrap--1000 { max-width: 1000px; margin: 0 auto; }
.chz-wrap--920  { max-width: 920px;  margin: 0 auto; }
.chz-wrap--880  { max-width: 880px;  margin: 0 auto; }
.chz-wrap--820  { max-width: 820px;  margin: 0 auto; }
.chz-wrap--760  { max-width: 760px;  margin: 0 auto; }
.chz-wrap--720  { max-width: 720px;  margin: 0 auto; }

.chz-divider { height: 1px; background: rgba(51, 51, 51, 0.14); border: 0; }
.chz-vline   { display: block; width: 1px; height: 52px; background: rgba(51, 51, 51, 0.3); margin: 0 auto; }

.chz-label { font-family: 'Shippori Mincho', serif; font-size: 20px; letter-spacing: 0.24em; color: #4c7d2a; }

/* 画像なしプレースホルダーのアイコン（CMS差し替えまでのダミー表示） */
.chz-ph-icon { font-size: 30px; color: #b7c79f; }
.chz-ph-icon--lg { font-size: 40px; }

.chz-btn-dark {
  display: inline-block; text-decoration: none; color: #fefefe; background: #333;
  padding: 16px 44px; font-family: 'Shippori Mincho', serif; font-size: 16px;
  letter-spacing: 0.18em; transition: opacity 0.3s ease;
}
.chz-btn-dark:hover { opacity: 0.82; color: #fefefe; }

/* 見出し（明朝・共通トーン） */
.chz-h2 { font-family: 'Shippori Mincho', serif; font-weight: 600; margin: 0; letter-spacing: 0.18em; color: #333; line-height: 1.4; }

/* ============ スクロールリビール ============ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 1s ease, transform 1s ease; }
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .chz-mv__slide.is-active { animation: none !important; }
}

/* ============ ヘッダー（PC） ============ */
.chz-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  font-family: 'Shippori Mincho', serif; background: #fefefe;
  border-bottom: 1px solid rgba(51, 51, 51, 0.10); transition: background 0.4s ease;
}
.chz-header.is-overlay {
  background: linear-gradient(180deg, rgba(20, 24, 18, 0.42), rgba(20, 24, 18, 0.04) 80%, transparent);
  border-bottom: none;
}
.chz-header__inner { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 44px; }
.chz-header.is-vertical .chz-header__inner { padding: 26px 44px 30px; }

.chz-header__logo { display: none; align-items: center; gap: 12px; text-decoration: none; }
.chz-header.is-vertical .chz-header__logo { display: flex; }
.chz-header__logo img { width: 50px; height: auto; }
.chz-header.is-overlay .chz-header__logo img { filter: invert(1) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35)); }

.chz-header__right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; margin-left: auto; }
.chz-header__nav { display: flex; flex-direction: row; gap: 30px; align-items: center; }
.chz-header.is-vertical .chz-header__nav { gap: 28px; align-items: flex-start; }
.chz-header__nav a { text-decoration: none; color: #333; font-size: 16px; letter-spacing: 0.14em; transition: color 0.3s ease; }
.chz-header.is-vertical .chz-header__nav > a { writing-mode: vertical-rl; }
.chz-header.is-overlay .chz-header__nav a { color: #fefefe; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.chz-header__nav a:hover { color: #4c7d2a; }
.chz-header__nav a.is-current { color: #4c7d2a; }
.chz-header.is-overlay .chz-header__nav a.is-current { color: #cdeeb5; }

.chz-header__sep { width: 1px; align-self: stretch; background: rgba(51, 51, 51, 0.18); margin: 0 2px; }
.chz-header.is-overlay .chz-header__sep { background: rgba(255, 255, 255, 0.55); }

.chz-header__nav a.chz-header__contact {
  writing-mode: horizontal-tb; color: #fefefe; background: #333; border: 1px solid #333;
  font-size: 14px; letter-spacing: 0.14em; padding: 9px 18px; text-shadow: none; transition: opacity 0.3s ease;
}
.chz-header__nav a.chz-header__contact:hover { opacity: 0.85; color: #fefefe; }
.chz-header.is-vertical .chz-header__nav a.chz-header__contact { writing-mode: vertical-rl; padding: 12px 7px; }
.chz-header.is-overlay .chz-header__nav a.chz-header__contact { background: transparent; border: 1px solid rgba(254, 254, 254, 0.55); color: #fefefe; }

.chz-header__icons { display: flex; flex-direction: row; align-items: center; gap: 13px; }
.chz-header.is-vertical .chz-header__icons { flex-direction: column; }
.chz-header__icons a { color: #333; font-size: 18px; line-height: 1; text-decoration: none; transition: color 0.3s ease; }
.chz-header.is-overlay .chz-header__icons a { color: #fefefe; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.chz-header__icons a:hover { color: #4c7d2a; }

/* ============ ヘッダー（モバイル） ============ */
.chz-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; height: 58px; z-index: 100;
  align-items: center; justify-content: space-between; padding: 0 18px;
  background: rgba(254, 254, 254, 0.94); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.10); font-family: 'Shippori Mincho', serif;
}
.chz-mobile__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.chz-mobile__owl { display: flex; align-items: center; color: #4c7d2a; font-size: 20px; }
.chz-mobile__name { font-size: 19px; letter-spacing: 0.16em; font-weight: 600; color: #333; }
.chz-burger { border: none; background: none; padding: 8px; cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.chz-burger span { display: block; width: 24px; height: 1.5px; background: #333; transition: transform 0.3s ease, opacity 0.3s ease; }
.chz-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.chz-burger.is-active span:nth-child(2) { opacity: 0; }
.chz-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.chz-drawer {
  display: none; position: fixed; inset: 0; z-index: 110; background: #fefefe;
  flex-direction: column; padding: 24px 22px; font-family: 'Shippori Mincho', serif;
}
.chz-drawer.is-open { display: flex; }
.chz-drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.chz-drawer__title { font-size: 19px; letter-spacing: 0.16em; color: #333; font-weight: 600; }
.chz-drawer__close { border: none; background: none; font-size: 26px; line-height: 1; color: #333; cursor: pointer; padding: 4px 8px; }
.chz-drawer__nav { display: flex; flex-direction: column; }
.chz-drawer__nav a { text-decoration: none; color: #333; font-size: 15px; padding: 16px 4px; border-bottom: 1px solid rgba(51, 51, 51, 0.08); letter-spacing: 0.10em; display: flex; align-items: center; gap: 12px; }
.chz-drawer__nav a.is-current { color: #4c7d2a; }
.chz-drawer__dot { width: 5px; height: 5px; border-radius: 50%; background: #73e03c; opacity: 0.85; }
.chz-drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 24px; }
.chz-drawer__tel { text-decoration: none; color: #333; font-size: 17px; letter-spacing: 0.08em; text-align: center; }
.chz-drawer__row { display: flex; gap: 12px; }
.chz-drawer__cta { flex: 1; text-align: center; text-decoration: none; color: #fefefe; background: #333; padding: 14px; font-size: 16px; letter-spacing: 0.14em; }
.chz-drawer__ig { width: 50px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(51, 51, 51, 0.2); color: #333; text-decoration: none; font-size: 20px; }

/* 下層ページのモバイルロゴ（既定は非表示。SPでヒーロー表示中のみ出す） */
.chz-mobile-logo { display: none; }
.chz-br-sp-none { display: inline; }

@media (max-width: 900px) {
  .chz-header { display: none; }
  /* スマホ：ロゴなし・帯の白背景なし（透明）。ハンバーガーのみ浮かせる */
  .chz-mobile { display: flex; justify-content: flex-end; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: none; }
  .chz-mobile__brand { display: none; }
  /* ハンバーガー：緑の四角背景＋白の三本線 */
  .chz-burger { background: #4c7d2a; padding: 14px 11px; box-shadow: 0 2px 8px rgba(20, 24, 18, 0.25); }
  .chz-burger span { background: #fff; width: 22px; }
  /* 下層ページ：ハンバーガー下に白ロゴ（ヒーロー表示中のみ／JSで .is-hidden 切替） */
  .chz-mobile-logo { display: block; position: fixed; top: 66px; right: 14px; z-index: 100; width: 44px; opacity: 1; transition: opacity 0.4s ease; }
  .chz-mobile-logo img { width: 100%; height: auto; filter: invert(1) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.45)); }
  .chz-mobile-logo.is-hidden { opacity: 0; pointer-events: none; }
  /* アコーディオンの矢印を右寄せ */
  .chz-acc__caret { margin-left: auto; }
}

/* ============ フッター ============ */
.chz-footer {
  position: relative; color: #e9e7df; font-family: 'Noto Serif JP', serif;
  background: #20241c url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28426/mountains.jpg') center/cover no-repeat fixed;
}
.chz-footer__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 24, 18, 0.86), rgba(20, 24, 18, 0.9)); pointer-events: none; }
.chz-footer__body { position: relative; display: flex; flex-wrap: wrap; }
.chz-footer__map { flex: 1 1 380px; min-height: 340px; background: #333; }
.chz-footer__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.35) contrast(0.95); }
.chz-footer__info { flex: 1 1 380px; padding: 56px 90px; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 48px; }
.chz-footer__info-main { display: flex; flex-direction: column; gap: 22px; flex: 1 1 auto; }
.chz-footer__contact { display: flex; flex-direction: column; gap: 18px; flex: 0 0 auto; }
.chz-footer__contact-ttl { font-family: 'Shippori Mincho', serif; font-size: 20px; letter-spacing: 0.22em; margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(115, 224, 60, 0.6); color: #e9e7df; }
.chz-footer__name { font-family: 'Shippori Mincho', serif; font-size: 26px; letter-spacing: 0.22em; font-weight: 600; margin: 0; }
.chz-footer__rule { display: block; width: 38px; height: 1px; background: #73e03c; opacity: 0.7; }
.chz-footer__addr { font-size: 16px; line-height: 2; color: #c9c6bc; letter-spacing: 0.04em; margin: 0; }
.chz-footer__tel-txt { display: inline-block; margin-top: 10px; }
.chz-footer__actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 0; }
.chz-footer__actions .chz-footer__btn { text-align: center; }
.chz-footer__ig { align-self: flex-start; }
.chz-footer__btn { text-decoration: none; font-size: 14px; font-family: 'Shippori Mincho', serif; }
.chz-footer__btn--outline { color: #e9e7df; border: 1px solid rgba(233, 231, 223, 0.35); padding: 13px 22px; letter-spacing: 0.10em; transition: background 0.3s ease; }
.chz-footer__btn--outline:hover { background: rgba(233, 231, 223, 0.12); color: #e9e7df; }
.chz-footer__btn--solid { color: #20241c; background: #e9e7df; padding: 14px 24px; letter-spacing: 0.14em; transition: opacity 0.3s ease; }
.chz-footer__btn--solid:hover { opacity: 0.85; color: #20241c; }
.chz-footer__ig { color: #e9e7df; display: inline-flex; align-items: center; gap: 10px; font-size: 22px; text-decoration: none; transition: opacity 0.3s ease; }
.chz-footer__ig span { font-family: 'Shippori Mincho', serif; font-size: 15px; letter-spacing: 0.08em; }
.chz-footer__ig:hover { opacity: 0.8; color: #e9e7df; }
.chz-footer__bottom { position: relative; background: #333; padding: 20px 48px; text-align: center; }
.chz-footer__bottom span { font-size: 12px; color: #c9c6bc; letter-spacing: 0.08em; }
@media (max-width: 900px) {
  .chz-footer { background-attachment: scroll; }
  .chz-footer__info { padding: 44px 24px; flex-direction: column; align-items: stretch; gap: 30px; }
}

/* ============ 下層ページ・ヒーロー（共通） ============ */
.chz-phero { position: relative; padding: 205px 6vw 56px; background: #1e2e17 center/cover no-repeat; overflow: hidden; }
.chz-phero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 28, 16, 0.62), rgba(20, 28, 16, 0.72)); pointer-events: none; }
.chz-crumb { position: relative; font-size: 13px; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.82); margin-bottom: 18px; }
.chz-crumb a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.chz-crumb a:hover { color: #fff; }
.chz-phero__title { position: relative; font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(30px, 4.6vw, 50px); letter-spacing: 0.16em; margin: 0; color: #fefefe; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4); }
.chz-phero__sub { position: relative; font-family: 'Shippori Mincho', serif; font-size: clamp(14px, 1.8vw, 16px); letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.86); margin: 18px 0 0; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4); }

/* ============ TOP：メインビュー ============ */
@keyframes chzKenMV { from { transform: scale(1.14); } to { transform: scale(1.0); } }
.chz-mv { position: relative; height: 100vh; min-height: 560px; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #20241c; }
.chz-mv__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.chz-mv__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform-origin: center; opacity: 0; transition: opacity 1.6s ease; }
.chz-mv__slide.is-active { opacity: 1; animation: chzKenMV 6s ease-out both; }
/* CMSスライダー（Swiper出力）をMV全面に敷く */
.chz-mv__bg #cms-slider-1-1-area, .chz-mv__bg .swiper, .chz-mv__bg .swiper-slide { width: 100%; height: 100%; }
.chz-mv__bg .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chz-mv__shade { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(20, 24, 18, 0.62), rgba(20, 24, 18, 0.34) 40%, rgba(20, 24, 18, 0.6)); }
.chz-mv__content { position: relative; z-index: 3; text-align: center; color: #fefefe; padding: 120px 24px 40px; display: flex; flex-direction: column; align-items: center; }
.chz-mv__eyebrow { font-family: 'Shippori Mincho', serif; font-size: clamp(11px, 1.4vw, 17px); letter-spacing: 0.42em; margin: 0 0 34px; opacity: 0.92; }
.chz-mv__logo { height: min(50vh, 500px); width: auto; filter: invert(1) drop-shadow(0 2px 24px rgba(0, 0, 0, 0.45)); }
.chz-mv__catch { font-family: 'Shippori Mincho', serif; font-size: clamp(14px, 1.9vw, 22px); letter-spacing: 0.22em; margin: 38px 0 0; opacity: 0.94; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4); }

/* ============ TOP：ごあいさつ ============ */
.chz-greet { position: relative; padding: 120px 6vw; background: #f6f5f0; overflow: hidden; }
.chz-greet__deco-fuji { position: absolute; left: -20px; top: -30px; opacity: 0.22; pointer-events: none; width: 300px; }
.chz-greet__deco-owl  { position: absolute; right: -10px; bottom: -30px; opacity: 0.07; pointer-events: none; width: 240px; filter: grayscale(1) brightness(0.4); }
.chz-greet__inner { position: relative; display: flex; flex-wrap: wrap-reverse; gap: 48px; align-items: stretch; justify-content: center; max-width: 1040px; margin: 0 auto; }
.chz-greet__imgwrap { position: relative; flex: 1 1 550px; max-width: 550px; }
.chz-greet__img { position: relative; aspect-ratio: 4.3/5; background: #e7e5db; overflow: hidden; }
.chz-greet__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chz-greet__textcol { flex: 1 1 380px; display: flex; justify-content: right; align-items: center; }
.chz-greet__vbox { position: relative; display: flex; flex-direction: row-reverse; gap: 44px; align-items: flex-start; justify-content: center; }
.chz-greet__title { writing-mode: vertical-rl; font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(26px, 3.2vw, 34px); letter-spacing: 0.28em; margin: 0; flex: 0 0 auto; }
.chz-greet__text { writing-mode: vertical-rl; max-height: min(465px, 60vh); font-family: 'Shippori Mincho', serif; font-size: clamp(15px, 1.9vw, 17px); line-height: 2.2; letter-spacing: 0.09em; margin: 0; color: #3a3a33; }

/* ============ TOP：新着情報 ============ */
.chz-news { padding: 80px 6vw; background: #fefefe; }
.chz-news__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.chz-news__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: 0.16em; margin: 0; }
.chz-news__more { text-decoration: none; color: #333; font-family: 'Shippori Mincho', serif; font-size: 15px; letter-spacing: 0.14em; border-bottom: 1px solid rgba(51, 51, 51, 0.3); padding-bottom: 3px; transition: color 0.3s ease; }
.chz-news__more:hover { color: #4c7d2a; }
.chz-news__grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
/* CMS埋め込みspanは箱を作らず、差し込まれた記事を直接グリッドの子にする */
.chz-news__grid > #cms-blog-entry-list-1-area { display: contents; }
.chz-news__item { display: flex; align-items: center; gap: 20px; text-decoration: none; color: #333; padding: 18px 0; border-bottom: 1px solid rgba(51, 51, 51, 0.10); }
.chz-news__thumb { flex: 0 0 auto; width: 170px; height: 120px; background: #f2f0e8; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.chz-news__thumb img { width: 100%; height: 100%; object-fit: cover; }
.chz-news__date { display: block; font-family: 'Shippori Mincho', serif; font-size: 13px; letter-spacing: 0.06em; color: #8a897f; margin-bottom: 7px; }
.chz-news__ttl { display: block; font-family: 'Shippori Mincho', serif; font-size: 16px; line-height: 1.7; letter-spacing: 0.03em; }
.chz-news__item:hover .chz-news__ttl { color: #4c7d2a; }

/* ============ TOP：千鶴寺のご案内 ============ */
.chz-guide { padding: 120px 6vw; background: #fefefe; }
.chz-guide__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 44px; justify-content: center; }
.chz-guide__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); letter-spacing: 0.18em; margin: 0; }
.chz-guide__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.chz-guide-card { text-decoration: none; color: #333; position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; background: #e7e5db; }
.chz-guide-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s ease; }
.chz-guide-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20, 24, 18, 0.62)); }
.chz-guide-card__ripple { position: absolute; top: 50%; left: 50%; z-index: 1; width: 40%; height: 40%; border-radius: 50%; background: radial-gradient(circle, rgba(20, 24, 18, 0.6), rgba(20, 24, 18, 0.35) 55%, rgba(20, 24, 18, 0)); opacity: 0; transform: translate(-50%, -42%) scale(0.5); filter: blur(1px); pointer-events: none; transition: width 0.7s cubic-bezier(.22, 1, .36, 1), height 0.7s cubic-bezier(.22, 1, .36, 1), opacity 0.55s ease, transform 0.7s cubic-bezier(.22, 1, .36, 1); }
.chz-guide-card:hover img { transform: scale(1.06); }
.chz-guide-card:hover .chz-guide-card__ripple { width: 230%; height: 230%; opacity: 1; transform: translate(-50%, -56%) scale(1); }
.chz-guide-card__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px; color: #fefefe; }
.chz-guide-card__cap h3 { font-family: 'Shippori Mincho', serif; font-weight: 500; font-size: 20px; letter-spacing: 0.12em; margin: 0; }

/* ============ TOP：基本情報 ============ */
.chz-info { padding: 120px 6vw; background: #f6f5f0; position: relative; overflow: hidden; }
.chz-info::before { content: ""; position: absolute; inset: 0; background: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28426/pattern2.png') repeat; background-size: 200px auto; opacity: 0.07; pointer-events: none; }
.chz-info > * { position: relative; z-index: 1; }
.chz-info__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 40px; }
.chz-info__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); letter-spacing: 0.18em; margin: 0; }
.chz-info__dl { margin: 0; border-top: 1px solid rgba(51, 51, 51, 0.14); }
.chz-info__row { display: flex; flex-wrap: wrap; gap: 6px 24px; padding: 18px 4px; border-bottom: 1px solid rgba(51, 51, 51, 0.10); }
.chz-info__dt { flex: 0 0 150px; font-family: 'Shippori Mincho', serif; font-size: 17px; letter-spacing: 0.1em; color: #333; margin: 0; }
.chz-info__dd { flex: 1 1 260px; margin: 0; font-size: 17px; line-height: 1.9; letter-spacing: 0.03em; }

/* ============ TOP：占い ============ */
.chz-uranai { padding: 80px 6vw; background: #20241c center/cover no-repeat; color: #eceadf; position: relative; }
.chz-uranai__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 24, 18, 0.6), rgba(20, 24, 18, 0.66)); pointer-events: none; }
.chz-uranai__inner { position: relative; max-width: 660px; margin: 0 auto; text-align: center; }
.chz-uranai__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(26px, 2.6vw, 26px); letter-spacing: 0.2em; margin: 0 0 22px; }
.chz-uranai__text { font-family: 'Shippori Mincho', serif; font-size: clamp(13px, 1.7vw, 16px); line-height: 2.1; letter-spacing: 0.0em; margin: 0 auto 26px; color: #fff; }
.chz-uranai__btn { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: #fff; background: #4c7d2a; padding: 12px 26px; font-family: 'Shippori Mincho', serif; font-size: 14px; letter-spacing: 0.12em; transition: opacity 0.3s ease; }
.chz-uranai__btn:hover { opacity: 0.88; color: #fff; }

/* ============ TOP：お問い合わせ ============ */
.chz-cform-sec { padding: 120px 6vw; background: #fefefe; scroll-margin-top: 70px; }
.chz-cform__head { text-align: center; margin-bottom: 16px; }
.chz-cform__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); letter-spacing: 0.18em; margin: 0; }
.chz-cform__lead { text-align: center; font-size: 16px; line-height: 2; color: #5c5b52; margin: 0 0 40px; letter-spacing: 0.04em; }
.chz-cform__thanks { display: none; text-align: center; padding: 60px 20px; background: #f6f5f0; }
.chz-cform__thanks i { color: #4c7d2a; font-size: 46px; margin-bottom: 18px; }
.chz-cform__thanks-ttl { font-family: 'Shippori Mincho', serif; font-size: 19px; letter-spacing: 0.1em; margin: 0 0 8px; }
.chz-cform__thanks-txt { font-size: 14px; color: #6f6e64; margin: 0; }
.chz-cform { display: flex; flex-direction: column; gap: 22px; }
.chz-cform label { display: flex; flex-direction: column; gap: 8px; font-family: 'Shippori Mincho', serif; font-size: 14px; letter-spacing: 0.08em; color: #4a4a42; }
.chz-cform__row { display: flex; flex-wrap: wrap; gap: 22px; }
.chz-cform__row label { flex: 1 1 200px; }
.chz-cform input, .chz-cform select, .chz-cform textarea { font-family: 'Noto Serif JP', serif; font-size: 16px; padding: 13px 14px; border: 1px solid rgba(51, 51, 51, 0.22); background: #fff; color: #333; outline: none; }
.chz-cform input:focus, .chz-cform select:focus, .chz-cform textarea:focus { border-color: #4c7d2a; }
.chz-cform textarea { resize: vertical; }
.chz-cform__submit { align-self: center; margin-top: 8px; border: none; background: #333; color: #fefefe; font-family: 'Shippori Mincho', serif; font-size: 16px; letter-spacing: 0.2em; padding: 17px 56px; cursor: pointer; transition: opacity 0.3s ease; }
.chz-cform__submit:hover { opacity: 0.85; }

/* ============ about ============ */
.chz-lead { max-width: 920px; margin: 0 auto; text-align: center; }
.chz-lead__big { font-family: 'Shippori Mincho', serif; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: 0.14em; line-height: 1.9; margin: 0 0 28px; color: #2b2b25; }
.chz-lead__vline { display: block; width: 1px; height: 52px; background: rgba(51, 51, 51, 0.3); margin: 0 auto 40px; }
.chz-lead__text { font-size: clamp(15px, 1.9vw, 17px); line-height: 2.4; letter-spacing: 0.05em; color: #41413a; margin: 0; text-wrap: balance; }

.chz-band { display: grid; grid-template-columns: 1fr 1fr; height: clamp(300px, 58vh, 600px); background: #e7e5db; overflow: hidden; }
.chz-band__cell { overflow: hidden; position: relative; }
.chz-band__cell img { position: absolute; inset: -16% 0; width: 100%; height: 132%; object-fit: cover; display: block; will-change: transform; }

.chz-story { max-width: 820px; margin: 0 auto; }
.chz-story__label { display: block; margin-bottom: 14px; }
.chz-story__h2 { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(22px, 3.2vw, 32px); letter-spacing: 0.1em; line-height: 1.7; margin: 0 0 36px; }
.chz-story__body { font-size: clamp(13.5px, 1.5vw, 15px); line-height: 2.3; letter-spacing: 0.04em; color: #41413a; display: flex; flex-direction: column; gap: 20px; }
.chz-story__body p { margin: 0; }
.chz-story__h3 { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(19px, 2.4vw, 24px); letter-spacing: 0.08em; margin: 80px 0 24px; color: #2b2b25; border-left: 3px solid #73e03c; padding-left: 16px; }

.chz-events { padding: 140px 6vw; background: #1e2e17; color: #eceadf; }
.chz-events__inner { max-width: 880px; margin: 0 auto; }
.chz-events__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: 0.18em; margin: 0 0 8px; text-align: center; }
.chz-events__sub { text-align: center; font-size: 14px; letter-spacing: 0.16em; color: #a9a79b; margin: 0 0 48px; }
.chz-events__row { display: flex; flex-wrap: wrap; gap: 8px 28px; padding: 22px 0; border-top: 1px solid rgba(236, 234, 223, 0.14); }
.chz-events__when { flex: 0 0 155px; font-family: 'Shippori Mincho', serif; font-size: 14px; letter-spacing: 0.06em; color: #c3d1a8; }
.chz-events__name { flex: 1 1 300px; font-family: 'Shippori Mincho', serif; font-weight: 500; font-size: clamp(17px, 2.2vw, 20px); letter-spacing: 0.08em; margin: 0; }

.chz-owl-sec { position: relative; overflow: hidden; }
.chz-owl-sec > * { position: relative; z-index: 1; }

.chz-owl__intro { display: flex; flex-wrap: wrap; gap: 120px; align-items: stretch; margin-bottom: 120px; }
.chz-owl__introimg { flex: 1 1 240px; min-width: 0; position: relative; }
.chz-owl__introimg-in { aspect-ratio: 3.5/4.3; background: #e2e0d6; overflow: hidden; }
.chz-owl__introimg-in img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chz-owl__introtext { flex: 1 1 360px; min-width: 0; display: flex; gap: 100px; justify-content: space-between; }
.chz-owl__introtext-body { align-self: center; max-width: 340px; font-size: clamp(14.5px, 1.7vw, 16px); line-height: 2.4; letter-spacing: 0.04em; color: #41413a; font-family: 'Shippori Mincho', serif; }
.chz-owl__introtext-body p:first-child { margin: 0 0 26px; }
.chz-owl__introtext-body p:last-child { margin: 0; }
.chz-owl__vtitle { writing-mode: vertical-rl; font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(24px, 4vw, 40px); letter-spacing: 0.24em; line-height: 1.35; margin: 0; color: #2b2b25; }
.chz-owl__feature { display: flex; flex-wrap: wrap-reverse; gap: 120px; align-items: center; }
.chz-owl__feature-text { flex: 1 1 73px; min-width: 0; }
.chz-owl__feature-text h3 { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(18px, 2.1vw, 22px); letter-spacing: 0.08em; line-height: 1.6; margin: 0 0 22px; }
.chz-owl__feature-text p { font-size: 15.5px; line-height: 2.35; color: #41413a; margin: 0; letter-spacing: 0.04em; }
.chz-owl__feature-img { flex: 1 1 300px; min-width: 0; }
.chz-owl__feature-img-in { aspect-ratio: 4/2.5; background: #e2e0d6; overflow: hidden; }
.chz-owl__feature-img-in img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ jusanmairi ============ */
.chz-jintro { padding: 110px 6vw 110px 0; background: #fefefe; overflow: hidden; }
.chz-jintro__inner { max-width: 1200px; margin: 0 auto; position: relative; display: flex; flex-direction: row; align-items: center; gap: 100px; }
.chz-jintro__vlabel { position: absolute; left: 0; top: 10px; }
.chz-jintro__vlabel span { writing-mode: vertical-rl; font-family: 'Shippori Mincho', serif; font-size: 20px; letter-spacing: 0.4em; color: #4c7d2a; }
.chz-jintro__text { flex: 0 0 60%; max-width: 60%; position: relative; z-index: 2; padding-left: 6vw; }
.chz-jintro__lead { font-family: 'Shippori Mincho', serif; font-size: clamp(19px, 2.6vw, 29px); letter-spacing: 0.1em; line-height: 1.9; margin: 0 0 30px; color: #2b2b25; }
.chz-jintro__body { font-size: clamp(14px, 1.7vw, 16px); line-height: 2.4; letter-spacing: 0.04em; color: #41413a; margin: 0; }
.chz-jintro__img { flex: 0 0 42%; max-width: 42%; position: relative; }
.chz-jintro__img-in { height: 560px; width: calc(100% + 30vw); background: #e7e5db; overflow: hidden; }
.chz-jintro__img-in img { width: auto; height: 100%; object-fit: contain; object-position: left center; display: block; }

.chz-note-block { max-width: 760px; margin: 0 auto; text-align: center; }
.chz-note-block__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: 0.12em; margin: 0 0 8px; }
.chz-note-block__vline { display: block; width: 40px; height: 1px; background: rgba(51, 51, 51, 0.28); margin: 24px auto 28px; }
.chz-note-block__text { font-size: clamp(14.5px, 1.7vw, 16px); line-height: 2.4; letter-spacing: 0.04em; color: #41413a; margin: 0; text-wrap: balance; }

.chz-guide-dl { max-width: 720px; margin: 0 auto; }
.chz-guide-dl__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(22px, 3.2vw, 30px); letter-spacing: 0.14em; margin: 0 0 34px; text-align: center; }
.chz-guide-dl__dl { margin: 0; border-top: 1px solid rgba(51, 51, 51, 0.14); }
.chz-guide-dl__row { display: flex; flex-wrap: wrap; gap: 6px 24px; padding: 20px 4px; border-bottom: 1px solid rgba(51, 51, 51, 0.10); }
.chz-guide-dl__dt { flex: 0 0 130px; font-family: 'Shippori Mincho', serif; font-size: 16px; letter-spacing: 0.1em; color: #6f6e64; margin: 0; }
.chz-guide-dl__dd { flex: 1 1 260px; margin: 0; font-size: 15.5px; line-height: 2; letter-spacing: 0.03em; color: #41413a; }
.chz-guide-dl__foot { text-align: center; margin-top: 44px; }
.chz-guide-dl__note { font-size: 13.5px; color: #8a897f; margin: 18px 0 0; letter-spacing: 0.06em; }

/* ============ kigan ============ */
.chz-kigan-top { padding: 96px 6vw 56px; }
.chz-kigan-intro { font-size: clamp(15px, 1.8vw, 16.5px); line-height: 2.5; letter-spacing: 0.05em; color: #41413a; margin: 0; }
.chz-kigan-hr { max-width: 1000px; margin: 0 auto; padding: 0 6vw; }
.chz-kigan-hr__line { height: 1px; background: rgba(51, 51, 51, 0.14); }
.chz-acc-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.chz-acc-head__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(19px, 2.6vw, 25px); letter-spacing: 0.1em; color: #2b2b25; margin: 0; }
.chz-acc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.chz-acc { background: #f6f5f0; }
.chz-acc__btn { width: 100%; border: none; background: none; cursor: pointer; display: flex; align-items: center; gap: 20px; padding: 22px 26px; text-align: left; font-family: 'Noto Serif JP', serif; }
.chz-acc__name { flex: 0 0 150px; font-family: 'Shippori Mincho', serif; font-weight: 500; font-size: clamp(15px, 1.9vw, 17px); letter-spacing: 0.08em; color: #2b2b25; }
.chz-acc__desc { flex: 1 1 auto; min-width: 0; font-size: 14px; line-height: 1.8; color: #6f6e64; letter-spacing: 0.03em; }
.chz-acc__caret { flex: 0 0 auto; color: #8a897f; transition: transform 0.3s ease; display: flex; }
.chz-acc.is-open .chz-acc__caret { transform: rotate(180deg); }
.chz-acc__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.chz-acc__panel p { margin: 0; padding: 0 26px 24px; font-size: 14.5px; line-height: 2.2; letter-spacing: 0.04em; color: #41413a; }
.chz-acc__link { padding: 0 26px 26px; }
.chz-acc__link a { font-family: 'Shippori Mincho', serif; font-size: 14px; letter-spacing: 0.1em; text-decoration: none; color: #4c7d2a; border-bottom: 1px solid rgba(76, 125, 42, 0.45); padding-bottom: 2px; }

.chz-fees__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(20px, 2.8vw, 27px); letter-spacing: 0.12em; margin: 0 0 32px; }
.chz-fees__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.chz-fees__item { border-left: 1px solid rgba(51, 51, 51, 0.18); padding-left: 20px; }
.chz-fees__name { font-family: 'Shippori Mincho', serif; font-weight: 500; font-size: clamp(16px, 2.1vw, 19px); letter-spacing: 0.08em; margin: 0 0 12px; color: #2b2b25; }
.chz-fees__price { font-size: 16px; letter-spacing: 0.06em; color: #41413a; }
.chz-fees__note { font-size: 13.5px; color: #8a897f; margin: 8px 0 0; letter-spacing: 0.03em; }

.chz-birthday__img { height: 440px; background: #e7e5db; overflow: hidden; margin-bottom: 100px; }
.chz-birthday__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chz-birthday__cols { display: flex; flex-wrap: wrap; gap: 100px; align-items: flex-start; padding: 0 30px; }
.chz-birthday__left { flex: 1 1 0; min-width: 0; }
.chz-birthday__h2 { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(23px, 3.2vw, 31px); letter-spacing: 0.14em; margin: 0 0 8px; }
.chz-birthday__catch { font-family: 'Shippori Mincho', serif; font-size: clamp(14px, 1.8vw, 16px); letter-spacing: 0.1em; color: #4c7d2a; margin: 0; }
.chz-birthday__right { flex: 1 1 300px; min-width: 0; font-size: 14.5px; line-height: 2.1; letter-spacing: 0.03em; color: #41413a; }
.chz-birthday__right p { margin: 0; }
.chz-birthday__foot { text-align: center; margin-top: 100px; }

/* ============ taiken ============ */
.chz-taiken-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 50px; }
.chz-taiken-item { display: flex; flex-wrap: wrap; gap: 0; background: #fefefe; }
.chz-taiken-item__img { flex: 1 1 300px; height: 260px; background: #e7e5db; overflow: hidden; }
.chz-taiken-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chz-taiken-item__body { flex: 2 1 360px; padding: clamp(26px, 3.6vw, 42px); padding-right: 0; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.chz-taiken-item__head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.chz-taiken-item__name { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 25px; letter-spacing: 0.1em; margin: 0; }
.chz-taiken-item__price { font-family: 'Shippori Mincho', serif; font-size: clamp(15px, 2vw, 18px); color: #4c7d2a; letter-spacing: 0.06em; }
.chz-taiken-item__desc { font-size: 16px; line-height: 2.2; color: #41413a; margin: 0; letter-spacing: 0.03em; white-space: pre-line; }
.chz-taiken-item__note { font-size: 13.5px; line-height: 1.9; color: #8a897f; margin: 0; letter-spacing: 0.03em; }
.chz-taiken-foot { text-align: center; margin-top: 8px; }
.chz-taiken-foot p { font-size: 14.5px; color: #5c5b52; line-height: 2; margin: 0 0 24px; letter-spacing: 0.03em; }

/* ============ news（一覧・詳細） ============ */
.chz-entrylist-sec { padding: 96px 6vw 110px; }
.chz-entrylist { max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 60px; }
.chz-entrylist__main { flex: 1 1 460px; min-width: 0; }
/* 一覧ページのCMS出力（.chz-news__item）：確実に縦積み＋サムネを大きく */
.chz-entrylist__main #cms-blog-entry-list-1-area { display: block; }
.chz-entrylist__main .chz-news__thumb { width: 180px; height: 120px; }
.chz-post { display: flex; gap: 22px; flex-wrap: wrap; text-decoration: none; color: #333; padding: 26px 0; border-bottom: 1px solid rgba(51, 51, 51, 0.10); align-items: center; }
.chz-post__thumb { flex: 0 0 180px; height: 120px; background: #f2f0e8; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.chz-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.chz-post__body { flex: 1 1 220px; min-width: 0; }
.chz-post__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.chz-post__date { font-family: 'Shippori Mincho', serif; font-size: 13px; color: #8a897f; letter-spacing: 0.06em; }
.chz-post__cat { font-size: 11px; letter-spacing: 0.1em; color: #4c7d2a; border: 1px solid rgba(76, 125, 42, 0.4); padding: 3px 9px; }
.chz-post__ttl { font-family: 'Shippori Mincho', serif; font-size: clamp(15px, 1.9vw, 17px); line-height: 1.8; margin: 0; letter-spacing: 0.03em; }
.chz-post:hover .chz-post__ttl { color: #4c7d2a; }

.chz-pager { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.chz-pager span, .chz-pager a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-family: 'Shippori Mincho', serif; font-size: 16px; border: 1px solid rgba(51, 51, 51, 0.16); color: #333; text-decoration: none; background: #fff; transition: background 0.3s ease, color 0.3s ease; }
.chz-pager .is-current { color: #fefefe; background: #333; }
.chz-pager a:hover { background: #333; color: #fefefe; }

.chz-side { flex: 0 1 260px; display: flex; flex-direction: column; gap: 40px; }
.chz-side__title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 18px; letter-spacing: 0.12em; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid #73e03c; }
.chz-side__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.chz-side__list--gap { gap: 14px; }
.chz-side__cat { display: flex; justify-content: space-between; text-decoration: none; color: #41413a; font-size: 14.5px; padding: 12px 2px; border-bottom: 1px solid rgba(51, 51, 51, 0.08); letter-spacing: 0.04em; transition: color 0.3s ease; }
.chz-side__cat:hover { color: #4c7d2a; }
.chz-side__cat-count { color: #8a897f; }
.chz-side__recent { text-decoration: none; color: #41413a; font-size: 14px; line-height: 1.7; letter-spacing: 0.03em; display: block; transition: color 0.3s ease; }
.chz-side__recent:hover { color: #4c7d2a; }
.chz-side__recent-date { display: block; font-size: 12px; color: #8a897f; margin-bottom: 3px; }
.chz-side__arch { text-decoration: none; color: #41413a; font-size: 14.5px; padding: 11px 2px; border-bottom: 1px solid rgba(51, 51, 51, 0.08); letter-spacing: 0.04em; display: block; transition: color 0.3s ease; }
.chz-side__arch:hover { color: #4c7d2a; }

.chz-phero-solid-spacer { display: block; padding: 205px 6vw 104px; }
.chz-article { max-width: 760px; margin: 0 auto; }
.chz-article__crumb { font-size: 13px; letter-spacing: 0.1em; color: #8a897f; margin-bottom: 28px; }
.chz-article__crumb a { color: #8a897f; text-decoration: none; }
.chz-article__crumb a:hover { color: #4c7d2a; }
.chz-article__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.chz-article__date { font-family: 'Shippori Mincho', serif; font-size: 14px; color: #8a897f; letter-spacing: 0.06em; }
.chz-article__cat { font-size: 11px; letter-spacing: 0.1em; color: #4c7d2a; border: 1px solid rgba(76, 125, 42, 0.4); padding: 3px 10px; }
.chz-article__h1 { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(17px, 3.8vw, 38px); line-height: 1.6; letter-spacing: 0.08em; margin: 0 0 36px; }
.chz-article__hero { height: clamp(220px, 42vh, 420px); background: #e7e5db; overflow: hidden; margin-bottom: 44px; }
.chz-article__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chz-article__body { font-size: clamp(15px, 1.8vw, 16.5px); line-height: 2.5; letter-spacing: 0.04em; color: #41413a; display: flex; flex-direction: column; gap: 24px; }
.chz-article__body p { margin: 0; }
.chz-article__body h2 { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: clamp(19px, 2.4vw, 23px); letter-spacing: 0.06em; margin: 12px 0 0; border-left: 3px solid #73e03c; padding-left: 16px; }
.chz-is-hidden { display: none; }
.chz-article__pager { margin-bottom: 28px; }
.chz-article__foot { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(51, 51, 51, 0.12); text-align: center; }
.chz-article__back { display: inline-block; text-decoration: none; color: #333; font-family: 'Shippori Mincho', serif; font-size: 16px; letter-spacing: 0.14em; border: 1px solid rgba(51, 51, 51, 0.25); padding: 14px 40px; transition: background 0.3s ease, color 0.3s ease; }
.chz-article__back:hover { background: #333; color: #fefefe; }

/* ============ レスポンシブ調整 ============ */
@media (max-width: 900px) {
  .chz-section, .chz-greet, .chz-news, .chz-guide, .chz-info, .chz-uranai, .chz-cform-sec { padding-left: 24px; padding-right: 24px; }
  .chz-kigan-top { padding: 72px 24px 40px; }
  .chz-section    { padding-top: 72px; padding-bottom: 72px; }
  .chz-section--lg { padding-top: 84px; padding-bottom: 84px; }
  .chz-section--md { padding-top: 68px; padding-bottom: 68px; }
  .chz-section--sm { padding-top: 56px; padding-bottom: 56px; }
  .chz-greet { padding-top: 80px; padding-bottom: 80px; }
  .chz-guide, .chz-info { padding-top: 80px; padding-bottom: 80px; }
  .chz-events { padding: 84px 24px; }
  .chz-phero { padding: 130px 24px 44px; }
  .chz-phero-solid-spacer { padding: 120px 24px 72px; }
  .chz-entrylist-sec { padding: 72px 24px 80px; }

  .chz-news__grid { grid-template-columns: 1fr; column-gap: 0; }
  .chz-guide__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .chz-fees__grid { grid-template-columns: 1fr; gap: 24px; }

  /* jusanmairi 非対称 → 縦積み */
  .chz-jintro { padding: 80px 24px; }
  .chz-jintro__inner { flex-direction: column; gap: 40px; }
  .chz-jintro__vlabel { display: none; }
  .chz-jintro__text { flex: 1 1 100%; max-width: 100%; padding-left: 0; }
  .chz-jintro__img { flex: 1 1 100%; max-width: 100%; }
  .chz-jintro__img-in { height: auto; width: 100%; }
  .chz-jintro__img-in img { width: 100%; height: auto; }

  /* about editorial → 余白圧縮 */
  .chz-owl__intro { gap: 48px; margin-bottom: 80px; }
  .chz-owl__introtext { gap: 40px; flex-direction: column-reverse; align-items: center; }
  .chz-owl__feature { gap: 48px; }
  .chz-story__h3 { margin-top: 56px; }
  .chz-owl__feature-text { flex: 1 1 100%; }

  .chz-birthday__cols { flex-direction: column; gap: 24px; padding: 0; }
  .chz-birthday__left, .chz-birthday__right { flex: 1 1 100%; }
  .chz-birthday__img { height: 300px; margin-bottom: 48px; }
  .chz-birthday__foot { margin-top: 56px; }

  .chz-taiken-item__body { padding: 26px 24px; }

  .chz-acc__btn { flex-wrap: wrap; gap: 6px 16px; }
  .chz-acc__name { flex: 1 1 100%; }
  .chz-acc__desc { flex: 1 1 100%; font-size: 13px; }

  /* お知らせ（TOP・一覧）：スマホはサムネの占める割合を小さく */
  .chz-news__thumb,
  .chz-entrylist__main .chz-news__thumb { width: 110px; height: 74px; }
  .chz-post__thumb { flex: 0 0 110px; height: 74px; }
  .chz-news__item { gap: 16px; }
  .chz-post { gap: 16px; }
  .chz-news__ttl { font-size: 13px; }
  .chz-article__back { font-size: 13px; }

  .chz-side { flex: 1 1 100%; }
  .chz-greet__deco-fuji { width: 180px; }
  /* スマホ：梟をごあいさつ本文の下・画像の上あたりに小さく配置 */
  .chz-greet__deco-owl { width: 90px; left: 50%; right: auto; transform: translateX(-50%); bottom: auto; top: 47%; opacity: 0.12; }
}
@media (max-width: 560px) {
  .chz-guide__grid { grid-template-columns: 1fr; gap: 14px; }
  .chz-guide-card { aspect-ratio: 16/7; }
  .chz-guide-card__cap { padding: 16px 18px; }
  .chz-cform__row { gap: 22px; }
  /* 基本情報テーブル：スマホは文字を少し小さく */
  .chz-info__dt, .chz-info__dd { font-size: 15px; }
  .chz-info__dt { flex-basis: 120px; }
  /* 成り立ち等の小ラベル：スマホは少し小さく */
  .chz-label { font-size: 16px; }
  /* スマホで改行しない <br> */
  .chz-br-sp-none { display: none; }
}
/* タブレット〜小デスクトップ：ごあいさつをPC同様の横並びに */
@media (min-width: 640px) and (max-width: 1119px) {
  .chz-greet__inner { flex-wrap: nowrap; gap: 4%; align-items: center; }
  .chz-greet__imgwrap { flex: 1 1 42%; max-width: 42%; }
  .chz-greet__textcol { flex: 1 1 54%; }
  .chz-greet__deco-owl { width: 150px; left: auto; right: -10px; transform: none; top: auto; bottom: -30px; opacity: 0.07; }
}
