:root {
  --navy: #0f2942;
  --navy-mid: #1a3d5c;
  --navy-light: #e8f0f7;
  --orange: #e8721c;
  --orange-dark: #b85510;
  --orange-light: #fff3eb;
  --white: #ffffff;
  --cream: #fafaf7;
  --text-dark: #2c2c2a;
  --text-gray: #5f5e5a;
  --text-light: #94928a;
  --border: #e0e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow { font-family: "Oswald", sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: var(--orange); text-transform: uppercase; display: block; margin-bottom: 8px; }
.section-title { font-size: 24px; font-weight: 500; margin-bottom: 32px; }

/* ===== Buttons ===== */
.btn-orange { display: inline-block; font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: 6px; background: var(--orange); color: var(--white); border: 1px solid var(--orange); transition: background 0.2s; }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-ghost { display: inline-block; font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.4); color: var(--white); transition: border-color 0.2s; }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline { display: inline-block; font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: 6px; border: 1px solid var(--border); color: var(--text-dark); transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1080px; margin: 0 auto; padding: 0 32px; height: 88px; display: flex; align-items: center; justify-content: space-between; }
.header-logo { display: flex; flex-direction: column; line-height: 1.4; }
.logo-main { font-size: 22px; font-weight: 500; color: var(--navy); }
.logo-sub { font-size: 12px; color: var(--text-light); }
.header-right { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.header-nav { display: flex; gap: 28px; }
.header-nav a { font-size: 15px; color: var(--text-gray); transition: color 0.2s; white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { color: var(--navy); }
.header-divider { width: 1px; height: 22px; background: var(--border); }
.header-cta { background: var(--orange); color: var(--white); font-size: 15px; font-weight: 500; padding: 13px 24px; border-radius: 6px; white-space: nowrap; transition: background 0.2s; }
.header-cta:hover { background: var(--orange-dark); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); transition: 0.25s; }
.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); }
.mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100%; background: var(--white); box-shadow: -2px 0 24px rgba(0,0,0,0.08); z-index: 200; padding: 90px 32px 32px; transition: right 0.3s ease; flex-direction: column; gap: 4px; }
.mobile-menu.open { right: 0; }
.mobile-menu a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text-dark); }
.mobile-menu-tel { margin-top: 24px; }
.mobile-menu-tel p { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.mobile-menu-tel a { font-size: 19px; font-weight: 500; color: var(--navy); border: none; padding: 0; }
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(20,20,18,0.4); z-index: 150; }
.menu-overlay.open { display: block; }

@media (max-width: 900px) {
  .header-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ===== Hero ===== */
.hero { position: relative; background: var(--navy); padding: 100px 0 108px; overflow: hidden; }
.hero-bg-circle1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(232,114,28,0.08); top: -160px; right: -100px; }
.hero-bg-circle2 { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.04); bottom: -80px; right: 300px; }
.hero-content { position: relative; max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.hero-eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-tags { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hero-eyebrow.visible { opacity: 1; transform: none; }
.hero-title.visible { opacity: 1; transform: none; transition-delay: 0.08s; }
.hero-sub.visible { opacity: 1; transform: none; transition-delay: 0.16s; }
.hero-cta.visible { opacity: 1; transform: none; transition-delay: 0.24s; }
.hero-tags.visible { opacity: 1; transform: none; transition-delay: 0.32s; }
.hero-eyebrow { font-family: "Oswald", sans-serif; font-size: 14px; color: var(--orange); font-weight: 500; letter-spacing: 0.1em; margin-bottom: 14px; }
.hero-title { font-size: 46px; font-weight: 900; color: var(--white); line-height: 1.25; margin-bottom: 10px; letter-spacing: 0.01em; }
.hero-title .accent { color: var(--orange); }
.hero-title-sub { font-size: 22px; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 20px; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 500px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tag { font-size: 12px; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); }

/* page hero */
.page-hero { background: var(--navy); padding: 56px 0; }
.page-hero-eyebrow { font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 8px; }
.page-hero-title { color: var(--white); font-size: 28px; font-weight: 500; }

/* ===== appeal ===== */
.appeal { padding: 80px 0; }
.appeal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.appeal-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--navy); border-radius: 0 0 10px 10px; padding: 24px 20px; opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.appeal-card.visible { opacity: 1; transform: none; }
.appeal-icon { font-family: "Oswald", sans-serif; color: var(--orange); font-size: 13px; margin-bottom: 10px; }
.appeal-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; line-height: 1.6; }
.appeal-card p { font-size: 13px; color: var(--text-gray); line-height: 1.8; }

