  :root {
    --rose: #c0566a;
    --rose-light: #e8899a;
    --rose-pale: #fdf0f2;
    --rose-mid: #f5d0d6;
    --charcoal: #2c2c2c;
    --charcoal-soft: #4a4a4a;
    --warm-white: #fefcfb;
    --gold: #b89a6a;
    --gold-light: #e8d8bc;
    --section-bg: #faf8f6;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.8;
    font-size: 15px;
  }

  /* ───── HERO ───── */
  .hero {
    background: linear-gradient(135deg, #8b2a3d 0%, #c0566a 45%, #d4788a 100%);
    color: white;
    padding: 70px 24px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .hero-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
    font-family: 'Noto Serif JP', serif;
  }
  .hero h1:not(.header_logo) {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    background:none;
    text-align: inherit;
    padding: 0;
  }
  .hero h1:not(.header_logo) span {
    display: block;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
    opacity: 0.88;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }
  .hero-sub {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 18px;
    max-width: 520px;
  }

  /* ───── WORRY CHIPS ───── */
  .worry-section {
    background: var(--rose-pale);
    border-top: 3px solid var(--rose-mid);
    padding: 40px 24px;
  }
  .worry-section h2 {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    color: var(--rose);
    margin-bottom: 22px;
    letter-spacing: 0.08em;
    font-weight: bold;
  }
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
  }
  .chip {
    background: white;
    border: 1.5px solid var(--rose-light);
    border-radius: 30px;
    padding: 9px 20px;
    font-size: 13.5px;
    color: var(--charcoal-soft);
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 6px rgba(192,86,106,0.08);
  }
  .chip::before { content: '✦'; color: var(--rose-light); font-size: 10px; }

  /* ───── SECTION COMMON ───── */
  .section {
    padding: 64px 24px;
    max-width: 860px;
    margin: 0 auto;
  }
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 3.5vw, 26px);
    color: var(--rose);
    border-left: 4px solid var(--rose);
    padding-left: 16px;
    margin-bottom: 36px;
    line-height: 1.4;
  }
  .section-title small {
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
  }

  /* ───── SERVICE CARDS ───── */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  .service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
    border-top: 4px solid var(--rose);
    padding: 28px 24px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  }
  .service-card .icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .service-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16.5px;
    color: var(--rose);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .service-card p {
    font-size: 13.5px;
    color: var(--charcoal-soft);
    line-height: 1.85;
  }
  .service-card .tag {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 2px;
    margin-top: 12px;
    letter-spacing: 0.05em;
  }

  /* ───── SUB SERVICES ───── */
  .sub-services {
    background: var(--section-bg);
    padding: 40px 24px;
    border-radius: 8px;
    margin-top: 0;
  }
  .sub-services h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold-light);
  }
  .sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  .sub-item {
    background: white;
    border-radius: 6px;
    padding: 18px 18px 16px;
    border-left: 3px solid var(--gold);
  }
  .sub-item h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 8px;
  }
  .sub-item p {
    font-size: 12.5px;
    color: var(--charcoal-soft);
    line-height: 1.75;
  }

  /* ───── FEATURES ───── */
  .features-bg {
    background: linear-gradient(180deg, var(--rose-pale) 0%, white 100%);
    padding: 64px 24px;
  }
  .features-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
  }
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border-radius: 8px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .feature-check {
    width: 32px;
    height: 32px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .feature-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 15.5px;
    margin-bottom: 6px;
    line-height: 1.5;
  }
  .feature-item h3 strong {
    color: var(--rose);
  }
  .feature-item p {
    font-size: 13.5px;
    color: var(--charcoal-soft);
    line-height: 1.8;
  }

  /* ───── ATTORNEY MESSAGE ───── */
  .attorney-section {
    background: var(--charcoal);
    color: white;
    padding: 64px 24px;
  }
  .attorney-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }
  @media (max-width: 600px) {
    .attorney-inner { grid-template-columns: 1fr; }
    .attorney-photo { text-align: center; }
  }
  .attorney-photo .photo-box {
    width: 140px;
    height: 170px;
    background: linear-gradient(135deg, #444 0%, #333 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 2px solid rgba(255,255,255,0.1);
    margin: 0 auto;
  }
  .attorney-photo p {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
  }
  .attorney-content .section-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .attorney-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    margin-bottom: 24px;
    line-height: 1.5;
    color: white;
  }
  .attorney-content blockquote {
    font-size: 14px;
    line-height: 1.95;
    opacity: 0.85;
    border-left: 3px solid var(--rose-light);
    padding-left: 18px;
    font-style: normal;
  }
  .attorney-content blockquote + blockquote {
    margin-top: 16px;
  }

  /* ───── REVIEWS ───── */
  .reviews-section {
    padding: 64px 24px;
    max-width: 860px;
    margin: 0 auto;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 8px;
  }
  .review-card {
    background: white;
    border-radius: 8px;
    padding: 24px 22px 20px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    border-top: 3px solid var(--rose-mid);
    position: relative;
  }
  .review-card::before {
    content: '❝';
    font-size: 36px;
    color: var(--rose-mid);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    font-family: serif;
  }
  .review-stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .review-card p {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--charcoal-soft);
  }
  .review-author {
    margin-top: 14px;
    font-size: 12px;
    color: #999;
    text-align: right;
  }

  /* ───── CTA ───── */
  .cta-section {
    background: linear-gradient(135deg, var(--rose) 0%, #8b2a3d 100%);
    color: white;
    padding: 60px 24px;
    text-align: center;
  }
  .cta-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 3.5vw, 28px);
    margin-bottom: 10px;
    line-height: 1.5;
    color:white;
  }
  .cta-section p {
    font-size: 14px;
    opacity: 0.88;
    margin-bottom: 32px;
  }
  .cta-free {
    display: inline-block;
    background: var(--gold);
    color: white;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 2px;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    font-weight: 700;
  }
  .cta-tel {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(30px, 6vw, 46px);
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 10px;
  }
  .cta-hours {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 28px;
  }
  .cta-address {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.8;
  }

  /* ───── DIVIDER ───── */
  .divider {
    width: 48px;
    height: 3px;
    background: var(--rose);
    margin: 0 auto 32px;
    border-radius: 2px;
  }

  /* ───── FAQ ───── */
  .faq-section {
    background: var(--charcoal);
    padding: 64px 24px;
  }
  .faq-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .faq-section .section-title {
    color: white;
    border-left-color: var(--rose-light);
  }
  .faq-section .section-title small {
    color: var(--gold);
  }
  .faq-lead {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 680px;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
  }
  .faq-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 22px 22px 20px;
  }
  .faq-q {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    color: var(--rose-light);
    margin-bottom: 12px;
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
  }
  .faq-q::before {
    content: 'Q';
    position: absolute;
    left: 0; top: 0;
    font-weight: 700;
    color: var(--rose-light);
    font-size: 13px;
  }
  .faq-a {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    padding-left: 22px;
    position: relative;
  }
  .faq-a::before {
    content: 'A';
    position: absolute;
    left: 0; top: 0;
    font-weight: 700;
    color: var(--gold);
    font-size: 13px;
  }
  .faq-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
  }

  /* ───── SCROLL ANIMATION ───── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }

body main section {
    margin-bottom: 0 !important;
}

body h2::after {
    content: none !important;
    display: none !important; /* 念のため領域も消す */
}