@charset "UTF-8";
/*
 *
 * style.scss
 *
 */
/*
 *
 * _media_query.scss
 *
 */ 

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@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;
}

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;
}

@media screen and (max-width: 768px){
.br-pc {display: none; }
}

@media screen and (min-width: 768px){
.br-sp {display: none; }
}

.br-high {
  display: block;
  content: "";
  margin: 10px 0;
}


.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading .circle {
  display: block;
  position: relative;
  top: calc( 50% - 20px );
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #a6009c;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal both;
}
@keyframes loading {
  0% { transform: rotate( 0deg ); }
  100% { transform: rotate( 360deg ); }
}

@media screen and (min-width: 768px) {
  .loading {
  position: fixed;
  z-index: 1000;
  width: 1000px;
  height: 100vh;
  margin: auto;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
}


.flame {
    background-color: #fff;
    border: solid 1px #000;
    border-radius: 5px;
    padding: .2em .5em;
    margin: .2em;
    font-size: .95em;
    line-height: 2.5em
}

.flame:nth-child(1) {
    margin-left: 1em
}

@media(max-width: 800px) {
    .flame {
        padding:0 .5em;
        margin: .2em .4em .2em 0;
        font-size: .95em;
        line-height: 1.5em;
        display: inline-block
    }

    .flame:nth-child(1) {
        margin-left: 0
    }
}

/* ------------------------------------------------------------
  .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;
  font-size: 1.3rem;
}

.topic2 {
  font-weight: bold;
  color: #fa4141;
  text-decoration: underline;
}

.pink {
  color: #fa4141;
  font-size: 1.4rem;
  font-weight: bold;
}
.pink1 {
  color: #fa4141;
  font-size: 1.2rem;
  font-weight: bold;
}

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

.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 */

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

@media screen and (min-width: 768px) {
 .body-wrapper {
  overflow-x: hidden;
  max-width: 750px;
  margin: auto;
  border: solid 1px #ccc;
 }
}
/* ------------------------------------------------------------
  header ヘッダー
------------------------------------------------------------ */
header{
  background:#fff;
  width:100%;
  position:fixed;
  z-index:100000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); /*これを付け足し*/
}

@media screen and (max-width: 768px) {
 .header_bg {
  display: none;
}
}

@media screen and (min-width: 768px) {
 .normal-header {
  display: none;
 }
 /* Normal header style */
.header_bg {
  background: #fff;
  width: 100%;
  height: 80px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); /*これを付け足し*/
}
.header_contents {
  width: 100%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_contents h1 {
  width: 200px;
  margin: 0 0 0 5px;
}
.header_nav_lists {
  display: flex;
}
.header_nav_lists li {
  margin: 0 40px 0 0;
}
.nav_link {
  font-size: 1.0rem;
  font-weight: bold;
}
/* Responsive menu button */
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 40px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.menu_line {
  background: #000;
  border-radius: 5px;
  width: 100%;
  height: 5px;
  margin: 4px 0;
}
}

header,header #logo{
  height:50px;
  top:0;
  left:0
}
header #logo{
  width:55px;
  position:absolute;
  margin:0;
  border-right:1px solid #adac9c;
  z-index:7;

}
#gnavi{
  border-bottom:1px solid #cdcccc
}
#gnavi ul{
  display:table;
  width:73%;
  height:50px;
  position:absolute;
  right:11%;
  top:0;
  z-index:2;
  margin:0;
  border-top:1px solid #cdcccc;
  border-right:1px solid #cdcccc;
  box-shadow:1px 0 1px 0 rgba(0,0,0,.2)
}
#gnavi li{
  display:table-cell;
  width:25%;
  height:50px;
  vertical-align:top;
  padding:5px 0;
  text-align:center;
  background-color:#fff;
  font-size:9px;
}

#gnavi li a,#gnavi p.beginner a{
  color:#656255;
  font-weight:700;
  letter-spacing:-1px;
  height:39px;
  display:block;
  border-right:1px solid #cdccc7;
  box-sizing:border-box;
}
#gnavi li:last-child a{
  border-right:none
}
#gnavi li a span.wrap,#gnavi p.beginner a span{
  display:inline-block;
  padding-top:5px;
  line-height:1.2;
}
#gnavi li a span.wrap span{
  color:#1065b4;
  font-size:9px
}
#gnavi p.beginner{
  width:12%;
  height:50px;
  position:absolute;
  right:0;
  top:0;
  z-index:1;
  padding:10px 0;
  line-height:1.1;
  text-align:center;
  background-color:#efe5da;
  background-position:50% 1px;
  background-repeat:no-repeat;
  background-size:24px 22px;
  background-image:url(/images/sp/common/gnavi05.webp)
}
#gnavi p.beginner a{
  font-size:9px;
  text-shadow:.5px .866px 0 #fff
}
/* ------------------------------------------------------------
  main-visual メインビジュアル
------------------------------------------------------------ */
.main-visual {
  position: relative;
  padding-top: 50px;
  background: #fff;
}

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

