﻿@charset "utf-8";

/*-----------------------------------------------------
 大枠・ベース (スマホ幅・中央配置特化レイアウト)
-------------------------------------------------------*/
:root {
  --red: #e60012;
  --red-dark: #b90010;
  --navy: #102a53;
  --green: #10b43f;
  --yellow: #ffb000;
  --gray: #f6f6f6;
  --text: #161616;
}

html, body {
  font-family: 'Noto Sans JP', 'Noto Sans Japanese', Meiryo, sans-serif;
  color: var(--text);
}

body {
  overflow-x: hidden;
  width: 100%;
  padding-top: 72px;
  background: #f1f1f1;
  -webkit-overflow-scrolling: touch;
}

/* PC時の左右背景 */
body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc((100vw - 400px) / 2);
  pointer-events: none;
  z-index: -1;
}
body::before {
  left: 0;
  background: linear-gradient(135deg, #fff 0%, #ffe9ec 45%, #eef8ff 100%);
}
body::after {
  right: 0;
  background: linear-gradient(225deg, #fff 0%, #eaf8ef 45%, #fff1f3 100%);
}

/* スマホサイズ(最大400px)の中央寄せ */
main, #Header, #Footer, .fix-navi_sp {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 3rem 0;
}

.container {
  width: 100%;
  max-width: 350px;
  padding: 0;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/*-----------------------------------------------------
 見出し共通
-------------------------------------------------------*/
.section-title,
.title-balanced {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(1.28rem, 5.4vw, 1.55rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-title span:not(.title-normal),
.title-balanced span:not(.title-normal) {
  color: var(--red);
  font-size: inherit;
}

.title-balanced span,
.worries .section-title,
.flow .section-title,
.voice .section-title,
.question .section-title {
  white-space: nowrap;
}

.title-logo {
  display: inline-block;
  width: 240px;
  max-width: 88%;
  margin: 4px auto 2px;
  line-height: 0;
  vertical-align: middle;
}
.title-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------
 header
-------------------------------------------------------*/
#Header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}

#Header.header-hidden {
  transform: translateY(-110%);
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.brand {
  margin: 0 auto;
}

.brand-logo {
  display: block;
  width: 230px;
  max-width: 100%;
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------
 FV (画像差し替え版)
-------------------------------------------------------*/
.fv {
  padding: 0;
  background: #fff;
}

.fv-inner {
  display: block;
  width: 100%;
}

.fv-image {
  margin: 0;
  line-height: 0;
}
.fv-image img {
  display: block;
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------
 お悩み
-------------------------------------------------------*/
.worries {
  padding-top: 18px;
  background: #fff;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.worry-card {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 12px 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-weight: 800;
}

.worry-card i {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 2.1rem;
}

.worry-card p {
  margin: 0;
  font-size: 0.86rem;
}

/*-----------------------------------------------------
 解決 (POINTデザイン・レイアウト修正反映済)
-------------------------------------------------------*/
.solution {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.95) 0 13%, transparent 14%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.78) 0 9%, transparent 10%),
    linear-gradient(180deg, #fff 0%, #fff6f1 24%, #ffe1d7 100%);
}

.solution::before,
.solution::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  pointer-events: none;
  opacity: 0.38;
  background: repeating-linear-gradient(45deg, rgba(230, 0, 18, 0.18) 0 4px, transparent 4px 10px);
}
.solution::before { top: 118px; left: -72px; transform: rotate(28deg); }
.solution::after { top: 126px; right: -76px; transform: rotate(-28deg); }

.solution .container {
  position: relative;
  z-index: 1;
}

.solution-title {
  margin-bottom: 24px;
}
.solution-title span:not(.title-normal) {
  display: inline-block;
  margin-top: 2px;
  font-size: 1.12em;
}

.solution-point-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.solution-point-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas: "icon label" "icon body";
  align-items: center;
  column-gap: 14px;
  row-gap: 7px;
  min-height: 112px;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(255, 165, 67, 0.34);
  border-radius: 7px;
  background: linear-gradient(90deg, #fffdfa 0%, #fff6df 100%);
}

.solution-point-label {
  grid-area: label;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 76px;
  padding: 4px 8px;
  border-radius: 2px;
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.solution-point-icon {
  grid-area: icon;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1.5px solid #ff9c19;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  font-size: 2rem;
  box-shadow: inset 0 0 0 7px #fff;
}

.solution-point-body {
  grid-area: body;
  align-self: start;
  min-width: 0;
}
.solution-point-body h3 {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}
.solution-point-body p {
  margin: 0;
  color: #111;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.72;
}

/*-----------------------------------------------------
 CTA 共通
-------------------------------------------------------*/
.cta {
  padding: 2rem 0.5rem;
  background: linear-gradient(180deg, #ffb13b 0%, #ff8a18 48%, #f05b00 100%);
}

.cta-stack {
  display: grid;
  gap: 10px;
  width: min(400px, 100vw);
  margin: 0 auto;
  padding: 0 12px;
}

.cta-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2px;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(120, 40, 0, 0.28);
}
.cta-heading::before,
.cta-heading::after {
  content: "";
  width: 18px;
  height: 2px;
  margin: 0 8px;
  background: #fff;
}
.cta-heading::before { transform: rotate(50deg); }
.cta-heading::after { transform: rotate(-50deg); }
.cta-heading em {
  color: #fff700;
  font-style: normal;
}

.cta-phone-box {
  position: relative;
  display: block;
  min-height: 100px;
  padding: 34px 8px 10px;
  overflow: hidden;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
}

.cta-ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 18px 0 20px;
  border-radius: 0 999px 999px 0;
  color: #fff;
  background: linear-gradient(90deg, #f80016 0%, #dd0011 100%);
  font-size: 0.78rem;
  font-weight: 900;
}

.cta-phone-content {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}
.cta-phone-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 1.45rem;
}
.cta-phone-text {
  min-width: 0;
  padding-top: 2px;
}
.cta-phone-text strong {
  display: block;
  color: #090917;
  font-family: Arial, sans-serif;
  font-size: 1.82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.cta-phone-text small {
  display: block;
  margin-top: 6px;
  color: #111;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cta-phone-text em { color: var(--red); font-style: normal; }

.cta-action {
  display: flex;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr) 26px;
  gap: 5px;
  min-height: 62px;
  padding: 9px 8px;
  border-radius: 6px;
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.14), 0 2px 7px rgba(0, 0, 0, 0.12);
}
.cta-action-line { background: linear-gradient(90deg, #10b63d 0%, #13c94a 55%, #05a331 100%); }
.cta-action-mail { background: linear-gradient(90deg, #ff2424 0%, #f31419 58%, #d9000d 100%); }

.cta-line-mark,
.cta-line-mark img { width: 42px; }
.cta-line-mark { height: 38px; }
.cta-mail-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 36px;
  font-size: 1.85rem;
}

.cta-action-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 4px;
  overflow: hidden;
}
.cta-action-text strong {
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.cta-action-line strong { color: #fff56a; }

.cta-action-text small {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 3px 6px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: 0.48rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.cta-action-arrow {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: inherit;
  background: #fff;
  font-size: 0.92rem;
}
.cta-action-line .cta-action-arrow { color: #10ad39; }
.cta-action-mail .cta-action-arrow { color: var(--red); }


/*-----------------------------------------------------
 実績・比較表 (横スクロールなし100%固定)
-------------------------------------------------------*/
.performance { background: #fff; }


.performance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 18px;
}

.compare-wide-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  color: #111;
  background: #fff;
  font-weight: 900;
}
.compare-wide-table th,
.compare-wide-table td {
  height: 78px;
  padding: 7px 4px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  vertical-align: middle;
  text-align: center;
}

.compare-wide-table thead .compare-item-head,
.compare-wide-table tbody th { width: 25%; }
.compare-wide-table tbody td:nth-child(2) { width: 27%; }
.compare-wide-table tbody td:nth-child(3),
.compare-wide-table tbody td:nth-child(4) { width: 24%; }

.compare-wide-table thead th {
  height: 62px;
  border-bottom: none;
  color: #fff;
}
.compare-wide-table thead .compare-item-head {
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-radius: 10px 0 0 0;
  background: #fff;
}

.compare-brand-main {
  border-top: 3px solid var(--red);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #ff2525 0%, #ed0000 100%);
  border-right: 3px solid var(--red);
  border-left: 3px solid var(--red);
}
.compare-brand-a {
  background: linear-gradient(180deg, #005ebf 0%, #00448f 100%);
  font-size: 1.35rem;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.28);
}
.compare-brand-b {
  border-radius: 0 10px 0 0;
  background: linear-gradient(180deg, #37a836 0%, #218425 100%);
  font-size: 1.35rem;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.28);
}
.compare-brand-logo {
  display: block;
  width: 74px;
  margin: 0 auto;
}
.compare-brand-logo img {
  width: 100%;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.22));
}

.compare-wide-table tbody th {
  border-left: 1px solid #d9d9d9;
  font-size: 0.74rem;
  line-height: 1.25;
}
.compare-wide-table tbody tr:last-child th { border-radius: 0 0 0 10px; }
.compare-wide-table tbody td:nth-child(2) {
  border-right: 3px solid var(--red);
  border-left: 3px solid var(--red);
}
.compare-wide-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 3px solid var(--red);
  border-radius: 0 0 10px 10px;
}
.compare-wide-table tbody tr:last-child td:last-child { border-radius: 0 0 10px 0; }

.compare-row-icon {
  display: block;
  margin: 0 auto 4px;
  color: #0050aa;
  font-size: 1.15rem;
}
.compare-wide-table tbody th span:last-child { display: block; }

.compare-mark {
  display: block;
  margin: 0 auto 4px;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}
.compare-circle { color: var(--red); }
.compare-cross { color: #2d3338; }

.compare-detail {
  display: block;
  line-height: 1.15;
}
.compare-detail b {
  display: block;
  font-weight: 900;
  font-size: 0.55rem;
}
.compare-detail strong {
  display: block;
  margin-top: 2px;
  color: #d00000;
  font-size: 0.78rem;
  font-weight: 900;
}
.compare-blue strong, .compare-blue b { color: #004a9d; }
.compare-green strong, .compare-green b { color: #168020; }

/* エリア */
/* エリア */
.area-box {
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.area-box h3 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 900;
}

/* 画像とリストを縦並びにする */
.area-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.area-content figure {
  margin: 0;
  width: 100%;
  max-width: 220px; /* 画像が大きくなりすぎないように調整 */
}

/* リストを4列のグリッドにする（4つ目で自動改行） */
.area-box ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 1行に4つ配置 */
  gap: 6px 0; /* 縦の余白、横の余白 */
  width: 100%;
  margin: 0;
  padding: 0;
}

.area-box li {
  margin: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap; /* 「神奈川」などで文字が縦に落ちるのを防ぐ */
}

.area-box li::before {
  content: "✓";
  margin-right: 4px; /* チェックマークとの隙間 */
  color: #ff0000;
}

.area-box p {
  margin: 16px 0 0;
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 900;
  text-align: center;
}
.area-box small {
  display: block;
  color: #111;
  font-size: 0.95rem;
}

/*-----------------------------------------------------
 ご利用の流れ
-------------------------------------------------------*/
.flow { background: #ffc0c0; }
.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.flow-card {
  padding: 16px 14px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.flow-card span { color: var(--red); font-size: 1.25rem; font-weight: 900; }
.flow-card h3 { margin: 4px 0 12px; font-size: 1rem; font-weight: 900; }
.flow-card i { color: #111; font-size: 2.1rem; }
.flow-card p { margin: 14px 0 0; font-size: 0.82rem; font-weight: 700; line-height: 1.8; }

/*-----------------------------------------------------
 お客様の声
-------------------------------------------------------*/
.voice { background: #fff; }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.voice-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.avatar {
  width: 62px;
  height: 62px;
  min-height: 62px;
  border-radius: 50%;
  margin: 0;
}
.stars { margin: 0 0 4px; color: var(--yellow); font-weight: 900; }
.voice-card h3 { margin: 0 0 8px; font-size: 0.95rem; font-weight: 900; }
.voice-card p:not(.stars) { margin: 0 0 8px; font-size: 0.84rem; font-weight: 700; line-height: 1.75; }
.voice-card small { font-weight: 900; }

/*-----------------------------------------------------
 よくある質問
-------------------------------------------------------*/
.question { background: #ffe4c2; }
.faq-list { margin-bottom: 22px; }
.faq-list .accordion-item {
  overflow: hidden;
  margin-bottom: 7px;
  border: 1px solid #ffd1d5;
  border-radius: 8px;
}
.faq-list .accordion-button {
  gap: 12px;
  padding: 12px 14px;
  color: #111;
  background: #fff;
  font-weight: 900;
  box-shadow: none;
}
.faq-list .accordion-button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
}
.faq-list .accordion-body {
  padding: 12px 16px 18px;
  font-weight: 700;
  line-height: 1.8;
}

/*-----------------------------------------------------
 form
-------------------------------------------------------*/
.form { background-color: #f87968; }
.bg_white { background-color: #fff; padding: 50px 0; }
.p-privacy__list { list-style-type: none; }
.text-bg-danger { background-color: #fa4a2b !important; }
.btn-primary { background-color: #ff0000 !important; border-color: #990000; }
.btn-lg { padding: 0.5rem 1rem; border-radius: 15px; }
.form-check-input { border: var(--bs-border-width) solid #444; }

/*-----------------------------------------------------
 フッター / Footer
-------------------------------------------------------*/
.footer-info {
  padding: 24px 0;
  background: #fff;
}
.footer-info-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 2px solid #f1f1f1;
}
.footer-info h2 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 900; }
.footer-info ul { margin: 0; padding-left: 1.2rem; font-size: 0.88rem; font-weight: 700; line-height: 1.8; }

#Footer {
  padding: 18px 0 78px;
  color: #fff;
  background: var(--red);
}
#Footer p { font-size: 0.85rem; }

/*-----------------------------------------------------
 追従メニュー
-------------------------------------------------------*/
.scroll-up {
  display: none;
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 10px;
}
.scroll-up a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
}

/* ★ここから修正★ */
.fix-navi_sp {
  display: grid;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 50%; /* 画面の左から50%の位置に */
  width: 100%;
  max-width: 400px; /* メインコンテンツの幅と同じにする */
  transform: translateX(-50%); /* 自身の幅の半分だけ左に戻してぴったり中央配置 */
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}

.fix-navi_sp a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  color: #fff;
  font-weight: 900;
}
.fix-navi_sp a:first-child { background: var(--red); }
.fix-navi_sp a:last-child { background: var(--green); }

/*-----------------------------------------------------
 最小ブレイクポイント (360px・400px周り)
-------------------------------------------------------*/
@media only screen and (max-width: 400px) {
  body { padding-top: 68px; }
  .brand-logo { width: 215px; }
  .container { max-width: calc(100% - 24px); }
  .cta-stack { padding: 0 10px; }
}

@media only screen and (max-width: 360px) {
  .section-title, .worries .section-title, .title-balanced, .flow .section-title, .voice .section-title, .question .section-title {
    font-size: 1.16rem;
  }
  .solution-point-card {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 11px; row-gap: 6px;
    padding: 12px 12px 12px 13px;
    min-height: 104px;
  }
  .solution-point-icon { width: 60px; height: 60px; font-size: 1.65rem; }
  .solution-point-label { min-width: 68px; font-size: 0.7rem; }
  .solution-point-body h3 { font-size: 1rem; white-space: normal; }
  .solution-point-body p { font-size: 0.63rem; }

  .cta-phone-box { min-height: 94px; padding-top: 32px; }
  .cta-phone-content { grid-template-columns: 42px minmax(0, 1fr); gap: 7px; }
  .cta-phone-icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .cta-phone-text strong { font-size: 1.55rem; }
  .cta-phone-text small { font-size: 0.5rem; }
  .cta-action { grid-template-columns: 38px minmax(0, 1fr) 26px; gap: 5px; }
  .cta-line-mark, .cta-line-mark img { width: 36px; }
  .cta-line-mark { height: 32px; }
  .cta-mail-mark { width: 36px; height: 31px; font-size: 1.55rem; }
  .cta-action-text strong { font-size: 0.78rem; }
  .cta-action-text small { font-size: 0.42rem; padding: 3px 4px; }
  .cta-action-arrow { width: 25px; height: 25px; }

  .compare-design h3 { font-size: 1.75rem; }
  .compare-wide-table th, .compare-wide-table td { height: 72px; padding: 6px 3px; }
  .compare-wide-table thead th { height: 58px; }
  .compare-wide-table tbody th { font-size: 0.66rem; }
  .compare-row-icon { font-size: 1rem; }
  .compare-brand-a, .compare-brand-b { font-size: 1.15rem; }
  .compare-brand-logo { width: 64px; }
  .compare-mark { font-size: 1.25rem; }
  .compare-detail b { font-size: 0.49rem; }
  .compare-detail strong { font-size: 0.68rem; }
}