@charset "utf-8";


/*共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
	color: #444;	/*全体の文字色*/
	font-family: 'Noto Sans JP',sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic";	/*フォント種類*/
	font-size: 24px;	/*文字サイズ*/
	line-height: 1.6;		/*行間*/
	-webkit-text-size-adjust: 100%;
	width: 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;}
ul {list-style-type: none;}
img {border: none;height: auto;}
iframe {width: 100%;}

input, select {
  -webkit-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  -webkit-appearance:checkbox;
  appearance: checkbox;

}


*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
}


sup{
vertical-align: top;
}

.bgred{
background-color: red;
}

.bgblue{
background-color: blue;
}


.success-msg {
    display: none;
    position: fixed;
    width: 460px;
    height: 60px;
    line-height: 60px;
    background-color: #2020CC;
	opacity: 0.75;
    color: #fff;
	font-weight: bold;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
	z-index: 3;
}


/*コンテンツエリア
---------------------------------------------------------------------------*/

#contents{
width: 100%;
background-color: #fff;
position: relative;
overflow: hidden;
font-family: 'Zen Kaku Gothic New', sans-serif;
}

#main{
background: #fff;
}

.inner{
max-width: 750px;
margin: 0 auto;
box-sizing: border-box;
overflow: hidden;
}


.inner.inner_visible{
overflow: visible;
}



footer{
width: 100%;
text-align: center;
background-color: #333333;
color: white;
}

footer #footermenu{
background-color: #004444;
overflow: hidden;
padding: 16px 8px;
}

footer #footermenu .inner{

}

footer #footermenu ul{
float: left;
width: 25%;
padding-left: 16px;
}

footer #footermenu ul li{
text-align: left;
text-decoration: none;

}

footer #footermenu ul li a{
font-size: 12px;
color: #fff;
}

footer #about{
padding: 8px 0px 0px;
}

footer #about a{
color: #fff;
font-size: 12px;
}

footer #copyright{
padding: 8px 0px;
font-size: 12px;
}

.center{
text-align: center;
}

.sp{
display: none;
}

.all_background-pink{
background: #ffe0e8;
}

.all_background-pink_arrow{
position: relative;
}

.all_background-pink_arrow:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: #ffe0e8 transparent transparent transparent;
    border-width: 30px 40px 0 40px;
    z-index: 1;
}

.all_background-blue{
background: #d5fbff;
}

.all_background-white{
background: #fff;
}


/*header
---------------------------------------------------------------------------*/

header{
width: 100%;
}

.header-wrap{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

header .btn-wrap {
    display: flex;
}

header .btn-wrap a{
display: block;
margin: 0 15px 0 0;
padding: 0 15px 30px 15px;
position: relative;
white-space: nowrap;
font-size: 21px;
text-decoration: none;
color: #444;
}

header .btn-wrap a i{
margin: 0 10px 0 0;
color: #FF686F;
}

header .btn-wrap a.common i{
color: #444;
}

header .btn-wrap a:last-child{
margin: 0;
}

header .btn-wrap a:after{
position: absolute;
bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
z-index: 100;
color: #666;
font-size: 14px;
font-weight: bold;
}

header img.logo{
width: 290px;
height: 40px;
}

.hamburger-menu{
  display: flex;
  align-items: center;
  width: 64px;
  height: 68px;
  cursor: pointer;
  z-index: 100;
}

.hamburger-menu__line{
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ccc;
  position: relative;
  transition: all 0.5s;
}

.hamburger-menu__line::before,
.hamburger-menu__line::after{
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ccc;
  position: absolute;
  transition: all 0.5s;
}

.hamburger-menu__line::before{
  transform: translateY(-24px);
}
.hamburger-menu__line::after{
  transform: translateY(24px);
}

.hamburger-menu.open .hamburger-menu__line{
  background-color: transparent;
}
.hamburger-menu.open .hamburger-menu__line::before{
  transform: rotate(45deg);
}
.hamburger-menu.open .hamburger-menu__line::after{
  transform: rotate(-45deg);
}

/* ナビゲーション */
.nav-sp{
  position: absolute;
  top: 0;
  right: -40vw;
  width: 40vw;
  height: 200vh;
  padding: 60px 10px 0;
  background-color: rgba(255,255,255,0.85);
  text-align: left;
  transition: right 0.5s;
  z-index: 5;
}

.nav-sp.open{
  right: 0;
}

.nav-sp a{
  display: inline-block;
  padding: 5px 0;
}

html.is-fixed,html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }

/*fv
----------------------------------------------------------------------*/

section.fv{
padding: 20px 20px 0px;
margin: 0 0 40px;
}

section.fv.fv_04{
padding: 0 0;
margin: 0  0 20px;
}

img.fv_image{
width: 100%;
margin: 0 0 20px;
}

h3.fv_carousel_h3{
text-align: center;
font-size: 24px;
line-height: 1;
margin: 0 0 10px;
}

h3.fv_carousel_h3:before{
content: '';
display: inline-block;
width: 14px;
height: 28px;
background: url(../images/matching__h3_before.png);
background-size: contain;
vertical-align:bottom;
margin: 0 10px 0 0;
}

h3.fv_carousel_h3:after{
content: '';
display: inline-block;
width: 14px;
height: 28px;
background: url(../images/matching__h3_after.png);
background-size: contain;
vertical-align:bottom;
margin: 0 0 0 10px;
}

.fv_carousel{
  display: flex;
  width: 990px;
  height: 90px;
  overflow: hidden;
}

img.fv_carousel_img{
  width: auto;
  height: 100%;
  margin: 0 10px 0 0;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

img.fv_carousel_img:first-child {
  animation: loop 50s -25s linear infinite;
}

img.fv_carousel_img:last-child {
  animation: loop2 50s linear infinite;
}

a.fv_gender_banner_wrap{
display: inline-block;
margin: 20px 0 0;
}

img.fv_gender_banner{
width: 100%;
}

.fv_wrap{
position: relative;
}

.fv_pr{
position: absolute;
font-size: 32px;
color: #fff;
right: 10px;
top: 10px;
line-height: 1;
padding: 5px 10px;
border: solid 2px #fff;
border-radius: 10px;
}

section.fv.fv_04 .fv_pr{
background-color: rgba(0, 0, 0, 0.4);
}

a.gender_page_bannner_wrap{
display: block;
width: calc(100% - 40px);
margin: 0 auto 20px;
}

img.gender_page_bannner{
width: 100%;
}

section.author{
padding: 0 20px;
margin: 0 0 60px;
}

.author_box{
position: relative;
border: solid 2px #777777;
}

h3.author_h3{
position: absolute;
background: #777777;
display: inline-block;
font-size: 24px;
line-height: 1;
padding: 8px 16px;
color: #fff;
font-weight: normal;
}

ul.author_wrap{
padding: 50px 10px 10px;
  position: relative;
  overflow: hidden;
  height: 260px;
  display: flex;
  justify-content: space-between;
}

ul.author_wrap::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  content: "";
  z-index: 1;
}

.grad_btn_author {
  z-index: 2;
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    width: 160px;
    line-height: 1;
    margin: auto;
    padding: 10px 0 12px;
    border-radius: 4px;
    background: #5588C3;
    color: #fff;
    font-size: 22px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	font-weight: bold;
}

.grad_trigger_author {
  display: none; /*チェックボックスは常に非表示*/
}
.grad_trigger_author:checked + .grad_btn_author {
  display: none; /*チェックされていたら、grad-btnを非表示にする*/
}
.grad_trigger_author:checked ~ ul.author_wrap{
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad_trigger_author:checked ~ ul.author_wrap::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}


li.author_item{
background: #f1f1f1;
border-radius: 10px;
flex-basis: calc((100% - 20px)/3);
padding: 10px;
}

.author_item_header{
display: flex;
margin: 0 0 10px;
}

img.author_item_icon{
width: 80px;
border-radius: 100px;
margin: 0 10px 0 0;
}

.author_item_name{
font-size: 28px;
line-height: 1.35;
}

p.author_item_description{
font-size: 22px;
}

/*pickup
----------------------------------------------------------------------*/

section.pickup{
padding: 0 20px 40px;
}

h3.pickup_h3,h3.compare_h3{
display: inline-block;
font-size: 28px;
color: #fff;
background: #00c1d4;
border-radius: 100px;
line-height: 1;
padding: 15px 60px 20px;
margin: 0 0 20px;
position: relative;
}

