/*
Theme Name: Lightning Child
Template: lightning
Text Domain: lightning-child
*/

/* =========================
   Base
========================= */
:root {
  --pink:        #f7d6d6;
  --pink-mid:    #eec0c0;
  --yellow:      #fdf3dc;
  --yellow-mid:  #f5e4b8;
  --green:       #ddeedd;
  --green-mid:   #c4dfc0;
  --green-dark:  #7aab7a;
  --cream:       #fdfaf5;
  --brown:       #8b6b5a;
  --brown-light: #c4956a;
  --brown-dark:  #5c4035;
  --text:        #4a3b32;
  --text-light:  #7a6055;
  --white:       #ffffff;
}

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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif JP', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p,
ul,
ol,
dl,
blockquote,
figure,
table,
tr,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

.site-main-custom {
  padding-top: 0;
  margin: 0;
}

.site-main-custom > *:last-child {
  margin-bottom: 0;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--brown-light);
  text-transform: uppercase;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.section-title-jp {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-top: 8px;
  display: block;
}

.title-deco {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.title-deco::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--brown-light);
}

.line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: rgba(253, 250, 245, 0.95) !important;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  transition: all 0.35s;
  box-shadow: 0 6px 28px rgba(92, 64, 53, 0.22);
}

.line-btn:hover {
  background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(92, 64, 53, 0.30);
}

/* =========================
   Header / Footer Common
========================= */
.site-header-custom p,
.site-header-custom ul,
.site-header-custom li,
.site-footer-custom p,
.site-footer-custom ul,
.site-footer-custom li {
  margin-bottom: 0;
}

.site-header-custom ul,
.site-footer-custom ul {
  list-style: none;
  padding-left: 0;
}

.site-header-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.site-header-custom.scrolled {
  box-shadow: 0 2px 20px rgba(139, 107, 90, 0.12);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--brown-dark);
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}

.logo span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-top: 2px;
}

.site-header-custom nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.site-header-custom nav li {
  white-space: nowrap;
}

.site-header-custom nav a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;
}

.site-header-custom nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brown-light);
  transition: width 0.3s;
}

.site-header-custom nav a:hover {
  color: var(--brown);
}

.site-header-custom nav a:hover::after,
.site-header-custom nav a.active::after {
  width: 100%;
}

.site-header-custom nav a.active {
  color: var(--brown);
}

.nav-reserve-btn {
  display: inline-block;
  padding: 7px 14px !important;
  border: 1px solid var(--brown-light) !important;
  border-radius: 30px !important;
  color: var(--brown) !important;
  font-family: 'Noto Serif JP', serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.3s, color 0.3s !important;
  white-space: nowrap;
  background: transparent !important;
}

.nav-reserve-btn::after {
  display: none !important;
}

.nav-reserve-btn:hover {
  background: var(--brown-light) !important;
  color: #fff !important;
}

.site-footer-custom {
  background: linear-gradient(135deg, #7a5a4a 0%, #6b4e3f 100%);
  color: rgba(253, 250, 245, 0.85);
  padding: 60px 80px 32px;
  margin: 0;
}

.site-footer-custom > *:last-child {
  margin-bottom: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(253, 250, 245, 0.95);
  line-height: 1.4;
}

.footer-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  letter-spacing: 0.25em;
  color: rgba(253, 250, 245, 0.6);
  margin-top: 4px;
}

.footer-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-nav a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(253, 250, 245, 0.7);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: rgba(253, 250, 245, 1);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 250, 245, 0.1);
  padding-top: 24px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(253, 250, 245, 0.4);
  margin-bottom: 0;
}

/* =========================
   Mobile Nav
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  z-index: 1100;
  line-height: 1;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform 0.32s ease, opacity 0.32s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 36, 28, 0.45);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100dvh;
  background: var(--cream);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 88px 32px 48px;
  overflow-y: auto;
  box-shadow: -4px 0 32px rgba(92, 64, 53, 0.12);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-drawer-list li {
  width: 110px;
  margin: 0 0 22px;
  padding: 0 0 22px;
  text-align: center;
  position: relative;
}

.nav-drawer-list li::before {
  content: none;
}

.nav-drawer-list li::after {
  content: "";
  display: block;
  width: 78px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(196, 149, 106, 0.14);
}

.nav-drawer-list li:first-child::before {
  content: "";
  display: block;
  width: 78px;
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(196, 149, 106, 0.14);
}

.nav-drawer-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nav-drawer-list li a {
  display: block;
  padding: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--brown-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-drawer-list li a:hover,
.nav-drawer-list li a.active {
  color: var(--brown-light);
}

.nav-drawer-line {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 15px 24px;
  background: #06C755;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.nav-drawer-line svg {
  display: none;
}

.nav-drawer-line:hover {
  background: #05b04b;
  transform: translateY(-1px);
}

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

  .hamburger {
    display: flex;
  }
}

/* =========================
   Reveal
========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =========================
   Top Page
========================= */
.hp-top-page {
  background: var(--cream);
}

.hp-top-page * {
  box-sizing: border-box;
}

.hp-top-page img {
  max-width: 100%;
  display: block;
}

.hp-top-page a {
  text-decoration: none;
  color: inherit;
}

