@charset "UTF-8";

/* ========================================================
ベース設定
=========================================================*/
:root {
  /* カラー */
  --Text: #333;
  --Text_blue: #1a0dab;
  --Link_color: #2024ad;
  --Main: #3c4191;
  --Accent: #ff8801;
  --Sub: #edeef2;
  --Back: #edeef2;
  --gray: #364048;
  --red: #f07d6d;
  --pink: #f07d6d;
  --yellow: #fffcbe;
  --orange: #ff8902;
  --beige: #fdfaf5;
  --Contents_size: 100%;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/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("../font/Noto Sans JP Regular.woff") format("woff");
  font-display: swap;
}

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

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  background-color: #fff;
  color: #333;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  counter-reset: number 0;
  word-break: break-word;
  /* break-wordは非推奨のため、word-breakを使用 */
}

.forPC {
  display: none;
}

.forPC-inline {
  display: none;
}

.forSP {
  display: block;
}

p {
  font-size: 1.6rem;
}

p+p {
  margin-top: 0.5em;
}

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

s {
  font-size: 14px;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: bold;
}

.red {
  color: #FB3043;
  font-weight: bold;
}

/* 広告 */
.adTxt {
  text-align: right;
  max-width: 100%;
  padding: 0 10px;
  /* 左右余白 LPに合わせて調整 */
  margin: 8px auto;
}

.adTxt span {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--Text);
  /* 枠色 変数名がTextでない場合は変更 */
  padding: 2px 14px;
}

/* ========================================================
共通
=========================================================*/
.marker {
  background: linear-gradient(transparent 68%, var(--yellow) 68%);
  display: inline;
  font-weight: bold;
}

/* CTAボタン */
.cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 50px;
  width: 100%;
  min-height: 34px;
  padding: 5px 20px;
  background-color: #FB3043;
  color: #fff;
  font-size: 12px;
  line-height: calc(18 / 12);
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ========================================================
トップページ
=========================================================*/
.topSection__ttl {
  margin: 0 -15px;
}

.topSection__ttl img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.header__inner img {
  display: block;
  margin: 0 auto;
  width: calc(100% + 40px);
  height: auto;
}

.header__inner,
.topSection__inner {
  width: var(--Contents_size);
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.header__inner {
  margin: 0;
  padding: 0;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 94px;
  height: 32px;
}

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

.header__top .adTxt {
  margin: 0;
  padding: 0 5px;
}

/* ========================================================
キャンペーン
=========================================================*/
.topCampaign {
  margin-top: 15px;
}

.topCampaign__inner {
  margin: auto;
  padding: 0 10px;
  width: var(--Contents_size);
  box-sizing: border-box;
}

.topCampaign__container {
  border-radius: 4px;
}

.topCampaign__date {
  margin-top: 5px;
  padding-right: 5px;
}

.topCampaign__date-text {
  font-size: 12px;
  line-height: calc(20 / 12);
  text-align: right;
}

.topCampaign__ttl {
  padding-top: 5px;
  text-align: center;
}

.topCampaign__ttl img {
  display: block;
  margin: 0 auto;
}

.topCampaign__closing {
  padding: 9px 16px;
  background-color: #2c2b5d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(20 / 16);
  text-align: center;
}

/* .topCampaign__closing--img--emma img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
} */

.topCampaign__closing span {
  line-height: calc(20 / 14);
}

.topCampaign__main {
  padding: 5px;
}

.topCampaign__cards {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(2, 1fr);
}

.topCampaign-card {
  display: flex;
  flex-direction: column;
  padding: 6px 4px;
  background-color: var(--yellow);
}

.topCampaign-card__img-link {
  display: block;
}

.topCampaign-card__img img {
  aspect-ratio: 59 / 40;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topCampaign-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 10px;
}

.topCampaign-card__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: calc(16 / 12);
  text-align: center;
}

.topCampaign-card__price {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: calc(19 / 16);
  text-align: center;
}

.topCampaign-card__price-before {
  display: block;
  font-weight: 300;
}

.topCampaign-card__price-after {
  display: block;
  margin-top: 2px;
  font-weight: 600;
}

.topCampaign-card__price-txt {
  font-size: 11px;
}

.topCampaign-card__bottom {
  margin-top: 10px;
  text-align: center;
}

.topCampaign-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px auto 0;
  padding-right: 15px;
  border-radius: 40px;
  width: 100%;
  min-height: 34px;
  background-color: #FB3043;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.topCampaign-card__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.topCampaign__note {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: -0.02em;
  line-height: calc(19 / 10);
  text-align: right;
}

.topCampaign-coupon {
  background-color: var(--yellow);
  border: 1px solid #2c2b5d;
}

.topCampaign-coupon__inner {
  margin: auto;
  max-width: 300px;
  width: 100%;
  padding-inline: 20px;
}

.topCampaign-coupon__txt {
  font-size: 14px;
  font-weight: 600;
  line-height: calc(20 / 14);
  text-align: center;
}

