/*
Theme Name: やすらぎホール
Theme URI: https://example.com/
Author: 株式会社ハラダ
Description: 松戸市の葬儀社「セレモニー やすらぎホール」公式サイト用カスタムテーマ。家族葬・一日葬・火葬式。明朗会計・1日1組貸切の自社式場・一級葬祭ディレクターが訴求軸。紫＋金＋黄マーカーの視覚言語。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yasuragi-hall
*/

/* ===========================================
   やすらぎホール / index5.html 専用 CSS
   新デザイン案を視覚言語として移植
   - 配色: 紫 + 金 + ピンク + 黄 + 緑
   - 本文 18px / 見出し大幅拡大
   - 黄色マーカー / 英字ラベル+菱形仕切り
   =========================================== */

/* ===== デザイントークン ===== */
:root {
  /* Brand Palette */
  --y-purple: #4A2B6B;
  --y-purple-deep: #3A1F58;
  --y-purple-darker: #2D1845;
  --y-purple-mid: #B89BD4;
  --y-purple-soft: #EDE5F5;
  --y-purple-softer: #F5EEFC;

  --y-gold: #C9A23A;
  --y-gold-soft: #E8C765;
  --y-gold-deep: #A8851F;

  --y-pink: #E94E5A;
  --y-pink-soft: #FFE3E5;
  --y-pink-softer: #FFF1F2;

  --y-yellow: #FFE873;
  --y-yellow-deep: #FFD93D;

  --y-green: #5BA46A;
  --y-green-soft: #DCEFD7;

  --y-ivory: #FFFAF0;
  --y-base: #F7F4F0;
  --y-base-warm: #FFFCE5;

  --y-text: #222222;
  --y-text-soft: #555555;
  --y-text-mute: #777777;
  --y-line: #E5DFEC;

  --y-shadow-sm: 0 2px 10px rgba(74, 43, 107, 0.06);
  --y-shadow-md: 0 6px 24px rgba(74, 43, 107, 0.10);
  --y-shadow-lg: 0 12px 48px rgba(74, 43, 107, 0.16);

  /* Typography */
  --ff-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --ff-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --ff-round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

/* ===== リセット ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--y-text);
  background: #fff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

strong {
  font-weight: 700;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  line-height: 1.4;
}

/* ===== 共通: 黄色マーカー / 仕切り ===== */
.marker-yellow {
  background: linear-gradient(transparent 60%, var(--y-yellow) 60%);
  padding: 0 4px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px auto 14px;
}

.section-divider-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--y-gold);
}

.section-divider-mark {
  font-size: 13px;
  color: var(--y-gold);
  font-family: var(--ff-serif);
}

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--y-line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 200px;
  height: 64px;
  background-image: url('image/logo.png');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-main a {
  font-size: 17px;
  font-weight: 700;
  color: var(--y-text);
  letter-spacing: 0.04em;
  position: relative;
  padding: 8px 4px;
}

.nav-main a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--y-purple);
  transition: width 0.3s ease;
}

.nav-main a:hover {
  color: var(--y-purple);
}

.nav-main a:hover::after {
  width: 100%;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tel-box {
  text-align: right;
}

.tel-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--y-purple-soft);
  color: var(--y-purple);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.tel-number {
  font-family: var(--ff-round);
  font-size: 30px;
  font-weight: 900;
  color: var(--y-gold);
  line-height: 1.1;
  display: block;
  letter-spacing: -0.01em;
}

.btn-contact {
  background: var(--y-purple);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(74, 43, 107, 0.28);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 43, 107, 0.36);
  background: var(--y-purple-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--y-purple);
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--y-ivory) 0%, #FFFFFF 50%, var(--y-purple-softer) 100%);
  overflow: hidden;
  padding-top: 88px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('image/top-image.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 1;
}

/* 青海波風の装飾レイヤー */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 18% 35%, rgba(184, 155, 212, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 65%, rgba(255, 232, 115, 0.18) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay-left {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 0 0;
  padding: 80px 60px 80px 80px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 0 24px 24px 0;
  border: 1px solid rgba(184, 155, 212, 0.28);
  box-shadow: 0 12px 48px rgba(74, 43, 107, 0.10);
}

.hero-illust {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 0;
  width: clamp(160px, 15vw, 240px);
}

.hero-illust img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--y-purple);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-badge::before {
  content: "★";
  color: var(--y-yellow);
  font-size: 14px;
}

.hero-title {
  font-family: var(--ff-sans);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 900;
  color: var(--y-purple);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-title-sub {
  display: inline-block;
  font-size: 0.78em;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-title-highlight {
  color: var(--y-pink);
  font-weight: 900;
}

.hero-title .marker-yellow {
  background: linear-gradient(transparent 55%, var(--y-yellow) 55%);
  padding: 0 6px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--y-text);
  line-height: 1.9;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-contact-card {
  background: #fff;
  border: 3px solid var(--y-gold);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 560px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(201, 162, 58, 0.12);
}

.hero-contact-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  background: var(--y-purple);
  padding: 8px 16px;
  border-radius: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.status-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.hero-tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--ff-round);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  color: var(--y-gold);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: opacity 0.3s;
}

.hero-tel-link:hover {
  opacity: 0.85;
}

.hero-tel-link svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--y-gold);
  stroke-width: 2;
  flex-shrink: 0;
}

.hero-contact-note {
  font-size: 13px;
  color: var(--y-text-mute);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--y-line);
  font-weight: 500;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--y-purple);
  color: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(74, 43, 107, 0.28);
  transition: all 0.3s ease;
  min-height: 64px;
}

.btn-hero-primary::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  background: var(--y-purple-deep);
  box-shadow: 0 12px 32px rgba(74, 43, 107, 0.36);
}

.btn-hero-primary:hover::after {
  transform: translateX(4px);
}

/* ===== 信頼の4ポイントバー ===== */
.trust-strip-wrap {
  padding: 32px 32px 0;
}

.trust-strip {
  background: #fff;
  border: 1px solid var(--y-line);
  border-radius: 16px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 4px 16px rgba(74, 43, 107, 0.06);
}

.trust-strip-item {
  text-align: center;
  border-right: 1px solid var(--y-line);
}

.trust-strip-item:last-child {
  border-right: none;
}

.trust-strip-num {
  font-family: var(--ff-round);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
}

.trust-strip-num-purple { color: var(--y-purple); }
.trust-strip-num-gold { color: var(--y-gold); }
.trust-strip-num-pink { color: var(--y-pink); }
.trust-strip-num-green { color: var(--y-green); }