.hp-top-page p,
.hp-top-page h1,
.hp-top-page h2,
.hp-top-page h3,
.hp-top-page ul,
.hp-top-page li,
.hp-top-page table,
.hp-top-page tr,
.hp-top-page td,
.hp-top-page th {
  margin: 0;
  padding: 0;
}

.hp-top-page ul {
  list-style: none;
  padding-left: 0;
}

.hp-top-page table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.hp-top-page section {
  position: relative;
  padding: 100px 80px;
  scroll-margin-top: 68px;
}

.hp-top-page #top,
.hp-top-page #concept,
.hp-top-page #menu,
.hp-top-page #news,
.hp-top-page #company,
.hp-top-page #contact {
  scroll-margin-top: 68px;
}

/* ===== HERO ===== */
.hp-top-page #top {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 80px 60px;
  background: linear-gradient(135deg, #fdf9f2 0%, #fde8e8 40%, #fdf3dc 100%);
  position: relative;
  overflow: hidden;
}

.hp-top-page #top::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,214,214,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hp-top-page #top::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,238,221,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hp-top-page .hero-botanical-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hp-top-page .hero-content {
  flex: 1;
  z-index: 2;
  animation: fadeInLeft 1.2s ease-out both;
}

.hp-top-page .hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--brown-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hp-top-page .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hp-top-page .hero-title .accent {
  font-style: italic;
  color: var(--brown);
}

.hp-top-page .hero-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--text-light);
  margin-bottom: 50px;
  line-height: 2;
  border-left: 2px solid var(--pink-mid);
  padding-left: 16px;
}



.hp-top-page .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fadeInRight 1.2s ease-out 0.3s both;
  position: relative;
}

.hp-top-page .hero-img-frame {
  width: 520px;
  height: 440px;
  position: relative;
}

.hp-top-page .hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48% 52% 44% 56% / 55% 42% 58% 45%;
  box-shadow: 20px 20px 60px rgba(139,107,90,0.18);
}

.hp-top-page .hero-img-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 48% 52% 44% 56% / 55% 42% 58% 45%;
  pointer-events: none;
  animation: rotateBorder 20s linear infinite;
}

.hp-top-page .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hp-top-page .scroll-indicator span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--brown-light);
}

.hp-top-page .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--brown-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===== WAVE ===== */
.hp-top-page .wave-separator {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.hp-top-page .wave-separator svg {
  display: block;
  width: 100%;
}

/* ===== SECTION COMMON ===== */
.hp-top-page .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--brown-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.hp-top-page .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hp-top-page .section-title-jp {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-top: 8px;
  display: block;
}

.hp-top-page .title-deco {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hp-top-page .title-deco::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--brown-light);
}

/* ===== HERB LEAF ===== */
.hp-top-page .watercolor-leaf-concept {
  position: absolute;
  top: -48px;
  left: -52px;
  width: 88px;
  z-index: 3;
  pointer-events: none;
  animation: herbSway 6s ease-in-out infinite;
  transform-origin: 50% 90%;
  opacity: 0.88;
}

.hp-top-page .watercolor-leaf-company {
  position: absolute;
  bottom: -42px;
  left: -52px;
  width: 200px;
  z-index: 3;
  pointer-events: none;
  animation: herbSway 7.5s ease-in-out infinite reverse;
  transform-origin: 50% 90%;
  opacity: 0.86;
}

/* ===== CONCEPT ===== */
.hp-top-page #concept {
  background: #fdf9f2;
  overflow: visible;
}

.hp-top-page .concept-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hp-top-page .concept-image-wrap {
  flex: 1;
  position: relative;
}

.hp-top-page .concept-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px 50% 8px 50%;
  box-shadow: 15px 15px 40px rgba(139,107,90,0.15);
  position: relative;
  z-index: 2;
}

.hp-top-page .concept-text {
  flex: 1;
}

.hp-top-page .concept-lead {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
  color: var(--brown-dark);
  letter-spacing: 0.1em;
  margin: 30px 0 24px;
}

.hp-top-page .concept-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hp-top-page .treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.hp-top-page .treatment-tag {
  padding: 6px 16px;
  border: 1px solid var(--green-mid);
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  background: rgba(221,238,221,0.4);
  font-weight: 300;
}

/* ===== STATS ===== */
.hp-top-page .stats-section {
  max-width: 1100px;
  margin: 64px auto 0;
}

.hp-top-page .stats-grid {
  display: flex;
  gap: 18px;
}

.hp-top-page .stat-card {
  flex: 1;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 36px 20px 30px;
  text-align: center;
  box-shadow: 0 6px 32px rgba(139,107,90,0.09);
  border: 1px solid rgba(196,149,106,0.13);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-top-page .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.hp-top-page .stat-card:nth-child(1)::before {
  background: linear-gradient(to right, var(--pink), var(--pink-mid));
}

.hp-top-page .stat-card:nth-child(2)::before {
  background: linear-gradient(to right, var(--yellow), var(--yellow-mid));
}

.hp-top-page .stat-card:nth-child(3)::before {
  background: linear-gradient(to right, var(--green), var(--green-mid));
}

.hp-top-page .stat-card:nth-child(4)::before {
  background: linear-gradient(to right, #ecdcf0, #d9b8e0);
}

.hp-top-page .stat-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  color: var(--brown-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.hp-top-page .stat-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
  line-height: 1;
}

.hp-top-page .stat-num {
  font-family: 'EB Garamond', serif;
  font-size: 3.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hp-top-page .stat-sup {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--brown-light);
  line-height: 1;
}

.hp-top-page .stat-unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--brown-light);
  line-height: 1;
}

