/*
Theme Name: Asahina Dental
Theme URI: https://asahina.dental
Author: Studio
Description: あさひな歯科クリニック
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: asahina
*/

/* === reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === tokens === */
:root {
  --coral:       #FF6B7A;
  --coral-light: #FFF0F1;
  --coral-mid:   #FFB3BA;
  --mint:        #3ECFB2;
  --mint-light:  #EAFAF7;
  --mint-mid:    #90E4D8;
  --yellow:      #FFD93D;
  --yellow-light:#FFFAE8;
  --lavender:    #B8A9FF;
  --sky:         #7DD3FC;
  --peach:       #FFAD93;
  --cream:       #FFFBF6;
  --white:       #ffffff;
  --text:        #1E1E3A;
  --text-mid:    #5A5A78;
  --text-light:  #9898B0;
  --border:      #F0EBE8;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   28px;
  --radius-full: 9999px;
  --shadow:      0 4px 20px rgba(255,107,122,0.12);
  --shadow-mint: 0 4px 20px rgba(62,207,178,0.15);
}

/* === base === */
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

/* === typography === */
h1, h2, h3, h4 { line-height: 1.4; font-weight: 700; }
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 52px;
  letter-spacing: 0.04em;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: linear-gradient(to right, var(--coral), var(--mint));
  border-radius: var(--radius-full);
}
.section-en {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--coral);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}

/* === scroll header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--coral-light);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 24px;
  transform: translateY(-100%);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.site-header.is-visible { transform: translateY(0); }
.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  flex-shrink: 0;
}
.header-logo-text { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.header-logo-sub { display: none; }
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
}
.header-nav a:hover { background: var(--coral-light); color: var(--coral); }
.header-tel-sm {
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* === keyframes === */
@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-25px) scale(1.08); }
  66%      { transform: translate(-20px,18px) scale(0.94); }
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes slide-left {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pop-in {
  0%   { opacity: 0; transform: scale(0.75); }
  70%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes badge-pop {
  0%   { opacity: 0; transform: scale(0.6) rotate(-6deg); }
  70%  { transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes wave-in {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === hero === */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, var(--coral-light) 0%, #fff 45%, var(--mint-light) 100%);
  position: relative;
  overflow: hidden;
}

/* background blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hb1 {
  width: 420px; height: 420px;
  background: rgba(255,107,122,0.18);
  top: -80px; left: -80px;
  animation: blob-drift 9s ease-in-out infinite;
}
.hb2 {
  width: 340px; height: 340px;
  background: rgba(62,207,178,0.16);
  bottom: 60px; right: -60px;
  animation: blob-drift 11s ease-in-out infinite reverse;
}
.hb3 {
  width: 260px; height: 260px;
  background: rgba(255,217,61,0.2);
  top: 40%; left: 35%;
  animation: blob-drift 13s ease-in-out infinite 2s;
}
.hb4 {
  width: 180px; height: 180px;
  background: rgba(184,169,255,0.2);
  top: 10%; right: 20%;
  animation: blob-drift 8s ease-in-out infinite 1s;
}

/* top bar */
.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  position: relative;
  z-index: 2;
}
.hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slide-left 0.6s ease 0.1s both;
}
.hero-logo-img { width: 44px; height: auto; }
.hero-logo-text-wrap { display: flex; flex-direction: column; gap: 2px; }
.hero-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.hero-logo-sub {
  font-size: 0.55rem;
  color: var(--coral);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.hero-topbar-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,107,122,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: slide-left 0.6s ease 0.2s both;
}
.hero-topbar-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,122,0.42); }

/* main 2-col grid */
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 20px 52px 16px;
  position: relative;
  z-index: 2;
}

/* LEFT: text */
.hero-text { display: flex; flex-direction: column; gap: 20px; }
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hbadge {
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  animation: badge-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hbadge-coral {
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  box-shadow: 0 3px 12px rgba(255,107,122,0.35);
  animation-delay: 0.3s;
}
.hbadge-mint {
  background: linear-gradient(135deg, var(--mint), var(--mint-mid));
  color: #fff;
  box-shadow: 0 3px 12px rgba(62,207,178,0.3);
  animation-delay: 0.45s;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: 0.02em;
  animation: slide-left 0.7s ease 0.25s both;
}
.hero-headline-accent {
  background: linear-gradient(135deg, var(--coral), var(--peach), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  animation: slide-left 0.7s ease 0.35s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slide-left 0.7s ease 0.45s both;
}
.btn-pop-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 22px rgba(255,107,122,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.06em;
}
.btn-pop-primary::after { content: ' →'; }
.btn-pop-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(255,107,122,0.48); }
.btn-pop-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2.5px solid var(--coral);
  color: var(--coral);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  background: rgba(255,255,255,0.7);
}
.btn-pop-outline:hover { background: var(--coral-light); transform: translateY(-2px); }