.trust-strip-label {
  font-size: 14px;
  color: var(--y-text-soft);
  font-weight: 700;
  margin-top: 2px;
}

/* ===== セクション共通 ===== */
.section {
  padding: 110px 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-size: 14px;
  color: var(--y-gold);
  letter-spacing: 0.4em;
  font-weight: 700;
  font-family: var(--ff-serif);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-sans);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  color: var(--y-purple-deep);
  line-height: 1.4;
  margin-top: 4px;
}

.section-title::after {
  display: none;
}

.section-lead {
  text-align: center;
  color: var(--y-text-soft);
  margin-top: 12px;
  margin-bottom: 56px;
  font-size: 19px;
  line-height: 1.9;
}

/* ===== セクション見出し用イラスト（手描き風） ===== */
.section-illust {
  display: block;
  width: auto;
  margin: 0 auto 20px;
}

.section-illust--warning { height: 160px; }
.section-illust--yosan { height: 150px; }
.section-illust--plan { height: 120px; }
.section-illust--saidan { height: 140px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== お悩み ===== */
.concerns {
  background: #fff;
  position: relative;
}

.concerns-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.concerns-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.concern-item {
  background: var(--y-base);
  padding: 36px 28px;
  border-radius: 20px;
  border: 2px solid var(--y-purple-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  position: relative;
}

.concern-item-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.concern-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--y-shadow-md);
}

.concern-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--y-purple);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(74, 43, 107, 0.25);
}

.concern-title {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 900;
  color: var(--y-purple);
  line-height: 1.5;
  margin-top: 8px;
  text-align: center;
}

.concern-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  border: 2px dashed var(--y-purple-soft);
}

.concern-text {
  font-size: 17px;
  color: var(--y-text);
  line-height: 1.9;
}

/* ===== 解決策 ===== */
.solutions {
  background: linear-gradient(135deg, var(--y-purple) 0%, var(--y-purple-deep) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 232, 115, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(184, 155, 212, 0.18) 0%, transparent 40%);
  pointer-events: none;
}

.solutions-heading {
  font-family: var(--ff-sans);
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.solutions-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--y-yellow);
  margin: 16px auto 0;
  border-radius: 2px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.solution-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.10);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}

.solution-icon-bg {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 110px;
  height: 110px;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}

.solution-icon-bg svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
  stroke-width: 1.5;
}

.solution-item > *:not(.solution-icon-bg) {
  position: relative;
  z-index: 1;
}

.solution-check {
  width: 32px;
  height: 32px;
  background: var(--y-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-check::before {
  content: "✓";
  color: var(--y-purple-deep);
  font-weight: 900;
  font-size: 18px;
}

.solution-title {
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 19px;
  color: #fff;
}

.solution-text {
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.85;
}

/* ===== 共通テキストカラー ===== */
.text-pink { color: var(--y-pink); }
.text-purple { color: var(--y-purple); }
.text-yellow { color: var(--y-yellow); }

/* ===== メッセージブロック ===== */
.message-block {
  background: linear-gradient(180deg, #fff 0%, var(--y-purple-softer) 100%);
  position: relative;
  overflow: hidden;
}

.message-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='46' viewBox='0 0 40 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4C2E8' stroke-width='0.6'%3E%3Cpath d='M20 0L40 11.5V34.5L20 46L0 34.5V11.5z'/%3E%3Cpath d='M20 0L20 46M0 11.5L40 34.5M0 34.5L40 11.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 46px;
  opacity: 0.32;
  pointer-events: none;
}

.message-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.message-title {
  font-family: var(--ff-sans);
  font-size: clamp(1.95rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--y-purple-deep);
  margin: 12px auto 32px;
  letter-spacing: 0.02em;
}

.message-title-em {
  color: var(--y-pink);
}

.message-card-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}

.message-illust {
  width: 100%;
  height: auto;
  display: block;
}

.message-card {
  display: inline-block;
  background: #fff;
  padding: 36px 48px;
  border-radius: 16px;
  border: 2px solid var(--y-purple-soft);
  box-shadow: 0 8px 24px rgba(74, 43, 107, 0.08);
  max-width: 900px;
  text-align: left;
}

.message-card-lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--y-purple);
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: center;
}

.message-card-body {
  font-size: 18px;
  line-height: 1.95;
  color: var(--y-text);
}

.message-arrow {
  margin-top: 36px;
  color: var(--y-purple-mid);
  display: flex;
  justify-content: center;
  opacity: 0.7;
}

/* ===== 警告ブロック（安すぎる葬儀にはご注意ください） ===== */
.warning-block {
  background: #FFF8E1;
  border-top: 4px solid var(--y-yellow-deep);
  border-bottom: 4px solid var(--y-yellow-deep);
}

.warning-header {
  text-align: center;
  margin-bottom: 48px;
}

.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFE3E5;
  color: var(--y-pink);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.warning-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.warning-title {
  font-family: var(--ff-sans);
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--y-purple-deep);
  margin-bottom: 18px;
}

.warning-lead {
  font-size: 18px;
  color: var(--y-text);
  line-height: 1.9;
  margin-top: 12px;
}

.warning-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.warning-checklist {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  border: 2px solid #FFE3E5;
}

.warning-checklist-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  color: var(--y-purple);
  margin-bottom: 22px;
  line-height: 1.4;
}

.warning-check-circle {
  width: 32px;
  height: 32px;
  background: var(--y-purple-soft);
  color: var(--y-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-check-circle svg {
  width: 18px;
  height: 18px;
}

.warning-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.warning-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 700;
  color: var(--y-text);
  line-height: 1.6;
  padding-left: 36px;
  position: relative;
}

.warning-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--y-green-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%235BA46A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.warning-hidden-cost {
  background: var(--y-pink);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(233, 78, 90, 0.20);
}

.warning-hc-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  opacity: 0.92;
  margin-bottom: 8px;
}

.warning-hc-title {
  font-family: var(--ff-sans);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1.4;
}

.warning-hc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.warning-hc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
}

.hc-amount {
  font-family: var(--ff-round);
  font-size: 19px;
  letter-spacing: -0.01em;
}

