/* ==========================================================
   やさしいスマホ相談室 - スタイルシート
   設計方針：ご高齢の方が見やすいよう、文字大きめ・余白広め
   ========================================================== */

:root {
  --green: #6FB87A;
  --green-dark: #4F9C5C;
  --green-bg: #E8F4EB;
  --coral: #F18B7C;
  --coral-dark: #D86753;
  --coral-bg: #FBE8E3;
  --yellow-bg: #FFF1C9;
  --cream: #FFF7E8;
  --blue-bg: #DCEEF4;
  --pink-bg: #FBE2E2;
  --text: #2e2a25;
  --muted: #574d44;
  --border: #ECE4D8;
  --bg: #FFFCF5;
  --marker-yellow: #FFD66B;
}

/* ----------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
  body { font-size: 18px; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.55; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--green); color: white; padding: 12px 16px; z-index: 1000; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.accent-green { color: var(--green-dark); }
.accent-coral { color: var(--coral-dark); }

/* Yellow marker highlight */
.mark, em.mark {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--marker-yellow) 62% 92%, transparent 92%);
  padding: 0 4px;
  color: var(--text);
  font-size: 1.1em;
}

/* ----------------------------------------------------------
   Header
   ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
@media (min-width: 768px) {
  .header-inner { padding: 16px 32px; }
}

/* Header right side actions (phone CTA + menu toggle) */
.header-actions {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.header-tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral-dark); color: white;
  padding: 10px 16px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 4px 0 rgba(178, 80, 60, 0.35);
  min-height: 44px;
  transition: transform .15s ease;
}
.header-tel:hover, .header-tel:focus { transform: translateY(-1px); }
.header-tel:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(178, 80, 60, 0.35); }
.header-tel-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); }
@media (max-width: 768px) {
  /* モバイルでは下部スティッキーCTAに電話があるので、ヘッダーの電話CTAは非表示 */
  .header-tel { display: none; }
}
@media (min-width: 1024px) {
  .header-actions { margin-left: 16px; }
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.brand-name {
  font-weight: 800; font-size: 1.08rem; color: var(--green-dark);
  line-height: 1.2; white-space: nowrap;
}
@media (min-width: 768px) { .brand-name { font-size: 1.25rem; } }
.brand-sub {
  font-size: 0.72rem; padding: 1px 10px;
  background: var(--green-bg); color: var(--green-dark);
  border-radius: 999px; font-weight: 600; align-self: flex-start;
  white-space: nowrap;
}

.site-nav {
  position: fixed; top: 72px; left: 0; right: 0;
  background: white; padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-130%);
  transition: transform .3s ease;
  max-height: calc(100vh - 72px); overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.site-nav.is-open { transform: translateY(0); }
.site-nav ul { display: flex; flex-direction: column; gap: 4px; }
.site-nav a {
  display: block; padding: 14px 16px; text-align: center;
  border-radius: 12px; font-weight: 600; font-size: 0.92rem;
  transition: background .2s, color .2s;
}
.site-nav a:hover, .site-nav a:focus { background: var(--green-bg); color: var(--green-dark); }
.site-nav .nav-cta { background: var(--green); color: white; margin-top: 8px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus { background: var(--green-dark); color: white; }

.menu-toggle {
  width: 48px; height: 48px;
  background: var(--green); border-radius: 14px;
  padding: 13px 12px; display: flex; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: white; border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .site-nav {
    position: static; transform: none; padding: 0; border: 0;
    box-shadow: none; max-height: none; background: transparent;
    margin-left: auto; /* 右寄せ：phoneCTAと並べる */
  }
  .site-nav ul { flex-direction: row; gap: 2px; align-items: center; }
  .site-nav a { padding: 8px 12px; font-size: 0.88rem; }
  .site-nav .nav-cta { margin-top: 0; padding: 8px 18px; }
  /* PCではお問い合わせCTAのみ表示（ヘッダー混雑を回避） */
  .site-nav li:not(:has(.nav-cta)) { display: none; }
  .header-actions { margin-left: 16px; }
  .menu-toggle { display: none; }
}

/* ----------------------------------------------------------
   Section base
   ---------------------------------------------------------- */
.section { padding: 72px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--cream { background: var(--cream); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; padding: 5px 18px;
  background: var(--green-bg); color: var(--green-dark);
  border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 14px;
}
/* プロフィール以外のsection-tagは非表示（タイトルだけで十分なため） */
.section-head .section-tag { display: none; }
.section-title {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  margin: 0 0 12px; font-weight: 900; letter-spacing: 0.01em;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.section-lead { color: var(--text); margin: 0; font-size: 1rem; }

/* Title decoration leaves */
.title-leaf {
  width: 36px; height: auto; flex-shrink: 0;
  display: inline-block; vertical-align: middle;
}
.title-leaf--right { transform: scaleX(-1); }
@media (max-width: 600px) {
  .title-leaf { width: 28px; }
}

/* SP用改行：モバイルだけ <br> を有効化 */
.br-sp { display: inline; }
@media (min-width: 768px) {
  .br-sp { display: none; }
}

/* Section background decorations */
.section { overflow: hidden; }
.section-blob {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: 0.5;
}
.section-blob--tl { width: 110px; top: 24px; left: -20px; transform: rotate(-15deg); }
.section-blob--tr { width: 130px; top: 32px; right: -30px; transform: rotate(20deg); }
.section-blob--bl { width: 100px; bottom: 30px; left: -20px; transform: rotate(15deg); }
.section-blob--br { width: 120px; bottom: 32px; right: -30px; transform: rotate(-20deg); }
@media (max-width: 767px) {
  .section-blob { width: 70px !important; opacity: 0.35; }
}

.section-sparkle {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: 0.7; animation: sparkle 3s ease-in-out infinite;
}
.section-sparkle--1 { width: 34px; top: 18%; right: 12%; }

/* Reassure leaf accent */
.reassure-card { position: relative; }
.reassure-leaf {
  position: absolute; width: 80px; right: -10px; bottom: -16px;
  transform: rotate(-30deg); opacity: 0.85; pointer-events: none;
}
@media (max-width: 600px) {
  .reassure-leaf { width: 56px; right: 4px; bottom: -10px; }
}

/* Ensure container sits above blobs */
.section > .container { position: relative; z-index: 1; }

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero { padding: 24px 0 32px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 32px 0 40px; } }

/* Decorative blob shapes (background pastel forms) */
.bg-blob {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: 0.85;
  filter: blur(0.3px);
}
.bg-blob-1 { width: 180px; top: -30px; left: -40px; transform: rotate(-12deg); }
.bg-blob-2 { width: 150px; top: 8%; right: -30px; transform: rotate(15deg); }
.bg-blob-3 { width: 110px; bottom: -20px; left: 10%; transform: rotate(8deg); opacity: 0.7; }
.bg-blob-4 { width: 130px; bottom: 12%; right: 6%; transform: rotate(-20deg); opacity: 0.7; }
.bg-blob-5 { width: 90px; top: 38%; left: 4%; transform: rotate(20deg); opacity: 0.6; }
@media (max-width: 767px) {
  /* モバイルでは図形を小さく＆端へ寄せ、テキストに被らないようにする */
  .bg-blob-1 { width: 90px;  top: -20px; left: -30px; }
  .bg-blob-2 { width: 80px;  top: 2%;   right: -25px; }
  .bg-blob-3 { width: 60px;  bottom: -10px; left: -10px; }
  .bg-blob-4 { width: 70px;  bottom: 4%; right: -20px; }
  .bg-blob-5 { display: none; }
  /* sparkleがちょうどテキスト中央付近なので位置調整して薄める */
  .bg-sparkle { opacity: 0.4; }
  .bg-sparkle-1 { top: 6%;    right: 6%; }
  .bg-sparkle-2 { display: none; }
}

.bg-sparkle {
  position: absolute; z-index: 0; pointer-events: none; opacity: 0.85;
  animation: sparkle 3s ease-in-out infinite;
}
.bg-sparkle-1 { width: 36px; top: 22%; right: 38%; animation-delay: 0s; }
.bg-sparkle-2 { width: 28px; bottom: 28%; left: 38%; animation-delay: 1.2s; }
@keyframes sparkle {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1.35fr; gap: 36px; }
}

.hero-badge {
  display: none;
  padding: 7px 20px;
  background: var(--green); color: white;
  font-size: 0.92rem; font-weight: 700;
  border-radius: 999px; margin: 0 0 20px;
}
.hero-title {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.45; font-weight: 900;
  margin: 0 0 24px; letter-spacing: 0.01em;
}
.hero-lead {
  color: var(--text); font-size: 1.02rem; margin: 0;
}
.hero-text { align-self: center; }

/* Hero pricing block (2-column on PC: prices left / trust+note right) */
.hero-pricing {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-pricing { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.hero-pricing-aside {
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
}
.hero-prices {
  display: flex; gap: 18px; margin: 0; flex-wrap: wrap;
  justify-content: center;
}
.price-note {
  margin: 0;
  padding: 8px 14px;
  background: var(--coral-bg);
  color: var(--text);
  font-size: 0.92rem; font-weight: 700;
  border-radius: 12px;
  display: inline-block;
}

/* Hero trust badges (3-pack) */
.hero-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin: 0 0 20px;
  padding: 0; list-style: none;
  font-size: 1.08rem; font-weight: 700;
  justify-content: center;
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green-dark);
}
.hero-trust-tk {
  width: 28px; height: 28px;
  border-radius: 50%; background: var(--green);
  color: white; display: grid; place-items: center;
  font-size: 0.92rem; font-weight: 900;
  flex-shrink: 0;
}
.price-card {
  flex: 1; min-width: 200px;
  background: white; border: 3px solid var(--green);
  border-radius: 22px; padding: 24px 24px 22px; text-align: center;
  position: relative;
}
.price-card--first { border-color: var(--coral); }
.price-label {
  display: inline-block; padding: 6px 18px;
  background: var(--green); color: white;
  font-size: 1.05rem; font-weight: 700;
  border-radius: 999px; margin-bottom: 10px;
}
.price-card--first .price-label { background: var(--coral); }
.price-time { display: block; color: var(--text); font-size: 1.18rem; margin-bottom: 4px; font-weight: 600; }
.price-yen { display: block; font-size: 2.15rem; font-weight: 900; color: var(--green-dark); line-height: 1.1; }
.price-card--first .price-yen { color: var(--coral-dark); }
.price-yen small { font-size: 1.05rem; font-weight: 700; margin-left: 2px; }
.price-yen-mark {
  font-size: 0.7rem; font-weight: 800;
  color: var(--coral-dark);
  margin-left: 2px; vertical-align: super; line-height: 0;
}

.hero-visual {
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%;
}
.hero-photo {
  position: relative; margin: 0; width: 100%;
}
@media (min-width: 900px) {
  .hero-photo {
    width: calc(100% + 60px);
    margin-right: -60px;
  }
}
.hero-photo img {
  width: 100%; height: auto; aspect-ratio: 16 / 11;
  object-fit: cover; object-position: 60% 40%;
  border-radius: 28px;
}
@media (min-width: 900px) {
  /* PCのみ画像の左側をフェードして背景に溶け込ませる */
  .hero-photo img {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 6%, black 24%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 6%, black 24%);
  }
}
@media (min-width: 900px) {
  .hero-photo img {
    aspect-ratio: 16 / 10;
    max-height: 420px;
    border-radius: 36px 0 0 36px;
  }
}

/* CTA button placed under the hero photo */
.hero-photo-cta {
  margin: 28px auto 0;
  align-self: center;
}
@media (min-width: 900px) {
  .hero-photo-cta { margin-top: 32px; }
}

/* Hero decorative shapes removed — hero-pricing now fills the lower area */

/* Area band: emphasizes 生駒 location */
.area-band { padding: 24px 0 56px; }
.area-band-inner {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, var(--green-bg), var(--cream));
  border-radius: 24px; padding: 20px 28px;
  border: 2px dashed var(--green);
  flex-wrap: wrap; justify-content: center;
}
.area-band-pin { width: 80px; height: 80px; flex-shrink: 0; }
.area-band-text { text-align: center; flex: 1 1 auto; min-width: 200px; }
@media (min-width: 600px) { .area-band-text { text-align: left; } }
.area-band-tag {
  display: inline-block; padding: 4px 14px;
  background: var(--green); color: white;
  font-size: 0.82rem; font-weight: 700;
  border-radius: 999px; margin-bottom: 4px;
}
.area-band-area {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 800;
  margin: 0; line-height: 1.5;
}
.area-band-area strong { color: var(--coral-dark); font-size: 1.2em; }
.area-band-note {
  margin: 0; padding: 8px 14px; font-size: 0.88rem;
  color: var(--green-dark); font-weight: 700;
  background: white; border-radius: 14px;
  text-align: center; line-height: 1.5;
}
@media (max-width: 600px) {
  .area-band-pin { width: 60px; height: 60px; }
  .area-band-inner { padding: 16px 18px; gap: 14px; }
}