@media screen and (min-width: 768px) {
  .main-visual {
  padding-top: 80px;
}
}
/* ------------------------------------------------------------
  タイマー
------------------------------------------------------------ */

#timer_wrap {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  top: 20.5%;
  left: 48%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#timer_wrap .inner {
  color: #fff;
  font-size: 1rem;
}

#timer_wrap .timerbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 300px;
}

.time {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fdf405;
  animation: flash 2s linear infinite;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
  
  60% {
    opacity: 1;
  }
  
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
#timer_wrap {
  top: 20.5%;
  left: 48.5%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#timer_wrap .inner {
  min-width: 700px;;
  font-size: 1.6rem;
}

.time {
  font-size: 2.6rem;
}
}

/* ------------------------------------------------------------
  絞込み検索
------------------------------------------------------------ */
.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: 16px;
  color: #000;
  font-weight: bold;
  text-align: left;
  background: #B4E0FF;
  padding: 10px 5px;
  /* border-top-left-radius: 10px;
  border-top-right-radius: 10px; */
  display: flex;
    align-items: center;
    gap: 5px;
}

.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;
  width: 32%;
}
.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: 14px;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px;
  background-color: #B4E0FF;
}

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

.bl_selectBlock_content img {
  width: 50px;
}

.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: 10px;
}
.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;
}

/* ------------------------------------------------------------
  導入
------------------------------------------------------------ */


.intro_ttl {
  background: #fafafa;
  border-bottom: 2px solid #fa4141;
  padding: .5em 1em .3em;
  font-weight: 700;
  text-align: center
}

.intro_ttl.giftcash_easy {
  border-bottom: unset;
  padding-bottom: 0;
}

.intro_ttl .small {
  display: inline-block;
  position: relative;
  font-size: .8em;
  padding: 0 1.2em;
  color: #333;
}

.intro_ttl .small span:before {
  content: "";
  position: absolute;
  top: .4em;
  height: .1em;
  background: #fa4141
}

.intro_ttl .small span:after{
  content: "";
  position: absolute;
  top: .4em;
  height: .1em;
  background: #fa4141
}

.intro_ttl .small:before,.intro_ttl .small:after {
  width: .6em;
  top: .6em
}

.intro_ttl .small:before {
  transform: rotate(60deg);
  left: 0
}

.intro_ttl .small:after {
  transform: rotate(-60deg);
  right: 0
}

.intro_ttl .small>span:before,.intro_ttl .small>span:after {
  width: 1.1em
}

.intro_ttl .small>span:before {
  transform: rotate(60deg);
  left: 0
}

.intro_ttl .small>span:after {
  transform: rotate(-60deg);
  right: 0
}

.intro_ttl .large {
  display: block;
  margin: .3em 0 0;
  font-size: 1.2em;
  color: #333333;
}

.intro p{
  margin: auto;
  margin: 15px;
  font-size: 16px;
}

.flow_design05 {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
}

.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: #4cc7fe;
  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: #ff444f;
}

.flow05 > li dl dd {
  margin-left: 0;
}

.flow05 > li dl dd img {
  margin-top: 2%;
}

/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
	background:#fa4141;
  width: 95%;
  margin: auto;
  margin-top: 3%;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 10px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding: 0 20px 20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

@media screen and (min-width: 768px) {
 
  
  .intro p{
    width: ;
    margin: auto;
    margin: 10px;
  }
  
  .flow_design05 {
    width: 90%;;
    margin-top: 5%;
  }
  
  .flow05 > li {
    padding-left: 50px;
  }
  
  .flow05 > li:not(:last-child) {
    padding-bottom: 50px;
  }
  
  .flow05 > li .icon05 {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border-radius: 100vh;
    display: inline-block;
    background: #4cc7fe;
    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: #ff444f;
  }
  
  .flow05 > li dl dd {
    margin-left: 0;
  }
  
  .flow05 > li dl dd img {
    margin-top: 2%;
  }
  }
/* ------------------------------------------------------------
  ランキング
------------------------------------------------------------ */
.rank {
  background: #e5f2ff;
  padding-top:
  padding-bottom: 5px;
  margin-top: 
}

.balloon1 {
  position: relative;
  color: #333333;
  font-size: .9rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
  margin-bottom: -15vw;
}

.balloon1 p {
  margin: 0;
  padding: 0;
  text-align: center;
}

.rank h2 {
  width: 100%;
  margin: auto;
}

.rank_body {
  height: 100%;
  max-width: 1100px;
  width: 95%;
  margin: auto;
  margin-top: 20px;
}

.rank_container {
  position: relative;
  background: #fff;
  padding: 20px 10px;
  margin-bottom: 40px;
  box-shadow: 0 1px 8px 0 gray;
  border-radius: 20px;
}

.rank-badge {
  position: absolute;
  top: 0.5%;
  left: 1%;
  width: 60px;
}