h3.pickup_h3:before,h3.compare_h3:before{
position: absolute;
content: '';
display: inline-block;
width: 40px;
height: 40px;
background: url(../images/matching_pickup_h3_before.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    left: 10;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

h3.pickup_h3:after,h3.compare_h3:after{
position: absolute;
content: '';
display: inline-block;
width: 40px;
height: 40px;
background: url(../images/matching_pickup_h3_after.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    right: 10;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

h3.pickup_h3.__women{
background: #ff4d66;
}

.pickup_item{
padding: 20px;
background: #fff;
border-radius: 10px;
display: flex;
align-items: flex-start;
margin: 0 0 20px;
}

.pickup_item:last-child{
margin: 0;
}

.pickup_item_icon_label{
background: linear-gradient(to right, #6DDBE6, #00C1D4);
color: #fff;
font-weight: bold;
margin: 0 20px 10px 0;
text-align: center;
line-height: 1;
font-size: 20px;
padding: 4px 0 6px;
border-radius: 0px;
}

.pickup_item_icon_label:before{
content: '-';
margin: 0 4px 0 0;
font-weight: normal;
}

.pickup_item_icon_label:after{
content: '-';
margin: 0 0 0 4px;
font-weight: normal;
}

.pickup_item_icon_label.label__02{
background: linear-gradient(to bottom right, #FF99A7, #FF4D66);
}

.pickup_item_icon_label.label__03{
background: linear-gradient(to bottom right, #C0D4FF, #6699ff);
}

a.pickup_item_img_wrap{
display: block;
margin: 0 20px 0 0;
}

img.pickup_item_img{
width: 150px;
}

.pickup_item_spec{
width: 100%;
}

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

.pickup_item_spec_header__name{
font-size: 40px;
font-weight: bold;
line-height: 1.3;
}

.pickup_item_spec_header__value{
display: flex;
align-items: center;
font-size: 24px;
min-width: 264px;
white-space: nowrap;
}

.pickup_item_spec_header__value .label{
background: #00c1d4;
line-height: 1;
padding: 5px 10px;
border-radius: 6px;
color: #fff;
margin: 0 10px 0 0;
}

.pickup_item_spec_header__value .score{
vertical-align: baseline;
}

.pickup_item_spec_header__value .score span.red{
font-weight: bold;
color: #ec4870;
font-size: 28px;
}

p.pickup_item_spec_description{
font-weight: bold;
}

.pickup_item_spec_link_wrap{
display: flex;
flex-wrap: nowrap;
width: 100%;
}

a.pickup_item_spec_link_cvbutton{
display: block;
width: calc(60% - 10px);
text-decoration: none;
color: #fff;
font-weight: bold;
background: #ec4870;
line-height: 1;
padding: 15px 0;
text-align: center;
border-radius: 6px;
box-shadow: 0 5px 0 #7e001f;
margin: 0 10px 0 0;
position: relative;
overflow: hidden;
}

a.pickup_item_spec_link_cvbutton:after{
 content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}

@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}


a.pickup_item_spec_link_linkbutton{
display: block;
width: 40%;
text-decoration: none;
color: #fff;
font-weight: bold;
background: #6699ff;
line-height: 1;
padding: 15px 0;
text-align: center;
border-radius: 6px;
box-shadow: 0 5px 0 #002d87;
}

button#copy-url02,button#copy-url02_omiai{
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
padding: 0;
appearance: none;
font-size: 24px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: bold;
	color: #3366ff;
	text-decoration: underline;
}

button#copy-url02 i,button#copy-url02_omiai i{
margin: 0 0 0 4px;
}

.pickup_tab_wrap {
  display: flex;
  flex-wrap: wrap;
  margin:0px auto 0;
  width: 710px;
  align-items: flex-end;
}
.pickup_tab_wrap:after {
  content: '';
  width: 100%;
  height: 0px;
  display: block;
  order: -1;
}
.pickup_tab_label {
  color: #777;
  background: #DED9D8;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 10px 10px 0px 0px;
  flex: 1;
  line-height: 1.35;
}


.pickup_tab_label:not(:last-of-type) {
  margin-right: 5px;
}
.pickup_tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.pickup_tab_switch:checked+.pickup_tab_label {
  background: #0099ff;
  font-size: 28px;
  padding: 15px 0;
  color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
}

.pickup_tab_switch:checked+.pickup_tab_label:nth-of-type(2){
background: #FF717A;
}

.pickup_tab_switch:checked+.pickup_tab_label+.pickup_tab_content {
  height: auto;
  overflow: auto;
  padding: 0 0 0;
  opacity: 1;
  transition: .5s opacity;
  background: #fff;
  padding: 30px;
  border: solid 4px #0099ff;
}

.pickup_tab_switch:checked+.pickup_tab_label+.pickup_tab_content:nth-of-type(2){
  border: solid 4px #FF717A;
}

/* ラジオボタン非表示 */
.pickup_tab_switch {
  display: none;
}

.pickup_tab_content .pickup_item{
padding: 30px 0 30px;
margin: 0;
border-bottom: solid 4px #ccc;
border-radius: 0;
}

.pickup_tab_content .pickup_item:first-child{
padding-top: 0;
}

.pickup_tab_content .pickup_item:last-child{
padding-bottom: 0;
border-bottom: none;
}

/*pickup04
----------------------------------------------------------------------*/

section.pickup04{
margin: 0 0 60px;
padding: 0 0;
}

h2.pickup04_h2{
text-align: center;
position: relative;
background: #B03546;
color: #fff;
padding: 30px 0;
margin: 0 0 30px;
}

h2.pickup04_h2:before{
content: "";
position: absolute;
width: 0;
height: 0;
bottom: -16px;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
border-style: solid;
border-color: #B03546 transparent transparent transparent;
border-width: 16px 12px 0 12px;
z-index: 1;
}

h2.pickup04_h2:after{
position: absolute;
content: '';
display: inline-block;
width: 40px;
height: 40px;
background-image: url(../images/matching_pickup04_h2_after.png);
background-size: contain;
background-repeat: no-repeat;
top: 24px;
right: 5px;
}

h2.pickup04_h2 span.__big{
font-size: 52px;
}

span.pickup04_h2_subtitle{
position: absolute;
display: inline-block;
white-space: nowrap;
background: #fff;
border-radius: 100px;
color: #444;
line-height: 1;
padding: 15px 30px;
font-size: 28px;
border: solid 6px #B03546;
top: -32px;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

.pickup04_item_column01{
margin: 0 20px 0 0;
}

.pickup04_item_categorylabel{
position: absolute;
top:0;
left: 0;
}


.pickup04_item_categorylabel:before{
content:'';
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-color: #FF4D66 transparent transparent transparent;
border-width: 80px 80px 0px 0px;
top:0;
left: 0;
white-space: nowrap;
border-radius: 10px 0 0 0;
}

.pickup04_item_categorylabel.__label02:before{
border-color: #00C1D4 transparent transparent transparent;
}

.pickup04_item_categorylabel .__text{
position: absolute;
white-space: nowrap;
font-size: 20px;
top: 15px;
left: 5px;
line-height: 1;
color: #fff;
font-weight: bold;
transform: rotate(-45deg)
}

.pickup04_item_column01 .__appicon{
width: 156px;
margin: 0 0 20px;
}

.pickup04_item_column01 .__linkbutton{
display: block;
text-decoration: none;
background: #ff4d66;
color: #fff;
box-shadow: 0 6px 0 #912C3A;
line-height: 1;
font-weight: bold;
padding: 20px 0;
text-align: center;
width: calc(100%);
border-radius: 10px;
position: relative;
overflow: hidden;
}

.pickup04_item_column01 .__linkbutton:after{
display: inline-block;
content: '';
width: 22px;
height: 22px;
background-image: url(../images/matching_pickup04_linkbutto_aftericon.png);
background-size: contain;
background-repeat: no-repeat;
margin: 0 0 0 8px;
opacity: 0.7;
}

.pickup04_item_column01 .__linkbutton:before{
    content: "";
    display: block;
    width: 20px;
    height: 100%;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #FFF;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflect 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflect 2s ease-in-out infinite;

}



.pickup04_item_column02{
width: calc(100% - 176px);
position: relative;
}

ul.pickup04_item_wrap{
padding: 0 20px;
}

li.pickup04_item{
display: flex;
position: relative;
padding: 20px;
border: solid 2px #ccc;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
border-radius: 10px;
margin: 0 0 20px;
}

.pickup04_item_column02_header{
display: flex;
justify-content: space-between;
margin: 0 0 10px;
font-size: 24px;
align-items: center;
}

.pickup04_item_column02_header .__servicename{
font-size: 36px;
font-weight: bold;
line-height: 1;
color: #205FA9;
text-decoration: none;
}

.pickup04_item_column02_header span.__score_label{
display: inline-block;
background: #205FA9;
line-height: 1;
color: #fff;
padding: 5px 8px;
font-size: 20px;
border-radius: 4px;
margin: 0 10px 0 0;
}

.pickup04_item_column02_header span.__color01{
font-weight: bold;
color: #ec4870;
font-size: 28px;
}

.pickup04_item_copy{
background: #ffffc1;
font-weight: bold;
color: #222;
position: relative;
padding: 10px;
border-radius: 6px;
text-align: center;
margin: 0 0 20px;
}

.pickup04_item_copy:before{
content: '';
display: inline-block;
width: 28px;
height: 28px;
position: absolute;
background-image: url(../images/matching_pickup04_copy_doublequote.png);
background-size: contain;
background-repeat: no-repeat;
top: -12px;
left: 5px;
}

.swiper {

}

.pickup04_item_swiper_wrapper{
padding: 0 0 20px;
}

.swiper--wrapper {
height: auto !important;
}

.swiper-slide {

}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #333 !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper [class^="swiper-button-"]::after{
    font-size: 30px !important;
    position: absolute;
    top: -42px !important;
    bottom: auto !important;   
}

.swiper-slide-next,.swiper-slide-prev{
opacity: 0.5;
}

.swiper-pagination,.swiper-pagination02{
bottom: -8px !important;
top: auto !important;
}

.__swiper_item{
display: flex;
align-items: flex-start;
background: #f5f5f5;
padding: 16px;
border: solid 2px #ccc;
border-radius: 6px;
font-weight: bold;
}

img.__swiper_item_icon{
width: 64px;
height: 64px;
border-radius: 100px;
margin: 0 10px 0 0;
}

p.__swiper_item_text{
font-size: 22px;
}

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

section.dating-point{
padding: 40px 20px 0;
}

h3.dating-point_h3{
display: inline-block;
font-size: 28px;
color: #fff;
background: #00c1d4;
border-radius: 100px;
line-height: 1;
padding: 15px 20px 20px;
margin: 0 0 10px;
}

h2.dating-point_h2{
font-size: 40px;
line-height: 1;
margin: 0 0 20px;
}

img.dating-point_images{
margin: 0 0 20px;
}

p.dating-point_description{
font-weight: bold;
width: 620px;
margin: 0 auto 40px;
}

/*combi
----------------------------------------------------------------------*/

section.combi{
padding: 80px 20px 40px;
}

.combi_box{
background: #fff;
border-radius: 10px;
position: relative;
padding: 26px 20px 20px;
margin: 0 0 46px;
}

.combi_box:last-child{
margin: 0;
}

.combi_box.combi_box01{
border: solid 2px #00c1d4;
}

h3.combi_box_h3{
position: absolute;
font-size: 28px;
width: 430px;
background: #00c1d4;
text-align: center;
line-height: 1;
padding: 10px 0 14px;
border-radius: 100px;
color: #fff;
    left: 50%;
	top: -26px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

span.combi_box_h3_span:before{
content: '～';
margin: 0 10px 0 0;
}

span.combi_box_h3_span:after{
content: '～';
margin: 0 0 0 10px;
}

table.combi_box_table{
font-size: 28px;
width: 100%;
border-spacing: 0 20px;
}

table.combi_box_table tr td:first-child{
padding: 0 20px 0 0;
width: 350px;
}

table.combi_box_table tr td:nth-child(2){
vertical-align: middle;
width: 100px;
padding: 0 20px 0 0 ;
}

table.combi_box_table tr td:nth-child(3){

}

table.combi_box_table tr td:nth-child(4){
width: 42px;
}

table.combi_box_table span.baloon{
display: block;
font-weight: bold;
padding: 25px 0 27px;
width: 100%;
text-align: center;
border-radius: 6px;
background: #d5fbff;
line-height: 1;
position: relative;
}

table.combi_box_table span.baloon:after{
content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: -15px;
border-left: 15px solid #d5fbff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

table.combi_box_table img.appicon{
width: 80px;
}

table.combi_box_table a.appicon_wrap{

}

table.combi_box_table a.service_link{
color: #222;
font-size: 36px;
}

.combi_box.combi_box02{
border: solid 2px #ff4d66;
}

.combi_box.combi_box02 h3.combi_box_h3{
background: #ff4d66;
}

.combi_box.combi_box02 table.combi_box_table span.baloon{
background: #ffe0e8;
}

.combi_box.combi_box02 table.combi_box_table span.baloon:after{
border-left: 15px solid #ffe0e8;
}

.combi_box.combi_box03{
border: solid 2px #6699ff;
}

.combi_box.combi_box03 h3.combi_box_h3{
background: #6699ff;
}

.combi_box.combi_box03 table.combi_box_table span.baloon{
background: #e7efff;
}

.combi_box.combi_box03 table.combi_box_table span.baloon:after{
border-left: 15px solid #e7efff;
}

.combi_newbox_wrap_outer{
display: flex;
width: 100%;
padding: 20px 0 0;
}


ul.combi_newbox_wrap_inner{
flex-basis: 50%;
display: flex;
position: relative;
padding: 80px 20px 0px 0px;
justify-content: space-between;

}

ul.combi_newbox_wrap_inner:nth-child(even){
padding: 80px 0px 0px 20px;
border-left: dotted 4px #E1E1E1;
}

.combi_newbox_h4_wrap{
position: absolute;
white-space: nowrap;
top:0;
    left: calc(50% - 10px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

ul.combi_newbox_wrap_inner:nth-child(even) .combi_newbox_h4_wrap{
position: absolute;
white-space: nowrap;
top:0;
    left: calc(50% + 10px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

h4.combi_newbox_h4{
font-size: 28px;
padding: 16px 20px;
line-height: 1;
background: #d5fbff;
position: relative;
border-radius: 6px;
}

h4.combi_newbox_h4:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: #d5fbff transparent transparent transparent;
    border-width: 15px 10px 0 10px;
    z-index: 1;

}

ul.combi_newbox_wrap_inner li{
text-align: center;
flex-basis: 50%;
}

img.combi_newbox_appicon{
width: 120px;
}

a.combi_newbox_appicon_wrap{
display: block;
}

a.combi_newbox_txtlink{
font-size: 32px;
color: #222;
line-height: 2.6rem;
}

.combi_box.combi_box02 h4.combi_newbox_h4{
background: #ffe0e8;
}

.combi_box.combi_box02 h4.combi_newbox_h4:after{
border-color: #ffe0e8 transparent transparent transparent;
}

.combi_box.combi_box03 h4.combi_newbox_h4{
background: #e7efff;
}

.combi_box.combi_box03 h4.combi_newbox_h4:after{
border-color: #e7efff transparent transparent transparent;
}

/*ranking
----------------------------------------------------------------------*/

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px auto 0;
  width: 710px;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 10px;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  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: 10px;
  flex: 1;
  line-height: 1.35;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;

}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: linear-gradient(to bottom, #FCA9A9 0%,#fa696a 100%);

}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 10px 0 0;
  opacity: 1;
  transition: .5s opacity;
  background: none;

}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

span.ranking_tab_label_span{
font-size: 36px;
}


section.ranking{
padding: 60px 0 0;
margin: 0 0 60px;
}

section.combi + section.ranking{
padding: 0 0 0;
}

.ranking_h2_wrap{
background: #00c1d4;
text-align: center;
padding: 20px 0 0;
position: relative;
margin: 0 0 60px;
}

.ranking_h2_wrap:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -40px;
    border-style: solid;
    border-color: #00c1d4 transparent transparent transparent;
    border-width: 40px 375px 0 375px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.ranking_h2_wrap.__women{
background: #FF7B8D;
}

.ranking_h2_wrap.__women:after{
border-color: #FF7B8D transparent transparent transparent;
}

h2.ranking_h2{
font-size: 36px;
color: #fff;
line-height: 1.35;
position: relative;
display: inline-block;
}

h2.ranking_h2:before{
position: absolute;
content: '';
display: inline-block;
width: 56px;
height: 130px;
background: url(../images/matching_ranking_h2_before.png);
left: -56px;
top: -20px;
}

h2.ranking_h2:after{
position: absolute;
content: '';
display: inline-block;
width: 56px;
height: 130px;
background: url(../images/matching_ranking_h2_after.png);
right: -56px;
top: -20px;
}


.ranking_h2_subtitle{
background: #fff;
line-height: 1;
display: inline-block;
padding: 10px 20px 12px;
font-size: 28px;
font-weight: bold;
border-radius: 100px;
}

span.ranking_h2_span_black{
font-size: 44px;
color: #444;
}

span.ranking_h2_span_yellow{
color: #f0ee2f;
}



.ranking_item{
padding: 20px 20px 28px;
border-radius: 10px;
background: #fff;
position: relative;
margin: 0 0 40px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}

.ranking_item_header{
display: flex;
padding: 0 0 10px 80px;
justify-content: space-between;
align-items: baseline;
border-bottom: solid 2px #ff4d66;
margin: 0 0 20px;
}

.ranking_item_header_rank{
display: block;
position: absolute;
background: url(../images/kg_ranking-item_rank-icon04-05.png);
content: '';
background-size: contain;
background-repeat: no-repeat;
width: 72px;
height: 84px;
top: -10px;
left: 10px;
text-align: center;
font-size: 40px;
font-weight: bold;
line-height: 1;
padding: 10px 0 0;
color: #666;
}

.ranking_item.ranking_item__rank01 .ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon01.png);
}

.ranking_item.ranking_item__rank02 .ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon02.png);
}

.ranking_item.ranking_item__rank03 .ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon03.png);
}

h3.ranking_item_header_h3{
font-size: 40px;
}

.ranking_item_header_score{
font-size: 28px;
}

.ranking_item_header_score span.color-gold{
color: #f0ee2f;
}

.ranking_item_header_score span.color-gray{
color: #ccc;
}

.ranking_item_header_score span.color-score{
font-family: 'Anton', sans-serif, cursive;
color: #ff4d66;
}

.ranking_item_maincopy{
font-size: 36px;
font-weight: bold;
margin: 0 0 20px;
}

img.ranking_item_banner{
width: 100%;
}

a.ranking_item_banner_wrap{
display: block;
margin: 0 0 20px;
}

.ranking_item_point-box{
background:  #ffe0e8;
padding: 60px 20px 20px;
position: relative;
margin: 0 0 20px;
}

.ranking_item_point-box_h4_wrap{
position: absolute;
top: 0;
left: 0;
}

h4.ranking_item_point-box_h4{
background: #ff4d66;
line-height: 1;
display: inline-block;
position: relative;
color: #fff;
padding: 10px 0px 12px 15px;
height: 46px;
}

h4.ranking_item_point-box_h4:after{
content: '';
position: absolute;
top:0;
right: -32px;
width: 0;
height: 0;
border-style: solid;
border-width: 46px 32px 0 0;
border-color: #ff4d66 transparent transparent transparent;
}


ul.ranking_item_point-box_ul{
padding: 0 0 0 33px;
}


ul.ranking_item_point-box_ul li{
font-size: 28px;
font-weight: bold;
position: relative;
margin: 0 0 10px;
}

ul.ranking_item_point-box_ul li:last-child{
margin: 0;
}

ul.ranking_item_point-box_ul li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: -33px;
	color: #ff4d66;
}

