/*
Theme Name: 美容整体院元
Theme URI: https://biyougen.com
Author: Manus AI
Author URI: https://manus.im
Description: 美容整体院元 公式サイト用カスタムテーマ。Luxury Warmth デザイン（Warm Cream × Gold Beige × Charcoal）。
Version: 1.0.0
Requires at least: 5.0
Tested up to: 7.0
Requires PHP: 7.4
License: Private
Text Domain: biyougen
*/

/* ============================================================
 * 美容整体院元 — Luxury Warmth Design System
 * Design Philosophy: Luxury Warmth
 * Color: Warm Cream × Gold Beige × Charcoal
 * Typography: Cormorant Garamond (EN) + Noto Serif JP (JA)
 * Layout: Generous whitespace, wave dividers, watermark text
 * ============================================================ */

/* === CSS Variables === */
:root {
  --color-cream: #FAF6EF;
  --color-cream-dark: #F2EBE0;
  --color-gold: #C9A96E;
  --color-gold-light: #DFC49A;
  --color-gold-dark: #A8864A;
  --color-charcoal: #2C2520;
  --color-charcoal-light: #5C5248;
  --color-warm-white: #FDFAF5;
  --color-section-alt: #F5EFE6;
  --color-muted: #8C7B6A;
  --font-display: 'Cormorant Garamond', 'Shippori Mincho B1', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif-jp);
  color: var(--color-charcoal);
  line-height: 1.4;
}

/* === Container === */
.biyougen-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .biyougen-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .biyougen-container {
    padding: 0 3rem;
  }
}

/* === Section Title (RBD Style) === */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .en {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-charcoal);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.section-title .ja {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin-bottom: 1.1rem;
}

.section-title .divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto;
}

/* === Gold Buttons === */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

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

.btn-gold:active {
  transform: scale(0.97);
}

.btn-gold-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.btn-gold-fill:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: #fff;
}

.btn-gold-fill:active {
  transform: scale(0.97);
}

/* LINE Button */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.btn-line:hover {
  background: var(--color-gold-dark);
  color: #fff;
}

/* === Gold Line Decoration === */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 1rem auto;
}

.gold-line-left {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 1rem 0;
}

/* === Watermark Text === */
.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(180, 155, 110, 0.12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* === Wave Divider === */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === Fade In Up Animation === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s var(--ease-out) both;
}

/* === Service Card === */
.service-card {
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  background: #fff;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 37, 32, 0.12);
}

.service-card img {
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover img {
  transform: scale(1.04);
}

/* === Header === */
/* WordPress管理バー対応 */
.admin-bar #biyougen-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #biyougen-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar #biyougen-header {
    top: 0;
  }
}

#biyougen-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.96);
  box-shadow: 0 1px 0 rgba(180, 155, 110, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header-info-bar {
  background: #2C2520;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  padding: 0.3rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .header-info-bar {
    display: none;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}

.header-logo .logo-en {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 3px;
  text-transform: uppercase;
  display: block;
}

.header-logo .logo-ja {
  font-family: var(--font-serif-jp);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

@media (max-width: 1023px) {
  .header-nav {
    display: none;
  }
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  padding: 0.5rem 0.8rem;
  transition: color 0.2s ease;
  display: block;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a.current {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.header-line-btn:hover {
  background: var(--color-gold-dark);
  color: #fff;
}

.header-line-btn:active {
  transform: scale(0.97);
}

@media (max-width: 639px) {
  .header-line-btn {
    display: none;
  }
}

/* Hamburger */
.hamburger-btn {
  background: none;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 0.25rem;
  display: none;
  align-items: center;
}

@media (max-width: 1023px) {
  .hamburger-btn {
    display: flex;
  }
}

/* Mobile Menu */
#mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
  background: rgba(253, 250, 245, 0.98);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

#mobile-menu.open {
  max-height: 600px;
}

.mobile-menu-nav {
  padding: 0.75rem 1.5rem 1.5rem;
}

.mobile-menu-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.current {
  color: var(--color-gold);
}

.mobile-menu-btns {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.mobile-tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}

/* === Footer === */
#biyougen-footer {
  background: #2C2520;
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
}

.footer-logo .logo-en {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  display: block;
}

.footer-logo .logo-ja {
  font-family: var(--font-serif-jp);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.775rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  margin: 1.5rem 0;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-col-divider {
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.05em;
}

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

.footer-access-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-access-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-access-text {
  font-family: var(--font-body);
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.footer-access-text a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-access-text a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
}

.footer-privacy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer-privacy:hover {
  color: var(--color-gold);
}

/* === LINE Float Button === */
.line-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.line-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.45);
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.line-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.55);
}

.line-float span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  background: rgba(253, 250, 245, 0.92);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* === Page Hero === */
.page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  margin-top: 88px;
}

