@charset "UTF-8";
.mvArea {
  position: relative;
}
.mvArea .timer {
  font-family: "Poppins", sans-serif;
  font-size: 6.4vw;
  text-decoration: underline;
  font-weight: 500;
  color: #fff83a;
  position: absolute;
  line-height: 1;
  right: 30vw;
  bottom: 9.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .mvArea .timer {
    font-size: 48px;
    right: 225px;
    bottom: 70px;
  }
}

.searchArea#search {
  padding: 2.6666666667vw 0;
}
@media screen and (min-width: 751px), print {
  .searchArea#search {
    padding: 20px 0;
  }
}
.searchArea .formArea {
  padding-top: 56px;
}
.searchArea .formArea-ttl {
  width: 73.4666666667vw;
  margin: 0 auto;
  max-width: 551px;
  display: inline-block;
  position: absolute;
  top: -6.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-ttl {
    top: -50px;
  }
}
.searchArea .formArea-ttl img {
  display: block;
  width: 100%;
}
.searchArea .formArea-content {
  position: relative;
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff9e1;
  border: solid #ffe135 8px;
  border-radius: 1.3333333333vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 7.4666666667vw 0 6vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-content {
    border-radius: 10px;
    padding: 56px 0 45px;
  }
}
.searchArea .formArea-content-ttl {
  text-align: center;
  font-size: 4.6666666667vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-content-ttl {
    font-size: 35px;
  }
}
.searchArea .formArea-content-ttl img {
  width: 9.8666666667vw;
  height: 4vw;
  max-width: 74px;
  max-height: 30px;
  margin-right: 4vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-content-ttl img {
    margin-right: 30px;
  }
}
.searchArea .modal-overlay {
  display: none; /* 初期は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.searchArea .modal-overlay.active {
  display: block;
}
.searchArea {
  /* 2つ目以降の初期状態は非表示 */
}
.searchArea #step2,
.searchArea #step3,
.searchArea #step4 {
  display: none;
}
.searchArea {
  /* モーダルとして立ち上がった時のスタイル */
}
.searchArea #step2.active,
.searchArea #step3.active,
.searchArea #step4.active {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1001;
}
.searchArea {
  /* 最終モーダル内の検索ボタンを初期状態では隠す */
}
.searchArea #step3 .form_button,
.searchArea #step4 .form_button {
  display: none;
  margin-top: 20px; /* 少し余白をあける */
  text-align: center;
}
.searchArea {
  /* クラスが付与されたら表示する（アニメーション付き） */
}
.searchArea #step3 .form_button.show-btn,
.searchArea #step4 .form_button.show-btn {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.searchArea {
  /* フワッと出るアニメーション */
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.searchArea .close-modal {
  position: absolute;
  right: 0;
  top: -8vw;
  color: #999;
  cursor: pointer;
  line-height: 1;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  max-width: 50px;
  max-width: 50px;
  display: block;
}
@media screen and (min-width: 751px), print {
  .searchArea .close-modal {
    top: -60px;
  }
}
.searchArea .close-modal img {
  height: auto;
  display: block;
}
.searchArea .radio_contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 0 3.3333333333vw;
  margin: 0 auto;
  margin-top: 3.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .radio_contents {
    padding: 0 25px;
    margin-top: 25px;
  }
}
.searchArea .radio_contents._column2 {
  grid-template-columns: repeat(2, 1fr);
}
.searchArea .radio_contents._column1 {
  grid-template-columns: repeat(1, 1fr);
}
.searchArea .formArea-label {
  cursor: pointer;
  filter: drop-shadow(0px 1.0666666667vw 0.2666666667vw rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-label {
    filter: drop-shadow(0px 6px 2px rgba(0, 0, 0, 0.3));
  }
}
.searchArea .formArea-label.w80 {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-label.w80 {
    margin-bottom: 10px;
  }
}
.searchArea .formArea-label.w80 .radio-text {
  width: 42.6666666667vw;
  max-width: 320px;
}
.searchArea .formArea-label.w80 img {
  display: block;
  width: 10.6666666667vw;
  max-width: 80px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.searchArea .formArea-label.w50 {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .formArea-label.w50 {
    margin-bottom: 10px;
  }
}
.searchArea .formArea-label.w50 .radio-text {
  width: 42.6666666667vw;
  max-width: 320px;
}
.searchArea .formArea-label.w50 img {
  display: block;
  width: 6.6666666667vw;
  max-width: 50px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.searchArea .radio-input {
  display: none;
}
.searchArea .radio-text {
  height: 100%;
  display: block;
  padding: 1.8666666667vw 0;
  border: 2px solid #ea6f32;
  border-radius: 1.3333333333vw;
  color: #333;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  transition: all 0.2s;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .radio-text {
    font-size: 20px;
    border-radius: 10px;
    padding: 14px 0;
  }
}
.searchArea .radio-text img {
  width: 30px;
}
.searchArea .radio-text .small {
  font-size: 3.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .radio-text .small {
    font-size: 25px;
  }
}
.searchArea .radio-text._flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchArea .radio-text strong {
  font-size: 130%;
}
.searchArea .radio-input:checked + .radio-text {
  background-color: #ea6f32; /* 背景をオレンジに */
  color: #fff; /* 文字を白に */
}
.searchArea .form_button {
  width: 47.2vw;
  max-width: 354px;
  margin: 0 auto;
  margin-top: 4vw;
}
@media screen and (min-width: 751px), print {
  .searchArea .form_button {
    margin-top: 30px;
  }
}
.searchArea .form_button button {
  border: none;
  background: none;
}

.cpArea {
  background-color: #cce7ff;
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 751px), print {
  .cpArea {
    padding: 40px 0;
  }
}
.cpArea-ttl {
  width: 65.3333333333vw;
  max-width: 490px;
  margin: 0 auto;
}
.cpArea .itemArea {
  position: relative;
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 1.3333333333vw;
  padding-bottom: 6.6666666667vw;
  margin-top: 4vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea {
    border-radius: 10px;
    padding-bottom: 50px;
    margin-top: 30px;
  }
}
.cpArea .itemArea .ttlArea {
  text-align: center;
  padding-top: 3.2vw;
  margin-bottom: 2.4vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .ttlArea {
    padding-top: 24px;
    padding-left: 144px;
    margin-bottom: 18px;
  }
}
.cpArea .itemArea .ttlArea .ttl {
  font-size: 6vw;
  font-weight: 700;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .ttlArea .ttl {
    font-size: 45px;
  }
}
.cpArea .itemArea .ttlArea .ttl a {
  color: #ff5a00;
  transition: all ease 0.2s;
}
.cpArea .itemArea .ttlArea .ttl a:hover {
  opacity: 0.7;
}
.cpArea .itemArea .ttlArea .rating-display {
  display: none;
}
.cpArea .itemArea .crown {
  width: 13.3333333333vw;
  height: 10vw;
  left: 3.7333333333vw;
  top: 5.6vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .crown {
    width: 100px;
    height: 75px;
    left: 28px;
    top: 42px;
  }
}
.cpArea .itemArea .rank_img {
  width: 86vw;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img {
    margin: 0 auto;
    margin-top: 32px;
    width: 645px;
  }
}
.cpArea .itemArea .rank_img > a {
  width: 36vw;
  max-width: 270px;
}
.cpArea .itemArea .rank_img .rank_table {
  width: 46.6666666667vw;
  max-width: 350px;
}
.cpArea .itemArea .rank_img .rank_table table {
  border: none;
  border: solid 1px #787878;
}
.cpArea .itemArea .rank_img .rank_table table th {
  font-size: 2.9333333333vw;
  line-height: 1.2;
  font-weight: 500;
  background-color: #fff9e1;
  padding: 1.3333333333vw 0;
  border: none;
  border-right: solid 1px #787878;
  border-bottom: solid 1px #787878;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img .rank_table table th {
    font-size: 22px;
    padding: 10px 0;
  }
}
.cpArea .itemArea .rank_img .rank_table table td {
  font-size: 3.3333333333vw;
  font-weight: 500;
  text-align: center;
  border: none;
  border-bottom: solid 1px #787878;
  line-height: 1.2;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img .rank_table table td {
    font-size: 25px;
  }
}
.cpArea .itemArea .rank_img .rank_table table td .red {
  color: #f68446;
  font-size: 4.6666666667vw;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img .rank_table table td .red {
    font-size: 35px;
  }
}
.cpArea .itemArea .rank_img .rank_table table td.card {
  padding: 5px;
  display: grid;
  gap: 5px;
  font-size: 10px;
  line-height: 1;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img .rank_table table td.card {
    font-size: 14px;
  }
}
.cpArea .itemArea .rank_img .rank_table table td.card img {
  width: 70%;
  height: auto;
  display: block;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img .rank_table table td.card img {
    width: 100%;
  }
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) {
  grid-template-columns: repeat(1, 1fr);
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(3)):not(:has(> :nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(4)):not(:has(> :nth-child(5))) {
  grid-template-columns: repeat(4, 1fr);
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(5)):not(:has(> :nth-child(6))) {
  grid-template-columns: repeat(5, 1fr);
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) > div img {
  width: 40%;
  height: auto;
  display: block;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) > div img {
    width: 30%;
  }
}
.cpArea .itemArea .rank_img .rank_table table tr:nth-last-child(1) th {
  border-bottom: none;
}
.cpArea .itemArea .rank_img .rank_table table tr:nth-last-child(1) td {
  border-bottom: none;
}
.cpArea .itemArea .flex-clomun {
  display: flex;
  flex-direction: column-reverse;
}
.cpArea .itemArea .osusumeArea {
  display: none;
}
.cpArea .itemArea .reviewArea {
  display: none;
}
.cpArea .itemArea .timerArea {
  display: none;
}
.cpArea .itemArea .buttonArea > a {
  background: linear-gradient(180deg, #d20085 0%, #ba2797 100%);
  border-radius: 100px;
  width: 80vw;
  max-width: 600px;
  line-height: 1.4;
}
.cpArea .itemArea .buttonArea > a .txt {
  display: block;
  font-size: 3.7333333333vw;
  line-height: 1.2;
  border-bottom: solid 1px #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .buttonArea > a .txt {
    font-size: 24px;
    padding-bottom: 4px;
  }
}
.cpArea .itemArea .buttonArea > a .ttl {
  font-size: 4.8vw;
  line-height: 1.2;
  padding-top: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .buttonArea > a .ttl {
    font-size: 36px;
    padding-top: 10px;
  }
}
.cpArea .itemArea .shiny-btn3 {
  background: #fff;
  border: solid 3px #ff5a01;
  color: #ff5a01;
  width: 80vw;
  max-width: 600px;
  line-height: 1;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .shiny-btn3 {
    font-size: 40px;
  }
}
.cpArea .itemArea .shiny-btn3 span {
  color: #2c2c2c;
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (min-width: 751px), print {
  .cpArea .itemArea .shiny-btn3 span {
    font-size: 30px;
  }
}

.campaignArea {
  background-image: url(../img/cpArea_bg.webp);
  background-size: cover;
  border-radius: 1.3333333333vw;
  border: solid 2px #3e70cf;
  text-align: center;
  padding: 1.3333333333vw 0;
  width: 86vw;
  max-width: 645px;
  margin: 0 auto;
}
@media screen and (min-width: 751px), print {
  .campaignArea {
    border-radius: 10px;
    padding: 10px 0;
  }
}
.campaignArea-ttl {
  font-size: 4vw;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding-right: 8vw;
  color: #3e70cf;
}
@media screen and (min-width: 751px), print {
  .campaignArea-ttl {
    font-size: 30px;
    padding-right: 60px;
  }
}
.campaignArea-ttl:after {
  display: block;
  content: "";
  background-image: url(../img/cpArea_icon.webp);
  background-size: cover;
  width: 8vw;
  height: 9.3333333333vw;
  max-width: 60px;
  max-height: 70px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.campaignArea-txt {
  font-size: 3.7333333333vw;
  font-weight: 500;
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .campaignArea-txt {
    font-size: 28px;
    margin-top: 10px;
  }
}
.campaignArea-txt span {
  color: #ff5a01;
  font-weight: 700;
  background: linear-gradient(transparent 60%, #fbff8b 60%);
}
.campaignArea-txt span strong {
  font-size: 160%;
}

.rankingArea {
  background-color: #cce7ff;
  padding: 9.3333333333vw 0;
}
@media screen and (min-width: 751px), print {
  .rankingArea {
    padding: 70px 0;
  }
}
.rankingArea-ttl {
  position: relative;
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto;
}
.rankingArea-ttl .dateArea {
  position: absolute;
  left: 1.0666666667vw;
  bottom: 2.5333333333vw;
  display: flex;
  align-items: end;
  width: 18vw;
  max-width: 135px;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 751px), print {
  .rankingArea-ttl .dateArea {
    left: 8px;
    bottom: 19px;
  }
}
.rankingArea-ttl .dateArea .number {
  font-size: 5.3333333333vw;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #ff5a01;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
}
@media screen and (min-width: 751px), print {
  .rankingArea-ttl .dateArea .number {
    font-size: 40px;
  }
}
.rankingArea-ttl .dateArea .txt {
  display: inline-block;
  line-height: 1;
  font-size: 3.0666666667vw;
  font-family: "Noto Sans JP", sans-serif;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 751px), print {
  .rankingArea-ttl .dateArea .txt {
    font-size: 23px;
  }
}
.rankingArea-ttl + .rankingArea-box {
  margin-top: 6vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea-ttl + .rankingArea-box {
    margin-top: 45px;
  }
}
.rankingArea .itemArea {
  position: relative;
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto;
  border-top: solid #f68446 1px;
  border-bottom: solid #f68446 1px;
  box-shadow: 0 0 5px #f68446;
  border-radius: 1.3333333333vw;
  padding-bottom: 9.3333333333vw;
  margin-top: 8vw;
  background-color: #fff;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea {
    border-radius: 10px;
    padding-bottom: 70px;
    margin-top: 60px;
  }
}
.rankingArea .itemArea .ttlArea {
  padding-left: 19.2vw;
  padding-top: 4.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .ttlArea {
    padding-top: 34px;
    padding-left: 144px;
  }
}
.rankingArea .itemArea .ttlArea .ttl {
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .ttlArea .ttl {
    font-size: 40px;
  }
}
.rankingArea .itemArea .ttlArea .ttl a {
  color: #2c2c2c;
  transition: all ease 0.2s;
}
.rankingArea .itemArea .ttlArea .ttl a:hover {
  opacity: 0.7;
}
.rankingArea .itemArea .ttlArea .rating-display {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 3.3333333333vw;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .ttlArea .rating-display {
    font-size: 25px;
  }
}
.rankingArea .itemArea .ttlArea .rating-display .star-rating-clip {
  display: inline-block;
  vertical-align: middle;
  width: 17.3333333333vw;
  max-width: 130px;
  height: auto;
  margin-right: 1.3333333333vw;
  /* ========================================= */
  /* HTMLで指定した '--star-rating'（例: 96%）を illustrative 窓の横幅（ illustrative 比率）として使用。 */
  /* ========================================= */
  clip-path: polygon(0 0, var(--star-rating) 0, var(--star-rating) 100%, 0 100%);
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .ttlArea .rating-display .star-rating-clip {
    margin-right: 10px;
  }
}
.rankingArea .itemArea .crown {
  width: 13.3333333333vw;
  height: 10vw;
  left: 3.7333333333vw;
  top: 5.6vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .crown {
    width: 100px;
    height: 75px;
    left: 28px;
    top: 42px;
  }
}
.rankingArea .itemArea .rank_img {
  width: 86vw;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 5.3333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img {
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 645px;
  }
}
.rankingArea .itemArea .rank_img > a {
  width: 36vw;
  max-width: 270px;
}
.rankingArea .itemArea .rank_img .rank_table {
  width: 46.6666666667vw;
  max-width: 350px;
}
.rankingArea .itemArea .rank_img .rank_table table {
  border: none;
  border: solid 1px #787878;
}
.rankingArea .itemArea .rank_img .rank_table table th {
  font-size: 2.9333333333vw;
  line-height: 1.2;
  font-weight: 500;
  background-color: #fff9e1;
  padding: 1.3333333333vw 0;
  border: none;
  border-right: solid 1px #787878;
  border-bottom: solid 1px #787878;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img .rank_table table th {
    font-size: 22px;
    padding: 10px 0;
  }
}
.rankingArea .itemArea .rank_img .rank_table table td {
  font-size: 3.3333333333vw;
  font-weight: 500;
  text-align: center;
  border: none;
  border-bottom: solid 1px #787878;
  line-height: 1.2;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img .rank_table table td {
    font-size: 25px;
  }
}
.rankingArea .itemArea .rank_img .rank_table table td .red {
  color: #f68446;
  font-size: 4.6666666667vw;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img .rank_table table td .red {
    font-size: 35px;
  }
}
.rankingArea .itemArea .rank_img .rank_table table td.card {
  padding: 5px;
  display: grid;
  gap: 5px;
  font-size: 10px;
  line-height: 1;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img .rank_table table td.card {
    font-size: 14px;
  }
}
.rankingArea .itemArea .rank_img .rank_table table td.card img {
  width: 70%;
  height: auto;
  display: block;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img .rank_table table td.card img {
    width: 100%;
  }
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) {
  grid-template-columns: repeat(1, 1fr);
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(3)):not(:has(> :nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(4)):not(:has(> :nth-child(5))) {
  grid-template-columns: repeat(4, 1fr);
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(5)):not(:has(> :nth-child(6))) {
  grid-template-columns: repeat(5, 1fr);
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) > div img {
  width: 40%;
  height: auto;
  display: block;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .rank_img .rank_table table td.card:has(> :nth-child(1)):not(:has(> :nth-child(2))) > div img {
    width: 30%;
  }
}
.rankingArea .itemArea .rank_img .rank_table table tr:nth-last-child(1) th {
  border-bottom: none;
}
.rankingArea .itemArea .rank_img .rank_table table tr:nth-last-child(1) td {
  border-bottom: none;
}
.rankingArea .itemArea .osusumeArea {
  width: 86vw;
  max-width: 645px;
  border-radius: 1.3333333333vw;
  border: solid #ffe135 3px;
  margin: 0 auto;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .osusumeArea {
    border-radius: 10px;
    margin-top: 40px;
  }
}
.rankingArea .itemArea .osusumeArea h4 {
  font-size: 4vw;
  font-weight: 700;
  text-align: center;
  background: #ffe135;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .osusumeArea h4 {
    font-size: 30px;
  }
}
.rankingArea .itemArea .osusumeArea-list {
  display: flex;
  flex-direction: column;
  padding: 3.3333333333vw 4.2666666667vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .osusumeArea-list {
    padding: 25px 32px;
  }
}
.rankingArea .itemArea .osusumeArea-list li {
  font-size: 3.7333333333vw;
  font-weight: 700;
  position: relative;
  padding-left: 4.8vw;
  margin-top: 2vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .osusumeArea-list li {
    font-size: 28px;
    padding-left: 36px;
    margin-top: 15px;
  }
}
.rankingArea .itemArea .osusumeArea-list li:nth-child(1) {
  margin-top: 0;
}
.rankingArea .itemArea .osusumeArea-list li:before {
  background-image: url(../img/icon_point.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.0666666667vw;
  height: 4.6666666667vw;
  max-width: 23px;
  max-height: 35px;
  display: block;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.rankingArea .itemArea .reviewArea {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea {
    margin-top: 40px;
  }
}
.rankingArea .itemArea .reviewArea .tabArea {
  display: flex;
  width: 80.6666666667vw;
  max-width: 605px;
  margin: 0 auto;
  justify-content: space-between;
}
.rankingArea .itemArea .reviewArea .tabArea-item {
  width: 26.1333333333vw;
  max-width: 196px;
  border-radius: 1.3333333333vw 1.3333333333vw 0 0;
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
  background-color: #c4c4c4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6vw 0;
  transition: all ease 0.2s;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .tabArea-item {
    border-radius: 10px 10px 0 0;
    font-size: 25px;
    padding: 12px 0;
  }
}
.rankingArea .itemArea .reviewArea .tabArea-item:hover {
  opacity: 0.7;
  cursor: pointer;
}
.rankingArea .itemArea .reviewArea .tabArea-item:nth-child(1):before {
  content: "";
  display: block;
  background-image: url(../img/icon_yen.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.4vw;
  height: 4.4vw;
  max-width: 33px;
  max-height: 33px;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .tabArea-item:nth-child(1):before {
    margin-right: 4px;
  }
}
.rankingArea .itemArea .reviewArea .tabArea-item:nth-child(2):before {
  content: "";
  display: block;
  background-image: url(../img/icon_speed.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.4vw;
  height: 4.4vw;
  max-width: 33px;
  max-height: 33px;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .tabArea-item:nth-child(2):before {
    margin-right: 4px;
  }
}
.rankingArea .itemArea .reviewArea .tabArea-item:nth-child(3):before {
  content: "";
  display: block;
  background-image: url(../img/icon_anzen.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.4vw;
  height: 4.4vw;
  max-width: 33px;
  max-height: 33px;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .tabArea-item:nth-child(3):before {
    margin-right: 4px;
  }
}
.rankingArea .itemArea .reviewArea .tabArea-item.is-active {
  background-color: #3e70cf;
}
.rankingArea .itemArea .reviewArea .contentArea {
  width: 86vw;
  max-width: 645px;
  margin: 0 auto;
  border-radius: 1.3333333333vw;
  background-color: #fff;
  border: solid #3e70cf 3px;
  padding: 3.3333333333vw 2vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea {
    border-radius: 10px;
    padding: 25px 15px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea-box {
  display: none;
  border-radius: 1.3333333333vw;
  padding: 2.6666666667vw 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea-box {
    border-radius: 10px;
    padding: 20px 10px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf {
  display: flex;
  margin: 0 auto;
  background-color: #f3f8ff;
  border-radius: 1.3333333333vw;
  padding: 2.6666666667vw 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea-box .prf {
    padding: 20px 10px;
    border-radius: 10px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf:not(:nth-child(1)) {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea-box .prf:not(:nth-child(1)) {
    margin-top: 20px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf > img {
  display: block;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  max-width: 100px;
  max-height: 100px;
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea {
  width: 62.6666666667vw;
  max-width: 470px;
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea .font-size-M {
  font-size: 3.7333333333vw;
  line-height: 1.2;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea .font-size-M {
    font-size: 28px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea .font-size-M .star-rating-clip {
  display: inline-block;
  vertical-align: middle;
  width: 17.3333333333vw;
  max-width: 130px;
  height: auto;
  margin-left: 1.3333333333vw;
  /* ========================================= */
  /* HTMLで指定した '--star-rating'（例: 96%）を illustrative 窓の横幅（ illustrative 比率）として使用。 */
  /* ========================================= */
  clip-path: polygon(0 0, var(--star-rating) 0, var(--star-rating) 100%, 0 100%);
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea .font-size-M .star-rating-clip {
    margin-left: 10px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea .kuchikomi {
  font-size: 3.3333333333vw;
  font-weight: 500;
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .reviewArea .contentArea-box .prf .txtArea .kuchikomi {
    font-size: 25px;
    margin-top: 8px;
  }
}
.rankingArea .itemArea .reviewArea .contentArea .is-active {
  display: block;
}
.rankingArea .itemArea .timerArea {
  padding: 1.3333333333vw 0;
  background-color: #2d2d2d;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .timerArea {
    padding: 10px 0;
    margin-top: 40px;
  }
}
.rankingArea .itemArea .timerArea-txt {
  font-size: 3.7333333333vw;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .timerArea-txt {
    font-size: 28px;
  }
}
.rankingArea .itemArea .timerArea-txt .timer {
  font-family: "Poppins", sans-serif;
  font-size: 6.4vw;
  text-decoration: underline;
  font-weight: 500;
  color: #fff83a;
  line-height: 1;
  display: inline;
  padding: 0 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .timerArea-txt .timer {
    font-size: 48px;
    padding: 0 10px;
  }
}
.rankingArea .itemArea .buttonArea > a {
  background: linear-gradient(180deg, #d20085 0%, #ba2797 100%);
  border-radius: 100px;
  width: 80vw;
  max-width: 600px;
  line-height: 1.4;
}
.rankingArea .itemArea .buttonArea > a .txt {
  display: block;
  font-size: 3.7333333333vw;
  line-height: 1.2;
  border-bottom: solid 1px #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .buttonArea > a .txt {
    font-size: 24px;
    padding-bottom: 4px;
  }
}
.rankingArea .itemArea .buttonArea > a .ttl {
  font-size: 4.8vw;
  line-height: 1.2;
  padding-top: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .buttonArea > a .ttl {
    font-size: 36px;
    padding-top: 10px;
  }
}
.rankingArea .itemArea .shiny-btn3 {
  background: #fff;
  border: solid 3px #ff5a01;
  color: #ff5a01;
  width: 80vw;
  max-width: 600px;
  line-height: 1;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .shiny-btn3 {
    font-size: 40px;
  }
}
.rankingArea .itemArea .shiny-btn3 span {
  color: #2c2c2c;
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (min-width: 751px), print {
  .rankingArea .itemArea .shiny-btn3 span {
    font-size: 30px;
  }
}

.column {
  margin: 0;
  background-color: #fff7d2;
  padding: 6.6666666667vw 0;
}
@media screen and (min-width: 751px), print {
  .column {
    padding: 50px 0;
  }
}
.column-subttl {
  display: inline-block;
  font-size: 4.6666666667vw;
  font-weight: 700;
  color: #3e70cf;
  background-color: #fff;
  border-radius: 100px;
  line-height: 1.1;
  padding: 0.6666666667vw 4vw;
}
@media screen and (min-width: 751px), print {
  .column-subttl {
    font-size: 35px;
    padding: 5px 30px;
  }
}
.column-ttl {
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.1;
  margin-top: 0.6666666667vw !important;
}
@media screen and (min-width: 751px), print {
  .column-ttl {
    font-size: 40px;
    margin-top: 5px !important;
  }
}
.column-ttl span {
  font-size: 7.3333333333vw !important;
  color: #f68446;
  line-height: 1;
  display: inline;
}
@media screen and (min-width: 751px), print {
  .column-ttl span {
    font-size: 55px !important;
  }
}
.column .column__list {
  padding: 0;
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto;
  align-items: stretch;
  text-align: center;
  margin-top: 4vw;
}
@media screen and (min-width: 751px), print {
  .column .column__list {
    margin-top: 30px;
  }
}
.column .column__list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid #f68446 0.4vw;
  background-color: #fff;
  padding: 3.3333333333vw;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  border-radius: 1.3333333333vw;
  font-size: 3.4666666667vw;
  font-weight: 500;
  font-weight: bold;
}
@media screen and (min-width: 751px), print {
  .column .column__list li a {
    border: solid #f68446 3px;
    padding: 25px 0;
    padding-left: 12px;
    border-radius: 10px;
    font-size: 22px;
  }
}

.btnArea {
  padding: 8vw 0;
}
@media screen and (min-width: 751px), print {
  .btnArea {
    padding: 60px 0;
  }
}

.lp-accordion-container {
  background-color: #fff8d1;
}

.lp-accordion-header {
  color: #2c2c2c;
}

span.highlight {
  background: linear-gradient(transparent 70%, #ffea57 70%);
}

.lp-accordion-content {
  border-top: 1px solid #ffea57;
}

.content-title span {
  border-bottom: 1px solid #ffea57;
}

.lp-accordion-container .shiny-btn3 {
  min-width: auto;
  width: 100%;
}

.sp {
  display: block;
}
@media screen and (min-width: 751px), print {
  .sp {
    display: none;
  }
}

.recommendation {
  background-color: #cce7ff;
  padding: 30px 0;
}
.recommendation-item {
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1.3333333333vw;
  padding-bottom: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 751px), print {
  .recommendation-item {
    border-radius: 10px;
    padding-bottom: 20px;
  }
}
.recommendation-item .title {
  background-color: #fee135;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 15px 0;
}
.recommendation-item .title img {
  width: 4vw;
  height: auto;
  max-width: 70px;
}
.recommendation-item .title-text {
  font-size: 3.7333333333vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 751px), print {
  .recommendation-item .title-text {
    font-size: 28px;
  }
}
.recommendation-item .title-text span {
  display: block;
}
.recommendation-item .comment {
  margin-top: 10px;
  padding: 0 2.6666666667vw;
}
@media screen and (min-width: 751px), print {
  .recommendation-item .comment {
    padding: 0 20px;
  }
}
.recommendation-item .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 2.6666666667vw;
}
@media screen and (min-width: 751px), print {
  .recommendation-item .contents {
    padding: 20px;
  }
}
.recommendation-item .contents img {
  width: 100%;
  height: auto;
}
.recommendation-item .contents table {
  border: 1px solid #787878;
  border-collapse: collapse;
  text-align: center;
}
.recommendation-item .contents table tr {
  border-bottom: 1px solid #787878;
}
.recommendation-item .contents table th,
.recommendation-item .contents table td {
  padding: 10px 5px;
  display: block;
}
@media screen and (max-width: 750px) {
  .recommendation-item .contents table th,
  .recommendation-item .contents table td {
    padding: 1px 5px;
    font-size: 14px;
  }
}
.recommendation-item .contents table th {
  background-color: #f3f8ff;
}
.recommendation-item .contents table td {
  border: none;
}
.recommendation-item .contents table .red {
  font-size: 130%;
}
@media screen and (max-width: 750px) {
  .recommendation-item .contents table .red {
    font-size: 125%;
  }
}
.recommendation-item .buttonArea > a {
  background: linear-gradient(180deg, #d20085 0%, #ba2797 100%);
  border-radius: 100px;
  width: 80vw;
  max-width: 600px;
  line-height: 1.4;
}
.recommendation-item .buttonArea > a .txt {
  display: block;
  font-size: 3.7333333333vw;
  line-height: 1.2;
  border-bottom: solid 1px #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0.5333333333vw;
}
@media screen and (min-width: 751px), print {
  .recommendation-item .buttonArea > a .txt {
    font-size: 24px;
    padding-bottom: 4px;
  }
}
.recommendation-item .buttonArea > a .ttl {
  font-size: 4.8vw;
  line-height: 1.2;
  padding-top: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .recommendation-item .buttonArea > a .ttl {
    font-size: 36px;
    padding-top: 10px;
  }
}

.paidy-apple {
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 0 auto 4vw;
  border-radius: 1.3333333333vw;
  overflow: hidden;
  box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.25);
}
.paidy-apple dt {
  color: #fff;
  background-color: #3e70cf;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 3.7333333333vw;
  font-weight: 700;
  padding: 15px 0;
}
@media screen and (min-width: 751px), print {
  .paidy-apple dt {
    font-size: 28px;
  }
}
.paidy-apple dt img {
  width: 13.3333333333vw;
  height: auto;
  max-width: 100px;
}
.paidy-apple dt svg {
  width: 2.6666666667vw;
  height: auto;
  max-width: 20px;
}
.paidy-apple dt.active svg {
  transform: scale(1, -1);
}
.paidy-apple dd {
  padding: 20px;
  text-align: center;
}
.paidy-apple dd .title {
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: #3e70cf;
}
@media screen and (min-width: 751px), print {
  .paidy-apple dd .title {
    font-size: 28px;
  }
}
.paidy-apple dd img {
  display: block;
  width: 94%;
  margin: 20px auto;
}

.paidy-apple-recommendation {
  width: 93.3333333333vw;
  max-width: 700px;
  margin: 30px auto 4vw;
}
.paidy-apple-recommendation dt {
  position: relative;
  color: #fff;
  background-color: #f68446;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 3.7333333333vw;
  font-weight: 700;
  padding: 2px 0;
  border-top-left-radius: 1.3333333333vw;
  border-top-right-radius: 1.3333333333vw;
}
@media screen and (min-width: 751px), print {
  .paidy-apple-recommendation dt {
    font-size: 28px;
  }
}
.paidy-apple-recommendation dt img {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 13.3333333333vw;
  height: auto;
  max-width: 100px;
}
.paidy-apple-recommendation dt p {
  text-align: center;
  color: #fff;
}
.paidy-apple-recommendation dt span {
  display: block;
  font-size: 90%;
}
.paidy-apple-recommendation dd {
  padding: 15px;
  border: solid 3px #f68446;
  border-top: 0;
  border-bottom-left-radius: 1.3333333333vw;
  border-bottom-right-radius: 1.3333333333vw;
}
.paidy-apple-recommendation dd ul {
  display: block;
  text-align: left;
}
.paidy-apple-recommendation dd ul span {
  background: linear-gradient(transparent 60%, #fee135 60%);
}
.paidy-apple-recommendation dd ul li {
  display: flex;
  font-weight: bold;
}
.paidy-apple-recommendation dd ul li img {
  margin-right: 6px;
  width: 4vw;
  height: auto;
  max-width: 30px;
}
@media screen and (min-width: 751px), print {
  .paidy-apple-recommendation dd ul li img {
    max-width: 20px;
  }
}

.reason-list {
  padding: 30px 20px;
  background-color: #f3f8ff;
}
.reason-list .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 4.8vw;
}
@media screen and (min-width: 751px), print {
  .reason-list .title {
    font-size: 28px;
  }
}
.reason-list .title img {
  width: 9.3333333333vw;
  height: auto;
  max-width: 70px;
}
.reason-list .title span {
  color: #3e70cf;
  display: block;
}
.reason-list .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.reason-list .list li {
  padding: 10px 20px;
  background-color: #fff;
  border: solid 1px #3e70cf;
  border-radius: 1.3333333333vw;
}
.reason-list .list-title {
  font-weight: bold;
  color: #3e70cf;
  font-size: 4.6666666667vw;
}
@media screen and (min-width: 751px), print {
  .reason-list .list-title {
    font-size: 25px;
  }
}
.reason-list .list-title span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #3e70cf;
  border-radius: 40%;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-right: 10px;
}
@media screen and (min-width: 751px), print {
  .reason-list .list-title span {
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 40px;
  }
}
.reason-list .list-text {
  margin-top: 10px;
}
.reason-list .list-text span {
  background: #fff8cc;
}
.reason-list._orange {
  background-color: #fff9e1;
}
.reason-list._orange .title span {
  color: #ff5a00;
  display: inline-block;
}
.reason-list._orange .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.reason-list._orange .list li {
  border: solid 1px #f68446;
}
.reason-list._orange .list-title {
  color: #ff5a00;
}
.reason-list._orange .list-title span {
  background: #ff5a00;
}/*# sourceMappingURL=index.css.map */