.rank_table1{
  min-width: 155px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
}
.rank_table1 table{
  border:1px solid #0071bc;
  width: 100%;
  border-collapse: collapse;
}
.rank_table1 table th{
  padding: 0.2rem 0rem;
  border-right: 1px solid #0071bc;
  background-color: #e5f2ff;
  border-bottom:1px solid #0071bc ;
  border-top:1px solid #0071bc ;
}
.rank_table1 table td{
  padding: 0.4rem 0;
  font-size: 1.0rem;
}

.icon {
  display: inline-block;
  border: none;
}

.icon img {
  width: 32px;
  margin: 2px 0;
}

.rank-table-box {
  min-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: auto;
  margin-top: 2%;
}

.rank-table-box a {
  width: 50%;
}

.rank_table1.table2 {
  margin-top: 10px;
}

.rank_table1.table2 table td{
  border-right: 1px solid #0071bc;
  width: 33.3%;
}

.box{
  max-width: 600px;
  margin: auto;
  border: 2px solid #ffd871;
  border-radius: 10px;
  margin-top: 10px;
  background-color: #fffce1;
}
.box .midashi{
  text-align: center;
  background: #ffd871;
  font-weight: bold;
  font-size: 1.2em;
  padding-right: 0.4em;
  border-radius: 6px 6px 0 0;
  color: #333;
}
.box .midashi>span{
  color: red;
}
.box .inner{
  padding: .2em;
}

.box ul {
  position: relative;
  padding: 8px 5px 5px 35px;
}

.box ul li {
  line-height: 2.0rem;
  list-style-type: none!important;
  padding: 0.3em 0;
  font-size: 1.0rem;
}

.box ul li:before {
  content: url(../img/webp/check.webp);
  position: absolute;
  left : 0.3em;/*左端からのアイコンまでの距離*/
  padding-top: 2px;
}

.timer_in_box {
  position: relative;
  background: #ffabab;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 10px;
  font-size: 1rem;
  font-weight: bold;
  width: 95%;
  margin: auto;
  margin-top: 10px;
}
.timer_in_box:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #ffabab;
}

.timer_in_box .timerbox {
  background: #333333;
  color: #fff;
  border-radius: 30px;
  padding: 0px 5px;
  font-size: 0.7rem;
}

.h {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.1rem;
}

.m {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.1rem;
}

.s {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.1rem;
}

.end {
  font-size: .9rem;
}

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

.kuchikomi {
  text-align: left;
}

.line2 {
  border-bottom: solid 1px #eee;
  padding-top: -15px;
  margin-bottom: 20px;
}

.modal-001__wrap input {
    display: none;
}

.modal-001__open-label,
.modal-001__close-label {
  cursor: pointer;
}

.modal-001__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  margin:0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 50px;
  background-color: #4cc7fe;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.modal-001__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-001 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-001__open-input:checked + label + input + .modal-001 {
  display: block;
  animation: modal-001-animation .6s;
}

.modal-001__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-001__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-001__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-001__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-001-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tittle {
  text-align: left;
  border-bottom: #333 solid .5px;
}

.tittle a {
  padding-bottom: 20px;
  padding-left: 60px;
  font-size: 1.6rem;
  text-decoration: underline 1.5px;
  color: #056ecc;
  cursor: pointer;
}

/* solid015 */
.button_solid015 {
  text-align: center;
  margin-top: 20px;
}

.button_solid015.giftcash_easy {
  margin-top: 0;
}

.microcopy>span {
  color: #333;
  font-size: .7em;
}

.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: 2rem;
  border-bottom: solid 5px #d82525;
  overflow: hidden;
  animation: pekopeko 2s infinite;
}
@keyframes pekopeko {
    0% {
        top: 0px;
    }
    10% {
        top: 3px;
    }
    20% {
        top: 0px;
    }
    30% {
        top: 3px
    }
    40% {
        top: 0px;
    }
}

.shiny-btn2::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%); /* translateYのみ */
}

.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; }
}