.hp-top-page .stat-ja {
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  display: block;
  font-weight: 300;
}

.hp-top-page .stat-divider {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(196,149,106,0.4);
  margin: 10px auto 10px;
}

/* ===== MENU ===== */
.hp-top-page #menu {
  background: linear-gradient(135deg, #fefcfa 0%, #fdf4f7 35%, #fdf0f5 65%, #fefbfd 100%);
}

.hp-top-page .menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.hp-top-page .menu-categories {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hp-top-page .menu-category-title {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.hp-top-page .menu-category-title h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.1em;
}

.hp-top-page .menu-category-title .cat-sub {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-light);
  display: block;
  margin-top: 4px;
}

.hp-top-page .menu-category-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brown-light);
  margin: 12px auto 0;
}

.hp-top-page .menu-table-wrap {
  position: relative;
  border: 1px solid rgba(196,149,106,0.22);
  border-radius: 2px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 4px 24px rgba(139,107,90,0.10), 0 12px 40px rgba(139,107,90,0.06);
}

.hp-top-page .menu-table-wrap::before,
.hp-top-page .menu-table-wrap::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--brown-light);
  border-style: solid;
  opacity: 0.55;
}

.hp-top-page .menu-table-wrap::before {
  top: 6px;
  left: 6px;
  border-width: 1px 0 0 1px;
}

.hp-top-page .menu-table-wrap::after {
  bottom: 6px;
  right: 6px;
  border-width: 0 1px 1px 0;
}

.hp-top-page .menu-table-wrap .corner-tr,
.hp-top-page .menu-table-wrap .corner-bl {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--brown-light);
  border-style: solid;
  opacity: 0.55;
}

.hp-top-page .menu-table-wrap .corner-tr {
  top: 6px;
  right: 6px;
  border-width: 1px 1px 0 0;
}

.hp-top-page .menu-table-wrap .corner-bl {
  bottom: 6px;
  left: 6px;
  border-width: 0 0 1px 1px;
}

.hp-top-page .menu-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.hp-top-page .menu-table thead tr {
  border-bottom: 1px solid rgba(196,149,106,0.30);
  background: rgba(253,245,235,0.7);
}

.hp-top-page .menu-table thead th {
  padding: 12px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--brown-light);
  text-transform: uppercase;
  font-style: italic;
}

.hp-top-page .menu-table thead th:last-child {
  text-align: right;
}

.hp-top-page .menu-table thead th.th-time {
  text-align: center;
  width: 18%;
}

.hp-top-page .menu-table tbody tr {
  border-bottom: 1px solid rgba(196,149,106,0.10);
  transition: background 0.2s;
}

.hp-top-page .menu-table tbody tr:last-child {
  border-bottom: none;
}

.hp-top-page .menu-table tbody tr:nth-child(even) td {
  background: transparent;
}

.hp-top-page .menu-table td {
  padding: 18px 28px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  vertical-align: middle;
}

.hp-top-page .menu-table .menu-name {
  width: 55%;
}

.hp-top-page .menu-table .menu-note {
  font-size: 0.7rem;
  color: var(--text-light);
  display: block;
  margin-top: 3px;
  letter-spacing: 0.05em;
}

.hp-top-page .menu-table .menu-time {
  width: 18%;
  color: var(--brown-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.hp-top-page .menu-table .menu-price {
  width: 27%;
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.hp-top-page .cat-essential .menu-table-wrap,
.hp-top-page .cat-beauty .menu-table-wrap {
  border-top: 1px solid rgba(196,149,106,0.35);
}

/* ===== NEWS ===== */
.hp-top-page #news {
  background: var(--cream);
}

.hp-top-page .news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.hp-top-page .news-more {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  text-decoration: none;
  border-bottom: 1px solid var(--brown-light);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.hp-top-page .news-more:hover {
  color: var(--brown-dark);
}

.hp-top-page .news-list {
  max-width: 860px;
  margin: 0 auto;
}

.hp-top-page .news-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(196,149,106,0.15);
  transition: background 0.3s;
}

.hp-top-page .news-item:first-child {
  border-top: 1px solid rgba(196,149,106,0.15);
}

.hp-top-page .news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.hp-top-page .news-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--pink);
  color: var(--brown);
  flex-shrink: 0;
}

.hp-top-page .news-title {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.hp-top-page .news-title:hover {
  color: var(--brown);
}

/* ===== COMPANY ===== */
.hp-top-page #company {
  background: linear-gradient(135deg, #fdf9f2 0%, #fef0e8 100%);
  overflow: hidden;
}

.hp-top-page .company-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.hp-top-page .company-image-wrap {
  flex: 0 0 420px;
  position: relative;
}

.hp-top-page .company-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 50% 8px 50% 8px;
  box-shadow: 15px 15px 40px rgba(139,107,90,0.15);
}

.hp-top-page .company-text {
  flex: 1;
}

.hp-top-page .company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.hp-top-page .company-table tr {
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.hp-top-page .company-table td {
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 300;
  vertical-align: top;
  line-height: 1.8;
}

.hp-top-page .company-table .th {
  width: 130px;
  color: var(--brown-light);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  font-size: 0.9rem;
  padding-right: 20px;
}

/* ===== LINE CTA ===== */
.hp-top-page .line-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px 40px;
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  border: 1px solid rgba(196,149,106,0.12);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hp-top-page .line-cta-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--brown-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hp-top-page .line-cta-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  line-height: 1.9;
  display: block;
}

