/*--------------------------------------*/
/*　　共通　　*/
/*--------------------------------------*/

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 16px;
  line-height: 1.5;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "ＭＳ Ｐゴシック", "メイリオ", Meiryo, Arial, Verdana, sans-serif;
  text-align: left;
  color: var(--black);
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
input,
textarea,
button,
table,
tr,
th,
td,
article,
aside,
footer,
header,
hgroup,
nav,
section,
a,
span,
img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f2faff;
  padding-bottom: 150px;
  /* フッターの高さ分だけ確保 */
}

table {
  table-layout: fixed;
  word-break: break-all;
}

.contents_area {
  box-sizing: border-box;
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
  padding: 0;
}

.txt_bold {
  font-weight: bold;
}

.txt_big {
  margin-right: 2px;
  margin-left: 2px;
  font-size: 35px;
}

.txt_small {
  font-size: 0.8em;
}

figure {
  margin: 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 820px) {
  .contents_area {
    padding: 0 4vw;
  }

  img {
    width: 100%;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* ------------------------------
    text/font
------------------------------ */
:root {
  --black: #3a0e02;
  --blue: #15c0ff;
  --pink: #ff9274;
  --red: #e15429;
  --yellow: #ffe244;
}

.yellow {
  color: var(--yellow);
}

.red {
  color: var(--red);
}

.ta_c {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.highlight {
  background: linear-gradient(transparent 65%,
      var(--yellow) 65%,
      var(--yellow) 100%,
      transparent 100%);
}

.pink_bg {
  background: var(--pink);
  padding: 2px 8px;
}

.udl {
  background: linear-gradient(transparent 84%,
      var(--black) 84%,
      var(--black) 92%,
      transparent 92%);
  padding-bottom: 3px;
}

.udl_red {
  background: linear-gradient(transparent 84%,
      var(--red) 84%,
      var(--red) 92%,
      transparent 92%);
  padding-bottom: 3px;
}

@media screen and (max-width: 820px) {

  .udl,
  .mac .udl {
    background: none;
    border-bottom: 1px solid var(--black);
    padding: 0.05em 0;
  }
}

/* ------------------------------
    float
------------------------------ */
@media screen and (min-width: 821px) {
  .f_left {
    float: left;
  }

  .f_right {
    float: right;
  }
}

.inline_block {
  display: inline-block;
}

a:-webkit-any-link {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
}

a:-webkit-any-link:active {
  color: var(--black);
}

#ranking_1,
#ranking_2,
#ranking_3,
#ranking_4,
#ranking_5 {
  scroll-margin-top: 20px;
}

/* CTAボタン */
.cta_btn {
  position: relative;
  margin-top: 70px;
}

.cta_btn::before {
  position: absolute;
  content: "";
  width: 252px;
  height: 49px;
  background: url("./img/bubble.png") no-repeat center / contain;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.cta_btn.sm::before {
  width: 170px;
  height: 46px;
  background: url("./img/bubble_sp.png") no-repeat center / contain;
  top: -10px;
}

@media screen and (max-width: 820px) {
  .cta_btn.sm::before {
    width: 92%;
    height: 46px;
    background: url("./img/bubble_sp.png") no-repeat center / contain;
    top: -3px;
  }
}

/*--------------------------------------*/
/*　　MV　　*/
/*--------------------------------------*/

.mv_area {
  width: 100%;
  background: url("./img/fv_bg.jpg") no-repeat top center/auto;
  padding-bottom: 16px;
}

.mv_img_wrap {
  margin: 0;
}

.mv_img {
  display: block;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 820px) {
  .mv_area {
    background: url("./img/fv_bg_sp.jpg") no-repeat top center/cover;
    padding: 0 3vw 2vw;
  }
}

/*--------------------------------------*/
/*　　introdaction　　*/
/*--------------------------------------*/

.section.__intro {
  padding: 32px 0;
}

.section.__intro .intro_txt {
  font-size: 24px;
  line-height: 2;
  text-align: center;
}

.section.__intro .contents_area {
  position: relative;
}

.section.__intro .intro_txt::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--pink) transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 28px 0 28px;
  top: 116px;
}

.section.__intro .intro_txt+.intro_txt {
  margin-top: 56px;
}

.section.__intro .pink_bg {
  color: #fff;
  margin-right: 4px;
}

/* ランキングカード */
.ranking-container {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}

.rank-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 19%;
  /* 5つの要素を均等に配置 */
  display: flex;
  flex-direction: column;
  /* 要素を縦に配置 */
  justify-content: space-between;
  height: 280px;
}

.rank-card img {
  width: 80%;
  height: auto;
  margin: 0 auto 10px;
}

.rank-card .logo_flex p {
  margin-bottom: 8px;
}

.rank-card .logo_flex p a {
  color: #0b65d7;
}

.rank-card img:first-child {
  /* 最初のimg要素（エンブレム）のみに適用 */
  max-width: 50%;
  /* エンブレムをさらに小さく */
  margin: 14px auto 10px;
  /* ロゴとの間隔を調整 */
}

