@charset "UTF-8";
/*
 *
 * style.scss
 *
 */
/*
 *
 * _media_query.scss
 *
 */ 
/* ------------------------------------------------------------
 ブレイクポイント
------------------------------------------------------------ */
/* ------------------------------------------------------------
 大きめPC
------------------------------------------------------------ */
/* ------------------------------------------------------------
 PC
------------------------------------------------------------ */
/* ------------------------------------------------------------
 タブレット
------------------------------------------------------------ */
/* ------------------------------------------------------------
 スマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 小さめスマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ホバーエフェクト
------------------------------------------------------------ */
/*
 *
 * _variables.scss
 *
 */
/* ------------------------------------------------------------
 変数設定
------------------------------------------------------------ */
/* ------------------------------------------------------------
 カラーパレット
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テーマカラー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 背景色
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テキスト
------------------------------------------------------------ */
/* 本文の見出し1 */
/* 本文の黒見出し */
/* 本文の色付きテキスト1 */
/* 本文の黒テキスト */
/* 本文中のリンク */
/* リンクホーバー時 */
/* ------------------------------------------------------------
 表
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ボタン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 959px) {
  html {
    font-size: 94%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  scroll-padding-top:120px;
  background: linear-gradient(to left,#F19C97,#fff,#fff, #fff,#F19C97) fixed;
  max-width: 420px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.9;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  vertical-align: bottom;
  /*max-width: none;*/
}

*:focus {
  outline: none;
}



/* ------------------------------------------------------------
  .strong 文字装飾
------------------------------------------------------------ */
.strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.topic {
  background:linear-gradient(transparent 60%, #ff6 60%);
  font-weight: bold;
}

.topic1 {
  background:linear-gradient(transparent 60%, #ff6 60%);
  font-weight: bold;
  color: red;
}
.pink {
  color: #fa4141;
  font-size: 1.4rem;
  font-weight: bold;
}
.pink1 {
  color: #fa4141;
  font-size: 1.2rem;
  font-weight: bold;
}
.sr {
  display: none;
}
/* ------------------------------------------------------------
  .ib inline-blockで改行
------------------------------------------------------------ */
.ib {
  display: inline;
}
@media (max-width: 959px) {
  .ib {
    display: inline-block;
  }
}

/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
 .body-wrapper {
  overflow-x: hidden;
  width: 420px;
  margin: auto;
  box-shadow: 0 0 5px gray;
 }
} 
/* ------------------------------------------------------------
  header ヘッダー
------------------------------------------------------------ */
header {
  position: relative;
  background: #fff;
  padding: 10px 12px;
  z-index: 999;
  text-align:left;
  border-bottom: solid 1px #ccc;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header a {
  font-size: 1.2rem;
  font-weight: bold;
}

.logo {
  width: 150px;
}

.pr {
  position: absolute;
  right: 0%;
  top: 0%;
  color: #fff;
  background: #aaaaaa;
  padding: 0px 3px;

}

.menu{
  display: inline-flex;
  gap: 10px;
}

.menu a{
  color: #000;
  font-size: 0.8rem;
}

.menu a:visited {
  color: #000;
}
/* ------------------------------------------------------------
  main-visual メインビジュアル
------------------------------------------------------------ */
.main-visual {
  position: relative;
}

.main-visual .main-visual__bg {
  margin: auto;
  overflow: hidden;
}


/* ------------------------------------------------------------
  section
------------------------------------------------------------ */

/* -----------------------------------@keyframes loop {

  0% {

    transform: translateX(100%);

  }

  to {

    transform: translateX(-100%);

  }

}



@keyframes loop2 {

  0% {

    transform: translateX(0);

  }

  to {

    transform: translateX(-200%);

  }

}


/* ------------------------------------------------------------
  クレカ現金化とは
------------------------------------------------------------ */
.about {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}

.about_body {
  width: 90%;
  margin: auto;
  text-align: center;
}

.about img {
  margin-top: 30px;
  width: 100%;
  margin-left: 5px;
}

.about_box {
  text-align: left;
  margin-top: 30px;
  font-size: 16px;
}



/* ------------------------------------------------------------
  TOP3
------------------------------------------------------------ */
.top3 {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 50px;
}

.balloon1 {
  position: relative;
  padding: 2px 10px;
  min-width: 120px;
  max-width: 250px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #036eb8;
  border-radius: 30px;
  margin: auto;

}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #036eb8;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}

.basic-h2 {
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
}

.orenge {
  color: #fa4141;
  font-size: 36px;
}

.wrap {
  margin-top: 10px;
}

.wrap table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 95%;
  table-layout: fixed;
}
.wrap thead th{
  padding: 1em .0em;
  border-right: 5px solid#fff;
}
.wrap table tr {
  background-color: #fff;
  padding: .35em;
}
.wrap table tr:nth-child(even){
  background-color: #f9f9f9;
}
/*.wrap table tr:nth-child(3) th{
  font-size: 13px;
}*/
.wrap table td {
  padding: .7em;
  text-align: center;
}
.wrap table th {
  font-size: 15px;
  text-align: left;
  padding-left: 10px;
}