@media screen and (min-width: 768px) {
 .rank {
  margin-top: 10%;
}

.balloon1 {
  max-width: 300px;
  font-size: 1.2rem;
  margin-bottom: -100px;
}

.rank h2 {
  text-align: center;
}

.rank_body {
  max-width: 700px;
}

.rank_container {
  padding: 20px;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 50px;
}

.rank-badge {
  top: 0.5%;
  left: 1%;
  width: 120px;
}

.tittle a {
  padding-left: 120px;
  font-size: 2.2rem;
}

.rank_table1{
  min-width: 350px;
  font-size: 1.2rem;
}

.icon img {
  width: 70px;
}

.rank-table-box {
  margin-top: 30px;
  gap: 10px;
}

.box{
  margin-bottom: 30px;
}

.box ul {
  position: relative;
  padding: 10px 10px 10px 80px;
}

.box ul li {
  line-height: 2.5rem;
  list-style-type: none!important;
  padding: 0.3em 0;
  font-size: 1.4rem;
}

.box ul li:before {
  font-size: 1.4rem;
  left : 1.6em;/*左端からのアイコンまでの距離*/
}

.timer_in_box {
  max-width: 600px;
  margin: auto;
  padding: 5px 50px;
  font-size: 1.2rem;
}

.timer_in_box .timerbox {
  background: #333333;
  color: #fff;
  border-radius: 30px;
  padding: 0px 5px;
  font-size: 1.0rem;
}

.h {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.4rem;
}

.m {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.4rem;
}

.s {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.4rem;
}

.end {
  font-size: 1.2rem;
}

.box30 {
  max-width: 600px;
  margin: auto;
}
.box30 .box-title {
  font-size: 1.2rem;
}

.ank {
  font-size: 1.0rem;
  padding-left: 100px;
}
.prf {
  gap: 30px;
}

.prf p {
  line-height: 1.8rem;
  font-size: 1.2rem;
}
.gray {
  font-size: 14px;
}

.kuchikomi {
  font-size: 1.1rem;
}

.line2 {
  border-bottom: solid 1px #eee;
  padding-top: -15px;
  margin-bottom: 20px;
}

.box2{
  max-width: 600px;
  margin: auto;
  margin-top: 60px
}
.box2 h3{
  padding: 5px;
  font-size: 1.4rem;
}

.inner ol li {
  font-size: 1.2rem;
}

.gift {
  font-size: 1.2rem;
  margin-right: 15px;
}

.gift2 {
  font-size: 1.2rem;
  margin-right: 15px;
}


.shiny-btn2 {
  padding: 25px 15px;
  min-width: 420px;
  font-size: 1.7rem;
  line-height: 1.8rem;
  margin-top: 30px;
}

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

}

/* ------------------------------------------------------------
  検索
------------------------------------------------------------ */
.search {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 40px;
}

.search h2 {
 width: 90%;
 margin: auto;
}

.form__body {
  background: #fff;
  width: 95%;
  margin: auto;
  padding: 5px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-bottom: 30px;
}

.diagnose{
  width: 100%;
}

.appli input {
  display: none;
}

.form_inner_money input {
  display: none;
}

.diagnose label{
  display: inline-block;
  margin-bottom: 5px;
  cursor: pointer;
}


.jouken {
  font-size: 1.1rem;
  color: #333333;
  font-weight: bold;
  padding: 10px 5px;
}

.radio__wrap {
  background: #fff;
  padding: 10px 0px;
  text-align: center;
}


/* 画像の周りに隙間をあける */
.form__body label img {
  margin: 3px;
  padding: 2px;
  border: solid 1px #999999;
  border-radius: 10px;
  width: 70px;
}
/* 未選択の場合、色を薄くする */
.form__body input[type="radio"] + label img {
  
  }
/* 選択済みの場合、色を濃くする */
.form__body input[type="radio"]:checked + label img {
  background: #e5f2ff;
}


/* 未選択の場合、色を薄くする */
.form__body .form_inner_money input[type="checkbox"] + label {
  margin: 3px;
  padding: 5px 0;
  border: solid 1px #999999;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: bold;
  color: #333333;
  min-width: 70px;
  }
/* 選択済みの場合、色を濃くする */
.form__body .form_inner_money input[type="checkbox"]:checked + label {
  background: #e5f2ff;
  }

.feature .radio__wrap {
  text-align: left;
}

.form__body .feature input[type="checkbox"] + label {
  padding: 5px 0;
  font-size: 1.0rem;
  font-weight: bold;
  color: #333333;
  }


.form_button {
  margin: auto;
  text-align: center;
  margin-top: 20px;
}

.form_button button {
  width: 280px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333333;
  padding: 10px;
  border: solid 1px #333333;
  border-radius: 10px;
  cursor: pointer;
  background-color: #fff;
}


@media screen and (min-width: 768px) {
  .search {
    padding-top: 5%;
  }

  .search h2 {
    width: 80%;
    margin: auto;
   }

  .form__body .form_inner_money input[type="checkbox"] + label {
    margin: 3px;
    padding: 5px 0;
    border: solid 1px #999999;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: bold;
    color: #333333;
    min-width: 150px;
    }
}

/* ------------------------------------------------------------
  ポイント
------------------------------------------------------------ */
.point {
 padding-bottom: 5%;
}

.point_inner {
  width: 95%;
  margin: auto;
  margin-top: 10%;
}

.point_box {
  position: relative;
  background-color: #f4f4f4;
  border: solid 1px #01c1a9;
  border-radius: 10px;
  margin-bottom: 5%;
}

.point_box img {
  position: absolute;
  width: 18%;
  left: 0%;
  padding: 5px;
}

.point_box h3 {
  font-size: 1.4rem;
  color: #333333;
  padding: 2% 1% 0% 22%;
}

.point_box hr {
  border: solid 1px #01c1a9;
}

.point_box.point_img_1{
  width: 60%;
  margin: 10px 0;
}

.point_box.point_img_2{
 display: flex;
 width: 70%;
 margin: 10px 0;
}

.point_box p {
  padding: 0 2% 2%;
  font-size: .95rem;
}

@media screen and (min-width: 768px) {
  .point_box img {
    position: absolute;
    width: 12%;
    top: -15%;
    left: 2%;
  }
  .point_box h3 {
    padding: 2% 1% 0% 18%;
  }
}