.rank-number {
  font-size: 1.5em;
  font-weight: bold;
  margin: 16px auto 16px;
}

.rank-features {
  text-align: left;
  font-size: 0.9em;
  list-style: none;
  padding: 10px 8px 10px 24px;
  margin-top: auto;
  /* ulを最下部に配置 */
  background-color: #f5f5f5;
  /* 灰色の背景 */
  border-radius: 4px;
  margin: 0;
  height: 125px;
}

.rank-features li {
  font-size: 14px;
}

.rank-features li::before {
  content: "●";
  color: var(--pink);
  /* オレンジ色の丸 */
  display: inline-block;
  width: 1em;
  margin-left: -1.3em;
  padding-right: 0.3em;
}

/* 個別のランキングの色付け */
.rank-1 .rank-number {
  color: gold;
}

.rank-2 .rank-number {
  color: silver;
}

.rank-3 .rank-number {
  color: #cd7f32;
}

/* 銅色 */

@media screen and (max-width: 820px) {
  .section.__intro {
    padding: 9vw 0;
  }

  .section.__intro .intro_txt {
    font-size: 5vw;
  }

  .section.__intro .intro_txt::after {
    border-width: 2.667vw 3.733vw 0 3.733vw;
    top: 42vw;
  }

  .section.__intro .intro_txt+.intro_txt {
    margin: 6vw auto;
  }

  .section.__intro .pink_bg {
    color: #fff;
    margin-right: 0.533vw;
  }
}

@media screen and (max-width: 1100px) {
  .ranking-container {
    width: 870px;
    padding: 0 0 24px;
  }

  .ranking-container-wrap {
    overflow-x: scroll;
  }
}

/*--------------------------------------*/
/*　　point　　*/
/*--------------------------------------*/

.section.__point {
  background-color: #a4e7ff;
  padding-bottom: 32px;
}

.section.__point h2 {
  background-color: var(--blue);
  padding: 24px 0;
  margin: 0 auto 32px;
}

.section.__point .contents_area {
  padding: 32px 24px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 0 4px 2px rgba(102, 102, 102, 0.3);
}

.section.__point .ttl_flex {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 16px;
}

.section.__point h3 {
  font-size: 24px;
  margin: 0;
  padding-left: 16px;
  font-weight: bold;
}

.section.__point .number {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #a4e7ff;
  border-radius: 50%;
}

.section.__point .f_right {
  margin-top: -6px;
}

.section.__point .f_left {
  margin-top: -68px;
}

.section.__point .contents_wrap {
  display: flex;
  align-items: start;
  justify-content: center;
}

.section.__point .contents_wrap+.contents_wrap {
  margin-top: 40px;
}

.section.__point .contents_wrap:nth-last-of-type(2n) figure {
  margin-left: 40px;
}

.section.__point .contents_wrap:nth-last-of-type(2n -1) figure {
  margin-right: 40px;
}

.section.__point .txt_small {
  font-size: 14px;
}

@media screen and (max-width: 820px) {
  .section.__point {
    padding: 0 0 9vw;
  }

  .section.__point h2 {
    background-color: var(--blue);
    padding: 3.2vw 0;
    margin: 0 auto 5vw;
  }

  .section.__point .contents_area {
    padding: 4.267vw 3.2vw;
    border-radius: 1.6vw;
    width: 92vw;
    margin: 0 auto;
  }

  .section.__point h3 {
    font-size: 6vw;
    margin: 0;
    padding-left: 2.133vw;
    width: 70vw;
  }

  .section.__point .number {
    font-size: 6vw;
    width: 12vw;
    height: 12vw;
  }

  .section.__point .f_right {
    margin-top: -0.8vw;
  }

  .section.__point .f_left {
    margin-top: -9.067vw;
  }

  .section.__point .contents_wrap {
    display: block;
  }

  .section.__point .contents_wrap:nth-last-of-type(2n) figure,
  .section.__point .contents_wrap:nth-last-of-type(2n -1) figure {
    margin: 0;
  }

  .section.__point .contents_wrap+.contents_wrap {
    margin-top: 10vw;
  }

  .section.__point figure img {
    width: 86vw;
  }

  .section.__point .ttl_flex {
    justify-content: space-between;
    margin-bottom: 3vw;
  }
}

/*--------------------------------------*/
/*　　recomend　　*/
/*--------------------------------------*/

.section.__recommend {
  background-color: #fff6f3;
  padding-bottom: 32px;
}

.section.__recommend h2 {
  background-color: var(--pink);
  padding: 24px 0;
  margin: 0 auto 32px;
}

.recommend_scroll_wrap {
  display: none;
}

.recommend_table_wrap {
  margin-bottom: 5px;
}

.recommend_table {
  border-collapse: collapse;
  width: 910px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
}

.recommend_table .heading {
  background-color: #e3e0df;
  padding: 10px 0;
  padding: 10px 180px 10px 0;
}