/* ----------------------------------------------------------
   Pains (こんなお悩み)
   ---------------------------------------------------------- */
.pains { padding: 56px 0 32px; background: var(--cream); }
.pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  max-width: 980px; margin: 0 auto;
}
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.pain-card {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.pain-card::before {
  content: ""; position: absolute;
  top: 0; left: 28px; width: 48px; height: 6px;
  background: var(--green); border-radius: 0 0 6px 6px;
  transition: width .35s ease;
}
.pain-card:hover::before { width: calc(100% - 56px); }
.pain-icon {
  width: 84px; height: 84px; object-fit: contain;
  margin: 0 auto 14px;
}
.pain-card h3 {
  font-size: 1.28rem; margin: 0 0 10px;
  font-weight: 800; line-height: 1.5;
}
.pain-card p {
  color: var(--text); font-size: 1.05rem;
  line-height: 1.85; margin: 0;
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 700; text-align: center; font-size: 1rem;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--green); color: white;
  box-shadow: 0 8px 20px rgba(111, 184, 122, 0.3);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(111, 184, 122, 0.4);
}
.btn-large { font-size: 1.08rem; padding: 18px 38px; }
.btn-block { width: 100%; }
.btn-icon { width: 22px; height: 22px; filter: brightness(0) invert(1); }

