:root {
  --red: #D6284D;
  --ink: #242228;
  --muted: #706d73;
  --line: #ebe7e9;
  --soft: #fff4f7
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: #f4f5f7;
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.9
}
a {
  color: inherit;
  text-decoration: none
}
img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none
}
.site-header {
  height: 80px;
  position: relative;
  z-index: 10;
  background: #fff;
}
.header-inner {
  max-width: 1160px;
  height: 100%;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 15px
}
.logo {
  display: flex;
  align-items: center;
}
.logo b {
  color: var(--red);
  font-weight: 500
}
.logo img {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain
}
.header-inner > p {
  margin: 0;
  padding-left: 10px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.3;
}
.pr {
  margin-left: auto;
  color: #fff;
  font-size: 16px;
  padding: 0px 18px;
  font-weight: 600;
  background: #000;
}
.hero {
  max-width: 1440px;
  height: 360px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #f8f4f5
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 40%, rgba(233, 0, 70, .03))
}
.page-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 55px 24px 90px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 45px
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: #938c90;
  margin-bottom: 35px
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px
}
.article {
  background: #fff;
  padding: 30px;
}
.latest-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
}
.article h1 {
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: -.045em;
  margin: 0 0 12px
}
.article h1 em {
  font-style: normal;
  color: var(--red);
  background: linear-gradient(transparent 70%, #fff176 70%);
}
.article-meta {
  display: flex;
  gap: 24px;
  color: #969095;
  font-size: 12px;
  padding-bottom: 15px;
  margin-bottom: 15px
}
.article-fv {
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: 4px;
  background: #111
}
.article-fv img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover
}
.intro p {
  font-size: 16px;
  line-height: 2.15;
  margin: 0 0 18px
}
.intro-image {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin: 28px auto;
  border-radius: 8px;
}
strong {
  background: linear-gradient(transparent 67%, #FFF176 0);
  font-weight: 600;
}
span.red {
  color: var(--red);
  font-weight: 600;
}
.br-sp {
  display: none !important;
}
.br-pc {
  display: inline !important;
}
span.bk {
  color: #000;
  font-weight: 600;
}
.kaiwa {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 28px 0 10px;
}
.kaiwa-person {
  flex: 0 0 100px;
  text-align: center;
}
.kaiwa-face {
  display: block;
  width: 100px;
  height: auto;
  object-fit: cover;
}
.kaiwa-name {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.kaiwa-bubble {
  position: relative;
  flex: 1;
  margin: 0;
  font-size: 14px;
  padding: 20px 24px;
  border: 2px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
  line-height: 1.9;
}
.kaiwa-bubble::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -10px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 2px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  transform: rotate(45deg);
}
.notice {
  display: flex;
  gap: 20px;
  background: var(--soft);
  border: 1px solid #ffd5e1;
  border-radius: 3px;
  padding: 23px 25px;
  margin: 32px 0
}
.notice > span {
  align-self: flex-start;
  background: var(--red);
  color: white;
  font-size: 10px;
  letter-spacing: .12em;
  padding: 1px 9px
}
.notice strong {
  color: var(--red)
}
.notice p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.8
}
.toc {
  margin: 20px 0;
  border: 1px solid var(--line);
  padding: 20px 34px 10px;
  background: #fff
}
.toc-title {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #29262a;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
}
.toc-title span {
  display: block;
  color: var(--red);
  font-size: 9px;
  letter-spacing: .2em
}
.toc-title .toc-toggle-icon {
  display: none;
}
.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line)
}
.toc li {
  border-bottom: 1px solid var(--line)
}
.toc li:last-child {
  border-bottom: 0;
}
.toc a {
  padding: 12px 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px
}
.toc a::after {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin: -4px 5px 0 auto;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
}
.toc a span {
  margin-left: auto;
  color: var(--red)
}
.quick-compare {
  margin: 60px 0
}
.article .quick-compare > h2, .article .hopping-guide > h2, .article .final-summary > h2 {
  margin-bottom: 35px;
  padding: 10px 20px;
  border-left: 0;
  border-radius: 3px;
  background: #d6284d;
  color: #fff;
  line-height: 1.5;
}
.compare-message {
  margin: 0 0 24px;
  text-align: center;
}
.compare-message p {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
.compare-message p:first-child {
  color: var(--red);
  font-size: 20px;
  font-weight: 600;
}
.compare-message span {
  display: inline-block;
  position: relative;
  z-index: 0;
  transform-origin: center;
  animation: compare-heartbeat 1.6s ease-in-out infinite;
}
.compare-message span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 3px;
  left: -3px;
  height: 8px;
  background: #fff176;
}
@keyframes compare-heartbeat {
  0%, 38%, 100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.08);
  }
  20% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .compare-message span {
    animation: none;
  }
}
.article section > h2 {
  font-size: 22px;
  border-left: 5px solid var(--red);
  padding-left: 16px;
  line-height: 1.45;
  margin: 0 0 25px
}
.compare-scroll {
  overflow: auto
}
.quick-compare table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  font-size: 13px
}
.quick-compare th:nth-child(1) {
  width: 23%;
}
.quick-compare th:nth-child(2) {
  width: 17%;
}
.quick-compare th:nth-child(3) {
  width: 38%;
}
.quick-compare th:nth-child(4) {
  width: 22%;
}
.quick-compare th {
  background: #29262a;
  color: white;
  font-weight: 500;
  padding: 5px
}
.quick-compare td {
  text-align: center;
  border: 1px solid var(--line);
  padding: 15px 10px
}
.quick-compare td:nth-child(3) {
  text-align: left
}
.quick-compare td strong, .quick-compare td small {
  display: block
}
.compare-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.compare-medal {
  flex: 0 0 34px;
  width: 34px;
  height: auto;
}
.compare-app-image {
  display: block;
  width: min(82px, calc(100% - 41px));
  max-height: 74px;
  object-fit: contain;
}
.rating-stars {
  --rating: 0%;
  display: inline-block;
  position: relative;
  color: #ddd;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.rating-stars::before {
  content: "\2605\2605\2605\2605\2605";
}
.rating-stars::after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating);
  overflow: hidden;
  color: #f4a600;
}
.quick-compare .rating-stars {
  display: block;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}
