/*
Theme Name: Soramoyo
Theme URI: https://soramoyo.com
Description: Soramoyo Original Theme
Version: 1.0
Author: Hidamarimoyo Inc.
*/


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

:root {
  --ink:   #1a1814;
  --stone: #8c8479;
  --ash:   #c8c3bc;
  --mist:  #f0ede8;
  --sky:   #dde4ec;
  --cloud: #f7f5f2;
  --gold:  #a8926a;
  --white: #fdfcfa;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Serif JP', serif;
  background: #f5f2ed;
  color: #1a1814;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #b8cfe0 0%, #d6e4ef 30%, #e8eeeb 60%, #f0ede8 100%);
}
.cloud-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cloud-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  filter: blur(40px);
  animation: driftCloud linear infinite;
}
.c1 { width:520px; height:180px; top:12%; left:-100px; animation-duration:90s; opacity:.7; }
.c2 { width:340px; height:120px; top:28%; left:60%;   animation-duration:120s; animation-delay:-30s; opacity:.5; }
.c3 { width:280px; height:100px; top:8%;  left:40%;   animation-duration:80s;  animation-delay:-50s; opacity:.6; }
.c4 { width:420px; height:140px; top:45%; left:-60px; animation-duration:110s; animation-delay:-20s; opacity:.4; }
@keyframes driftCloud {
  from { transform: translateX(0); }
  to   { transform: translateX(110vw); }
}
.hero-rays {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stone {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 3; width: min(480px,80vw);
  opacity: 0;
  animation: riseStone 2.4s cubic-bezier(.22,1,.36,1) .6s forwards;
}
@keyframes riseStone {
  from { opacity:0; transform:translateX(-50%) translateY(40px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.hero-stone svg { width:100%; height:auto; display:block; }

.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.logo-en {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(11px,1.4vw,14px); letter-spacing: .35em; color: #7a7168;
  opacity: 0; animation: fadeUp 1.2s ease .2s forwards; margin-bottom: 18px;
}
.logo-jp {
  font-family: 'Shippori Mincho', serif; font-weight: 400;
  font-size: clamp(32px,5vw,56px); letter-spacing: .3em; color: #1a1814;
  opacity: 0; animation: fadeUp 1.2s ease .4s forwards; line-height: 1;
}
.logo-divider {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, #7a7168, transparent);
  margin: 28px auto;
  opacity: 0; animation: fadeIn 1.4s ease .9s forwards;
}
.hero-copy {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(14px,1.8vw,18px); line-height: 2.2;
  letter-spacing: .12em; color: #1a1814;
  opacity: 0; animation: fadeUp 1.4s ease 1.1s forwards;
}
.hero-copy em { font-style: normal; color: #7a7168; }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s ease 2.4s forwards;
}
.scroll-hint span {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .3em; color: #7a7168;
}
.scroll-line {
  width: 1px; height: 40px; background: #7a7168;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform:scaleY(1); }
  50%      { opacity:.8; transform:scaleY(.6); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}

/* NAV */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(240,237,232,.9), transparent);
  backdrop-filter: blur(4px);
  transition: background .4s;
}
nav.scrolled { background: rgba(247,245,242,.96); }
.nav-logo {
  font-family: 'Shippori Mincho', serif; font-size: 18px;
  letter-spacing: .3em; color: #1a1814; text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 12px; letter-spacing: .25em; color: #7a7168;
  text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: #1a1814; }

/* SECTION BASE */
.section-wrap { padding: 120px 48px; max-width: 1000px; margin: 0 auto; }
.section-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .4em; color: #7a7168;
  margin-bottom: 48px; display: flex; align-items: center; gap: 20px;
}
.section-label::after {
  content: ''; display: block; width: 48px; height: 1px; background: #bfbab2;
}

/* SEO BAND */

.seo-band {
  background: #fdfcfa;
  border-top: 1px solid #bfbab2;
  border-bottom: 1px solid #bfbab2;
  padding: 56px 48px;
  text-align: center;
}
.seo-band-inner { max-width: 760px; margin: 0 auto; }

.seo-band h1 {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: clamp(15px,2vw,19px); line-height: 2.4;
  letter-spacing: .12em; color: #7a7168;
}
.seo-band h1 strong {
  font-weight: 400; color: #1a1814;
}
.seo-band-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 32px;
}
.seo-tag {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 12px; letter-spacing: .2em; color: #7a7168;
  border: 1px solid #bfbab2; padding: 6px 16px;
}

/* SERVICES */
.service-intro {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(15px,2vw,20px); line-height: 2.6;
  letter-spacing: .1em; color: #1a1814; margin-bottom: 80px;
}
.service-intro strong { font-weight: 400; color: #7a7168; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #bfbab2; }
.service-card {
  background: #f5f2ed; padding: 52px 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: background .4s; cursor: default;
}
.service-card:hover { background: #fdfcfa; }
.service-number { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: .3em; color: #bfbab2; }
.service-title-jp { font-family: 'Shippori Mincho', serif; font-size: 22px; letter-spacing: .2em; color: #1a1814; font-weight: 500; }
.service-title-en { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 12px; letter-spacing: .25em; color: #7a7168; }
.service-card h2 { display: flex; flex-direction: column; gap: 6px; }
.service-desc {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; line-height: 2.4; letter-spacing: .08em; color: #3d3a36; margin-top: 8px;
}
.service-keywords {
  list-style: none; margin-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-keywords li {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; letter-spacing: .1em; color: #5c5850;
  padding-left: 14px; border-left: 2px solid #bfbab2;
}

/* PHILOSOPHY */
.philosophy { background: #1a1814; padding: 120px 48px; }
.philosophy-inner { max-width: 1000px; margin: 0 auto; }
.philosophy .section-label { color: #5a534e; }
.philosophy .section-label::after { background: #3a3630; }
.philosophy-copy {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(16px,2.2vw,22px); line-height: 3;
  letter-spacing: .14em; color: #ede9e3;
}
.philosophy-copy .highlight { color: #9e8660; font-weight: 300; }
.philosophy-sub {
  margin-top: 64px;
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 13px; line-height: 2.6; letter-spacing: .1em; color: #7a7168;
  max-width: 520px; border-left: 1px solid #3a3630; padding-left: 32px;
}

/* FAQ */
.faq-section { background: #fdfcfa; }
.faq-section .section-wrap { padding-top: 100px; padding-bottom: 100px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid #bfbab2; padding: 32px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid #bfbab2; }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.faq-q h3 {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: clamp(15px,1.7vw,17px); line-height: 1.9;
  letter-spacing: .1em; color: #1a1814;
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: #7a7168;
  transition: transform .3s, opacity .3s;
}
.faq-icon::before { width: 1px; height: 14px; top: 3px; left: 9px; }
.faq-icon::after  { width: 14px; height: 1px; top: 9px; left: 3px; }
.faq-item.open .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-a {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; line-height: 2.8; letter-spacing: .08em; color: #3d3a36;
  max-height: 0; overflow: hidden; transition: max-height .5s ease, padding .3s;
  padding-top: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 20px; }

/* FAQ SCHEMA */

/* BLOG */
.blog-section { background: #f5f2ed; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #bfbab2; margin-top: 0; }
.blog-card {
  background: #f5f2ed; padding: 40px 32px;
  text-decoration: none; display: flex; flex-direction: column; gap: 14px;
  transition: background .3s;
}
.blog-card:hover { background: #fdfcfa; }
.blog-date {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .3em; color: #bfbab2;
}
.blog-category {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 11px; letter-spacing: .2em; color: #9e8660;
  border: 1px solid rgba(168,146,106,.3); padding: 3px 10px;
  display: inline-block; width: fit-content;
}
.blog-card h3 {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 14px; line-height: 1.9; letter-spacing: .1em; color: #1a1814;
}
.blog-card p {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 12px; line-height: 2.2; letter-spacing: .06em; color: #7a7168;
}
.blog-more {
  display: flex; align-items: center; gap: 8px; margin-top: auto;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .3em; color: #7a7168;
}
.blog-more::after { content: '\2192'; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text h2 {
  font-family: 'Shippori Mincho', serif; font-size: clamp(20px,2.8vw,30px);
  font-weight: 400; letter-spacing: .2em; line-height: 1.8;
  margin-bottom: 40px; color: #1a1814;
}
.about-text p {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 14px; line-height: 2.8; letter-spacing: .08em; color: #7a7168;
}
.info-block { border-top: 1px solid #bfbab2; padding: 24px 0; }
.info-block:last-child { border-bottom: 1px solid #bfbab2; }
.info-label { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 11px; letter-spacing: .3em; color: #7a7168; margin-bottom: 8px; }
.info-value { font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: 14px; letter-spacing: .15em; color: #1a1814; line-height: 2; }

/* PRICE */
.price-section { background: #ede9e3; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #bfbab2; }
.price-card { background: #fdfcfa; padding: 44px 32px; display: flex; flex-direction: column; gap: 16px; }
.price-name { font-family: 'Shippori Mincho', serif; font-size: 18px; letter-spacing: .2em; color: #1a1814; font-weight: 400; }
.price-amount {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3vw,36px);
  letter-spacing: .05em; color: #1a1814;
}
.price-amount span { font-size: 14px; letter-spacing: .2em; color: #7a7168; font-family: 'Noto Serif JP', serif; font-weight: 200; }
.price-note { font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: 12px; line-height: 2.2; letter-spacing: .08em; color: #7a7168; }

/* CONTACT */
.contact-section { background: #d8e2ec; padding: 100px 48px; }
.contact-inner { max-width: 760px; margin: 0 auto; }
.contact-copy {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: clamp(14px,1.8vw,17px); line-height: 2.8;
  letter-spacing: .1em; color: #7a7168; margin-bottom: 56px;
  text-align: center;
}
.contact-tel {
  display: block; text-align: center; text-decoration: none;
  margin-bottom: 56px;
}
.contact-tel-label {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 12px; letter-spacing: .3em; color: #7a7168;
  display: block; margin-bottom: 10px;
}
.contact-tel-number {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(32px, 5vw, 48px); letter-spacing: .12em; color: #1a1814;
  display: block; line-height: 1;
}
.contact-tel-hours {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 12px; letter-spacing: .2em; color: #7a7168;
  display: block; margin-top: 10px;
}

/* FORM */
.c-field { margin-bottom: 40px; }
.c-field-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.c-field-label-text {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: 14px; letter-spacing: .12em; color: #1a1814;
}
.c-req {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 11px; letter-spacing: .08em; color: #fdfcfa;
  background: #7a7168; padding: 2px 7px;
}
.c-opt {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 11px; letter-spacing: .08em; color: #7a7168;
  border: 1px solid #bfbab2; padding: 2px 7px;
}
.c-field input[type="text"],
.c-field input[type="email"],
.c-field input[type="tel"],
.c-field textarea {
  width: 100%;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; letter-spacing: .08em; color: #1a1814;
  background: #fdfcfa; border: 1px solid #bfbab2;
  padding: 14px 18px; outline: none; border-radius: 0; appearance: none;
  transition: border-color .3s;
}
.c-field input:focus, .c-field textarea:focus { border-color: #7a7168; }
.c-field textarea { height: 160px; resize: vertical; line-height: 2.2; }
.c-radio-group {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid #bfbab2; background: #fdfcfa;
}
.c-radio-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-bottom: 1px solid #ede9e3;
  cursor: pointer; transition: background .2s;
}
.c-radio-item:last-child { border-bottom: none; }
.c-radio-item:hover { background: #ede9e3; }
.c-radio-item input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 17px; height: 17px; flex-shrink: 0;
  border: 1px solid #bfbab2; border-radius: 50%;
  background: #fdfcfa; cursor: pointer;
  transition: border-color .2s; position: relative;
}
.c-radio-item input[type="radio"]:checked { border-color: #7a7168; background: #7a7168; }
.c-radio-item input[type="radio"]:checked::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #fdfcfa;
}
.c-radio-label {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; letter-spacing: .1em; color: #1a1814; cursor: pointer;
}
.c-err {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 12px; letter-spacing: .08em; color: #8c4a3a;
  margin-top: 6px; display: none;
}
.c-field.has-error input,
.c-field.has-error textarea,
.c-field.has-error .c-radio-group { border-color: #8c4a3a; }
.c-field.has-error .c-err { display: block; }
.c-divider { border: none; border-top: 1px solid rgba(0,0,0,.08); margin: 48px 0; }
.c-privacy {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; line-height: 2.4; letter-spacing: .06em; color: #7a7168;
  padding: 20px 24px; background: rgba(255,255,255,.6);
  border: 1px solid #bfbab2; margin-bottom: 40px;
}
.c-submit-wrap { text-align: center; }
.c-submit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 360px;
  padding: 20px 0; border: 1px solid #7a7168; background: transparent;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 14px; letter-spacing: .35em; color: #1a1814;
  cursor: pointer; transition: background .4s, color .4s, border-color .4s;
}
.c-submit-btn:hover { background: #1a1814; color: #f5f2ed; border-color: #1a1814; }
.c-submit-btn:disabled { opacity: .5; cursor: not-allowed; }
/* THANKS */
.c-thanks {
  display: none; text-align: center; padding: 60px 0;
}
.c-thanks-title {
  font-family: 'Shippori Mincho', serif; font-weight: 400;
  font-size: clamp(20px,3vw,28px); letter-spacing: .2em;
  color: #1a1814; line-height: 1.7; margin-bottom: 28px;
}
.c-thanks-text {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; line-height: 3.0; letter-spacing: .08em; color: #7a7168;
}

/* FOOTER */
footer { background: #1a1814; padding: 60px 48px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Shippori Mincho', serif; font-size: 20px; letter-spacing: .4em; color: #ede9e3; }
.footer-nav { display: flex; gap: 28px; list-style: none; }
.footer-nav a { font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: 11px; letter-spacing: .2em; color: #7a7168; text-decoration: none; }
.footer-copy { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: .25em; color: #3a3630; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section-wrap { padding: 72px 24px; }
  .blog-grid, .price-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .philosophy, .contact-section { padding: 72px 24px; }
  .seo-band { padding: 40px 24px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}
.blog-list-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 48px; border: 1px solid #7a7168;
  color: #1a1814; text-decoration: none;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; letter-spacing: .3em;
  transition: background .4s, color .4s;
  margin-top: 0;
}
.blog-list-btn:hover { background: #1a1814; color: #f5f2ed; border-color: #1a1814; }

/* HERO QUICK */
.hero-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 28px;
  width: min(360px, 90vw);
  opacity: 0; animation: fadeUp 1.4s ease 1.5s forwards;
}
.hero-quick-item {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  padding: 20px 20px;
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-quick-tel {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  padding: 20px 20px;
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-quick-label {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: 13px; letter-spacing: .18em; color: #7a7168;
  display: block;
}
.hero-quick-val {
  font-family: 'Shippori Mincho', serif; font-size: 20px;
  letter-spacing: .06em; color: #1a1814; font-weight: 500;
  display: block;
}
.hero-quick-telnum {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(18px,3vw,26px); letter-spacing: .08em;
  color: #1a1814; text-decoration: none; display: block;
  transition: color .3s;
}
.hero-quick-telnum:hover { color: #7a7168; }

/* FOOTER COMPANY */
.footer-logo-wrap { display: flex; flex-direction: column; gap: 6px; }
.footer-company {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: 13px; letter-spacing: .2em; color: #8c8479;
}

/* BOOKMARK BANNER */
#bookmark-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1814;
  color: #f5f2ed;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
}
#bookmark-banner.show { transform: translateY(0); }
.bm-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; line-height: 1.8;
  color: #c8c3bc; flex: 1;
  letter-spacing: .08em;
}
.bm-text strong {
  color: #fdfcfa; font-size: 16px;
  font-weight: 500; display: block;
  margin-bottom: 3px; letter-spacing: .12em;
}
.bm-actions { display: flex; gap: 12px; flex-shrink: 0; }
.bm-btn {
  padding: 12px 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; cursor: pointer;
  border: none; letter-spacing: .15em;
  white-space: nowrap;
}
.bm-btn-main {
  background: #f5f2ed; color: #1a1814;
  font-weight: 500;
  transition: background .3s;
}
.bm-btn-main:hover { background: #e8e3db; }
.bm-btn-close {
  background: transparent; color: #8c8479;
  border: 1px solid #3a3630;
  transition: color .3s;
}
.bm-btn-close:hover { color: #f5f2ed; }

/* BOOKMARK MODAL */
#bm-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1000;
  align-items: center; justify-content: center;
}
#bm-modal.show { display: flex; }
.bm-modal-inner {
  background: #fdfcfa;
  padding: 44px 40px;
  max-width: 400px; width: 92%;
  text-align: center;
}
.bm-modal-inner h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px; color: #1a1814;
  margin-bottom: 28px; line-height: 1.7;
  letter-spacing: .15em; font-weight: 500;
}
.bm-modal-step {
  background: #f5f2ed;
  padding: 18px 20px;
  margin-bottom: 12px;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: #3d3a36;
  line-height: 1.9; text-align: left;
  letter-spacing: .06em;
}
.bm-modal-step strong { color: #1a1814; font-weight: 500; }
.bm-modal-close {
  margin-top: 24px; padding: 16px 0;
  background: #1a1814; color: #f5f2ed;
  border: none;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; letter-spacing: .25em;
  cursor: pointer; width: 100%;
  transition: background .3s;
}
.bm-modal-close:hover { background: #3a3630; }

@media (max-width: 768px) {
  #bookmark-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px; }
  .bm-actions { width: 100%; }
  .bm-btn { flex: 1; text-align: center; }
  .bm-modal-inner { padding: 36px 24px; }
}


/* ARTICLE PAGE */

.article-header {
  padding: 140px 48px 72px;
  max-width: 760px;
  margin: 0 auto;
}
.article-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.article-date {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 12px; letter-spacing: .3em; color: #7a7168;
}
.article-category {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 11px; letter-spacing: .2em; color: #9e8660;
  border: 1px solid rgba(168,146,106,.4); padding: 3px 12px;
}
.article-title {
  font-family: 'Shippori Mincho', serif; font-weight: 400;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.7; letter-spacing: .15em; color: #1a1814;
  margin-bottom: 28px;
}
.article-lead {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 16px; line-height: 2.6; letter-spacing: .08em;
  color: #5c5850;
  padding-bottom: 48px;
  border-bottom: 1px solid #bfbab2;
}

/* ARTICLE BODY */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

/* H2 */
.article-body h2 {
  font-family: 'Shippori Mincho', serif; font-weight: 500;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: .15em; color: #1a1814;
  margin: 72px 0 28px;
  padding-left: 16px;
  border-left: 3px solid #9e8660;
  line-height: 1.7;
}

/* H3 */
.article-body h3 {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: 17px; letter-spacing: .12em; color: #1a1814;
  margin: 48px 0 20px;
  line-height: 1.8;
}

/* PARAGRAPH */
.article-body p {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 16px; line-height: 3.0; letter-spacing: .08em;
  color: #3d3a36;
  margin-bottom: 32px;
}

/* LIST */
.article-body ul, .article-body ol {
  padding-left: 0; list-style: none;
  margin-bottom: 40px;
}
.article-body ul li, .article-body ol li {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 16px; line-height: 2.6; letter-spacing: .08em;
  color: #3d3a36;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid #ede9e3;
  position: relative;
}
.article-body ul li::before {
  content: '\2014';
  position: absolute; left: 0;
  color: #9e8660; font-family: 'Cormorant Garamond', serif;
}
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; }
.article-body ol li::before {
  content: counter(ol-counter);
  position: absolute; left: 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; color: #9e8660;
}

/* BOX */
.article-body .box {
  background: #fdfcfa;
  border: 1px solid #bfbab2;
  padding: 32px 36px;
  margin: 48px 0;
}
.article-body .box-title {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: 14px; letter-spacing: .2em; color: #7a7168;
  margin-bottom: 16px;
}
.article-body .box p {
  margin-bottom: 0; font-size: 15px;
}

/* HR */
.article-body hr {
  border: none; border-top: 1px solid #bfbab2;
  margin: 64px 0;
}

/* ARTICLE CTA */
.article-cta {
  background: #d8e2ec;
  padding: 80px 48px;
  text-align: center;
  margin-top: 0;
}
.article-cta-inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.cta-lead {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; line-height: 2.8; letter-spacing: .1em; color: #1a1814;
}
.cta-tel {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none;
}
.cta-tel-label {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 12px; letter-spacing: .3em; color: #7a7168; display: block;
}
.cta-tel-number {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(32px, 5vw, 48px); letter-spacing: .12em; color: #1a1814;
  display: block; line-height: 1;
}
.cta-tel-hours {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 12px; letter-spacing: .2em; color: #7a7168; display: block;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 44px; border: 1px solid #7a7168;
  color: #1a1814; text-decoration: none;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; letter-spacing: .3em;
  transition: background .4s, color .4s;
}
.cta-btn:hover { background: #1a1814; color: #f5f2ed; border-color: #1a1814; }

/* BACK LINK */
.back-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 64px 48px;
  background: #fdfcfa;
}
.back-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 48px; border: 1px solid #7a7168;
  color: #1a1814; text-decoration: none;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; letter-spacing: .3em;
  transition: background .4s, color .4s;
}
.back-btn:hover { background: #1a1814; color: #f5f2ed; border-color: #1a1814; }
.back-link {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .35em; color: #7a7168;
  text-decoration: none;
}
.back-link:hover { color: #1a1814; }

/* FOOTER */
footer {
  background: #1a1814; padding: 60px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Shippori Mincho', serif; font-size: 20px;
  letter-spacing: .4em; color: #ede9e3;
}
.footer-nav { display: flex; gap: 28px; list-style: none; }
.footer-nav a {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 11px; letter-spacing: .2em; color: #7a7168; text-decoration: none;
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .25em; color: #3a3630;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .article-header { padding: 100px 24px 48px; }
  .article-body { padding: 0 24px 80px; }
  .article-cta { padding: 56px 24px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

/* WP BLOCKS */
.wp-block-heading {
  font-family: 'Shippori Mincho', serif; font-weight: 500;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: .15em; color: #1a1814;
  margin: 72px 0 28px;
  padding-left: 16px;
  border-left: 3px solid #9e8660;
  line-height: 1.7;
}
.wp-block-list {
  padding-left: 0; list-style: none;
  margin-bottom: 40px;
}
.wp-block-list li {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 16px; line-height: 2.6; letter-spacing: .08em;
  color: #3d3a36;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid #ede9e3;
  position: relative;
}
.wp-block-list li::before {
  content: '\2014';
  position: absolute; left: 0;
  color: #9e8660; font-family: 'Cormorant Garamond', serif;
}
.wp-block-separator {
  border: none; border-top: 1px solid #bfbab2;
  margin: 64px 0;
}


/* BLOG LIST */

.page-header {
  padding: 140px 48px 72px;
  border-bottom: 1px solid #bfbab2;
  background: #fdfcfa;
}
.page-header-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
}
.page-header-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .4em; color: #7a7168;
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.page-header-label::after {
  content: ''; display: block; width: 40px; height: 1px; background: #bfbab2;
}
.page-header h1 {
  font-family: 'Shippori Mincho', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .2em; color: #1a1814; line-height: 1.4;
}
.page-header-desc {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 14px; line-height: 2.6; letter-spacing: .1em;
  color: #7a7168; max-width: 360px;
}

/* FILTER TABS */
.filter-wrap {
  background: #fdfcfa;
  border-bottom: 1px solid #bfbab2;
  padding: 0 48px;
}
.filter-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; gap: 0;
}
.filter-btn {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 12px; letter-spacing: .2em; color: #7a7168;
  padding: 20px 28px;
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: color .3s, border-color .3s;
}
.filter-btn:hover { color: #1a1814; }
.filter-btn.active {
  color: #1a1814;
  border-bottom-color: #9e8660;
}

/* ARTICLE LIST */
.articles-wrap {
  max-width: 1000px; margin: 0 auto;
  padding: 72px 48px 120px;
}

/* ARTICLE CARD */
.article-list {
  display: flex; flex-direction: column; gap: 0;
}
.article-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid #bfbab2;
  text-decoration: none;
  transition: background .3s;
  position: relative;
}
.article-item::before {
  content: '';
  position: absolute; left: -48px; right: -48px; top: 0; bottom: 0;
  background: transparent;
  transition: background .3s;
  z-index: 0;
}
.article-item:hover::before { background: #fdfcfa; }
.article-item > * { position: relative; z-index: 1; }

.article-item-meta {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 4px;
}
.article-item-date {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 12px; letter-spacing: .25em; color: #7a7168;
}
.article-item-category {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 11px; letter-spacing: .18em; color: #9e8660;
  border: 1px solid rgba(168,146,106,.35); padding: 3px 10px;
  display: inline-block; width: fit-content;
}

.article-item-body { display: flex; flex-direction: column; gap: 12px; }
.article-item-title {
  font-family: 'Shippori Mincho', serif; font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .15em; line-height: 1.7; color: #1a1814;
}
.article-item-excerpt {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 14px; line-height: 2.4; letter-spacing: .07em;
  color: #5c5850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-item-arrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 11px; letter-spacing: .3em; color: #7a7168;
  padding-top: 8px; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.article-item-arrow::after { content: '\2192'; }

/* NO ARTICLES */
.no-articles {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 14px; letter-spacing: .15em; color: #7a7168;
  padding: 80px 0; text-align: center;
  display: none;
}

/* CTA */
.list-cta {
  background: #d8e2ec;
  padding: 80px 48px;
  text-align: center;
}
.list-cta-inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.list-cta p {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; line-height: 2.8; letter-spacing: .1em;
  color: #1a1814; margin-bottom: 40px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 44px; border: 1px solid #7a7168;
  color: #1a1814; text-decoration: none;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; letter-spacing: .3em;
  transition: background .4s, color .4s;
}
.cta-btn:hover { background: #1a1814; color: #f5f2ed; border-color: #1a1814; }

/* FOOTER */
footer {
  background: #1a1814; padding: 60px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Shippori Mincho', serif; font-size: 20px;
  letter-spacing: .4em; color: #ede9e3;
}
.footer-nav { display: flex; gap: 28px; list-style: none; }
.footer-nav a {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 11px; letter-spacing: .2em; color: #7a7168; text-decoration: none;
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .25em; color: #3a3630;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .page-header { padding: 100px 24px 48px; }
  .page-header-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .filter-wrap { padding: 0 24px; overflow-x: auto; }
  .filter-inner { min-width: max-content; }
  .articles-wrap { padding: 48px 24px 80px; }
  .article-item { grid-template-columns: 1fr; gap: 12px; }
  .article-item-arrow { display: none; }
  .list-cta { padding: 56px 24px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

.list-cta-tel {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none;
}
.cta-tel-label {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 12px; letter-spacing: .3em; color: #7a7168; display: block;
}
.cta-tel-number {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(32px, 5vw, 48px); letter-spacing: .12em; color: #1a1814;
  display: block; line-height: 1;
}
.cta-tel-hours {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 12px; letter-spacing: .2em; color: #7a7168; display: block;
}

/* PC/SP 切り替え */
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none !important; }
  .sp-only { display: block; }
}

/* スマホ用アコーディオン */
.service-accordion {
  border-top: 1px solid #bfbab2;
}
.sacc-item {
  border-bottom: 1px solid #bfbab2;
}
.sacc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; gap: 16px;
}
.sacc-left { display: flex; align-items: center; gap: 14px; }
.sacc-num {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: .3em; color: #bfbab2; flex-shrink: 0;
}
.sacc-title {
  font-family: 'Shippori Mincho', serif; font-size: 18px;
  letter-spacing: .18em; color: #1a1814; font-weight: 500;
}
.sacc-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sacc-price {
  font-family: 'Cormorant Garamond', serif; font-size: 16px;
  letter-spacing: .06em; color: #1a1814;
}
.sacc-icon {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  color: #7a7168; transition: transform .3s; display: inline-block;
  line-height: 1;
}
.sacc-item.open .sacc-icon { transform: rotate(45deg); }
.sacc-body {
  display: none;
  padding: 0 0 24px 0;
}
.sacc-item.open .sacc-body { display: block; }
.sacc-body p {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 15px; line-height: 2.6; letter-spacing: .06em;
  color: #3d3a36; margin-bottom: 16px;
}
.sacc-body ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.sacc-body ul li {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 13px; letter-spacing: .08em; color: #7a7168;
  padding-left: 14px; border-left: 2px solid #bfbab2;
}

/* 価格グリッド6列対応 */
@media (min-width: 769px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}