/* ----------------------------------------------------------
   Reassure
   ---------------------------------------------------------- */
.reassure { padding: 24px 0 56px; }
.reassure-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 18px;
  background: var(--yellow-bg);
  border-radius: 28px; padding: 36px 32px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  max-width: 920px; margin: 0 auto;
}
.reassure-icon { width: 90px; height: 90px; flex-shrink: 0; }
.reassure-text { font-size: clamp(1.15rem, 3vw, 1.7rem); font-weight: 700; line-height: 1.85; margin: 0; }
.reassure-text .mark {
  color: var(--text);
  font-weight: 900;
  font-size: 1.25em;
}
@media (max-width: 600px) {
  .reassure-card { padding: 28px 20px; gap: 14px; }
}

/* ----------------------------------------------------------
   Services
   ---------------------------------------------------------- */
.service-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 600px) { .service-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 900px) { .service-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 24px 28px;
  text-align: center; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.service-num {
  position: absolute; top: -16px; left: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(111,184,122,0.3);
}
.service-icon { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 16px; }
.service-card h3 { font-size: 1.34rem; margin: 0 0 12px; font-weight: 800; }
.service-card p { color: var(--text); margin: 0; font-size: 1.05rem; line-height: 1.85; }

/* ----------------------------------------------------------
   Reasons
   ---------------------------------------------------------- */
.reason-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .reason-grid { grid-template-columns: 1fr 1fr 1fr; } }
.reason-card {
  background: white; border-radius: 28px;
  padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform .3s ease, box-shadow .3s ease;
}
.reason-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.reason-icon { width: 150px; height: 150px; object-fit: contain; margin: 0 auto 16px; }
.reason-card h3 { font-size: 1.32rem; margin: 0 0 12px; font-weight: 800; }
.reason-mark { color: var(--coral); margin-right: 6px; }
.reason-card p { color: var(--text); margin: 0; }

