:root {
  --main: #1a4a8a;
  --main-dark: #123a70;
  --accent: #d6486a;
  --accent-dark: #b93a5a;
  --bg: #f7f5f0;
  --text: #262626;
  --text-light: #737373;
  --border: #e2ded4;
  --white: #ffffff;
  --font-heading: "Klee One", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 3px solid var(--main);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo { display: flex; flex-direction: column; min-width: 0; }
.logo-main { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--main); letter-spacing: 0.02em; white-space: nowrap; }
.logo-sub { font-size: 10.5px; color: var(--text-light); letter-spacing: 0.06em; margin-top: 2px; white-space: nowrap; }

.header-right { display: flex; align-items: center; gap: 26px; }
.header-nav { display: flex; gap: 24px; }
.header-nav a { font-size: 14px; font-weight: 500; color: var(--text); }
.header-nav a:hover { color: var(--main); }
.header-divider { width: 1px; height: 22px; background: var(--border); }
.header-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 600; }
.hamburger span { width: 26px; height: 2px; background: var(--main); display: block; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(20,40,70,0.45); z-index: 400; }
.menu-overlay.active { display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  width: 260px;
  height: calc(100% - 72px);
  background: var(--white);
  z-index: 500;
  padding: 30px;
  flex-direction: column;
  gap: 22px;
  border-left: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--main); }

/* ===== Hero (flat, no gradient / no blur orbs) ===== */
.hero { background: var(--main); padding: 88px 0 76px; }
.hero-inner { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb3c4;
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  margin: 0 0 18px;
}
.hero-sub { font-size: 15px; color: #dbe6f4; margin: 0 0 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 4px; font-size: 15px; font-weight: 500; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; }

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tags span { background: rgba(255,255,255,0.14); color: var(--white); font-size: 12px; padding: 6px 12px; border-radius: 4px; }
.hero-tags span.accent { background: var(--accent); color: var(--white); font-weight: 500; }

/* ===== Page header ===== */
.page-header { background: var(--main); padding: 50px 0; text-align: center; }
.page-header .eyebrow { font-size: 12px; letter-spacing: 0.1em; color: #ffb3c4; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.page-header h1 { font-family: var(--font-heading); font-size: 28px; color: var(--white); font-weight: 600; margin: 0; }
.breadcrumb { font-size: 13px; color: #cfe0f0; margin-top: 12px; }
.breadcrumb a { color: #ffb3c4; }

/* ===== Section common ===== */
section { padding: 72px 0; }
.section-eyebrow { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-align: center; margin-bottom: 10px; font-weight: 500; }
.section-title { font-family: var(--font-heading); font-size: 26px; font-weight: 600; text-align: center; margin: 0 0 14px; color: var(--main); }
.section-desc { font-size: 14px; color: var(--text-light); text-align: center; max-width: 560px; margin: 0 auto 50px; }
.bg-alt { background: var(--bg); }

/* feature-grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.feature-item { padding: 26px 10px; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--main); }
.feature-num { font-family: var(--font-heading); font-size: 30px; font-weight: 600; color: var(--main); }
.feature-num span { font-size: 15px; margin-left: 2px; }
.feature-label { font-size: 13px; color: var(--text-light); margin-top: 6px; }

/* appeal-grid */
.appeal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.appeal-card { border: 1px solid var(--border); border-top: 3px solid var(--accent); padding: 26px 22px; background: var(--white); }
.appeal-icon { color: var(--accent); font-size: 13px; letter-spacing: 0.06em; margin-bottom: 10px; font-weight: 500; }
.appeal-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin: 0 0 10px; color: var(--main); }
.appeal-card p { font-size: 13.5px; color: var(--text-light); margin: 0; }

/* reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { border: 1px solid var(--border); padding: 24px; background: var(--white); }
.review-stars { color: var(--accent); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 13.5px; color: var(--text); margin: 0 0 14px; }
.review-name { font-size: 12.5px; color: var(--text-light); font-weight: 500; }

/* cta band */
.cta-section { background: var(--accent); padding: 56px 0; text-align: center; }
.cta-section h2 { font-family: var(--font-heading); color: var(--white); font-size: 23px; font-weight: 600; margin: 0 0 10px; }
.cta-section p { color: #fde3e9; font-size: 14px; margin: 0 0 26px; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.6); }

/* table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table, .about-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 13.5px; }
.price-table th, .price-table td, .about-table th, .about-table td { border: 1px solid var(--border); padding: 13px 16px; text-align: left; }
.price-table th { background: var(--main); color: var(--white); font-weight: 500; }
.about-table th { background: var(--bg); width: 170px; font-weight: 500; color: var(--main); }

/* service list */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.service-block:nth-child(even) .service-text { order: 2; }
.service-text .num { color: var(--accent); font-size: 14px; letter-spacing: 0.08em; font-weight: 500; }
.service-text h3 { font-family: var(--font-heading); font-size: 21px; color: var(--main); margin: 8px 0 12px; font-weight: 600; }
.service-text p { font-size: 14px; color: var(--text-light); }
.service-img { background: var(--bg); border: 1px solid var(--border); height: 200px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 13px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; }
.contact-info-card { background: var(--bg); border: 1px solid var(--border); padding: 30px; }
.contact-info-card h3 { font-family: var(--font-heading); color: var(--main); font-size: 17px; margin: 0 0 16px; font-weight: 600; }
.contact-info-card ul li { font-size: 13.5px; margin-bottom: 12px; color: var(--text); }
.contact-info-card ul li strong { display: block; font-size: 12px; color: var(--text-light); font-weight: 500; margin-bottom: 2px; }
.line-badge { display: inline-flex; align-items: center; gap: 6px; background: #06c755; color: #fff; font-size: 13px; font-weight: 500; padding: 10px 16px; margin-top: 6px; }
.contact-form label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--main); }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 4px;
  font-family: inherit; font-size: 14px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-success { background: var(--bg); border: 1px solid var(--border); padding: 30px; text-align: center; color: var(--main); font-size: 14px; }

/* footer */
footer { background: var(--main-dark); color: #cfe0f0; padding: 48px 0 24px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-logo { font-family: var(--font-heading); color: var(--white); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.footer-grid h4 { color: var(--white); font-size: 13px; margin: 0 0 14px; letter-spacing: 0.05em; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: #ffb3c4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; text-align: center; color: #8fa9c2; font-size: 12px; }

/* fade (kept minimal, no floating orbs) */
.appeal-card, .review-card, .fade-up { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.appeal-card.visible, .review-card.visible, .fade-up.visible { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 900px) {
  .header-nav, .header-divider, .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 72px; padding: 0 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .appeal-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr; }

  .about-table, .about-table tbody, .about-table tr, .about-table th, .about-table td {
    display: block; width: 100%;
  }
  .about-table th { font-size: 12px; padding: 8px 14px; border-bottom: 1px solid var(--border); }
  .about-table td { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .appeal-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 27px; }
  .hero-cta { flex-direction: column; }
}