.warning-hc-note {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.hc-emph {
  font-size: 19px;
  font-weight: 900;
}

/* ===== 後悔しない葬儀社選びのポイント ===== */
.selection-points {
  background: linear-gradient(180deg, #FFFCE5 0%, var(--y-ivory) 100%);
}

.selection-header {
  text-align: center;
  margin-bottom: 48px;
}

.selection-pre-badge {
  display: inline-block;
  background: var(--y-purple);
  color: #fff;
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(74, 43, 107, 0.25);
}

.selection-title {
  font-family: var(--ff-sans);
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--y-purple-deep);
  margin-bottom: 18px;
}

.selection-lead {
  font-size: 19px;
  color: var(--y-text);
  line-height: 1.9;
  margin-top: 14px;
}

.selection-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 3px solid var(--y-purple-soft);
  box-shadow: 0 12px 40px rgba(74, 43, 107, 0.08);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.selection-planner {
  text-align: center;
  position: relative;
}

.planner-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--y-purple-soft);
  background-image: url('image/planner.jpeg');
  background-size: cover;
  background-position: center 35%;
  margin: 0 auto 12px;
  border: 6px solid #fff;
  box-shadow: 0 0 0 3px var(--y-purple-soft), 0 8px 20px rgba(74, 43, 107, 0.18);
  position: relative;
}

.planner-bubble {
  position: absolute;
  top: 0;
  right: -8px;
  background: var(--y-yellow);
  color: var(--y-purple-deep);
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  border: 2px solid var(--y-gold);
  box-shadow: 0 4px 12px rgba(201, 162, 58, 0.25);
}

.planner-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--y-yellow);
}

.planner-info {
  margin-top: 12px;
}

.planner-role {
  font-size: 13px;
  color: var(--y-text-mute);
  font-weight: 700;
  margin-bottom: 2px;
}

.planner-name {
  font-size: 16px;
  color: var(--y-purple);
  font-weight: 900;
}

.selection-points-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.selection-block-ribbon {
  display: inline-block;
  padding: 10px 28px;
  font-family: var(--ff-round);
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  border-radius: 8px 8px 0 0;
  letter-spacing: 0.05em;
}

.selection-block-fee .selection-block-ribbon {
  background: var(--y-purple);
}

.selection-block-content .selection-block-ribbon {
  background: var(--y-green);
}

.selection-block ul {
  list-style: none;
  border-radius: 0 12px 12px 12px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid;
}

.selection-block-fee ul {
  background: #F5EEFC;
  border-color: var(--y-purple);
}

.selection-block-content ul {
  background: #EEF7EE;
  border-color: var(--y-green);
}

.selection-block li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.selection-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.selection-block-fee .selection-check { color: var(--y-purple); }
.selection-block-content .selection-check { color: var(--y-green); }

.selection-check svg {
  width: 16px;
  height: 16px;
}

.selection-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 2px;
  color: var(--y-text);
}

.selection-em {
  background: linear-gradient(transparent 60%, #FFE3E5 60%);
  color: var(--y-pink);
  padding: 0 4px;
  font-weight: 900;
}

.selection-bridge {
  text-align: center;
  margin-top: 48px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--y-purple);
  letter-spacing: 0.04em;
}

/* ===== 私たちの想い ===== */
.philosophy {
  background: linear-gradient(180deg, var(--y-ivory) 0%, #fff 100%);
  position: relative;
}

.philosophy-block {
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-ceo {
  background: #fff;
  border: 2px solid var(--y-purple-soft);
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(74, 43, 107, 0.06);
}

.philosophy-director {
  background: linear-gradient(135deg, var(--y-purple) 0%, var(--y-purple-deep) 100%);
  color: #fff;
  grid-template-columns: 1fr 220px;
  box-shadow: 0 12px 40px rgba(74, 43, 107, 0.18);
}

/* 人物写真を廃止し、本文のみの1カラムレイアウトにする修飾クラス */
.philosophy-block.philosophy-block--full {
  grid-template-columns: 1fr;
}

/* CEOブロック：テキストとイラストの2カラム内包グリッド */
.philosophy-ceo-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}

.philosophy-illust {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.philosophy-signature {
  margin-top: 24px;
  text-align: right;
  font-size: 20px;
  font-weight: 900;
  color: var(--y-purple);
}

.philosophy-pre-label {
  font-family: var(--ff-serif);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--y-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.philosophy-pre-label-light {
  color: var(--y-yellow);
}

.philosophy-heading {
  font-family: var(--ff-sans);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--y-purple);
  line-height: 1.55;
  margin-bottom: 20px;
}

.philosophy-heading-light {
  color: #fff;
}

.philosophy-text {
  font-size: 17px;
  line-height: 2;
  color: var(--y-text);
}

.philosophy-text-light {
  color: rgba(255, 255, 255, 0.96);
}

.philosophy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.philosophy-tags span {
  background: rgba(255, 255, 255, 0.16);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== 5つのポイント（濃紫BG） ===== */
.five-points {
  background: var(--y-purple-deep);
  position: relative;
  overflow: hidden;
}

.five-points::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(184, 155, 212, 0.10) 0%, transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(255, 232, 115, 0.06) 0%, transparent 38%);
  pointer-events: none;
}

.five-points::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237B539B' stroke-width='0.7'%3E%3Cpath d='M30 0L60 17.5V52.5L30 70L0 52.5V17.5z'/%3E%3Cpath d='M30 0L30 70M0 17.5L60 52.5M0 52.5L60 17.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 70px;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: screen;
}

.five-points .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.five-points-header {
  text-align: center;
  margin-bottom: 64px;
}

.five-points-title {
  font-family: var(--ff-sans);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.five-points-title-em {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--y-yellow);
  background: linear-gradient(transparent 58%, rgba(255, 232, 115, 0.22) 58%);
  padding: 0 20px;
  letter-spacing: 0.03em;
}

.five-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.point-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.point-num {
  position: absolute;
  top: -22px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--y-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-round);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 16px rgba(201, 162, 58, 0.40);
  border: 3px solid #fff;
}

.point-new {
  position: absolute;
  top: -10px;
  left: 92px;
  background: var(--y-pink);
  color: #fff;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 10px rgba(233, 78, 90, 0.40);
}

.point-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.point-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--y-purple-soft);
  color: var(--y-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon svg {
  width: 38px;
  height: 38px;
}

.point-title {
  font-family: var(--ff-sans);
  font-size: 21px;
  font-weight: 900;
  color: var(--y-purple);
  line-height: 1.45;
  flex: 1;
}

.point-highlight {
  background: var(--y-pink-soft);
  color: var(--y-pink);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.point-highlight::before {
  content: "★ ";
  font-size: 14px;
}

.point-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--y-text);
}