@media (min-width: 768px) {
  .page-hero {
    height: 420px;
  }
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,37,32,0.35) 0%, rgba(44,37,32,0.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.page-hero-en {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.page-hero-ja {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.page-hero-divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto;
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 0.875rem 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--color-gold);
}

/* === CTA Section === */
.cta-section {
  background: var(--color-charcoal);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section .cta-en {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-section .cta-ja {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.cta-section .cta-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* === Price Table === */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.price-table th {
  font-weight: 500;
  color: var(--color-charcoal);
  background: rgba(201, 169, 110, 0.08);
}

.price-table td {
  color: var(--color-charcoal-light);
}

.price-highlight {
  color: var(--color-gold-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.03em;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-gold-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-gold);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-charcoal-light);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

/* === Blog === */
.blog-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 37, 32, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-serif-jp);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* === Responsive Utilities === */
@media (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2rem;
  }

  .page-hero {
    height: 260px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* === WordPress Core Overrides === */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

/* Entry content (blog posts) */
.entry-content {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-charcoal);
  max-width: 780px;
  margin: 0 auto;
}

.entry-content h2 {
  font-family: var(--font-serif-jp);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.entry-content h3 {
  font-family: var(--font-serif-jp);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 2rem 0 0.75rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-charcoal);
  border: 1px solid rgba(201, 169, 110, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination a:hover,
.pagination .current {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

/* Main content padding for fixed header */
#page-content {
  padding-top: 88px;
}


/* ============================================================
 * よもぎ蒸しページ (page-yomogi.php) — スマホ対応CSSクラス
 * ============================================================ */

/* --- ユーティリティ --- */
.yomogi-section {
  padding: 5rem 1rem;
}
.yomogi-section--cream {
  background: #FDFAF5;
}
.yomogi-section--warm {
  background: #F5F0E8;
}
.yomogi-container {
  max-width: 1000px;
  margin: 0 auto;
}
.yomogi-container--medium {
  max-width: 900px;
  margin: 0 auto;
}
.yomogi-container--narrow {
  max-width: 760px;
  margin: 0 auto;
}
.yomogi-label {
  font-size: .65rem;
  letter-spacing: .25em;
  color: #5A8A6A;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.yomogi-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #2C2520;
  margin-bottom: .75rem;
}
.yomogi-divider {
  width: 3rem;
  height: 2px;
  background: #5A8A6A;
  margin: 0 auto 2.5rem;
}
.yomogi-divider--left {
  margin: 0 0 2rem;
}
.yomogi-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.yomogi-section-header .yomogi-divider {
  margin: 0 auto;
}
.yomogi-accent {
  color: #5A8A6A;
}

/* --- HERO --- */
.yomogi-hero {
  position: relative;
  height: 65vh;
  min-height: 460px;
  overflow: hidden;
}
.yomogi-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.yomogi-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
}
.yomogi-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 800px;
}
.yomogi-hero__badge {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  color: #A8D5A2;
  border: 1px solid #A8D5A2;
  padding: .25rem .9rem;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.yomogi-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.yomogi-hero__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.9;
  max-width: 440px;
}
.yomogi-hero__breadcrumb {
  position: absolute;
  bottom: 1rem;
  left: 8vw;
}

/* --- WORRIES タグ --- */
.yomogi-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.yomogi-tag {
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-size: .8rem;
  border: 1px solid #5A8A6A;
  color: #5A8A6A;
  background: #EAF3ED;
}

/* --- ABOUT グリッド（PC: 2カラム / スマホ: 1カラム） --- */
.yomogi-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.yomogi-body-text {
  color: #5C4A3A;
  line-height: 1.9;
  font-size: .9rem;
}
.yomogi-body-text p {
  margin-bottom: 1rem;
}
.yomogi-body-text p:last-child {
  margin-bottom: 0;
}
.yomogi-about-images {
  position: relative;
}
.yomogi-about-main-img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.yomogi-about-sub-img-wrap {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.yomogi-about-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- FLOW タイムライン --- */
.yomogi-flow-item {
  position: relative;
}
.yomogi-flow-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
}
.yomogi-flow-item--divider::after {
  content: '';
  display: block;
  border-bottom: 1px solid #D9CFC4;
  margin: 0 5rem;
}
.yomogi-flow-num-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.yomogi-flow-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #5A8A6A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 4px 12px rgba(90,138,106,.3);
}
.yomogi-flow-line {
  width: 2px;
  height: 3rem;
  background: rgba(90,138,106,.25);
  margin-top: .5rem;
}
.yomogi-flow-content {
  flex: 1;
  padding-top: .5rem;
}
.yomogi-flow-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C2520;
  margin-bottom: .5rem;
}
.yomogi-flow-desc {
  font-size: .875rem;
  color: #5C4A3A;
  line-height: 1.8;
}

/* --- FEATURES グリッド（PC: 3カラム / スマホ: 1カラム） --- */
.yomogi-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.yomogi-feature-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #E8F0EA;
}
.yomogi-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.yomogi-feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #2C2520;
  margin-bottom: .75rem;
}
.yomogi-feature-desc {
  font-size: .8rem;
  color: #5C4A3A;
  line-height: 1.8;
}