/* ----------------------------------------------------------
   Profile
   ---------------------------------------------------------- */
.profile-inner {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  max-width: 880px; margin: 0 auto;
}
@media (min-width: 768px) { .profile-inner { grid-template-columns: auto 1fr; gap: 48px; } }
.profile-image {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bg), var(--yellow-bg));
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.profile-image img { width: 78%; height: auto; }
.profile-text { text-align: center; }
@media (min-width: 768px) { .profile-text { text-align: left; } }
/* モバイルでは本文だけ左寄せ（名前・タグは中央のまま） */
@media (max-width: 767px) {
  .profile-text p { text-align: left; }
}
.profile-name { font-size: 2.1rem; font-weight: 900; margin: 8px 0 16px; color: var(--green-dark); line-height: 1.3; }
.profile-name small { font-size: 0.95rem; color: var(--muted); margin-left: 4px; }
.profile-text p { margin: 0; color: var(--text); }

/* ----------------------------------------------------------
   Venue & Promise (1-column stack)
   ---------------------------------------------------------- */
.venue-stack {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 880px; margin: 0 auto;
}
.venue-card {
  background: white; border-radius: 28px;
  padding: 32px 28px; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.venue-icon { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 16px; }
.venue-card h3 { font-size: 1.42rem; margin: 0 0 16px; font-weight: 800; color: var(--green-dark); }
.venue-card p { margin: 0; color: var(--text); text-align: left; }

/* Map-included variant: text + map side-by-side on wider screens */
.venue-card--map {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
@media (min-width: 768px) {
  .venue-card--map {
    grid-template-columns: 1fr 1.1fr;
    text-align: left;
    padding: 36px 36px;
  }
  .venue-card--map .venue-icon { margin: 0 0 12px; }
}
.venue-card-text { text-align: center; }
@media (min-width: 768px) { .venue-card-text { text-align: left; } }
.venue-map {
  margin: 0; border-radius: 20px; overflow: hidden;
  background: var(--cream);
}
.venue-map img {
  width: 100%; height: auto; display: block;
}

.promise-list { text-align: left; max-width: 480px; margin: 0 auto; }
.promise-list li {
  padding-left: 32px; position: relative; margin-bottom: 10px;
  color: var(--text); font-weight: 500;
  font-size: 1.15rem; line-height: 1.9;
}
.promise-list li::before {
  content: '♥'; position: absolute; left: 4px; top: 0;
  color: var(--coral); font-size: 1.1em;
}

/* ----------------------------------------------------------
   Flow
   ---------------------------------------------------------- */
.flow-list {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  position: relative;
}
@media (min-width: 768px) {
  .flow-list { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}
.flow-step {
  background: white; border: 1px solid var(--border);
  border-radius: 28px; padding: 36px 24px 28px;
  text-align: center; position: relative;
}
.flow-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--coral); color: white;
  font-weight: 900; font-size: 1.5rem;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(241,139,124,0.35);
}
.flow-icon { width: 88px; height: 88px; object-fit: contain; margin: 8px auto 16px; }
.flow-step h3 { font-size: 1.28rem; margin: 0 0 12px; font-weight: 800; }
.flow-step p { color: var(--text); margin: 0; font-size: 1.05rem; line-height: 1.85; }

/* arrow between steps (desktop) */
@media (min-width: 768px) {
  .flow-step:not(:last-child)::after {
    content: '▶'; position: absolute;
    top: 50%; right: -18px; transform: translateY(-50%);
    color: var(--green); font-size: 1.2rem;
    z-index: 2;
  }
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 760px; margin: 0 auto;
}
.faq-item {
  background: white; border-radius: 20px;
  padding: 0; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 8px 22px rgba(0,0,0,0.05); }
.faq-item summary {
  padding: 20px 24px; font-weight: 700; cursor: pointer;
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.15rem; line-height: 1.7;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; margin-left: auto; font-size: 1.6rem;
  color: var(--green); transition: transform .25s;
  flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-q { color: var(--green-dark); font-weight: 900; font-size: 1.25rem; flex-shrink: 0; }
.faq-item > p {
  margin: 0; padding: 0 24px 22px 24px;
  color: var(--text);
  display: flex; gap: 12px; align-items: flex-start;
}
.faq-a { color: var(--coral-dark); font-weight: 900; font-size: 1.25rem; flex-shrink: 0; }

/* ----------------------------------------------------------
   Contact form
   ---------------------------------------------------------- */
.contact-form {
  background: white; border-radius: 32px;
  padding: 40px 28px; max-width: 720px; margin: 0 auto 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .contact-form { padding: 48px 40px; } }

.form-row { margin-bottom: 24px; }
.form-row label {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 1.05rem; margin-bottom: 10px;
}
.req {
  background: var(--coral); color: white;
  font-size: 0.74rem; font-weight: 700;
  padding: 3px 10px; border-radius: 6px;
  letter-spacing: 0.05em;
}
.opt {
  background: var(--green); color: white;
  font-size: 0.74rem; font-weight: 700;
  padding: 3px 10px; border-radius: 6px;
  letter-spacing: 0.05em;
}
.form-row input,
.form-row textarea {
  width: 100%; padding: 14px 18px; font-size: 1rem;
  font-family: inherit; line-height: 1.6;
  border: 2px solid var(--border); border-radius: 14px;
  background: #fdfaf3;
  transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--green); background: white;
  box-shadow: 0 0 0 4px rgba(111,184,122,0.15);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* Datetime fields (date + start time 〜 end time) */
.datetime-fields {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
}
.datetime-field {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1 1 140px; min-width: 0;
}
.datetime-field-label {
  font-size: 0.85rem; font-weight: 700; color: var(--muted);
}
.datetime-fields input[type="text"] {
  width: 100%; padding: 12px 14px; font-size: 1rem;
  font-family: inherit; line-height: 1.5;
  border: 2px solid var(--border); border-radius: 12px;
  background: #fdfaf3;
  transition: border-color .2s, background .2s;
}
.datetime-fields input:focus {
  outline: none; border-color: var(--green); background: white;
  box-shadow: 0 0 0 4px rgba(111,184,122,0.15);
}
@media (max-width: 600px) {
  .datetime-fields { gap: 10px; }
  .datetime-field { flex: 1 1 100%; }
}
.form-note {
  display: block; margin-top: 8px;
  color: var(--muted); font-size: 0.88rem;
}

/* honeypot: 視覚的に完全に隠す（scope screen reader からも除外） */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* 同意チェックボックス */
.form-consent label {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; font-size: 1rem; font-weight: 500;
}
.form-consent input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--green);
  flex-shrink: 0;
}
.form-consent a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 4px; }

