/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange:      #E8622A;
  --orange-light:#FFF0E8;
  --orange-mid:  #F5884A;
  --warm:        #FDF6F0;
  --brown:       #7A3B1E;
  --text:        #2D1F1A;
  --text2:       #6B4E3D;
  --text3:       #A88070;
  --bg:          #FAFAF8;
  --surface:     #FFFFFF;
  --border:      #EDE4DC;
  --green-line:  #06C755;
}
html { scroll-behavior: smooth; }
body { font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif; color: var(--text); background: var(--bg); line-height: 1.8; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-bottom: 2px solid var(--orange);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(232,98,42,0.1);
}
.logo { font-size: 1.15rem; font-weight: 800; color: var(--orange); letter-spacing: 0.05em; display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.4rem; }
.logo small { display: block; font-size: 0.6rem; color: var(--text3); letter-spacing: 0.1em; margin-top: 1px; }
nav { display: flex; gap: 4px; }
nav a {
  color: var(--text2); font-size: 0.8rem; font-weight: 700;
  padding: 7px 12px; border-radius: 6px; transition: all .2s;
}
nav a:hover { color: var(--orange); background: var(--orange-light); }
nav a.active { color: var(--orange); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-tel { text-align: right; }
.header-tel-num { font-size: 1rem; font-weight: 800; color: var(--orange); }
.header-tel small { display: block; font-size: 0.62rem; color: var(--text3); }
.header-line {
  background: var(--green-line); color: #fff; font-size: 0.78rem; font-weight: 800;
  padding: 8px 14px; border-radius: 6px; display: flex; align-items: center; gap: 5px;
  transition: background .2s;
}
.header-line:hover { background: #05B34C; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: 64px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--orange) 100%);
  padding-bottom: 56px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; padding: 56px 32px 0; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); transition: color .2s; }
.page-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.page-breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.page-hero-en { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 0.2em; margin-bottom: 10px; }

/* ===== SECTION BASE ===== */
.section { padding: 80px 32px; }
.section-alt { background: var(--surface); }
.container { max-width: 1100px; margin: 0 auto; }
.sec-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: var(--brown); line-height: 1.35; margin-bottom: 16px; }
.sec-desc { color: var(--text2); font-size: 0.93rem; line-height: 1.95; max-width: 640px; }
.sec-header { margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; border-radius: 8px; transition: all .2s;
  letter-spacing: 0.04em; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 16px 36px; font-size: 0.95rem;
}
.btn-primary:hover { background: var(--orange-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,42,0.35); }
.btn-line {
  background: var(--green-line); color: #fff;
  padding: 16px 28px; font-size: 0.9rem;
}
.btn-line:hover { background: #05B34C; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--orange);
  padding: 16px 28px; font-size: 0.9rem;
  border: 2px solid var(--orange);
}
.btn-ghost:hover { background: var(--orange); color: #fff; }
.btn-outline {
  background: transparent; color: var(--brown);
  padding: 12px 24px; font-size: 0.85rem;
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: #fff; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CARDS ===== */
.card {
  background: var(--surface); border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border); transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 28px rgba(232,98,42,0.12); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; flex-shrink: 0;
  border: 1px solid rgba(232,98,42,0.2);
}
.card h3 { font-size: 1rem; font-weight: 800; color: var(--brown); margin-bottom: 10px; line-height: 1.4; }
.card p { color: var(--text2); font-size: 0.87rem; line-height: 1.85; }

/* ===== GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown), var(--orange));
  padding: 72px 32px; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 36px; }
.cta-tel-big {
  font-size: 2rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 24px;
}
.cta-tel-big small { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.5); display: block; }

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: var(--orange); color: #fff;
  text-align: center; padding: 11px 24px; font-size: 0.85rem;
}
.notice-bar strong { font-weight: 900; }

/* ===== FOOTER ===== */
footer {
  background: #1A0D08; color: rgba(255,255,255,0.35);
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-logo { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 0.8rem; line-height: 1.9; }
.footer-nav h4 { color: rgba(255,255,255,0.55); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color .2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-contact h4 { color: rgba(255,255,255,0.55); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-tel { color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.footer-hours { font-size: 0.78rem; line-height: 1.9; }
.footer-copy { max-width: 1100px; margin: 0 auto; text-align: center; font-size: 0.75rem; }

/* ===== ANIMATE ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  nav { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 60px 20px; }
  header { padding: 0 20px; }
  .page-hero-inner { padding: 48px 20px 0; }
  .cta-group { flex-direction: column; }
}