.ranking_item_point-box.box02{
background: #e7efff;
}

.ranking_item_point-box.box02 h4.ranking_item_point-box_h4{
background: #6699ff;
}

.ranking_item_point-box.box02 h4.ranking_item_point-box_h4:after{
border-color: #6699ff transparent transparent transparent;
}


h3.ranking_item_review__h3{
border-radius: 10px 10px 0 0;
    background: #00c1d4;
    text-align: center;
    color: #fff;
    line-height: 1;
    padding: 10px 0;
	font-size: 24px;
}

h3.ranking_item_review__h3 i{
margin: 0 5px 0 0;
color: #B6EDF2;
}



li.ranking_item_review{
position: relative;
}

ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child){
margin: 0 0 20px;
padding: 0 0 20px;
}

ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child):after{
position: absolute;
display: block;
content: '';
background: #ccc;
height: 2px;
width: calc(100%);
bottom: 0;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
 }

.ranking_item_review__profile{
padding: 0 0 0 84px;
position: relative;
font-size: 24px;
}

.ranking_item_review__profile:before{
position: absolute;
content: '';
display: inline-block;
width: 64px;
height: 64px;
background: url(../images/kg_ranking_item_review-icon.png);
left: 0;
background-repeat: no-repeat;
}

.ranking_item_review__profile.male:before{
background: url(../images/kg_ranking_item_review-icon_male.png);
}

.ranking_item_review__profile_title{
line-height: 1.25;
font-weight: bold;
color: #00c1d4;
}

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

._detail_star{
margin: 0 20px 0 0;
}

span._detail_star_gold{
color: #ffcc00;
}

span._detail_star_gray{
color: #ccc;
}

._detail_age-occuaption{
font-size: 20px;
}

p.ranking_item_review__description{
font-size: 20px;
}

.ranking_item_review__box{
position: relative;
margin: 0 0 20px;
}

.grad-btn {
  z-index: 2;
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    width: 148px;
    margin: auto;
    padding: 5px 0;
    border-radius: 4px;
    background: #FF686F;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	font-weight: bold;
}

ul.ranking_item_review__wrap{
padding: 20px;
border: solid 2px #00c1d4;
  position: relative;
  overflow: hidden;
  height: 240px;
}

ul.ranking_item_review__wrap::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  content: "";
  z-index: 1;
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked + .grad-btn {
  display: none; /*チェックされていたら、grad-btnを非表示にする*/
}
.grad-trigger:checked ~ ul.ranking_item_review__wrap{
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ ul.ranking_item_review__wrap::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}

a.ranking_item_cvbutton{
text-align: center;
font-size: 36px;
display: block;
text-decoration: none;
color: #fff;
background: #ff4d66;
font-weight: bold;
box-shadow: 0 8px 0 #ad1f33;
border-radius: 10px;
padding: 20px 0;
position: relative;
overflow: hidden;
}

a.ranking_item_cvbutton:before{
position: absolute;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 20px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

a.ranking_item_cvbutton:after{
 content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}

.ranking_item_campaign_box{
border: solid 2px #ff4d66;
border-radius: 10px;
text-align: center;
position: relative;
padding: 40px 20px 20px;
background: #FFFAF0;
margin: 40px 0 20px;
}

h4.ranking_item_campaign_h4{
position: absolute;
display: inline-block;
background: #ff4d66;
color: #fff;
padding: 8px 20px 10px;
border-radius: 100px;
line-height: 1;
font-size: 24px;
white-space: nowrap;
top: -20px;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

p.ranking_item_campaign_text{
font-weight: bold;
font-size: 24px;
}

p.ranking_item_campaign_text i{
color: #ffcc00;
}


span.ranking_item_campaign_text_span{
font-size: 32px;
color: #ff4d66;
text-shadow: 1px 1px 0 #fff,1px 0px 0 #fff,0px 1px 0 #fff,0px -1px 0 #fff,-1px 0px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}

.ranking_item_campaign_code_wrap{
margin: 10px 0 0;
display: flex;
justify-content: center;
align-items: center;
}

.ranking_item_campaign_code_text{
background: #f0f0f0;
font-weight: bold;
padding: 0 10px;
border: solid 2px #cccccc;
border-radius: 6px;
margin:  4px 10px 0 0;
}

button#copy-url,button#copy-url_omiai{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
		background: #07aa70;
		box-shadow: 0 4px 0 #046140;
		color: #fff;
		line-height: 1;
		padding: 10px 10px 10px 34px;
		border-radius: 6px;
		font-weight: bold;
		font-size: 20px;
		position: relative;
}

button#copy-url:before,button#copy-url_omiai:before{
position: absolute;
    content: '\f0c5';
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
	left: 10px;
	color: #fff;
}


p.ranking_item_notification{
margin: 18px 0 0;
color: #888;
}

.ranking_item p.ranking_item_notification:not(:first-of-type){
margin: 0 0 0;
}

img.ranking_item_campaign_banner{
width: 100%;
}

/*section.compare
----------------------------------------------------------------------*/


section.compare{
padding: 60px 20px 0;
margin: 0 0 60px;
}

h3.compare_h3{
}

table.compare_table{
width: 100%;
border-collapse: collapse;
font-size: 24px;
background: #fff;
}

table.compare_table th,table.compare_table td{
border: solid 1px #ccc;
}

table.compare_table th{
border-top: solid 8px #ff4d66;
background: #f5f5f5;
padding: 5px 0;
}

table.compare_table td{
text-align: center;
padding: 20px 0;
font-weight: bold;
}

table.compare_table tr td:nth-child(2),table.compare_table tr td:nth-child(3){
width: 140px;
}

table.compare_table tr td:nth-child(4){
text-align: left;
padding: 10px 0 10px 40px;
line-height: 1.8;
}

a.compare_table_appicon_wrap{
display: block;
margin: 0 0 5px;
}

img.compare_table_appicon{
width: 100px;
}

.compare_table_name{
font-weight: bold;
}

a.compare_table_dlbutton{
display: block;
width: calc(100% - 40px);
text-align: center;
background: #ff4d66;
box-shadow: 0 4px 0 #ad1f33;
color: #fff;
text-decoration: none;
border-radius: 8px;
margin: 0 auto 0;
padding: 5px 0 7px;
line-height: 1;
font-weight: normal;
font-size: 20px;
}


table.compare_table span.label_male,table.compare_table span.label_female{
padding: 0px 10px;
background: #0099ff;
border-radius: 4px;
color: #fff;
margin: 0 10px 0 0;
}

table.compare_table span.label_female{
background: #ff6699;
}

span.compare_table_amount_label{
font-weight: normal;
font-size: 20px;
}

p.compare_notification{
margin: 10px 0 0;
}

.tab-wrap02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
}
.tab-wrap02:after {
  }

.tab-label02 {
  color: #999;
  background: LightGray;
  font-weight: bold;
  
  white-space: nowrap;
  text-align: center;
  padding: 5px .5em 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  flex: 1;
}

.tab-label02 span.tab-label02_span01{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/matching_compare_tabicon01_off.png);
}

.tab-label02 span.tab-label02_span02{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/matching_compare_tabicon02_off.png);
}

.tab-label02 span.tab-label02_span03{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/matching_compare_tabicon03_off.png);
}



.tab-label02:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content02 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */

.tab-switch02:checked+.tab-label02 {
  background: #ff4d66;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  color: #fff;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span01{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/matching_compare_tabicon01_on.png);
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span02{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/matching_compare_tabicon02_on.png);
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span03{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/matching_compare_tabicon03_on.png);
}

.tab-switch02:checked+.tab-label02+.tab-content02 {
  height: auto;
  overflow: auto;
  padding: 0px;
  opacity: 1;
  transition: .5s opacity;
  background: #fff;

}
/* ラジオボタン非表示 */
.tab-switch02 {
  display: none;
}




/*result
----------------------------------------------------------------------*/
.result_header01{
background: #fff;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 15px;
}

.result_header01_counter{
font-size: 24px;
}

span.result_header01_counter_color{
color: #ff4b4b;
font-weight: bold;
}

a.result_header01_change-button_wrap{
text-decoration: none;
}

.result_header01_change-button{
color: #888;
font-weight: bold;
font-size: 20px;
padding: 15px 10px;
background: #f4f4f4;
border-radius: 6px;
line-height: 1;
border: solid 2px #ccc;
}

.result_header01_change-button i{
margin: 0 10px 0 0 ;
}

.result_header02{
background: #d5fbff;
margin: 0 0 15px;
}

h3.result_header02_h3{
font-weight: normal;
color: #00c1d4;
margin: 0 0 15px;
}

h3.result_header02_h3 i{
margin: 0 5px 0 0;

}

.result_header02_wrap{
padding: 15px 0 30px;
}

ul.result_header02_settings_wrap{
padding: 30px;
background: #fff;
border-radius: 5px;
display: flex;
}

ul.result_header02_settings_wrap li{
padding: 5px 10px 5px 20px;
border: solid 2px #00c1d4;
color: #00c1d4;
font-weight: 600;
margin: 0 10px 0 0;
position: relative;
}

ul.result_header02_settings_wrap li:after{
position: absolute;
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: 5px;
	color: #00c1d4;
}

#submit_select{
margin: 0 0 30px auto;
padding: 0 15px;
background: #fff;
border: 1px solid #ccc;
border-radius: 10px;
width: 320px;
height: 50px;
font-size: 20px;
line-height: 48px;
display: block;
color: #888;
}


.result_item{
padding: 40px 40px;
border-radius: 15px;
background: #fff;
margin: 0 0 30px;
border: solid 2px #91DCFF;
}

.result_item:last-child{
margin: 0 0 60px;
}

a.result_item_h3_wrap{
text-decoration: none;
color: #666;
display: block;
margin: 0 0 15px;
border-bottom: solid 1px #bbb;
position: relative;
}

a.result_item_h3_wrap:after{
position: absolute;
content: '〉';
font-size: 36px;
font-weight: bold;
color: #bbb;
right: -20px;
top: -8px;
}