.contact-tel {
  display: flex; align-items: center; gap: 20px;
  max-width: 720px; margin: 0 auto 28px;
  background: var(--green-bg);
  padding: 22px 28px; border-radius: 24px;
  flex-wrap: wrap; justify-content: center;
}
.contact-tel-icon { width: 64px; height: 64px; flex-shrink: 0; }
.contact-tel-body { text-align: center; }
@media (min-width: 600px) { .contact-tel-body { text-align: left; } }
.contact-tel-label { margin: 0; font-weight: 700; font-size: 1.05rem; color: var(--text); }
.contact-tel-num {
  display: inline-block; font-size: 1.95rem; font-weight: 900;
  color: var(--green-dark); letter-spacing: 0.02em; margin-top: 2px;
}
.contact-tel-hours { margin: 4px 0 0; color: var(--text); font-size: 1rem; }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
  background: #4a4541; color: #f4ecdb;
  padding: 48px 0 24px; margin-top: 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
}
.footer-brand {
  display: flex; align-items: center; gap: 16px;
}
.footer-icon {
  width: 56px; height: 56px;
  background: white; border-radius: 14px; padding: 6px;
}
.footer-name { font-weight: 800; font-size: 1.15rem; margin: 0; }
.footer-sub { margin: 4px 0 0; opacity: 0.85; font-size: 0.92rem; line-height: 1.6; }

