/*
Theme Name: ハナタカ
Theme URI: https://www.hanataka-ryukyu.com
Author: atme Corporation
Description: ハナタカ - 純水で洗えるセルフ洗車場・手洗い洗車・コーティング・レンタカー（沖縄県西原町）
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: hanataka
*/

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --orange: #F18D09;
  --orange-light: #FFA733;
  --orange-dark: #D67A00;
  --cream: #FDFAF4;
  --warm-white: #FFFEF9;
  --sand: #F5EFE0;
  --sand-dark: #EDE3CE;
  --text: #2A2118;
  --text-muted: #7A6E5F;
  --text-light: #A89880;
  --border: #E8DCC8;
  --r: 12px;
  --r-lg: 20px;
  --shadow: 0 4px 24px rgba(100,70,20,.10);
  --shadow-lg: 0 12px 48px rgba(100,70,20,.14);
  --line: #06C755;
  --header-h: 72px;
  --announce-h: 36px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===========================
   LAYOUT HELPERS
=========================== */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-sm { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 1.5rem; }
.text-center { text-align: center; }

/* ===========================
   TYPOGRAPHY SYSTEM
=========================== */
.label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: block;
  margin-bottom: .5rem;
}
.ttl {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.lead {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: .95rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  transition: all .25s;
  cursor: pointer;
  text-align: center;
  border: none;
  font-family: inherit;
}
.btn-main { background: var(--orange); color: #fff; box-shadow: 0 4px 16px rgba(241,141,9,.35); }
.btn-main:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,141,9,.4); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-w:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-line { background: var(--line); color: #fff; }
.btn-line:hover { filter: brightness(1.08); }

/* ===========================
   ANIMATIONS
=========================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.fade-up.visible { opacity: 1; transform: none; }

/* ===========================
   ANNOUNCE BAR
=========================== */
#announce-bar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: .6rem 1.5rem;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--announce-h);
}
#announce-bar a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-weight: 700;
  white-space: nowrap;
}

/* ===========================
   HEADER
=========================== */
#site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253,250,244,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}
.site-logo img { height: 52px; width: 52px; object-fit: contain; border-radius: 8px; }
.site-nav { display: none; }
.site-nav ul { display: flex; gap: 1.6rem; align-items: center; }
.site-nav a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s;
}
.site-nav a:hover { color: var(--orange); }
.site-nav a:hover::after { width: 100%; }
@media(min-width: 1024px) {
  .site-nav { display: block; }
  .hamburger { display: none !important; }
}
.header-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header-tel a {
  font-weight: 800;
  color: var(--orange);
  font-size: .95rem;
  white-space: nowrap;
}
.btn-line-sm {
  background: var(--line);
  color: #fff;
  padding: .42rem 1rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: filter .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.btn-line-sm:hover { filter: brightness(1.08); }
.hamburger { background: none; border: none; cursor: pointer; padding: .5rem; display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; font-weight: 700; transition: color .2s; color: var(--text); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text); }
.mobile-tel-big { color: var(--orange) !important; font-size: 1.4rem !important; }

/* ===========================
   HERO
=========================== */
#hero { margin-top: calc(var(--announce-h) + var(--header-h)); position: relative; overflow: hidden; }
#hero .hero-img { width: 100%; display: block; object-fit: cover; max-height: 88vh; min-height: 380px; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(42,33,24,.72) 0%, rgba(42,33,24,.25) 65%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 640px;
  padding: 2.5rem 2rem;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .1em;
  padding: .3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-title em { font-style: normal; color: var(--orange-light); }
.hero-desc {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  line-height: 1.85;
  opacity: .88;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .78rem; opacity: .75; }
.hero-meta span { display: flex; align-items: center; gap: .4rem; }
.hero-meta span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@media(max-width: 639px) {
  #hero { margin-top: calc(var(--announce-h) + var(--header-h)); }
  .hero-overlay { background: linear-gradient(175deg, rgba(42,33,24,.68) 0%, rgba(42,33,24,.18) 80%); }
}