h3.result_item_h3{
font-size: 36px;
display: block;
line-height: 1;
padding: 0 0 20px;
}

.result_item_maincopy{
font-size: 27px;
text-align: center;
background: #DBE9F5;
padding: 10px;
margin: 0 0 30px;
position: relative;
border-radius: 10px;
}

.result_item_maincopy:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: #DBE9F5 transparent transparent transparent;
    border-width: 30px 20px 0 20px;
    z-index: 1;
}



a.result_item_banner_wrap{
margin: 0 auto 15px;
display: block;
text-align: center;
}

img.result_item_banner{
width: 320px;
}

table.result_item_table{
width: 100%;
border-collapse: collapse;
margin: 0 0 40px;
font-size: 24px;
border-radius: 10px;
}

table.result_item_table th,table.result_item_table td{
line-height: 1;
padding: 10px;
width: 50%;
text-align: center;
border-bottom: solid 2px #91DCFF;
}

table.result_item_table tr:last-child th,table.result_item_table tr:last-child td{
border-bottom:none;
}

table.result_item_table th{
background: #D0F0FF;
}

tr.result_item_table_value th,tr.result_item_table_amount th,tr.result_item_table_area th{
padding: 30px 0px;
}

tr.result_item_table_workstyle ul,tr.result_item_table_occupation ul{
display: flex;
flex-wrap: wrap;
}

tr.result_item_table_workstyle ul li,tr.result_item_table_occupation ul li{
flex-basis:calc(50% - 5px);
padding: 8px 0px;
line-height: 1;
border-radius: 100px;
color: #FF686F;
margin-top: 10px;
font-weight: normal;
font-size: 20px;
white-space: nowrap;
border: solid 2px #FF9196;
background: #FFEEEF;
}

tr.result_item_table_workstyle ul li.off,tr.result_item_table_occupation ul li.off{
background: #f5f5f5;
color: #bbb;
border: solid 1px #bbb;
font-weight: normal;
}

tr.result_item_table_workstyle ul li:nth-child(odd),tr.result_item_table_occupation ul li:nth-child(odd){
margin-right: 5px;
}

tr.result_item_table_workstyle ul li:nth-child(even),tr.result_item_table_occupation ul li:nth-child(even){
margin-left: 5px;
}

tr.result_item_table_workstyle ul li:nth-of-type(1),tr.result_item_table_workstyle ul li:nth-of-type(2),tr.result_item_table_occupation ul li:nth-of-type(1),tr.result_item_table_occupation ul li:nth-of-type(2){
margin-top: 0;
}




a.result_item_linkbutton{
margin: 30px auto 0;
padding: 15px 0px;
width: 360px;
text-align: center;
background: rgb(181,181,181);
background: linear-gradient(45deg, rgba(181,181,181,1) 0%, rgba(255,154,49,1) 0%, rgba(255,81,50,1) 100%);
display: block;
text-decoration: none;
color: #fff;
font-size: 24px;
font-weight: bold;
border-radius: 100px;
border: solid 1px #ff4500;
}

section.result #search{
position: relative;
}

section.result #search .form-wrap form{
width: 100%;
}

section.result #search h2{
background: #00c1d4;
color: #fff;
}



span.gold{
color: #ffcc00;
}

span.gray{
color: #ccc;
}

span.score{
color: #FF686F;
font-family: 'Anton', sans-serif, cursive;
}

.result_item02{
padding: 20px;
border: solid 2px #ff4d66;
border-radius: 10px;
margin: 0 0 20px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}

.result_item02:last-child{
margin: 0 0 60px;
}

.result_item02_header{
display: flex;
margin: 0 0 20px;
}

.result_item02_header_left{
text-align: center;
margin: 0 20px 0 0 ;
}

a.result_item02_header_left_appicon_wrap{
display: block;
margin: 0 0 0;
}

img.result_item02_header_left_appicon{
width: 150px;
}

a.result_item02_header_left_textlink{
color: #00c1d4;
font-weight: bold;
font-size: 28px;
}

.result_item02_header_right{
width: 100%;
}

ul.result_item02_header_right_point{
}

ul.result_item02_header_right_point li{
position: relative;
padding: 10px 0 10px 36px;
border-top: solid 1px #eee;
}

ul.result_item02_header_right_point li:last-child{
border-bottom: solid 1px #eee;
}

ul.result_item02_header_right_point li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 26px;
	color: #ff4d66;
	left: 0px;
}

table.result_item02_table{
width: 100%;
font-size: 24px;
border-collapse: separate;
border-spacing: 4px 2px;
margin: 0 0 20px;

}

table.result_item02_table th{
padding: 10px 0px;
font-size: 20px;
background: #ffe0e8;
width: calc(100% / 3);
}

table.result_item02_table td{
text-align: center;
padding: 20px 0;
background: #f9f9f9;
font-weight: bold;
}

span.result_item02_table_label_amount{
font-weight: normal;
}

table.result_item02_table tr td:nth-child(3){
line-height: 1.6;
}

.result_item02_table_inner{
display: inline-block;
text-align: left;
}


span.result_item02_table_span_male,span.result_item02_table_span_female{
    padding: 0px 10px;
    background: #0099ff;
    border-radius: 4px;
    color: #fff;
    margin: 0 10px 0 0;
}

span.result_item02_table_span_female{
background: #ff6699;
}

a.result_item02_dlbutton{
    text-align: center;
    font-size: 28px;
    display: block;
    text-decoration: none;
    color: #fff;
    background: #ff4d66;
    font-weight: bold;
    box-shadow: 0 8px 0 #ad1f33;
    border-radius: 10px;
    padding: 20px 0;
    position: relative;
	margin: 0 auto 0;
	max-width: 480px;
}


p.result_item02_notice{

}


/*検索ボックス
----------------------------------------------------------------------*/

#search h2 span.color{
color: #ee827c;
}

#search{
margin:0px auto 0px;
position: relative;
}

#search .inner{
border: solid 1px #004444;
background-color: #f5f5f5;
}

#search h2{
background-color: #fff;
text-align: center;
border-radius: 20px 20px 0px 0px;
color: #666;
padding: 20px 0px;
font-size: 24px;

}

#search h2 i{
margin: 0 10px 0 0;

}

#search .form-wrap{

}

#search .form-wrap form{
background: #fff;
padding: 30px;
box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
border-radius: 10px;
}

#search select{
width: 100%;
padding: 20px 20px 20px 280px;
border-radius: 40px;
font-size: 20px;
font-weight: bold;
box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

#search .select-wrap{
position: relative;
margin: 0 0 20px;
}

#search .select-wrap:before{
position: absolute;
content: 'デフォルト';
display: inline-block;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#search .select-wrap.qs1:before{
content:'アプリの利用目的';
}

#search .select-wrap.qs2:before{
content:'ご年齢';
}

#search .select-wrap.qs3:before{
content:'料金形態';
}

#search .select-wrap.qs4:before{
content:'施設';
}


#search table{
width: 100%;
}

#search input[type="submit"]{
    width: 50%;
    height: 60px;
    margin: 20px auto 0px;
    padding: 0 20px;
    display: block;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    background:   #ff4b4b;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
	box-shadow: 0px 4px 0px #992d2d;

}


#search .inner label{
display: block;
width: 100%;
background-color: #004444;
text-align: center;
color: #fff;
font-weight: normal;
padding: 10px;
font-size: 18px;
    cursor :pointer;
    transition: all 0.5s;
position: relative;
}


.acd-check{
    display: none;
}
.acd-label{
    color: #999;
    display: block;
    margin: 0px auto 1px;
    position: relative;
	width: 200px;
	text-align: center;

}
.acd-label:before{
    box-sizing: border-box;
    content: '\f055';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 20px;
	color: #ff6633;
	margin-right: 10px;
	vertical-align: -2px;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label:before{
    content: '\f056';
	color: #999;
}
.acd-check:checked + .acd-label + .acd-content{
    height: 230px;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

.acd-content table{
border-collapse: collapse;

}

.acd-content table td{
border: solid 2px #ccc;
width: 50%;
font-size: 20px;
padding: 20px;
background: #f5f5f5;
}



/*検索結果並べ替え
----------------------------------------------------------------------*/

#result{
padding: 20px 20px 0px;
}

#result section.count-area{
background: #fff;
padding: 20px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 20px;
}

#result section.count-area .counter{
font-size: 24px;
}

#result section.count-area .counter span.color{
color: #ff4b4b;
font-weight: bold;
}

#result section.count-area .change-button{
color: #888;
font-weight: bold;
font-size: 20px;
padding: 15px 10px;
background: #f4f4f4;
border-radius: 6px;
line-height: 1;
border: solid 2px #ccc;
}

#result section.count-area .change-button i{
margin: 0 10px 0 0 ;
}

#result section.count-area a{
text-decoration: none;
}



.item-result{
border-radius: 6px;
padding: 20px;
background: #fff;
margin: 0 0 20px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}

.item-result .hashtag{
display: flex;
flex-wrap: wrap;
margin: 0 0 12px;
}

.item-result .hashtag .hashtag-item{
background: #c90e38;
line-height: 1;
color: #fff;
font-size: 20px;
font-weight: normal;
padding: 8px 8px 8px 32px;
position: relative;
border-radius: 6px;
margin: 0 8px 8px 0;
}

.item-result .hashtag .hashtag-item:before{
content: '\f292';
font-family: "Font Awesome 5 Free";
font-weight: 900;
position: absolute;
left: 6px;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
}

.item-result .spec{
display: flex;
flex-wrap: nowrap;
}

.item-result .spec .left{
width: 36%;
margin: 0 20px 20px 0;
}

.item-result .spec a.service-img{
margin: 0 0 20px;
display: block;
}

.item-result .spec a.service-img img{
width: 100%;
}

.item-result .spec .atm-box{
border: solid 1px #ccc;
position: relative;
padding: 20px 0px 10px;
text-align: center;
}

.item-result .spec .atm-box .label{
position: absolute;
background: #fff;
top:-8px;
line-height: 1;
padding: 0 4px;
font-size: 20px;
font-weight: bold;
color: #888;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

.item-result .spec .atm-box img.atm-logo{
width: 48px;
margin: 0 6px 0 0;
}

.item-result .spec .atm-box img.atm-logo:last-child{
margin: 0;
}

.item-result .spec .right{
width: 64%;
margin: 0 0 20px;
}

.item-result .spec .company{
font-size: 24px;
color: #888;
line-height: 1;
margin: 0 0 10px;
}

.item-result .spec h3{
font-size: 36px;
line-height: 1;
margin: 0 0 10px;
}

.item-result .spec .user{
font-size: 24px;
font-weight: bold;
color: #888;
line-height: 1;
margin: 0 0 20px;
}

.item-result .spec .user span.color{
color: #ff4b4b;
}

.item-result .spec .user sup{
font-size: 18px;
}

.item-result table{
width: 100%;
text-align: left;
font-size: 20px;
border-collapse: collapse;
}

.item-result table tr{
border-bottom: dotted 2px #ccc;
}

.item-result table th,.item-result table td{
padding: 8px 0px;
line-height: 1;
}

.item-result table th{
color: #888;
}

.item-result table td{
font-weight: bold;
}

.item-result ul.point{
padding: 0px 0px 20px;
}

.item-result ul.point li{
font-size: 24px;
font-weight: bold;
}

.item-result ul.point li:before{
content: '\f14a';
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #ff4b4b;
margin: 0 10px 0 0;
}

.item-result .countdown{
display: flex;
border-radius: 6px;
padding: 10px 10px 10px 20px;
font-size: 24px;
font-weight: bold;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
position: relative;
width: 100%;
border: solid 2px #ccc;
}

.item-result .countdown .countdown-label{
margin: 0 20px 0 0;
}

.item-result .countdown .countdown-timer{
padding: 10px;
border-radius: 10px;
background: #222;
color: #fff;
line-height: 1;
}

.item-result .countdown .countdown-timer i{
margin-right: 10px;
font-size: 26px;
vertical-align: -2px;
}

.item-result .countdown .countdown-timer span#timer{
color: #ffcc00;
}

.item-result a.cvbutton{
display: block;
font-size: 28px;
font-weight: bold;
text-decoration: none;
text-align: center;
background: #ff4b4b;
color: #fff;
line-height: 1;
padding: 30px 0px;
border-radius: 50px;
box-shadow: 0px 8px 0px #992d2d;
margin: 0 auto 8px;
width: 520px;
position: relative;
}

.item-result a.cvbutton:after{
content: '\f054';
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 32px;
position: absolute;
right: 20px;
}

.item-result p.addition{
margin: 28px 0 0;
color: #666;
font-size: 20px;
}