.hp-top-page .line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: rgba(253,250,245,0.95);
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  transition: all 0.35s;
  box-shadow: 0 6px 28px rgba(92,64,53,0.22);
  white-space: nowrap;
}

.hp-top-page .line-btn svg {
  display: none;
}

.hp-top-page .line-btn:hover {
  background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(92,64,53,0.30);
}

/* ===== CONTACT ===== */
.hp-top-page #contact {
  background: linear-gradient(160deg, #fef6f6 0%, #fdf8ef 100%);
  text-align: center;
}

.hp-top-page .contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hp-top-page .contact-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2.2;
  letter-spacing: 0.08em;
  margin: 24px 0 48px;
}

.hp-top-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.hp-top-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-top-page .form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  font-family: 'Cormorant Garamond', serif;
}

.hp-top-page .form-group label .req {
  color: #d88;
  margin-left: 4px;
  font-size: 0.7rem;
}

.hp-top-page .form-group input,
.hp-top-page .form-group textarea,
.hp-top-page .form-group select {
  padding: 14px 18px;
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.8);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.hp-top-page .form-group select {
  padding: 14px 40px 14px 18px;
  background: rgba(255,255,255,0.8) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c4956a' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat calc(100% - 16px) center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.hp-top-page .form-group input:focus,
.hp-top-page .form-group textarea:focus {
  border-color: var(--brown-light);
  background: #fff;
}

.hp-top-page .submit-btn {
  margin-top: 12px;
  padding: 16px 60px;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.4s;
  align-self: center;
  position: relative;
  overflow: hidden;
}

.hp-top-page .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brown);
  transition: left 0.4s;
  z-index: -1;
}

.hp-top-page .submit-btn:hover {
  color: #fff;
}

.hp-top-page .submit-btn:hover::before {
  left: 0;
}

/* ===== REVEAL ===== */
.hp-top-page .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hp-top-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hp-top-page #top {
    padding: 100px 48px 60px;
  }

  .hp-top-page section {
    padding: 80px 48px;
  }

  .site-footer-custom {
    padding: 56px 48px 28px;
  }
}

