/*
Theme Name: Gonpachi
Theme URI: https://gonpachi.net
Author: 阿部権八
Author URI: https://gonpachi.net
Description: 新潟のおみくじ占い師 阿部権八（ごんぱち）公式テーマ。藤紫×金×朱×生成りの和の世界観で、神授のおみくじをお届けするしごとを表現したオリジナルテーマ。
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gonpachi
Tags: minimal, custom-theme, landing-page, japanese, spiritual
*/

/* ========================================
   おみくじ占い師 阿部権八 LP v2
   Colors:
   - Primary (深い藤紫): #3D2B56
   - Primary Dark: #2A1E3E
   - Accent (金): #C9A84C
   - Accent Soft: #E5CE8A
   - Warm (朱): #C2694D
   - Base (生成り): #FAF8F5
   - Base Soft: #F1EDE6
   - Dark (墨): #2A2A2A
======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: var(--dark);
  background-color: var(--base);
  line-height: 1.95;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

:root {
  --primary: #3D2B56;
  --primary-dark: #2A1E3E;
  --primary-light: #5A4378;
  --accent: #C9A84C;
  --accent-soft: #E5CE8A;
  --warm: #C2694D;
  --base: #FAF8F5;
  --base-soft: #F1EDE6;
  --dark: #2A2A2A;
  --gray: #6B6B6B;
  --gray-light: #B8B0A6;

  --max: 1120px;
  --max-narrow: 820px;

  --radius-s: 4px;
  --radius-m: 8px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

.sp { display: none; }
@media (max-width: 768px) {
  .sp { display: inline; }
  .pc { display: none; }
}

/* ========================================
   SHARED
======================================== */
.section__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.section__lead {
  font-size: 1rem;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  border-radius: var(--radius-s);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  text-align: center;
  line-height: 1.4;
  flex-direction: column;
  gap: 0.25rem;
  font-family: inherit;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(61, 43, 86, 0.2);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61, 43, 86, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn--gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 50%, var(--accent) 100%);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.4);
}

.btn--line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.25);
}

.btn--line:hover {
  background: #04a544;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.4rem 3rem;
  font-size: 1.05rem;
  min-width: 280px;
}

.btn__main {
  font-weight: 500;
  letter-spacing: 0.18em;
}

.btn__sub {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.1em;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(184, 176, 166, 0.2);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-jp {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.3em;
}

.header__logo-name {
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-top: 0.2rem;
}

.header__nav {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
}

.header__nav a {
  font-size: 0.92rem;
  color: var(--dark);
  letter-spacing: 0.12em;
  position: relative;
}

.header__nav a:hover {
  color: var(--primary);
}

.header__cta {
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-s);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  transition: all 0.3s var(--ease);
}

.header__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__logo-jp { font-size: 0.62rem; }
  .header__logo-name { font-size: 1rem; }
  .header__cta { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 168, 76, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(194, 105, 77, 0.14) 0%, transparent 55%),
    linear-gradient(160deg, #2A1E3E 0%, #3D2B56 50%, #5A4378 100%);
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.012) 0,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  z-index: -1;
}

.hero__paper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.35) 100%);
  z-index: -1;
  opacity: 0.6;
}

.hero__inner {
  max-width: var(--max-narrow);
  padding: 7rem 2rem 5rem;
  text-align: center;
  color: var(--base);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--accent-soft);
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.55;
  letter-spacing: 0.16em;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero__title-line1,
.hero__title-line2 {
  display: block;
}

.hero__title-line2 {
  color: var(--accent-soft);
}

.hero__sub {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 2.1;
  color: rgba(250, 248, 245, 0.88);
  margin-bottom: 2.5rem;
  letter-spacing: 0.12em;
}

.hero__signature {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 3rem;
  font-style: normal;
}

.hero__cta-wrap {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta-wrap .btn--ghost {
  color: var(--base);
  border-color: rgba(250, 248, 245, 0.5);
}

.hero__cta-wrap .btn--ghost:hover {
  background: rgba(250, 248, 245, 0.12);
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent-soft));
  animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent-soft);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero__inner { padding: 6rem 1.5rem 4rem; }
  .hero__cta-wrap { flex-direction: column; align-items: center; }
  .hero__cta-wrap .btn { min-width: 240px; }
}