.cell_another {
  border: solid 2px #c1c1c1;
}

.recommend_table_tr.__logo img,
.recommend_table_tr.__star img {
  width: 150px;
  height: auto;
}

.recommend_table_tr.__name td a {
  color: #0b65d7;
}

.recommend_table p {
  margin: 16px auto;
}

.recommend_table td {
  padding: 18px 10px;
  text-align: center;
}

.recommend_table th {
  position: relative;
  padding: 15px;
  width: calc(100% / 5);
  font-size: 21px;
  text-align: center;
}

.recommend_table th:nth-child(1)::before,
.recommend_table th:nth-child(2)::before,
.recommend_table th:nth-child(3)::before {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  content: "";
  background-image: url("./img/rank_gold.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.recommend_table th:nth-child(2)::before {
  background-image: url("./img/rank_silver.png");
}

.recommend_table th:nth-child(3)::before {
  background-image: url("./img/rank_bronze.png");
}

.recommend_table thead {
  background-color: #f7f7f7;
}

.recommend_table_label {
  margin-bottom: 10px;
  font-weight: bold;
}

.recommend_table_logo_link,
.recommend_table_logo_link:-webkit-any-link {
  color: var(--black);
  text-decoration: underline;
  transition: 0.2s;
}

.recommend_table_logo_link:hover,
.recommend_table_logo_link:-webkit-any-link:hover {
  opacity: 0.7;
}

.recommend_table_answer_img {
  width: 50px;
  max-width: 80%;
  height: auto;
}

.cell_1 {
  border: solid 3px #e70000;
  background-color: #fdeeee;
}

.recommend_table_strong_bg {
  background-color: #fdeeee;
}

.recommend_table_btn,
.recommend_table_btn:-webkit-any-link {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background-color: #ff9d00;
  box-shadow: 0 4px 0 #d98200;
  border-radius: 4px;
  transition: 0.2s;
}

.recommend_table_btn:hover,
.recommend_table_btn:-webkit-any-link:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: 0 2px 0 #d98200;
  opacity: 0.7;
}

.recommend_table_btn::before {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  vertical-align: middle;
  margin: auto;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.recommend_table_tr.__link td {
  padding: 36px 10px;
}

.recommend_table_tr.__link img {
  width: 100%;
}

.recommend_table .td_border {
  border-right: #e70000;
  background-color: #e3e0df;
}

/*--------------------------------------*/
/*　　ランキング詳細　　*/
/*--------------------------------------*/

.section.__ranking {
  background-color: #fff6f3;
  padding-bottom: 32px;
}

.section.__ranking .contents_area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  background-color: #fff6f3;
}

.section.__ranking .ttl_flex {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 129px;
  gap: 16px;
}

.section.__ranking .ttl_flex img {
  width: 220px;
  max-width: 30vw;
  height: auto;
}

.ranking_block {
  position: relative;
  background-color: #fff;
  border: solid 2px #d3d3d3;
  border-radius: 3px;
  padding-bottom: 16px;
}

.section.__ranking .ttl_flex {
  padding-left: 134px;
  gap: 8px;
  margin: 24px auto 32px;
}