/* ----------------------------------------------------------
   Subpages (thanks / privacy)
   ---------------------------------------------------------- */
.subpage { padding-top: 16px; }

/* Thanks page */
.thanks-inner { max-width: 720px; margin: 0 auto; }
.thanks-card {
  background: white; border-radius: 28px;
  padding: 48px 32px; text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}
.thanks-icon { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 20px; }
.thanks-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900; line-height: 1.5; margin: 0 0 20px;
  color: var(--green-dark);
}
.thanks-text { font-size: 1.1rem; line-height: 1.9; margin: 0 0 32px; }
.thanks-callout {
  background: var(--green-bg); border-radius: 20px;
  padding: 24px 20px; margin: 0 0 32px;
}
.thanks-callout-label { margin: 0 0 10px; font-weight: 700; font-size: 0.98rem; }
.thanks-tel {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.7rem; font-weight: 900; color: var(--green-dark);
  text-decoration: none;
}
.thanks-tel img { width: 28px; height: 28px; }
.thanks-hours { margin: 8px 0 0; font-size: 0.92rem; color: var(--text); }
@media (max-width: 600px) {
  .thanks-card { padding: 36px 22px; }
  .thanks-tel { font-size: 1.5rem; }
}

/* Privacy policy / legal pages */
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900; margin: 0 0 24px;
  color: var(--green-dark);
  border-bottom: 3px solid var(--green); padding-bottom: 12px;
}
.legal-lead { font-size: 1.05rem; line-height: 1.9; margin: 0 0 32px; }
.legal-section { margin-bottom: 36px; }
.legal-heading {
  font-size: 1.25rem; font-weight: 800; margin: 0 0 14px;
  padding-left: 14px; border-left: 6px solid var(--green);
  line-height: 1.5;
}
.legal-section p { font-size: 1rem; line-height: 1.9; margin: 0 0 12px; color: var(--text); }
.legal-list { margin: 0 0 12px; padding-left: 1.6em; list-style: disc; }
.legal-list li { font-size: 1rem; line-height: 1.9; }
.legal-dl {
  display: grid; grid-template-columns: 1fr; gap: 4px 16px;
  margin: 0 0 12px;
}
@media (min-width: 600px) {
  .legal-dl { grid-template-columns: 140px 1fr; }
}
.legal-dl dt { font-weight: 700; color: var(--green-dark); }
.legal-dl dd { margin: 0 0 6px; }
.legal-section a {
  color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px;
}
.legal-meta {
  text-align: right; font-size: 0.9rem; color: var(--muted);
  margin: 24px 0 32px;
}
.legal-back { display: inline-flex; }