/* ========================================
   STATEMENT
======================================== */
.statement {
  padding: 9rem 1.5rem;
  background: var(--base);
  text-align: center;
}

.statement__inner {
  max-width: 640px;
  margin: 0 auto;
}

.statement__text {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 2.4;
  color: var(--dark);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.statement__text--accent {
  color: var(--primary);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
}

.statement__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 320px;
}

.statement__divider span {
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}

.statement__divider-mark {
  color: var(--accent);
  font-size: 1.2rem;
  flex: 0;
}

.statement__sign {
  font-size: 0.98rem;
  line-height: 2.1;
  color: var(--gray);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .statement { padding: 6rem 1.5rem; }
}

/* ========================================
   PROCESS
======================================== */
.process {
  padding: 8rem 1.5rem;
  background: var(--base-soft);
  position: relative;
}

.process__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.process__item {
  background: var(--base);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(184, 176, 166, 0.3);
  transition: all 0.3s var(--ease);
  position: relative;
}

.process__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42, 30, 62, 0.08);
  border-color: var(--accent-soft);
}

.process__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 176, 166, 0.3);
}

.process__num {
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1;
}

.process__step-title {
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.process__step-text {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--gray);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .process { padding: 6rem 1.5rem; }
  .process__list { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ========================================
   MENU ENTRY
======================================== */
.menu-entry {
  padding: 8rem 1.5rem;
  background: var(--base);
}

.menu-entry__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.menu-card {
  background: linear-gradient(180deg, var(--base) 0%, var(--base-soft) 100%);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-m);
  padding: 3rem 2.5rem;
  margin-top: 2.5rem;
  position: relative;
  box-shadow: 0 12px 36px rgba(61, 43, 86, 0.06);
  text-align: left;
}

.menu-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.4rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  border-radius: 999px;
  font-weight: 600;
}

.menu-card__title {
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}

.menu-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.menu-card__price-num {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1;
}

.menu-card__price-yen {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.menu-card__price-tax {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.menu-card__list {
  margin-bottom: 1.5rem;
}

.menu-card__list li {
  padding: 0.7rem 0 0.7rem 1.4rem;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.85;
  position: relative;
  border-bottom: 1px dashed rgba(184, 176, 166, 0.4);
}

.menu-card__list li:last-child {
  border-bottom: none;
}

.menu-card__list li::before {
  content: "＊";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

.menu-card__note {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.95;
  background: rgba(184, 176, 166, 0.08);
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--accent-soft);
  margin-bottom: 2rem;
}

.menu-card__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .menu-entry { padding: 6rem 1.5rem; }
  .menu-card { padding: 2.2rem 1.5rem; }
  .menu-card__cta { flex-direction: column; align-items: stretch; }
}

/* ========================================
   EXPLORE
======================================== */
.explore {
  padding: 8rem 1.5rem;
  background: var(--base-soft);
}

.explore__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
  text-align: left;
}

.explore__card {
  display: block;
  background: var(--base);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(184, 176, 166, 0.25);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.explore__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.explore__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(42, 30, 62, 0.1);
  border-color: var(--accent-soft);
}

.explore__card:hover::before {
  transform: scaleX(1);
}

.explore__card-num {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.explore__card-title {
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.explore__card-text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.explore__card-link {
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.18em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  display: inline-block;
  transition: all 0.3s var(--ease);
}

.explore__card:hover .explore__card-link {
  color: var(--accent);
  border-bottom-color: var(--warm);
}

@media (max-width: 768px) {
  .explore { padding: 6rem 1.5rem; }
}

/* ========================================
   CTA
======================================== */
.cta {
  position: relative;
  padding: 9rem 1.5rem;
  text-align: center;
  color: var(--base);
  overflow: hidden;
  isolation: isolate;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 168, 76, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(194, 105, 77, 0.16) 0%, transparent 50%),
    linear-gradient(180deg, #2A1E3E 0%, #3D2B56 100%);
  z-index: -1;
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--accent-soft);
  margin-bottom: 2rem;
}

.cta__title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.7;
  letter-spacing: 0.14em;
  margin-bottom: 2.2rem;
  font-weight: 500;
}