.wrap img {
  width: 17%;
}

.plan2_i{
  color: #fa4141;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  border: none;
}

.star5_rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC; /* グレーカラー 自由に設定化 */
    /*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before, .star5_rating:after{
    content: '★★★★★';
}

.star5_rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

.output-date-time {
  text-align: right;
  padding-right: 5%;
}


/* ------------------------------------------------------------
  3つのポイント
------------------------------------------------------------ */
.point {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.point img {
  width: 70%;
  margin-top: 30px;
}

.point-text {
  font-size: 16px;
  text-align: left;
  width: 90%;
  margin: auto;
  margin-top: 50px;
}

/* ------------------------------------------------------------
  ランキング
------------------------------------------------------------ */
.rank {
  background: #a4e0ea;
  padding-top: 20px;
  padding-bottom: 50px;
}

.balloon2 {
  position: relative;
  padding: 2px 10px;
  min-width: 120px;
  max-width: 250px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  margin: auto;

}

.balloon2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

.balloon2 p {
  margin: 0;
  padding: 0;
  color: #036eb8;
}

.rank_body {
  width: 95%;
  margin: auto;
  margin-top: 40px;
}

.rank_contents {
  position: relative;
  background: #fff;
  padding: 20px 20px;
  border-radius: 10px;
  padding-bottom: 40px;
  margin-bottom: 60px;
}

.crown {
  position: absolute;
  width: 20%;
  top: -2%;
  left: -1%;

}

.maru {
 position: absolute;
 top: 0.2%;
 left: 1%;
 height:55px;
 width:55px;
 border-radius:50%;
 line-height:55px;
 text-align:center;
 background: #8fc31f;
 color: #fff;
 font-weight: bold;
 font-size: 32px;
}

.rank_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
}

.rank_title img {
  width: 20%;
}

.line {
  border: dashed 2px #036eb8;
  width: 100%;
  margin: auto;
  margin-top: 5px;
}

.hyouka {
  margin-top: 10px;
  font-size: 24px;
}

.sougou {
  background: #dcdddd;
  padding: 3px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 16px;
}