.point-card-plus {
  background: linear-gradient(135deg, var(--y-gold) 0%, var(--y-gold-soft) 100%);
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  box-shadow: 0 12px 32px rgba(201, 162, 58, 0.30);
}

.point-plus-mark {
  font-family: var(--ff-round);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.point-plus-title {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.55;
}

.point-plus-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.96);
}

/* ===== 料金比較 ===== */
.comparison {
  background: linear-gradient(180deg, #FFFCE5 0%, var(--y-ivory) 100%);
  position: relative;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto 40px;
}

.comparison-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: visible;
}

.comparison-card-featured {
  background: linear-gradient(180deg, #FFFCE5 0%, #fff 100%);
  border: 4px solid var(--y-gold);
  box-shadow: 0 12px 32px rgba(201, 162, 58, 0.15);
}

.comparison-card-other {
  background: #F5F5F5;
  border: 2px solid #DDD;
}

.comparison-card-badge {
  position: absolute;
  top: -16px;
  right: 28px;
  background: var(--y-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(201, 162, 58, 0.35);
}

.comparison-card-badge::before {
  content: "★ ";
}

.comparison-card-title {
  font-family: var(--ff-sans);
  font-size: 28px;
  font-weight: 900;
  color: var(--y-purple);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.comparison-card-title-other {
  color: var(--y-text);
  margin-top: 8px;
}

/* --- 主役ブロック：含まれる/別料金の項目数 --- */
.comparison-hero {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.comparison-hero-good {
  border: 2px solid var(--y-green);
}

.comparison-hero-other {
  border: 2px solid #BBB;
}

.comparison-hero-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--y-text);
  margin-bottom: 4px;
}

.comparison-hero-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  margin-bottom: 8px;
}

.comparison-hero-num {
  font-family: var(--ff-round);
  font-size: 84px;
  font-weight: 900;
}

.comparison-hero-unit {
  font-size: 28px;
  font-weight: 900;
}

.comparison-hero-good .comparison-hero-num,
.comparison-hero-good .comparison-hero-unit {
  color: var(--y-green);
}

.comparison-hero-other .comparison-hero-num,
.comparison-hero-other .comparison-hero-unit {
  color: #888;
}

.comparison-hero-pill {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.comparison-hero-good .comparison-hero-pill {
  background: var(--y-green-soft);
  color: var(--y-green);
}

.comparison-hero-other .comparison-hero-pill {
  background: #EAEAEA;
  color: #666;
}

/* --- 含まれる内容リスト --- */
.comparison-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.comparison-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--y-green-soft);
}

.comparison-item-row-other {
  border-color: #E5E5E5;
}

.comparison-check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.comparison-check-circle-good {
  background-color: var(--y-green);
}

.comparison-check-circle-muted {
  background-color: #CCC;
}

.comparison-check-circle-partial {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #E5E5E5;
  background-image: none;
  color: #777;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-item-name {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--y-text);
}

.comparison-item-name-muted {
  color: var(--y-text-soft);
}

.comparison-item-badge {
  font-size: 13px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.comparison-item-badge-good {
  color: var(--y-green);
  background: var(--y-green-soft);
}

.comparison-item-badge-muted {
  color: #888;
  background: #EEE;
}

.comparison-item-badge-warn {
  color: #A05050;
  background: #F5E5E5;
}

.comparison-card-footer {
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
}

.comparison-card-footer-good {
  background: var(--y-green);
  color: #fff;
}

.comparison-card-footer-bad {
  background: #EEE;
  color: var(--y-text-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* --- まとめカード：含まれる範囲の違いを訴求 --- */
.comparison-closing {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--y-purple-soft) 0%, #FFFAF0 100%);
  border: 2px solid var(--y-purple-soft);
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
}

.comparison-closing-illust {
  display: block;
  width: 340px;
  height: auto;
  margin: 0 auto 16px;
}

.comparison-closing-title {
  font-family: var(--ff-sans);
  font-size: 30px;
  font-weight: 900;
  color: var(--y-purple-deep);
  line-height: 1.5;
  margin-bottom: 16px;
}

.comparison-closing-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--y-text);
  max-width: 780px;
  margin: 0 auto 28px;
}

.comparison-closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-comparison-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--y-purple);
  color: #fff;
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  min-height: 60px;
  min-width: 240px;
  box-shadow: 0 6px 16px rgba(74, 43, 107, 0.25);
  transition: all 0.3s ease;
}

.btn-comparison-primary:hover {
  transform: translateY(-2px);
  background: var(--y-purple-deep);
}

.btn-comparison-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--y-purple);
  border: 2px solid var(--y-purple);
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  min-height: 60px;
  min-width: 240px;
  transition: all 0.3s ease;
}

.btn-comparison-outline:hover {
  background: var(--y-purple);
  color: #fff;
}

/* ===== 料金プラン ===== */
.plans {
  background: #fff;
}

.plans-intro {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 900;
  color: var(--y-purple-deep);
  margin-bottom: 48px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.plans-grid-v2 {
  max-width: 1180px;
  margin: 0 auto 48px;
}

.plan-card-v2 {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--y-shadow-lg);
}

.plan-card-gold { border-color: var(--y-gold); }
.plan-card-green { border-color: var(--y-green); }
.plan-card-purple { border-color: var(--y-purple); }

.plan-tab-v2 {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.05em;
}

.plan-card-gold .plan-tab-v2 { background: var(--y-gold); }
.plan-card-green .plan-tab-v2 { background: var(--y-green); }
.plan-card-purple .plan-tab-v2 { background: var(--y-purple); }

.plan-tab-arrow {
  font-size: 18px;
  font-weight: 900;
}

.plan-body-v2 {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.plan-name-v2 {
  font-family: var(--ff-round);
  font-size: 32px;
  font-weight: 900;
  color: var(--y-purple-deep);
  text-align: center;
  letter-spacing: 0.05em;
}

.plan-card-gold .plan-name-v2 { color: var(--y-gold-deep); }
.plan-card-green .plan-name-v2 { color: var(--y-green); }
.plan-card-purple .plan-name-v2 { color: var(--y-purple); }

.plan-img-v2 {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.plan-pricing-v2 {
  text-align: center;
  padding: 12px 0;
  border-top: 2px dashed var(--y-line);
  border-bottom: 2px dashed var(--y-line);
}

.plan-sale-v2 {
  font-family: var(--ff-round);
  font-size: 36px;
  font-weight: 900;
  color: var(--y-pink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.01em;
}

.sale-arrow {
  color: var(--y-gold);
  font-size: 24px;
}

.sale-unit {
  font-size: 18px;
  color: var(--y-text);
  font-weight: 700;
}

.sale-tax {
  font-size: 12px;
  color: var(--y-text-mute);
  font-weight: 700;
  margin-left: 4px;
  background: var(--y-base);
  padding: 2px 8px;
  border-radius: 4px;
}

.plan-features-v2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-features-v2 li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--y-text);
  padding: 4px 0;
}

.plan-features-v2 li::before {
  content: "✓";
  color: var(--y-green);
  font-weight: 900;
}

.plan-recommend-v2 {
  background: var(--y-base);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--y-text);
  line-height: 1.8;
}