.cta__text {
  font-size: 1rem;
  line-height: 2.1;
  color: rgba(250, 248, 245, 0.88);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.cta__buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta__note {
  font-size: 0.82rem;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.95;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .cta { padding: 6rem 1.5rem; }
  .cta__buttons { flex-direction: column; align-items: center; }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(250, 248, 245, 0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer__brand {
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.footer__logo-jp {
  font-size: 0.72rem;
  color: var(--accent-soft);
  letter-spacing: 0.3em;
}

.footer__logo-name {
  font-size: 1.2rem;
  color: var(--base);
  letter-spacing: 0.18em;
  margin-top: 0.3rem;
}

.footer__address {
  font-size: 0.85rem;
  line-height: 1.85;
}

.footer__address small {
  font-size: 0.78rem;
  opacity: 0.7;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer__nav a {
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--accent-soft);
}

.footer__bottom {
  text-align: center;
}

.footer__copy {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

/* ========================================
   STICKY CTA (Mobile)
======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  padding: 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 60px; }
}

/* ========================================
   PAGE COMMON
======================================== */
.header__nav a.is-current {
  color: var(--primary);
  position: relative;
}

.header__nav a.is-current::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  color: var(--base);
  overflow: hidden;
  isolation: isolate;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(194, 105, 77, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #2A1E3E 0%, #3D2B56 100%);
  z-index: -1;
}

.page-hero__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.page-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.5;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.page-hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 2;
  color: rgba(250, 248, 245, 0.85);
  letter-spacing: 0.12em;
}

.page-hero--quiet {
  padding: 7rem 1.5rem 4rem;
}

.page-hero--quiet .page-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

@media (max-width: 768px) {
  .page-hero { padding: 7rem 1.5rem 4rem; }
}

/* ========================================
   STORY (profile)
======================================== */
.story {
  padding: 7rem 1.5rem;
  background: var(--base);
}

.story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story__body {
  text-align: left;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 2.2;
  color: var(--dark);
  letter-spacing: 0.06em;
}

.story__body p {
  margin-bottom: 1.5rem;
}

.story__lead {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.story__highlight {
  margin: 2.5rem 0 !important;
  padding: 1.5rem 2rem;
  background: var(--base-soft);
  border-left: 3px solid var(--accent);
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.story__signature {
  margin-top: 3rem !important;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 2.2;
}

.story__sign {
  margin-top: 2rem !important;
  font-size: 1rem;
  color: var(--gray);
  text-align: right;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .story { padding: 5rem 1.5rem; }
  .story__highlight { padding: 1.2rem 1.5rem; }
}

/* ========================================
   ABOUT (profile)
======================================== */
.about {
  padding: 7rem 1.5rem;
  background: var(--base-soft);
}

.about__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  text-align: left;
  align-items: start;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(61, 43, 86, 0.85), rgba(194, 105, 77, 0.7)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 6px);
  border-radius: var(--radius-m);
  position: relative;
  overflow: hidden;
}

.about__photo::after {
  content: "ごんぱち";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
}

/* 本文HTMLで inline background-image が差し込まれている時はプレースホルダーテキストを隠す */
.about__photo[style*="background-image"]::after {
  content: none;
}

.about__name {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 176, 166, 0.4);
}

.about__name-jp {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.3em;
}

.about__name-main {
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  font-weight: 500;
}

.about__name-en {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.25em;
}

.about__list dt {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.about__list dd {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(184, 176, 166, 0.4);
}

.about__list dd:last-child {
  border-bottom: none;
}

.about__quote {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--base);
  border-radius: var(--radius-m);
  border: 1px solid var(--accent-soft);
  text-align: center;
  font-size: 1.1rem;
  line-height: 2.2;
  color: var(--primary);
  font-style: normal;
  letter-spacing: 0.08em;
}

.about__quote strong {
  color: var(--warm);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about { padding: 5rem 1.5rem; }
  .about__body { grid-template-columns: 1fr; gap: 2rem; }
  .about__photo { max-width: 280px; margin: 0 auto; }
}

/* ========================================
   FEE DETAIL
======================================== */
.fee-detail {
  padding: 6rem 1.5rem;
  background: var(--base);
}

.fee-detail__inner {
  max-width: 760px;
  margin: 0 auto;
}

.menu-card--detail {
  margin-top: 1rem;
  text-align: center;
}

.menu-card--detail .menu-card__title {
  text-align: center;
}

.fee-detail__lead {
  font-size: 0.98rem;
  line-height: 2.1;
  color: var(--gray);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.fee-detail__spec {
  background: var(--base-soft);
  padding: 1.8rem 2rem;
  border-radius: var(--radius-s);
  margin-bottom: 2rem;
  text-align: left;
}

.fee-detail__spec dt {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.fee-detail__spec dd {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(184, 176, 166, 0.4);
  letter-spacing: 0.04em;
}

.fee-detail__spec dd:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* FEE FUTURE */
.fee-future {
  margin-top: 6rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(184, 176, 166, 0.3);
  text-align: center;
}

.fee-future__lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--gray);
  margin-bottom: 3rem;
}

.fee-future__list {
  text-align: left;
  margin-bottom: 2rem;
}

.fee-future__list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(184, 176, 166, 0.25);
}

.fee-future__list li:last-child {
  border-bottom: none;
}

.fee-future__num {
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
}

.fee-future__list h3 {
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.fee-future__list p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.95;
}

.fee-future__note {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 1.5rem;
}

.fee-future__note a {
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
}

.fee-future__note a:hover {
  color: var(--accent);
}

/* ========================================
   FAQ
======================================== */
.faq {
  margin-top: 6rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(184, 176, 166, 0.3);
  text-align: center;
}

.faq__list {
  margin-top: 2rem;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid rgba(184, 176, 166, 0.3);
  padding: 1.5rem 0;
}

.faq__q {
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  line-height: 1.8;
}

.faq__q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.faq__a {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--dark);
  margin-top: 1rem;
  padding-left: 2rem;
  position: relative;
}

.faq__a::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--warm);
  font-weight: 600;
}