/* RIGHT: photo */
.hero-photo-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: pop-in 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
}
.hero-photo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pr1 {
  width: calc(100% - 20px);
  aspect-ratio: 1;
  border: 3px dashed var(--coral-mid);
  opacity: 0.5;
  animation: spin-slow 22s linear infinite;
}
.pr2 {
  width: calc(100% + 10px);
  aspect-ratio: 1;
  border: 2px dashed var(--mint-mid);
  opacity: 0.35;
  animation: spin-slow 30s linear infinite reverse;
}
.hero-photo-frame {
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255,107,122,0.25), 0 0 0 8px rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.hero-photo-frame .hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* floating info cards */
.hero-info-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  z-index: 2;
  white-space: nowrap;
}
.hic-icon { font-size: 1.1rem; }
.hic1 {
  top: 8%; left: -8%;
  color: var(--coral);
  border-left: 3px solid var(--coral);
  animation: float-card 3.2s ease-in-out infinite 0.1s;
}
.hic2 {
  bottom: 22%; right: -6%;
  color: var(--mint);
  border-left: 3px solid var(--mint);
  animation: float-card 3.8s ease-in-out infinite 0.6s;
}
.hic3 {
  bottom: 4%; left: 0%;
  color: var(--lavender);
  border-left: 3px solid var(--lavender);
  animation: float-card 4.2s ease-in-out infinite 1.1s;
}

/* bottom nav strip */
.hero-nav-strip {
  display: flex;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid rgba(255,107,122,0.15);
  position: relative;
  z-index: 2;
  animation: wave-in 0.7s ease 0.7s both;
}
.hnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 8px;
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 600;
  border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.hnav-item:last-child { border-right: none; }
.hnav-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--coral), var(--mint));
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}
.hnav-item:hover { background: var(--coral-light); color: var(--coral); transform: translateY(-2px); }
.hnav-item:hover::before { transform: scaleX(1); }
.hnav-icon { width: 22px; height: 22px; object-fit: contain; opacity: 0.6; transition: opacity 0.2s; }
.hnav-item:hover .hnav-icon { opacity: 1; }
.hnav-num {
  font-size: 0.58rem;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hnav-label { line-height: 1.2; }

/* === extra keyframes === */
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.7); opacity: 0.5; }
}
@keyframes shimmer {
  from { background-position: -400px 0; }
  to   { background-position: 400px 0; }
}
@keyframes bounce-cta {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes fade-left {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fade-right {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scale-up {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes title-underline {
  from { transform: translateX(-50%) scaleX(0); }
  to   { transform: translateX(-50%) scaleX(1); }
}

/* === buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(255,107,122,0.35);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  letter-spacing: 0.04em;
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 30px rgba(255,107,122,0.45); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--coral);
  color: var(--coral);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-outline:hover { background: var(--coral-light); transform: translateY(-3px) scale(1.02); }

/* === section wrapper === */
.section { padding: 88px 24px; }
.section--cream { background: var(--cream); }
.section--mint { background: var(--mint-light); }
.section--coral { background: var(--coral-light); }
.container { max-width: 1120px; margin: 0 auto; }

/* === notice bar === */
.notice-bar {
  background: linear-gradient(90deg, #FFF5F6 0%, #FFFBEE 50%, #F0FBF9 100%);
  border-bottom: 2px solid rgba(255,107,122,0.1);
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
}
.notice-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--coral), var(--yellow), var(--mint));
}
.notice-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}
.notice-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.notice-label {
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255,107,122,0.28);
}