.footer-nav .footer-heading {
  font-size: 0.85rem; margin: 0 0 14px;
  letter-spacing: 0.12em; font-weight: 800;
  color: #f4ecdb; opacity: 0.85;
}
.footer-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.footer-nav a {
  display: inline-block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: #f4ecdb;
  opacity: 0.88;
  transition: opacity .15s, transform .15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-legal {
  margin: 0 0 12px; text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px;
}
.footer-legal a {
  color: #f4ecdb; opacity: 0.85;
  text-decoration: underline; text-underline-offset: 4px;
}
.footer-legal a:hover { opacity: 1; }
.footer-copy {
  margin: 0; text-align: center;
  opacity: 0.6; font-size: 0.85rem;
}

/* ----------------------------------------------------------
   Mobile Sticky CTA bar
   ---------------------------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: white; border-top: 1px solid var(--border);
  padding: 10px 12px;
  /* iPhone等の下部セーフエリア（ホームバー）を避ける */
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}
.sticky-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 800; font-size: 0.95rem;
  min-height: 50px;
  color: white;
}
.sticky-cta-tel { background: var(--coral-dark); }
.sticky-cta-form { background: var(--green); }
.sticky-cta a img {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ----------------------------------------------------------
   Hero entrance animations
   Stage 1: background shapes fade in
   Stage 2: title lines stagger in
   Stage 3: hero image fades in
   ---------------------------------------------------------- */

/* Stage 1: background blobs/sparkles (preserves each element's natural opacity) */
.hero .bg-blob {
  animation: heroBgFadeIn 2.2s ease-out 0.2s backwards;
}
.hero .bg-blob-2 { animation-delay: 0.36s; }
.hero .bg-blob-3 { animation-delay: 0.52s; }
.hero .bg-blob-4 { animation-delay: 0.68s; }
.hero .bg-blob-5 { animation-delay: 0.84s; }

/* Sparkles: fade in first, then start the pulsing loop */
.hero .bg-sparkle {
  animation: heroBgFadeIn 2.2s ease-out 1.0s backwards,
             sparkle 3s ease-in-out 3.2s infinite;
}
.hero .bg-sparkle-2 { animation-delay: 1.3s, 3.5s; }

@keyframes heroBgFadeIn {
  from { opacity: 0; }
}

/* Stage 2: title lines */
.hero-title-line {
  display: block;
  animation: heroLineFadeUp 1.4s ease-out backwards;
}
.hero-title-line:nth-child(1) { animation-delay: 1.1s; }
.hero-title-line:nth-child(2) { animation-delay: 1.56s; }
.hero-title-line:nth-child(3) { animation-delay: 2.02s; }
.hero-title-line:nth-child(4) { animation-delay: 2.48s; }

@keyframes heroLineFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stage 3: hero photo */
.hero-photo img {
  animation: heroPhotoFadeIn 2.2s ease-out 3.0s backwards;
}
@keyframes heroPhotoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered reveal for section h2 titles */
h2 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease-out, transform .9s ease-out;
}
h2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   Reduced motion preference
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  h2 { opacity: 1; transform: none; }
}