@media (max-width: 768px) {
  .fee-detail { padding: 4rem 1.5rem; }
  .fee-detail__spec { padding: 1.5rem; }
  .fee-future__list li { grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.5rem 0; }
}

/* ========================================
   CONTACT
======================================== */
.contact {
  padding: 6rem 1.5rem;
  background: var(--base);
}

.contact__inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact__intro {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1rem;
  line-height: 2.1;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.contact__intro p {
  margin-bottom: 1.2rem;
}

/* FORM */
.contact-form {
  background: var(--base-soft);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(184, 176, 166, 0.3);
}

.contact-form__row {
  margin-bottom: 1.8rem;
}

.contact-form__label {
  display: block;
  font-size: 0.92rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.contact-form__req {
  display: inline-block;
  background: var(--warm);
  color: #fff;
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  letter-spacing: 0.15em;
  vertical-align: middle;
  font-weight: 500;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-s);
  background: var(--base);
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 43, 86, 0.1);
}

.contact-form__textarea {
  resize: vertical;
  line-height: 1.95;
}

.contact-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.contact-form__radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
}

.contact-form__radio input {
  accent-color: var(--primary);
}

.contact-form__note {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.95;
  margin: 2rem 0;
  padding: 1rem 1.2rem;
  background: rgba(184, 176, 166, 0.1);
  border-left: 2px solid var(--accent-soft);
}

.contact-form__note a {
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
}

.contact-form__submit {
  text-align: center;
  margin-top: 2.5rem;
}

.contact-form__submit .btn {
  min-width: 280px;
  cursor: pointer;
}

/* LINE 導線 */
.contact-line {
  margin-top: 5rem;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, var(--base-soft) 0%, var(--base) 100%);
  border-radius: var(--radius-m);
  text-align: center;
  border: 1px dashed var(--gray-light);
}