.quick-compare .rating-number {
  display: block;
  margin-top: 7px;
  color: #29262a;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
}
.compare-button {
  display: grid;
  position: relative;
  grid-template-columns: 16px minmax(0, 1fr) 16px;
  align-items: center;
  column-gap: 3px;
  min-height: 42px;
  padding: 9px 8px;
  overflow: hidden;
  border: 1px solid #16813d;
  border-radius: 6px;
  background: linear-gradient(#45c873, #25a855);
  box-shadow: 0 4px 0 #117234, 0 7px 12px rgba(10, 80, 36, .2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.compare-button span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  white-space: nowrap;
}
.compare-button img {
  position: relative;
  z-index: 1;
  grid-column: 3;
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.compare-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -60%;
  left: -55%;
  width: 28%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
  transform: skewX(-22deg);
  animation: compare-button-shine 2.8s ease-in-out infinite;
}
.compare-button:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 3px 0 #117234, 0 5px 9px rgba(10, 80, 36, .2);
}
@keyframes compare-button-shine {
  0%, 35% {
    left: -55%;
  }
  70%, 100% {
    left: 135%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .compare-button::before, .app-free-cta::before, .mini-cta::before {
    animation: none;
  }
}
.stars {
  color: #f4a600;
  white-space: nowrap;
  letter-spacing: 1px
}
.app-section {
  margin-top: 65px;
}
.section-rank {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 6px;
  background: #faf8f9;
}
.section-rank > img {
  flex: 0 0 58px;
  width: 58px;
  height: auto;
}
.section-rank > div:not(.section-score) {
  min-width: 0;
}
.section-score {
  flex: 0 0 82px;
  margin-left: auto;
  padding: 9px 8px;
  border: 1px solid #ead7dd;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}
.section-rank .section-score small {
  display: block;
  margin-bottom: 2px;
  color: #777;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.section-score-value {
  display: block;
  color: #29262a;
  font-size: 21px;
  line-height: 1.15;
  font-weight: bold;
}
.section-score-value span {
  margin-right: 2px;
  color: #f4a600;
  font-size: 17px;
}
.section-rank small {
  font-size: 10px;
  color: var(--red);
  letter-spacing: .1em
}
.section-rank h2 {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 32px !important;
  line-height: 1.15
}
.section-rank h2 i {
  font-size: 16px;
  font-style: normal
}
.section-lead {
  font-weight: 700;
  font-size: 16px;
  color: var(--red);
  margin: 2px 0 0 !important;
  line-height: 1.4
}
.app-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 20px 0 28px
}
.app-free-area {
  margin: -8px 0 32px;
  text-align: center;
}
.app-free-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 9px;
  color: var(--red);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
  transform-origin: center;
  animation: compare-heartbeat 1.6s ease-in-out infinite;
}
.app-free-note::before, .app-free-note::after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: var(--red);
  transform-origin: bottom center;
}
.app-free-note::before {
  transform: rotate(-23deg);
}
.app-free-note::after {
  transform: rotate(23deg);
}
.app-free-cta {
  display: grid;
  position: relative;
  grid-template-columns: 25px minmax(0, 1fr) 25px;
  align-items: center;
  column-gap: 6px;
  width: 65%;
  min-width: 360px;
  margin: 0 auto;
  min-height: 58px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid #16813d;
  border-radius: 50px;
  background: linear-gradient(#45c873, #25a855);
  box-shadow: 0 5px 0 #117234, 0 9px 16px rgba(10, 80, 36, .2);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.app-free-cta span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  white-space: nowrap;
}
.app-free-cta img {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
}
.app-free-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -60%;
  left: -35%;
  width: 18%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
  transform: skewX(-22deg);
  animation: compare-button-shine 2.8s ease-in-out infinite;
}
.app-free-cta:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 4px 0 #117234, 0 7px 12px rgba(10, 80, 36, .2);
}
@media (max-width: 600px) {
  .app-free-cta {
    width: 100%;
    min-width: 0;
    font-size: 17px;
  }
  .section-score-value {
    font-size: 18px;
  }
  .app-free-note {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .app-free-note, .app-free-cta::before {
    animation: none;
  }
}
.real-review {
  margin: 30px 0 32px;
  border: 1px solid #efd5dd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.review-tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f8edf1;
  border-bottom: 2px solid var(--red);
}
.review-tab-list-bottom {
  display: none;
}
.review-tab {
  position: relative;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: #766b70;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.review-tab + .review-tab {
  border-left: 1px solid #efd5dd;
}
.review-tab:hover {
  background: #fff8fa;
  color: var(--red);
}
.review-tab.is-active {
  background: var(--red);
  color: #fff;
}
.review-tab:focus-visible {
  z-index: 1;
  outline: 3px solid rgba(193, 28, 69, .25);
  outline-offset: -3px;
}
.review-tab-panel[hidden] {
  display: none;
}
.review-points {
  margin: 0;
  padding: 8px 24px;
  list-style: none;
}
.review-points li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.review-points li:last-child {
  border-bottom: 0;
}
.review-point-photo {
  flex: 0 0 180px;
  width: 180px;
  height: 128px;
  border-radius: 6px;
  object-fit: cover;
}
.review-point-photo-01 {
  object-position: 66% center;
}
.review-point-photo-02 {
  object-position: 33% 78%;
}
.review-point-photo-03 {
  object-position: 9% 78%;
}
.sakura-point-photo-01 {
  object-position: 67% center;
}
.sakura-point-photo-02 {
  object-position: 82% center;
}
.sakura-point-photo-03 {
  object-position: 55% center;
}
.renka-point-photo-01 {
  object-position: 88% center;
}
.renka-point-photo-02 {
  object-position: 76% center;
}
.renka-point-photo-03 {
  object-position: 61% center;
}
.review-point-body {
  min-width: 0;
}
.real-review .review-points h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #29262a;
  font-size: 16px;
}
.review-points h3 > span:first-child {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
}
.review-points h3 .point-heading-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
.review-points p {
  margin: 0;
  color: #4e484b;
  font-size: 14px;
  line-height: 1.9;
}
.real-review h3 {
  margin: 0;
  padding: 15px 18px;
  background: #fff5f8;
  color: #29262a;
  font-size: 18px;
  border-bottom: 2px solid var(--red);
}
.real-review table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.real-review th, .real-review td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.real-review tr:last-child th, .real-review tr:last-child td {
  border-bottom: 0;
}
.real-review th {
  width: 18%;
  background: #fcfafb;
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
}
.real-review .review-stars {
  width: 21%;
  padding-right: 20px;
  font-size: 17px;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.review-star-meter {
  --rating: 0%;
  display: inline-block;
  position: relative;
  color: #ddd;
  line-height: 1;
  letter-spacing: 1px;
}
.review-star-meter::before {
  content: "\2605\2605\2605\2605\2605";
}
.review-star-meter::after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating);
  overflow: hidden;
  color: #f4a600;
}
.review-stars .review-score {
  display: inline-block;
  margin-left: 6px;
  color: #29262a;
  font-size: 14px;
  letter-spacing: 0;
  vertical-align: 1px;
}
.real-review td:last-child {
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.75;
  vertical-align: middle;
}
.real-review .review-item-title {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-weight: 700;
}
.real-review td:last-child p {
  margin: 0;
}
.app-section > p:not(.section-lead) {
  font-size: 16px
}
.feature-box {
  margin: 30px 0;
  background: #faf8f9;
  border-top: 3px solid var(--red);
  padding: 26px 30px
}
.feature-box h3 {
  margin: 0 0 18px;
  font-size: 18px
}
.feature-box h3 span {
  display: inline-grid;
  place-items: center;
  background: var(--red);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-right: 6px
}
.feature-box ol {
  list-style: none;
  padding: 0;
  margin: 0
}
.feature-box li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e7e0e3;
  padding: 12px 0
}
.feature-box li b {
  color: var(--red);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 21px
}
.feature-box li span {
  font-weight: 700;
  font-size: 14px
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin: 28px 0
}
.info-grid div {
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid var(--line)
}
.info-grid div:last-child {
  border: 0
}
.info-grid small {
  display: block;
  color: #827b80;
  font-size: 11px
}
.info-grid strong {
  color: var(--red);
  font-size: 20px
}
.info-grid em {
  font-style: normal;
  font-size: 10px;
  color: #777
}
.app-section blockquote {
  margin: 28px 0;
  padding: 26px 30px;
  border-left: 3px solid var(--red);
  background: var(--soft);
  position: relative
}
.app-section blockquote span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: var(--red);
  letter-spacing: .15em
}
.app-section blockquote p {
  font-size: 14px;
  margin: 5px 0 0
}
.voice-section {
  margin: 32px 0;
  padding: 22px;
  border: 1px solid #efd5dd;
  border-radius: 7px;
  background: #fff5f8;
}
.voice-section > h3 {
  margin: 0 0 16px;
  color: #29262a;
  font-size: 20px;
  line-height: 1.4;
}
.voice-section > h3 span {
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-size: 9px;
  letter-spacing: .16em;
}
.voice-list {
  display: grid;
  gap: 14px;
}
.voice-card {
  padding: 18px 20px;
  border: 1px solid #eadde1;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(50, 30, 38, .05);
}
.voice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.voice-user {
  color: #696166;
  font-size: 12px;
  font-weight: 700;
}
.voice-user::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  background: url(../img/mens.webp) center / contain no-repeat;
  vertical-align: middle;
}
.voice-rating {
  font-size: 15px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.voice-star-meter {
  --rating: 0%;
  display: inline-block;
  position: relative;
  color: #ddd;
  line-height: 1;
  letter-spacing: 1px;
}
.voice-star-meter::before {
  content: "\2605\2605\2605\2605\2605";
}
.voice-star-meter::after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating);
  overflow: hidden;
  color: #f4a600;
}
.voice-rating b {
  margin-left: 4px;
  color: #29262a;
  font-size: 13px;
  letter-spacing: 0;
}
.voice-card h4 {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 16px;
  line-height: 1.5;
}
.voice-card p {
  margin: 0;
  color: #514a4e;
  font-size: 14px;
  line-height: 1.9;
}
.smart-advice {
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid #ead59a;
  border-radius: 7px;
  background: #fffdf5;
}
.smart-advice h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 20px;
  background: #fff3c8;
  color: #413714;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 1px solid #ead59a;
}
.smart-advice h3 span {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #e4a400;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.smart-advice-body {
  padding: 18px 22px 20px;
}
.smart-advice-body p {
  margin: 0 0 10px;
  color: #4e4840;
  font-size: 14px;
  line-height: 1.9;
}
.smart-advice-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .app-free-area {
    margin: 10px 0 32px;
  }
  .section-rank h2 i {
    font-size: 14px;
  }
  .quick-compare {
    margin: 30px 0 20px;
  }
  .voice-section {
    padding: 16px;
  }
  .voice-section > h3 {
    font-size: 18px;
  }
  .voice-card {
    padding: 15px;
  }
  .smart-advice h3 {
    align-items: flex-start;
    padding: 13px 15px;
    font-size: 16px;
  }
  .smart-advice-body {
    padding: 15px 16px 17px;
  }
  .voice-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
}
.primary-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  min-height: 86px;
  margin: 28px 0;
  border-radius: 2px;
  box-shadow: 0 7px 18px rgba(233, 0, 70, .18);
  transition: .2s
}
.primary-cta:hover {
  transform: translateY(-2px);
  background: #c9003c
}
.primary-cta span {
  font-weight: 800;
  font-size: 18px
}
.primary-cta small {
  font-size: 10px;
  opacity: .8
}
.hopping-guide {
  margin-top: 70px;
}
.hopping-guide > p {
  font-size: 15px;
  line-height: 2;
}
.hopping-highlight {
  margin: 30px 0 24px;
  padding: 24px 26px;
  border: 1px solid #efd5dd;
  border-top: 4px solid var(--red);
  background: #fff7f9;
}
.hopping-highlight h3 {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 19px;
  line-height: 1.55;
}
.hopping-highlight p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.9;
}
.hopping-highlight p:last-child {
  margin-bottom: 0;
}
.hopping-steps {
  display: grid;
  gap: 34px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.hopping-steps li {
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 17px;
  padding: 19px 21px;
  border: 1px solid #efd5dd;
  border-radius: 6px;
  background: #fff3f7;
}
.hopping-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px;
  width: 15px;
  height: 15px;
  border-right: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  transform: translateX(-50%) rotate(45deg);
}
.hopping-number {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 42px;
  color: var(--red);
  font: italic 38px/1 Georgia, serif;
}
.hopping-number::before {
  content: "STEP";
  margin-bottom: 0;
  color: #796b70;
  font: 700 9px/1 Arial, sans-serif;
  letter-spacing: .12em;
}
.hopping-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 3px 10px rgba(72, 32, 46, .12);
}
.hopping-brand {
  display: flex;
  flex: 0 0 82px;
  flex-direction: column;
  align-items: center;
}
.hopping-detail {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 20px;
}
.hopping-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.hopping-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}
.hopping-download {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 150px;
  flex: 0 0 auto;
  margin-top: 0;
  padding: 10px 18px;
  border: 1px solid #16813d;
  border-radius: 5px;
  background: linear-gradient(#45c873, #25a855);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 0 #117234, 0 6px 10px rgba(10, 80, 36, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hopping-download::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -55%;
  width: 34%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .82), transparent);
  transform: skewX(-22deg);
  animation: compare-button-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}