.topCampaign-coupon__code {
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.topCampaign-coupon__link {
  display: block;
  margin-top: 0px;
}

.topCampaign-coupon__link img {
  aspect-ratio: 240 / 100;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================
SEC01
=========================================================*/
.topSection01 {
  margin-top: 10px;
}

.topSection01 .topSection__ttl {
  max-width: 700px;
  margin: 0 auto;
}

.topSection01 .topSection__inner {
  padding: 5px 15px 30px;
  background-color: #fdfaf5;
}

.topSection01__table-scroll {
  overflow-x: scroll;
  margin-left: 0px;
}

.sticky_th {
  width: 15.75757576%;
  position: sticky;
  left: 0;
  z-index: 5;
  border-left: none;
  background-color: #fff;
  border-left: none;
}

.topSection01__table {
  margin: 20px auto;
  border: 1px solid var(--Main);
  background-color: #fff;
  width: 582px;
  border-left: none;
  border-right: none;
  table-layout: fixed;
  border-collapse: collapse;
}

.topSection01__table thead th,
.topSection01__table tbody th {
  border: 1px solid var(--Main);
  background-color: var(--Sub);
  color: var(--Main);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-sizing: border-box;
  padding: 5px 0;
  vertical-align: middle;
}

/* 
.topSection01__table tbody tr th{
}
.topSection01__table tbody tr th::before{
  position: absolute;
  content: "";
  border-top:1px solid var(--Main);
  border-bottom:1px solid var(--Main);
  width: 100%;
  top: 0;
  left: 0;
} */

.topSection01__table thead th:nth-last-of-type(1) {
  border-radius: 1px solid var(--Main);
}

.topSection01__table thead th:nth-of-type(1) {
  width: 70px;
}

.topSection01__table thead td:nth-of-type(1) {
  width: 160px;
}

.topSection01__table thead td:nth-of-type(2) {
  width: 160px;
}

.topSection01__table thead td:nth-of-type(3) {
  width: 160px;
}

.topSection01__table thead td {
  border: 1px solid var(--Main);
  padding: 8px;
  text-align: center;
}

.topSection01__table tbody td {
  border: 1px solid var(--Main);
  padding: 10px;
  font-size: 1.2rem;
  vertical-align: top;
  text-align: center;
}

.topSection01__table tbody th {
  padding: 10px 5px;
}

.topSection01__table tbody td s {
  font-size: 12px;
}

.topSection01__table tbody td span {
  font-size: 14px;
}

.topSection01__table tbody td:nth-of-type(1) img {
  width: 170px;
}

.topSection01__table tbody td:nth-of-type(2) img {
  width: 130px;
}

.topSection01__table tbody td:nth-of-type(3) img {
  width: 130px;
}

.topSection01__table-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px auto 0;
  border-radius: 40px;
  width: 100%;
  min-height: 34px;
  background-color: #FB3043;
  color: #fff;
  line-height: 30px;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.topSection01__table-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* .topSection01__table tbody tr:first-of-type td:nth-of-type(6) a{
  line-height: 1.2;
  padding: 4px 0px;
  margin-top: 4px;
} */

.topSection01__table tbody th img {
  width: 140px;
  margin: 1px 0;
}

.topSection01__table-rank {
  text-align: center;
}

.topSection01__table-rank img {
  height: 30px;
}

.topSection01__table-link {
  display: block;
  text-align: center;
}

.topSection01__table-link img {
  width: 170px;
  height: 80px;
  object-fit: contain;
}

.topSection01__table-link span {
  display: block;
  font-size: 14px;
}

/* .topSection01__table-icon {
  margin: 0 auto 5px;
  width: 30px;
  height: 30px;
} */

.topSection01__table-dublecircle,
.topSection01__table-circle,
.topSection01__table-triangle {
  margin: 0 auto 5px;
  width: 30px;
  height: 30px;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.topSection01__table-dublecircle {
  background-color: var(--orange);
  -webkit-mask-image: url(../img/icon_dublecircle.svg);
  mask-image: url(../img/icon_dublecircle.svg);
}

.topSection01__table-circle {
  -webkit-mask-image: url(../img/icon_circle.svg);
  mask-image: url(../img/icon_circle.svg);
  background-color: #7FDA69;
}

.topSection01__table-triangle {
  -webkit-mask-image: url(../img/icon_triangle.svg);
  mask-image: url(../img/icon_triangle.svg);
  background-color: #707F89;
}

.topSection01__box-copy {
  width: calc(100% - 70px);
  border-radius: 4px;
  background-color: var(--Main);
  color: #fff;
  line-height: 32px;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 30px auto;
  position: relative;
}

.topSection01__box-copy::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: var(--Main) transparent transparent transparent;
}

.topSection01__box-copy li span {
  color: var(--yellow);
}

.topSection01__box-copy li {
  display: block;
  margin-right: 0px;
}

.topSection01__box-copy li::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("../img/cm_check_ico02.svg");
  margin-right: 6px;
}

.topSection01__box-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin: 15px auto 0;
  color: var(--Main);
}

.topSection01__box-mess {
  display: block;
  width: 233px;
  margin: 30px auto 0;
  color: var(--Main);
  text-align: center;
  position: relative;
  font-weight: bold;
}

.topSection01__box-mess::before {
  content: "";
  width: 20px;
  height: 24px;
  background-size: 20px 24px;
  display: inline-block;
  background-image: url("../img/ct_box_slash.svg");
  transform: scale(-1, 1);
  position: absolute;
  left: -1px;
  bottom: 0;
}

.topSection01__box-mess::after {
  content: "";
  width: 20px;
  height: 24px;
  background-size: 20px 24px;
  display: inline-block;
  background-image: url("../img/ct_box_slash.svg");
  position: absolute;
  right: -1px;
  bottom: 0;
}

.topSection01__box-limited {
  margin-block: 10px 20px;
}

.topSection01__box-limited img {
  display: block;
  margin-inline: auto;
}

.topSection01__box-bnr {
  width: 100%;
  margin: 0 auto 0;
}

.topSection01__box-bnr a {
  display: block;
  position: relative;
  text-decoration: none;
}

.topSection01__box-bnr-ttl {
  display: block;
  position: absolute;
  top: 4vw;
  right: 8.53vw;
  width: fit-content;
  color: #fff;
  font-size: 2.93vw;
  font-weight: bold;
  line-height: calc(13.2 / 11);
  text-align: center;
}

.topSection01__box-bnr-max {
  position: absolute;
  top: 12.8vw;
  right: 4.27vw;
  color: #fff;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.topSection01__box-bnr-sale {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: clamp(14vw, 16.5vw, 19vw);
  right: 8vw;
  color: #fffcc6;
  font-weight: bold;
  text-align: center;
}

.topSection01__box-bnr-num {
  font-family: "Noto Serif JP", serif;
  font-size: 10.13vw;
  line-height: 1;
}

.topSection01__box-bnr-num span,
.topSection01__box-bnr-off {
  font-size: 6.4vw;
  line-height: 1;
}

.topSection01__box-btn {
  display: block;
  position: relative;
  margin: 4px auto 0;
  border-radius: 50px;
  width: 100%;
  padding: 9px 20px;
  background-color: #FB3043;
  color: #fff;
  line-height: calc(22.5 / 15);
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.topSection01__box-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ========================================================
SEC02
=========================================================*/
.topSection02 .topSection__inner {
  background-color: #fff;
}

.topSection02__scroll {
  overflow-x: scroll;
  margin-left: 0px;
}

.topSection02__list {
  display: flex;
  gap: 20px;
  width: 960px;
  overflow-x: scroll;
  margin: 20px auto 30px;
}

.topSection02__list-item {
  width: 300px;
  border: 1px solid var(--Main);
  border-radius: 4px;
  background-color: #fdfaf5;
  padding: 20px;
  box-sizing: border-box;
  font-size: 1.4rem;
}

.topSection02__list-itemTtl {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 0 3px;
  border-bottom: 1px solid var(--Main);
  color: var(--Main);
  position: relative;
  margin-left: 40px;
}

.topSection02__list-itemImg {
  width: 100%;
  vertical-align: bottom;
  margin-top: 20px;
}

.topSection02__list-itemCopy {
  color: var(--Main);
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}

#SEC02 ul li:nth-child(1)>span.topSection02__list-itemTtl::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/ct_top_choice_num01.svg");
  margin-right: 10px;
  position: absolute;
  left: -40px;
}