/* --- MATERIALS グリッド（PC: 2カラム / スマホ: 1カラム） --- */
.yomogi-materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.yomogi-material-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #E8F0EA;
  overflow: hidden;
}
.yomogi-material-header {
  background: #EAF3ED;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.yomogi-material-icon {
  font-size: 1.5rem;
}
.yomogi-material-title {
  font-family: 'Noto Serif JP', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #2C2520;
}
.yomogi-material-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
.yomogi-material-body {
  padding: 1.5rem;
  color: #5C4A3A;
  font-size: .8rem;
  line-height: 1.9;
}
.yomogi-material-body p {
  margin-bottom: .75rem;
}
.yomogi-material-body p:last-child {
  margin-bottom: 0;
}

/* --- PRICE --- */
.yomogi-price-table {
  background: #fff;
  border: 1px solid #D9E8D4;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  margin-bottom: 1rem;
}
.yomogi-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.yomogi-price-name {
  text-align: left;
}
.yomogi-price-item-name {
  font-size: .95rem;
  font-weight: 700;
  color: #2C2520;
  margin-bottom: .25rem;
}
.yomogi-price-badge {
  font-size: .7rem;
  color: #5A8A6A;
  background: #EAF3ED;
  padding: .2rem .6rem;
  border-radius: 9999px;
}
.yomogi-price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C2520;
}
.yomogi-price-note {
  font-size: .75rem;
  color: #9A8A7A;
  margin-top: 1rem;
}

/* --- 関連リンク グリッド（PC: 2カラム / スマホ: 1カラム） --- */
.yomogi-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.yomogi-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.25rem;
  background: #fff;
  border: 1px solid #D9CFC4;
  border-radius: .75rem;
  font-size: .875rem;
  color: #5C4A3A;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.yomogi-link-btn:hover {
  border-color: #5A8A6A;
  color: #5A8A6A;
}

/* ============================================================
 * スマホ対応メディアクエリ（max-width: 767px）
 * ============================================================ */
@media (max-width: 767px) {

  /* よもぎ蒸しページ全体 */
  .yomogi-section {
    padding: 3rem 1rem;
  }

  /* ABOUT: 2カラム → 1カラム（画像を下に） */
  .yomogi-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .yomogi-about-images {
    margin-top: 1rem;
  }
  .yomogi-about-main-img {
    height: 18rem;
  }
  .yomogi-about-sub-img-wrap {
    bottom: -0.75rem;
    left: -0.75rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  /* FLOW: スマホでgapを縮小 */
  .yomogi-flow-inner {
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  .yomogi-flow-item--divider::after {
    margin: 0 3rem;
  }
  .yomogi-flow-num {
    width: 3rem;
    height: 3rem;
    font-size: .75rem;
  }

  /* FEATURES: 3カラム → 1カラム */
  .yomogi-features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  /* MATERIALS: 2カラム → 1カラム */
  .yomogi-materials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* PRICE: 横並び → 縦並び */
  .yomogi-price-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
  }
  .yomogi-price-amount {
    font-size: 1.4rem;
  }

  /* 関連リンク: 2カラム → 1カラム */
  .yomogi-links-grid {
    grid-template-columns: 1fr;
  }

  /* HERO: スマホでテキストサイズ調整 */
  .yomogi-hero__content {
    padding: 0 5vw;
  }
  .yomogi-hero__desc {
    font-size: .8rem;
  }
}

/* ============================================================
 * 美容鍼ページ (page-acupuncture.php) — スマホ対応CSSクラス
 * ============================================================ */

/* --- ユーティリティ --- */
.acu-section {
  padding: 5rem 1rem;
}
.acu-section--cream {
  background: #FAF8F5;
}
.acu-section--white {
  background: #fff;
}
.acu-section--dark {
  background: #1a1a1a;
}
.acu-container {
  max-width: 1000px;
  margin: 0 auto;
}
.acu-container--wide {
  max-width: 1100px;
  margin: 0 auto;
}
.acu-container--narrow {
  max-width: 800px;
  margin: 0 auto;
}
.acu-label {
  font-size: .65rem;
  letter-spacing: .25em;
  color: #C9A84C;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .5rem;
}
.acu-label--gold {
  color: #C9A84C;
}
.acu-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #292524;
  margin-bottom: .75rem;
}
.acu-heading--white {
  color: #fff;
}
.acu-divider {
  width: 3rem;
  height: 2px;
  background: #C9A84C;
  margin: 0 auto 2.5rem;
}
.acu-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.acu-body-text {
  color: #57534e;
  line-height: 1.9;
  font-size: .9rem;
}
.acu-sub-heading {
  font-size: .85rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: .75rem;
}

