/*
Theme Name: OPT WELLNESS
Theme URI: https://optwellness.jp
Author: OPT WELLNESS CTO
Description: MATCHA∞ HOJICHA∞ オフィス向けウェルネスブランドのカスタムWordPressテーマ
Version: 1.0.0
License: Proprietary
Text Domain: opt-wellness
*/

/* =============================================
   OPT WELLNESS — 共通スタイルシート
   Design: Premium Wellness (05 ベース)
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --cream:        #F5F0E8;
  --cream2:       #EDE6D8;
  --green:        #3B5E3A;
  --green-light:  #5A8058;
  --gold:         #B8962E;
  --gold-light:   #D4AE4A;
  --hojicha:      #7B5234;
  --hojicha-light:#A0724D;
  --text:         #2C2A26;
  --sub:          #7A7268;
  --border:       rgba(184,150,46,0.2);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--green);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--sub);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--green); }
.nav-links a.btn-nav {
  font-size: 11px;
  letter-spacing: 3px;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}
.nav-links a.btn-nav:hover {
  background: var(--gold);
  color: var(--cream);
}

/* WordPress nav_menu が出力するul/liに対応 */
.nav-links.menu { padding: 0; }
.nav-links li { list-style: none; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(245,240,232,0.98);
  padding: 24px 24px 32px;
  border-top: 1px solid var(--border);
  list-style: none;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile li { border-bottom: 1px solid var(--border); }
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--sub);
}
.nav-mobile a.btn-nav {
  margin-top: 16px;
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

/* =============================================
   HERO (TOP ページ用・フルスクリーン)
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(59,94,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-ornament {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 300;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--green);
  max-width: 800px;
  margin: 0 auto 16px;
}
.hero h1 em { font-style: italic; }
.hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 200;
  color: var(--sub);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 2;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  margin-top: 60px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--sub);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 8px auto 0;
}

/* =============================================
   PAGE HEADER (内部ページ用)
   ============================================= */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--green);
  margin: 12px 0 16px;
}
.page-header p {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 200;
  color: var(--sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 2;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold,
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  border: 1px solid var(--gold);
  transition: background 0.2s;
  cursor: pointer;
}
.btn-gold:hover,
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost,
.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  border: 1px solid var(--green);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover,
.btn-outline:hover { background: var(--green); color: var(--cream); }

/* CTA セクション内のアウトラインボタン（白系） */
.cta-section .btn-outline {
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.cta-section .btn-outline:hover {
  background: rgba(245,240,232,0.15);
  color: var(--cream);
}

/* =============================================
   SECTION & ORNAMENT
   ============================================= */
.section {
  padding: 100px 0;
}
.section-bg {
  background: var(--cream2);
}

.section-ornament {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-label-gold {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }
.section-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 200;
  color: var(--sub);
  max-width: 640px;
  line-height: 2;
  margin-bottom: 48px;
}

/* =============================================
   GRIDS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================
   CARDS (汎用)
   ============================================= */
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 32px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.5;
}
.card-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}

/* =============================================
   PROBLEM CARDS
   ============================================= */
.problem-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px 28px;
}
.problem-pct {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-pct span { font-size: 28px; }
.problem-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.problem-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 12px;
}
.problem-source {
  font-size: 12px;
  color: var(--sub);
  opacity: 0.7;
  line-height: 1.7;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.feature-card {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.5;
}
.feature-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 12px;
}
.feature-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}
.feature-voice,
.card-voice {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--sub);
  line-height: 1.9;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-top: 16px;
}
.feature-bullets {
  list-style: none;
  text-align: left;
  margin: 16px 0;
}
.feature-bullets li {
  font-size: 13px;
  color: var(--sub);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.7;
}
.feature-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
.product-matcha .feature-bullets li,
.product-hojicha .feature-bullets li {
  color: var(--cream);
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
}
.product-card.matcha-card,
.product-matcha {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.product-card.hojicha-card,
.product-hojicha {
  background: var(--hojicha);
  color: var(--cream);
  border-color: var(--hojicha);
}
.product-type {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.7;
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}
.product-concept {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 24px;
}
.product-desc {
  font-size: 14px;
  line-height: 2;
  opacity: 1;
  margin-bottom: 20px;
}
.product-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(245,240,232,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cream);
  transition: background 0.2s;
}
.product-btn:hover { background: rgba(245,240,232,0.15); }
.product-img {
  height: 240px;
  margin: 24px 0;
}

/* =============================================
   ADVANTAGE ITEMS
   ============================================= */
.advantage-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.advantage-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.advantage-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  width: 32px;
  margin-top: 2px;
}
.advantage-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 8px;
}
.advantage-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}
.advantage-content { flex: 1; }

/* =============================================
   INGREDIENT CARDS
   ============================================= */
.ingredient-section {
  margin-bottom: 32px;
}
.ingredient-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.ingredient-card {
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: -1px;
}
.ingredient-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.ingredient-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}

