:root {
  --emerald: #178a68;
  --emerald-dark: #0d5c46;
  --emerald-light: #e3f5ee;
  --coral: #e8623f;
  --coral-dark: #a8421f;
  --coral-light: #fbe6df;
  --cream: #fafaf7;
  --white: #ffffff;
  --text-dark: #2c2c2a;
  --text-gray: #5f5e5a;
  --text-light: #94928a;
  --border: #e5e3da;
}

* { 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(--coral);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-title { font-size: 24px; font-weight: 500; margin-bottom: 36px; }

/* ===== Buttons ===== */
.btn-coral, .btn-ghost-emerald {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 6px;
  transition: opacity 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-coral { background: var(--coral); color: var(--white); border: 1px solid var(--coral); }
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.btn-ghost-emerald { border: 1px solid var(--border); color: var(--text-dark); }
.btn-ghost-emerald:hover { border-color: var(--emerald); color: var(--emerald); }
.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 24px; height: 76px; display: flex; align-items: center; justify-content: space-between; }
.header-logo { display: flex; flex-direction: column; line-height: 1.3; }
.logo-main { font-size: 18px; font-weight: 500; color: var(--emerald-dark); }
.logo-sub { font-size: 11px; color: var(--text-light); letter-spacing: 0.04em; }

.header-right { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.header-nav { display: flex; gap: 28px; }
.header-nav a { font-size: 14px; color: var(--text-gray); transition: color 0.2s; white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { color: var(--emerald); }
.header-divider { width: 1px; height: 18px; background: var(--border); }
.header-line-btn { background: var(--coral); color: var(--white); font-size: 13px; font-weight: 500; padding: 10px 18px; border-radius: 6px; white-space: nowrap; }

.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(--emerald-dark); 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: 860px) {
  .header-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ===== Hero ===== */
.hero { position: relative; background: var(--cream); padding: 96px 0 100px; overflow: hidden; }
.hero-circle { position: absolute; border-radius: 50%; opacity: 0; transition: opacity 1s ease 0.2s; }
.hero-circle--1 { width: 360px; height: 360px; background: var(--emerald); opacity: 0; top: -120px; right: -80px; }
.hero-circle--2 { width: 200px; height: 200px; background: var(--coral); opacity: 0; bottom: -60px; right: 220px; }
.hero-circle.visible { opacity: 0.10; }
.hero-circle--2.visible { opacity: 0.14; }

.hero-content { position: relative; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.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, .hero-title.visible, .hero-sub.visible, .hero-cta.visible, .hero-tags.visible { opacity: 1; transform: translateY(0); }
.hero-title.visible { transition-delay: 0.08s; }
.hero-sub.visible { transition-delay: 0.16s; }
.hero-cta.visible { transition-delay: 0.24s; }
.hero-tags.visible { transition-delay: 0.32s; }

.hero-eyebrow { font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: 0.08em; color: var(--coral); margin-bottom: 16px; }
.hero-title { font-size: 38px; font-weight: 500; line-height: 1.5; margin-bottom: 18px; max-width: 560px; }
.hero-title-accent { color: var(--emerald); }
.hero-sub { font-size: 15px; color: var(--text-gray); max-width: 460px; margin-bottom: 30px; }
.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: var(--emerald-dark); background: var(--emerald-light); padding: 7px 14px; border-radius: 100px; }

/* page hero (sub pages) */
.page-hero { background: var(--emerald-dark); padding: 64px 0; }
.page-hero-eyebrow { color: #9fd9c4; font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: 0.1em; margin-bottom: 10px; }
.page-hero-title { color: var(--white); font-size: 30px; font-weight: 500; }
.page-hero-rating { margin-top: 16px; display: flex; align-items: baseline; gap: 10px; }
.page-hero-rating .rating-num { font-size: 26px; font-weight: 500; color: var(--white); font-family: "Oswald", sans-serif; }
.page-hero-rating .rating-stars { color: #f3d27e; font-size: 15px; }
.page-hero-rating .rating-count { color: #9fd9c4; font-size: 13px; }

/* ===== Appeal grid ===== */
.appeal { padding: 80px 0; }
.appeal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.appeal-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 26px 22px; opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.appeal-card.visible { opacity: 1; transform: translateY(0); }
.appeal-icon { font-family: "Oswald", sans-serif; color: var(--coral); font-size: 13px; margin-bottom: 12px; }
.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; }

/* ===== Reviews ===== */
.reviews-home, .reviews-page-section { padding: 80px 0; background: var(--cream); }
.reviews-header { margin-bottom: 36px; }
.reviews-rating { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.reviews-rating .rating-num { font-size: 22px; font-weight: 500; font-family: "Oswald", sans-serif; color: var(--text-dark); }
.reviews-rating .rating-stars { color: var(--coral); font-size: 14px; }
.reviews-rating .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: translateY(0); }
.review-stars { color: var(--coral); font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.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; }

/* ===== Notice ===== */
.notice-section { padding: 64px 0; }
.notice-box { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--coral); border-radius: 0 10px 10px 0; padding: 24px 28px; font-size: 13px; color: var(--text-gray); line-height: 2; }
.notice-box strong { color: var(--text-dark); }

/* ===== Service blocks ===== */
.service-block { padding: 56px 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: 8px; }
.service-block-status { display: inline-block; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.status-active { background: var(--emerald-light); color: var(--emerald-dark); }
.status-paused { background: #f1efe8; color: var(--text-gray); }
.service-block-desc { font-size: 14px; color: var(--text-gray); max-width: 640px; margin-bottom: 24px; }
.service-block-list { font-size: 13px; color: var(--text-gray); margin-bottom: 24px; }
.service-block-list li { padding-left: 16px; position: relative; margin-bottom: 8px; }
.service-block-list li::before { content: "・"; position: absolute; left: 0; color: var(--coral); }

table.price-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 16px; }
table.price-table th, table.price-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); }
table.price-table th { color: var(--text-light); font-weight: 500; width: 60%; }
table.price-table td { color: var(--text-dark); font-weight: 500; text-align: right; }
.price-note { font-size: 12px; color: var(--text-light); margin-bottom: 24px; }

/* ===== CTA section ===== */
.cta-section { background: var(--emerald-dark); padding: 60px 0; text-align: center; }
.cta-section h2 { color: var(--white); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.cta-section p { color: #bfe3d6; font-size: 13px; margin-bottom: 26px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-ghost-emerald { border-color: rgba(255,255,255,0.4); color: var(--white); }
.cta-section .btn-ghost-emerald:hover { border-color: var(--white); }

/* ===== Contact ===== */
.contact-section { padding: 76px 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.contact-primary { background: var(--cream); border-radius: 12px; padding: 32px; text-align: center; }
.contact-primary-title { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.contact-primary-desc { font-size: 13px; color: var(--text-gray); margin-bottom: 22px; }
.info-table { width: 100%; font-size: 13px; margin-top: 24px; text-align: left; }
.info-table th { text-align: left; color: var(--text-light); font-weight: 500; padding: 10px 0; width: 90px; vertical-align: top; }
.info-table td { padding: 10px 0; color: var(--text-dark); }

.contact-form-title { font-size: 17px; 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(--emerald); }
.required { color: var(--coral); font-size: 11px; font-weight: 500; 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: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #b4b2a9; font-size: 13px; }
.footer-copy { color: #6e6d68; font-size: 11px; }

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

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero { padding: 60px 0 56px; }
  .hero-title { font-size: 28px; }
  .hero-circle--1 { width: 220px; height: 220px; }
  .hero-circle--2 { width: 140px; height: 140px; }
  .appeal-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .reviews-grid--full { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .appeal, .reviews-home, .reviews-page-section, .notice-section, .contact-section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .appeal-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 24px; }
}