/* ------------------------------------------------------------
  3つのメリット
------------------------------------------------------------ */
.merit{
  background: #f1faff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.h2-merit {　
  padding: 20px 40px;
  margin-top: 60px;
}

.merit_title{
  position: relative;
  text-align: center;
}

.merit_title img{
  width:72%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.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 .merit_contents_money{
  width: 60%;
  margin-top: 20px;
}

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


/* ------------------------------------------------------------
 比較表
------------------------------------------------------------ */
.table {
  margin-top: -20px;
  padding-top: 20px;
  margin-top: -30px;
  padding-bottom: 30px;
}

.table .timer_in_box {
  width: 90%;
  margin: auto;
}


/* 追加 */

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}

.tab-label {
  color: White;
  background: #fff;
  color: #4cc7fe;
  border: solid 1px #ccc;
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: solid 2px #4cc7fe;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #4cc7fe;
  color: #fff;
  border: none;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 0px;
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.tab_box {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: auto;
  margin: 5% 0;
}

.tab_box h3 {
  font-size: 1.4rem;
  color: #333333;
}

.tab_box a {
  width: 30%;
}

.tab_box table {
  min-width: 220px;
  border-collapse: collapse;
  border:  solid 1px #ccc;
  text-align: center;
  margin-top: 4%;
}

.tab_box table th {
  background-color: #e6e6e6;
  font-weight: 100;
  font-size: .9rem;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

.tab_box table td {
  padding: 2% 0;
  border-right: solid 1px #ccc;
}

@media screen and (min-width: 768px) {
  .tab_box {
    gap: 30px;
  }
  
  .tab_box h3 {
    font-size: 1.4rem;
    color: #333333;
  }
  
  .tab_box a {
    width: 20%;
  }
  
  .tab_box table {
    min-width: 500px;
    margin-top: 5%;
  }
}
/*----------------------------------
  おすすめ特集
---------------------------------- */
.recommend h2 {
  width: 95%;
  margin: auto;
  border-radius: 10px;
  padding: 3% 0;
  background-color: #01c1a9;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

.recommend_body {
  width: 95%;
  max-width: 1000px;
  margin: auto;
  margin-top: 8%;
  text-align: center;
}

.recommend_body ul li {
  display: inline-block;
  border: solid 2px #01c1a9;
  border-bottom: solid 5px #01c1a9;
  background: #f4f4f4;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: #333333;
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 163px;
  text-align: left;
}

.recommend_body ul li a {
  color: #333333;
}

.recommend_body ul li:nth-child(1) {
  margin-right: 5px;
}

.recommend_body ul li:nth-child(3) {
  margin-right: 5px;
}

.tokusyu li:before {
  content: url(../img/webp/biginner.webp);
  vertical-align: middle;
  padding-right: 5px;
}

.tokusyu li:nth-child(2):before {
  content: url(../img/webp/iphone.webp);
}

.tokusyu li:nth-child(3):before {
  content: url(../img/webp/come.webp);
}

.tokusyu li:nth-child(4):before {
  content: url(../img/webp/column.webp);
}

@media screen and (min-width: 768px) {
  .recommend_body ul li {
    padding: 15px 10px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    min-width: 300px;
  }
}
/*----------------------------------
  ラスト
---------------------------------- */
.offer {
  background-color: #fff39c;
  padding-bottom: 10%;
  margin-top: 10%;
}

.offer h2 {
 position: relative;
 text-align: center;
}

.offer h2 span {
  width: 100%;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.offer_body {
  background-color: #fff;
  width: 95%;
  margin: auto;
  padding: 5% 2%;
  margin-top: 5%;
}

.offer_contents {
  text-align: center;
}

.offer_inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.offer_inner img{
  width: 40%;
}

.offer ul li {
  font-size: 1.1rem;
  border-bottom: solid 1px #ccc;
  padding-bottom: 1%;
  margin-bottom: 5%;
  text-align: left;
}

.offer ul li span {
  color: #fa4141;
  font-weight: bold;
}

.offer a {
  background: linear-gradient(90deg,#a6009c,#ff009c);
  color: #fff;
  padding: 5% 20%;
  font-weight: bold;
  border-radius: 5px;
  border-bottom: solid 2px #3d0060;
}


@media screen and (min-width: 768px) {
  .offer h2 span {
    font-size: 2.4rem;
    top: 52%;
  }
  
  .offer_body {
    width: 85%;
  }
  
  .offer_inner {
    display: flex;
    justify-content: center;
    margin: auto;
    gap: 30px;
  }

  .offer ul li {
    margin-bottom: 15%;
  }
  .offer ul li:nth-child(3) {
    margin-bottom: 20%;
  }

  .offer a {
    font-size: 1.2rem;
    padding: 5% 20%;
    font-weight: bold;
    border-radius: 5px;
    border-bottom: solid 4px #3d0060;
  }
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer02 {
 color: #fff;
 background: #333333;
 text-align: center;
 padding: 30px;
}
.footer02 a {
 color: #fff;
 text-decoration: none;
}
.footer02 a:hover {
 text-decoration: underline;
}
.footer02 .menu {
 margin: 0;
 padding: 0;
 list-style: none;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
}
.footer02 .menu li {
 margin: 0;
 padding: 0 20px;
}
.footer02 .copyright {
 margin: 0;
 padding: 20px 0 0 0;
}


/* ------------------------------------------------------------
  以下運営者情報ページ
------------------------------------------------------------ */
.admin {
  max-width: 800px;
  padding-top: 20px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .admin {
  padding-top: 80px;
}
}
.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;
}


.sns {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.sns a {
  width: 10%;
}



/* ------------------------------------------------------------
  以下詳細ページ
------------------------------------------------------------ */

.h2-bg {
  background-color: #4cc7fe;
  padding: 20px 10px;
}

.heading06 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 0px;
  font-size: 1.8rem;
  text-align: center;
  border-bottom: 1px solid #e52780;
  color: #e52780;
  margin-top: 100px;
}

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

.heading06::before {
  content: attr(data-en);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(237,64,151,0.2);
  font-size: 80px;
  font-style: italic;
}

.heading07 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 0px;
  font-size: 1.8rem;
  text-align: center;
  border-bottom: 1px solid #fff;
  color: #fff;
}

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

.heading07::before {
  content: attr(data-en);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(220,249,233,0.3);
  font-size: 80px;
  font-style: italic;
}


.detail-back {
  background: #fffce1;
  padding-bottom: 40px;
  margin-bottom: -20px;
}

.detail-intro {
  position: relative;
  background: #fff;
  width: 95%;
  margin: auto;
  box-shadow: 0 0 5px gray;
  padding: 20px 10px;
  margin-top: -10px;
}

.detail-p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0071bc;
  }

.detail-p:before {
  content: url(../img/webp/first.webp);
  vertical-align: middle;
  padding-right: 5px;
}

.detail-p2 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0071bc;
  }

.detail-p2:before {
  content: url(../img/webp/campaign.webp);
  vertical-align: middle;
  padding-right: 5px;
}

.detail-intro h2 {
  color: #0071bc;
  padding-bottom: 20px;
  font-size: 1.7rem;
}

.detail-span {
  font-size: 1.1rem;
  font-weight: bold;
}


@media screen and (min-width: 768px) {
 .detail-intro {
  max-width: 1000px;
  padding: 40px;
}

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

.detail-intro h2 {
  font-size: 2.5rem;
}

}

.navi-menu {
  position: relative;
  background: #999999;
  margin-top: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /*これを付け足し*/
}

.nav {
  list-style: none;
  display: flex;
  gap: 1px;
  align-items: center;
}
 
.nav li {
  flex-grow: 1;
  padding: 5px;
  text-align: center;
  background:linear-gradient(#fff, #f2f2f2);
}

.nav li img {
  width: 40px;
}
 
.nav li a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
}


@media screen and (min-width: 768px) {
 .nav li {
  padding: 20px;
}

.nav li img {
  width: 60px;
  margin-right: 5px;
}
 
.nav li a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  font-size: 1.0rem;
}

.nav .fa-solid {
  padding-left: 15px;
}

}

/* ------------------------------------------------------------
  about
------------------------------------------------------------ */
.about {
  padding: 20px 5px;
}

.about-h2 {
  position: relative;
  padding: .3em 0;
  text-align: center;
  font-size: 1.8rem;
}

.about_contents {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
  width: 95%;
  margin-bottom: 60px;
}


.about_inner {
  text-align: left;
  padding: 30px 10px 0;
}


/* ------------------------------------------------------------
  3つのメリット
------------------------------------------------------------ */

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

.merit_contents {
  background: #fff;
  border-top: solid 5px #1b9f83;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 0 5px gray;
}

.merit_contents h3 {
  font-size: 20px;
  color: #1b9f83;
}

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

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


/* ------------------------------------------------------------
  利用方法
------------------------------------------------------------ */
.riyou {
  background: #f2f2dd;
  padding-top: 20px;
  padding-bottom: 40px;
}

.riyou h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1466b5;
  color: #fff;
  width: 95%;
  margin: auto;
  margin-bottom: -40px;
  padding: 5px 10px;
  line-height: 1.8rem;
  font-size: 1.4rem;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.riyou_body {
  width: 95%;
  max-width: 1000px;
  margin: auto;
  margin-top: 40px;
  background: #fff;
  padding: 10px;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

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

.riyou_body p {
  font-size: 0.9rem;
  text-align: left;
}


@media screen and (min-width: 768px) {
  .riyou {
  background: #f2f2dd;
  padding-top: 20px;
  padding-bottom: 40px;
}

.riyou h2 {
  padding: 15px 20px;
  font-size: 1.6rem;
  max-width: 800px;
}

.riyou_body {
  padding: 30px 35px;
  max-width: 800px;
}

.flow-img {
  width: 60%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.riyou_body p {
  font-size: 1.2rem;
  text-align: left;
}


.riyou_body ul li {
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  min-width: 320px;
}

.riyou_body ul li:nth-child(1) {
  margin-right: 15px;
}

.riyou_body ul li:nth-child(3) {
  margin-right: 15px;
}

.tokusyu li:before {
  content: url(../img/webp/biginner.webp);
  vertical-align: middle;
  padding-left: 15px;
  margin-right: 15px;
}

.tokusyu li:nth-child(2):before {
  content: url(../img/webp/iphone.webp);
}

.tokusyu li:nth-child(3):before {
  content: url(../img/webp/come.webp);
}

.tokusyu li:nth-child(4):before {
  content: url(../img/webp/column.webp);
}
}

/* ------------------------------------------------------------
  利用方法(about_page)
------------------------------------------------------------ */

.riyou_box {
  position: relative;
  background: #fff;
  border: solid 2px #1b9f83;
  border-radius: 5px;
  margin: auto;
  margin-bottom: 30px;
  max-width: 600px;
}

.number {
  position: absolute;
  width: 20%;
  top: -10%;
  left: -3%;
}

.riyou_contents {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  padding: 30px 20px 20px 10px;
  
}

.riyou_contents img {
  width: 100px;
  max-height: 100px;
}

.riyou_text h3 {
  color: #1b9f83;
  font-size: 18px;
  border-bottom: solid 2px #1b9f83;
}

.riyou_text p {
  margin-top: 10px;
  line-height: 1.5rem;
  font-size: 14px;
}


.detail-page .choice {
  position: relative;
  background:linear-gradient(#45ccbf, #fff);
}


.detail-page .choice .heading07 {
  font-size: 2.2rem;
}


.detail-page .choice_body {
  background: #fff;
  width: 95%;
  border-radius: 3px;
  padding: 20px 10px;
}


.detail-page .rank {
  background: #ffd871;
}

.select-h2-rank {
  padding-top: 0px;
  width: 85%;
  margin: auto;
  margin-bottom: -35px;
}

.select-h2-pc {
  display: none;
}


@media screen and (min-width: 768px) {
 .riyou_box {
  position: relative;
  background: #fff;
  border: solid 2px #1b9f83;
  border-radius: 5px;
  margin: auto;
  margin-bottom: 30px;
  max-width: 600px;
}

.number {
  position: absolute;
  width: 10%;
  top: -10%;
  left: -3%;
}

.riyou_contents {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  padding: 30px 20px 20px 10px;
  
}

.riyou_contents img {
  width: 100px;
  max-height: 100px;
}

.riyou_text h3 {
  color: #1b9f83;
  font-size: 18px;
  border-bottom: solid 2px #1b9f83;
}

.riyou_text p {
  margin-top: 10px;
  line-height: 1.5rem;
  font-size: 14px;
}


.detail-page .choice {
  position: relative;
  background:linear-gradient(#45ccbf, #fff);
}


.detail-page .choice .heading07 {
  font-size: 2.2rem;
}


.detail-page .choice_body {
  background: #fff;
  width: 95%;
  border-radius: 3px;
  padding: 20px 10px;
}

.detail-page .rank_body {
  max-width: 800px;
}


.select-h2-sp {
  width: 90%;
}

}




/* ------------------------------------------------------------
 コラムページ
------------------------------------------------------------ */

.column-body {
  width: 95%;
  max-width: 800px;
  margin: auto;
}

.column-body h2 {
  border-bottom: 6px double #4cc7fe;
  margin-top: 20px;
  font-size: 1.4rem;
}

.column-body p {
  margin-top: 25px;
  font-size: 0.9rem;
}

.column-body ul {
  margin: 30px 0px;
}

.column-body ul li {
  font-size: 0.8rem;
  margin-bottom: 6px;
  font-weight: bold;
}

.column-body h3 {
  position: relative;
  padding: 0.5rem;
  border-top: 5px solid rgb(204, 204, 204, 0.6);
  border-bottom: 5px solid rgb(204, 204, 204, 0.6);
  margin-top: 50px;
}

.column-body h3:before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 10%;
  height: 5px;
  content: '';
  background: #4cc7fe;
}


.column-contents h4 {
  position: relative;
  padding: 0.5rem;
  border-bottom: 2px solid #cccccc;
  margin-top: 50px;
  text-align: left;
}

.column-contents h4:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 10%;
  height: 2px;
  content: '';
  background: #4cc7fe;
}

.cta_column {
  background: #1b9f83;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 50px;
  right: 0;
}

.column-page .rank {
  background: #fbb03b;
  margin-top: 50px;
}

.column .rank h2 {
  padding-top: 30px;
  width: 85%;
  margin: auto;
  margin-bottom: -35px;
}

.design01 {
 width: 100%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 font-size: 1.0rem;
 margin-top: 30px;
 margin-bottom: 30px;
}
.design01 th {
 padding: 10px;
 background: #e9faf9;
 border: solid 1px #778ca3;
}
.design01 td {
 padding: 10px 2px;
 border: solid 1px #778ca3;
 font-size: 0.8rem;
}

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

.column .rank h2 {
  padding-top: 60px;
  width: 85%;
  margin: auto;
  margin-bottom: -35px;
}

}

.column-list {
  width: 95%;
  margin: auto;
  text-align: left;
}

.column-list ul {
  margin-bottom: 30px;
}

.column-list li {
  margin-bottom: 10px;
  border-bottom: solid 2px #f7f7f7;
  padding: 5px;
}

.column-list li img {
  width: 40%;
}

.column-list li p {
  color: #333333;
  font-weight: bold;
  font-size: .9rem;
  text-align: left;
}

.result {
  margin-top: 29px;
  background: #f4f4f4;
  padding-top: 30px;
}

.result-h2 {
  width: 95%;
  margin: auto;
  margin-top: 20px;
}

.result_box {
  background: #fff;
  border: 1px solid #e1e1e1;
  width: 95%;
  margin: auto;
  font-size: 0.9rem;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result_box span {
  color: #ea1e1e;
}

.result_box a {
  color: #056ecc;
  text-decoration: underline 0.5px;
  font-weight: bold;
}

.result_intro {
 text-align: center;
}

.result_span {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 5px;
  max-width: 250px;
  margin: auto;
  border-radius: 30px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .result {
  margin-top: 55px;
  padding-top: 50px;
}

.result_box {
  font-size: 1.2rem;
}

.result-h2 {
  width: 800px;
  margin: auto;
  margin-top: 20px;
}

}







.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    background: #fff;
    border: solid 2px #4cc7fe;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0.9;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #4cc7fe;
    border-right: 3px solid #4cc7fe;
    transform: translateY(20%) rotate(-45deg);
}


.box2{
  border: 2px solid #ffd700;
  border-radius: 5px;
  margin-top: 30px;
}
.box2 h3{
  background: #fffbe5;
  color: #000000;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 3px;
}

.box2 .inner{
  padding: 0em .5em .5em;
  text-align: center;
}

.inner ol li {
  margin-bottom: 10px;
  text-align: left;
}

.gift {
  background: #e52780;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 2px 4px;
  border-radius: 8px;
  margin-right: 5px;
}

.method{
  width: 60%;
  margin: 30 auto;
}

/* ------------------------------------------------------------
  フォーム改修
------------------------------------------------------------ */
.custom-select-wrap{
  background: #f0efeb;
  padding: 2%;
}
.custom-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
  margin: 5px 0;
}

.custom-select-label {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}

.custom-select-dropdown {
  position: relative;
  display: inline-block;
}

.custom-select-dropdown select {
  width: 100%;
  padding: 6px 28px 6px 8px;
  font-size: 1rem;
  color: #333;
  background: transparent;
  border: none;
  appearance: none;       
  -webkit-appearance: none;
  -moz-appearance: none;
}

.custom-select-arrow {
  position: absolute;  
  top: 50%;       
  right: 8px;      
  transform: translateY(-50%); 
  width: 1.8em;
  height: 1.8em;
  background-color: #FF8B4C;
  border-radius: 50%;
  color: white;
  font-size: 0.7em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}


/* ベースのチェックボックス枠 */
.bl_selectBlock_check label .el_checkbox_card {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 3px;
  border: 2px solid #0073aa;
  vertical-align: middle;
  transition: background-color 0.2s, border-color 0.2s;
}

/* レ点用疑似要素（最初は非表示） */
.bl_selectBlock_check label .el_checkbox_card::after {
  content: "✓";
  position: absolute;
  /* top: 50%;
  left: 50%; */
  transform: translate(-100%, -70%);
  font-size: 0.7rem;       /* 枠内に収まる大きさに調整 */
  line-height: 1;
  color: white;
  opacity: 0;
  transition: opacity 0.2s;
}

/* チェック時：枠内に背景色とレ点を表示 */
.bl_selectBlock_check input[type=checkbox]:checked + label .el_checkbox_card {
  background-color: #0073aa;
  border-color: #0073aa;
}
.bl_selectBlock_check input[type=checkbox]:checked + label .el_checkbox_card::after {
  opacity: 1;
}

/* 選択肢全体の背景色切り替え */
.bl_selectBlock_check label {
  display: flex;
  align-items: center;
  padding: 8px;
  transition: background-color 0.2s;
  font-size: 12px;
}
.bl_selectBlock_check input[type=checkbox]:checked + label {
  background-color: #e6f9e9;  /* 薄いグリーン */
}

.mt20{
  margin: 20px auto;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.result-table th,
.result-table td {
  padding: 6px 4px;
  border-top: 1px solid #f0f0f0;
  vertical-align: middle;
}
.result-table th {
  text-align: center;
  color: orange;      /* オレンジ文字 */
  font-weight: bold;
  width: 50%;
  border-bottom: 2px solid;
  font-size: 2.8vw;
}
.result-table td {
  text-align: center;
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
  border-right: none;
  border-left: none;
  font-size: 2.8vw;
}
/* 最初の行の上罫線を消す */
.result-table tr:first-child th,
.result-table tr:first-child td {
  border-top: none;
}

.result-table span{
  color: red;
}

.official-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: orange;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 10px;
}