/* =============================================
   STEPS (導入の流れ)
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 48px 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.step-item {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--cream);
  position: relative;
  z-index: 1;
  font-size: 18px;
  letter-spacing: 2px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.5;
}
.step-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}

/* =============================================
   PRICE CARDS
   ============================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
}
.price-card.featured {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.price-plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  margin-bottom: 12px;
}
.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}
.price-main small { font-size: 16px; }
.price-note {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 20px;
  line-height: 1.7;
}
.price-card.featured .price-note { color: rgba(245,240,232,0.6); }
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 13px;
  color: inherit;
  padding: 6px 0 6px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.7;
}
.price-card.featured .price-features li { border-bottom-color: rgba(245,240,232,0.15); }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.6;
  cursor: default;
}
.faq-a {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}

details.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  line-height: 1.6;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-a { margin-top: 12px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--green);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.cta-section .section-label { color: rgba(245,240,232,0.5); }
.cta-section .section-title { color: var(--cream); }
.cta-section .section-desc { color: rgba(245,240,232,0.7); margin: 0 auto 40px; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 15px;
  color: rgba(245,240,232,0.7);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.cta-section .btn-primary:hover {
  background: var(--cream2);
  border-color: var(--cream2);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  line-height: 2;
  margin-bottom: 12px;
}
.footer-addr {
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  line-height: 2;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(245,240,232,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(184,150,46,0.1);
  font-size: 11px;
  color: rgba(245,240,232,0.25);
  line-height: 2;
}

/* =============================================
   IMAGE PLACEHOLDER
   ============================================= */
.img-placeholder {
  background: var(--cream2);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  padding: 24px;
  min-height: 200px;
}
.img-placeholder::after,
.map-placeholder::after {
  content: "※ coming soon";
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 10px;
}

.map-placeholder {
  background: var(--cream2);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  padding: 24px;
  height: 360px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.required {
  font-size: 11px;
  background: var(--gold);
  color: var(--cream);
  padding: 2px 8px;
  font-weight: 400;
  letter-spacing: 1px;
}
.optional {
  font-size: 11px;
  background: var(--border);
  color: var(--sub);
  padding: 2px 8px;
  font-weight: 400;
  letter-spacing: 1px;
}
.form-input,
.form-select,
.form-textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(44,42,38,0.2);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7268' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea {
  height: 180px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: var(--sub);
  margin-top: 6px;
  line-height: 1.7;
}
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-radio-label,
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.7;
}
.form-radio-label input,
.form-checkbox-label input {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

/* Contact Form 7 送信ボタン */
.wpcf7-form input[type="submit"] {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* =============================================
   COMPANY TABLE
   ============================================= */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.company-table th,
.company-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.8;
}
.company-table th {
  width: 200px;
  font-weight: 700;
  color: var(--sub);
  background: var(--cream2);
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
}
.company-table td { color: var(--text); }
.company-table a { color: var(--gold); text-decoration: underline; }

/* =============================================
   COLUMN (ブログ)
   ============================================= */
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  color: var(--sub);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tag:hover,
.tag.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.col-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.col-card:hover { box-shadow: 0 8px 24px rgba(59,94,58,0.1); }
.col-card-img {
  height: 200px;
  min-height: 200px;
  border: none;
  border-bottom: 1px solid var(--border);
  width: 100%;
  object-fit: cover;
}
.col-card-body { padding: 24px; }
.col-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.col-card-date {
  font-size: 13px;
  color: var(--sub);
  letter-spacing: 1px;
}
.col-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.6;
}
.col-card-title a { color: var(--green); }
.col-card-title a:hover { color: var(--gold); }
.col-card-excerpt {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: var(--sub);
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover,
.pagination .current {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* =============================================
   ARTICLE (コラム詳細)
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 40px;
  padding-top: 100px;
}
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.article-header {
  margin-bottom: 32px;
}
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.5;
  margin-top: 12px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.article-thumb {
  height: 320px;
  margin-bottom: 40px;
  min-height: 320px;
  width: 100%;
  object-fit: cover;
}
.article-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.article-body p { margin-bottom: 20px; }
.article-body ul {
  list-style: disc;
  margin: 0 0 20px 24px;
}
.article-body ul li { margin-bottom: 8px; line-height: 1.8; }

.sidebar-box {
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-box-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.sidebar-links {
  list-style: none;
}
.sidebar-links li {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}
.sidebar-links a:hover { color: var(--green); }

/* =============================================
   MISC UTILITIES
   ============================================= */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.legal-note {
  font-size: 12px;
  color: var(--sub);
  line-height: 2;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 40px;
}

/* =============================================
   PRIVACY MODAL
   ============================================= */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(44,42,38,0.6);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal.is-open {
  display: flex;
}
.privacy-modal__box {
  background: var(--cream);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.privacy-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--sub);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.privacy-modal__close:hover { color: var(--text); }
.privacy-modal__box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.privacy-modal__box h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin: 24px 0 8px;
  letter-spacing: 1px;
}
.privacy-modal__box p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 8px;
}
.privacy-modal__box ul {
  list-style: disc;
  margin: 0 0 8px 20px;
  font-size: 13px;
  color: var(--sub);
  line-height: 1.9;
}
.privacy-modal__enacted {
  font-size: 12px;
  color: var(--sub);
  text-align: right;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  .container,
  .nav-inner { padding-left: 24px; padding-right: 24px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 24px 60px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }

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

  .article-layout { grid-template-columns: 1fr; }

  .breadcrumb { padding-top: 96px; }

  .founder-grid { grid-template-columns: 1fr !important; }
}

/* =============================================
   RESPONSIVE — 600px
   ============================================= */
@media (max-width: 600px) {
  .container,
  .nav-inner { padding-left: 16px; padding-right: 16px; }

  .hero { padding: 90px 16px 60px; }
  .hero-btns { flex-direction: column; align-items: center; }

  .page-header { padding: 110px 16px 48px; }

  .section { padding: 64px 0; }

  .grid-4 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

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

  .company-table th { width: 120px; }

  .tag-filter { gap: 6px; }

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