.ranking_block::before {
  position: absolute;
  top: -6px;
  left: 15px;
  width: 123px;
  height: 89px;
  margin: auto;
  content: "";
  background-image: url("./img/ranking_no1.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.ranking_block:nth-child(2)::before {
  background-image: url("./img/ranking_no2.png");
}

.ranking_block:nth-child(3)::before {
  background-image: url("./img/ranking_no3.png");
}

.ranking_block:nth-child(4)::before {
  background-image: url("./img/ranking_no4.png");
}

.ranking_block:nth-child(5)::before {
  background-image: url("./img/ranking_no5.png");
}

/*　サービス名　*/

.ranking_servise_name {
  padding: 27px 20px 25px 134px;
  margin: 0 auto;
  width: 98%;
  font-size: 27px;
  font-weight: bold;
  box-sizing: border-box;
  border-bottom: solid 2px #efefef;
}

/*　紹介タイトル　*/

.ranking_ttl {
  position: relative;
  display: block;
  margin: 28px auto 15px;
  width: fit-content;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
}

.ranking_ttl::before,
.ranking_ttl::after {
  position: absolute;
  top: 0;
  left: -60px;
  bottom: 0;
  width: 40px;
  height: 50px;
  margin: auto;
  content: "";
  background-image: url("./img/yellow_sold_decoration.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.ranking_ttl::after {
  right: -60px;
  left: auto;
  transform: scale(-1, 1);
}

/*　スクリーンショット　*/

.ranking_ss {
  display: block;
  margin: 0 auto;
  width: 80%;
  object-fit: cover;
  border: solid 1px #d3d3d3;
  border-radius: 5px;
}

/*　基本情報　*/

.ranking_info_ttl {
  position: relative;
  margin: 8px auto 10px;
  width: fit-content;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.ranking_info_ttl::before,
.ranking_info_ttl::after {
  position: absolute;
  top: 5px;
  left: -130px;
  bottom: 0;
  width: 90px;
  height: 15px;
  margin: auto;
  content: "";
  background-image: url("./img/yellow_triangle.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.ranking_info_ttl::after {
  right: -130px;
  left: auto;
}

.ranking_info_table {
  margin: 20px auto 30px;
  width: 80%;
  background-color: #eff3f7;
  border-top: solid 1px #c6c6c6;
  border-bottom: solid 1px #c6c6c6;
  border-collapse: collapse;
}

.ranking_info_table th,
.ranking_info_table td {
  padding: 10px 20px;
}

.ranking_info_table th {
  text-align: left;
  width: 200px;
}

.ranking_info_table tr:nth-child(2n) {
  background-color: #fff;
}

.ranking_info_link,
.ranking_info_link:-webkit-any-link {
  color: #008dd6;
  text-decoration: underline;
  transition: 0.2s;
}

.ranking_info_link:hover,
.ranking_info_link:-webkit-any-link:hover {
  opacity: 0.7;
}

/*　チェック　*/

.ranking_check {
  display: flex;
  margin: 24px auto 20px;
  width: 80%;
  background-color: #fff;
  border: solid 1px #005fb3;
  border-radius: 5px;
}

.ranking_check_img_wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 50px;
  background-color: #005fb3;
  border-radius: 5px 0 0 5px;
}

.ranking_check_img {
  width: 100%;
}

.ranking_check_list {
  flex: 1;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  padding: 0;
}

.ranking_check_list_item:not(:last-child) {
  border-bottom: dashed 1px #e2e2e2;
}

.ranking_check_list_item {
  position: relative;
  padding: 13px 13px 13px 50px;
}

.ranking_check_list_item::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url("./img/check_pink.png") no-repeat center / contain;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
}

.ranking_check_list .ttl {
  padding: 8px 0;
  margin: 0;
  background-color: var(--pink);
  color: #fff;
}

/*　ボタン　*/

.ranking_btn,
.ranking_btn:-webkit-any-link {
  position: relative;
  display: block;
  padding: 20px 30px;
  margin: 15px auto 50px;
  width: 620px;
  max-width: 88%;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #ff9d00;
  box-shadow: 0 5px 0 #d98200;
  box-sizing: border-box;
  border-radius: 6px;
  transition: 0.2s;
}

.ranking_btn:hover,
.ranking_btn:-webkit-any-link:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: 0 2px 0 #d98200;
  opacity: 0.7;
}

.ranking_btn::before {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  vertical-align: middle;
  margin: auto;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*いますぐおすすめ5選を確認する*/

.ranking_btn.__red,
.ranking_btn.__red:-webkit-any-link {
  margin: 0 auto;
  background-color: #e70000;
  box-shadow: 0 5px 0 #b00000;
}

.ranking_btn.__red:hover,
.ranking_btn.__red:-webkit-any-link:hover {
  box-shadow: 0 2px 0 #b00000;
}

/*--------------------------------------*/
/*　　ランキング詳細　--1位用css　　*/
/*--------------------------------------*/

.ranking_block.__first {
  border: solid 3px var(--pink);
}

.ranking_block.__first .ranking_servise_name {
  position: relative;
  padding-left: 170px;
}

.ranking_block.__first .ranking_servise_name::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  margin: auto;
  width: 35px;
  height: 30px;
  content: "";
  background-image: url("./img/rank_gold.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.ranking_block.__first .ranking_check_list {
  background-color: #fff;
}

.ranking_block.__first .ranking_info_ttl::before,
.ranking_block.__first .ranking_info_ttl::after {
  background-image: url("./img/red_triangle.png");
}

.ranking_block.__first .ranking_info_table {
  background-color: #f9f3f3;
}

.ranking_block.__first .ranking_check_img_wrap {
  background-color: #d50f18;
}

.ranking_block.__first .ranking_check {
  border: solid 1px var(--pink);
}

.ranking_recommend_txt {
  margin: 20px auto;
  line-height: 1.8;
  width: 724px;
  max-width: 90%;
  font-size: 16px;
}

.ranking_btn_txt {
  position: relative;
  display: block;
  margin: 25px auto 0;
  width: fit-content;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #f91f2f;
}

.ranking_btn_txt::before,
.ranking_btn_txt::after {
  position: absolute;
  top: 0;
  left: -35px;
  bottom: 0;
  width: 24px;
  height: 32px;
  margin: auto;
  content: "";
  background-image: url(./img/yellow_sold_decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.ranking_btn_txt::after {
  right: -35px;
  left: auto;
  transform: scale(-1, 1);
}

/*--------------------------------------*/
/*　　　chance　*/
/*--------------------------------------*/

.section.__chance {
  padding-bottom: 32px;
  background-color: #fff3f3;
}

.section.__chance h2 {
  background-color: var(--blue);
  padding: 24px 0 16px;
  margin: 0 auto 32px;
}

.section.__chance p {
  line-height: 1.7;
}

.section.__chance p+p {
  margin-top: 35px;
}

.section.__chance h3 {
  font-size: 24px;
  line-height: 1;
  padding: 8px 0;
  width: 100px;
  text-align: center;
  color: var(--blue);
  background-color: #fff;
  border: solid 1px var(--blue);
  margin-bottom: 24px;
}

.section.__chance .flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px auto;
}

.section.__chance .flex_box img {
  width: calc(100% - 24px / 2);
}

.section.__chance .bg_blue,
.section.__chance .bg_pink {
  background-color: var(--blue);
  color: #fff;
  line-height: 1;
  padding: 2px 8px;
  margin: 0 4px;
}

.section.__chance .bg_pink {
  background-color: var(--pink);
  color: #fff;
  line-height: 1.3;
  padding: 4px 8px;
}

.section.__chance .cta_btn::before {
  content: none;
}

/*--------------------------------------*/
/*　　運営者情報　　*/
/*--------------------------------------*/

.manager_area {
  padding: 24px 0 60px;
  color: #434343;
  background-color: #fff;
  border-bottom: solid 5px var(--pink);
  margin-bottom: 40px;
}

.manager_ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.manager_table {
  width: 90%;
  max-width: 770px;
  margin: 0 auto 50px;
  border-collapse: collapse;
}

.manager_table th,
.manager_table td {
  padding: 10px;
}

.manager_table th {
  width: 100px;
  border-bottom: solid 2px var(--pink);
}

.manager_table td {
  border-bottom: solid 2px #d3d3d3;
}

/*--------------------------------------*/
/*　　フッター floating　　*/
/*--------------------------------------*/

.footer-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(254, 200, 185, 0.9);
  /* 元の淡ピンク */
  z-index: 9999;
  padding: 10px 0;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  padding: 0 20px;
}

.microcopy {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.microcopy-highlight {
  color: #333;
}

.underline {
  font-size: 18px;
  background: linear-gradient(transparent 70%, yellow 70%);
  font-weight: bold;
}

.floating-btn {
  display: block;
  margin-top: 8px;
  background-color: #05DE3D;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 6px 0 #03b430;
  width: 100%;
  max-width: none;
  transition: all 0.2s ease;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  text-align: center;
}

.floating-btn:hover {
  box-shadow: 0 3px 0 #03b430;
  -webkit-transform: translateY(3px) translateZ(0);
  transform: translateY(3px) translateZ(0);
}

.floating-btn:active {
  box-shadow: 0 1px 0 #03b430;
  -webkit-transform: translateY(5px) translateZ(0);
  transform: translateY(5px) translateZ(0);
}

.highlight-text {
  color: yellow;
}

/* 運営者情報テーブルの左側項目の幅調整のみ */
.manager_table th {
  width: 35%;
  min-width: 120px;
}

.manager_table td {
  width: 65%;
}

/* ロゴサイズの調整のみ */
.site-logo {
  width: 25px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/*--------------------------------------*/
/*　　tablet　　*/
/*--------------------------------------*/

@media screen and (max-width: 1100px) {
  .recommend_table_wrap {
    overflow-x: scroll;
  }

  .recommend_table {
    margin: auto;
    width: 630px;
  }

  .recommend_table td {
    font-size: 15px;
  }

  .recommend_table_answer_img {
    width: 40px;
  }

  .recommend_table_btn::before {
    right: 11px;
  }

  .recommend_table_tr.__logo img,
  .recommend_table_tr.__star img {
    width: 105px;
    height: auto;
  }

  .ranking_block::before {
    top: -5px;
    left: 23px;
    width: 92px;
  }

  .recommend_table th:nth-child(1)::before,
  .recommend_table th:nth-child(2)::before,
  .recommend_table th:nth-child(3)::before {
    left: 11px;
    width: 24px;
    height: 24px;
  }

  /*　ランキング見出しタイトル　*/

  .ranking_ttl {
    width: 320px;
    font-size: 20px;
  }

  .ranking_ttl::before,
  .ranking_ttl::after {
    top: auto;
    bottom: 0;
    left: -33px;
    width: 25px;
    height: 38px;
  }

  .ranking_ttl::after {
    right: -33px;
    left: auto;
  }

  /*　○○の基本情報　*/

  .ranking_info_ttl {
    margin: 20px auto 10px;
    font-size: 18px;
  }

  .ranking_info_ttl::before,
  .ranking_info_ttl::after {
    left: -80px;
    width: 54px;
    height: 8px;
  }

  .ranking_info_ttl::after {
    right: -80px;
    left: auto;
  }

  tr a img,
  .cta_btn a img {
    width: 650px;
    max-width: 86vw;
  }

  .ranking_recommend_txt {
    margin: 20px auto;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv_area {
    padding: 0 3vw 2vw;
  }

  .contents_area {
    padding: 0 16px;
  }

  .rank-card {
    height: 300px;
  }

  .rank-features {
    height: 186px;
  }
}

@media screen and (max-width: 768px) {
  .manager_table th {
    width: 40%;
    min-width: 100px;
  }

  .manager_table td {
    width: 60%;
  }

  .site-logo {
    width: 20px;
    max-width: 20px;
  }
}

/*--------------------------------------*/
/*　　sp　　*/
/*--------------------------------------*/

@media screen and (max-width: 599px) {
  .section {
    padding: 9vw 0;
  }

  .section_ttl_band {
    margin-top: 24px;
  }

  h2 img {
    width: 92vw;
  }

  a img {
    width: 86vw;
  }

  /*編集部イチオシ*/

  .service_first_txt {
    width: 95%;
    font-size: 15px;
  }

  .service_block {
    padding: 26px 16px 0;
    margin-top: 40px;
  }

  .service_block::before {
    width: 345px;
    height: 48px;
  }

  .service_ttl {
    font-size: 22px;
  }

  .service_list {
    padding: 30px 20px 8px 30px;
  }

  .service_list::after {
    width: 290px;
    height: 50px;
  }

  /*TOP5*/

  .recommend_ttl {
    width: 232px;
  }

  .recommend_ttl::before,
  .recommend_ttl::after {
    left: -30px;
    width: 30px;
    height: 60px;
  }

  .recommend_ttl::after {
    right: -30px;
    left: auto;
  }

  /*　スクロールヒント　*/

  .recommend_scroll_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #808080;
  }

  .recommend_scroll {
    position: relative;
    padding: 3px 10px;
    font-size: 14px;
    background-color: #e2e2e2;
  }

  .recommend_scroll::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    margin: auto;
    width: 15px;
    height: 100%;
    content: "";
    background-color: #e2e2e2;
    clip-path: polygon(100% 0%, 100% 100%, 0 100%);
  }

  .recommend_scroll_icon {
    width: 25px;
    height: auto;
  }

  /*　比較表　*/

  .recommend_ttl {
    padding: 20px 10px;
    font-size: 21px;
    line-height: 1.1;
  }

  .recommend_table_wrap {
    margin-bottom: 25px;
    padding: 0 4vw;
  }

  .section.__recommend {
    padding: 0 0 9px;
  }

  /*　ランキング詳細　*/

  .section.__ranking {
    padding: 0 0 9vw;
    gap: 26px;
  }

  .section.__ranking .ttl_flex {
    padding-left: 53px;
    margin: 12px auto 23px;
    justify-content: center;
  }

  .section.__ranking .ttl_flex img {
    width: 31vw;
  }

  .ranking_servise_name {
    padding: 18px 15px 19px 88px;
    font-size: 22px;
  }

  .ranking_block.__first .ranking_servise_name {
    padding-left: 115px;
  }

  .ranking_block.__first .ranking_servise_name::before {
    top: 20px;
    bottom: auto;
    left: 84px;
    width: 25px;
    height: 20px;
  }

  .ranking_block::before {
    top: -5px;
    left: 10px;
    width: 15vw;
  }

  .ranking_recommend_txt {
    font-size: 15px;
    margin: 3vw auto;
  }

  /*　ランキング見出しタイトル　*/

  .ranking_ttl {
    width: 257px;
    font-size: 17px;
  }

  .ranking_ttl::before,
  .ranking_ttl::after {
    top: auto;
    bottom: 0;
    left: -33px;
    width: 25px;
    height: 38px;
  }

  .ranking_ttl::after {
    right: -33px;
    left: auto;
  }

  .ranking_ss {
    width: 90%;
  }

  .ranking_info_table {
    margin: 0 auto 22px;
    width: 90%;
    font-size: 15px;
  }

  .ranking_info_table th {
    width: 100px;
    font-size: 14px;
  }

  .ranking_info_table th,
  .ranking_info_table td {
    padding: 10px;
  }

  .ranking_check {
    flex-direction: column;
    align-items: center;
    width: 90%;
  }

  .ranking_check_img_wrap {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px 5px 0 0;
  }

  .ranking_check_img {
    display: block;
    width: 100px;
  }

  .ranking_check_list {
    padding: 0;
    border-radius: 0 0 5px 5px;
  }

  .ranking_check_list_item {
    padding: 13px 8px 13px 38px;
  }

  .ranking_check_list_item::before {
    top: 24px;
    left: 10px;
  }

  .ranking_btn,
  .ranking_btn:-webkit-any-link {
    padding: 18px 15px 18px 10px;
    margin: 15px auto 36px;
    font-size: 17px;
  }

  .ranking_btn::before {
    right: 10px;
  }

  .ranking_btn_txt {
    margin: 17px auto 0;
    width: 210px;
    font-size: 16px;
  }

  /*　3つのポイント　*/

  .section_ttl_band {
    padding: 17px 10px;
    font-size: 19px;
  }

  /*　try　*/

  .try_contents {
    flex-direction: column-reverse;
    gap: 2px;
    width: 90%;
  }

  /* チャンス */

  .section.__chance {
    padding-top: 0;
  }

  .section.__chance h2 {
    padding: 3.2vw 0 2.133vw;
    margin: 0 auto 5vw;
  }

  .section.__chance p {
    line-height: 1.7;
  }

  .section.__chance p+p {
    margin-top: 4.667vw;
  }

  .section.__chance h3 {
    font-size: 16px;
    padding: 1.067vw 0;
    width: 13.333vw;
    margin-bottom: 3.2vw;
  }

  .section.__chance .flex_box {
    display: block;
    margin: 24px auto;
    text-align: center;
  }

  .section.__chance .flex_box img {
    width: 80vw;
    margin-top: 10px;
  }

  .section.__chance .bg_blue,
  .section.__chance .bg_pink {
    padding: 0.267vw 1.067vw;
    margin: 0 0.533vw;
  }

  .section.__chance .bg_pink {
    background-color: var(--pink);
    padding: 0.533vw 1.067vw;
  }

  /*　運営者情報　*/

  .manager_table {
    width: 90%;
    font-size: 14px;
  }

  .manager_table th {
    width: 84px;
  }

  .manager_table th,
  .manager_table td {
    padding: 10px 4px;
  }
}

@media screen and (max-width: 480px) {
  .manager_table th {
    width: 45%;
    min-width: 90px;
  }

  .manager_table td {
    width: 55%;
  }

  .site-logo {
    width: 18px;
    max-width: 18px;
  }
}

@media screen and (max-width: 820px) {
  body {
    padding-bottom: 180px;
    /* スマホでは少し多めに確保 */
  }

  h2 img {
    width: 92vw;
  }

  .floating-inner {
    padding: 0 16px;
  }

  .floating-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .microcopy {
    font-size: 12px;
  }

  .manager_area {
    padding: 24px 0 50px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .floating-inner {
    padding: 0 12px;
  }

  .floating-btn {
    font-size: 15px;
    padding: 10px 16px;
  }

  .microcopy {
    font-size: 11px;
  }
}

/* ランキング内の記号上下揃え */
.recommend_table_tr:nth-of-type(7),
.recommend_table_tr:nth-of-type(9),
.recommend_table_tr:nth-of-type(11),
.recommend_table_tr:nth-of-type(13),
.recommend_table_tr:nth-of-type(15) {
  display: flex;
  width: 627.6px;
}

.recommend_table_tr:nth-of-type(7) td,
.recommend_table_tr:nth-of-type(9) td,
.recommend_table_tr:nth-of-type(11) td,
.recommend_table_tr:nth-of-type(13) td,
.recommend_table_tr:nth-of-type(15) td {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 20%;
}

.recommend_table_tr:nth-of-type(7) td div,
.recommend_table_tr:nth-of-type(9) td div,
.recommend_table_tr:nth-of-type(11) td div,
.recommend_table_tr:nth-of-type(13) td div,
.recommend_table_tr:nth-of-type(15) td div {
  width: 100%;
  min-height: 67.5px;
  margin-top: .5rem;
}

.recommend_table_tr:nth-of-type(9) td:nth-child(1),
.recommend_table_tr:nth-of-type(13) td:nth-child(1),
.recommend_table_tr:nth-of-type(15) td:nth-child(1) {
  border-right: #e70000 solid 3px;
}

.recommend_table_tr:nth-of-type(15) td div {
  min-height: 90px;
}

@media screen and (min-width: 1100px) {

  .recommend_table_tr:nth-of-type(7),
  .recommend_table_tr:nth-of-type(9),
  .recommend_table_tr:nth-of-type(11),
  .recommend_table_tr:nth-of-type(13),
  .recommend_table_tr:nth-of-type(15) {
    width: 908px;
  }
}

/* グレー線復帰 */
.recommend_table_tr:nth-of-type(7) td:nth-of-type(2),
.recommend_table_tr:nth-of-type(7) td:nth-of-type(3),
.recommend_table_tr:nth-of-type(7) td:nth-of-type(4),
.recommend_table_tr:nth-of-type(7) td:nth-of-type(5),
.recommend_table_tr:nth-of-type(9) td:nth-of-type(2),
.recommend_table_tr:nth-of-type(9) td:nth-of-type(3),
.recommend_table_tr:nth-of-type(9) td:nth-of-type(4),
.recommend_table_tr:nth-of-type(9) td:nth-of-type(5),
.recommend_table_tr:nth-of-type(11) td:nth-of-type(2),
.recommend_table_tr:nth-of-type(11) td:nth-of-type(3),
.recommend_table_tr:nth-of-type(11) td:nth-of-type(4),
.recommend_table_tr:nth-of-type(11) td:nth-of-type(5),
.recommend_table_tr:nth-of-type(13) td:nth-of-type(2),
.recommend_table_tr:nth-of-type(13) td:nth-of-type(3),
.recommend_table_tr:nth-of-type(13) td:nth-of-type(4),
.recommend_table_tr:nth-of-type(13) td:nth-of-type(5),
.recommend_table_tr:nth-of-type(15) td:nth-of-type(2),
.recommend_table_tr:nth-of-type(15) td:nth-of-type(3),
.recommend_table_tr:nth-of-type(15) td:nth-of-type(4),
.recommend_table_tr:nth-of-type(15) td:nth-of-type(5) {
  border-right: 2px solid #c1c1c1;
}

/* スクロール進行度でポップアップ表示CSS */
/* モーダルのオーバーレイ */
#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

/* モーダル本体 */
#modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

#modal button {
  padding: .75rem 1.125rem .625rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 3%;
  font-size: min(4vw, 1.5rem);
}

#modal button:hover {
  background: #0056b3;
}

.modal_image_flex {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-top: .5rem;
}

.modal_image_flex img {
  width: 25%;
}

.modal_image_flex a {
  width: 70%;
}

.modal_image_flex a img {
  width: 100%;
}

a.modal_link {
  display: block;
  margin: 2rem auto 1rem;
  padding: 1rem;
  background: red;
  width: 80%;
  border-radius: 1rem;
  color: white !important;
}

.btn_box_tap {
  margin: 2.5rem auto 1rem;
  width: 80%;
}

#btn_animation_tap .btn_tap {
  display: block;
  padding: 1rem 0;
  border-radius: 1rem;
  text-decoration: none;
  background-color: red;
  color: white;
  text-align: center;
  overflow: hidden;
  animation: btn_animation_tap 1s infinite;
  box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}

@keyframes btn_animation_tap {
  0% {
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
    top: 0px;
  }

  10% {
    box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
    top: 3px;
  }

  20% {
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
    top: 0px;
  }

  30% {
    box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
    top: 3px;
  }

  40% {
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
    top: 0px;
  }
}

/**/
/* .btn_box_shine {
  margin: 1.5rem auto 1rem;
  width: fit-content;
}

#btn_animation_shine .btn_shine {
  display: block;
  position: relative;
  background-color: #05DE3D;
  color: white;
  text-align: center;
  overflow: hidden;
  border-radius: .5rem;
  padding: .5rem 2rem .675rem;
}

#btn_animation_shine .btn_shine:hover {
  text-decoration: none;
  color: #fbfbfb;
}

#btn_animation_shine .btn_shine::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation_shine 2.5s ease-in-out infinite;
}

@-webkit-keyframes btn_animation_shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
} */

/* カーネクスト追加コンテンツ調整用 */
.section.__ranking_add_car_next {
  padding-bottom: 0;
  margin-bottom: 32px;
}

.section.__ranking_add_car_next .contents_area {
  padding: 0;
  margin-top: 40px;
}

.section.__ranking_add_car_next .ranking_block::before {
  display: none;
}

.section.__ranking_add_car_next .horizontal_band {
  position: absolute;
  top: -12px;
  left: -3px;
  background: #db2324;
  color: white;
  padding: .5rem 2rem .5rem 1.5rem;
}

.section.__ranking_add_car_next .horizontal_band:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.section.__ranking_add_car_next .horizontal_band:after {
  top: 0;
  right: 0;
  border-width: 18px 18px 18px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.section.__ranking_add_car_next .ttl_flex {
  padding-left: 8px;
  margin: 32px auto 4px;
  width: 80%;
}

.section.__ranking_add_car_next .ranking_check_list_item span {
  color: #db2324;
}

.section.__ranking_add_car_next .ranking_check_list_item:not(:last-child) {
  border-bottom: none;
}

.section.__ranking_add_car_next .ranking_check_list_item::before {
  background: url("./img/circle_pink.png") no-repeat center / contain;
}

.section.__ranking_add_car_next .ranking_check_list {
  position: relative;
  padding: 1rem 0;
}

.section.__ranking_add_car_next .ranking_check_list .ttl {
  color: #fff;
  position: absolute;
  color: var(--pink);
  background: white;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 1px 1rem;
  border-bottom: 2px solid var(--pink);
}

.section.__ranking_add_car_next .ranking_block.__first .ranking_check {
  border: solid 2px var(--pink);
  max-width: 600px;
}

@media screen and (max-width: 599px) {
  .section.__ranking_add_car_next .ttl_flex {
    width: 90%;
    justify-content: unset;
  }
}

/* リンク画像のサイズ調整 */
.rank-card:first-of-type a img {
  max-width: unset;
  margin: 0px auto 10px;
}

.rank-card:nth-of-type(3) a img {
  max-width: unset;
  margin: 0px auto 10px;
}

/* FV文字サイズ調整 */
@media screen and (max-width: 599px) {
  .section.__intro .intro_txt {
    font-size: 3.6vw;
  }

  .section.__intro {
    padding: 4vw 0 9vw;
  }

  .section.__intro .intro_txt+.intro_txt {
    margin: 4vw auto 5vw;
  }

  .intro_txt:first-child br.sp:nth-of-type(2) {
    display: none;
  }

  .section.__intro .intro_txt::after {
    top: 23vw;
  }

  .section.__ranking_add_car_next .contents_area {
    margin-top: 24px;
  }

}