.rank_img {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.rank_img img{
  width: 50%;
  height: 50%;
}

.sp_rank_table{
  width: 95%;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
}
.sp_rank_table table{
  border:1px solid #999;
  width: 100%;
  border-collapse: collapse;
}
.sp_rank_table table th{
  padding: 1rem 0;
  border-right: 1px solid #999;
  background-color: #eee;
  border-bottom:1px solid #999 ;
}
.sp_rank_table table th:last-child{
  border-bottom: none;
}
.sp_rank_table table td{
  padding: 1rem 0;
  border-bottom: 1px solid #999;
}


.rank_box {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.box{
  flex: 1;
  border: 2px solid #036eb8;
  text-align: center;
}
.box h3{
  background: #036eb8;
  color: #FFF;
  text-align: center;
  margin: 0;
  font-size: 16px;
}
.box .inner{
  padding: .2em;
}
.inner p {
  line-height: 1.5rem;
  margin-top: -10px;
}
.nijuumaru {
  color: red;
  font-size: 42px;
  font-weight: bold;
}

.box11{
  padding: 0.5em 1em;
  margin-top: 2em;
  color: #5d627b;
  background: white;
  border-top: solid 5px #5d627b;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
  text-align: center;
}
.box11 p {
  margin: 0; 
  padding: 0;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
.box11 img {
  width: 60px;
  margin-top: 2%;
}

.box-design17 {
  margin: 50px auto 20px;
  padding: 30px 5px 10px 5px;
  background: #f1faff;
}
.box-design17-ttl {
  background-color: #036eb8;
  color: #fff;
  border-radius: 100vh;
  padding: 5px 10px;
  margin: -55px 0 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.box-design17-ttl::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 15px solid transparent;
  width: 0;
  height: 0;
  border-top-color: #036eb8;
}
.list-012 {
  list-style-type: none;
  padding-top: 20px;
  font-size: 16px;
}

.list-012 li {
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  padding: .3em .3em .3em 1.5em;
  margin-bottom: 5px;
}

.list-012 li::before,
.list-012 li::after {
  position: absolute;
  content: '';
}

.list-012 li::before {
  left: 0;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background-color: #036eb8;
}

.list-012 li::after {
  left: .6em;
  transform: translateX(-75%) rotate(-45deg);
  width: .3em;
  height: .3em;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.box30 {
  margin-top: 2em ;
  margin-bottom: 2em ;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  border: solid 1px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
}
.box30 .box-title {
  font-size: 16px;
  background: #f1faff;
  padding: 4px;
  padding-left: 10px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.22);
}
.box30 div {
  padding: 15px 20px;
  margin: 0;
}
.ank {
  font-size: 12px;
  font-weight: 100;
  padding-left: 15px;
}
.prf {
  display: flex;
  align-items: center;
  gap: 10px;
}
.prf img {
  width: 20%;
}
.prf p {
  line-height: 1.3rem;
  font-weight: bold;
}
.gray {
  font-weight: 100;
  color: gray;
  font-size: 12px;
}

.kuchikomi2 {
  text-align: center;
}
.more-toggle,
.hidden-content {
  display: none;
}

.more-toggle:checked ~ .hidden-content {
  display: block;
}

.more-button {
  display: inline-block;
  width: 200px;
  height: 40px;
  padding: 8px;
  background-color: #dcdddd;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border-bottom: solid 3px #898989;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s;
  font-weight: bold;
  font-size: 12px;
}

.more-button::before {
  content: '口コミを全て見る';
}

.more-toggle:checked ~ .more-button::before {
  content: '閉じる';
}

.more-button:hover {
  opacity: 0.7;
}

.more-button:active {
  opacity: 0.4;
}
.hidden-content {
  text-align: left;
  width: 100%;
}
.line2 {
  border-bottom: solid 2px #dcdddd;
  padding-top: -15px;
}


/* solid015 */
.button_solid015 {
    text-align: center;
}
.button_solid015 p {
    margin-bottom: 5px;
    font-weight: 600;
    color: #036eb8;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}
.button_solid015 p:before, .button_solid015 p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #036eb8;
    content: "";
}
.button_solid015 p:before {
    left: -30px;
    -webkit-transform: rotate( 50deg );
    transform: rotate( 50deg );
}
.button_solid015 p:after {
    right: -30px;
    -webkit-transform: rotate( -50deg );
    transform: rotate( -50deg );
}
.shiny-btn2 {
    position: relative;
    display: inline-block;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 15px 15px;
    min-width: 320px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 20px;
    background: #fa4141;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 10px;
    line-height: 1.5rem;
    border-bottom: solid 5px #d82525;
    overflow: hidden;
}
.shiny-btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.shiny-btn2::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    transition: 0.2s;
    animation: shiny-btn2 4s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn2 {
    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; }
}

.cta-small {
  font-size: 10px;
}


.readmore-wrap {
  position: relative;
  width: 100%;
  margin: auto;
}
.readmore-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  background-color: #eee;
  border-radius: 5px;
  color: #333;
  border: 1px solid #aaa;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  z-index:10;
}
.readmore-text {
  position: relative;
  overflow: hidden;
  height: 0px;
}
.readmore-check {
  display: none;
}
.readmore-check:checked + .readmore-btn{
  display: none;
}
.readmore-check:checked ~ .readmore-text {
  height: auto;
}

.under_no9 th {
  padding: 10px 5px;
}

.under_no9 td {
  padding: 10px 0px;
}

.under_no9 tr:first-child {
  background: #dcdddd;
  font-weight: bold;
}

.under_no9 th,td {
  border: solid 1px #b5b5b6;
}

.under_no9 {
  width: 100%;
  background: #fff;
  border-collapse:  collapse;
  text-align: center;
}

.small-btn {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 5px 5px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 12px;
  background: orange;
  border-radius: 5px;
  line-height: 1.5rem;
}
.small-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}


