:root {
  --red: #e60012;
  --red-dark: #a9000d;
  --orange: #ff8a00;
  --yellow: #fff6cc;
  --green: #19a974;
  --blue: #0b5ed7;
  --ink: #1f2937;
  --muted: #667085;
  --line: #d8dee8;
  --paper: #ffffff;
  --bg: #eef3f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(90deg, #dfe7ef 0, #f4f7fb 18%, #f4f7fb 82%, #dfe7ef 100%);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.site {
  max-width: 430px;
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: 92px;
  box-shadow: 0 0 24px rgba(31, 41, 55, .12);
}
/* ==================================
   header
================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: block;
  width: 150px;
  max-width: calc(100% - 58px);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menuButton {
  position: relative;
  display: inline-grid;
  align-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  padding: 0 10px;
  box-shadow: 0 4px 0 var(--red-dark);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.menuButton span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menuButton:hover {
  background: #f01520;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--red-dark), 0 8px 16px rgba(31, 41, 55, .18);
}

.menuButton:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--red-dark);
}

.menuButton.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menuButton.is-open span:nth-child(2) {
  opacity: 0;
}

.menuButton.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.headerMenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 10px;
  width: min(280px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(31, 41, 55, .18);
}

.headerMenu a {
  display: block;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: background-color .18s ease, color .18s ease, padding-left .18s ease;
}

.headerMenu a:last-child {
  border-bottom: 0;
}

.headerMenu a:hover {
  background: #fff1f0;
  color: var(--red);
  padding-left: 20px;
}

/* ==================================
   FV
================================== */
.fv{
  padding: 0;
  position: relative;
}
.fv .container-fluid{
  padding: 0;
}
.fv h1 {
  margin-bottom: 0; 
}

.fv .container-fluid {
  padding: 0;
}
.fvCtaGrid {
  position: absolute; /* ★追加: 要素を浮かせて画像の上に重ねる */
  bottom: 15px;       /* ★追加: 画像下端からの位置。完成イメージに合わせて10px〜5%など調整してください */
  left: 0;            /* ★追加: 左端から配置 */
  width: 100%;        /* ★追加: 横幅を画面いっぱいに */
  padding: 0 10px;    /* ★追加: 左右の余白（画面端にボタンがくっつかないように調整） */
  z-index: 10;        /* ★追加: 画像より前面（上）に表示させる */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fvCta {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 25px;
  align-items: center;
  gap: 8px;
  min-height: 53px;
  padding: 0.2rem;
  border: 3px solid #fff;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .35),
    0 7px 12px rgba(0, 0, 0, .32);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.fvCta::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.fvCta.primary {
  background: linear-gradient(145deg, #ff8c00 0%, #ff2a00 52%, #dc0000 100%);
}

.fvCta.secondary {
  background: linear-gradient(145deg, #178cff 0%, #005bd1 58%, #003c96 100%);
}

.fvCta:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .45),
    0 12px 18px rgba(0, 0, 0, .34);
}

.fvCta:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .25),
    0 4px 8px rgba(0, 0, 0, .28);
}

.ctaText {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, .22);
}

.ctaText em {
  color: #ffed26;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 1000;
}

.ctaText strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 1000;
}

.ctaIcon {
  position: relative;
  width: 34px;
  height: 50%;
}

.ctaIcon.crown {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* アイコンの大きさに合わせて数値を調整してください */
}

.section-block {
  padding: 18px 12px;
  scroll-margin-top: 70px;
}

.title-box {
  border-left: 6px solid var(--red);
  background: #fff;
  padding: 10px 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(31, 41, 55, .08);
}

.eyebrow {
  margin: 0 0 2px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  box-shadow: 0 6px 16px rgba(31, 41, 55, .1);
}

.compare-head,
.compare-cell {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

.compare-head {
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 148px;
  padding: 22px 6px 8px;
  text-align: center;
}

.compare-head.is-first,
.compare-cell.is-first {
  background: var(--yellow);
  box-shadow: inset 3px 0 0 var(--red), inset -3px 0 0 var(--red);
}

.compare-head img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8fafc;
}

.compare-head strong {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.rank-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 54px;
  padding: 3px 8px;
  border-radius: 4px;
  border: 2px solid #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .22);
}

.rank-badge.gold {
  background: #ffd43b;
  color: #6b4200;
}

.rank-badge.silver {
  background: #e5e7eb;
  color: #475467;
}

.rank-badge.bronze {
  background: #c47a35;
  color: #fff;
}