#SEC02 ul li:nth-child(2)>span.topSection02__list-itemTtl::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/ct_top_choice_num02.svg");
  margin-right: 10px;
  position: absolute;
  left: -40px;
}

#SEC02 ul li:nth-child(3)>span.topSection02__list-itemTtl::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/ct_top_choice_num03.svg");
  margin-right: 10px;
  position: absolute;
  left: -40px;
}

/* ========================================================
SEC03 FORM
=========================================================*/

.topSection03 .topSection__inner {
  background-color: var(--Sub);
  padding: 0 15px 30px;
}

.refineSearch__box {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.refineSearch__box-ttl {
  font-weight: bold;
  color: var(--Main);
  font-size: 1.6rem;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
  margin: 30px 0 15px;
  line-height: 1;
}

.size__list .refineSearch__box-ttl {
  margin-top: 10px;
}

.refineSearch__box-ttl small {
  font-weight: normal;
  font-size: 1.4rem;
}

.refineSearch__cta {
  margin: 30px auto 0;
  position: relative;
}

.refineSearch__reset {
  width: 80px;
  line-height: 50px;
  border: 1px solid var(--Main);
  border-bottom: 3px solid var(--Main);
  background-color: #fff;
  color: #333;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 4px;
  font-weight: bold;
}

.refineSearch__noSubmit,
.refineSearch__submit {
  position: absolute;
  right: 0%;
  width: 210px;
  margin-left: 0px;
  line-height: 50px;
  border: 1px solid var(--Main);
  border-bottom: 3px solid var(--Main);
  background-color: var(--Main);
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 40px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.refineSearch__noSubmit {
  opacity: 0.4;
}

.refineSearch__reset:hover,
.refineSearch__submit:hover {
  cursor: pointer;
  opacity: 0.8;
}

.refineSearch__count {
  width: 47px;
  line-height: 53px;
  color: #333;
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
  display: inline-block;
}

.nayami__list {}

.nayami__list .refineSearch__input {
  grid-template-columns: 1fr;
  display: grid;
  gap: 10px;
}

.price__list {}

.price__list .refineSearch__input {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 10px;
}

.kodawari__list {}

.kodawari__list .refineSearch__input {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 10px;
}

.radiobtn_text,
.checkbox_text {
  padding: 0 10px;
  line-height: 50px;
  border-radius: 4px;
  transition: 0.3s;
  background-color: #fff;
  border: 1px solid var(--Main);
  font-weight: bold;
}

.radiobtn_text.on,
.checkbox_text.on {
  background-color: var(--yellow);
}

.radiobtn_text:hover,
.checkbox_text:hover {
  cursor: pointer;
  opacity: 0.6;
}

.radiobtn_text input,
.checkbox_text input {
  opacity: 0;
  position: absolute;
}

.nayami__list .refineSearch__input label,
.kodawari__list .refineSearch__input label {
  line-height: 1.2;
  padding-top: 5px;
  padding-left: 48px;
  height: 52px;
  box-sizing: border-box;
  position: relative;
}

.nayami__list .refineSearch__input label:nth-child(1)::before,
.nayami__list .refineSearch__input label:nth-child(2)::before,
.nayami__list .refineSearch__input label:nth-child(3)::before,
.kodawari__list .refineSearch__input label:nth-child(1)::before,
.kodawari__list .refineSearch__input label:nth-child(2)::before,
.kodawari__list .refineSearch__input label:nth-child(3)::before,
.kodawari__list .refineSearch__input label:nth-child(4)::before,
.kodawari__list .refineSearch__input label:nth-child(5)::before,
.kodawari__list .refineSearch__input label:nth-child(6)::before,
.kodawari__list .refineSearch__input label:nth-child(7)::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/ct_refine_ico01.png);
  background-size: 30px;
  margin-right: 10px;
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 10px;
}

.nayami__list .refineSearch__input label:nth-child(1),
.nayami__list .refineSearch__input label:nth-child(2),
.nayami__list .refineSearch__input label:nth-child(3),
.kodawari__list .refineSearch__input label:nth-child(1) {
  line-height: 36px;
  padding-left: 50px;
}

.nayami__list .refineSearch__input label:nth-child(2)::before {
  background-image: url("../img/ct_refine_ico02.png");
}

.nayami__list .refineSearch__input label:nth-child(3)::before {
  background-image: url("../img/ct_refine_ico03.png");
}

.kodawari__list .refineSearch__input label:nth-child(1)::before {
  background-image: url("../img/ct_refine_ico04.png");
}

.kodawari__list .refineSearch__input label:nth-child(2)::before {
  background-image: url("../img/ct_refine_ico05.png");
}

.kodawari__list .refineSearch__input label:nth-child(3)::before {
  background-image: url("../img/ct_refine_ico06.png");
}

.kodawari__list .refineSearch__input label:nth-child(4)::before {
  background-image: url("../img/ct_refine_ico07.png");
}

.kodawari__list .refineSearch__input label:nth-child(5)::before {
  background-image: url("../img/ct_refine_ico08.png");
}

.kodawari__list .refineSearch__input label:nth-child(6)::before {
  background-image: url("../img/ct_refine_ico09.png");
}

.kodawari__list .refineSearch__input label:nth-child(7)::before {
  background-image: url("../img/ct_refine_ico10.png");
}

.price__list .refineSearch__input label {
  position: relative;
  text-align: center;
}

/* .price__list .refineSearch__input label:nth-child(4)::before {
  content: "";
  width: 108px;
  height: 19px;
  background-image: url("../img/ct_price_list_osusume.svg");
  display: inline-block;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -54px;
} */

/* 20250305 検索改修 */
.radiobtn_text,
.checkbox_text {
  display: flex;
  align-items: center;
  padding: 5px;
  position: relative;
  line-height: 1.5;
  font-size: 14px;
}

/* サイズ */
.size__list .refineSearch__input {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.size__list .radiobtn_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding: 5px 0 0;
  text-align: center;
}