/* === services grid === */
.services-section-bg {
  position: relative;
  overflow: hidden;
}
.services-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,122,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.services-section-bg .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px 20px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card:nth-child(1) { background: linear-gradient(145deg, #FFE0E3, #FFF5F6); }
.service-card:nth-child(2) { background: linear-gradient(145deg, #C2F2EA, #EAFAF7); }
.service-card:nth-child(3) { background: linear-gradient(145deg, #FEF0B0, #FFFBEE); }
.service-card:nth-child(4) { background: linear-gradient(145deg, #E4DCFF, #F5F3FF); }
.service-card:nth-child(5) { background: linear-gradient(145deg, #B3E4FD, #F0F9FF); }
.service-card:nth-child(6) { background: linear-gradient(145deg, #FFD4C0, #FFF0E8); }
.service-card:nth-child(7) { background: linear-gradient(145deg, #B8F2CC, #EDFFF5); }
.service-card:nth-child(8) { background: linear-gradient(145deg, #E4DCFF, #F5F3FF); }
/* Shimmer sweep */
.service-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 55%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.7), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
  z-index: 3;
}
.service-card:hover::before { left: 140%; }
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
/* Icon */
.service-card .icon {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.service-card:hover .icon { transform: scale(1.22) rotate(-6deg); }
/* Watermark number */
.service-num {
  position: absolute;
  bottom: -14px; right: 10px;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1;
  color: #000;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.03em;
}
.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; color: var(--text); }
.service-card p { font-size: 0.76rem; color: var(--text-mid); line-height: 1.8; position: relative; z-index: 1; }
.service-card.fade-up:nth-child(1) { transition-delay: 0s; }
.service-card.fade-up:nth-child(2) { transition-delay: 0.08s; }
.service-card.fade-up:nth-child(3) { transition-delay: 0.16s; }
.service-card.fade-up:nth-child(4) { transition-delay: 0.24s; }
.service-card.fade-up:nth-child(5) { transition-delay: 0.32s; }
.service-card.fade-up:nth-child(6) { transition-delay: 0.4s; }
.service-card.fade-up:nth-child(7) { transition-delay: 0.48s; }
.service-card.fade-up:nth-child(8) { transition-delay: 0.56s; }
.service-card.fade-up.is-visible { transition-delay: 0s; }

/* === about === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px;
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about-ring-1 {
  width: calc(100% - 30px);
  aspect-ratio: 1;
  border: 3px dashed var(--coral-mid);
  opacity: 0.45;
  animation: spin-slow 24s linear infinite;
}
.about-ring-2 {
  width: calc(100% + 12px);
  aspect-ratio: 1;
  border: 2px dashed var(--mint-mid);
  opacity: 0.3;
  animation: spin-slow 36s linear infinite reverse;
}
.about-photo-circle {
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255,107,122,0.22), 0 0 0 8px rgba(255,255,255,0.95);
  position: relative;
  z-index: 1;
}
.about-photo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  z-index: 2;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ab1 { top: 12%; left: -5%; color: var(--coral); border-left: 3px solid var(--coral); animation: float-card 3.4s ease-in-out infinite; }
.ab2 { bottom: 16%; right: -5%; color: var(--mint); border-left: 3px solid var(--mint); animation: float-card 4s ease-in-out infinite 0.7s; }
.about-content h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: 6px; }
.about-content .en-label {
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 22px;
  font-weight: 600;
}
.about-content .lead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-content p { color: var(--text-mid); line-height: 2; margin-bottom: 20px; font-size: 0.9rem; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.feature-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  flex-shrink: 0;
}

/* === steps === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 3px;
  background: linear-gradient(to right, var(--coral), var(--mint));
  border-radius: var(--radius-full);
  opacity: 0.3;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--coral), var(--peach));
}
.step-card:nth-child(2)::before { background: linear-gradient(to right, var(--mint), var(--mint-mid)); }
.step-card:nth-child(3)::before { background: linear-gradient(to right, var(--lavender), var(--sky)); }
.step-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 40px rgba(255,107,122,0.16); }
.step-num-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(255,107,122,0.35);
}
.step-card:nth-child(2) .step-num-circle { background: linear-gradient(135deg, var(--mint), var(--mint-mid)); box-shadow: 0 6px 20px rgba(62,207,178,0.35); }
.step-card:nth-child(3) .step-num-circle { background: linear-gradient(135deg, var(--lavender), var(--sky)); box-shadow: 0 6px 20px rgba(184,169,255,0.35); }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.9; }
.step-card.fade-up:nth-child(1) { transition-delay: 0s; }
.step-card.fade-up:nth-child(2) { transition-delay: 0.12s; }
.step-card.fade-up:nth-child(3) { transition-delay: 0.24s; }
.step-card.fade-up.is-visible { transition-delay: 0s; }

/* === hours === */
.hours-section { background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.hours-table thead tr { background: linear-gradient(135deg, var(--coral), var(--peach)); }
.hours-table th, .hours-table td {
  padding: 12px 10px;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hours-table th { color: #fff; font-weight: 700; font-size: 0.78rem; }
.hours-table td:first-child { text-align: left; color: var(--text-mid); font-size: 0.8rem; background: #fafafa; }
.hours-table tbody tr:last-child td { border-bottom: none; }
.circle { color: var(--coral); font-weight: 700; }
.triangle { color: var(--yellow); font-weight: 700; }
.cross { color: var(--text-light); }
.hours-note { font-size: 0.76rem; color: var(--text-light); margin-top: 14px; line-height: 2; }
.hours-section .section-title { color: var(--text); }
.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 28px 24px;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 2;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.map-placeholder h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.map-tel-link { color: var(--coral); font-weight: 500; letter-spacing: 0.08em; }
.map-note { margin-top: 14px; font-size: 0.76rem; opacity: 0.6; line-height: 2; }

/* === faq === */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 2.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item:hover { border-color: var(--coral-mid); box-shadow: 0 8px 24px rgba(255,107,122,0.12); transform: translateY(-2px); }
.faq-item.is-open { border-color: var(--coral); box-shadow: 0 8px 28px rgba(255,107,122,0.16); }
.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  cursor: pointer;
  line-height: 1.7;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--coral-light); }
.faq-q-left { display: flex; align-items: center; gap: 14px; flex: 1; }
.faq-q-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(255,107,122,0.3);
}
.faq-q-arrow {
  font-size: 1.1rem;
  color: var(--coral);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.is-open .faq-q-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 18px 24px 20px;
  background: linear-gradient(135deg, var(--coral-light), #fff);
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.9;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 2px solid rgba(255,107,122,0.1);
}
.faq-a-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-mid));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(62,207,178,0.3);
}
.faq-item.fade-up:nth-child(1) { transition-delay: 0s; }
.faq-item.fade-up:nth-child(2) { transition-delay: 0.08s; }
.faq-item.fade-up:nth-child(3) { transition-delay: 0.16s; }
.faq-item.fade-up:nth-child(4) { transition-delay: 0.24s; }
.faq-item.fade-up:nth-child(5) { transition-delay: 0.32s; }
.faq-item.fade-up.is-open,
.faq-item.fade-up.is-visible { transition-delay: 0s; }

/* === cta banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 40%, var(--yellow) 100%);
  padding: 100px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-blob-1 {
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.1);
  top: -120px; right: -100px;
  animation: blob-drift 10s ease-in-out infinite;
}
.cta-blob-2 {
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.08);
  bottom: -80px; left: -80px;
  animation: blob-drift 14s ease-in-out infinite reverse;
}
.cta-blob-3 {
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.12);
  top: 30%; left: 15%;
  animation: blob-drift 8s ease-in-out infinite 1s;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cta-banner p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 30px; position: relative; z-index: 1; }
.cta-tel {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
  position: relative;
  z-index: 1;
}
.cta-hours { font-size: 0.8rem; opacity: 0.85; margin-bottom: 32px; position: relative; z-index: 1; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--coral);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  position: relative;
  z-index: 1;
  animation: bounce-cta 2.4s ease-in-out infinite;
}
.btn-white:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 14px 36px rgba(0,0,0,0.18); animation: none; }

/* === footer === */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 28px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-brand .logo-text {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.footer-brand .logo-en {
  font-size: 0.6rem;
  color: var(--coral-mid);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.8rem; line-height: 2; }
.footer-nav h4 {
  font-size: 0.7rem;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.8rem; opacity: 0.6; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  opacity: 0.4;
}
.footer-links { display: flex; gap: 20px; }

/* === animations === */
.fade-up  { opacity: 1; transform: translateY(0); }
.fade-left  { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .fade-up.is-visible { opacity: 1; transform: translateY(0); }
  .fade-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }
  .fade-left.is-visible { opacity: 1; transform: translateX(0); }
  .fade-right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }
  .fade-right.is-visible { opacity: 1; transform: translateX(0); }
  .section-title::after {
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  .section-title.is-visible::after {
    animation: title-underline 0.65s cubic-bezier(0.22,1,0.36,1) 0.42s both;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* === responsive === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .site-header { height: 58px; }
  .header-nav { display: none; }
  .hero-topbar { padding: 16px 20px; }
  .hero-logo-img { width: 36px; }
  .hero-topbar-tel { font-size: 0.78rem; padding: 8px 16px; }
  .hero-main { grid-template-columns: 1fr; padding: 16px 20px; gap: 20px; }
  .hero-photo-area { padding: 24px; max-width: 320px; margin: 0 auto; width: 100%; }
  .hic1, .hic2, .hic3 { font-size: 0.7rem; padding: 8px 12px; }
  .hic1 { top: 2%; left: -4%; }
  .hic2 { bottom: 12%; right: -4%; }
  .hic3 { bottom: -4%; left: 4%; }
  .hero-headline { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hnav-item { padding: 12px 4px; font-size: 0.65rem; }
  .hnav-icon { width: 18px; height: 18px; }
  .hnav-num { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo-wrap { padding: 36px; max-width: 360px; margin: 0 auto; width: 100%; }
  .ab1 { left: -1%; }
  .ab2 { right: -1%; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 20px; }
  .faq-q { padding: 16px 18px; font-size: 0.88rem; }
  .faq-a-inner { padding: 14px 18px 16px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