.contact-line__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-line__title {
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.contact-line__text {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--gray);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact { padding: 4rem 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .contact-line { padding: 2.5rem 1.5rem; }
}

/* ========================================
   PRIVACY BODY
======================================== */
.privacy-body {
  padding: 5rem 1.5rem 7rem;
  background: var(--base);
}

.privacy-body__inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-body__intro {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--dark);
  margin-bottom: 3rem;
  padding: 1.5rem 1.8rem;
  background: var(--base-soft);
  border-left: 3px solid var(--accent);
}

.privacy-body h2 {
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184, 176, 166, 0.4);
  font-weight: 500;
}

.privacy-body p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--dark);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.privacy-body ul {
  margin: 1rem 0 1.5rem 0;
}

.privacy-body li {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--dark);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.privacy-body li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.privacy-body a {
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
}

.privacy-body a:hover {
  color: var(--accent);
}

.privacy-body__date {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 176, 166, 0.4);
  font-size: 0.88rem;
  color: var(--gray);
  text-align: right;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .privacy-body { padding: 4rem 1.5rem 5rem; }
}

/* ========================================
   ARTICLE / BLOG
   single.php / index.php の .privacy-body 内本文向け
   見出し・段落・リスト・引用・画像・テーブル・コードなど
   ブログ記事として読みやすい設計に拡張
======================================== */

/* --- 見出し h2 --------------------------------- */
.privacy-body h2 {
  position: relative;
  margin: 4rem 0 1.75rem;
  padding: 0.3rem 0 0.7rem 1.2rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
}

/* --- 見出し h3 --------------------------------- */
.privacy-body h3 {
  position: relative;
  margin: 3rem 0 1.2rem;
  padding-left: 0.9rem;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--primary);
  border-left: 2px solid var(--accent);
}

/* --- 見出し h4 --------------------------------- */
.privacy-body h4 {
  margin: 2.25rem 0 0.9rem;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.privacy-body h4::before {
  content: "◆";
  color: var(--accent);
  margin-right: 0.5em;
  font-size: 0.78em;
  vertical-align: 0.08em;
}

/* --- 段落・本文 ------------------------------- */
.privacy-body p {
  font-size: 1rem;
  line-height: 2.05;
  color: var(--dark);
  margin: 0 0 1.5em;
  letter-spacing: 0.04em;
}

.privacy-body strong {
  color: var(--primary);
  font-weight: 700;
}

.privacy-body em {
  font-style: italic;
  color: var(--primary-light);
}

.privacy-body mark {
  background: linear-gradient(transparent 60%, var(--accent-soft) 60%);
  padding: 0 0.1em;
  color: inherit;
}

/* --- リスト ul --------------------------------- */
.privacy-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5em 0;
}

.privacy-body ul li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.55em;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--dark);
}

.privacy-body ul li::before {
  content: "◆";
  position: absolute;
  left: 0.1em;
  top: 0.1em;
  color: var(--accent);
  font-size: 0.72em;
}

/* --- リスト ol --------------------------------- */
.privacy-body ol {
  list-style: none;
  counter-reset: gonpachi-ol;
  padding-left: 0;
  margin: 1.5em 0;
}

.privacy-body ol li {
  position: relative;
  counter-increment: gonpachi-ol;
  padding-left: 2em;
  margin-bottom: 0.55em;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--dark);
}

