.dun-root {
  --lav-bg: #f7f3fc;
  --lav-bg2: #f1eafb;
  --white: #ffffff;
  --ink: #3c3458;
  --ink-soft: #756d92;
  --ink-faint: #9a93b4;
  --purple: #6a4ea3;
  --purple-deep: #4f3a7e;
  --purple-light: #a98fd6;
  --gold: #bf9a4e;
  --gold-2: #d8b877;
  --coral: #cf5a6b;
  --line: #e9e1f5;
  --line-soft: #f0eaf8;
  --card-sh: 0 12px 34px rgba(96,62,156,.09);
  --card-sh-h: 0 20px 48px rgba(96,62,156,.16);
  --grad-purple: linear-gradient(135deg, #8c6cc6 0%, #5f4496 100%);
  --grad-purple-deep: linear-gradient(135deg, #6f51a8 0%, #4a3479 100%);
  --grad-gold: linear-gradient(135deg, #e0c074 0%, #bd9343 100%);
  --rad: 16px;
  --rad-lg: 22px;
  --maxw: 1160px;
  --serif: "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --num: "Jost", sans-serif;
}
.dun-root, .dun-root * { box-sizing: border-box; }
.dun-root { scroll-behavior: smooth; }
.dun-root {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--lav-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
.dun-root a { color: inherit; text-decoration: none; }
.dun-root img { max-width: 100%; display: block; }
.dun-root ::selection { background: var(--purple-light); color: #fff; }
.dun-root .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.dun-root .gold { color: var(--gold); }
.dun-root .sp { color: var(--gold-2); font-size: .8em; vertical-align: middle; }
.dun-root .site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.dun-root .site-header .container {
  display: flex; align-items: center; gap: 28px;
  height: 70px;
}
.dun-root .brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.dun-root .brand .logo {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fff 0%, #efe6fb 50%, #d9c6f2 100%);
  display: grid; place-items: center; color: var(--purple);
  box-shadow: 0 4px 14px rgba(150,110,210,.28), inset -4px -4px 10px rgba(190,165,225,.5);
  font-size: 18px;
}
.dun-root .brand b { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: .02em; color: var(--ink); }
.dun-root .gnav { display: flex; gap: 22px; margin-left: 14px; }
.dun-root .gnav a { font-size: 13.5px; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .2s; white-space: nowrap; }
.dun-root .gnav a:hover { color: var(--purple); }
.dun-root .gnav a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--gold-2); transition: width .25s; }
.dun-root .gnav a:hover::after { width: 100%; }
.dun-root .header-cta {
  margin-left: auto; flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-gold); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(190,150,70,.32);
  transition: transform .15s, box-shadow .2s;
}
.dun-root .header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(190,150,70,.42); }
.dun-root .nav-toggle { display: none; }
.dun-root .hero {
  position: relative; overflow: hidden;
  padding: 60px 0 76px;
  background:
    radial-gradient(58% 50% at 16% 22%, rgba(214,196,244,.7) 0%, transparent 60%),
    radial-gradient(50% 46% at 86% 14%, rgba(228,212,248,.7) 0%, transparent 60%),
    radial-gradient(70% 60% at 50% 120%, rgba(206,186,240,.5) 0%, transparent 60%),
    linear-gradient(180deg, #efe6fb 0%, #f4eefb 48%, var(--lav-bg) 100%);
}
.dun-root .hero-moon {
  position: absolute; left: 6%; top: 60px; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #fff 0%, #f3ecfd 48%, #ddccf4 100%);
  box-shadow: 0 0 70px rgba(200,170,240,.7), inset -14px -12px 30px rgba(190,165,225,.55);
  z-index: 1;
}
.dun-root .hero-stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dun-root .hero-stars i {
  position: absolute; color: #fff; font-size: 12px; opacity: .85;
  text-shadow: 0 0 8px rgba(255,255,255,.9);
  animation: tw 3.6s ease-in-out infinite;
}
@keyframes tw { 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1.15)} }
@media (prefers-reduced-motion: reduce) {
.dun-root .hero-stars i { animation:none }
}
.dun-root .hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 460px; gap: 44px; align-items: center;
}
.dun-root .hero-copy { padding-top: 8px; }
.dun-root .hero h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: 46px; line-height: 1.42; letter-spacing: .02em;
  margin: 0 0 22px; color: #443663;
}
.dun-root .hero h1 .em { color: var(--purple); }
.dun-root .hero-lead { font-size: 16px; color: var(--ink-soft); margin: 0 0 30px; font-weight: 500; }
.dun-root .badges { display: flex; gap: 14px; flex-wrap: wrap; }
.dun-root .badge {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px; padding: 12px 16px; box-shadow: 0 8px 22px rgba(120,90,170,.08);
}
.dun-root .badge .bi {
  width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto;
  background: linear-gradient(140deg,#f3ebfd,#e7d9f8); color: var(--purple);
  display: grid; place-items: center;
}
.dun-root .badge .bt { line-height: 1.35; }
.dun-root .badge .bt small { display: block; font-size: 10.5px; color: var(--ink-faint); white-space: nowrap; }
.dun-root .badge .bt b { font-size: 14px; color: var(--ink); font-weight: 700; white-space: nowrap; }
.dun-root .hero-vignette {
  position: absolute; left: -10px; bottom: 8px; width: 250px; height: 250px; z-index: 1;
  pointer-events: none; opacity: .92;
}
.dun-root .search-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--rad-lg);
  box-shadow: 0 24px 60px rgba(96,62,156,.18);
  padding: 26px 26px 24px;
  position: relative; z-index: 3;
}
.dun-root .search-card h2 {
  text-align: center; font-family: var(--serif); font-weight: 600;
  font-size: 17px; color: var(--purple-deep); margin: 2px 0 20px; letter-spacing: .03em;
}
.dun-root .search-card h2 .sp { margin: 0 8px; }
.dun-root .sf-row { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 12px; margin-bottom: 13px; }
.dun-root .sf-row > label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.dun-root .sf-control { position: relative; }
.dun-root .sf-control select, .dun-root .sf-text {
  width: 100%; appearance: none; -webkit-appearance: none;
  font-family: var(--sans); font-size: 13.5px; color: var(--ink);
  background: #faf8fd; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 38px 11px 14px; cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.dun-root .sf-control select:focus { outline: none; border-color: var(--purple-light); box-shadow: 0 0 0 3px rgba(169,143,214,.18); }
.dun-root .sf-control::after {
  content: "▾"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-faint); pointer-events: none; font-size: 12px;
}
.dun-root .sf-check { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); cursor: pointer; user-select: none; }
.dun-root .sf-check input { width: 17px; height: 17px; accent-color: var(--purple); cursor: pointer; }
.dun-root .sf-submit {
  width: 100%; margin-top: 10px; border: none; cursor: pointer;
  background: var(--grad-purple-deep); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px;
  padding: 15px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 12px 28px rgba(79,57,126,.34); transition: transform .15s, box-shadow .2s, filter .2s;
}
.dun-root .sf-submit:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 16px 34px rgba(79,57,126,.44); }
.dun-root .section { padding: 62px 0; }
.dun-root .section.alt { background: linear-gradient(180deg, #fbf9fe, var(--lav-bg2)); }
.dun-root .sec-head { text-align: center; margin-bottom: 38px; }
.dun-root .sec-title {
  font-family: var(--serif); font-weight: 600; color: var(--purple-deep);
  font-size: 28px; letter-spacing: .04em; margin: 0; display: inline-flex; align-items: center; gap: 16px;
}
.dun-root .sec-title .sp { font-size: 18px; color: var(--gold-2); }
.dun-root .sec-sub { font-size: 14px; color: var(--ink-soft); margin: 10px 0 0; }
.dun-root .rank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dun-root .rank-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--rad-lg); padding: 26px 22px 22px; box-shadow: var(--card-sh);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.dun-root .rank-card:hover { transform: translateY(-4px); box-shadow: var(--card-sh-h); }
.dun-root .rank-card.is-1 { border-color: #e7cf91; box-shadow: 0 16px 40px rgba(190,150,70,.16); }
.dun-root .medal {
  position: absolute; top: -16px; left: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--num); font-weight: 600; font-size: 13px; line-height: 1;
  box-shadow: 0 6px 16px rgba(120,90,40,.3); text-align: center;
}
.dun-root .medal small { display:block; font-size: 8px; font-family: var(--sans); margin-top: 1px; letter-spacing: .04em; }
.dun-root .medal.m1 { background: linear-gradient(145deg,#f3d378,#c9a23d); }
.dun-root .medal.m2 { background: linear-gradient(145deg,#dfe1ea,#aeb1c0); color:#54576a; }
.dun-root .medal.m3 { background: linear-gradient(145deg,#e6b485,#bf7f4c); }
.dun-root .rank-top { display: flex; gap: 16px; align-items: center; margin: 8px 0 16px; }
.dun-root .svc-logo {
  width: 84px; height: 84px; border-radius: 16px; flex: 0 0 auto;
  display: grid; place-items: center; text-align: center; color: #fff;
  font-family: var(--num); font-weight: 600; letter-spacing: .06em; line-height: 1.1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.dun-root .svc-logo span { font-size: 9px; letter-spacing: .12em; opacity: .85; font-family: var(--sans); margin-top: 3px; }
.dun-root .svc-logo.l-lumina { background: linear-gradient(150deg,#3b3566,#262145); }
.dun-root .svc-logo.l-stella { background: linear-gradient(150deg,#7a6bb6,#4f4488); }
.dun-root .svc-logo.l-kagetsu { background: linear-gradient(150deg,#e2a7b8,#c06f88); }
.dun-root .rank-name { font-family: var(--serif); font-weight: 700; font-size: 19px; margin: 0 0 6px; color: var(--ink); }
.dun-root .stars { font-family: Arial, sans-serif; position: relative; display: inline-block; font-size: 15px; letter-spacing: 1.5px; line-height: 1; }
.dun-root .stars .s-bg { color: #e6dcf3; }
.dun-root .stars .s-fg { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: #e9b53d; }
.dun-root .rate-line { display: flex; align-items: baseline; gap: 7px; }
.dun-root .rate-num { font-family: var(--num); font-weight: 600; font-size: 16px; color: var(--ink); }
.dun-root .rate-rev { font-size: 11.5px; color: var(--ink-faint); }
.dun-root .rank-meta { display: flex; gap: 8px; margin: 14px 0; }
.dun-root .rmeta { flex: 1; background: var(--lav-bg); border: 1px solid var(--line-soft); border-radius: 10px; padding: 8px 10px; text-align: center; }
.dun-root .rmeta dt { font-size: 10px; color: var(--ink-faint); margin: 0 0 2px; }
.dun-root .rmeta dd { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.dun-root .rmeta dd.bonus { color: var(--coral); font-size: 12.5px; }
.dun-root .rank-desc { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.7; }
.dun-root .rank-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--purple-light); color: var(--purple);
  border-radius: 12px; padding: 12px; font-weight: 700; font-size: 14px;
  transition: background .2s, color .2s; cursor: pointer;
}
.dun-root .rank-card.is-1 .rank-btn { background: var(--grad-purple); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(120,80,180,.28); }
.dun-root .rank-btn:hover { background: var(--purple); color: #fff; border-color: transparent; }
.dun-root .rank-note { text-align: right; font-size: 11.5px; color: var(--ink-faint); margin: 14px 4px 0; }
.dun-root .compare-wrap { border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--card-sh); border: 1px solid var(--line); background: #fff; }
.dun-root table.compare { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.dun-root table.compare thead th {
  background: var(--grad-purple-deep); color: #fff; font-weight: 600;
  padding: 15px 16px; text-align: left; letter-spacing: .03em; font-size: 13px; white-space: nowrap;
}
.dun-root table.compare tbody td { padding: 15px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.dun-root table.compare tbody tr:nth-child(even) { background: #faf8fd; }
.dun-root table.compare tbody tr:hover { background: #f4eefb; }
.dun-root table.compare tbody tr:last-child td { border-bottom: none; }
.dun-root .t-name { font-weight: 700; color: var(--purple-deep); font-family: var(--serif); white-space: nowrap; }
.dun-root .t-price { font-family: var(--num); font-weight: 600; font-size: 15px; }
.dun-root .t-bonus { color: var(--coral); font-weight: 700; background: #fcf0f2; border-radius: 6px; padding: 3px 9px; font-size: 12px; display: inline-block; white-space: nowrap; }
.dun-root .t-rate { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.dun-root .t-rate .rate-num { font-size: 14px; }
.dun-root .t-rate .rate-rev { font-size: 11px; }
.dun-root .compare-empty td { text-align: center; color: var(--ink-faint); padding: 40px; }
.dun-root .filter-flash {
  display: none; margin: 0 0 18px; padding: 12px 18px; border-radius: 12px;
  background: #f3ecfb; border: 1px solid var(--line); color: var(--purple-deep); font-size: 13.5px; font-weight: 600;
}
.dun-root .filter-flash.on { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dun-root .filter-flash a { color: var(--purple); text-decoration: underline; cursor: pointer; font-weight: 600; }
.dun-root .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dun-root .review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--rad); padding: 22px; box-shadow: var(--card-sh); position: relative; }
.dun-root .review-card::before { content: "”"; position: absolute; right: 18px; bottom: 6px; font-family: var(--serif); font-size: 60px; color: #efe7f9; line-height: 1; }
.dun-root .rv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.dun-root .rv-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(150deg,#efe5fb,#dcc9f3); color: var(--purple);
  display: grid; place-items: center; font-weight: 700; font-size: 16px; font-family: var(--serif);
}
.dun-root .rv-who b { font-size: 14px; color: var(--ink); }
.dun-root .rv-who small { display: block; font-size: 11.5px; color: var(--ink-faint); }
.dun-root .rv-rate { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.dun-root .rv-text { font-size: 13px; color: var(--ink-soft); margin: 0; position: relative; z-index: 1; }
.dun-root .reviews-more { text-align: center; margin-top: 22px; }
.dun-root .reviews-more a { color: var(--purple); font-size: 13.5px; font-weight: 600; border-bottom: 1px solid var(--purple-light); padding-bottom: 2px; }
.dun-root .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.dun-root .guide-card { background: #fff; border: 1px solid var(--line); border-radius: var(--rad); padding: 26px 24px; box-shadow: var(--card-sh); position: relative; }
.dun-root .guide-ico {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 14px;
  background: radial-gradient(circle at 38% 32%, #fbf6ff, #efe2fb);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.6);
}
.dun-root .guide-step { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.dun-root .guide-step .n { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-purple); color: #fff; font-family: var(--num); font-size: 12px; font-weight: 600; display: grid; place-items: center; }
.dun-root .guide-step b { font-family: var(--serif); font-size: 17px; color: var(--purple-deep); }
.dun-root .guide-card p { font-size: 13px; color: var(--ink-soft); margin: 0; }
.dun-root .guide-arrow { position: absolute; top: 56px; color: var(--purple-light); font-size: 22px; z-index: 2; }
.dun-root .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.dun-root .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(96,62,156,.05); }
.dun-root .faq-q {
  display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 16px 18px;
  font-size: 14px; font-weight: 600; color: var(--ink); list-style: none; user-select: none;
}
.dun-root .faq-q::-webkit-details-marker { display: none; }
.dun-root .faq-q .qmark { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 7px; background: linear-gradient(140deg,#f0e7fc,#e3d3f6); color: var(--purple); display: grid; place-items: center; font-family: var(--num); font-weight: 600; font-size: 13px; }
.dun-root .faq-q .chev { margin-left: auto; color: var(--ink-faint); transition: transform .25s; font-size: 13px; }
.dun-root .faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.dun-root .faq-a { padding: 0 18px 16px 54px; font-size: 13px; color: var(--ink-soft); margin: 0; }
.dun-root .cta-band {
  position: relative; overflow: hidden; border-radius: 0;
  padding: 64px 0; text-align: center;
  background:
    radial-gradient(40% 80% at 12% 50%, rgba(150,110,200,.5) 0%, transparent 70%),
    radial-gradient(40% 80% at 88% 50%, rgba(150,110,200,.5) 0%, transparent 70%),
    var(--grad-purple-deep);
}
.dun-root .cta-band .stars-deco { position: absolute; inset: 0; pointer-events: none; }
.dun-root .cta-band .stars-deco i { position: absolute; color: rgba(255,255,255,.85); font-size: 12px; animation: tw 3.6s ease-in-out infinite; }
.dun-root .cta-band h2 { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 30px; margin: 0 0 6px; letter-spacing: .04em; text-shadow: 0 2px 20px rgba(40,20,80,.4); position: relative; z-index: 2; }
.dun-root .cta-band p { color: #e7ddf6; font-size: 14px; margin: 0 0 26px; position: relative; z-index: 2; }
.dun-root .cta-btn {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-gold); color: #fff; font-weight: 700; font-size: 17px;
  padding: 16px 40px; border-radius: 999px;
  box-shadow: 0 14px 34px rgba(150,110,40,.45); transition: transform .15s, box-shadow .2s;
}
.dun-root .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(150,110,40,.55); }
.dun-root .site-footer { background: linear-gradient(180deg, #4a3a72, #3b2e5c); color: #cfc4e6; padding: 52px 0 26px; }
.dun-root .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.dun-root .footer-brand .brand b { color: #fff; }
.dun-root .footer-brand .brand .logo { background: radial-gradient(circle at 38% 32%, #fff, #d9c6f2); }
.dun-root .footer-brand p { font-size: 12.5px; color: #b6a9d4; margin: 16px 0 18px; line-height: 1.8; }
.dun-root .socials { display: flex; gap: 10px; }
.dun-root .socials a { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #e6ddf6; transition: background .2s; }
.dun-root .socials a:hover { background: rgba(255,255,255,.22); }
.dun-root .fcol h4 { font-size: 12px; color: #d7cdee; letter-spacing: .08em; margin: 0 0 14px; font-weight: 700; }
.dun-root .fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.dun-root .fcol a { font-size: 12.5px; color: #b6a9d4; transition: color .2s; }
.dun-root .fcol a:hover { color: #fff; }
.dun-root .copyright { text-align: center; font-size: 11.5px; color: #9485bb; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 1000px) {
.dun-root .gnav { display: none; }
.dun-root .hero-grid { grid-template-columns: 1fr; gap: 32px; }
.dun-root .hero-search { max-width: 480px; }
.dun-root .rank-grid, .dun-root .review-grid, .dun-root .guide-grid { grid-template-columns: 1fr; }
.dun-root .guide-arrow { display: none; }
.dun-root .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.dun-root .hero-vignette { display: none; }
}
@media (max-width: 760px) {
.dun-root .hero h1 { font-size: 34px; }
.dun-root .sec-title { font-size: 22px; gap: 10px; }
.dun-root .faq-grid { grid-template-columns: 1fr; }
.dun-root .compare-wrap { overflow-x: auto; }
.dun-root table.compare { min-width: 640px; }
.dun-root .footer-grid { grid-template-columns: 1fr; }
.dun-root .header-cta { padding: 9px 14px; font-size: 12.5px; }
.dun-root .brand b { font-size: 16px; }
}
/* ===== ヒーロー背景画像（管理画面で設定） ===== */
.dun-root .hero.has-bg{
  background: var(--hero-bg) no-repeat;
  background-size: cover;
  background-position: var(--hero-bg-pos, center);
}
/* 文字側（左）だけ薄いベール、中央〜右は透明にして人物が隠れにくいように */
.dun-root .hero.has-bg::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(100deg,
    rgba(247,243,252,.94) 0%,
    rgba(247,243,252,.80) 24%,
    rgba(247,243,252,.34) 44%,
    rgba(247,243,252,0)   62%);
}
/* 画像があるときは装飾の月を消す */
.dun-root .hero.has-bg .hero-moon{ display:none; }
/* 検索カードは背景となじむよう、わずかにすりガラス化 */
.dun-root .hero.has-bg .search-card{
  background: rgba(255,255,255,.90);
  -webkit-backdrop-filter: blur(7px) saturate(1.04);
  backdrop-filter: blur(7px) saturate(1.04);
}

@media (max-width:1000px){
  /* モバイルは縦積み。人物が上に出るよう上寄せ＋縦方向のベール */
  .dun-root .hero.has-bg{ background-position: var(--hero-bg-pos-m, top center); }
  .dun-root .hero.has-bg::before{
    background: linear-gradient(180deg,
      rgba(247,243,252,.16) 0%,
      rgba(247,243,252,.55) 46%,
      rgba(247,243,252,.93) 100%);
  }
  /* 上部に人物用の余白を確保 */
  .dun-root .hero.has-bg{ padding-top: 200px; }
}
@media (max-width:760px){
  .dun-root .hero.has-bg{ padding-top: 168px; }
}

/* ===== テーマとの幅・並び調整 ===== */
/* 各ブロックを必ず全幅・縦積みにする（テーマがflex/カラムでも横並びを防ぐ） */
.dun-root{
  display: block;
  width: 100%;
  max-width: 100%;
  flex: 1 1 100%;   /* 親がflexでも1行ずつ折り返して縦積みに */
  float: none;
  clear: both;
  box-sizing: border-box;
}
.dun-root .hero,
.dun-root .section{
  width: 100%;
  float: none;
  clear: both;
}

/* 全幅表示：テーマの狭いコンテンツ枠を飛び出して画面いっぱいに */
.dun-root.is-fullwidth .hero,
.dun-root.is-fullwidth .section{
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* 中身は従来どおり --maxw 幅で中央寄せ（.container がその役割） */

/* ===== サービスのアイコン画像 ===== */
.dun-root .svc-logo.has-icon{ padding:0; background:none; overflow:hidden; }
.dun-root .svc-logo.has-icon img{ width:100%; height:100%; object-fit:cover; display:block; border-radius:inherit; }
.dun-root .t-name .t-icon{
  width:26px; height:26px; border-radius:7px; object-fit:cover;
  vertical-align:middle; margin-right:9px; border:1px solid var(--line);
}