/*category
----------------------------------------------------------------------*/

section.category{
margin: 0 0 60px;
padding: 60px 20px 0;
}

h2.category_h2{
display: inline-block;
    font-size: 28px;
    color: #fff;
    background: #00c1d4;
    border-radius: 100px;
    line-height: 1;
    padding: 15px 20px 20px;
    margin: 0 0 20px;
}


h3.category_h3{
line-height: 1;
padding: 0 0 0 20px;
position: relative;
margin: 0 0 20px;
font-size: 30px;
}

h3.category_h3:before{
position: absolute;
content: '';
display: block;
height: 32px;
width: 12px;
background: #ff4d66;
border-radius: 4px;
left: 0px;
}

.category_wrap{
display: flex;
flex-wrap: wrap;
margin: 0 0 40px;
}

a.category_item{
display: block;
flex-basis: calc(50% - 5px);
padding: 25px 0px 25px 20px;
background: #ffe0e8;
text-decoration: none;
color: #444;
font-weight: bold;
border-bottom: solid 4px #ff4d66;
position: relative;
}

a.category_item:after{
position: absolute;
content: '\f138';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #ff4d66;
	right: 10px;
}

a.category_item:nth-child(odd){
margin: 0 5px 0 0;
}

a.category_item:nth-child(even){
margin: 0 0 0 5px;
}

a.category_item:not(:first-child,:nth-child(2)){
margin-top: 10px;
}


/*アコーディオンタイトル*/
.category_search_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:24px;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
	background: #ffe0e8;
	font-weight: bold;
	border-radius: 10px;
}

/*アイコンの＋と×*/
.category_search_title::before,
.category_search_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.category_search_title::before{
    top:48%;
    left: 15px;
    transform: rotate(45deg);
    
}
.category_search_title::after{    
    top:48%;
    left: 15px;
    transform: rotate(135deg);

}
/*　closeというクラスがついたら形状変化　*/
.category_search_title.close::before{
  transform: rotate(90deg);
}

.category_search_title.close::after{
  transform: rotate(0deg);
}

/*アコーディオンで現れるエリア*/
.category_search_box {
    
    background: #ffe0e8;
  margin: 20px 0 0;
    padding: 20px;
	border-radius: 10px;
}

a.category_gender_banner_wrap{
display: inline-block;
margin: 0 0 40px;
}

img.category_gender_banner{
width: 100%;
}

/*about
---------------------------------------------------------------------------*/

section.about{
width: 100%;
}

h2.about_h2{
font-size: 36px;
position: relative;
display: inline-block;
padding: 0 0 10px;
margin: 0 0 40px;
}

h2.about_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 80px;
    height: 4px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #FF9196;
}

table.about_table{
width: 100%;
border-collapse: collapse;
text-align: left;
margin: 0 auto 60px;
font-size: 24px;
}

table.about_table tr{
border-bottom: dotted 2px #ccc;
}

table.about_table tr:first-child{
border-top: dotted 2px #ccc;
}

table.about_table th,table.about_table td{
padding: 15px 0px;
}

h4.about_h4{
font-size: 24px;
border-left: solid 6px #888;
padding: 0 0 0 6px;
line-height: 1.25;
margin: 0 0 15px;
}

p.about_p{
margin: 0 0 30px;
}

p.about_p:last-child{
margin: 0 0 60px;
}

/*survey
---------------------------------------------------------------------------*/

section.survey{
width: 100%;
max-width: 2000px;
}

h2.survey_h2{
font-size: 36px;
position: relative;
display: inline-block;
padding: 0 0 10px;
margin: 0 0 40px;
}

h2.survey_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 80px;
    height: 4px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #FF9196;
}

h3.survey_h3{
font-size: 24px;
border-left: solid 6px #FF9196;
border-bottom: solid 1px #FF9196;
padding: 0 0 6px 6px;
line-height: 1.35;
margin: 0 0 15px;
}

p.survey_p{
margin: 0 0 30px;
}

p.survey_p:last-child{
margin: 0 0 60px;
}

/*notice
---------------------------------------------------------------------------*/

section.notice{
margin: 0 0 60px;
padding: 0 20px;
}

.notice_inner{
padding: 20px;
border-radius: 10px;
background: #f5f5f5;
}

h3.notice_h3{
font-size: 24px;
margin: 0 0 10px;
}

p.notice_description{
font-size: 20px;
}

a.notice_description_link{
color: #444;
font-weight: bold;
}

a.notice_description_link:after{
content: '\f101';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 10px;

}

/*post
---------------------------------------------------------------------------*/

section.post{
padding: 20px;
margin: 20px;
background: #fff;
border-radius: 10px;
}

h2.post_h2{
background-color: #ff4d66;
background-image: url(../images/matching_post_h2_bgimage.png);
background-size: 100%;
color: #fff;
padding: 20px;
font-size: 40px;
line-height: 1.35;
border-radius: 10px;
text-shadow: 0 0 2px #ff4d66;
}

span.post_h2_subtitle{
font-size: 20px;
}

h2.post_h2.post_h2_wide{
padding: 30px 20px;
}

.post_date{
text-align: right;
font-weight: bold;
color: #888;
margin: 0 0 20px;
}

.post_date:before{
content: '\f017';
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
    margin: 0 5px 0 0;
}

p.post_description{
margin: 0 0 30px;
font-size: 28px;
}

h3.post_h3{
border-left: solid 8px #ff4d66;
padding: 0 0 0 16px;
line-height: 1.35;
margin: 0 0 20px;
font-size: 28px;
}

a.post_listlink{
color: #ff4d66;
font-weight: bold;
}

a.post_listlink:before{
content: '\f100';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

ul.post_list{
padding: 40px 0 0 30px;
}

ul.post_list li{
display: inline-block;
position: relative;
line-height: 1.35;
}

ul.post_list li:before{
position: absolute;
content: '\f105';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
    left: -20px;
    color: #ff4d66;
}

a.post_list_item_wrap{
text-decoration: none;
display: inline-block;
font-size: 28px;
margin: 0 0 30px;
color: #444;
}

/*column_menu
---------------------------------------------------------------------------*/

section.column_menu{
padding: 0 20px;
margin: 0 0 60px;
}

h2.category_h2.category_h2_column{
margin-top: 40px;
}


ul.column_menu_list{
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    border: solid 2px #ccc;
}
ul.column_menu_list a{
    text-decoration: none;
    color: #444;
    font-size: 24px;
    display: block;
    position: relative;
    
}

ul.column_menu_list a:not(:last-child):before{
    position: absolute;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    left: 20px;
    color: #ccc;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

ul.column_menu_list a:not(:last-child):after{
    position: absolute;
    display: block;
    content: '';
    background: #ccc;
    width: calc(100% - 40px);
    height: 1px;
    left: 20px;
    bottom: 0px;
}

ul.column_menu_list li{
padding: 20px 20px 20px 40px;
}

ul.column_menu_list a:last-child{
    font-size: 16px;
    text-align: center;
    background: #FFEEEF;
    font-weight: bold;
}

ul.column_menu_list a:last-child li{
    padding: 10px 10px;
    border-top: solid 1px #ccc;
}

ul.column_menu_list a:last-child li i{
margin: 0 0 0 5px;
}

/*campaign
---------------------------------------------------------------------------*/

section.campaign{
padding: 0 20px;
margin: 0 0  60px;
}

h2.campaign_h2{
display: inline-block;
position: relative;
font-size: 40px;
line-height: 1;
margin: 0 0 20px;
}

h2.campaign_h2:before,h2.campaign_h2:after{
position: absolute;
bottom: 0;
height: 36px;
content: '';
}

h2.campaign_h2:before{
border-left: solid 4px #ff4d66;
left: -20px;
transform: rotate(-30deg);
}

h2.campaign_h2:after{
border-right: solid 4px #ff4d66;
right: -20px;
transform: rotate(30deg);
}

img.campaign_banner{
width: 100%;
}

a.campaign_banner_wrap{

}

/*tvcm
---------------------------------------------------------------------------*/

section.tvcm{
padding: 20px 20px 28px;
text-align: center;
background: #ffe0e8;
border-radius: 20px;
width: calc(100% - 40px);
margin: 60px auto 0;
}

h3.tvcm_h3 {
font-size: 32px;
  line-height: 60px;
  position: relative;
  height: 60px;
  margin: 0 auto 20px;
  padding: 0 2rem;
  text-align: center;
  color: #fff;
  background: #00c1d4;
  width: 380px;
}

h3.tvcm_h3:before,
h3.tvcm_h3:after {
  position: absolute;
  top: 0;
  display: block;
  height: 48px;
  content: '';
  border: 30px solid #00c1d4;
}

h3.tvcm_h3:before {
  left: -40px;
  border-left-width: 15px;
  border-left-color: transparent;
}

h3.tvcm_h3:after {
  right: -40px;
  border-right-width: 15px;
  border-right-color: transparent;
}

h3.tvcm_h3 span {
  position: relative;
  display: block;
}

.tvcm_h3_subtitle{
font-size: 20px;
font-weight: bold;
position: relative;
display: inline-block;
line-height: 1;
margin: 0 0 10px;
}

.tvcm_h3_subtitle:before,.tvcm_h3_subtitle:after{
position: absolute;
bottom: 0;
height: 1.2rem;
content: '';
}

.tvcm_h3_subtitle:before{
border-left: solid 3px #444;
left: -16px;
transform: rotate(-30deg);
}

.tvcm_h3_subtitle:after{
border-right: solid 3px #444;
right: -16px;
transform: rotate(30deg);
}

.tvcm_video_wrap{
margin: 0 0 20px;
}

a.tvcm_linkbutton{
text-align: center;
font-size: 32px;
line-height: 1;
display: inline-block;
text-decoration: none;
color: #fff;
background: #ff4d66;
font-weight: bold;
box-shadow: 0 8px 0 #ad1f33;
border-radius: 100px;
padding: 20px 40px;
position: relative;
}

a.tvcm_linkbutton:after{
content: '\f138';
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin: 0 0 0 10px;
}

p.__other_notice{
margin: 40px 0 40px;
padding: 0 20px;
font-size: 24px;
color: #666;
}

.background_gray{
background: #f1f1f1;
padding: 30px;
margin: 30px 0;
}

.background_gray h3{
text-align: center;
margin: 0 0 20px;
}

/*画面幅～750px
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:768px){

.sp{
display: block;
}

body{
font-size: 14px;
}



/*コンテンツ
---------------------------------------------------------------------------*/


#contents{
width: 100%;
margin:0;
overflow: hidden;
}

.inner{
box-sizing: border-box;
width: 100%;
overflow: hidden;
}

.success-msg {
    display: none;
    position: fixed;
    width: 95vw;
    height: 40px;
    line-height: 40px;
    background-color: #2020CC;
	opacity: 0.75;
    color: #fff;
	font-weight: bold;
    top: calc(50vh - 50px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
	z-index: 3;
}


/*_new
---------------------------------------------------------------------------*/

header{
width: 100%;
padding: 10px;
overflow: hidden;
}


header img.logo{
width: 145px;
height: 20px;
}


img.logo-link{
width: 140px;
}
.tablesorter-default{
font-size: 10px;
}

#search.search-result{
margin: 0 0 5px;
}

/*nav
---------------------------------------------------------------------------*/


.hamburger-menu{
width: 38px;
height: 34px
}

.hamburger-menu__line:before{
transform:translateY(-12px);
}

.hamburger-menu__line:after{
transform: translateY(12px);
}

.nav-sp{
width: 50vw;
right: -50vw;
padding: 60px 0px 0px;
}

header .btn-wrap a{
font-size: 12px;
padding: 0 5px 15px 10px;
font-weight: bold;
}

header .btn-wrap a i{
margin: 0 5px 0 0;
}

.header-wrap{
padding: 0px 0px;
}

#question{
padding: 0px 10px;
margin: 0 0 30px;
}

#question h2{
font-size: 20px;
margin: 0 0 10px;
}

#question .title{
font-size: 14px;
padding: 10px 10px 10px 35px;
}

#question .title::before{
left: 10px;
}

#question .title::after{
left: 10px;
}

#question .box{
padding: 10px;
}

#question .box p{
font-size: 12px;
}

#search{
position: relative;
}

section.result #search{
position: relative;
top:0px;
padding: 20px 10px 0px;
}

section.result #search .form-wrap{
margin: 0 0 10px;;
padding: 0;
}

#search .form-wrap{
padding: 0px 10px;
margin: 0 0 20px;
}

#search h2{
font-size: 14px;
border-radius: 10px 10px 0px 0px;
padding: 10px 0px;
}

#search .form-wrap form{
padding: 15px;
border-radius: 0 0 6px 6px;
width: calc(100vw - 40px);
}