.privacy-body ol li::before {
  content: counter(gonpachi-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ネストの余白調整 */
.privacy-body ul ul,
.privacy-body ol ol,
.privacy-body ul ol,
.privacy-body ol ul {
  margin: 0.4em 0 0.4em 0;
}

/* --- 引用 blockquote -------------------------- */
.privacy-body blockquote {
  position: relative;
  margin: 2em 0;
  padding: 1.3em 1.5em 1.3em 2.4em;
  background: var(--base-soft);
  border-left: 4px solid var(--accent);
  color: var(--primary-light);
  font-style: italic;
  line-height: 1.95;
}

.privacy-body blockquote::before {
  content: "「";
  position: absolute;
  top: 0.35em;
  left: 0.5em;
  color: var(--accent-soft);
  font-size: 1.8em;
  line-height: 1;
  font-style: normal;
}

.privacy-body blockquote p {
  margin-bottom: 0.7em;
  color: inherit;
}

.privacy-body blockquote p:last-child {
  margin-bottom: 0;
}

.privacy-body blockquote cite {
  display: block;
  margin-top: 0.85em;
  font-size: 0.88em;
  font-style: normal;
  color: var(--gray);
  text-align: right;
  letter-spacing: 0.08em;
}

.privacy-body blockquote cite::before {
  content: "— ";
}

/* --- 画像 img / figure ------------------------ */
.privacy-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: var(--radius-s);
  box-shadow: 0 6px 18px rgba(42, 30, 62, 0.08);
}

.privacy-body figure {
  margin: 2em 0;
}

.privacy-body figure img {
  margin: 0 auto 0.7em;
}

.privacy-body figcaption,
.privacy-body .wp-caption-text {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-top: 0.3em;
}

/* WordPress アラインメント */
.privacy-body .alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}

.privacy-body .alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}

.privacy-body .aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* --- リンク a --------------------------------- */
.privacy-body a {
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.privacy-body a:hover {
  color: var(--accent);
  border-bottom-color: var(--primary);
}

/* --- 区切り線 hr ------------------------------ */
.privacy-body hr {
  position: relative;
  height: 1.8em;
  margin: 3em 0;
  border: 0;
  background: none;
  text-align: center;
  overflow: visible;
}

.privacy-body hr::before {
  content: "— ❖ —";
  display: inline-block;
  color: var(--accent);
  letter-spacing: 0.55em;
  font-size: 1rem;
  line-height: 1.8em;
}

/* --- テーブル table --------------------------- */
.privacy-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.96rem;
  line-height: 1.8;
}

.privacy-body table thead th {
  background: var(--primary);
  color: var(--base);
  padding: 0.85em 1em;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--accent);
}

.privacy-body table tbody td,
.privacy-body table tbody th {
  padding: 0.78em 1em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  vertical-align: top;
  color: var(--dark);
}

.privacy-body table tbody tr:nth-child(even) {
  background: var(--base-soft);
}

/* --- コード pre / code ------------------------ */
.privacy-body pre {
  margin: 2em 0;
  padding: 1.2em 1.5em;
  background: var(--base-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-s);
  overflow-x: auto;
  font-family: "Menlo", "Monaco", "Consolas", monospace;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--dark);
}

.privacy-body pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.privacy-body :not(pre) > code {
  background: var(--base-soft);
  padding: 0.1em 0.45em;
  border-radius: 3px;
  font-family: "Menlo", "Monaco", "Consolas", monospace;
  font-size: 0.92em;
  color: var(--primary-dark);
}

/* --- 注釈 small ------------------------------- */
.privacy-body small {
  font-size: 0.85em;
  color: var(--gray);
}

/* --- 投稿日（既存定義の上書き） --------------- */
.privacy-body__date {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 176, 166, 0.4);
  font-size: 0.88rem;
  color: var(--gray);
  text-align: right;
  letter-spacing: 0.15em;
}

/* --- レスポンシブ（ブログ本文） ---------------- */
@media (max-width: 768px) {
  .privacy-body h2 {
    font-size: 1.32rem;
    margin: 3rem 0 1.25rem;
    padding-left: 0.95rem;
  }
  .privacy-body h3 {
    font-size: 1.12rem;
    margin: 2.4rem 0 1rem;
    padding-left: 0.75rem;
  }
  .privacy-body h4 {
    font-size: 1rem;
    margin: 2rem 0 0.8rem;
  }
  .privacy-body p,
  .privacy-body ul li,
  .privacy-body ol li {
    font-size: 0.98rem;
    line-height: 1.95;
  }
  .privacy-body blockquote {
    padding: 1.1em 1.2em 1.1em 2em;
  }
  .privacy-body table {
    font-size: 0.9rem;
  }
  .privacy-body table thead th,
  .privacy-body table tbody td,
  .privacy-body table tbody th {
    padding: 0.6em 0.7em;
  }
  .privacy-body pre {
    padding: 1em 1.1em;
    font-size: 0.88rem;
  }
}