@media (max-width: 900px) {
  .hp-top-page #top {
    flex-direction: column;
    padding: 100px 48px 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .hp-top-page .hero-content {
    width: 100%;
  }

  .hp-top-page .hero-image {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
  }

  .hp-top-page .hero-img-frame {
    width: 100%;
    max-width: 420px;
    height: 360px;
  }

  .hp-top-page .scroll-indicator {
    display: none;
  }

  .hp-top-page .concept-inner,
  .hp-top-page .company-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hp-top-page .concept-image-wrap img {
    height: 280px;
  }

  .hp-top-page .concept-lead {
    font-size: 1.15rem;
  }

  .hp-top-page .stats-grid {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hp-top-page .stat-card {
    flex: 1 1 calc(50% - 7px);
    min-width: 140px;
    padding: 24px 14px 20px;
  }

  .hp-top-page .stat-num {
    font-size: 2.4rem;
  }

  .hp-top-page .menu-categories {
    gap: 36px;
  }

  .hp-top-page .news-item {
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .hp-top-page .news-title {
    width: 100%;
  }

  .hp-top-page .company-image-wrap {
    flex: none;
    width: 100%;
  }

  .hp-top-page .company-image-wrap img {
    height: 300px;
  }

  .hp-top-page .contact-inner {
    padding: 0;
  }

  .site-footer-custom {
    padding: 48px 24px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav ul {
    gap: 16px 24px;
    justify-content: flex-start;
  }

  .hp-top-page .line-cta {
    padding: 36px 20px;
  }

  .hp-top-page .line-btn {
    padding: 14px 32px;
    font-size: 0.84rem;
  }
}

@media (max-width: 768px) {
  .hp-top-page section {
    padding: 64px 24px;
  }

  .hp-top-page #top {
    padding: 88px 24px 56px;
    min-height: auto;
    align-items: flex-start;
  }

  .hp-top-page .hero-content {
    width: 100%;
  }

  .hp-top-page .hero-image {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
  }

  .hp-top-page .hero-img-frame {
    width: 100%;
    max-width: 320px;
    height: 280px;
  }

  .hp-top-page .scroll-indicator {
    display: none;
  }

  .hp-top-page .stats-grid {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hp-top-page .stat-card {
    flex: 1 1 calc(50% - 7px);
    min-width: 140px;
  }

  .hp-top-page .menu-table thead {
    display: none;
  }

  .hp-top-page .menu-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 4px 0;
  }

  .hp-top-page .menu-table td {
    padding: 2px 4px;
    font-size: 0.82rem;
  }

  .hp-top-page .menu-table .menu-name {
    width: 100%;
    font-weight: 400;
  }

  .hp-top-page .menu-table .menu-time {
    width: auto;
    color: var(--brown-light);
  }

  .hp-top-page .menu-table .menu-price {
    width: auto;
    flex: 1;
    text-align: right;
    font-size: 1rem;
  }

  .hp-top-page .concept-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hp-top-page .concept-image-wrap img {
    height: 280px;
  }

  .hp-top-page .concept-lead {
    font-size: 1.15rem;
  }

  .hp-top-page .company-inner {
    flex-direction: column;
    gap: 36px;
  }

  .hp-top-page .company-image-wrap {
    flex: none;
    width: 100%;
  }

  .hp-top-page .company-image-wrap img {
    height: 300px;
  }

  .hp-top-page .contact-inner {
    padding: 0;
  }

  .hp-top-page .hero-btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 12px 28px;
  }

  .hp-top-page .watercolor-leaf-concept {
    top: -20px;
    left: -24px;
    width: 64px;
  }

  .hp-top-page .watercolor-leaf-company {
    bottom: -20px;
    left: -24px;
    width: 120px;
  }

  .site-footer-custom {
    padding: 48px 24px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav ul {
    gap: 16px 24px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hp-top-page .stat-card {
    flex: 1 1 100%;
  }

  .hp-top-page .hero-img-frame {
    max-width: 260px;
    height: 230px;
  }

  .hp-top-page .menu-table .menu-price {
    font-size: 0.92rem;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(0.3);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes herbSway {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg) translateY(-5px);
  }
}

/* =========================
   Service Page
========================= */
.hp-service-page {
  background: var(--cream);
}

.hp-service-page p,
.hp-service-page h1,
.hp-service-page h2,
.hp-service-page h3,
.hp-service-page h4,
.hp-service-page h5,
.hp-service-page h6,
.hp-service-page ul,
.hp-service-page ol,
.hp-service-page li,
.hp-service-page figure,
.hp-service-page blockquote {
  margin: 0;
  padding: 0;
}

.hp-service-page ul,
.hp-service-page ol {
  list-style: none;
  padding-left: 0;
}

.hp-service-page a {
  color: inherit;
  text-decoration: none;
}

.hp-service-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hp-service-page table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hp-service-page section {
  position: relative;
  padding: 100px 80px;
  scroll-margin-top: 68px;
}

.hp-service-page #svc-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px;
  background: linear-gradient(135deg, #fdf9f2 0%, #fde8ee 40%, #fdf3f8 100%);
  text-align: center;
  overflow: hidden;
}

.hp-service-page #svc-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 214, 214, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hp-service-page #svc-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 238, 221, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hp-service-page .hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: var(--brown-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.hp-service-page .svc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--brown-dark);
  letter-spacing: 0.12em;
  line-height: 1.1;
  z-index: 2;
  margin-bottom: 16px;
}

.hp-service-page .svc-hero-sub {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--text-light);
  z-index: 2;
}

.hp-service-page #amenity {
  background: linear-gradient(160deg, #fdf9f5 0%, #fdf4f0 50%, #fdf9f5 100%);
  padding: 80px clamp(32px, 6vw, 80px);
}

.hp-service-page .amenity-header {
  text-align: center;
  margin-bottom: 64px;
}

.hp-service-page .amenity-header-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  color: var(--brown-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.hp-service-page .amenity-header-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 300;
  color: var(--brown-dark);
  letter-spacing: 0.18em;
}

.hp-service-page .amenity-header-title span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.22em;
  margin-top: 10px;
}

.hp-service-page .amenity-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.hp-service-page .amenity-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}

.hp-service-page .amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 149, 106, 0.22);
  border-radius: 10px;
  box-shadow: 0 4px 28px rgba(139, 107, 90, 0.08), 0 1px 4px rgba(139, 107, 90, 0.04);
  position: relative;
  padding: 40px 28px 36px;
}

.hp-service-page .amenity-item::before,
.hp-service-page .amenity-item::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--brown-light);
  border-style: solid;
  opacity: 0.45;
}

.hp-service-page .amenity-item::before {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}

.hp-service-page .amenity-item::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1px 1px 0;
}

.hp-service-page .amenity-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 149, 106, 0.3);
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  margin-bottom: 18px;
}

.hp-service-page .amenity-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hp-service-page .amenity-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--brown-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.hp-service-page .amenity-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 14px;
}

.hp-service-page .amenity-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.73rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.06em;
  line-height: 2;
}

.hp-service-page .cat-intro {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.hp-service-page .cat-intro-card {
  position: relative;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.hp-service-page .cat-intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hp-service-page .cat-intro-card:hover img {
  transform: scale(1.04);
}

.hp-service-page .cat-intro-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 35, 25, 0.68) 0%, rgba(60, 35, 25, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
}

.hp-service-page .cat-intro-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(253, 250, 245, 0.95);
  line-height: 1.2;
}

.hp-service-page .cat-intro-jp {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(253, 250, 245, 0.7);
  margin-top: 6px;
}

.hp-service-page .cat-intro-arrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-top: 12px;
  display: inline-block;
  border-bottom: 1px solid rgba(196, 149, 106, 0.6);
  padding-bottom: 2px;
}

.hp-service-page #essential {
  background: linear-gradient(160deg, #fefcfa 0%, #fdf5f7 60%, #fefbfd 100%);
}

.hp-service-page #regeneration {
  background: linear-gradient(160deg, #fdfaf5 0%, #f7f4f0 60%, #fdfaf5 100%);
}

.hp-service-page .menu-section-header {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(196, 149, 106, 0.18);
  padding-bottom: 28px;
}

.hp-service-page .menu-section-num {
  font-family: 'EB Garamond', serif;
  font-size: 5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(196, 149, 106, 0.14);
  line-height: 1;
  margin-right: 20px;
}