#search select{
padding: 10px 10px 10px 150px;
font-size: 14px;
margin: 0 0 10px;
}

#search .select-wrap{
margin: 0 0 10px;
}

#search .select-wrap:last-child{
margin: 0;
}

#search .select-wrap:before{
left: 15px;
font-size: 12px;
top: 20px;
}


.acd-check:checked + .acd-label + .acd-content{
padding: 10px 0;
height: 140px;
}

.acd-label{
margin: 10px auto 0px;
}

.acd-content table td{
font-size: 12px;
padding: 10px;
}

#search input[type="submit"]{
font-size: 14px;
height: 40;
margin: 10px auto 0px;
height: 35px;
}


/*fv
----------------------------------------------------------------------*/

section.fv{
padding: 10px 10px 0px;
margin: 0 0 20px;
}

section.fv.fv_04{
padding: 0 0;
margin: 0  0 0px;
}

img.fv_image{
width: 100%;
margin: 0 0 10px;
}

h3.fv_carousel_h3{
font-size: 14px;
margin: 0 0 10px;
position: relative;
}

h3.fv_carousel_h3:before{
position: absolute;
width: 12px;
height: 14px;
background: url(../images/matching__h3_before.png);
background-size: contain;
background-repeat: no-repeat;
left: -4px;
bottom: 0;
}

h3.fv_carousel_h3:after{
position: absolute;
width: 12px;
height: 14px;
background: url(../images/matching__h3_after.png);
background-size: contain;
background-repeat: no-repeat;
right: -4px;
bottom: 0;
}

.fv_carousel{
  width: 495px;
  height: 45px;
}

img.fv_carousel_img{
margin: 0 5px 0 0;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

img.fv_carousel_img:first-child {
  animation: loop 50s -25s linear infinite;
}

img.fv_carousel_img:last-child {
  animation: loop2 50s linear infinite;
}

a.fv_gender_banner_wrap{
margin: 10px 0 0;
}

img.fv_gender_banner{
}

.fv_wrap{
}

.fv_pr{
font-size: 10px;
right: 5px;
top: 5px;
padding: 5px 5px 3px;
border: solid 1px #fff;
border-radius: 4px;
}

a.gender_page_bannner_wrap{
width: calc(100% - 20px);
margin: 0 auto 20px;
}

img.gender_page_bannner{
}


section.author{
padding: 0 10px;
margin: 0 0 30px;
}

.author_box{
border: solid 1px #777777;
}

h3.author_h3{
font-size: 12px;
padding: 4px 8px;
}

ul.author_wrap{
padding: 25px 5px 5px;
  height: 130px;
}

ul.author_wrap::before {
  height: 50px; /*グラデーションで隠す高さ*/
}

.grad_btn_author {
    bottom: 5px;
    width: 80px;
    padding: 5px 0 6px;
    border-radius: 2px;
    font-size: 11px;
    box-shadow: 0 0 2px rgb(0 0 0 / 30%);
}

.grad_trigger_author {
  display: none; /*チェックボックスは常に非表示*/
}
.grad_trigger_author:checked + .grad_btn_author {
  display: none; /*チェックされていたら、grad-btnを非表示にする*/
}
.grad_trigger_author:checked ~ ul.author_wrap{
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad_trigger_author:checked ~ ul.author_wrap::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}


li.author_item{
border-radius: 6px;
flex-basis: calc((100% - 10px)/3);
padding: 5px;
}

.author_item_header{
margin: 0 0 5px;
}

img.author_item_icon{
width: 40px;
margin: 0 5px 0 0;
}

.author_item_name{
font-size: 14px;
}

p.author_item_description{
font-size: 11px;
}

/*pickup
----------------------------------------------------------------------*/

section.pickup{
padding: 0 10px 20px;
}

h3.pickup_h3,h3.compare_h3{
font-size: 16px;
padding: 8px 30px 10px;
margin: 0 0 10px;
}

h3.pickup_h3:before,h3.compare_h3:before{
width: 20px;
height: 20px;
background: url(../images/matching_pickup_h3_before.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

h3.pickup_h3:after,h3.compare_h3:after{
width: 20px;
height: 20px;
background: url(../images/matching_pickup_h3_after.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.pickup_item{
padding: 10px;
border-radius: 6px;
margin: 0 0 10px;
}

.pickup_item:last-child{
}

.pickup_item_icon_label{
margin: 0 10px 5px 0;
font-size: 12px;
padding: 2px 0 4px;
}

.pickup_item_icon_label:before{
margin: 0 2px 0 0;
}

.pickup_item_icon_label:after{
margin: 0 0 0 2px;
}

.pickup_item_icon_label.label__02{

}

.pickup_item_icon_label.label__03{

}

a.pickup_item_img_wrap{
margin: 0 10px 0 0;
}

img.pickup_item_img{
width: 75px;
}

.pickup_item_spec{
}

.pickup_item_spec_header{
align-items: flex-start;
}

.pickup_item_spec_header__name{
font-size: 20px;
width: auto;
}

.pickup_item_spec_header__value{
font-size: 14px;
min-width: 150px;
justify-content: flex-end;
}

.pickup_item_spec_header__value .label{
padding: 3px 5px 5px;
border-radius: 3px;
margin: 0 5px 0 0;
font-size: 12px;
}

.pickup_item_spec_header__value .score{

}

.pickup_item_spec_header__value .score span.red{
font-size: 14px;
}

p.pickup_item_spec_description{
font-weight: bold;
}

.pickup_item_spec_link_wrap{
}

a.pickup_item_spec_link_cvbutton{
width: calc(60% - 5px);
padding: 10px 0;
border-radius: 6px;
box-shadow: 0 3px 0 #7e001f;
margin: 0 5px 0 0;
}

a.pickup_item_spec_link_linkbutton{
padding: 10px 0;
border-radius: 6px;
box-shadow: 0 3px 0 #002d87;
}

button#copy-url02,button#copy-url02_omiai{
font-size: 14px;
}

.pickup_tab_wrap {
  width: 100%;
}
.pickup_tab_wrap:after {
}
.pickup_tab_label {
padding: 5px 0;
  border-radius: 6px 6px 0px 0px;
}

.pickup_tab_label:not(:last-of-type) {
  margin-right: 2px;
}
.pickup_tab_content {
}
/* アクティブなタブ */
.pickup_tab_switch:checked+.pickup_tab_label {
  font-size: 14px;
  padding: 8px 0;
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
}

.pickup_tab_switch:checked+.pickup_tab_label:nth-of-type(2){
}

.pickup_tab_switch:checked+.pickup_tab_label+.pickup_tab_content {
  padding: 15px;
  border: solid 2px #0099ff;
}

.pickup_tab_switch:checked+.pickup_tab_label+.pickup_tab_content:nth-of-type(2){
  border: solid 2px #FF717A;
}

/* ラジオボタン非表示 */
.pickup_tab_switch {
  display: none;
}

.pickup_tab_content .pickup_item{
padding: 15px 0 15px;
margin: 0;
border-bottom: solid 2px #ccc;
border-radius: 0;
}

.pickup_tab_content .pickup_item:first-child{
padding-top: 0;
}

.pickup_tab_content .pickup_item:last-child{
padding-bottom: 0;
border-bottom: none;
}

.pickup_tab_content .pickup_item img.pickup_item_img{
width: 68px;
}


/*pickup04
----------------------------------------------------------------------*/

section.pickup04{
margin: 0 0 40px;
}

h2.pickup04_h2{
padding: 15px 0;
margin: 0 0 15px;
font-size: 18px;
}

h2.pickup04_h2:before{
bottom: -8px;
border-width: 8px 6px 0 6px;
}

h2.pickup04_h2:after{
width: 20px;
height: 20px;
top: 12px;
right: 3px;
}

h2.pickup04_h2 span.__big{
font-size: 26px;
}

span.pickup04_h2_subtitle{
padding: 8px 15px;
font-size: 14px;
border: solid 3px #B03546;
top: -16px;
}

.pickup04_item_column01{
margin: 0 10px 0 0;
}

.pickup04_item_categorylabel{
}


.pickup04_item_categorylabel:before{
border-width: 40px 40px 0px 0px;
border-radius: 5px 0 0 0;
}

.pickup04_item_categorylabel .__text{
font-size: 10px;
top: 8px;
left: 3px;
}

.pickup04_item_column01 .__appicon{
width: 78px;
margin: 0 0 10px;
}

.pickup04_item_column01 .__linkbutton{
box-shadow: 0 3px 0 #912C3A;
padding: 10px 0;
border-radius: 6px;
font-size: 12px;
}

.pickup04_item_column01 .__linkbutton:after{
width: 11px;
height: 11px;
margin: 0 0 0 4px;
}

.pickup04_item_column01 .__linkbutton:before{
    width: 10px;
    top: -90px;
}



.pickup04_item_column02{
width: calc(100% - 88px);
}

ul.pickup04_item_wrap{
padding: 0 10px;
}

li.pickup04_item{
padding: 10px;
border: solid 1px #ccc;
box-shadow: 0px 1px 2px rgb(0 0 0 / 30%);
border-radius: 6px;
margin: 0 0 10px;
}

.pickup04_item_column02_header{
margin: 0 0 5px;
font-size: 12px;
}

.pickup04_item_column02_header .__servicename{
font-size: 18px;
}

.pickup04_item_column02_header span.__score_label{
padding: 3px 4px;
font-size: 10px;
border-radius: 2px;
margin: 0 5px 0 0;
}

.pickup04_item_column02_header span.__color01{
font-size: 14px;
}

.pickup04_item_copy{
padding: 5px;
border-radius: 3px;
margin: 0 0 10px;
font-size: 12px;
}

.pickup04_item_copy:before{
width: 14px;
height: 14px;
top: -6px;
left: 3px;
}

.swiper {

}

.pickup04_item_swiper_wrapper{
padding: 0 0 10px;
}

.swiper--wrapper {
}

.swiper-slide {

}

.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  margin: 0 0 0 5px !important;
  
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper [class^="swiper-button-"]::after{
    font-size: 15px !important;
    position: absolute;
    top: -20px !important;
    bottom: auto !important;   
}

_::-webkit-full-page-media, _:future, :root .swiper [class^="swiper-button-"]::after{
    font-size: 15px !important;
    position: absolute;
    top: 20px !important;
    bottom: auto !important;   
}

.swiper-slide-next,.swiper-slide-prev{

}

.swiper-pagination,.swiper-pagination02{
bottom: -4px !important;
top: auto !important;
}

.__swiper_item{
padding: 8px;
border: solid 1px #ccc;
border-radius: 3px;
}

img.__swiper_item_icon{
width: 32px;
height: 32px;
margin: 0 5px 0 0;
}

p.__swiper_item_text{
font-size: 11px;
}


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

section.dating-point{
padding: 20px 10px 0;
}

h3.dating-point_h3{
font-size: 16px;
padding: 8px 10px 10px;
margin: 0 0 10px;
}

h2.dating-point_h2{
font-size: 20px;
line-height: 1;
margin: 0 0 10px;
}

img.dating-point_images{
display: block;
margin: 0 auto 10px;
width: calc(100vw - 20px);
}

p.dating-point_description{
width: 310px;
margin: 0 auto 20px;
}

.all_background-pink_arrow:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    z-index: 1;
}

/*combi
----------------------------------------------------------------------*/

section.combi{
padding: 40px 10px 20px;
}

.combi_box{
border-radius: 6px;
padding: 13px 10px 10px;
margin: 0 0 23px;
}

.combi_box.combi_box01{
border: solid 1px #00c1d4;
}

h3.combi_box_h3{
font-size: 14px;
width: 215px;
padding: 5px 0 7px;
border-radius: 100px;
    left: 50%;
	top: -13px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

span.combi_box_h3_span:before{
content: '～';
margin: 0 5px 0 0;
}

span.combi_box_h3_span:after{
content: '～';
margin: 0 0 0 5px;
}

table.combi_box_table{
font-size: 14px;
border-spacing: 0 10px;
}

table.combi_box_table tr td:first-child{
padding: 0 10px 0 0;
width: 175px;
}

table.combi_box_table tr td:nth-child(2){
width: 50px;
padding: 0 10px 0 0 ;
}

table.combi_box_table tr td:nth-child(3){

}

table.combi_box_table tr td:nth-child(4){
width: 21px;
}

table.combi_box_table span.baloon{
display: block;
font-weight: bold;
padding: 12px 0 14px;
border-radius: 3px;
}

table.combi_box_table span.baloon:after{
content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: -8px;
border-left: 8px solid #d5fbff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

table.combi_box_table img.dlicon{
width: 21px;
}

table.combi_box_table img.appicon{
width: 40px;
}

table.combi_box_table a.appicon_wrap{

}

table.combi_box_table a.service_link{
font-size: 18px;
}

.combi_box.combi_box02{
border: solid 1px #ff4d66;
}

.combi_box.combi_box02 h3.combi_box_h3{
background: #ff4d66;
}

.combi_box.combi_box02 table.combi_box_table span.baloon{
background: #ffe0e8;
}

.combi_box.combi_box02 table.combi_box_table span.baloon:after{
border-left: 8px solid #ffe0e8;
}

.combi_box.combi_box03{
border: solid 1px #6699ff;
}

.combi_box.combi_box03 h3.combi_box_h3{
background: #6699ff;
}

.combi_box.combi_box03 table.combi_box_table span.baloon{
background: #e7efff;
}

.combi_box.combi_box03 table.combi_box_table span.baloon:after{
border-left: 8px solid #e7efff;
}

.combi_newbox_wrap_outer{
padding: 10px 0 0;
}


ul.combi_newbox_wrap_inner{
flex-basis: 50%;
padding: 40px 10px 0px 0px;

}

ul.combi_newbox_wrap_inner:nth-child(even){
padding: 40px 0px 0px 10px;
border-left: dotted 2px #E1E1E1;
}

.combi_newbox_h4_wrap{
    left: calc(50% - 5px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

ul.combi_newbox_wrap_inner:nth-child(even) .combi_newbox_h4_wrap{
    left: calc(50% + 5px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

h4.combi_newbox_h4{
font-size: 14px;
padding: 8px 10px;
border-radius: 6px;
}

h4.combi_newbox_h4:after{
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: #d5fbff transparent transparent transparent;
    border-width: 8px 5px 0 5px;
    z-index: 1;

}

ul.combi_newbox_wrap_inner li{
flex-basis: 50%;
}

img.combi_newbox_appicon{
width: 60px;
}

a.combi_newbox_appicon_wrap{
}

a.combi_newbox_txtlink{
font-size: 16px;
line-height: 1.2rem;
}

.combi_box.combi_box02 h4.combi_newbox_h4{
}

.combi_box.combi_box02 h4.combi_newbox_h4:after{
}

.combi_box.combi_box03 h4.combi_newbox_h4{
}

.combi_box.combi_box03 h4.combi_newbox_h4:after{
}


/*ranking
----------------------------------------------------------------------*/

.tab-wrap {
  margin:10px auto 0;
  width: calc(100vw - 20px);
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 10px;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  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: 6px;
  flex: 1;
  line-height: 1.35;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;

}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: linear-gradient(to bottom, #FCA9A9 0%,#fa696a 100%);

}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 5px 0 0;
  opacity: 1;
  transition: .5s opacity;
  background: none;

}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

span.ranking_tab_label_span{
font-size: 18px;
}

section.ranking{
padding: 30px 0 0;
margin: 0 0 20px;
}

section.combi + section.ranking{
padding: 0 0 0;
}

.ranking_h2_wrap{
padding: 10px 0 0;
position: relative;
margin: 0 0 30px;
}

.ranking_h2_wrap:after{
    bottom: -20px;
    border-style: solid;
    border-color: #00c1d4 transparent transparent transparent;
    border-width: 20px calc(100vw / 2) 0 calc(100vw / 2);
}

h2.ranking_h2{
font-size: 18px;
}

h2.ranking_h2:before{
width: 28px;
height: 65px;
left: -28px;
top: -10px;
background-size: contain;
}

h2.ranking_h2:after{
width: 28px;
height: 65px;
background: url(../images/matching_ranking_h2_after.png);
right: -28px;
top: -10px;
background-size: contain;
}


.ranking_h2_subtitle{
padding: 6px 10px 8px;
font-size: 14px;
margin: 0 0 10px;
}

span.ranking_h2_span_black{
font-size: 24px;

}

span.ranking_h2_span_yellow{

}

.ranking_item{
padding: 10px 10px 14px;
border-radius: 6px;
margin: 0 0 20px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}


.ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon04-05.png);
content: '';
background-size: cover;
width: 36px;
height: 42px;
top: -5px;
left: 10px;
font-size: 22px;
padding: 5px 0 0;
}

.ranking_item.ranking_item__rank01 .ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon01.png);
background-size: cover;
}

.ranking_item.ranking_item__rank02 .ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon02.png);
background-size: cover;
}

.ranking_item.ranking_item__rank03 .ranking_item_header_rank{
background: url(../images/kg_ranking-item_rank-icon03.png);
background-size: cover;
}

.ranking_item_header{
display: flex;
justify-content: space-between;
border-bottom: solid 2px #ccc;
padding: 5px 0 10px;
margin: 0 0 10px;

}

h3.ranking_item_header_h3{
padding: 0 0 0 40px;
font-size: 20px;
line-height: 1;
}

.ranking_item_header_score{
font-size: 14px;
}


.ranking_item_header_score span.color-gold{
}

.ranking_item_header_score span.color-gray{
}

.ranking_item_header_score span.color-score{
}

.ranking_item_maincopy{
font-size: 18px;
margin: 0 0 10px;
}

img.ranking_item_banner{
width: 100%;
}

a.ranking_item_banner_wrap{
margin: 0 0 10px;
}

.ranking_item_point-box{
background:  #ffe0e8;
padding: 30px 10px 10px;
margin: 0 0 10px;
}

.ranking_item_point-box_h4_wrap{
}

h4.ranking_item_point-box_h4{
padding: 5px 0px 6px 8px;
height: 23px;
}

h4.ranking_item_point-box_h4:after{
top:0;
right: -16px;
width: 0;
height: 0;
border-style: solid;
border-width: 23px 16px 0 0;
border-color: #ff4d66 transparent transparent transparent;
}


ul.ranking_item_point-box_ul{
padding: 0 0 0 16px;
}


ul.ranking_item_point-box_ul li{
font-size: 14px;
margin: 0 0 5px;
}

ul.ranking_item_point-box_ul li:last-child{
}

ul.ranking_item_point-box_ul li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: -16px;
	color: #ff4d66;
}

.ranking_item_point-box.box02{

}

.ranking_item_point-box.box02 h4.ranking_item_point-box_h4{

}

.ranking_item_point-box.box02 h4.ranking_item_point-box_h4:after{

}

h3.ranking_item_review__h3{
border-radius: 10px 10px 0 0;
    background: #00c1d4;
    text-align: center;
    color: #fff;
    line-height: 1;
    padding: 5px 0;
	font-size: 14px;
}

h3.ranking_item_review__h3 i{
margin: 0 5px 0 0;
color: #B6EDF2;
}

li.ranking_item_review{
}

ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child){
margin: 0 0 10px;
padding: 0 0 10px;
}

ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child):after{
height: 1px;
}