.plan-recommend-v2 strong {
  display: block;
  color: var(--y-purple);
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.plan-bottom-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.plan-ceremony-v2 {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid;
  letter-spacing: 0.05em;
}

.plan-ceremony-v2.active {
  background: var(--y-purple);
  color: #fff;
  border-color: var(--y-purple);
}

.plan-ceremony-v2.inactive {
  background: #F0F0F0;
  color: #BBB;
  border-color: #E0E0E0;
  text-decoration: line-through;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--y-purple);
  color: var(--y-purple);
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  background: #fff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--y-purple);
  color: #fff;
  transform: translateY(-2px);
}

.plans-more {
  text-align: center;
}

/* ===== 三つのお約束 ===== */
.promises {
  background: linear-gradient(180deg, var(--y-base) 0%, #fff 100%);
  position: relative;
}

.promises-list-rich {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.promise-rich-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.promise-rich-item:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.promise-rich-item:nth-child(even) .promise-rich-image {
  order: 2;
}

.promise-rich-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--y-shadow-md);
}

.promise-rich-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.promise-rich-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid var(--y-purple-soft);
  border-radius: 24px;
  pointer-events: none;
}

.promise-rich-content {
  padding: 0 8px;
}

.promise-rich-badge {
  display: inline-block;
  background: var(--y-gold);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  font-family: var(--ff-serif);
}

.promise-rich-title {
  font-family: var(--ff-sans);
  font-size: 30px;
  font-weight: 900;
  color: var(--y-purple-deep);
  margin-bottom: 18px;
  line-height: 1.45;
}

.promise-rich-text {
  font-size: 17px;
  color: var(--y-text);
  line-height: 1.95;
}

.promise-rich-text strong {
  background: linear-gradient(transparent 60%, var(--y-yellow) 60%);
  padding: 0 4px;
  font-weight: 900;
  color: var(--y-purple-deep);
}

.promise-plus {
  max-width: 800px;
  margin: 64px auto 0;
  background: linear-gradient(135deg, var(--y-gold) 0%, var(--y-gold-soft) 100%);
  border-radius: 20px;
  padding: 32px 40px;
  position: relative;
  color: #fff;
  box-shadow: 0 8px 32px rgba(201, 162, 58, 0.25);
}

.promise-plus-badge {
  position: absolute;
  top: -16px;
  left: 32px;
  background: var(--y-purple);
  color: #fff;
  font-family: var(--ff-round);
  font-size: 22px;
  font-weight: 900;
  padding: 6px 22px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(74, 43, 107, 0.3);
}

.promise-plus-content {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
}

.promise-plus-avatar {
  width: 96px;
  height: 96px;
  background: var(--y-purple-soft);
  background-image: url('image/director.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(74, 43, 107, 0.25);
}

.promise-plus-title {
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.promise-plus-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
}

/* ===== トピックス（お知らせ） ===== */
.topics {
  background: #fff;
  position: relative;
}

.topics-list {
  max-width: 880px;
  margin: 0 auto;
}

.topic-item {
  display: flex;
  gap: 32px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--y-line);
  transition: background 0.3s ease, padding 0.3s ease;
  align-items: center;
}

.topic-item:first-child {
  border-top: 1px solid var(--y-line);
}

.topic-item:hover {
  background: var(--y-base);
  padding-left: 28px;
}

.topic-date {
  font-family: var(--ff-round);
  font-size: 18px;
  color: var(--y-purple);
  white-space: nowrap;
  font-weight: 900;
  background: var(--y-purple-soft);
  padding: 4px 16px;
  border-radius: 999px;
  flex-shrink: 0;
}

.topic-title {
  font-size: 18px;
  color: var(--y-text);
  font-weight: 700;
}

/* ===== お客様の声 ===== */
.testimonials {
  background: linear-gradient(180deg, var(--y-purple-softer) 0%, #fff 100%);
  position: relative;
}

.testimonial-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-hero-text {
  padding: 0 8px;
}

.testimonial-hero-title {
  font-family: var(--ff-sans);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--y-purple-deep);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.testimonial-hero-title::before {
  content: "VOICE";
  display: block;
  font-size: 14px;
  color: var(--y-gold);
  letter-spacing: 0.4em;
  font-weight: 700;
  font-family: var(--ff-serif);
  margin-bottom: 6px;
}

.testimonial-hero-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--y-purple);
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-hero-desc {
  font-size: 17px;
  color: var(--y-text);
  line-height: 1.95;
}

.testimonial-diamonds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
  transform: rotate(-2deg);
}

.diamond {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  transform: rotate(45deg);
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(74, 43, 107, 0.18);
  max-width: 110px;
}

.diamond:nth-child(2) {
  transform: rotate(45deg) translate(8px, 0);
}

.testimonials-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--y-shadow-sm);
  border: 2px solid var(--y-purple-soft);
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--y-shadow-md);
}

.testimonial-reverse {
  grid-template-columns: 1fr 200px;
}

.testimonial-reverse .testimonial-avatar {
  order: 2;
}

.testimonial-avatar {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 6px solid var(--y-purple-soft);
  box-shadow: 0 6px 18px rgba(74, 43, 107, 0.15);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
}

.testimonial-meta {
  display: inline-block;
  font-size: 14px;
  color: var(--y-purple);
  background: var(--y-purple-soft);
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-bottom: 12px;
}

.testimonial-title {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 900;
  color: var(--y-purple-deep);
  line-height: 1.5;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 17px;
  color: var(--y-text);
  line-height: 1.9;
}

/* ===== FAQ ===== */
.faq {
  background: #fff;
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('image/back-image.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--y-purple-soft);
  transition: all 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--y-shadow-md);
  border-color: var(--y-purple-mid);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: var(--y-purple-softer);
}