.rank_btn {
  margin: 0 auto;
  margin-top: 100px;
  padding: 15px 15px;
  width: 300px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  background: #fa4141;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 10px;
  line-height: 1.5rem;
  border-bottom: solid 5px #d82525;
  overflow: hidden;
}
.rank_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
/* ------------------------------------------------------------
  3つのメリット
------------------------------------------------------------ */
.merit{
  background: #f1faff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.h2-merit {　
  padding: 20px 40px;
  margin-top: 60px;
}

.merit_box {
  width: 90%;
  margin: auto;
  margin-top: 30px;
}

.merit_contents {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 5%;
}

.merit_contents h3 {
  font-size: 20px;
  color: #036eb8;
}

.merit_contents img {
  width: 80%;
  margin-top: 20px;
}

.merit_contents p {
  text-align: left;
  margin-top: 20px;
  font-size: 16px;
}


/* ------------------------------------------------------------
  絞込み検索
------------------------------------------------------------ */
.search {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}

input{
  display: none;
}

.bl_3daysSearchBlock_inner{
  width: 95%;
  margin: auto;
}

.bl_3daysSearchBlock_ttl_main{
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: left;
  background: #036eb8;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.bl_selectBlock{
  border: 1px solid #036eb8;
  background: #f1faff;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  margin: auto;
}

.js_target{
  display: none;
}
.js_target.js_selected{
  display: block;
}
.bl_selectBlock label{
  display: inline;
}
.bl_selectBlock input{
}

.bl_selectBlock_check {
  background: #fff;
  border: solid 1px #036eb8;
  border-bottom: solid 2px #898989;
  border-radius: 5px;
  padding: 10px;
  min-width: 140px;
  text-align: left;
  align-items: center;
}
.bl_selectBlock_check label .el_checkbox{
  position: relative;
  top: 3px;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #0073aa;
}
.bl_selectBlock_check label .el_checkbox_card{
  position: relative;
  top: 3px;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #0073aa;
  margin-bottom: 16px;
}

.bl_selectBlock_check label .el_checkbox:after{
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
}
.bl_selectBlock_check input[type=checkbox]:checked + label .el_checkbox_card:after{
  background-color: #0073aa;
}

.bl_selectBlock_check label .el_checkbox_card:after{
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
}
.bl_selectBlock_check input[type=checkbox]:checked + label .el_checkbox:after{
  background-color: #0073aa;
}
.el_searchResult{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #0073aa;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bl_selectBlock_check label{
  cursor: pointer;
}

.bl_selectBlock_ttl{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 10px;
  letter-spacing: 0.1em;
  text-align: left;
  padding-left: 25px;
}

.bl_selectBlock_content{
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.bl_selectBlock_content img {
  width: 70px;
}

.bl_searchResultBlock{
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #bdbdbd;
}
.bl_searchResultBlock_item{
  padding: 20px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #bdbdbd;
  padding-left: 30px;
}
.bl_selectBlock_check{
  display: inline-block;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 20px;
}
.bl_selectBlock_check:last-child{
  margin-right: 0;
}
.bl_selectBlock_release{
  text-align: center;
  color: #fff;
  background-color: #bdbdbd;
  padding: 15px 0;
  max-width: 200px;
  margin: auto;
  margin-bottom: 30px;
}
.js_release{
  cursor: pointer;
}

.name {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  padding-left: 5px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 30px;
}
.detail img{
  width: 50%;
}
.detail li {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background: orange;
  color: #fff;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 8px;
}
/* ------------------------------------------------------------
  よくある質問
------------------------------------------------------------ */
.qa {
  background: #f1faff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.accordion {
  width: 95%;
  margin: auto;
  margin-top: 30px;
}

/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
  display: block;
  padding: 10px 80px 10px 10px;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
  font-size: 16px;
}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}
/* ↑ここまで共通 */


/* Q&A追加 */
.accordion_qa .Q {
  position: relative;
  padding-left: 30px;
}
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -.6em;
  left: -1.3em;
}

.accordion_qa .Q::before {
  content: 'Q';
  background: #0079a8;
  color: #fff;
  padding: 2px 8px;
}

.accordion_qa .A::before {
  content: 'A';
  color: #fbb03b;
  font-weight: bold;
}

.accordion_qa .accordion-open {
  padding-left: 2.5em;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 2.5em;
}
/* Q&A追加ここまで */


/* ------------------------------------------------------------
  コラム
------------------------------------------------------------ */
.columm {
  padding-top: 50px;
  padding-bottom: 50px;
}