.ranking_item_review__profile{
padding: 0 0 0 42px;
position: relative;
font-size: 14px;
}

.ranking_item_review__profile:before{
width: 32px;
height: 32px;
background: url(../images/kg_ranking_item_review-icon.png);
left: 0;
background-repeat: no-repeat;
background-size: contain;
}

.ranking_item_review__profile.male:before{
background: url(../images/kg_ranking_item_review-icon_male.png);
background-repeat: no-repeat;
background-size: contain;
}

.ranking_item_review__profile_title{

}

.ranking_item_review__profile_detail{

}

._detail_star{
margin: 0 10px 0 0;
}

span._detail_star_gold{
color: #ffcc00;
}

span._detail_star_gray{
color: #ccc;
}

._detail_age-occuaption{
font-size: 12px;
}

p.ranking_item_review__description{
font-size: 12px;
}

.ranking_item_review__box{
margin: 0 0 10px;
}

.grad-btn {
  z-index: 2;
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    width: 100px;
    margin: auto;
    padding: 5px 0;
    border-radius: 4px;
    background: #FF686F;
    color: #fff;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	font-weight: bold;
}

ul.ranking_item_review__wrap{
padding: 10px;
border: solid 2px #00c1d4;
  position: relative;
  overflow: hidden;
  height: 120px;
}

ul.ranking_item_review__wrap::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  content: "";
  z-index: 1;
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked + .grad-btn {
  display: none; /*チェックされていたら、grad-btnを非表示にする*/
}
.grad-trigger:checked ~ ul.ranking_item_review__wrap{
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ ul.ranking_item_review__wrap::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}

a.ranking_item_cvbutton{
font-size: 18px;
background: #ff4d66;
font-weight: bold;
box-shadow: 0 4px 0 #ad1f33;
border-radius: 6px;
padding: 10px 0;
}

a.ranking_item_cvbutton:before{
	right: 10px;

}

.ranking_item_campaign_box{
padding: 20px 10px 10px;
margin: 20px 0 10px;
border-radius: 6px;
}

h4.ranking_item_campaign_h4{
padding: 4px 10px 6px;
font-size: 14px;
top: -12px;
}

p.ranking_item_campaign_text{
font-size: 12px;
}

p.ranking_item_campaign_text i{
margin: 0 2px;
}


span.ranking_item_campaign_text_span{
font-size: 16px;
color: #ff4d66;
text-shadow: 1px 1px 0 #fff,1px 0px 0 #fff,0px 1px 0 #fff,0px -1px 0 #fff,-1px 0px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}

.ranking_item_campaign_code_wrap{
margin: 5px 0 0;
}

.ranking_item_campaign_code_text{
padding: 0 5px;
border: solid 1px #cccccc;
border-radius: 4px;
margin:  3px 5px 0 0;
}

button#copy-url,button#copy-url_omiai{
		background: #07aa70;
		box-shadow: 0 3px 0 #046140;
		padding: 6px 6px 6px 20px;
		border-radius: 4px;
		font-weight: bold;
		font-size: 12px;

}

button#copy-url:before,button#copy-url_omiai:before{
position: absolute;
    content: '\f0c5';
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
	left: 6px;
	color: #fff;
}


p.ranking_item_notification{
margin: 9px 0 0;
font-size: 12px;
}



/*category
----------------------------------------------------------------------*/

section.category{
margin: 0 0 30px;
padding: 20px 10px 10px;
}


h2.category_h2 {
    font-size: 16px;
    padding: 8px 10px 10px;
    margin: 0 0 10px;
}


h3.category_h3{
padding: 0 0 0 12px;
margin: 0 0 10px;
font-size: 20px;
}

h3.category_h3:before{
height: 20px;
width: 8px;
border-radius: 2px;
left: 0px;
}

.category_wrap{
display: flex;
flex-wrap: wrap;
margin: 0 0 20px;
}

a.category_item{
display: block;
flex-basis: calc(50% - 5px);
padding: 20px 0px 20px 10px;
border-bottom: solid 4px #ff4d66;
font-size: 16px;
}

a.category_item:after{
right: 10px;
}

a.category_item:nth-child(odd){
margin: 0 5px 0 0;
}

a.category_item:nth-child(even){
margin: 0 0 0 5px;
}

a.category_item:not(:first-child,:nth-child(2)){
margin-top: 10px;
}

/*アコーディオンタイトル*/
.category_search_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:16px;
    font-weight: normal;
    padding: 20px 10px 20px 40px;
    transition: all .5s ease;
	background: #ffe0e8;
	font-weight: bold;
	border-radius: 6px;
}

/*アイコンの＋と×*/
.category_search_title::before,
.category_search_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.category_search_title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.category_search_title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.category_search_title.close::before{
  transform: rotate(45deg);
}

.category_search_title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.category_search_box {
    display: none;/*はじめは非表示*/
    background: #ffe0e8;
  margin: 10px 0 0;
    padding: 10px;
	border-radius: 6px;
}

.category_search_box #search .form-wrap{
padding: 0px;
margin: 0;
}

#question .box p{
font-size: 20px;
}

.category_search_box #search .form-wrap form{
width: 100%;
box-shadow:none;
border-radius: 6px;
}

a.category_gender_banner_wrap{
margin: 0 0 20px;
}

img.category_gender_banner{
}

/*recommend
----------------------------------------------------------------------*/

section.recommend{
width: 100%;
max-width: 2000px;
margin: 0 0 40px;
padding: 0px 10px 0px;
position: relative;
}

.recommend_wrap{
border: solid 1px #FF686F;
padding: 30px 20px 20px;
margin: 20px 0 0;
}

h2.recommend_h2{
font-size: 16px;
position: absolute;
color: #FF686F;
top:-20px;
left: -7px;
background: #fff;
line-height: 1;
padding:  10px;
}

h2.recommend_h2 i{
margin: 0 3px 0 0;
font-size: 24px;
}

span.recommend_h2_big{
font-weight: bold;
font-size: 20px;
}

.reccomend_item_balloon{
background: #FFEEEF;
font-weight: bold;
padding: 5px 0px;
text-align: center;
font-size: 16px;
margin: 0 0 15px;
}

img.reccomend_item_logo{
display: block;
width: 80%;
margin: 0 auto 15px;
}