.faq-q-badge {
  width: 40px;
  height: 40px;
  background: var(--y-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-round);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(74, 43, 107, 0.25);
}

.faq-q-text {
  flex: 1;
  font-size: 19px;
  font-weight: 700;
  color: var(--y-text);
  line-height: 1.6;
}

.faq-icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
  background: var(--y-purple-soft);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--y-purple);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 4px 24px 24px 86px;
  background: var(--y-base);
}

.faq-answer p {
  font-size: 18px;
  color: var(--y-text);
  line-height: 1.9;
}

/* ===== 施設案内 ===== */
.facilities {
  background: var(--y-base);
}

.facility-main {
  max-width: 1000px;
  margin: 0 auto 48px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: var(--y-shadow-md);
  border: 3px solid var(--y-purple-soft);
}

.facility-main-image {
  position: relative;
  background: linear-gradient(135deg, var(--y-purple) 0%, var(--y-purple-deep) 100%);
  background-image: url('image/other-assets/yasuragi-hall-exterior.jpg');
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.facility-main-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--y-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(201, 162, 58, 0.35);
  z-index: 2;
}

.facility-main-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-main-title {
  font-family: var(--ff-sans);
  font-size: 30px;
  font-weight: 900;
  color: var(--y-purple-deep);
  margin-bottom: 8px;
}

.facility-main-features {
  font-size: 15px;
  color: var(--y-purple);
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--y-purple-soft);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.facility-main-desc {
  font-size: 17px;
  color: var(--y-text);
  line-height: 1.9;
  margin-bottom: 22px;
}

.facility-main-note {
  background: linear-gradient(135deg, var(--y-yellow-deep) 0%, var(--y-yellow) 100%);
  border-radius: 12px;
  padding: 16px 20px;
}

.facility-main-note strong {
  display: block;
  font-family: var(--ff-sans);
  color: var(--y-purple-deep);
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 900;
}

.facility-main-note span {
  font-size: 14px;
  color: var(--y-text);
  font-weight: 600;
}

.facility-list {
  max-width: 1000px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.facility-item {
  background: #fff;
  border: 2px solid var(--y-purple-soft);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--y-shadow-md);
}

.facility-item-image {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.facility-item-info {
  flex: 1;
}

.facility-item-name {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 900;
  color: var(--y-purple);
  margin-bottom: 6px;
}

.facility-item-location {
  font-size: 16px;
  color: var(--y-text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.facility-item-location svg {
  width: 16px;
  height: 16px;
  stroke: var(--y-purple);
  flex-shrink: 0;
}

.facility-other {
  max-width: 1000px;
  margin: 0 auto;
}

.facility-other-title {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 900;
  color: var(--y-purple);
  margin-bottom: 24px;
  position: relative;
}

.facility-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.facility-other-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  border: 2px solid var(--y-purple-soft);
  transition: transform 0.3s ease;
}

.facility-other-item:hover {
  transform: translateY(-3px);
}

.facility-other-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.facility-other-icon {
  width: 100%;
  height: 100px;
  background: var(--y-purple-softer);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.facility-other-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--y-purple);
  fill: none;
  stroke-width: 1.5;
}

.facility-other-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--y-purple);
  margin-bottom: 4px;
}

.facility-other-address {
  font-size: 14px;
  color: var(--y-text-soft);
}

.facility-note {
  font-size: 13px;
  color: var(--y-text-soft);
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 4px solid var(--y-gold);
  line-height: 1.85;
}

.facility-note strong {
  color: var(--y-pink);
  font-weight: 900;
}

/* ===== アクセス ===== */
.access {
  background: #fff;
}

.access-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.access-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--y-shadow-md);
  border: 3px solid var(--y-purple-soft);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.access-info {
  background: linear-gradient(135deg, var(--y-purple) 0%, var(--y-purple-deep) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.access-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 232, 115, 0.10) 0%, transparent 40%);
  pointer-events: none;
}

.access-info > * {
  position: relative;
  z-index: 1;
}

.access-info h3 {
  font-family: var(--ff-sans);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.access-info h3::before {
  content: "Yasuragi Hall";
  display: block;
  font-size: 13px;
  color: var(--y-yellow);
  letter-spacing: 0.3em;
  font-weight: 700;
  font-family: var(--ff-serif);
  margin-bottom: 4px;
}

.access-address {
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 24px;
  opacity: 0.95;
}

.access-address strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--y-yellow);
}

.access-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s ease;
}

.btn-access svg {
  width: 18px;
  height: 18px;
}

.btn-access-primary {
  background: var(--y-yellow);
  color: var(--y-purple-deep);
}

.btn-access-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-access-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-access-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ===== CTAセクション ===== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--y-purple-deep) 0%, var(--y-purple) 100%);
  padding: 110px 32px;
  overflow: hidden;
}

.cta-section-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('image/top-image.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 56px 48px;
}

.cta-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 2;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--ff-sans);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.cta-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--y-yellow);
  margin: 16px auto 0;
  border-radius: 2px;
}

.cta-tel {
  background: #fff;
  border: 4px solid var(--y-gold);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-tel-label {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
  display: inline-block;
  background: var(--y-purple-soft);
  color: var(--y-purple);
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.cta-tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--ff-round);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 900;
  color: var(--y-gold);
  margin: 12px 0;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cta-tel-number svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--y-gold);
  stroke-width: 2;
}

.cta-tel-note {
  font-size: 14px;
  color: var(--y-text-mute);
  font-weight: 600;
}

.btn-cta {
  display: inline-block;
  background: var(--y-yellow);
  color: var(--y-purple-deep);
  padding: 20px 48px;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  min-height: 64px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  background: #fff;
}

/* ===== フッター ===== */
.footer {
  background: var(--y-purple-darker);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--y-purple-soft);
  background-image: url('image/logo.png');
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-logo-text {
  font-family: var(--ff-round);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-tel {
  font-family: var(--ff-round);
  font-size: 22px;
  font-weight: 900;
  color: var(--y-yellow);
  margin-top: 6px;
}

.footer-nav-title {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-left: 12px;
}

.footer-nav-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--y-gold);
  border-radius: 2px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--y-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--y-yellow);
}

/* ===== レスポンシブ ===== */
@media (max-width: 1250px) {
  /* .hero-content(右端 最大720px)との重なりを避けるため、
     イラストカードは中間幅で非表示にする。1080px以下も本ルールに含まれる。 */
  .hero-illust { display: none; }
}