.hp-service-page .menu-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hp-service-page .menu-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(196, 149, 106, 0.18);
  position: relative;
  padding: 36px 44px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.hp-service-page .menu-card:hover {
  box-shadow: 0 8px 40px rgba(139, 107, 90, 0.10);
  transform: translateY(-2px);
}

.hp-service-page .menu-card::before,
.hp-service-page .menu-card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(196, 149, 106, 0.4);
  border-style: solid;
}

.hp-service-page .menu-card::before {
  top: 7px;
  left: 7px;
  border-width: 1px 0 0 1px;
}

.hp-service-page .menu-card::after {
  bottom: 7px;
  right: 7px;
  border-width: 0 1px 1px 0;
}

.hp-service-page .menu-card .corner-tr {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(196, 149, 106, 0.4);
  border-width: 1px 1px 0 0;
}

.hp-service-page .menu-card .corner-bl {
  position: absolute;
  bottom: 7px;
  left: 7px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(196, 149, 106, 0.4);
  border-width: 0 0 1px 1px;
}

.hp-service-page .menu-card.premium {
  border-color: rgba(196, 149, 106, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 248, 240, 0.95) 100%);
}

.hp-service-page .premium-badge {
  position: absolute;
  top: -1px;
  right: 36px;
  background: linear-gradient(135deg, var(--brown-light), var(--brown));
  color: rgba(253, 250, 245, 0.95);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  padding: 5px 16px;
  font-style: italic;
}

.hp-service-page .menu-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.hp-service-page .menu-card-num {
  font-family: 'EB Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(196, 149, 106, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  padding-top: 4px;
}

.hp-service-page .menu-card-body {
  flex: 1;
}

.hp-service-page .menu-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.hp-service-page .menu-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.hp-service-page .menu-card-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--brown-light);
  display: block;
  margin-top: 4px;
}

.hp-service-page .menu-card-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 14px 0 18px;
  max-width: 620px;
}

.hp-service-page .menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hp-service-page .menu-tag {
  padding: 4px 14px;
  border: 1px solid rgba(196, 149, 106, 0.25);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--brown-light);
  background: rgba(253, 248, 242, 0.6);
  font-weight: 300;
}

.hp-service-page .menu-card-recommend {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.08em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.8;
}

.hp-service-page .menu-card-recommend::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--brown-light);
  margin-top: 10px;
  flex-shrink: 0;
}

.hp-service-page .menu-card-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-top: 4px;
  min-width: 160px;
}

.hp-service-page .menu-card-time-price {
  text-align: right;
}

.hp-service-page .menu-card-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  display: block;
  margin-bottom: 6px;
}

.hp-service-page .menu-card-price {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1;
  display: block;
}

.hp-service-page .menu-card-price-note {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.hp-service-page .menu-card-btn {
  display: inline-block;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: rgba(253, 250, 245, 0.95);
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(92, 64, 53, 0.18);
  white-space: nowrap;
}

.hp-service-page .menu-card-btn:hover {
  background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92, 64, 53, 0.25);
}

.hp-service-page .price-note {
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.12em;
}

.hp-service-page #flow {
  background: var(--cream);
}

.hp-service-page .flow-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.hp-service-page .flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.hp-service-page .flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, var(--pink-mid), var(--brown-light), var(--green-mid));
  z-index: 0;
}

.hp-service-page .flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  z-index: 1;
}

.hp-service-page .flow-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(196, 149, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown-light);
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(139, 107, 90, 0.08);
}

.hp-service-page .flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.hp-service-page .flow-step-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.hp-service-page #faq {
  background: linear-gradient(160deg, #fdf9f2 0%, #fef0f5 100%);
}

.hp-service-page .faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hp-service-page .faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-service-page .faq-item {
  border-bottom: 1px solid rgba(196, 149, 106, 0.15);
}

.hp-service-page .faq-item:first-child {
  border-top: 1px solid rgba(196, 149, 106, 0.15);
}

.hp-service-page .faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.hp-service-page .faq-q:hover .faq-q-text {
  color: var(--brown);
}

.hp-service-page .faq-q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown-light);
  flex-shrink: 0;
  width: 20px;
}

.hp-service-page .faq-q-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.08em;
  flex: 1;
  line-height: 1.7;
  transition: color 0.3s;
}

.hp-service-page .faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.hp-service-page .faq-icon::before,
.hp-service-page .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brown-light);
  transition: transform 0.3s, opacity 0.3s;
}

.hp-service-page .faq-icon::before {
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
}

.hp-service-page .faq-icon::after {
  left: 9px;
  top: 0;
  bottom: 0;
  width: 1px;
}

.hp-service-page .faq-item.open .faq-icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.hp-service-page .faq-a {
  display: none;
  padding: 0 0 22px 38px;
}

.hp-service-page .faq-item.open .faq-a {
  display: block;
}

.hp-service-page .faq-a p {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
  letter-spacing: 0.06em;
}

.hp-service-page #cta {
  background: linear-gradient(135deg, #fdf9f2 0%, #fde8ee 50%, #fdf3f8 100%);
  text-align: center;
  padding: 100px 80px;
}

.hp-service-page .cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.hp-service-page .cta-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin: 24px 0 40px;
  line-height: 2;
}

