:root {
  --pink: #ff315c;
  --pink-dark: #eb1747;
  --pink-soft: #fff1f5;
  --pink-pale: #fff9fb;
  --mint: #10b986;
  --mint-soft: #e9fbf5;
  --orange: #ff9f18;
  --blue: #1689ef;
  --purple: #9a67da;
  --ink: #232126;
  --muted: #6f6971;
  --line: #f3d9e0;
  --white: #fff;
  --shadow: 0 14px 40px rgba(159, 76, 99, 0.09);
  --radius: 18px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow-container { width: min(940px, calc(100% - 40px)); }
.site-header { height: 76px; position: relative; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid #f8edf0; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 23px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark, .brand > i { color: var(--pink); font-size: 31px; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.main-nav a { padding: 12px 0; }
.main-nav a:hover { color: var(--pink); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--pink); font-size: 32px; cursor: pointer; }

.page-flow { display: flex; flex-direction: column; }
.hero { order: 0; overflow: hidden; border-bottom: 1px solid var(--pink-soft); }
.jobs-section { order: 1; }
.ranking-section { order: 2; }
.details-section { order: 3; }
.flow-section { order: 4; }
.tips-section { order: 5; }
.combination-section { order: 6; }
.articles-section { order: 7; }
.faq-section { order: 8; }

.hero-grid { min-height: 600px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 42px; }
.hero-copy { padding: 58px 0 62px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { color: var(--pink); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.hero h1 { margin-top: 14px; font-size: clamp(38px, 3.55vw, 50px); line-height: 1.28; letter-spacing: -.05em; }
.hero h1 em { color: var(--pink); font-style: normal; white-space: nowrap; }
.hero-lead { margin-top: 20px; font-size: 18px; font-weight: 700; }
.hero-art { align-self: stretch; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-art::before { content: ""; position: absolute; width: 510px; height: 510px; border-radius: 50%; background: #fff2f5; }
.hero-art img { width: min(455px, 100%); max-height: 540px; object-fit: contain; position: relative; z-index: 1; mix-blend-mode: multiply; }

.search-panel { margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 12px; }
.search-panel label { min-width: 0; }
.search-panel label span { display: block; margin-bottom: 7px; color: var(--pink); font-size: 12px; font-weight: 800; }
.search-panel select { width: 100%; height: 50px; padding: 0 38px 0 15px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink); font-weight: 700; outline: none; }
.search-panel select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,49,92,.12); }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 24px; border-radius: 10px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .ranking-tabs button:focus-visible, .faq-item button:focus-visible { outline: 3px solid rgba(255,49,92,.28); outline-offset: 3px; }
.button-primary { color: white; background: var(--pink); box-shadow: 0 9px 20px rgba(255,49,92,.18); }
.button-primary:hover { background: var(--pink-dark); }
.search-submit { grid-column: 1 / -1; min-height: 58px; font-size: 17px; }
.button-mint { color: var(--mint); background: white; border-color: var(--mint); }
.button-mint:hover { color: white; background: var(--mint); }
.button-outline { color: var(--pink); background: white; border-color: var(--pink); }
.trust-list { margin-top: 22px; display: flex; gap: 28px; color: #474348; font-size: 13px; font-weight: 700; }
.trust-list span { display: inline-flex; align-items: center; gap: 7px; }
.trust-list i { color: var(--mint); font-size: 20px; }

.section { padding: 104px 0; }
.soft-section { background: var(--pink-pale); }
.section-heading { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { margin-top: 10px; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.35; letter-spacing: -.04em; }
.section-heading p:last-child { margin-top: 12px; color: var(--muted); line-height: 1.8; }
.heading-left { max-width: none; text-align: left; }
.compact-heading { margin-bottom: 34px; }

.job-carousel-wrap { position: relative; }
.job-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.job-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 28px rgba(160,88,106,.07); }
.job-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.job-card-body { padding: 22px; }
.job-type { display: block; margin-bottom: 8px; font-weight: 800; }
.job-card strong { display: block; color: var(--pink); font-size: 24px; }
.job-card ul { margin: 16px 0 20px; display: grid; gap: 8px; color: #504b51; font-size: 14px; }
.job-card li::before { content: "✓"; margin-right: 8px; color: var(--mint); font-weight: 900; }
.job-card .button { width: 100%; }
.carousel-arrow { position: absolute; top: 50%; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--pink); color: white; font-size: 20px; cursor: pointer; transform: translateY(-50%); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-dots { display: none; }

.ranking-tabs { width: min(720px, 100%); margin: 0 auto 26px; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff8fa; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.ranking-tabs button { min-height: 54px; border: 0; background: transparent; color: #373337; font-weight: 800; cursor: pointer; }
.ranking-tabs button.is-active { color: white; background: var(--pink); }
.ranking-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ranking-card { position: relative; padding: 28px 24px 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.ranking-card .rank-number { display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--orange); font-size: 40px; font-weight: 800; }
.ranking-card .rank-number::before, .ranking-card .rank-number::after { content: "❧"; margin: 0 10px; color: #eeb84b; font-size: 24px; }
.rank-title { display: flex; align-items: center; gap: 10px; }
.rank-title i { color: var(--mint); font-size: 35px; }
.rank-title h3 { font-size: 23px; }
.rating { margin-top: 8px; color: var(--orange); letter-spacing: .08em; }
.rating b { margin-left: 7px; color: var(--pink); letter-spacing: 0; }
.rank-badge { position: absolute; top: 108px; right: 20px; padding: 8px 10px; color: var(--pink); background: var(--pink-soft); border-radius: 8px; font-size: 12px; font-weight: 800; }
.rank-specs { margin: 24px 0 22px; border-top: 1px solid var(--line); }
.rank-specs div { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); }
.rank-specs dt { display: flex; align-items: center; gap: 8px; color: #514c52; font-size: 13px; }
.rank-specs dt i { color: var(--mint); font-size: 21px; }
.rank-specs dd { text-align: right; font-weight: 800; }
.ranking-card .button { width: 100%; }
.rank-feature { min-height: 44px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.ranking-actions { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 17px; }
.ranking-actions .button { width: min(520px, 100%); }
.text-link { color: var(--pink); font-weight: 800; }
.extra-ranking { margin-top: 38px; display: grid; gap: 14px; }
.extra-rank-row { padding: 18px 22px; display: grid; grid-template-columns: 52px 1fr auto auto; align-items: center; gap: 22px; background: white; border: 1px solid var(--line); border-radius: 13px; }
.extra-rank-row b:first-child { color: var(--pink); font-size: 26px; }
.extra-rank-row .button { min-height: 44px; padding: 8px 18px; }

.service-detail-list { display: grid; gap: 48px; }
.service-detail { position: relative; display: grid; grid-template-columns: 220px 1fr 1.25fr; gap: 28px; padding: 32px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.service-rank { position: absolute; top: 24px; left: 28px; color: var(--pink); font-size: 38px; font-weight: 800; }
.service-summary { padding-top: 52px; }
.service-title-row { display: flex; align-items: center; gap: 12px; }
.service-title-row h3 { font-size: 22px; }
.service-symbol { color: var(--mint); font-size: 34px; }
.accent-blue .service-symbol { color: var(--blue); }
.accent-purple .service-symbol { color: var(--purple); }
.accent-coral .service-symbol, .heart { color: var(--pink); }
.service-image { width: 176px; aspect-ratio: 1; margin-top: 18px; border-radius: 13px; object-fit: cover; }
.service-specs { align-self: center; border-top: 1px solid var(--line); }
.service-specs div { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); }
.service-specs dt { color: var(--muted); font-size: 13px; }
.service-specs dd { text-align: right; font-weight: 800; }
.service-points { align-self: center; }
.service-points h4 { margin-bottom: 15px; padding: 10px 14px; color: white; background: #b697a3; border-radius: 8px; }
.service-points ul { display: grid; gap: 10px; margin-bottom: 22px; }
.service-points li { font-size: 14px; line-height: 1.55; }
.service-points li::before { content: "✓"; margin-right: 9px; color: var(--pink); font-weight: 900; }
.service-points .button { width: 100%; }

.flow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.flow-list article { min-height: 220px; padding: 34px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; background: white; border: 1px solid var(--line); border-radius: var(--radius); position: relative; }
.flow-list article > i { margin: 10px 0 18px; color: var(--mint); font-size: 48px; }
.flow-list h3 { font-size: 21px; }
.flow-list p { margin-top: 10px; color: var(--muted); line-height: 1.75; font-size: 14px; }
.step-number { position: absolute; top: 20px; left: 22px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); font-weight: 800; }

.tips-card { padding: 18px 34px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.tips-card article { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 23px 0; border-bottom: 1px solid #f1e8eb; }
.tips-card article:last-child { border-bottom: 0; }
.tips-card article > i { color: var(--mint); font-size: 24px; }
.tips-card h3 { font-size: 17px; }
.tips-card p { margin-top: 7px; color: var(--muted); line-height: 1.7; font-size: 14px; }

.combination-section { background: #fffafb; }
.combination-grid { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; }
.combination-card { padding: 34px; display: grid; grid-template-columns: 100px 1fr; gap: 24px; align-items: start; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.combination-card > div { min-width: 0; }
.combination-card h3 { font-size: 24px; }
.combination-logo { width: 92px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; font-size: 48px; }
.combination-logo.pink { color: var(--pink); }
.combination-logo.mint { color: var(--mint); }
.combination-card dl { margin-top: 13px; display: grid; gap: 8px; }
.combination-card dl div { display: flex; justify-content: space-between; }
.combination-card dt { color: var(--muted); }
.combination-card dd { font-weight: 800; }
.combination-card p { margin-top: 22px; color: var(--muted); line-height: 1.75; font-size: 14px; }
.combination-card > .button { grid-column: 1 / -1; width: 100%; margin-top: 0; }
.plus-mark { width: 58px; height: 58px; display: grid; place-items: center; justify-self: center; color: white; background: var(--pink); border-radius: 50%; font-size: 28px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { min-height: 150px; display: grid; grid-template-columns: 116px 1fr 20px; gap: 18px; align-items: center; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 15px; transition: box-shadow .18s ease, transform .18s ease; }
.article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.article-card img { width: 116px; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.article-card span { color: var(--pink); font-size: 12px; font-weight: 800; }
.article-card h3 { margin-top: 8px; font-size: 15px; line-height: 1.55; }
.article-card > i { color: var(--pink); }
.articles-more { width: min(520px, 100%); margin: 36px auto 0; }

.faq-section { padding-bottom: 140px; background: #fffdfd; }
.faq-list { display: grid; gap: 18px; }
.faq-item { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 15px; }
.faq-item button { width: 100%; min-height: 76px; display: grid; grid-template-columns: 42px 1fr 24px; gap: 16px; align-items: center; padding: 15px 24px; border: 0; background: white; text-align: left; color: var(--ink); font-weight: 800; cursor: pointer; }
.q-mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); font-size: 18px; }
.faq-item button > i { color: var(--pink); transition: transform .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0 24px 0 82px; color: var(--muted); line-height: 1.8; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 0 28px; }
.faq-item.is-open button > i { transform: rotate(180deg); }

.site-footer { padding: 54px 0; color: white; background: #403a4e; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.footer-brand i { color: white; }
.footer-inner nav { display: flex; gap: 30px; font-size: 13px; }
.footer-inner small { grid-column: 1 / -1; text-align: center; color: #d8d3df; }

.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--pink); font-size: 14px; font-weight: 800; }
.subpage-main { min-height: 70vh; background: #fffdfd; }
.subpage-hero { padding: 72px 0; text-align: center; background: var(--pink-pale); border-bottom: 1px solid var(--line); }
.subpage-hero h1 { margin-top: 12px; font-size: clamp(30px, 4vw, 46px); }
.subpage-hero > .container > p:last-child { margin-top: 14px; color: var(--muted); }
.condition-summary { margin: 30px auto 18px; display: flex; justify-content: center; gap: 12px; }
.condition-summary span { min-width: 150px; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; background: white; border: 1px solid var(--line); border-radius: 10px; font-weight: 800; }
.condition-summary i { color: var(--pink); font-size: 20px; }
.result-toolbar { margin-bottom: 28px; display: flex; justify-content: space-between; align-items: end; }
.result-toolbar > div { display: grid; gap: 4px; }
.result-toolbar strong { color: var(--pink); font-size: 28px; }
.result-toolbar label { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; font-weight: 800; }
.result-toolbar select { min-width: 180px; height: 48px; padding: 0 14px; background: white; border: 1px solid var(--line); border-radius: 9px; }
.result-list, .all-ranking-list { display: grid; gap: 24px; }
.result-card { display: grid; grid-template-columns: 60px 150px minmax(0, 1fr) 190px; gap: 28px; align-items: center; padding: 26px 28px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.result-rank { color: var(--pink); font-size: 38px; font-weight: 800; text-align: center; }
.result-card > img { width: 150px; aspect-ratio: 1; object-fit: cover; border-radius: 13px; }
.result-copy h2 { font-size: 23px; }
.result-copy ul { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; }
.result-copy li { color: var(--muted); }
.result-copy li strong { margin-left: 5px; color: var(--ink); }
.result-copy p { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.subpage-tabs { margin-bottom: 42px; }

@media (max-width: 767px) {
  .container, .narrow-container { width: calc(100% - 32px); }
  .site-header { height: 68px; }
  .brand { font-size: 20px; }
  .brand-mark, .brand > i { font-size: 28px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 22px 16px; flex-direction: column; gap: 0; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 15px 8px; border-bottom: 1px solid #f6ebee; }
  .hero-grid { min-height: auto; display: block; position: relative; }
  .hero-copy { min-height: 660px; padding: 66px 0 42px; }
  .eyebrow { display: none; }
  .hero h1 { width: 60%; margin: 0; font-size: 25px; line-height: 1.55; }
  .hero h1 em { display: inline; }
  .hero-lead { width: 59%; margin-top: 18px; font-size: 14px; line-height: 1.8; }
  .hero-art { position: absolute; top: 42px; left: 168px; right: auto; width: 330px; height: 430px; align-items: start; justify-content: flex-start; }
  .hero-art::before { width: 292px; height: 292px; top: 64px; left: 12px; }
  .hero-art img { width: 330px; max-width: none; max-height: 410px; }
  .search-panel { position: absolute; left: 0; right: 0; bottom: 90px; margin: 0; grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .search-panel label span { font-size: 10px; }
  .search-panel select { height: 48px; padding: 0 8px; font-size: 12px; border-radius: 9px; }
  .search-submit { min-height: 60px; margin-top: 9px; font-size: 16px; }
  .trust-list { position: absolute; left: 0; right: 0; bottom: 28px; justify-content: space-between; gap: 6px; font-size: 10px; }
  .trust-list i { font-size: 17px; }
  .jobs-section { order: 2; }
  .ranking-section { order: 1; }
  .section { padding: 116px 0; }
  .ranking-section { padding-top: 78px; padding-bottom: 112px; }
  .jobs-section { padding-top: 104px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2 { font-size: 25px; }
  .section-heading p:last-child { font-size: 13px; }
  .heading-left { text-align: center; }
  .ranking-tabs { margin-bottom: 28px; }
  .ranking-tabs button { min-height: 52px; font-size: 14px; }
  .ranking-comparison { display: grid; grid-template-columns: 1fr; gap: 26px; }
  .ranking-card { padding: 29px 25px 26px; }
  .ranking-card .rank-number { font-size: 38px; }
  .rank-title h3 { font-size: 22px; }
  .rank-badge { top: 103px; right: 18px; }
  .rank-feature { min-height: 0; }
  .ranking-actions { margin-top: 28px; gap: 20px; }
  .extra-rank-row { grid-template-columns: 42px 1fr; gap: 8px 14px; padding: 20px; }
  .extra-rank-row span { font-size: 12px; }
  .extra-rank-row .button { grid-column: 1 / -1; width: 100%; }
  .job-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .job-carousel::-webkit-scrollbar { display: none; }
  .job-card { flex: 0 0 100%; scroll-snap-align: start; }
  .job-card-body { padding: 22px; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-arrow.prev { left: -8px; }
  .carousel-arrow.next { right: -8px; }
  .carousel-dots { margin-top: 22px; display: flex; justify-content: center; gap: 8px; }
  .carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: #eadde1; }
  .carousel-dots span.is-active { background: var(--pink); }
  .details-section { padding-top: 128px; }
  .service-detail-list { gap: 72px; }
  .service-detail { display: grid; grid-template-columns: 132px 1fr; gap: 20px 18px; padding: 30px 24px 26px; }
  .service-rank { top: 22px; left: 24px; font-size: 34px; }
  .service-summary { display: contents; padding-top: 0; }
  .service-title-row { grid-column: 1 / -1; min-height: 46px; padding-left: 42px; align-items: center; }
  .service-title-row h3 { font-size: 19px; }
  .service-symbol { font-size: 28px; }
  .service-image { grid-column: 1; grid-row: 2; width: 128px; margin-top: 0; }
  .service-specs { grid-column: 2; grid-row: 2; align-self: stretch; border-top: 0; }
  .service-specs div { min-height: 47px; }
  .service-specs dt, .service-specs dd { font-size: 11px; }
  .service-points { grid-column: 1 / -1; padding-top: 2px; }
  .service-points h4 { margin-top: 4px; }
  .service-points li { font-size: 13px; }
  .flow-list { grid-template-columns: 1fr; gap: 24px; }
  .flow-list article { min-height: 150px; display: grid; grid-template-columns: 44px 66px 1fr; align-items: center; text-align: left; padding: 28px 22px; }
  .flow-list article > i { margin: 0; font-size: 44px; }
  .step-number { position: static; }
  .flow-list p { font-size: 13px; }
  .tips-card { padding: 12px 24px; }
  .tips-card article { padding: 27px 0; }
  .tips-card h3 { font-size: 15px; }
  .tips-card p { font-size: 12px; }
  .combination-grid { grid-template-columns: 1fr; gap: 34px; }
  .combination-card { grid-template-columns: 84px 1fr; gap: 20px; padding: 30px 24px; }
  .combination-logo { width: 84px; font-size: 42px; }
  .combination-card h3 { font-size: 21px; }
  .combination-card dl { font-size: 13px; }
  .plus-mark { width: 54px; height: 54px; }
  .article-grid { grid-template-columns: 1fr; gap: 22px; }
  .article-card { min-height: 132px; grid-template-columns: 104px 1fr 18px; gap: 16px; padding: 14px; }
  .article-card img { width: 104px; }
  .article-card h3 { font-size: 14px; }
  .articles-more { margin-top: 32px; }
  .faq-section { padding-top: 138px; padding-bottom: 170px; }
  .faq-list { gap: 24px; }
  .faq-item button { min-height: 88px; grid-template-columns: 38px 1fr 20px; gap: 13px; padding: 21px 18px; font-size: 14px; line-height: 1.55; }
  .q-mark { width: 34px; height: 34px; }
  .faq-answer p { margin-left: 69px; padding-right: 18px; font-size: 13px; }
  .faq-item.is-open .faq-answer p { padding-bottom: 28px; }
  .site-footer { padding: 64px 0; color: var(--ink); background: var(--pink-soft); }
  .footer-inner { display: flex; flex-direction: column; gap: 34px; }
  .footer-inner nav { width: 100%; flex-direction: column; align-items: center; gap: 24px; }
  .footer-inner small { color: var(--muted); text-align: center; }
  .back-link { font-size: 12px; }
  .subpage-hero { padding: 64px 0 72px; }
  .subpage-hero h1 { font-size: 26px; line-height: 1.45; }
  .condition-summary { flex-direction: column; gap: 10px; }
  .condition-summary span { width: 100%; }
  .result-section { padding-top: 86px; }
  .result-toolbar { align-items: stretch; flex-direction: column; gap: 20px; }
  .result-toolbar label { justify-content: space-between; }
  .result-toolbar select { flex: 1; min-width: 0; }
  .result-card { grid-template-columns: 44px 108px 1fr; gap: 16px; padding: 22px 18px; }
  .result-rank { font-size: 32px; }
  .result-card > img { width: 108px; }
  .result-copy h2 { font-size: 18px; }
  .result-copy ul { display: grid; gap: 5px; font-size: 11px; }
  .result-copy p { display: none; }
  .result-card > .button { grid-column: 1 / -1; width: 100%; }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .service-detail { grid-template-columns: 190px 1fr; }
  .service-points { grid-column: 1 / -1; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