.hopping-download:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 2px 0 #117234, 0 4px 8px rgba(10, 80, 36, .2);
}
@media (prefers-reduced-motion: reduce) {
  .hopping-download::before {
    animation: none;
  }
}
.hopping-conclusion {
  padding: 18px 20px;
  border-left: 4px solid #e4a400;
  background: #fffbea;
}
.final-summary {
  margin-top: 70px;
}
.final-summary > p {
  font-size: 15px;
  line-height: 2;
}
.sp-only {
  display: none;
}
.smart {
  margin-top: 70px;
  background: #29262a;
  color: #fff;
  padding: 36px
}
.smart-head {
  display: flex;
  gap: 13px;
  align-items: center
}
.smart-head > span {
  font-size: 34px
}
.smart-head small {
  color: #ff8baa;
  font-size: 10px;
  letter-spacing: .12em
}
.smart-head h2 {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important
}
.smart > p {
  color: #ddd;
  font-size: 14px
}
.smart ol {
  list-style: none;
  padding: 0;
  margin: 25px 0 0
}
.smart li {
  display: flex;
  gap: 17px;
  border-top: 1px solid #4d494d;
  padding: 16px 0
}
.smart li > b {
  font: italic 26px Georgia;
  color: #ff6b94
}
.smart li strong {
  font-size: 14px
}
.smart li p {
  margin: 0;
  color: #bbb;
  font-size: 12px
}
.conclusion {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  border: 1px solid #ffd4e0;
  background: linear-gradient(135deg, #fff 0, #fff6f8 100%)
}
.conclusion > span {
  font: 10px Georgia;
  color: var(--red);
  letter-spacing: .2em
}
.conclusion h2 {
  border: 0 !important;
  padding: 0 !important;
  margin: 8px 0 15px !important
}
.conclusion p {
  text-align: left;
  font-size: 14px
}
.disclaimer {
  color: #999;
  font-size: 10px;
  margin-top: 30px
}
.side-sticky {
  position: static
}
.author-card {
  margin-bottom: 28px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(40, 30, 35, .06);
}
.author-label {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.author-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-heading img {
  flex: 0 0 72px;
  width: 72px;
  height: auto;
  object-fit: cover;
}
.author-heading h2 {
  margin: 0 0 3px;
  font-size: 18px;
}
.author-heading p {
  margin: 0;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
}
.author-bio {
  margin: 15px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #000;
  font-size: 12px;
  line-height: 1.85;
}
.side-title {
  color: #29262a;
}
.side-title small {
  color: var(--red);
  font: 10px Georgia;
  letter-spacing: .16em
}
.side-title h2 {
  font-size: 20px;
  margin: 2px 0;
  color: var(--red);
}
.side-title p {
  font-size: 11px;
  color: #666;
  margin: 0
}
.rank-card {
  overflow: hidden;
  border-radius: 7px;
  margin-top: 16px;
  background: #fff;
}
.rank-body {
  padding: 20px 16px 25px
}
.rank-app-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eadde1;
}
.rank-medal {
  flex: 0 0 40px;
  width: 40px;
  height: 54px;
  object-fit: contain;
}
.rank-app-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 3px 10px rgba(72, 32, 46, .12);
}
.rank-app-info {
  min-width: 0;
}
.rank-body h3 {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 17px;
  margin: 2px 0;
  line-height: 1.4
}
.rank-body h3 small {
  font-size: 10px;
  color: #766c70;
  white-space: nowrap;
}
.side-score {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}
.side-score .rating-stars {
  font-size: 14px;
}
.side-score b {
  font-size: 13px;
}
.rank-description {
  margin: 12px 0 0;
  color: #000;
  font-size: 12px;
  line-height: 1.7;
}
.mini-cta {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 10px auto 0;
  border: 1px solid #ad1737;
  border-radius: 50px;
  background: linear-gradient(#ed4267, #d6284d);
  box-shadow: 0 3px 0 #94122f, 0 6px 10px rgba(80, 10, 28, .2);
  color: #fff;
  justify-content: center;
  padding: 9px 12px;
  font-size: 15px;
  font-weight: 700;
}
.mini-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -55%;
  width: 28%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
  transform: skewX(-22deg);
  animation: compare-button-shine 2.8s ease-in-out infinite;
}
.mini-cta span {
  position: relative;
  z-index: 1;
  color: #fff;
}
.mini-cta img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 13px;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
}
.mini-cta:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 2px 0 #94122f, 0 4px 8px rgba(80, 10, 28, .2);
}
.side-note {
  border: 1px solid var(--line);
  padding: 18px;
  margin-top: 22px;
  font-size: 12px
}
.side-note b {
  color: var(--red)
}
.side-note ul {
  padding-left: 18px;
  margin: 7px 0 0;
  color: #6e676b
}
footer {
  background: #201e21;
  color: #fff
}
.footer-inner {
  max-width: 1160px;
  margin: auto;
  padding: 48px 24px;
  text-align: center
}
.footer-logo {
  display: block;
  width: 180px;
  max-width: 60%;
  height: auto;
  margin: 0 auto 12px;
}
.footer-inner > p {
  font-size: 11px;
  color: #aaa
}
.footer-inner > small {
  font-size: 9px;
  color: #6d686c
}
@media(max-width:900px) {
  .header-inner > p {
    font-size: 11px
  }
  .page-grid {
    grid-template-columns: 1fr;
    max-width: 780px;
    padding: 42px 22px 72px;
  }
  .sidebar {
    display: none
  }
  .hero {
    height: 300px
  }
  .article h1 {
    font-size: 35px
  }
  .article {
    padding: 28px;
  }
  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .quick-compare table {
    min-width: 680px;
  }
  .article .quick-compare > h2, .article .hopping-guide > h2, .article .final-summary > h2 {
    font-size: 21px;
  }
  .review-points li {
    gap: 16px;
  }
  .review-point-photo {
    flex-basis: 160px;
    width: 160px;
  }
}
@media(max-width:600px) {
  .kaiwa {
    align-items: flex-start;
    gap: 13px;
    margin: 24px 0;
  }
  .kaiwa-person {
    flex-basis: 72px;
  }
  .kaiwa-face {
    width: 72px;
    height: 72px;
    object-fit: contain;
    object-position: center top;
  }
  .kaiwa-name {
    margin-top: 5px;
    font-size: 11px;
  }
  .kaiwa-bubble {
    padding: 15px 16px;
    border-radius: 13px;
    font-size: 14px;
    line-height: 1.8;
  }
  .kaiwa-bubble::before {
    top: 20px;
    left: -9px;
    width: 14px;
    height: 14px;
  }
  .site-header {
    height: 64px
  }
  .logo img {
    height: 42px
  }
  .header-inner {
    padding: 0 15px
  }
  .logo {
    font-size: 19px
  }
  .logo-mark {
    width: 34px;
    height: 34px
  }
  .age {
    display: none
  }
  .header-inner > p {
    display: block;
    padding-left: 0;
    font-size: 12px;
    line-height: 1.45;
  }
  .header-inner > p .red {
    display: inline;
  }
  .header-inner > p .red::before {
    display: block;
    content: "";
  }
  .hero {
    height: 210px
  }
  .hero img {
    object-position: 58% center
  }
  .page-grid {
    padding: 24px 12px 58px;
    display: block
  }
  .article {
    padding: 20px 16px;
  }
  .breadcrumb {
    margin-bottom: 24px;
    white-space: nowrap;
    overflow: hidden
  }
  .article h1 {
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.5;
    letter-spacing: -.035em;
  }
  .article h1 br {
    display: none;
  }
  .latest-label {
    padding: 6px 13px;
    font-size: 13px;
  }
  .article-meta {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px
  }
  .article-fv {
    margin-bottom: 26px;
    border-radius: 3px
  }
  .intro p {
    font-size: 15px;
    line-height: 2;
    margin: 0 0 16px;
  }
  .intro-image {
    width: 100%;
    margin: 20px auto;
    border-radius: 5px;
  }
  .notice {
    padding: 18px;
    gap: 12px
  }
  .toc {
    padding: 0;
    overflow: hidden;
  }
  .toc-title {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
  }
  .toc-title .toc-toggle-icon {
    display: block;
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-left: auto;
  }
  .toc-toggle-icon::before, .toc-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--red);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
  }
  .toc-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .toc-title[aria-expanded="true"] .toc-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .toc ol {
    margin: 0 16px 10px;
  }
  .toc ol[hidden] {
    display: none;
  }
  .toc a {
    font-size: 12px
  }
  .toc a b {
    display: inline
  }
  .quick-compare table {
    min-width: 560px
  }
  .app-section {
    margin-top: 0;
    padding-top: 0;
    scroll-margin-top: 78px;
  }
  .article section > h2 {
    font-size: 18px;
  }
  .article .quick-compare > h2, .article .hopping-guide > h2, .article .final-summary > h2 {
    margin-bottom: 24px;
    padding: 10px 14px;
    font-size: 18px;
  }
  .compare-message p {
    font-size: 20px;
  }
  .compare-message p:first-child {
    font-size: 16px;
  }
  .section-rank {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 70px;
    gap: 10px;
    padding: 13px 12px;
  }
  .section-rank > img {
    width: 40px;
  }
  .section-score {
    width: 70px;
    padding: 8px 4px;
  }
  .section-rank h2 {
    font-size: 23px !important
  }
  .section-lead {
    font-size: 12px;
    line-height: 1.55;
  }
  .app-visual {
    height: auto
  }
  .real-review h3 {
    padding: 13px 14px;
    font-size: 16px;
  }
  .review-tab {
    padding: 13px 8px;
    font-size: 14px;
  }
  .review-points {
    padding: 4px 16px;
  }
  .review-points li {
    display: block;
    padding: 18px 0;
  }
  .review-point-photo {
    width: 100%;
    height: 180px;
    margin-bottom: 14px;
  }
  .real-review {
    margin-bottom: 26px;
  }
  .real-review .review-points h3 {
    align-items: flex-start;
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
  }
  .review-points h3 > span:first-child {
    margin-top: 1px;
  }
  .real-review table, .real-review tbody, .real-review tr, .real-review th, .real-review td {
    display: block;
    width: 100%;
  }
  .real-review tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }
  .real-review tr:last-child {
    border-bottom: 0;
  }
  .real-review th, .real-review td {
    padding: 0;
    border: 0;
    background: transparent;
  }
  .real-review th {
    width: auto;
    margin-bottom: 0;
    font-size: 14px;
  }
  .real-review .review-stars {
    width: auto;
    margin-bottom: 0;
    padding-right: 0;
    justify-self: end;
  }
  .real-review td:last-child {
    grid-column: 1 / -1;
    margin-top: 9px;
    padding-left: 0;
  }
  .app-visual span {
    font-size: 17px
  }
  .feature-box {
    padding: 22px 20px
  }
  .feature-box li {
    align-items: flex-start
  }
  .info-grid {
    grid-template-columns: 1fr
  }
  .info-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }
  .smart, .conclusion {
    padding: 26px 20px
  }
  .hopping-guide {
    margin-top: 52px;
  }
  .final-summary {
    margin-top: 52px;
  }
  .hopping-highlight {
    padding: 20px 18px;
  }
  .hopping-highlight h3 {
    font-size: 17px;
  }
  .hopping-steps li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    row-gap: 8px;
    padding: 16px;
  }
  .hopping-number {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    flex-basis: 35px;
    font-size: 23px;
  }
  .hopping-icon {
    width: 58px;
    height: 58px;
    border-radius: 11px;
  }
  .hopping-brand {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    flex-basis: 58px;
  }
  .hopping-download {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    min-width: 0;
  }
  .hopping-detail {
    display: contents;
  }
  .hopping-copy {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
  .hopping-download {
    margin-top: 5px;
  }
  .sp-only {
    display: initial;
  }
  .primary-cta span {
    font-size: 16px
  }
}
@media(max-width:380px) {
  .page-grid {
    padding-right: 8px;
    padding-left: 8px;
  }
  .article {
    padding-right: 13px;
    padding-left: 13px;
  }
  .section-rank {
    grid-template-columns: 42px minmax(0, 1fr) 66px;
    gap: 8px;
    padding-right: 9px;
    padding-left: 9px;
  }
  .section-rank > img {
    width: 42px;
  }
  .section-score {
    width: 66px;
  }
  .section-rank h2 {
    font-size: 21px !important;
  }
  .review-tab {
    font-size: 13px;
  }
}
@media (max-width: 760px) {
  .compare-scroll, .compare-message {
    display: none;
  }
}
@media (max-width: 600px) {
  .review-tab-list-bottom {
    display: grid;
    border-top: 2px solid var(--red);
    border-bottom: 0;
  }
  .br-sp {
    display: inline !important;
  }
  .br-pc {
    display: none !important;
  }
}
