/* ============================================================
   shared.css — ひかり整骨院
   テーマ: 太陽・ひかり / ファミリーフレンドリー
   フォント: Nunito + Noto Sans JP
   ============================================================ */

/* ---- CSS Variables ---------------------------------------- */
:root {
  --coral:      #FF7043;
  --coral-lt:   #FF9A6C;
  --coral-deep: #E64A19;
  --sun:        #FFC107;
  --sun-lt:     #FFD54F;
  --sun-pale:   #FFF8E1;
  --bg:         #FFFDF8;
  --bg-warm:    #FFF5E0;
  --bg-section: #FFF0D0;
  --ink:        #3D2B1A;
  --ink-soft:   #6B4C36;
  --muted:      #A08060;
  --white:      #FFFFFF;
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --shadow-sm:  0 2px 12px rgba(61,43,26,.08);
  --shadow-md:  0 6px 32px rgba(61,43,26,.10);
  --shadow-lg:  0 16px 56px rgba(61,43,26,.12);
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ---- Typography ------------------------------------------- */
h1, h2, h3 {
  font-family: 'Nunito', 'Noto Sans JP', sans-serif;
  line-height: 1.25;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; }
h3 { font-size: clamp(16px, 2vw, 20px);   font-weight: 700; }
.hi { color: var(--coral); }

/* ---- Container -------------------------------------------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-coral {
  background: var(--coral); color: #fff;
  box-shadow: 0 4px 20px rgba(255,112,67,.35);
}
.btn-coral:hover { background: var(--coral-deep); box-shadow: 0 6px 28px rgba(255,112,67,.45); }

.btn-outline-coral {
  background: transparent; color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline-coral:hover { background: rgba(255,112,67,.06); }

.btn-white {
  background: #fff; color: var(--coral);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { box-shadow: 0 6px 28px rgba(0,0,0,.16); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.75);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ---- Section common --------------------------------------- */
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head--light .section-title,
.sec-head--light .eyebrow { color: #fff; }

.eyebrow {
  display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 10px;
}
.eyebrow.dual::before { content: '— '; }
.eyebrow.dual::after  { content: ' —'; }
.eyebrow--light { color: rgba(255,255,255,.85); }

.section-title {
  color: var(--ink); margin-bottom: 14px;
  font-weight: 800;
}
.sec-desc { color: var(--ink-soft); font-size: 14px; letter-spacing: .08em; }

/* ---- Wave dividers ---------------------------------------- */
.wave-top, .wave-bottom { line-height: 0; }
.wave-top  svg, .wave-bottom svg { width: 100%; display: block; }

/* ---- Reveal animations ------------------------------------ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stamp {
  width: 88px; height: 88px;
  animation: ld-stamp .7s cubic-bezier(.22,1,.36,1) both,
             ld-pulse 2.4s ease-in-out .7s infinite;
}
.loader-name {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 18px; letter-spacing: .12em; color: var(--ink);
  animation: ld-rise .5s ease .25s both;
}
.loader-dots { display: flex; gap: 7px; animation: ld-rise .5s ease .4s both; }
.loader-dots span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  animation: ld-bounce .9s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .18s; }
.loader-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes ld-stamp  { from { opacity:0; transform:rotate(-10deg) scale(.6); } to { opacity:1; transform:rotate(0) scale(1); } }
@keyframes ld-pulse  { 0%,100% { transform:scale(1); } 50% { transform:scale(1.06); } }
@keyframes ld-rise   { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes ld-bounce { 0%,80%,100% { transform:translateY(0); opacity:.35; } 40% { transform:translateY(-9px); opacity:1; } }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background .3s ease, box-shadow .3s ease;
}
#nav.scrolled { background: #fff; box-shadow: 0 2px 24px rgba(61,43,26,.08); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none;
}
.brand-sun { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .ja {
  font-family: 'Nunito', 'Noto Sans JP', sans-serif; font-weight: 800;
  font-size: 17px; color: var(--ink); letter-spacing: .04em;
}
.brand-text .en {
  font-family: 'Nunito', sans-serif; font-weight: 600;
  font-size: 9px; letter-spacing: .24em; color: var(--muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px;
  padding: 7px 12px; border-radius: 100px; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,112,67,.1); color: var(--coral); }
.nav-tel {
  background: var(--coral); color: #fff !important;
  padding: 8px 18px !important; border-radius: 100px !important;
  box-shadow: 0 3px 12px rgba(255,112,67,.3);
}
.nav-tel:hover { background: var(--coral-deep) !important; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: auto; border-radius: 8px;
}
.nav-toggle span {
  width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  background: linear-gradient(135deg, #FF7043 0%, #FF9A6C 50%, #FFB74D 100%);
  display: flex; align-items: center; padding-top: 68px; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-blob-1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,.08);
  top: -100px; right: -80px;
  animation: blob-float 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 250px; height: 250px;
  background: rgba(255,213,79,.15);
  bottom: 60px; left: -60px;
  animation: blob-float 6s ease-in-out 2s infinite reverse;
}
@keyframes blob-float { 0%,100% { transform:translateY(0) scale(1); } 50% { transform:translateY(-20px) scale(1.03); } }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding-top: 40px; padding-bottom: 120px;
}
.hero-copy { display: flex; flex-direction: column; gap: 20px; }

.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,.25); color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .1em;
  padding: 6px 18px; border-radius: 100px;
  backdrop-filter: blur(6px); width: fit-content;
}
.hero-copy h1 {
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 900; color: #fff; line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.hero-em {
  font-style: normal; color: var(--sun-lt);
  text-shadow: 0 2px 20px rgba(255,213,79,.4);
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.9); line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2); color: rgba(255,255,255,.95);
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 12px;
  padding: 5px 14px; border-radius: 100px; backdrop-filter: blur(4px);
}
.hero-illust {
  display: flex; justify-content: center; align-items: center;
}
.sun-svg {
  width: 100%; max-width: 320px;
  animation: sun-spin 40s linear infinite, sun-float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 40px rgba(255,196,7,.3));
}
@keyframes sun-spin  { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes sun-float { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-12px) rotate(180deg); } }

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { padding: 72px 0; background: var(--bg); }
.hl-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hl-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1.5px solid rgba(255,112,67,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hl-icon { font-size: 40px; margin-bottom: 16px; }
.hl-card h3 {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 16px; color: var(--coral); margin-bottom: 10px;
}
.hl-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-warm); padding: 0 0 20px; }
.about .container { padding-top: 64px; padding-bottom: 64px; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: rgba(255,112,67,.07);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-photo-ph { display: flex; align-items: center; justify-content: center; }
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-deco {
  position: absolute; bottom: -24px; right: -24px; z-index: 0;
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--sun) 100%);
  opacity: .18;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-body p {
  font-size: 15px; color: var(--ink-soft); line-height: 2;
  margin-bottom: 12px;
}
.about-quote {
  border-left: 4px solid var(--coral); padding: 16px 20px;
  background: rgba(255,112,67,.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--ink-soft); font-size: 15px; line-height: 1.85;
}

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: 80px 0; background: var(--bg); }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.menu-card {
  background: #fff; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255,112,67,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-icon {
  font-size: 52px; text-align: center;
  padding: 32px 24px 16px; background: linear-gradient(135deg, var(--sun-pale), #fff);
}
.menu-card-body { padding: 20px 24px 26px; }
.menu-card-body h3 {
  font-family: 'Nunito', 'Noto Sans JP', sans-serif; font-weight: 800;
  font-size: 16px; color: var(--ink); margin-bottom: 8px;
}
.menu-price {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--coral); margin-bottom: 8px;
}
.menu-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 10px; }
.menu-time {
  display: inline-block; font-size: 12px; color: var(--muted);
  background: var(--bg-warm); padding: 4px 12px; border-radius: 100px;
}

/* Skeleton loaders */
.menu-skel {
  background: #F5EDE4; border-radius: var(--radius-md); min-height: 220px;
  position: relative; overflow: hidden;
}
.menu-skel::after, .review-skel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,112,67,.07) 40%, rgba(255,213,79,.1) 50%, rgba(255,112,67,.07) 60%, transparent 100%);
  background-size: 250% 100%;
  animation: skel-shimmer 1.8s ease-in-out infinite;
}
@keyframes skel-shimmer { 0% { background-position:250% 0; } 100% { background-position:-250% 0; } }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: linear-gradient(135deg, #FF7043 0%, #FF9A6C 60%, #FFB74D 100%);
  padding: 0 0 20px;
}
.features .container { padding-top: 64px; padding-bottom: 72px; }
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 28px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: background .25s ease, transform .25s ease;
}
.feature-item:hover { background: rgba(255,255,255,.22); transform: translateX(4px); }
.feature-num {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 48px; color: rgba(255,255,255,.35); line-height: 1;
  flex-shrink: 0; min-width: 60px;
}
.feature-body h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.feature-body p { color: rgba(255,255,255,.85); font-size: 14.5px; line-height: 1.8; }