p.reccomend_item_description{
  background-color: #fff; /* 背景色 */
  background-image: linear-gradient(180deg, #f5f5f5 1px, transparent 1px); /* 罫線の色と太さ */
  background-size: 100% 2.0em; /* 行の高さ */
  line-height: 2.0em; /* 文字の高さ */
  padding-bottom: 4px; /* 最終行の下にも罫線を引く */
  font-size: 14px;
}

section.recommend .reccomend_item:first-child{
padding: 0 0 20px;
border-bottom: solid 2px #f5f5f5;
}

section.recommend .reccomend_item:last-child{
padding: 20px 0 0px;
}

a.reccomend_item_cvbutton{
margin: 15px auto 0;
padding: 15px 0px;
width: 100%;
text-align: center;
background: rgb(181,181,181);
background: linear-gradient(47deg, rgba(65,207,145,1) 0%, rgba(65,154,115,1) 100%);
display: block;
text-decoration: none;
color: #fff;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
border: solid 1px rgba(65,154,115,1);
}


/*result
----------------------------------------------------------------------*/

.result_header01{
padding: 0 10px;
margin: 0 0 10px;
}

.result_header01_counter{
font-size: 16px;
}

.result_header01_change-button{
padding: 10px 5px;
font-size: 14px;
}


.result_header02_wrap{
padding: 10px 10px 10px;
}

.result_header02{
margin: 0 0 10px;
}

h3.result_header02_h3{
font-size: 14px;
margin: 0 0 10px;
}

ul.result_header02_settings_wrap{
padding: 10px;
}

ul.result_header02_settings_wrap li{
font-size: 12px;
border: solid 1px #00c1d4;
padding: 5px 5px 5px 15px;
margin: 0 5px 0 0;
}

#submit_select{
    margin: 0 10px 20px auto;
    font-size: 14px;
    width: 160px;
    height: 36px;
    line-height: 30px;
	border-radius: 5px;
}


.result_item02{
width: calc(100vw - 20px);
margin: 0 auto 10px;
padding: 10px;
border: solid 1px #ff4d66;
border-radius: 6px;
}

.result_item02:last-child{
margin: 0 auto 20px;
}

.result_item02_header{
margin: 0 0 10px;
}

.result_item02_header_left{
margin: 0 10px 0 0 ;
}

a.result_item02_header_left_appicon_wrap{
}

img.result_item02_header_left_appicon{
width: 75px;
}

a.result_item02_header_left_textlink{
font-size: 14px;
}

.result_item02_header_right{
}

ul.result_item02_header_right_point{
}

ul.result_item02_header_right_point li{
padding: 5px 0 5px 18px;
border-top: solid 1px #eee;
}

ul.result_item02_header_right_point li:last-child{
border-bottom: solid 1px #eee;
}

ul.result_item02_header_right_point li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	color: #ff4d66;
	left: 0px;
}

table.result_item02_table{
font-size: 12px;
border-spacing: 4px 2px;
margin: 0 0 10px;

}

table.result_item02_table th{
padding: 5px 0px;
font-size: 12px;
}

table.result_item02_table td{
padding: 10px 0;
}

span.result_item02_table_label_amount{

}


table.result_item02_table tr td:nth-child(3){
line-height: 1.8;
}

.result_item02_table_inner{

}


span.result_item02_table_span_male,span.result_item02_table_span_female{
    padding: 0px 5px 2px;
    border-radius: 4px;
    color: #fff;
    margin: 0 5px 0 0;
}

span.result_item02_table_span_female{
}

a.result_item02_dlbutton{
    font-size: 16px;
    box-shadow: 0 4px 0 #ad1f33;
    border-radius: 6px;
    padding: 10px 0;
	margin: 0 auto 0;
	max-width: 260px;
}



/*about
---------------------------------------------------------------------------*/

section.about{
width: 100%;
padding: 0 20px;
}

h2.about_h2{
font-size: 20px;
padding: 0 0 0px;
margin: 0 0 40px;
}

h2.about_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 2px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #FF9196;
}

table.about_table{
width: 940px;
border-collapse: collapse;
text-align: left;
margin: 0 auto 60px;
}

table.about_table{
width: 100%;
font-size: 14px;
margin: 0 auto 30px;
}

table.about_table tr{
border-bottom: dotted 1px #ccc;
}

table.about_table tr:first-child{
border-top: dotted 1px #ccc;
}

table.about_table th,table.about_table td{
padding: 15px 0px;
}

h4.about_h4{
font-size: 16px;
border-left: solid 4px #888;
padding: 0 0 0 6px;
margin: 0 0 10px;
}

p.about_p{
margin: 0 0 15px;
}

p.about_p:last-child{
margin: 0 0 30px;
}

/*survey
---------------------------------------------------------------------------*/

section.survey{
width: 100%;
padding: 0 20px;
}

h2.survey_h2{
font-size: 20px;
padding: 0 0 0px;
margin: 0 0 40px;
}

h2.survey_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 2px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #307fc0;
}

h3.survey_h3{
font-size: 16px;
border-left: solid 6px #307fc0;
border-bottom: solid 1px #307fc0;
padding: 0 0 6px 6px;
margin: 0 0 10px;
}

p.survey_p{
margin: 0 0 15px;
}

p.survey_p:last-child{
margin: 0 0 30px;
}

/*section.compare
----------------------------------------------------------------------*/

section.compare{
padding: 20px 10px 0;
margin: 0 0 20px;
}

h3.compare_h3{

}

table.compare_table{
font-size: 14px;
}

table.compare_table th,table.compare_table td{
}

table.compare_table th{
border-top: solid 4px #ff4d66;
padding: 5px 0;
}

table.compare_table td{
padding: 10px 0;
}

table.compare_table tr td:nth-child(2),table.compare_table tr td:nth-child(3){
width: 70px;
}

table.compare_table tr td:nth-child(4){
text-align: left;
padding: 10px 0 10px 5px;
line-height: 1.8;
font-size: 12px;
}

a.compare_table_appicon_wrap{
display: block;
margin: 0 0 0;
}

img.compare_table_appicon{
width: 50px;
}

.compare_table_name{
font-weight: bold;
margin: 0 0 5px;
font-size: 12px;
}

a.compare_table_dlbutton{
width: calc(100% - 10px);
box-shadow: 0 2px 0 #ad1f33;
border-radius: 6px;
margin: 0 auto 0;
padding: 5px 0 7px;
font-weight: bold;
font-size: 12px;
}


table.compare_table span.label_male,table.compare_table span.label_female{
padding: 0px 5px;
background: #0099ff;
border-radius: 4px;
color: #fff;
margin: 0 4px 0 0;
}

table.compare_table span.label_female{
background: #ff6699;
}

span.compare_table_amount_label{
font-size: 12px;
}

p.compare_notification{
margin: 5px 0 0;
font-size: 12px;
color: #666;
}

.tab-wrap02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
}
.tab-wrap02:after {
  }

.tab-label02 {
  color: #999;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 5px .5em 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  flex: 1;
}

.tab-label02 span.tab-label02_span01{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-label02 span.tab-label02_span02{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-label02 span.tab-label02_span03{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-label02:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content02 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */

.tab-switch02:checked+.tab-label02 {
  background: #ff4d66;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  color: #fff;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span01{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span02{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span03{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-switch02:checked+.tab-label02+.tab-content02 {
  height: auto;
  overflow: auto;
  padding: 0px;
  opacity: 1;
  transition: .5s opacity;
  background: #fff;

}
/* ラジオボタン非表示 */
.tab-switch02 {
  display: none;
}


/*feature-ouen
---------------------------------------------------------------------------*/

section.feature-ouen{
padding: 0 10px;
margin: 0 0 20px;
}


li.feature-ouen_point{
position: relative;
padding: 25px 80px 10px 10px;
border-radius: 10px;
margin: 0 0 25px;
min-height: 80px;
}

li.feature-ouen_point:first-child{
margin: 25px 0 25px;
}

li.feature-ouen_point:last-child{
margin: 0 0 0;
}

h4.feature-ouen_point_h4{
padding: 8px 10px;
top: -15px;
}

img.feature-ouen_point_image{
width: 60px;
right: 10px;
top: 20px;
}

h3.feature-ouen_point_h3{
font-size: 20px;
}


/*notice
---------------------------------------------------------------------------*/

section.notice{
margin: 0 0 30px;
padding: 0 10px;
}

.notice_inner{
padding: 10px;
border-radius: 6px;
}

h3.notice_h3{
font-size: 14px;
margin: 0 0 5px;
}

p.notice_description{
font-size: 12px;
}

a.notice_description_link{
color: #444;
font-weight: bold;
}

a.notice_description_link:after{
content: '\f101';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 10px;
}

/*post
---------------------------------------------------------------------------*/

section.post{
padding: 10px;
margin: 10px;
border-radius: 6px;
}

h2.post_h2{
padding: 10px;
font-size: 20px;
border-radius: 6px;
text-shadow: 0 0 1px #ff4d66;
}

span.post_h2_subtitle{
font-size: 10px;
}

.post_date{
margin: 0 0 10px;
}

.post_date:before{
margin: 0 5px 0 0;
}

p.post_description{
margin: 0 0 20px;
font-size: 14px;
}

h3.post_h3{
border-left: solid 6px #ff4d66;
padding: 0 0 0 8px;
margin: 0 0 10px;
font-size: 16px;
}

h2.post_h2.post_h2_wide{
padding: 15px 10px;
}

ul.post_list{
padding: 20px 0 0 15px;
}

ul.post_list li{
}

ul.post_list li:before{
    left: -12px;
}

a.post_list_item_wrap{
font-size: 15px;
margin: 0 0 15px;
}

/*column_menu
---------------------------------------------------------------------------*/

section.column_menu{
padding: 0 10px;
margin: 0 0 40px;
}

h2.category_h2.category_h2_column{
margin-top: 20px;
}

ul.column_menu_list{
    border-radius: 10px 10px 0px 0px;
    border: solid 1px #ccc;
}
ul.column_menu_list a{
    font-size: 14px;
}

ul.column_menu_list a:not(:last-child):before{
    font-size: 10px;
    left: 10px;
}

ul.column_menu_list a:not(:last-child):after{
    width: calc(100% - 20px);
    height: 1px;
    left: 10px;
}

ul.column_menu_list li{
padding: 15px 10px 15px 20px;
}

ul.column_menu_list a:last-child{
    font-size: 12px;
}

ul.column_menu_list a:last-child li{
    padding: 5px 5px;
}

ul.column_menu_list a:last-child li i{
}

/*campaign
---------------------------------------------------------------------------*/

section.campaign{
padding: 0 10px;
margin: 0 0 40px;
}

h2.campaign_h2{
font-size: 20px;
margin: 0 0 10px;
}

h2.campaign_h2:before,h2.campaign_h2:after{
height: 18px;
}

h2.campaign_h2:before{
border-left: solid 2px #ff4d66;
left: -10px;
}

h2.campaign_h2:after{
border-right: solid 2px #ff4d66;
right: -10px;
}

img.campaign_banner{

}

a.campaign_banner_wrap{

}


/*tvcm
---------------------------------------------------------------------------*/

section.tvcm{
padding: 10px 10px 14px;
border-radius: 10px;
width: calc(100% - 20px);
margin: 40px auto 0;
}

h3.tvcm_h3 {
font-size: 16px;
  line-height: 32px;
  height: 32px;
  margin: 0 auto 10px;
  padding: 0 2rem;
  width: 200px;
}

h3.tvcm_h3:before,
h3.tvcm_h3:after {
  height: 24px;
  content: '';
  border: 16px solid #00c1d4;
}

h3.tvcm_h3:before {
  left: -20px;
  border-left-width: 8px;
  border-left-color: transparent;
}

h3.tvcm_h3:after {
  right: -20px;
  border-right-width: 8px;
  border-right-color: transparent;
}

h3.tvcm_h3 span {
}

.tvcm_h3_subtitle{
font-size: 10px;
margin: 0 0 5px;
}

.tvcm_h3_subtitle:before,.tvcm_h3_subtitle:after{
height: 0.8rem;
bottom: 0px;
}

.tvcm_h3_subtitle:before{
border-left: solid 1px #444;
left: -8px;
}

.tvcm_h3_subtitle:after{
border-right: solid 1px #444;
right: -8px;
}

.tvcm_video_wrap{
margin: 0 0 10px;
}

a.tvcm_linkbutton{
font-size: 16px;
box-shadow: 0 4px 0 #ad1f33;
padding: 10px 20px;
}

a.tvcm_linkbutton:after{
margin: 0 0 0 5px;
}

p.__other_notice{
margin: 20px 0 20px;
padding: 0 10px;
font-size: 12px;
}

.pc{
display: none;
}

}
