@charset "UTF-8";

/* ========================================================
ベース設定
=========================================================*/
:root {
  /* カラー */
  --Text: #000;
  --Text2: #494949;
  --Text_blue: #1A0DAB;
  --Main: #04BDED;
  --Sub: #F75E2F;
  --Yellow: #FFF353;
  --Green: #12BB2D;
  --Gray: #F6F6F6;
  --Light_blue: #E5EDF9;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Noto Sans JP Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Noto Sans JP Regular.woff") format("woff");
  font-display: swap;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: var(--Text);
}

.body {
  counter-reset: number 0;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.forPC {
  display: none;
}

.forSP {
  display: block;
}

p {
  font-size: 0.875rem;
}

a {
  font-weight: bold;
  text-decoration: underline;
  color: var(--Text_blue);
}

/* ========================================================
共通パーツ
=========================================================*/
/* インナー */
.inner {
  padding-inline: 20px;
}

/* 文字装飾 */
.bold,
.strong {
  font-weight: bold;
}

.accent,
.orange {
  color: var(--Sub);
  font-weight: bold;
}

.underline {
  background-image: repeating-linear-gradient(45deg, var(--Yellow) 0, var(--Yellow) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% .65em;
  font-weight: bold;
}

.notes {
  font-size: 10px;
  margin-top: 4px;
}

.small_notes {
  font-size: 10px;
  vertical-align: top;
}

/* 区切り線 */
.line {
  background-image: linear-gradient(to right,
      var(--Text),
      var(--Text) 1px,
      transparent 1px,
      transparent 3px);
  background-size: 3px 0.625rem;
  background-repeat: repeat-x;
  width: 100%;
  height: 0.625rem;
  position: absolute;
}

/* 余白 */
.body .fontSize--10px {
  font-size: 0.625rem;
}

.body .fontSize--11px {
  font-size: 0.687rem;
}

.body .fontSize--12px {
  font-size: 0.75rem;
}

.body .fontSize--13px {
  font-size: 0.812rem;
}

.body .fontSize--14px {
  font-size: 0.875rem;
}

.body .fontSize--15px {
  font-size: 0.937rem;
}

.body .fontSize--16px {
  font-size: 1rem;
}

/* CTAボタン */
.ctaBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-bottom: 3px solid rgba(58, 65, 111, 0.5);
  border-radius: 5px;
  width: 100%;
  min-height: 65px;
  padding: 4px 32px;
  background-color: var(--Green);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  text-shadow: 2px 2px #296162;
}

.ctaBtn span::after {
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_arrow_white_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* パンくず */
.breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px 4px;
  flex-wrap: wrap;
  background-color: #F5F5F5;
  padding: 6px 10px;
}

.breadcrumb__item {
  position: relative;
}

.breadcrumb__item:not(:last-child) {
  padding-right: 28px;
}

.breadcrumb__item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  width: 12px;
  height: 12px;
  background-image: url(../img/ico_arrow_blue_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.breadcrumb__home {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb__home img {
  width: 16px;
  height: auto;
  object-fit: contain;
}

.breadcrumb__home-txt {
  display: inline-block;
  color: var(--Text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-decoration: underline;
  white-space: nowrap;
}

.breadcrumb__link {
  display: block;
  color: var(--Text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.breadcrumb__current {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* ========================================================
CTA animation
======================================================== */
.flash {
  position: relative;
  overflow: hidden;
}
.flash::before {
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-name: blinnking-cta;
  animation-timing-function: ease-in-out;
  background-image: linear-gradient(100deg, hsla(0, 0%, 100%, 0) 10%, #fff 100%, hsla(0, 0%, 100%, 0) 0);
  content: "";
  height: 50px;
  left: -100px;
  position: absolute;
  top: -100px;
  width: 50px;
}
@keyframes blinnking-cta {
  0% {
      opacity: 0;
      transform: scale(0) rotate(25deg);
  }
  50% {
      opacity: 1;
      transform: scale(1) rotate(25deg);
  }
  100% {
      opacity: 0;
      transform: scale(50) rotate(25deg);
  }
}

/* ========================================================
ヘッダー
=========================================================*/
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 9px;
  background-color: #fff;
}

.header--lower {
  margin-top: 32px;
}

.header__logo {
  width: 147px;
}

.header__logo-link {
  display: block;
}

.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 広告表記 */
.adTxt {
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  background-color: #fff;
}

.adTxt__pr {
  border: 1px solid var(--Text);
  /* 枠色 変数名がTextでない場合は変更 */
  padding: 2px 8px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
}

/* ========================================================
mv
=========================================================*/
.mv {
  position: relative;
}

.mv img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mv__date {
  position: absolute;
  top: 6%;
  left: 4%;
  z-index: 2;
  width: fit-content;
  color: var(--Cta);
  font-size: calc(11 / 375 * 100vw);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.mv__date span {
  font-size: 12px;
}

.mv__area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 9%;
  left: 19%;
  width: calc(92 / 375 * 100vw);
  height: calc(30 / 375 * 100vw);
}

.mv__area-txt {
  color: var(--Main);
  font-size: calc(22 / 375 * 100vw);
  font-weight: bold;
  line-height: 1;
}

/* トップ */
body.top .mv__date {
  top: 6%;
  left: 16.2%;
}

/* ========================================================
BEST3
=========================================================*/
.best3 {
  margin-top: 24px;
}

.best3__ttl {
  padding-inline: 4px;
}

.best3__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.best3__inner {
  padding-inline: 10px;
}

.best3__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 24px;
}

.best3__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.best3__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid #BBB;
  border-left: 1px solid #BBB;
  border-right: 1px solid #BBB;
  border-radius: 8px 8px 0 0;
  padding: 30px 2px 12px;
  background-color: var(--Gray);
}

.best3__item:first-child .best3__body {
  border-top: 3px solid var(--Sub);
  border-left: 3px solid var(--Sub);
  border-right: 3px solid var(--Sub);
  background-color: #FFFDDD;
}

.best3__rank {
  position: absolute;
  top: -17px;
  left: 50%;
  translate: -50% 0;
  width: 42px;
  height: 48px;
  object-fit: contain;
}

.best3__sub-ttl {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.best3__price {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin-top: 4px;
}

.best3__item:first-child .best3__price {
  flex-direction: column;
  gap: 6px;
}

.best3__price img {
  height: auto;
  object-fit: contain;
}

.best3__price-before img {
  width: 46px;
}

.best3__price-after img {
  width: 86px;
}

.best3__item:nth-child(2) .best3__price img {
  width: 70px;
}

.best3__item:nth-child(3) .best3__price img {
  width: 59px;
}

.best3__txt {
  margin-top: 9px;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.best3__btn {
  display: block;
  position: relative;
  padding: 10px 16px 10px 8px;
  border-bottom: 2px solid rgba(58, 65, 111, 0.5);
  border-radius: 0 0 8px 8px;
  background-color: var(--Green);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.best3__btn::after {
  position: absolute;
  top: 50%;
  right: 7px;
  translate: 0 -50%;
  width: 12px;
  height: 12px;
  background-image: url(../img/ico_arrow_white_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.best3__attention {
  margin-top: 6px;
  font-size: 9px;
  line-height: 1;
  text-align: right;
}

/* ========================================================
3つの選び方
=========================================================*/
.choose {
  margin-top: 12px;
}

.choose__ttl {
  padding-inline: 10px;
}

.choose__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.choose__main {
  position: relative;
  margin: 12px 10px 0;
  border-radius: 4px;
  padding: 26px 10px 18px;
  background-color: var(--Main);
}

.choose__main::before {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  border-radius: 4px;
  width: 160px;
  height: 8px;
  background-color: #D9D9D9;
  content: "";
}

.choose__main::after {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  border: 8px solid #666666;
  border-radius: 4px;
  width: 99px;
  height: 32px;
  content: "";
}

.choose__list {
  background-color: #fff;
  padding: 20px 12px;
}

.choose__item {
  padding-block: 16px;
}

.choose__item:nth-child(n + 2) {
  border-top: 1px solid #BBB;
}

.choose__sub-ttl {
  position: relative;
  padding-left: 26px;
  color: #003F8D;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.choose__sub-ttl::before {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 2;
  width: 18px;
  height: 20px;
  background-image: url(../img/ico_checkbox_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}

.choose__sub-ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 4px;
  background-color: var(--Yellow);
  content: "";
}

.choose__lead {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

.choose__box {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  padding: 8px 10px;
}

.choose__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.choose__txt {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.choose__arrow {
  display: flex;
  justify-content: center;
  margin-block: 16px;
}

.choose__arrow img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.choose__cta {
  margin-inline: 20px;
  border: 1px solid #BBB;
  border-radius: 4px;
  padding: 20px;
  background-color: #F6F6F6;
}

.choose__cta-lead {
  color: var(--Main);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.choose__cta-ttl {
  position: relative;
  margin-top: 6px;
  border-radius: 50px;
  padding: 8px;
  background-color: var(--Main);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.choose__cta-ttl::after {
  position: absolute;
  bottom: -11px;
  left: 50%;
  translate: -50% 0;
  width: 18px;
  height: 12px;
  background-color: var(--Main);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.choose__cta-img {
  display: block;
  margin-top: 16px;
}

.choose__cta-txt {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

.choose__cta-txt span {
  position: relative;
  display: inline-block;
  padding-inline: 16px;
}

.choose__cta-txt span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  content: "＼";
}

.choose__cta-txt span::after {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  content: "／";
}

.choose__cta-btn {
  margin-top: 4px;
}

.choose__cta-btn .ctaBtn {
  padding: 4px 32px 4px 16px;
  text-align: left;
}

.choose__cta-btn .ctaBtn span::after {
  right: 12px;
}

/* ========================================================
比較表
=========================================================*/
.hikaku {
  margin-top: 24px;
}

.hikaku__ttl {
  padding-inline: 10px;
}

.hikaku__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hikaku__wrap {
  margin-top: 16px;
  padding-inline: 4px;
}

.hikaku__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
}

.hikaku__table-row {

}

.hikaku__table-ttl {
  border: 1px solid #5B5B5B;
  width: 56px;
  padding: 10px 6px;
  background-color: #F5F5F5;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

.hikaku__table-data {
  position: relative;
  border: 1px solid #5B5B5B;
  padding: 10px 2px;
}

.hikaku__table-data:first-of-type {
  background-color: #FFFDDD;
}

.hikaku__table-rank {
  position: absolute;
  top: -8px;
  left: -9px;
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.hikaku__table-bnr {
  display: block;
  margin-inline: auto;
  width: 80px;
}

.hikaku__table-img-icon {

}

.hikaku__table-name {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.hikaku__table-icon {
  display: block;
  margin-inline: auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hikaku__table-txt {
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.hikaku__table-btn {
  display: block;
  margin-inline: auto;
  border-radius: 4px;
  padding: 7px 4px;
  width: 100%;
  max-width: 96px;
  background-color: var(--Green);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 2px solid rgba(58, 65, 111, 0.5);
  box-shadow: 0 2px 4px rgba(45, 35, 66, 0.4);
}

/* ========================================================
3つの選び方
=========================================================*/
.wakaru {
  margin-top: 12px;
}

.wakaru__ttl {
  padding-inline: 10px;
}

.wakaru__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wakaru__main {
  position: relative;
  margin: 12px 10px 0;
  border-radius: 4px;
  padding: 26px 10px 16px;
  background-color: var(--Sub);
}

.wakaru__main::before {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  border-radius: 4px;
  width: 160px;
  height: 8px;
  background-color: #D9D9D9;
  content: "";
}

.wakaru__main::after {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  border: 8px solid #666666;
  border-radius: 4px;
  width: 99px;
  height: 32px;
  content: "";
}

.wakaru__list {
  background-color: #fff;
  padding: 20px 12px;
}

.wakaru__item {
  border-bottom: 1px solid #BBB;
  padding-block: 16px;
}

.wakaru__sub-ttl {
  position: relative;
  padding-left: 26px;
  color: var(--Sub);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.wakaru__sub-ttl::before {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 2;
  width: 18px;
  height: 20px;
  background-image: url(../img/ico_checkbox_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}

.wakaru__sub-ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 4px;
  background-color: var(--Yellow);
  content: "";
}

.wakaru__box {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  padding: 8px 10px;
}

.wakaru__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.wakaru__sub-list {

}

.wakaru__sub-item {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.wakaru__sub-item::before {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 4px;
  height: 4px;
  background-color: var(--Text);
  border-radius: 50%;
  content: "";
}

.wakaru__txt {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.wakaru__bulb {
  background-color: #fff;
  padding: 0 12px 16px;
}

.wakaru__bulb-content {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  padding: 12px 8px;
  background-color: #FFFDDD;
}

.wakaru__bulb img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.wakaru__bulb-txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ========================================================
ランキング
=========================================================*/
.ranking {
  margin-top: 24px;
  counter-reset: rank 3;
}

.ranking__ttl {
  padding-inline: 4px;
}

.ranking__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ranking__inner {

}

.ranking__contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 10px;
}

.ranking__item {

}

.ranking__head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 10px;
  padding-inline: 10px;
}

.ranking__rank {
  position: relative;
}

.ranking__item:nth-child(1) .ranking__rank,
.ranking__item:nth-child(2) .ranking__rank,
.ranking__item:nth-child(3) .ranking__rank {
  width: 42px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ranking__item:nth-child(1) .ranking__rank {
  background-image: url(../img/ico_rank_01.svg);
}

.ranking__item:nth-child(2) .ranking__rank {
  background-image: url(../img/ico_rank_02.svg);
}

.ranking__item:nth-child(3) .ranking__rank {
  background-image: url(../img/ico_rank_03.svg);
}

.ranking__item:nth-child(4) .ranking__rank,
.ranking__item:nth-child(5) .ranking__rank,
.ranking__item:nth-child(6) .ranking__rank,
.ranking__item:nth-child(7) .ranking__rank,
.ranking__item:nth-child(8) .ranking__rank,
.ranking__item:nth-child(9) .ranking__rank,
.ranking__item:nth-child(10) .ranking__rank,
.ranking__item:nth-child(11) .ranking__rank,
.ranking__item:nth-child(12) .ranking__rank,
.ranking__item:nth-child(13) .ranking__rank,
.ranking__item:nth-child(14) .ranking__rank,
.ranking__item:nth-child(15) .ranking__rank {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background-color: var(--Main);
}

.ranking__item:nth-child(4) .ranking__rank::before,
.ranking__item:nth-child(5) .ranking__rank::before,
.ranking__item:nth-child(6) .ranking__rank::before,
.ranking__item:nth-child(7) .ranking__rank::before,
.ranking__item:nth-child(8) .ranking__rank::before,
.ranking__item:nth-child(9) .ranking__rank::before,
.ranking__item:nth-child(10) .ranking__rank::before,
.ranking__item:nth-child(11) .ranking__rank::before,
.ranking__item:nth-child(12) .ranking__rank::before,
.ranking__item:nth-child(13) .ranking__rank::before,
.ranking__item:nth-child(14) .ranking__rank::before,
.ranking__item:nth-child(15) .ranking__rank::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  counter-increment: rank 1;
  content: counter(rank);
}

.ranking__ttl {

}

.ranking__ttl-lead {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.ranking__ttl-link {
  display: block;
  color: var(--Text_blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.ranking__main {
  padding: 0 10px 16px;
}

.ranking__bnr {
  display: block;
  margin-top: 16px;
}

.ranking__bnr img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ranking__table {
  margin-top: 16px;
  border: 1px solid #5B5B5B;
  border-radius: 4px;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  overflow: clip;
}

.ranking__table-row {

}

.ranking__table-ttl {
  width: 104px;
  padding: 8px;
  background-color: var(--Gray);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
}

.ranking__table-row:nth-child(n + 2) .ranking__table-ttl {
  border-top: 1px solid #5B5B5B;
}

.ranking__table-data {
  border-left: 1px solid #5B5B5B;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

.ranking__table-row:nth-child(n + 2) .ranking__table-data {
  border-top: 1px solid #5B5B5B;

}

.ranking__point {
  margin-top: 16px;
  border-top: 1px solid var(--Text);
  border-bottom: 1px solid var(--Text);
  border-left: 4px solid var(--Text);
  border-right: 4px solid var(--Text);
  padding: 20px;
}

.ranking__point-ttl {
  display: flex;
  justify-content: center;
}

.ranking__point-ttl img {
  width: 83px;
  height: auto;
  object-fit: contain;
}

.ranking__point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.ranking__point-item {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.ranking__point-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.ranking__point-item:nth-child(1)::before {
  background-image: url(../img/ico_check_01.svg);
}

.ranking__point-item:nth-child(2)::before {
  background-image: url(../img/ico_check_02.svg);
}

.ranking__point-item:nth-child(3)::before {
  background-image: url(../img/ico_check_03.svg);
}

.ranking__point-item:nth-child(4)::before {
  background-image: url(../img/ico_check_04.svg);
}

.ranking__point-item:nth-child(5)::before {
  background-image: url(../img/ico_check_05.svg);
}

.ranking__cta {
  padding: 24px 20px 32px;
  background-color: var(--Gray);
}

.ranking__cta-box {
  border: 1px solid #BBB;
  border-radius: 4px;
  padding: 20px;
  background-color: #fff;
}

.ranking__logo {
  display: flex;
  justify-content: center;
}

.ranking__logo img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.ranking__lead {
  margin-top: 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

.ranking__lead span {
  position: relative;
  display: inline-block;
  padding-inline: 16px;
}

.ranking__lead span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  content: "＼";
}

.ranking__lead span::after {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  content: "／";
}

.ranking__btn {
  margin-top: 4px;
}

/* ========================================================
# 検索フォーム
======================================================== */
.search {
  margin-top: 24px;
  background-color: var(--Gray);
}

.search__ttl {
  padding-inline: 10px;
}

.search__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.form__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 20px;
}

.form__ttl {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
}

.form__ttlSub {
  color: var(--Sub);
}

.form__desc {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.form__desc--age {
  grid-template-columns: repeat(2, 1fr);
}

.form__desc--item {
  grid-template-columns: repeat(3, 1fr);
}

.form__desc--kodawari {
  grid-template-columns: 1fr;
}

.form__label input,
.form__label2 input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.form__label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
  position: relative;
  border: 1px solid var(--Text2);
  border-radius: 2px;
  padding: 14px 10px;
  background-color: #fff;
}

.form__txt,
.form__txt2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

.form__txt.form__txt--sm {
  font-size: 12px;
}

.form__txt2 {
  display: block;
  margin-top: 8px;
  text-align: center;
}

.form__label:has(input[type="radio"])::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  background-color: #fff;
}

.form__label:has(input[type="checkbox"])::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #AAAAAA;
  background-color: #fff;
}

.form__label:has(input[type="radio"]:checked),
.form__label:has(input[type="checkbox"]:checked),
.form__label2:has(input[type="checkbox"]:checked) {
  border-color: var(--Main);
  background-color: #D9F7FF;
  box-shadow: 0 0 0 2px var(--Main);
}

.form__label:has(input[type="radio"])::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 15px;
  translate: 0 -50%;
  background-color: var(--Main);
  opacity: 0;
}

.form__label:has(input[type="checkbox"])::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 13px;
  translate: 0 -50%;
  background: url(../img/ico_form_check.svg) no-repeat center center / contain;
  opacity: 0;
}

.form__label:has(input[type="radio"]:checked)::after,
.form__label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.form__label2 {
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 14px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.form__label2 img {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.form__label2.form__label2--all img {
  width: 32px;
}

.form__btns {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 8px;
  text-align: center;
}

.form__clear-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--Text);
  border-radius: 4px;
  min-height: 56px;
  background-color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.form__search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 61px;
  border-bottom: 5px solid #0092BB;
  border-radius: 4px;
  background-color: var(--Main);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
}

.form__search-btn span {
  position: relative;
  display: inline-block;
  padding-right: 33px;
}

.form__search-btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background-image: url(../img/ico_arrow_white_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* ========================================================
検索結果ページ
=========================================================*/
/* トップ */
.result-top {

}

.result-top__ttl {

}

.result-top__ttl img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.result-top__wrap {
  position: relative;
  margin: 16px 10px 0;
  border-radius: 4px;
  padding: 26px 10px 24px;
  background-color: var(--Main);
}

.result-top__wrap::before {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  border-radius: 4px;
  width: 160px;
  height: 8px;
  background-color: #D9D9D9;
  content: "";
}

.result-top__wrap::after {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  border: 8px solid #666666;
  border-radius: 4px;
  width: 99px;
  height: 32px;
  content: "";
}

.result-top__content {
  background-color: #fff;
  padding: 36px 12px 16px;
}

.result-top__conditions {
  margin-inline: auto;
  border-radius: 50px;
  max-width: 162px;
  width: 100%;
  background-color: var(--Main);
  padding: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.result-top__list {

}

.result-top__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4px;
  padding-block: 8px;
}

.result-top__item:nth-child(n + 2) {
  border-top: 1px solid #BBB;
}

.result-top__item-ttl {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.result-top__item-ttl::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 20px;
  background-image: url(../img/ico_checkbox_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.result-top__item-txt {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.result-top__item-txt.right {
  text-align: right;
}

/* ランキング */
.ranking.result {
  margin-top: 42px;
}


/* ========================================================
まとめ
=========================================================*/
.matome__wrap {
  padding: 24px 20px 32px;
}

.matome__arrow {
  display: flex;
  justify-content: center;
}

.matome__arrow img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.matome__head {
  position: relative;
  margin-top: 16px;
  padding: 24px 12px;
  background-color: var(--Light_blue);
}

.matome__head::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  translate: -50% 0;
  width: 24px;
  height: 16px;
  background-color: var(--Light_blue);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.matome__ttl {
  display: flex;
  justify-content: center;
}

.matome__ttl span {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--Main);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
}

.matome__lead {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

.matome__content {
  margin-top: 32px;
}

.matome__img {
  display: block;
}

.matome__body {
  padding: 20px;
  background-color: var(--Light_blue);
}

.matome__txt {
  font-size: 14px;
  line-height: 1.5;
}

.matome__cta {
  padding: 24px 20px 32px;
  background-color: var(--Gray);
}

.matome__cta-box {
  border: 1px solid #BBB;
  border-radius: 4px;
  padding: 20px;
  background-color: #fff;
}

.matome__logo {
  display: flex;
  justify-content: center;
}

.matome__logo img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.matome__btn-lead {
  margin-top: 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

.matome__btn-lead span {
  position: relative;
  display: inline-block;
  padding-inline: 16px;
}

.matome__btn-lead span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  content: "＼";
}

.matome__btn-lead span::after {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
  content: "／";
}

.matome__btn {
  margin-top: 4px;
}

/* ========================================================
ナビゲーション
=========================================================*/
.nav {
  padding-block: 32px;
}

.nav__contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.nav__ttl {
  padding: 2px 8px;
  background-color: var(--Main);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.nav__list {
  margin-top: 8px;
}

.nav__item {
  border-bottom: 1px solid #222;
}

.nav__link {
  display: block;
  padding-block: 16px;
  color: var(--Text);
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}

/* ========================================================
フッター
=========================================================*/
.footer {
  background-color: #7A7A7A;
  padding: 28px 20px 15px;
}

.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer__link {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}

.footer__copyright {
  margin-top: 15px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}