/* feature band */
.feature-band { background: var(--navy-light); padding: 64px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.feature-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px 16px; text-align: center; }
.feature-num { font-family: "Oswald", sans-serif; font-size: 32px; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.feature-num span { font-size: 14px; font-weight: 500; }
.feature-label { font-size: 12px; color: var(--text-gray); }

/* reviews */
.reviews-section { padding: 80px 0; background: var(--cream); }
.reviews-rating { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; margin-bottom: 32px; }
.rating-num { font-size: 22px; font-weight: 500; font-family: "Oswald", sans-serif; }
.rating-stars { color: var(--orange); font-size: 14px; }
.rating-count { font-size: 13px; color: var(--text-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reviews-grid--full { grid-template-columns: repeat(3, 1fr); }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px; opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.review-card.visible { opacity: 1; transform: none; }
.review-stars { color: var(--orange); font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--text-gray); line-height: 1.8; margin-bottom: 14px; }
.review-author { font-size: 12px; color: var(--text-light); }
.reviews-more { margin-top: 32px; text-align: center; }

/* service blocks */
.service-wrap { padding: 8px 0 64px; }
.service-block { padding: 52px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-block-title { font-size: 22px; font-weight: 500; margin-bottom: 14px; }
.service-block-desc { font-size: 14px; color: var(--text-gray); max-width: 680px; margin-bottom: 20px; line-height: 1.9; }
.service-list { font-size: 13px; color: var(--text-gray); }
.service-list li { padding-left: 16px; position: relative; margin-bottom: 8px; }
.service-list li::before { content: "・"; position: absolute; left: 0; color: var(--orange); }

/* notice box */
.notice-box { background: var(--orange-light); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; padding: 20px 24px; font-size: 13px; color: var(--text-gray); line-height: 2; margin-bottom: 24px; }
.notice-box strong { color: var(--text-dark); }

/* badge */
.badge { display: inline-block; font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 100px; margin-left: 10px; vertical-align: middle; }
.badge-navy { background: var(--navy-light); color: var(--navy); }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }

/* about */
.about-section { padding: 64px 0; }
.about-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 40px; }
.about-table th { text-align: left; background: var(--navy-light); color: var(--navy); font-weight: 500; padding: 14px 20px; border: 1px solid var(--border); width: 160px; vertical-align: top; }
.about-table td { padding: 14px 20px; border: 1px solid var(--border); color: var(--text-dark); }

/* CTA band */
.cta-section { background: var(--navy); padding: 64px 0; text-align: center; }
.cta-section h2 { color: var(--white); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* contact */
.contact-section { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-block { margin-bottom: 28px; }
.contact-info-block h3 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.contact-tel-big { font-size: 28px; font-weight: 500; color: var(--navy); }
.info-table { width: 100%; font-size: 13px; }
.info-table th { text-align: left; color: var(--text-light); font-weight: 500; padding: 8px 0; width: 90px; vertical-align: top; }
.info-table td { padding: 8px 0; color: var(--text-dark); }
.contact-form-title { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.contact-form-note { font-size: 13px; color: var(--text-gray); margin-bottom: 22px; }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; font-size: 14px; font-family: inherit; color: var(--text-dark); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy); }
.required { color: var(--orange); font-size: 11px; margin-left: 4px; }
.form-success { display: none; text-align: center; padding: 32px 0; font-size: 14px; color: var(--text-gray); }

/* footer */
.footer { background: var(--text-dark); padding: 48px 0 28px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-logo { color: var(--white); font-size: 16px; font-weight: 500; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #b4b2a9; font-size: 13px; }
.footer-copy { color: #6e6d68; font-size: 11px; }

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

/* table scroll */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero { padding: 64px 0 68px; }
  .hero-title { font-size: 32px; }
  .hero-title-sub { font-size: 18px; }
  .appeal-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .reviews-grid--full { grid-template-columns: 1fr; }
  .contact-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 tr { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
  .about-table th { background: var(--navy-light); color: var(--navy); font-size: 12px; padding: 8px 14px; border: none; border-bottom: 1px solid var(--border); width: 100%; }
  .about-table td { padding: 12px 14px; border: none; }
  .appeal, .reviews-section, .about-section, .contact-section, .feature-band { padding: 48px 0; }
}
@media (max-width: 480px) {
  .appeal-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 26px; }
}