/* ============================================================
   FOR YOU
   ============================================================ */
.foryou { padding: 80px 0; background: var(--bg); }
.foryou-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.foryou-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.foryou-card:hover { border-color: var(--coral-lt); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.foryou-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.foryou-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: linear-gradient(135deg, #FF8F65 0%, #FF7043 50%, #E64A19 100%);
  padding: 0 0 20px;
}
.reviews .container { padding-top: 64px; padding-bottom: 72px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr; gap: 20px; align-items: stretch;
}
.review {
  background: rgba(255,255,255,.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-md);
  padding: 24px; display: flex; flex-direction: column;
  height: 100%; min-height: 280px;
}
.review-stars { font-size: 16px; color: var(--sun-lt); letter-spacing: 2px; margin-bottom: 12px; }
.review-body {
  flex: 1; font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.85;
  display: -webkit-box; -webkit-line-clamp: 8; line-clamp: 8;
  -webkit-box-orient: vertical; overflow: hidden;
  text-overflow: ellipsis; word-break: break-word; margin-bottom: 16px;
}
.review-meta { display: flex; justify-content: space-between; align-items: center; }
.review-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: #fff; }
.review-date { font-size: 11px; color: rgba(255,255,255,.6); }
.review-cta {
  background: rgba(255,255,255,.95); border-radius: var(--radius-md);
  padding: 24px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; min-height: 280px;
  transition: background .2s, transform .2s;
}
.review-cta:hover { background: #fff; transform: translateY(-3px); }
.review-cta-stars { font-size: 18px; color: var(--sun); letter-spacing: 3px; }
.review-cta-msg { font-size: 14px; color: var(--ink-soft); text-align: center; line-height: 1.7; }
.review-cta-link {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--coral);
}
/* Review skeleton */
.review-skel {
  background: rgba(255,255,255,.12); border-radius: var(--radius-md);
  height: 280px; position: relative; overflow: hidden;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 80px 0; background: var(--bg); }
.wall {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  min-height: 200px;
}
.wall.cms-loading {
  background: var(--bg-warm); border-radius: var(--radius-md);
  position: relative; overflow: hidden; grid-template-columns: 1fr;
}
.wall.cms-loading::after {
  content: '読み込み中…'; display: flex; align-items: center; justify-content: center;
  position: absolute; inset: 0; font-size: 13px; letter-spacing: .2em;
  color: var(--muted); animation: ld-pulse 1.4s ease-in-out infinite;
}
.blog-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1.5px solid rgba(255,112,67,.07);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .tape {
  display: block; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sun));
  border-radius: 4px 4px 0 0;
}
.blog-card .image {
  aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0;
}
.blog-card .image img { transition: transform .4s ease; }
.blog-card:hover .image img { transform: scale(1.05); }
.blog-card .body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card .date { font-size: 11px; color: var(--muted); letter-spacing: .16em; }
.blog-card .cap { font-family: 'Noto Sans JP', sans-serif; font-weight: 500; font-size: 14px; color: var(--ink); line-height: 1.7; flex: 1; }
.blog-card:hover .cap { text-decoration: underline; }
.blog-card .cta-lbl { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; color: var(--coral); }
a.blog-card { color: inherit; text-decoration: none; display: flex; flex-direction: column; }