@media (max-width: 1080px) {
  .header-inner { padding: 0 24px; height: 76px; }
  .nav-main { gap: 18px; }
  .nav-main a { font-size: 14px; }
  .tel-number { font-size: 20px; }
  .btn-contact { padding: 10px 18px; font-size: 14px; }
  .logo-icon { width: 160px; height: 56px; }

  .hero-content { padding: 60px 32px; max-width: 90%; border-radius: 24px; margin: 0 auto; }
  .hero-title { font-size: clamp(2rem, 4.5vw, 2.6rem); }

  .trust-strip-wrap { padding: 28px 24px 0; }

  .section { padding: 80px 24px; }

  .concerns-grid-3col,
  .solutions-grid,
  .comparison-cards,
  .plans-grid,
  .promises-list-rich,
  .testimonials-list,
  .facility-list,
  .facility-other-grid,
  .five-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-rich-item,
  .promise-rich-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promise-rich-item:nth-child(even) .promise-rich-image {
    order: 0;
  }

  .warning-grid { grid-template-columns: 1fr; gap: 24px; }
  .selection-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .selection-planner { display: flex; flex-direction: column; align-items: center; }
  .philosophy-block,
  .philosophy-director { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }

  .access-inner { grid-template-columns: 1fr; }

  .testimonial-hero { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav-main,
  .header-contact .tel-box,
  .header-contact .btn-contact {
    display: none;
  }

  .hamburger { display: flex; }

  .header-inner { height: 64px; padding: 0 16px; }
  .logo-icon { width: 130px; height: 44px; }

  .hero { min-height: auto; padding-top: 64px; }
  .hero-content { padding: 48px 24px; margin: 32px 16px; max-width: none; border-radius: 20px; }
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .hero-subtitle { font-size: 16px; }
  .hero-tel-link { font-size: clamp(1.6rem, 7vw, 2.2rem); gap: 8px; }
  .hero-tel-link svg { width: 28px; height: 28px; }
  .hero-contact-card { padding: 18px 16px; }
  .btn-hero-primary { padding: 16px 24px; font-size: 16px; width: 100%; }

  .trust-strip-wrap { padding: 24px 16px 0; }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 20px 16px;
  }
  .trust-strip-item {
    padding: 14px 8px;
    border-right: 1px solid var(--y-line);
    border-bottom: 1px solid var(--y-line);
  }
  .trust-strip-item:nth-child(2n) { border-right: none; }
  .trust-strip-item:nth-child(n+3) { border-bottom: none; }
  .trust-strip-num { font-size: 22px; }
  .trust-strip-label { font-size: 13px; }

  .section { padding: 64px 16px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-lead { font-size: 15px; margin-bottom: 36px; }

  .concerns-grid,
  .concerns-grid-3col,
  .solutions-grid,
  .comparison-cards,
  .plans-grid,
  .testimonials-list,
  .facility-list,
  .facility-other-grid,
  .five-points-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .point-num { left: 20px; width: 48px; height: 48px; font-size: 19px; }
  .point-new { left: 80px; }
  .point-icon { width: 60px; height: 60px; }
  .point-icon svg { width: 32px; height: 32px; }
  .point-title { font-size: 19px; }
  .point-plus-mark { font-size: 48px; }

  .message-card { padding: 28px 24px; }
  .message-card-row { grid-template-columns: 1fr; }
  .message-illust { max-width: 200px; width: 100%; margin: 0 auto 20px; }
  .warning-checklist, .warning-hidden-cost { padding: 24px 22px; }
  .warning-checks li { font-size: 16px; }
  .warning-hc-title { font-size: 22px; }
  .section-illust--warning { height: 120px; }
  .section-illust--yosan { height: 110px; }
  .section-illust--plan { height: 90px; }
  .section-illust--saidan { height: 100px; }

  .planner-photo { width: 160px; height: 160px; }
  .selection-text { font-size: 16px; }
  .selection-block-ribbon { font-size: 17px; padding: 8px 22px; }

  .philosophy-heading { font-size: 22px; }
  .philosophy-text { font-size: 16px; }
  .philosophy-signature { font-size: 18px; }
  .philosophy-ceo-row { grid-template-columns: 1fr; gap: 24px; }
  .philosophy-illust { max-width: 220px; width: 100%; margin: 0 auto; }

  .solutions { padding: 36px 24px; }
  .solutions-heading { font-size: 22px; }

  .comparison-card { padding: 28px 20px; }
  .comparison-hero { padding: 20px 16px; }
  .comparison-hero-num { font-size: 56px; }
  .comparison-hero-unit { font-size: 20px; }
  .comparison-closing { padding: 32px 24px; }
  .comparison-closing-illust { width: 240px; }
  .comparison-closing-title { font-size: 22px; }
  .comparison-closing-actions { flex-direction: column; }
  .btn-comparison-primary,
  .btn-comparison-outline { width: 100%; min-width: 0; }

  .promise-plus {
    padding: 28px 22px;
  }

  .promise-plus-content {
    flex-direction: column;
    text-align: center;
  }

  .promise-plus-avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-card-row,
  .testimonial-reverse {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .testimonial-reverse .testimonial-avatar { order: 0; }

  .testimonial-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }

  .testimonial-meta {
    align-self: center;
  }

  .testimonial-diamonds {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
  }

  .facility-main { grid-template-columns: 1fr; }
  .facility-main-image { min-height: 220px; }
  .facility-main-content { padding: 32px 24px; }

  .facility-item { flex-direction: column; text-align: center; padding: 16px; }
  .facility-item-image { width: 100%; height: 140px; }

  .access-info { padding: 28px 22px; }
  .access-map, .access-map iframe { min-height: 320px; }

  .cta-section { padding: 64px 16px; }
  .cta-box { padding: 36px 24px; }
  .cta-tel { padding: 20px 16px; }
  .cta-tel-number { font-size: clamp(1.8rem, 8vw, 2.6rem); gap: 8px; }
  .cta-tel-number svg { width: 32px; height: 32px; }
  .btn-cta { padding: 16px 28px; font-size: 16px; width: 100%; display: block; }

  .footer { padding: 48px 16px 24px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .topic-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .faq-question { padding: 18px 16px; gap: 12px; }
  .faq-q-text { font-size: 15px; }
  .faq-q-badge { width: 32px; height: 32px; font-size: 15px; }
  .faq-answer { padding: 4px 16px 18px 60px; }
}

@media (max-width: 480px) {
  .testimonial-diamonds {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-features-v2 li { font-size: 14px; }
  .plan-name-v2 { font-size: 26px; }
  .plan-sale-v2 { font-size: 28px; }
}

/* ===========================================
   WordPress テーマ化 追加分（v1.0.0）
   - お知らせ詳細/一覧、Contact Form 7枠、ページネーション
   =========================================== */

/* 記事用の読みやすい幅 */
.container--narrow { max-width: 760px; }

/* --- お知らせ詳細（single.php） --- */
.news-article-head { text-align: center; margin-bottom: 28px; }
.news-article-head .section-label { color: var(--y-gold-deep); font-weight: 700; letter-spacing: .12em; }
.news-article-head .topic-date { color: var(--y-text-mute); font-family: var(--ff-round); font-size: 15px; margin: 6px 0 10px; }
.news-article-title { font-family: var(--ff-serif); font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--y-purple-darker); line-height: 1.5; }
.news-article-thumb { margin: 0 0 28px; }
.news-article-thumb img { width: 100%; height: auto; border-radius: 14px; box-shadow: var(--y-shadow-md); display: block; }
.news-article-body { font-size: 16px; line-height: 1.95; color: var(--y-text); }
.news-article-body > * + * { margin-top: 1.2em; }
.news-article-body h2 { font-family: var(--ff-round); font-size: 22px; color: var(--y-purple); border-left: 5px solid var(--y-yellow); padding-left: 14px; margin-top: 1.8em; }
.news-article-body h3 { font-family: var(--ff-round); font-size: 18px; color: var(--y-purple-deep); margin-top: 1.6em; }
.news-article-body a { color: var(--y-purple); text-decoration: underline; }
.news-article-body img { max-width: 100%; height: auto; border-radius: 10px; }
.news-article-body ul, .news-article-body ol { padding-left: 1.5em; }
.news-article-body li { margin: .4em 0; }
.news-article-body blockquote { border-left: 4px solid var(--y-purple-soft); background: var(--y-purple-softer); padding: 14px 20px; border-radius: 0 10px 10px 0; color: var(--y-text-soft); }
.news-article-back { text-align: center; margin-top: 44px; }

/* --- ページネーション（index.php） --- */
.pagination, .navigation.pagination { margin-top: 44px; }
.pagination .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 10px; background: #fff; border: 1px solid var(--y-line); color: var(--y-purple); font-family: var(--ff-round); font-weight: 700; text-decoration: none; transition: .2s; }
.pagination .page-numbers:hover { background: var(--y-purple-softer); }
.pagination .page-numbers.current { background: var(--y-purple); color: #fff; border-color: var(--y-purple); }

/* --- Contact Form 7 枠（各ページ CTA #contact 内） --- */
.cta-form { max-width: 600px; margin: 8px auto 0; background: #fff; border-radius: 18px; box-shadow: var(--y-shadow-lg); padding: 32px 28px; text-align: left; }
.cta-form p { margin: 0 0 14px; }
.cta-form label { display: block; font-family: var(--ff-round); font-weight: 700; color: var(--y-purple-deep); font-size: 15px; margin-bottom: 14px; }
.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form input[type="tel"],
.cta-form input[type="url"],
.cta-form input[type="number"],
.cta-form select,
.cta-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--y-line); border-radius: 10px;
  font-family: var(--ff-sans); font-size: 16px; color: var(--y-text); background: var(--y-ivory); box-sizing: border-box;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: none; border-color: var(--y-purple-mid); box-shadow: 0 0 0 3px var(--y-purple-softer); }
.cta-form textarea { min-height: 130px; resize: vertical; }
.cta-form .wpcf7-submit {
  display: inline-block; width: 100%; margin-top: 8px; padding: 15px 24px; border: none; border-radius: 999px; cursor: pointer;
  background: linear-gradient(135deg, var(--y-gold-soft), var(--y-gold)); color: #fff; font-family: var(--ff-round); font-weight: 700; font-size: 17px;
  box-shadow: var(--y-shadow-md); transition: .2s;
}
.cta-form .wpcf7-submit:hover { transform: translateY(-2px); filter: brightness(1.04); }
.cta-form .wpcf7-spinner { margin: 12px auto 0; display: block; }
.cta-form .wpcf7-response-output { border-radius: 10px; margin: 16px 0 0 !important; }

/* お知らせ「一覧へ」導線 / 空状態 */
.topics-more { text-align: center; margin-top: 32px; }
.topic-item--empty { color: var(--y-text-mute); text-align: center; cursor: default; }

/* ===========================================
   モバイルナビ（ハンバーガー開閉）/ CF7通知 — WP化追加分 v1.0.0
   =========================================== */
/* デスクトップ: ラッパーはレイアウトに影響させない（中の nav/contact がそのまま flex item になる） */
.header-collapse { display: contents; }
/* ハンバーガーを <button> 化したことに伴うリセット */
.hamburger { background: none; border: 0; padding: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }
.hamburger:focus-visible { outline: 2px solid var(--y-purple); outline-offset: 4px; border-radius: 4px; }

/* CF7未設定時の管理者向け通知 */
.cta-form-notice { max-width: 600px; margin: 8px auto 0; background: #fff; color: var(--y-text); border: 2px dashed var(--y-pink); border-radius: 12px; padding: 16px 18px; font-size: 14px; line-height: 1.7; text-align: left; }
.cta-form-notice code { background: var(--y-purple-softer); padding: 2px 6px; border-radius: 4px; }

@media (max-width: 768px) {
  /* 折りたたみパネル（既定は閉じる）。.header は position:fixed なので基準は header 自身 */
  .header-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    box-shadow: var(--y-shadow-lg);
    border-top: 3px solid var(--y-purple);
    padding: 12px 20px 22px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .header.nav-open .header-collapse { display: flex; }

  /* パネル内: グローバルナビを縦並びに */
  .header.nav-open .nav-main { display: flex; flex-direction: column; gap: 0; }
  .header.nav-open .nav-main a { display: block; padding: 15px 6px; border-bottom: 1px solid var(--y-line); font-size: 16px; }
  .header.nav-open .nav-main a::after { display: none; }

  /* パネル内: 電話・問い合わせ導線も表示（モバイルで隠れていたものを復帰） */
  .header.nav-open .header-contact { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 16px; }
  .header.nav-open .header-contact .tel-box { display: block; text-align: center; }
  .header.nav-open .header-contact .btn-contact { display: block; text-align: center; }
}