.size__list .refineSearch__input label:nth-child(-n+3) {
  flex: 1 1 calc(100% / 3 - 20px);
  max-width: 33%;
}

.size__list .refineSearch__input label:nth-child(n+4) {
  flex: 1 1 calc(100% / 2 - 20px);
  max-width: 50%;
}

.size__list .form_icon {
  height: 95px;
  margin-bottom: 3px;
}

/* 予算 */
.price__list .refineSearch__input {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  gap: 8px;
  text-align: center;
}

.price__list .radiobtn_text {
  justify-content: center;
  height: 30px;
}

/* 硬さ */
.hard__list .refineSearch__input {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: grid;
  gap: 8px;
  text-align: center;
}

.hard__list .radiobtn_text {
  justify-content: center;
  height: 30px;
}

/* こだわり02 */
.kodawari__list02 .refineSearch__input {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 8px;
}

.kodawari__list02 .checkbox_text::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 6%;
}

.kodawari__list02 .refineSearch__input .checkbox_text.taion::before {
  background-image: url("../img/ct_search_ico_taion.svg");
}

.kodawari__list02 .refineSearch__input .checkbox_text.fold::before {
  background-image: url("../img/ct_search_ico_fold.svg");
}

.kodawari__list02 .refineSearch__input .checkbox_text.pair::before {
  background-image: url("../img/ct_search_ico_pair.svg");
}

.kodawari__list02 .refineSearch__input .checkbox_text.yoko::before {
  background-image: url("../img/ct_search_ico_yoko.svg");
}

.kodawari__list02 .refineSearch__input .checkbox_text.air::before {
  background-image: url("../img/ct_search_ico_air.svg");
}

.kodawari__list02 .refineSearch__input .checkbox_text.koshi::before {
  background-image: url("../img/ct_search_ico_koshi.svg");
}

.kodawari__list02 .refineSearch__input .checkbox_text.take::before {
  background-image: url("../img/ct_search_ico_take.svg");
}


/* ========================================================
SEC04
=========================================================*/
.topSection04 .topSection__inner {}

.rankbox {
  border-radius: 4px;
  border: 1px solid var(--Main);
  padding: 15px;
  box-sizing: border-box;
  background-color: #fff;
  margin: 30px auto 0;
}

.rankbox.rank1 {
  background-color: var(--yellow);
}

.rankbox__header {
  position: relative;
  padding-left: 80px;
  min-height: 50px;
}

.rankbox__header--result {
  padding-left: 0;
}

.rankbox__header-copy {
  background-color: var(--Main);
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
}

.rankbox__header-copy::after {
  content: "";
  width: 8px;
  height: 7px;
  background-image: url(../img/rankbox_header_copy.svg);
  background-size: 8px 7px;
  display: inline-block;
  position: absolute;
  left: 17px;
  bottom: -6px;
}

.rankbox__header a {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 5px;
}

.rank {
  display: inline-block;
  background-image: url(../img/cm_rank00.svg);
  width: 50px;
  height: 50px;
  background-size: 50px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 46px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  color: var(--Main);
  left: 0;
  padding-left: 9px;
}

.rank.rank_1,
.rank.rank_2,
.rank.rank_3 {
  background-image: url("../img/cm_rank01.svg");
  width: 60px;
  height: 40px;
  background-size: 60px 40px;
  display: inline-block;
  text-indent: -9999px;
}

.rank.rank_2 {
  background-image: url("../img/cm_rank02.svg");
}

.rank.rank_3 {
  background-image: url("../img/cm_rank03.svg");
}

.rank.rank_10.rank,
.rank.rank_11.rank,
.rank.rank_12.rank,
.rank.rank_13.rank,
.rank.rank_14.rank,
.rank.rank_15.rank {
  font-size: 2.25rem;
  padding-left: 2px;
  letter-spacing: -0.05em;
}

.rankbox__body-bnr {
  width: 100%;
  margin: 15px auto 0;
}

.rankbox__body-bnr img {
  vertical-align: bottom;
}

.rankbox__body-copyArea {
  width: 100%;
  margin: 0 auto;
  background-color: var(--Main);
  position: relative;
  line-height: 1.5;
  padding: 10px;
  font-size: 1.4rem;
  color: #fff;
  box-sizing: border-box;
}

.rankbox__body-copyArea br {
  display: block;
}

.rankbox__body-copyArea a {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 10px;
  background-color: #FB3043;
  border-radius: 40px;
  padding: 0px 20px 0px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 30px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.rankbox__body-copyArea a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.rankbox__body-table {
  border: 2px solid var(--Main);
  width: 100%;
  margin: 15px auto 0;
}

.rankbox__body-table th {
  background-color: var(--Sub);
  color: var(--Main);
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 120px;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 1.2rem;
}

.rankbox__body-table td {
  background-color: #fff;
  text-align: left;
  color: #333;
  font-weight: normal;
  padding: 10px 15px;
  font-size: 1.2rem;
}

.rankbox__body-table tr {
  border-bottom: 1px solid var(--Main);
}

.rankbox__body-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "item1 item2"
    "item3 item4"
    "item5 item6"
    "item7 item7";
  margin: 15px auto 0;
  border: 1px solid var(--Main);
}

.rankbox__body-item {
  display: flex;
  flex-direction: column;
}

.rankbox__body-item:nth-child(even) {
  border-left: 1px solid var(--Main);
}

.rankbox__body-item:nth-child(n + 3) {
  border-top: 1px solid var(--Main);
}

.rankbox__body-item:nth-child(1) {
  grid-area: item1;
}

.rankbox__body-item:nth-child(2) {
  grid-area: item2;
}

.rankbox__body-item:nth-child(3) {
  grid-area: item3;
}

.rankbox__body-item:nth-child(4) {
  grid-area: item4;
}

.rankbox__body-item:nth-child(5) {
  grid-area: item5;
}

.rankbox__body-item:nth-child(6) {
  grid-area: item6;
}

.rankbox__body-item:nth-child(7) {
  grid-area: item7;
}

.rankbox__body-term {
  padding: 10px;
  background-color: var(--Sub);
  color: var(--Main);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.rankbox__body-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 10px 5px;
  background-color: #fff;
  color: #333;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
}

.rankbox__body-point {
  margin: 15px auto 0;
  border: 1px solid var(--Main);
  background-color: #fff;
  padding: 0 0 20px;
}

.rankbox__body-pointTtl {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: var(--Main);
  line-height: 42px;
}

.rankbox__body-pointBox {
  margin-top: 20px;
  padding: 0 20px;
}