/* ============================================================
   ACCESS
   ============================================================ */
.access {
  background: linear-gradient(135deg, #FF7043 0%, #FF9A6C 100%);
  padding: 0 0 20px;
}
.access .container { padding-top: 64px; padding-bottom: 72px; }
.access-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.access-info { display: flex; flex-direction: column; gap: 24px; }
#accessDl { display: flex; flex-direction: column; gap: 12px; }
.dl-row { display: flex; gap: 14px; }
.dl-row dt {
  font-family: 'Nunito', 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: 13px; color: rgba(255,255,255,.85); white-space: nowrap;
  padding-top: 2px; min-width: 90px;
}
.dl-row dd { font-size: 14.5px; color: #fff; line-height: 1.7; }
.dl-row dd a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hours-box {
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-md); padding: 20px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px;
  color: rgba(255,255,255,.7); text-align: center; padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.hours-table td {
  font-size: 12px; color: #fff; text-align: center;
  padding: 10px 4px;
}
.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed { width: 100%; height: 380px; }

/* ============================================================
   SNS
   ============================================================ */
.sns { padding: 72px 0; background: var(--bg); }
.sns-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.sns-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--radius-md);
  padding: 32px 40px; box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255,112,67,.08);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.sns-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sns-icon { font-size: 40px; }
.sns-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink); }
.sns-handle { font-size: 12px; color: var(--muted); }

/* ============================================================
   DELIVERY
   ============================================================ */