/* ===========================
   SERVICES OVERVIEW
=========================== */
#services-overview { background: var(--sand); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media(min-width: 768px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-card {
  background: var(--warm-white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.svc-card-body { padding: 1.25rem 1rem; text-align: center; }
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(241,141,9,.12);
  margin: 0 auto .75rem;
}
.svc-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.svc-card h3 { font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: .35rem; }
.svc-card p { font-size: .75rem; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   QUALITY / CONCEPT
=========================== */
#quality { background: var(--warm-white); }
.quality-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  box-shadow: var(--shadow-lg);
}
@media(min-width: 768px) { .quality-card { grid-template-columns: 1fr 1fr; } }
.quality-text { background: var(--orange); padding: 3.5rem 2.5rem; color: #fff; }
.quality-text .label { color: rgba(255,255,255,.7); }
.quality-text .ttl { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.quality-text p { font-size: .9rem; line-height: 1.9; opacity: .92; margin-top: .75rem; }
.quality-list { margin-top: 1.5rem; }
.quality-list li {
  padding: .65rem 0 .65rem 1.6rem;
  position: relative;
  font-size: .88rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.quality-list li:last-child { border-bottom: none; }
.quality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}
.quality-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

/* ===========================
   PURE WATER
=========================== */
#pure-water { background: var(--sand); }
.tds-wrap {
  background: var(--warm-white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}
.tds-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.tds-title svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 2; }
.tds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.tds-item img { border-radius: var(--r); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tds-label { text-align: center; font-size: .82rem; margin-top: .6rem; line-height: 1.6; color: var(--text-muted); }
.tds-bad { color: #C0392B; font-weight: 700; display: block; }
.tds-good { color: #27AE60; font-weight: 700; display: block; }
.tds-text { font-size: .9rem; line-height: 1.9; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 1.5rem; }

/* ===========================
   PRICE
=========================== */
#price { background: var(--warm-white); }
.price-block {
  background: var(--sand);
  border-radius: var(--r);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.price-ttl {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.price-ttl svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.tbl-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-table th { background: var(--orange); color: #fff; padding: .75rem 1rem; text-align: left; font-weight: 700; }
.price-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); background: var(--warm-white); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price { font-weight: 800; color: var(--orange); text-align: right; }
.price-table th.price { text-align: right; }
@media(max-width: 767px) { .price-table { font-size: .8rem; } .price-table th, .price-table td { padding: .55rem .75rem; } }
.floor-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.floor-imgs img { border-radius: var(--r); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.notice {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: .83rem;
  color: var(--text-muted);
  border-left: 3px solid var(--orange);
  line-height: 1.8;
}

/* ===========================
   SELF WASH
=========================== */
#self-wash { background: var(--text); color: #fff; }
#self-wash .label { color: var(--orange-light); }
#self-wash .quality-list li { border-bottom-color: rgba(255,255,255,.1); font-size: .9rem; }
#self-wash .quality-list li::before { background: var(--orange); }
.self-grid { display: grid; gap: 3rem; align-items: center; }
@media(min-width: 768px) { .self-grid { grid-template-columns: 1fr 1fr; } }
.self-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 1rem; color: #fff; line-height: 1.3; }
.self-text h2 em { font-style: normal; color: var(--orange-light); }
.self-text p { color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.9; margin-bottom: 1.5rem; }
.self-img img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,.4); }

/* ===========================
   FAQ
=========================== */
#faq { background: var(--sand); }
.faq-grid { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media(min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-item { background: var(--warm-white); border-radius: var(--r); padding: 1.75rem; border: 1px solid var(--border); }
.faq-q-label { font-size: .65rem; letter-spacing: .2em; color: var(--orange); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: .4rem; }
.faq-item h4 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; line-height: 1.5; }
.faq-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.8; }

/* ===========================
   NEWS
=========================== */
#news-section { background: var(--warm-white); }
.news-list-wrap { border-top: 1px solid var(--border); margin-top: 2rem; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.news-meta { font-size: .78rem; color: var(--text-light); white-space: nowrap; }
.news-cat {
  background: rgba(241,141,9,.12);
  color: var(--orange-dark);
  font-size: .65rem;
  padding: .15rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: .05em;
}
.news-ttl { font-size: .9rem; font-weight: 700; color: var(--text); transition: color .2s; }
.news-ttl:hover { color: var(--orange); }

/* ===========================
   ACCESS
=========================== */
#access { background: var(--sand); }
.access-grid { display: grid; gap: 2.5rem; align-items: start; margin-top: 2.5rem; }
@media(min-width: 768px) { .access-grid { grid-template-columns: 5fr 4fr; } }
.access-info h3 { font-size: .9rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.access-info p { font-size: .88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.access-tel { font-size: 1.6rem; font-weight: 900; color: var(--orange); display: block; margin: .75rem 0 1.25rem; }
.access-tel a { color: var(--orange); }
.hours-box {
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  font-size: .85rem;
  line-height: 2;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.hours-box strong { color: var(--text); display: block; margin-bottom: .35rem; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ===========================
   CONTACT
=========================== */
#contact { background: var(--warm-white); }
.contact-box {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 3rem;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.req { color: #C0392B; margin-left: 2px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  background: var(--warm-white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241,141,9,.12);
}
.form-group textarea { resize: vertical; }
#form-status { font-size: .88rem; min-height: 1.5em; text-align: center; margin-bottom: .5rem; }

/* ===========================
   CTA STRIP
=========================== */
.cta-strip { background: var(--orange); color: #fff; text-align: center; padding: 4rem 1.5rem; }
.cta-strip h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 900; margin-bottom: .5rem; }
.cta-strip > .wrap > p { opacity: .88; font-size: .9rem; margin-bottom: 1.5rem; }
.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,.12);
  padding: .6rem 2rem;
  border-radius: 999px;
  letter-spacing: .04em;
  transition: background .2s;
}
.cta-tel:hover { background: rgba(0,0,0,.22); }
.cta-tel svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.cta-hours { font-size: .8rem; opacity: .75; margin-top: .75rem; }

/* ===========================
   FOOTER
=========================== */
#site-footer { background: var(--text); color: rgba(255,255,255,.85); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; gap: 2.5rem; }
@media(min-width: 768px) { .footer-inner { grid-template-columns: 3fr 2fr; } }
.footer-logo img { height: 60px; width: 60px; object-fit: contain; margin-bottom: 1.25rem; }
.footer-info p { font-size: .82rem; line-height: 1.9; opacity: .7; margin-bottom: .3rem; }
.footer-tel { font-size: 1.2rem; font-weight: 800; display: block; margin: .75rem 0; color: var(--orange-light); }
.footer-tel a { color: var(--orange-light); }
.btn-line-footer {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--line);
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: filter .2s;
}
.btn-line-footer:hover { filter: brightness(1.08); }
.footer-nav h4 { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; opacity: .45; margin-bottom: .85rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { font-size: .82rem; opacity: .65; transition: opacity .2s; }
.footer-nav a:hover { opacity: 1; color: var(--orange-light); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
  opacity: .45;
}

/* ===========================
   BOTTOM NAV (mobile)
=========================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .6rem 0;
  font-size: .6rem;
  font-weight: 700;
  color: var(--text-muted);
  gap: .2rem;
  transition: background .2s, color .2s;
  letter-spacing: .02em;
}
.bottom-nav a svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.bottom-nav a:hover { background: var(--sand); color: var(--orange); }
.bottom-nav a.line-btn { background: var(--line); color: #fff; }
.bottom-nav a.line-btn:hover { filter: brightness(1.06); }
@media(min-width: 768px) { .bottom-nav { display: none; } }
@media(max-width: 767px) { body { padding-bottom: 62px; } }

/* ===========================
   PAGE TOP BTN
=========================== */
.page-top-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  background: var(--orange);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(241,141,9,.45);
  transition: all .3s;
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  border: none;
}
.page-top-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2.5; }
.page-top-btn.show { opacity: 1; pointer-events: auto; }
.page-top-btn:hover { transform: translateY(-3px); }
@media(min-width: 768px) { .page-top-btn { bottom: 2rem; } }

/* ===========================
   PAGE TEMPLATES (内ページ共通)
=========================== */
.page-header { background: var(--text); color: #fff; padding: 5rem 1.5rem 3rem; margin-top: calc(var(--announce-h) + var(--header-h)); text-align: center; }
.page-header .sub { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; opacity: .5; display: block; margin-bottom: .6rem; color: var(--orange); }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; }
.svc-section { padding: 5rem 1.5rem; }
.svc-section:nth-child(even) { background: var(--sand); }
.svc-layout { display: grid; gap: 3rem; align-items: start; }
@media(min-width: 768px) { .svc-layout { grid-template-columns: 1fr 1fr; } }
@media(min-width: 768px) { .svc-layout.reverse .svc-imgs { order: -1; } }
.svc-text h2 { color: var(--orange); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 900; margin-bottom: 1rem; }
.svc-text h3 { color: var(--text); font-size: 1rem; font-weight: 800; margin: 1.5rem 0 .6rem; }
.svc-text p { margin-bottom: 1rem; line-height: 1.9; color: var(--text-muted); font-size: .92rem; }
.svc-imgs { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
.svc-imgs img { border-radius: var(--r); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.svc-imgs.single { grid-template-columns: 1fr; }
.svc-imgs.single img { aspect-ratio: 16/9; }
.highlight { background: rgba(241,141,9,.08); border-left: 4px solid var(--orange); border-radius: 0 var(--r) var(--r) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.highlight strong { color: var(--orange); }

/* サービスナビ ボタン */
.svc-nav-btn {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: .4rem .9rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  transition: all .2s;
  background: var(--warm-white);
  white-space: nowrap;
}
.svc-nav-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.custom-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 6px;
}