.compare-row-title {
  grid-column: 1 / -1;
  padding: 7px 8px;
  background: #069da3;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.compare-cell {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 8px 5px;
  color: var(--red);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.compare-value {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.compare-mark {
  display: inline-block;
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.compare-mark.double-circle {
  border: 4px solid var(--red);
  border-radius: 50%;
}

.compare-mark.double-circle::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 4px solid var(--red);
  border-radius: 50%;
}

.compare-mark.circle {
  border: 4px solid var(--red);
  border-radius: 50%;
}

.compare-mark.triangle {
  width: 0;
  height: 0;
  border-right: 19px solid transparent;
  border-bottom: 32px solid #1d3557;
  border-left: 19px solid transparent;
}

.compare-mark.triangle::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -11px;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 19px solid #fff;
  border-left: 11px solid transparent;
}

.compare-cell.cta-cell a {
  display: inline-grid;
  place-items: center;
  width: min(78px, 90%);
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e 0%, #10863f 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 0 #075c2a;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.filter-box {
  background: #fff;
  border: 2px solid #fc910e;
  box-shadow: 0 6px 16px rgba(31, 41, 55, .1);
}

.filter-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fc910e;
  color: #fff;
}

.filter-heading h2 {
  font-size: 16px;
}

.filter-body {
  padding: 4px 12px 2px;
}

.filter-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px dashed var(--line);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group legend {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.filter-group input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--blue);
}

.filter-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px 16px;
}

.filter-footer output {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.filter-submit {
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 0 var(--red-dark);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.ranking-list {
  display: grid;
  gap: 14px;
}

.rank-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(31, 41, 55, .1);
  scroll-margin-top: 70px;
}

.rank-card.is-top {
  border: 2px solid #069da3;
}

.rank-title {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 8px;
  background: #069da3;
  color: #fff;
  padding: 10px;
}

.rank-card.is-top .rank-title {
  background: #069da3;
}

.rank-title span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .18);
  font-size: 18px;
  font-weight: 900;
}

.rank-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.catch {
  margin: 0;
  padding: 10px 12px 0;
  font-size: 14px;
  font-weight: 900;
}

.rank-image {
  display: block;
  width: calc(100% - 24px);
  max-height: 230px;
  margin: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
  object-fit: contain;
}

.spec-table {
  margin: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 116px 1fr;
  border-bottom: 1px solid var(--line);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table dt,
.spec-table dd {
  margin: 0;
  padding: 8px;
  font-size: 13px;
}

.spec-table dt {
  background: #fff0e1;
  color: #7c2d12;
  font-weight: 900;
}

.spec-table dd {
  font-weight: 800;
}

.official-button {
  display: block;
  margin: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff5b5b 0%, #df000b 100%);
  color: #fff;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 5px 0 var(--red-dark);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.official-button.secondary {
  background: linear-gradient(180deg, #22c55e 0%, #10863f 100%);
  box-shadow: 0 5px 0 #075c2a;
}

.rank-card h4 {
  margin: 12px 0 8px;
  padding: 7px 12px;
  background: #ffe5ac;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}

.point-list {
  margin: 0 12px 12px;
  padding: 0;
  list-style: none;
}

.point-list li {
  position: relative;
  padding: 5px 0 5px 24px;
  font-size: 13px;
  font-weight: 700;
}

.point-list li::before {
  content: "\f14a";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--orange);
  font: var(--fa-font-solid);
}

.no-results {
  margin: 0;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.footer {
  padding: 22px 16px;
  background: #111827;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 50;
  width: min(430px, 100%);
  transform: translateX(-50%);
  padding: 8px;
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid var(--line);
}

.fixed-cta a {
  display: block;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff4b4b 0%, #df000b 100%);
  color: #fff;
  padding: 13px 10px 15px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 5px 0 var(--red-dark);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.fixed-cta span {
  color: #fff6a6;
}

@media (min-width: 768px) {
  .site,
  .fixed-cta {
    max-width: 480px;
  }
}
/*口コミ
-------------------------------------------------------*/
.voice-box {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 0 22px;
    padding: 0.5rem;
}

.voice-box img {
    max-width: 70px;
    height: 100%;
    border: 3px solid #f2f2f2;
    border-radius: 50%;
}

.voice-box p {
    position: relative;
    max-width: 300px;
    margin: 3px 0 0;
    padding: 0.5rem;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #333333;
}

.voice-box p::before {
    position: absolute;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #f2f2f2;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}
.voice_star{
  color: #fcd600;
}