.rankbox__body-pointBoxPoint {
  color: var(--Main);
  font-weight: bold;
  border-bottom: 1px solid var(--Main);
  padding: 0 0 5px 20px;
  position: relative;
}

.rankbox__body-pointBoxPoint::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/cm_check_ico.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
}

.rankbox__body-pointBoxTxt {
  margin-top: 10px;
  font-size: 1.4rem;
}

.rankbox__campaign {
  width: 100%;
  margin: 35px auto 0;
  padding: 30px 15px 15px;
  box-sizing: border-box;
  border: 2px solid var(--Main);
  position: relative;
  background-color: #fff;
}

.rankbox__campaign-ttl {
  width: 265px;
  height: 40px;
  color: #fff;
  background-image: url(../img/ct_rankbox_campaign_sp.png);
  background-size: 265px 40px;
  position: absolute;
  top: -21px;
  left: 50%;
  margin-left: -132.5px;
  text-align: center;
  padding: 7px 0 0;
  box-sizing: border-box;
  font-weight: bold;
}

.rankbox__campaign-txt {
  text-align: center;
  color: var(--Main);
  font-weight: bold;
  line-height: 1.5;
  margin: 5px auto 10px;
}

.rankbox__campaign a {
  width: 100%;
  margin: 10px auto 0;
}

.rankbox__campaign a img {
  width: 100%;
  vertical-align: bottom;
}

.rankbox__cta {
  width: 100%;
  margin: 15px auto 0;
}

.rankbox__cta-txt {
  text-align: center;
  color: var(--Main);
  font-weight: bold;
}

.rankbox.rank1 .marker {
  background: linear-gradient(transparent 68%, #fff 68%);
  display: inline;
  font-weight: bold;
}

.rankbox__cta-txt::after {
  content: "";
  width: 10px;
  height: 14px;
  background-image: url("../img/slash_ico.svg");
  margin-left: 10px;
  display: inline-block;
}

.rankbox__cta-txt::before {
  content: "";
  width: 10px;
  height: 14px;
  background-image: url("../img/slash_ico.svg");
  transform: scale(-1, 1);
  margin-right: 10px;
  display: inline-block;
}

.rankbox__cta img {
  display: block;
  width: 170px;
  margin: 10px auto 0;
}

a.rankbox__cta-btn {
  display: block;
  position: relative;
  margin: 10px auto 0;
  border-radius: 50px;
  padding: 9px 40px;
  background-color: #FB3043;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.topSection01__box-btn {
  width: 100%;
  line-height: calc(22.5 / 15);
}

a.rankbox__cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.rankbox.rank1 a.rankbox__cta-btn {
  margin: 0px auto 0;
}

.moreBtn {
  width: 325px;
  display: block;
  text-align: center;
  border: 1px solid var(--Main);
  border-radius: 4px;
  line-height: 50px;
  margin: 30px auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--Main);
  position: relative;
}

.moreBtn::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
  display: inline-block;
  background-image: url("../img/cm_plus_ico.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.moreBtn.active::after {
  background-image: url("../img/cm_minus_ico.svg");
}

.moreArea {
  display: none;
}

/* ========================================================
SEC05
=========================================================*/
.topSection05 .topSection__inner {
  background-color: #fdfaf5;
}

.topSection05__table-scroll {
  overflow-x: scroll;
  margin-left: 0px;
}

.topSection05__table {
  margin: 20px auto;
  border: 1px solid var(--Main);
  background-color: #fff;
  width: 1022px;
}

.topSection05__table thead th {
  background-color: var(--Main);
  color: #fff;
  text-align: center;
  font-weight: normal;
  font-size: 1.2rem;
  box-sizing: border-box;
  border-right: 1px solid #fff;
  padding: 5px 0;
}

.topSection05__table thead th:nth-last-of-type(1) {
  border-radius: 1px solid var(--Main);
}

.topSection05__table thead th:nth-of-type(1) {
  width: 150px;
}

.topSection05__table thead th:nth-of-type(2) {
  width: 169px;
}

.topSection05__table thead th:nth-of-type(3) {
  width: 180px;
}

.topSection05__table thead th:nth-of-type(4) {
  width: 110px;
}

.topSection05__table thead th:nth-of-type(5) {
  width: 300px;
}

.topSection05__table tbody th,
.topSection05__table tbody td {
  border: 1px solid var(--Main);
  padding: 10px;
  font-size: 1.2rem;
  vertical-align: top;
}

.topSection05__table tbody th img {
  width: 140px;
  margin: 1px 0;
}

.topSection05__table tbody td:nth-of-type(1) {
  font-weight: bold;
}

.topSection05__table tbody td:nth-of-type(1) a {
  display: block;
  position: relative;
  margin: 15px auto 0;
  border-radius: 40px;
  width: 100%;
  padding: 8px 24px;
  background-color: #FB3043;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.topSection05__table tbody td:nth-of-type(1) a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.topSection05__table tbody tr:first-of-type td:nth-of-type(1) a {
  margin-top: 4px;
}

.topSection05__table-rank {
  height: 30px;
}

/* ========================================================
SEC06
=========================================================*/
.topSection06 .topSection__inner {}

.topSection06__copy {
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--Main);
  text-align: center;
  margin: 20px auto 0;
}

.topSection06__txt {
  width: calc(100% - 30px);
  margin: 20px auto 0;
  border-radius: 4px;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--yellow);
  border: 1px solid var(--Main);
}

.topSection06__txt p {
  font-size: 1.6rem;
}

.topSection06__bnr a {
  width: 100%;
  display: block;
  margin: 20px auto 0;
}

.topSection06__bnr a img {
  vertical-align: bottom;
}

/* ========================================================
記事ページ
=========================================================*/
.page-lower {
  padding-top: 5rem;
}

.page-lower .inner {
  padding: 0 15px;
}

.page-lower .header {
  background: none;
}