/* =========================
   Single News Page
========================= */
.hp-single-news-page {
  background: var(--cream);
}

.hp-single-news-page #article-wrap {
  padding-top: 68px;
}

.hp-single-news-page .article-hero-img {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: #f5ede6;
}

.hp-single-news-page .article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 480px;
}

.hp-single-news-page .breadcrumb {
  max-width: 840px;
  margin: 0 auto;
  padding: 24px 40px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.hp-single-news-page .breadcrumb a {
  text-decoration: none;
  color: var(--brown-light);
  transition: color 0.2s;
}

.hp-single-news-page .breadcrumb a:hover {
  color: var(--brown);
}

.hp-single-news-page .breadcrumb-sep {
  color: rgba(196,149,106,0.5);
}

.hp-single-news-page .article-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 36px 40px 80px;
}

.hp-single-news-page .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hp-single-news-page .article-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--brown-light);
}

.hp-single-news-page .article-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(196,149,106,0.2);
}

.hp-single-news-page .article-content {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 2.1;
}

.hp-single-news-page .article-content p {
  margin-bottom: 1.6em;
}

.hp-single-news-page .article-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.08em;
  margin: 2.2em 0 0.8em;
  padding-left: 14px;
  border-left: 3px solid var(--brown-light);
}

.hp-single-news-page .article-content h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin: 1.8em 0 0.6em;
  letter-spacing: 0.06em;
}

.hp-single-news-page .article-content ul,
.hp-single-news-page .article-content ol {
  padding-left: 1.6em;
  margin-bottom: 1.4em;
}

.hp-single-news-page .article-content li {
  margin-bottom: 0.4em;
}

.hp-single-news-page .article-content a {
  color: var(--brown-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-single-news-page .article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.2em 0;
  display: block;
}

.hp-single-news-page .article-content blockquote {
  border-left: 2px solid var(--brown-light);
  padding: 12px 20px;
  margin: 1.4em 0;
  background: rgba(196,149,106,0.04);
  font-style: italic;
  color: var(--text-light);
}

.hp-single-news-page .article-content strong {
  font-weight: 500;
  color: var(--brown-dark);
}

.hp-single-news-page .article-content hr {
  border: none;
  border-top: 1px solid rgba(196,149,106,0.2);
  margin: 2em 0;
}

.hp-single-news-page .article-back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(196,149,106,0.15);
  display: flex;
  justify-content: center;
}

.hp-single-news-page .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 40px;
  border: 1px solid var(--brown-light);
  border-radius: 30px;
  background: transparent;
  color: var(--brown);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.hp-single-news-page .btn-back:hover {
  background: var(--brown-light);
  color: #fff;
}

@media (max-width: 760px) {
  .hp-single-news-page .article-inner {
    padding: 28px 24px 64px;
  }

  .hp-single-news-page .breadcrumb {
    padding: 20px 24px 0;
  }

  .site-footer-custom {
    padding: 40px 24px 24px;
  }
}



/* =========================
   Keyframes
========================= */
@keyframes hpHeroFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hpHeroFadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes herbSway {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg) translateY(-5px);
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .hp-service-page #svc-hero {
    padding: 120px 48px 80px;
  }

  .hp-service-page section {
    padding: 80px 48px;
  }

  .hp-service-page #amenity {
    padding: 80px 48px;
  }

  .hp-service-page #cta {
    padding: 80px 48px;
  }

  .site-footer-custom {
    padding: 56px 48px 28px;
  }

  .hp-news-page #news-archive {
    padding: 80px 24px;
  }

  .hp-news-page .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header-custom {
    min-height: 68px;
    padding: 0 16px;
  }

  .site-header-custom nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-main-custom {
    padding-top: 0;
  }

  .hp-service-page #svc-hero {
    flex-direction: column;
    align-items: center;
    padding: 110px 24px 56px;
    min-height: auto;
    text-align: center;
  }

  .hp-service-page section {
    padding: 64px 24px;
  }

  .hp-service-page #amenity {
    padding: 64px 24px;
  }

  .hp-service-page .amenity-header {
    margin-bottom: 40px;
  }

  .hp-service-page .amenity-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hp-service-page .cat-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hp-service-page .cat-intro-card {
    height: 220px;
  }

  .hp-service-page .menu-section-header {
    margin: 0 auto 40px;
    padding-bottom: 18px;
    align-items: flex-end;
  }

  .hp-service-page .menu-section-num {
    font-size: 3.2rem;
    margin-right: 14px;
  }

  .hp-service-page .menu-cards {
    gap: 20px;
  }

  .hp-service-page .menu-card {
    padding: 28px 22px;
  }

  .hp-service-page .menu-card-inner {
    flex-direction: column;
    gap: 24px;
  }

  .hp-service-page .menu-card-num {
    width: auto;
    padding-top: 0;
  }

  .hp-service-page .menu-card-right {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    gap: 16px;
  }

  .hp-service-page .menu-card-time-price {
    text-align: left;
  }

  .hp-service-page .menu-card-desc {
    margin: 12px 0 16px;
  }

  .hp-service-page .flow-steps {
    flex-direction: column;
    gap: 24px;
    margin-top: 44px;
  }

  .hp-service-page .flow-steps::before {
    display: none;
  }

  .hp-service-page .faq-list {
    margin-top: 40px;
  }

  .hp-service-page .faq-a {
    padding: 0 0 22px 0;
  }

  .hp-service-page #cta {
    padding: 72px 24px;
  }

  .site-footer-custom {
    padding: 48px 24px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav ul {
    gap: 16px 24px;
    justify-content: flex-start;
  }

  .hp-single-news-page #single-news-hero {
    padding: 120px 24px 60px;
  }

  .hp-single-news-page .single-news-content-inner {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hp-service-page #svc-hero {
    padding: 104px 20px 48px;
  }

  .hp-service-page section {
    padding: 56px 20px;
  }

  .hp-service-page .amenity-item {
    padding: 28px 18px 24px;
  }

  .hp-service-page .menu-card {
    padding: 24px 18px;
  }

  .hp-service-page .menu-card-price {
    font-size: 1.6rem;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* =========================
   News Page
========================= */
.hp-news-page {
  background: var(--cream);
}

.hp-news-page #news-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 80px 60px;
  background: linear-gradient(135deg, #fdf9f2 0%, #fde8e8 50%, #fdf3dc 100%);
  position: relative;
  overflow: hidden;
}

.hp-news-page #news-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,214,214,0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hp-news-page .news-hero-inner {
  position: relative;
  z-index: 2;
}