.columm_body {
  width: 95%;
  margin: auto;
}

.columm_body h2 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: left;
  background: #036eb8;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.columm_box {
  border: solid 1px #036eb8;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px;
}

.columm_box li {
  font-size: 16px;
  text-decoration: underline #595757;
  margin-bottom: 10px;
}
/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  padding: 2rem;
  font-size: 15px;
  color: #fff;
  background: #F19C97;
  text-align: center;
}

.footer__navi {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer__navi a,a:visited{
  color: #fff;
}

.footer__navi li {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}


/* ------------------------------------------------------------
  以下コラムページ
------------------------------------------------------------ */
.columm_page {
  width: 95%;
  margin: auto;
  padding-top: 50px;
  margin-bottom: -50px;
}

.columm_page h2 {
  padding: 1rem 1rem;
  border-left: 6px double #036eb8;
}

.columm_page p {
  width: 90%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.columm_page h3 {
  padding: 1rem 2rem;
  color: #fff;
  background: #036eb8;
  -webkit-box-shadow: 5px 5px 0 gray;
  box-shadow: 5px 5px 0 gray;
}

/* ------------------------------------------------------------
  以下運営者情報ページ
------------------------------------------------------------ */
.admin {
  background-color: #fff;
  padding-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.admin_page {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.admin_page h3 {
  padding: 0.5rem 2rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
  margin-top: 30px;
  text-align: left;
}

.admin_page p {
  text-align: left;
  margin-top: 10px;
  padding-left: 10px;
  font-size: 16px;
}

.privacy_text {
  margin-top: 20px;
  border: solid 1px gray;
  padding: 10px;
  font-size: 12px;
  text-align: left;
}



.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  position: relative;
  background-color: #fff;
  width: 350px;
  margin: 10% auto;
  padding: 5px;
  border: 1px solid #888;
  border-radius: 5px;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 5px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.circle1{
  display:inline-block;
  width:60px;
  height:60px;
  margin:20px;
  border-radius:100%;
  box-sizing:border-box;
  border:10px dotted #a4e0ea;
  animation:4s linear infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 20px solid #036eb8;
  border-bottom: 0;
  margin: auto;
}

.aria-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/*離脱防止popup*/
.shindan {
  padding-top: 30px;
  padding-bottom: 30px;
}

.balloon3-right-btm {
  position: absolute;
  display: inline-block;
  margin: 1.5em 15px 1.5em 10px;
  padding: 12px 5px;
  width: 90px;
  height: 90px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  background: #f39800;
  border-radius: 50%;
  box-sizing: border-box;
  margin-top: -95px;
}

.balloon3-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #f39800;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.shindan_body {
  background: #fff;
  width: 94%;
  height: auto;
  margin: auto;
  /* box-shadow: 0 0 1px gray; */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 3px 3px 0 rgba(50, 50, 50, 0.5);
}

.shindan h2 {
  width: 90%;
  margin: auto;
  padding: 0.5rem 1rem;
  background: #28923e;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: -2px;
}


.choose_box {
  position: relative;
  width: 100%;
}

.choose_box p {
  /* margin-top: 5%; */
  margin-bottom: 3%;
  font-size: 20px;
  /* display: block; */
  font-weight: 600;
  text-align: center;
}

.choose_box li {
  margin-top: 0px;
  list-style: none;
  flex: 1;
}

ul {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  gap: 5px;
  padding: 10px 5px;
}

.step {
  color: #fff;
  font-weight: bold;
  padding-right: 10px;
}

.btn_shindan {
  display: inline-block;
  flex: wrap;
  min-width: 200px;
  color: #036eb8!important;
  padding: 10px 20px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #eee;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(50, 50, 50, 0.5);
}

.btn_shindan:hover {
  background-color: #036eb8;
  color: #fff!important;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}



.fit {
  /* position: absolute; */
  left: 0px;
  top: -10px;
  width: 100%;
  text-align: center;
}

.fit p {
  /* margin-top: 5%;
  margin-bottom: 10%; */
  font-size: 18px;
  /* display: block; */
  font-weight: 600;
  text-align: left;
  background:#036eb8;
  color:#fff;
  padding:10px;
}


.result_btn {
  display: inline-block;
  flex: wrap;
  min-width: 200px;
  color: #fff;
  padding: 15px 20px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #168e3b;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 50px;
  cursor: pointer;
}

.result_btn:hover {
  background-color: #fff;
  color: #168e3b;
  border: solid 2px #168e3b;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

.result_type0 {
  margin: auto;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.result_type1 {
  margin: auto;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}


.result_theme p {
  text-align: center;
  font-size: 18px;
}


.return-btn {
  margin-top: 25%;
  margin-left: 35%;
  margin-right: 35%;
  width: 30%;
  margin-bottom: 100px;
}

.return {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #2791d4;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #2791d4;
}

.return:hover {
  border: 1px solid #2791d4;
  background-color: #fff;
  color: #2791d4;
  transition: 0.5s;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width:; height: 120vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;/*最初は非表示*/
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  max-width: 560px;
  width: 90%;
  position: relative;
  /* 背景画像を設定 */
  background: url("../img/modal_bg2.png") no-repeat center center;
  background-size: cover;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0px; right: 0px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding-right:10px;
  color: #959595;
}

.modal-pop {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
  z-index: 2;
}
@media (max-width: 480px) {
  .modal-pop {
    top: -15%;
  }
}
@media (max-width: 393px) {
  .modal-pop {
    top: -10%;
  }
}

.question_line {
  display: flex;
  align-items: center;
}

.right_text {
  margin-left: auto;
}

.result_btn img {
  width: 80%; 
  height: auto;
  display: block;
}

.fd{
  flex-direction: column;
}

/*タイマー*/
.timer_in_box {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  padding: 8px 12px;
  border: 2px solid #036eb8;
  border-radius: 4px;
  background-color: #fff;
  max-width: 500px; 
  margin: 10px auto; 
}

.timer_in_box .time-p.font-size-S {
  margin: 0;
  font-size: 0.8rem;
  color: #333;
  font-weight: bold;
}

.timer_in_box .timerbox {
  background-color: #777;
  padding: 6px 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  min-width: 130px;
  text-align: center;
}

/* タイマー文字全体 */
.timer_in_box .timerbox .timer {
  margin: 0;                /* pタグのデフォルト余白を除去 */
  font-size: 0.9rem;        /* 適宜調整 */
}

/* 時間・分・秒それぞれを強調する */
.timer_in_box .timerbox .font-size-M {
  color: #ffd700;           /* 数字部分を黄色系に */
  font-size: 1.1rem;        /* 他より少し大きく */
  margin: 0 2px;            /* 文字同士の余白を少しだけ */
}

/* タイマー終了時の表示（例） */
.timer_in_box .timerbox .end {

  color: #ffe600;           /* ご希望に応じて色を変更 */
  font-weight: bold;
}


/* ------------------------------------------------------------
  検索
------------------------------------------------------------ */
#search {
  padding: 5% 0;
  background-color: #fff;
}

.form__body {
  background-color: #036eb8;
  width: 95%;
  margin: auto;
  border-radius: 5px;
  padding: 3%;
}
.form__inner {
  background-color: #ffffdc;
  margin-top: 5%;
  padding-bottom: 5%;
}
.select-box {
  padding: 5% 3% 0;
}
.search_content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.search_content .step{
  color: #333;
}
.search_content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.radio-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 5% 0;
  padding-bottom: 3%;
  border-bottom: #999999 1.5px dashed;
}
.radio {
  border: solid 1px #999999;
  border-radius: 5px;
  background-color: #fff;
  color: #999999;
  padding: 5px;
  font-weight: bold;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.radio-content input {
  margin: 0;
  margin-right: 5px;
  display: block;
}
/* 選択済みの場合、色を濃くする */
.radio:has(> .radio-input:checked) {
  background-color: #f1faff;
  border-color: #036eb8;
  color: #333;
}
.radio-input {
  appearance: none; /* デフォルトスタイルを無効化 */
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #b3b3b3; /* 未選択時のボーダー色 */
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

/* チェック時のスタイル */
.radio-input:checked {
  border-color: #036eb8; /* 緑のボーダー */
  background-color: #036eb8; /* 緑の背景 */
}

/* 中に白い丸を表示 */
.radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white; /* 白い丸 */
  border-radius: 50%;
}
.card_bland label span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.radio-content label img {
  width: 40px;
  height: auto;
}

input[type="checkbox"] {
  accent-color: #036eb8; /* チェックボックスの色を緑に */
}
/* チェック時のスタイル */
.radio:has(.check-input:checked) {
  background-color: #f1faff;
  color: #333333;
}

.form_button {
  text-align: center;
  margin-top: 5%;
}
.form__body button {
  background-color: #fa4141;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  min-width: 300px;
  padding: 3%;
  cursor: pointer;
  position: relative;
}
.form__body button::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.font-size-M2 img{
  height: auto;
}

/* new ranking design */
.card {
  border: 2px solid #ffb84d;
  border-radius: 12px;
  padding: 18px;
  max-width: 96%;
  margin: 2% auto;
  box-shadow: 0 4px 12px rgba(255, 128, 0, 0.2);
  background-color: #fffdf8;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.card-header img {
  width: 26px;
  margin-right: 8px;
}

.card-header a {
  font-weight: bold;
  font-size: 21px;
  color: #ff6600;
}

.banner {
  width: 100%;
  margin-bottom: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin:20px 0;
  text-align: center;
}

td {
  padding: 10px;
  border: 1px solid #ffe0b3;
  background-color: #fff;
}

td:first-child {
  background-color: #fff0db;
  font-weight: bold;
  width: 40%;
}

.points {
  margin: 16px 0;
}

.points h3 {
  font-size: 16px;
  color: #ff6600;
  margin-bottom: 8px;
  text-align: center;
}

.points ul{
  flex-direction: column;
  background-color: #fff3e6;
  border: 1px dashed #ffcc99;
}

.points li {
  list-style: none;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.points img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.shine-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(to bottom, #FFA3DD, #FF5DC2);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
  transition: transform 0.2s ease;
  font-size: 1.2rem;
  width: 100%;
}

.shine-button:hover {
  transform: scale(1.03);
}

.shine-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  transform: skewX(-20deg);
  animation: shine 1.2s infinite;
}

.shine-button span {
  position: relative;
  z-index: 2;
}

.btn-icon {
  font-size: 18px;
  line-height: 1;
}

@keyframes shine {
  0% { left: -60%; }
  100% { left: 120%; }
}

.microcopy {
  padding: 10px;
  margin: 16px 0 0px;
  text-align: center;
  font-weight: bold;
  color: #ff6600;
}

.tab-buttons {
  display: flex;
  margin-bottom: 16px;
  background: #ff9d77;
  padding: 5px;
  width: 96%;
  margin: auto;
  border-radius: 10px;
}

.tab-button {
  padding: 10px 20px;
  background: #ff9d77;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 50%;
}

.tab-button.active,
.tab-button:hover {
  background: #f75b1e;
}

.tab-content {
  margin-top: 20px;
}

/* .comparison-wrapper {
  overflow-x: auto;
  border: 2px solid #ffb84d;
  border-radius: 8px;
  width: 96%;
  margin: auto;
  background-color: #fffdf8;
  padding: 18px;
}

.comparison-table {
  border-collapse: separate;
  width: 100%;
  min-width: 600px;
  margin: 0;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ffe0b3;
  padding: 12px;
  text-align: center;
  width: 30%;
}

.comparison-table th {
  background-color: #ffe3c6;
  color: #ff6600;
  font-weight: bold;
} */

.comparison-wrapper {
  overflow-x: auto;
  border: 2px solid #ffb84d;
  border-radius: 8px;
  width: 96%;
  margin: auto;
  background-color: #fffdf8;
  padding: 18px;
  
}

.comparison-table {
  border-collapse: separate;
  table-layout: fixed;
  margin: 0;
  max-width: 2180px;/* th(80)とtd(140*15)を足した数にしてください*/
}

.comparison-table th {
  width: 80px; /* thの幅 ここは固定*/
  background-color: #ffe3c6;
  color: #ff6600;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
}

.comparison-table td {
  width: 140px; /* tdの幅　 */
  padding: 8px; 
  text-align: center;
  white-space: nowrap;
}

.comparison-table .table-rate {
  font-size: 2rem;
  font-weight: bold;
  color: #fa4141;
}

.comparison-table .table-text {
  font-size: 1.6rem;
  font-weight: bold;
}

.comparison-table td img {
  width: 150px;
  display: block;
  margin: 0 auto 4px;
}

.ranking-table {
  width: 96%;
  border-collapse: collapse;
  table-layout: auto;
  margin: auto;
}

.ranking-table th, .ranking-table td {
  border: 1px solid #e0a17a;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
}

.ranking-table th {
  background-color: #ffe3c6;
  color: ##ff6600;
  font-weight: bold;
}

.ranking-table th.rank,
.ranking-table td.rank {
  width: 10%; 
}

.ranking-table th.company,
.ranking-table td.company {
  width: 30%; 
}

.ranking-table th.speed,
.ranking-table td.speed {
  width: 20%;
}

.ranking-table th.rate,
.ranking-table td.rate {
  width: 20%; 
}

.ranking-table th.hp,
.ranking-table td.hp {
  width: 20%; 
}

.ranking-table a {
  display: inline-block;
  padding: 4px 8px;
  background-color: #F19C97;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.show-ranking-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #F19C97;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  width: 90%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .ranking-table {
    font-size: 14px;
    min-width: auto;
  }
  .ranking-table th, .ranking-table td {
    padding: 6px;
  }
}

/* ------------------------------------------------------------
  選ぶポイント
------------------------------------------------------------ */
.point {
  background-color: #fff8e7;
  padding: 5% 2%;
}
.gradient-line {
  width: 100%;
  height: 8px; /* 線の高さ */
  background: linear-gradient(to right, #c69c6d 50%, #a67c52 50%);
}

.point_box {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #ffb84d;
  text-align: center;
  padding: 8% 5% 5%;
  min-height: 260px;
  margin: 3% auto;
}
.point_box h3 {
  background-color: #fff3e6;
  position: relative;
  padding: 5px 0;
}
.circle_number {
  width: 50px;
  height: 50px;
  padding-top: 8px;
  background-color: #FF5DC2;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.point_box img {
  width: 30%;
  margin-top: 5%;
  height: auto;
}
.point_box p {
  text-align: left;
  margin-top: 5%;
}
.point_box p span {
  color: #F19C97;
  font-weight: bold;
}
.balloon {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  min-width: 200px;
  max-width: 100%;
  color: #fff;
  background: #F19C97;
  border-radius: 30px;
  font-weight: bold;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #F19C97;
}

.basic_h2 {
  text-align: center;
}
.basic_h2 h2 {
  margin: 10px auto;
  border-bottom: #F19C97 2px solid;
  width: 80%;
}
.basic_h2 h2 span {
  font-size: 1.6em;
}

/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-M2 {
    font-size: 20px;
  }
  .font-size-L {
      font-size: 24px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 18px;
  }
  .font-size-M {
      font-size: 20px;
  }
  .font-size-M2 {
    font-size: 24px;
  }
  .font-size-L {
      font-size: 32px;
  }
}
@media screen and (max-width: 750px) {
  .font-size-M {
      font-size: 16px;
  }
}

/* ------------------------------------------------------------
  利用の流れ
------------------------------------------------------------ */
.flow {
  padding: 5% 0;
  background: #fff;
}
.flow_design05 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin: 8% auto 0;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #F19C97;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #F19C97;
  border-bottom: #0d300f 1.5px solid;
  width: 80%;
}

.flow05 > li dl dd {
  margin: 3% 0;
}

/* ------------------------------------------------------------
  よくあるご質問
------------------------------------------------------------ */
.qa {
  background-color: #fff8e7;
  padding: 8% 0;
  text-align: center;
}

.qa_inner {
  width: 95%;
  margin: 5% auto 0;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  padding: 15px 30px 15px 10px; 
  text-align: left;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  position: relative; 
  color: #333333;
}

.accordion-button::after {
  content: "+"; 
  position: absolute;
  right: 15px; 
  top: 50%;
  transform: translateY(-50%); 
  color: #333333; 
  width: 20px; 
  height: 20px; 
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, content 0.3s; 
}

.accordion-button.active::after {
  content: "-"; 
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
  background-color: #fff;
  text-align: center;
}

.accordion-content p {
  margin: 15px 0;
  text-align: left;
}

.report-heading {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin: 20px 0;
}

.report-main-title {
  display: block;
}

.report-sub-title {
  display: block;
  font-size: 1.8rem; 
}

.report-orange {
  color: #FF5722;
}

@media (max-width: 768px) {
  .report-main-title {
    font-size: 1.5rem;
  }

  .report-sub-title {
    font-size: 1.3rem;
  }
}

.daytime {
  text-align: center;
  padding: 7px;
  background-color: #FFF3F3;
  color: #736E6E;
  font-size: 18px;
  font-weight: bold;
}

.red-text{
  color: #ff3300;
  font-weight: bold;
  font-size: 1.4rem;
}