.page-lower h1 {
  position: relative;
  text-align: center;
  max-width: 100vw;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-lower h1::before,
.page-lower h1::after {
  content: "";
  display: block;
  background-image: url(../img/icon_dot_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 1.875rem;
  height: 3.625rem;
  z-index: -1;
}

.page-lower h1::before {
  left: 0.9375rem;
}

.page-lower h1::after {
  right: 0.9375rem;
}

.page-lower h2 {
  background-color: #f7f6f2;
  width: 100%;
  text-align: center;
  position: relative;
  border-right: 3px solid var(--Main);
  border-left: 3px solid var(--Main);
  font-weight: bold;
  font-size: 2rem;
  padding: 2rem;
  margin-top: 5rem;
  box-sizing: border-box;
}

.page-lower h2::before,
.page-lower h2::after {
  content: "";
  width: 3px;
  height: 50%;
  background-color: #2850aa;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.page-lower h2::before {
  left: -3px;
}

.page-lower h2::after {
  right: -3px;
}

.page-lower h3 {
  font-size: 1.8rem;
  border-left: 4px solid var(--Main);
  padding-left: 0.625rem;
  margin-top: 2.5rem;
}

/* .page-lower p {
  margin-top: 1rem;
} */

.page-lower .cm__check {
  margin-top: 1.5rem;
}

.page-lower .cm__check+p {
  margin-top: 0.5rem !important;
}

.page-lower .cm__box {
  margin-top: 1.5rem;
}

.page-lower .cm__point {
  margin-top: 2rem;
}

.page-lower .cm__point__list {
  border: 2px solid var(--Main);
  border-radius: 6px;
  padding: 1.875rem 0.9375rem 0.9375rem;
  margin-top: -1rem;
}

.page-lower .cm__point__list li {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1rem;
}

.page-lower .cm__point__list li+li {
  margin-top: 0.9375rem;
}

.page-lower .cm__point__list li::before {
  content: "";
  background-color: var(--Main);
  max-width: 5px;
  min-width: 5px;
  height: 5px;
  border-radius: 100px;
  position: absolute;
  top: 0.475rem;
  left: 0;
}

.page-lower .cmn__table {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  margin-top: 0.625rem;
  border: 1px solid var(--Text);
  border-right: 0;
  flex-wrap: wrap;
}

.page-lower .cmn__table dl {
  flex: initial;
  max-width: 50%;
  width: 100%;
  border-right: 1px solid var(--Text);
}

.page-lower .cmn__table dt {
  background-color: var(--Back);
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.page-lower .cmn__table dd {
  text-align: center;
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 20px);
}

.page-lower .cmn__table dd p {
  margin-top: 0;
  font-size: 0.875rem;
}

.page-lower .cmn__table dl.size-full {
  width: 100%;
  max-width: 100%;
}

.cm__check {
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.cm__check::before {
  content: "";
  display: inline-block;
  border-left: 2px solid var(--Accent);
  border-bottom: 2px solid var(--Accent);
  width: 0.812rem;
  height: 0.437rem;
  transform: rotate(-45deg);
  margin-top: 0.5em;
}

.cm__box {
  border: 1px solid var(--Text);
  border-radius: 6px;
  padding: 0.9375rem;
  margin-top: 0.9375rem;
}

/* パンくず */
.pankuz {
  margin-bottom: 24px;
}

.pankuz.inner {
  padding-right: 0;
}

.pankuz__home {
  text-decoration: underline;
}

.pankuz ul {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: scroll;
}

.pankuz ul a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: inherit;
}

.pankuz li {
  font-size: 14px;
  white-space: nowrap;
  padding-right: 20px;
}

.pankuz ul a img {
  width: 20px;
  height: 20px;
}

/* ========================================================
FOOTER
=========================================================*/
.footer {
  margin-top: 40px;
  background-color: var(--Back);
}

.footer__inner {
  width: var(--Contents_size);
  padding: 20px 20px 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.footer__link-ttl {
  color: var(--Main);
  font-weight: bold;
  font-size: 1.4rem;
}

.footer__linkList-item a {
  color: var(--Main);
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer__bottomLink {
  text-align: center;
  padding: 0;
  margin-top: 40px;
  color: var(--Main);
}

.footer__bottomLink-item a {
  font-size: 1.2rem;
  color: var(--Main);
  text-decoration: none;
  font-weight: normal;
}

.footer__bottomLink-item::after {
  content: "｜";
  margin-left: 5px;
  margin-right: 5px;
}

.footer__bottomLink-item:last-child::after {
  display: none;
}

.footer__bottomLink-item {
  display: inline-block;
}

.footer__link-group {
  margin-top: 20px;
}

.footer__linkList {
  margin-top: 5px;
}

.copyright {
  color: #fff;
  text-align: center;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 35px;
  background-color: var(--Main);
}

/* ========================================================
検索結果ページ
=========================================================*/
.imgttl_searchresult {
  text-align: center;
  background-color: var(--yellow);
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  border-top: 3px solid var(--Main);
}

.imgttl_searchresult::after {
  content: "";
  display: inline-block;
  background-image: url(../img/ct_earchresult_bg.png);
  width: 375px;
  height: 332px;
  background-size: 375px 332px;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -187.5px;
  z-index: 1;
}

.imgttl_searchresult-img {
  position: relative;
  z-index: 10;
}

.searchConditions {
  width: calc(100% - 30px);
  padding: 20px;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  border: 2px solid var(--Main);
  margin: 0 auto;
  top: -160px;
  z-index: 30;
}

.searchConditions::before {
  content: "";
  width: 155px;
  height: 40px;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -77.5px;
  background-image: url("../img/search_conditions_ttl.svg");
  z-index: 20;
}

.searchConditions__list-item {
  color: var(--orange);
  font-weight: bold;
  font-size: 1.4rem;
  display: inline-block;
}

.searchConditions__list-item::after {
  content: ":";
  color: #333;
  font-weight: bold;
  margin: 0 3px;
}

.searchConditions__list span {
  color: #333;
  font-weight: normal;
  font-size: 1.4rem;
}

.searchConditions__list {
  margin-top: 10px;
}

.searchConditions__list:nth-of-type(1) {
  margin-top: 0;
}

.result__cnt {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: -10px;
  padding-left: 0;
}

.result__cnt-num {
  font-size: 1.8rem;
}

body.result_page .rankbox.rank1 {
  /* background-color: #fff; */
}

body.result_page .topSection.topSection04 {
  margin-top: -115px;
}

body.result_page .topSection.topSection03 {
  margin-top: 30px;
}

body.result_page .rankbox {
  width: 100%;
}

body.result_page .refinesearch_ttl img {
  margin: 0 -15px;
  width: calc(100% + 30px);
  max-width: none !important;
}

body.result_page .topSection03 .topSection__inner {
  background-color: #fff;
  margin-bottom: -50px;
}

body.result_page .rankbox:not(.rank1) .rankbox__body-recommend--1,
body.result_page .rankbox:not(.rank1) .rankbox__campaign--1 {
  display: none;
}

body.result_page .rankbox:not(.rank2) .rankbox__body-recommend--2,
body.result_page .rankbox:not(.rank2) .rankbox__campaign--2 {
  display: none;
}

body.result_page .rankbox:not(.rank3) .rankbox__body-recommend--3,
body.result_page .rankbox:not(.rank3) .rankbox__campaign--3 {
  display: none;
}

/* ========================================================
20230407 追加
=========================================================*/
.topSection01__table thead td:nth-of-type(1),
.topSection01__table tbody td:nth-of-type(1) {
  background: var(--yellow);
}

.topSection01__table tbody tr:nth-of-type(1) td:last-of-type {
  vertical-align: middle;
}

.campaign {
  padding: 0 15px;
}

.campaign__logo {
  display: block;
  width: 170px;
  margin: 0 auto;
}

.campaign .rankbox__campaign-txt {
  margin-top: 10px;
}

.topSection06 {
  margin-top: 20px;
}

/* ========================================================
20240201 追加
=========================================================*/
.coupon__copy__wrap {
  padding: 6px;
}

.coupon__copy__container {
  width: 100%;
  max-width: 280px;
  text-align: center;
  display: grid;
  grid-template-columns: 67% 1fr;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 6px auto 0;
}

.topSection05__table .coupon__copy__container {
  margin-top: 0;
}

.topSection05__table .coupon__copy__wrap {
  padding-bottom: 0;
}

.topSection01__box .coupon__copy__wrap {
  grid-template-columns: 63% 34%;
  margin-top: 10px;
}

.rankbox__body-recommend .coupon__copy__wrap {
  width: calc(100% - 30px);
  margin-inline: auto;
  margin-top: 4px;
  padding: 6px 0;
}

.coupon__copy__code {
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

.topSection01__box .coupon__copy__wrap .topCampaign-coupon__code,
.rankbox__bottom .coupon__copy__wrap {
  color: #3c4191;
}

.copyText {
  padding: 8px 4px;
}

.topSection05__table .copyText {
  width: 88%;
}

.topSection05__table .topCampaign-coupon__code {
  font-size: 10px;
}

.copyButton {
  padding: 8px 10px;
  cursor: pointer;
  white-space: nowrap;
  background-color: #3c4191;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #2c2b5d;
  border-bottom: 3px solid #2c2b5d;
  border-radius: 4px;
  color: #fff;
}

/* ========================================================
20230602 予算別おすすめマットレス
=========================================================*/
.rankbox__body-recommend {
  margin-top: 16px;
}

.rankbox__body-recommend-ttl {
  margin: 0 -30px;
}

.rankbox__body-recommend-item {
  border: 1px solid var(--Main);
  border-radius: 4px;
}

.rankbox__body-recommend-item:nth-of-type(n + 2) {
  margin-top: 16px;
}

.rankbox__body-recommend-item-inner {
  text-align: center;
  background: #fdfaf5;
  padding: 6px 0 15px;
}

.rankbox__body-recommend-item-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: var(--Main);
  padding: 10px 15px;
}

.rankbox__body-recommend-item-catch {
  font-size: 1.6rem;
  font-weight: bold;
}

.rankbox__body-recommend-item img {
  width: calc(100% - 30px);
  height: auto;
  margin: 2px 15px 0;
}

.rankbox__body-recommend-item-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 5px;
}

.rankbox__body-recommend-item-price-before {
  font-size: 1.6rem;
  display: block;
  margin-top: 4px;
}

.rankbox__body-recommend-item-price-accent {
  font-size: 2rem;
  line-height: 1.33;
  font-weight: bold;
  color: #FB3043;
}

.rankbox__body-recommend-item-size {
  font-size: 1.4rem;
  display: block;
  margin-top: 1px;
}

.rankbox__body-recommend-item-btn {
  display: inline-block;
  position: relative;
  margin: 4px 15px 0;
  border-radius: 40px;
  padding: 10px;
  width: calc(100% - 30px);
  background-color: #FB3043;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.rankbox__body-recommend-item-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.rankbox__body-recommend-note {
  font-size: 1rem;
  text-align: right;
  margin-top: 5px;
}

/* ========================================================
20240409 limne1位に変更
=========================================================*/
.topCampaign-limne .topCampaign__cards {
  display: block;
}

.topCampaign-limne .topCampaign-card {
  display: flex;
}

.topCampaign-limne .topCampaign-card__btn {
  width: 80%;
  max-width: 300px;
}

.topSection01__table tbody td {
  vertical-align: middle;
}

.topSection01__table .coupon__copy__wrap {
  padding: 0;
}

.topSection01__table .topCampaign-coupon__code {
  font-size: 12px;
}

/* .topSection01__table tbody tr:first-of-type td:nth-of-type(6) a {
  line-height: 1.2;
  padding: 6px 0; 
} */
.topSection01__table-btn {
  line-height: 1.2;
  margin: 4px auto 0;
  padding: 6px 0;
}

.topSection01__table tbody .coupon__copy__wrap .coupon__copy__container {
  grid-template-columns: 50% 50%;
  gap: 6px;
}


/* ========================================================
20240501 emma キャンペーンA,B用CSS
=========================================================*/
/* .A .topCampaign__cards{
  grid-template-columns: repeat(2, 1fr);
}
.B .topCampaign__cards{
  grid-template-columns: repeat(3, 1fr);
} */
/* ========================================================
20240628 CTAボタン調整
=========================================================*/
.topSection01__table-btn {
  line-height: 1.5;
  padding: 4px 0;
}

.topSection01__table tbody th,
.topSection01__table tbody td {
  padding: 8px;
}

.coupon__copy__code {
  font-size: 11px;
}

.table-btn {
  position: relative;
}

.table-btn::after {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-image: url(../img/cm_right_ico.svg);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* ========================================================
20240705 emma キャンペーンC
=========================================================*/
/* .C .topCampaign__cards {
  grid-template-columns: repeat(2, 1fr);
}

.C .topCampaign-card__body {
  margin-top: 0;
} */

/* ========================================================
20240813 口コミ追加
=========================================================*/
.rankbox__kuchikomi {
  width: 100%;
}

.rankbox__kuchikomi-ttl div {
  background-color: var(--Main);
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 42px;
}

.rankbox__kuchikomi-ttl span {
  font-size: 12px;
  display: block;
  margin: 5px 0;
  text-align: right;
}

.rankbox__kuchikomi-wrap {
  display: block;
  background-color: #f3f0ed;
}

.emma .rankbox__kuchikomi-wrap {
  background-color: #fff;
}

/* 20240829 追記 */
.topSection05__table tbody tr:nth-of-type(1) th,
.topSection05__table tbody tr:nth-of-type(1) td {
  background: var(--yellow);
}

.topSection01__table thead th:nth-of-type(4) {
  width: 104px;
}


/* 20241202 追記 */
@keyframes blinking {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blink {
  animation: blinking 1s ease-in-out infinite alternate;
}

.blink span {
  font-size: 16px;
  font-weight: 600;
  line-height: calc(20 / 16);
}

/* ========================================================
20250206 追尾クーポン追加
=========================================================*/
.sticky-coupon {
  position: sticky;
  top: 0;
  background-color: #ff8902;
  width: 100%;
  z-index: 999;
}

.sticky-coupon img {
  display: block;
  margin: 0 auto;
}

/* ========================================================
20250218 体型に合わせて選ぶセクション
=========================================================*/
.topSectionHardness {
  padding-top: 8px;
}

.topSectionHardness__img {
  margin: 0 -7px;
}

.topSectionHardness__img img {
  width: 100%;
}

.topSectionHardness__txt {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.topSectionHardness__scroll {
  overflow-x: scroll;
}

.topSectionHardness__list {
  display: flex;
  gap: 12px;
  margin-inline: auto;
  width: 666px;
  overflow-x: scroll;
  padding: 16px 15px 30px 2px;
}

.topSectionHardness__item {
  display: flex;
  flex-direction: column;
  width: 210px;
  border-radius: 4px;
  padding: 16px 10px 8px 10px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(60, 65, 145, 0.2);
  box-sizing: border-box;
}

.topSectionHardness__item:first-child {
  border: 2px solid var(--Main);
  background-color: var(--yellow);
}

.topSectionHardness__item-logo {
  height: 42px;
}

.topSectionHardness__item-logo img {
  display: block;
  margin-inline: auto;
  height: 100%;
  object-fit: contain;
}

.topSectionHardness__sub-list {
  display: grid;
  grid-template-columns: 1fr;
}

.topSectionHardness__sub-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #EDEEF2;
  padding-block: 8px;
}

.topSectionHardness__item:first-child .topSectionHardness__sub-item {
  border-bottom: 1px solid var(--Main);
}

.topSectionHardness__sub-item-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Main);
  border-radius: 20px;
  padding: 4px;
  background-color: #EDEEF2;
  color: var(--Main);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.topSectionHardness__sub-item-txt {
  font-size: 13px;
  line-height: 1;
}

.topSectionHardness__item:first-child .topSectionHardness__sub-item-txt {
  color: #FB3043;
  font-weight: bold;
}

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

.topSectionHardness__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 50px;
  width: 100%;
  min-height: 34px;
  padding: 5px 20px;
  background-color: #FB3043;
  color: #fff;
  font-size: 12px;
  line-height: calc(18 / 12);
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.topSectionHardness__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ========================================================
20250221 素材セクション
=========================================================*/
.topSectionSozai {}

.topSectionSozai__inner {
  margin-inline: auto;
  max-width: 1160px;
  background-color: var(--beige);
}

.topSectionSozai__container {
  padding-block: 18px 24px;
}

.topSectionSozai__ttl img {
  width: 100%;
}

.topSectionSozai__txt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  padding-inline: 15px;
}

.topSectionSozai__wrap {
  border-radius: 4px;
  margin: 24px 15px 0;
  filter: drop-shadow(0 0 8px rgba(60, 65, 145, 0.2));
}

.topSectionSozai__tabs {
  display: grid;
  grid-template-columns: 108px 92px 68px 68px;
  grid-template-columns: calc(108 / 345 * 100%) calc(92 / 345 * 100%) repeat(2, 1fr);
  gap: 3px;
}

.topSectionSozai__tab {
  position: relative;
  z-index: 1;
  appearance: none;
  border: none;
  border-radius: 4px 4px 0 0;
  padding: 4px 0;
  background-color: #B5B5B5;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: calc(15.6 / 12);
  text-align: center;
}

.topSectionSozai__tab.is-active {
  background-color: #fff;
  color: #3C4191;
}

.topSectionSozai__contents {
  position: relative;
  z-index: 2;
  border-radius: 0 0 4px 4px;
  padding: 12px 5px;
  background-color: #fff;
}

.topSectionSozai__content {
  display: none;
}

.topSectionSozai__content.is-active {
  display: block;
}

/* ========================================================
20250226 素材セクション下比較表CTA
=========================================================*/
.sozai__table-inner {
  padding: 0 15px 30px;
  background-color: var(--beige);
}

.sozai__table-inner .arrow__down {
  display: block;
  width: 50%;
  max-width: 300px;
  margin: 0 auto 14px;
}

.sozai__table-scroll {
  overflow-x: scroll;
  margin-left: 0px;
}

.sozai__table {
  width: 620px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
  font-weight: bold;
}

.sozai__table td {
  background-color: #fff;
  border: 1px solid var(--Main);
  padding: 10px;
}

.sozai__table th {
  padding: 10px;
  background-color: var(--Sub);
  width: 11%;
  color: var(--Main);
  border: 1px solid var(--Main);
  vertical-align: middle;
}

.sozai__table>tbody>tr:nth-child(-n+4)>td:nth-child(2) {
  background-color: var(--yellow);
}

.sozai__table .sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}
/* ========================================================
20250307 検索ジャンプボタン
=========================================================*/
.searchJump-btn {
  position: fixed;
  bottom: -60px; /* 初期は画面外 */
  right: 20px;
  transition: bottom 0.4s ease-in-out, opacity 0.4s;
  opacity: 0;
  z-index: 1000;
}

.searchJump-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: rgba(60, 65, 145, 0.6);
  border-radius: 50%;
}

.searchJump-btn.show {
  bottom: 14%;
  right: 19%;
  opacity: 1;
}
/* ========================================================
20250307 腰痛 硬さコンテンツ
=========================================================*/
.hardness__waist__arrow{
  width: 200px;
  height: auto;
  margin: 20px auto 10px;
  display: block;
}
/* ========================================================
20250313 コラム記事改修
=========================================================*/
.column-btn{
  display: block;
  position: relative;
  margin: 10px auto 0;
  border-radius: 50px;
  padding: 14px 40px;
  background-color: #FB3043;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(60, 65, 145, 0.4);
}

.column-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow_right_pk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}