.hp-news-page .news-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  color: var(--brown-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.hp-news-page .news-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0;
}

.hp-news-page .news-hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.22em;
  margin-top: 14px;
}

.hp-news-page #news-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 80px 100px;
}

.hp-news-page .news-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}

.hp-news-page .news-empty p {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  line-height: 2.2;
  margin: 0;
}

.hp-news-page .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

.hp-news-page .news-card {
  background: #fff;
  border: 1px solid rgba(196,149,106,0.18);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
}

.hp-news-page .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(139,107,90,0.13);
}

.hp-news-page .news-card::before,
.hp-news-page .news-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--brown-light);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.hp-news-page .news-card::before {
  top: 6px;
  left: 6px;
  border-width: 1px 0 0 1px;
}

.hp-news-page .news-card::after {
  bottom: 6px;
  right: 6px;
  border-width: 0 1px 1px 0;
}

.hp-news-page .news-card:hover::before,
.hp-news-page .news-card:hover::after {
  opacity: 0.6;
}

.hp-news-page .news-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f5ede6;
  flex-shrink: 0;
}

.hp-news-page .news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.hp-news-page .news-card:hover .news-card-thumb img {
  transform: scale(1.05);
}

.hp-news-page .news-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fdf3e8 0%, #f5e4d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-news-page .news-card-thumb-placeholder svg {
  opacity: 0.3;
}

.hp-news-page .news-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-news-page .news-card-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-bottom: 10px;
  display: block;
}

.hp-news-page .news-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.06em;
  line-height: 1.65;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-news-page .news-card-excerpt {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1.9;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.hp-news-page .news-card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--brown-light);
  text-transform: uppercase;
}

.hp-news-page .news-card-arrow svg {
  transition: transform 0.25s;
}

.hp-news-page .news-card:hover .news-card-arrow svg {
  transform: translateX(4px);
}

.hp-news-page .news-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.hp-news-page .news-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--text-light);
}

.hp-news-page .news-page-links .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hp-news-page .news-page-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(196,149,106,0.22);
  color: var(--brown-dark);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
}

.hp-news-page .news-page-links .page-numbers.current {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

@media (max-width: 900px) {
  .hp-news-page #news-hero {
    padding: 100px 40px 48px;
  }

  .hp-news-page #news-main {
    padding: 52px 40px 80px;
  }

  .hp-news-page .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .site-footer-custom {
    padding: 48px 40px 28px;
  }
}

@media (max-width: 560px) {
  .hp-news-page #news-hero {
    padding: 90px 24px 40px;
  }

  .hp-news-page #news-main {
    padding: 40px 20px 64px;
  }

  .hp-news-page .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer-custom {
    padding: 40px 24px 24px;
  }

  .footer-nav ul {
    gap: 16px;
  }
}

.wpcf7-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.wpcf7-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wpcf7-form .form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  font-family: 'Cormorant Garamond', serif;
}

.wpcf7-form .form-group label .req {
  color: #d88;
  margin-left: 4px;
  font-size: 0.7rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  padding: 14px 18px;
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.8);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}

.wpcf7-form select {
  padding: 14px 40px 14px 18px;
  background:
    rgba(255,255,255,0.8)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c4956a' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat calc(100% - 16px) center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: var(--brown-light);
  background: #fff;
}

.wpcf7-form textarea {
  min-height: 132px;
}

.wpcf7-form .submit-btn {
  margin-top: 12px;
  padding: 16px 60px;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.4s;
  align-self: center;
  position: relative;
  overflow: hidden;
}

.wpcf7-form .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brown);
  transition: left 0.4s;
  z-index: -1;
}

.wpcf7-form .submit-btn:hover {
  color: #fff;
}

.wpcf7-form .submit-btn:hover::before {
  left: 0;
}

.wpcf7-form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.75rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  font-size: 0.82rem;
}

.wpcf7-form .contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* CF7 送信ボタンだけ中央寄せ */
.wpcf7 form .contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.wpcf7 form .contact-form .submit-wrap {
  text-align: center;
  margin-top: 12px;
}

.wpcf7 form .contact-form .submit-btn {
  display: inline-block;
  width: auto;
  margin: 0;
}