.delivery {
  background: linear-gradient(135deg, #FF9A6C 0%, #FF7043 100%);
  padding: 0 0 20px;
}
.delivery .container { padding-top: 64px; padding-bottom: 72px; }
.delivery-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.delivery-card {
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-md);
  overflow: hidden;
}
.delivery-img { aspect-ratio: 16/10; overflow: hidden; }
.delivery-img img { width: 100%; height: 100%; object-fit: cover; }
.delivery-body { padding: 22px 24px 28px; }
.delivery-body h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.delivery-body p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.delivery-price { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 20px; color: var(--sun-lt); }
.delivery-link { display: inline-block; margin-top: 14px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: rgba(255,255,255,.9); text-decoration: underline; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 80px 0; background: var(--bg-warm); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; background: none; border: none; cursor: pointer;
  text-align: left; color: var(--ink);
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,112,67,.04); }
.faq-badge {
  flex-shrink: 0; width: 30px; height: 30px;
  background: var(--coral); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px;
}
.faq-badge--a { background: var(--sun); color: var(--ink); }
.faq-q-text { flex: 1; font-family: 'Noto Sans JP', sans-serif; font-weight: 500; font-size: 15px; line-height: 1.6; }
.faq-toggle {
  font-size: 22px; color: var(--coral); font-weight: 700;
  transition: transform .3s ease; flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-a {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 0 22px 22px; border-top: 1px solid rgba(255,112,67,.1);
  background: rgba(255,213,79,.06);
  padding-top: 18px;
}
.faq-a p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; flex: 1; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FF7043 0%, #FF9A6C 50%, #FFB74D 100%);
  padding: 0 0 80px;
}
.cta-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-blob-1 { width: 320px; height: 320px; background: rgba(255,255,255,.08); top: -60px; right: 5%; animation: blob-float 7s ease-in-out infinite; }
.cta-blob-2 { width: 200px; height: 200px; background: rgba(255,213,79,.12); bottom: 20px; left: 8%; animation: blob-float 5s ease-in-out 1s infinite reverse; }
.cta-box {
  position: relative; z-index: 1; text-align: center;
  max-width: 640px; margin: 0 auto; padding-top: 20px;
}
.cta-deco { font-size: 56px; margin-bottom: 8px; animation: sun-float 3s ease-in-out infinite; display: block; }
.cta-box h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 16px; }
.cta-h3 { color: rgba(255,255,255,.85); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.8; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .08em; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #2D1F14; color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.footer-logo span {
  font-family: 'Nunito', 'Noto Sans JP', sans-serif;
  font-weight: 800; font-size: 18px; color: #fff;
}
.footer-brand p, .footer-brand address p { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.65); }
.footer-brand a { color: rgba(255,255,255,.8); }
.footer-brand a:hover { color: var(--coral-lt); }
.footer-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav a:hover { color: var(--coral-lt); }
.footer-bottom { text-align: center; display: flex; flex-direction: column; gap: 10px; }
.partner-notice-inline { font-size: 11.5px; color: rgba(255,255,255,.4); line-height: 1.8; }
.partner-notice-inline a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; }
.copyright { font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .1em; }
.produced-by { font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.28); text-transform: uppercase; }
.produced-by a { color: rgba(255,255,255,.42); transition: color .3s; }
.produced-by a:hover { color: var(--coral-lt); }

/* ============================================================
   MOBILE OPTIMIZATION (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 80px; }
  .hero-illust { order: -1; }
  .sun-svg { max-width: 200px; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .foryou-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .wall { grid-template-columns: repeat(2, 1fr); }
  .access-layout { grid-template-columns: 1fr; }
  .map-embed { height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .delivery-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 68px 0 0 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 16px; gap: 4px; overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 15px; }
  .nav-tel { text-align: center; padding: 14px 16px !important; margin-top: 8px; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 68px; }
  .hero-copy h1 { font-size: clamp(36px, 11vw, 52px); }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 11px; padding: 4px 12px; }

  /* Section titles */
  .section-title { overflow-wrap: break-word; word-break: break-all; }

  /* Highlights */
  .hl-grid { grid-template-columns: 1fr; gap: 12px; }
  .hl-card { padding: 24px 20px; }

  /* Menu / foryou */
  .menu-grid { grid-template-columns: 1fr; }
  .foryou-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .foryou-card { padding: 22px 14px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Blog wall */
  .wall { grid-template-columns: 1fr; }

  /* Access table */
  .hours-table th, .hours-table td { padding: 8px 2px; font-size: 11px; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-box h2 { overflow-wrap: break-word; word-break: break-all; }

  /* Features */
  .feature-item { padding: 20px; gap: 16px; }
  .feature-num { font-size: 36px; min-width: 44px; }

  /* Footer */
  .footer-nav ul { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