/* --- HERO --- */
.acu-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.acu-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.acu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.acu-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 760px;
}
.acu-hero__badge {
  font-size: .65rem;
  letter-spacing: .2em;
  color: #C9A84C;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: block;
}
.acu-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.acu-hero__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.acu-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.25rem;
  background: #C9A84C;
  color: #1a1a1a;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  border-radius: 9999px;
  width: fit-content;
  transition: opacity .2s ease;
}
.acu-hero__cta:hover {
  opacity: .85;
}
.acu-hero__breadcrumb {
  position: absolute;
  bottom: 1rem;
  left: 8vw;
}

/* --- WORRIES タグ --- */
.acu-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.acu-tag {
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-size: .8rem;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  background: #FBF6EC;
}

/* --- ABOUT グリッド（PC: 2カラム / スマホ: 1カラム） --- */
.acu-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.acu-about-img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* --- ABOUT FEATURES ミニグリッド（PC: 2カラム / スマホ: 1カラム） --- */
.acu-features-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.acu-feature-mini-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.acu-check {
  color: #C9A84C;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.acu-feature-mini-text {
  font-size: .85rem;
  color: #44403c;
}

/* --- 小顔鍼グリッド（PC: 2カラム / スマホ: 1カラム） --- */
.acu-koganhari-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.acu-koganhari-img-wrap {
  position: relative;
}
.acu-koganhari-img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.acu-popular-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #C9A84C;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 9999px;
}
.acu-recommend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.acu-recommend-tag {
  font-size: .75rem;
  padding: .35rem .875rem;
  border-radius: 9999px;
  background: #F5EDE8;
  color: #57534e;
}
.acu-effects-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.acu-effect-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.acu-effect-dot {
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: #C9A84C;
  flex-shrink: 0;
}

/* --- FLOW グリッド（PC: 3カラム / スマホ: 1カラム） --- */
.acu-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.acu-flow-card {
  position: relative;
  background: #FAF8F5;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e7e5e4;
}
.acu-flow-card-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.acu-flow-icon {
  font-size: 1.75rem;
}
.acu-flow-step-label {
  font-size: .65rem;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: .15em;
}
.acu-flow-title {
  font-weight: 700;
  color: #292524;
  margin-bottom: .5rem;
  font-size: .95rem;
}
.acu-flow-desc {
  font-size: .8rem;
  color: #57534e;
  line-height: 1.8;
}

/* --- PRICE --- */
.acu-price-heading-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.acu-price-plan-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.acu-price-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .875rem;
  border-radius: 9999px;
  background: #C9A84C;
  color: #fff;
}
.acu-price-row {
  background: rgba(255,255,255,.05);
  border-radius: .75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.acu-price-name {
  color: #fff;
  font-weight: 500;
  margin-bottom: .25rem;
}
.acu-price-detail {
  color: #a8a29e;
  font-size: .8rem;
}
.acu-price-amount {
  color: #C9A84C;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 1rem;
}
.acu-price-note {
  color: #a8a29e;
  font-size: .75rem;
  text-align: center;
}

/* --- FAQ（美容鍼カラー） --- */
.acu-faq-item {
  border-bottom: 1px solid #e8e0d0;
}
.acu-faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #C9A84C;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

/* ============================================================
 * 美容鍼ページ スマホ対応メディアクエリ（max-width: 767px）
 * ============================================================ */
@media (max-width: 767px) {

  .acu-section {
    padding: 3rem 1rem;
  }

  /* HERO */
  .acu-hero__content {
    padding: 0 5vw;
  }
  .acu-hero__desc {
    font-size: .85rem;
  }
  .acu-hero__cta {
    padding: .75rem 1.75rem;
    font-size: .75rem;
  }

  /* ABOUT: 2カラム → 1カラム（画像を下に） */
  .acu-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .acu-about-img {
    height: 18rem;
  }

  /* ABOUT FEATURES ミニグリッド: 2カラム → 1カラム */
  .acu-features-mini-grid {
    grid-template-columns: 1fr;
  }

  /* 小顔鍼: 2カラム → 1カラム（画像を上に） */
  .acu-koganhari-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .acu-koganhari-img {
    height: 22rem;
  }

  /* FLOW: 3カラム → 1カラム */
  .acu-flow-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* PRICE */
  .acu-price-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .acu-price-amount {
    margin-left: 0;
  }
}
