@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
	color: #444;	/*全体の文字色*/
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 28px;	/*文字サイズ*/
	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 {
}

.success-msg {
    display: none;
    position: fixed;
    width: 460px;
    height: 60px;
    line-height: 60px;
    background-color: #1F35B6;
	opacity: 0.80;
    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;
}




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

.align-center{
text-align: center;
}

.align-right{
text-align: right;
}



span.star_gold{
color: #ffd700;
}

span.star_gray{
color: #999;
}

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


.sp{
display: none;
}

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

header{
width: 100%;
}

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

}

.header-wrap img.logo{
position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

header .btn-wrap {
    display: flex;
}

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

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

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


.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;
  }
  
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #3f98ef;
  opacity: 0.8;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -15px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.nav_li_label{
margin: 0 0 10px;
font-size: 21px;
}

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

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

img.fv_image{
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;
}

.fv_wrap.fv_wrap_index02 .fv_pr{
background: rgba(245,245,245,0.8);
color: #444;
border: solid 2px #666;
}

.fv_pr.fv_pr_lefttop{
right: auto;
left: 10px;
}

.fv_pr.fv_pr_bottom{
top: auto;
bottom: 10px;
}

.fv_year{
position: absolute;
line-height: 1;
font-size: 24px;
font-weight: bold;
top: 52px;
left: 126px;
text-align: center;
font-family: "Noto Sans JP", sans-serif;
color: #555;
}

.fv_year.fv_year_centerbottom{
top: 378px;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

/*commmon
----------------------------------------------------------------------*/

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

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

img.common_women_banner{
width: 100%;
}

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

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

}

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

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

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


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

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

h2.pickup_h2{
    display: block;
    width: calc(100% - 120px);
    position: relative;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 32px;
    background: #444;
    color: #FFF;
    box-sizing: border-box;
    
    margin: 0 auto 20px;
}

h2.pickup_h2:before,h2.pickup_h2:after{
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}
h2.pickup_h2:before{
    top: 0;
    left: 0;
    border-width: 30px 0px 30px 15px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
}

h2.pickup_h2:after{
top: 0;
    right: 0;
    border-width: 30px 15px 30px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}

h2.pickup_h2.__pink{
background: #fd5392;
text-shadow: 0 1px 1px #B43B68;
}

ul.pickup_item_wrap li{
padding: 20px 20px 20px 74px;
position: relative;
background: #f7f7f7;
border-radius: 10px;
border: solid 2px #ccc;
}

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

.pickup_item_lael{
position: absolute;
background: #ff3366;
color: #fff;
line-height: 1.2;
font-weight: bold;
font-size: 24px;
padding: 18px 6px;
border-radius: 100px;
left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.pickup_item_lael.__label02{
background: #66cc99;
}

.pickup_item_lael.__label03{
background: #6699ff;
}

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

img.pickup_item_logo{
width: 100px;
}

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

.pickup_item_spec_title{
display: flex;
justify-content: space-between;
align-items: baseline;
}

.pickup_item_spec_title .__name{
font-size: 32px;
font-weight: bold;
flex: 1;
line-height: 1.2;
}

.pickup_item_spec_title .__score{
font-size: 24px;
width: 182px;
}

.pickup_item_spec_title span.__value{
font-family: 'Anton', sans-serif, cursive;
    color: #fd5392;
}

.pickup_item_spec{
margin: 0 20px 0 0;
flex: 1;
}

p.pickup_item_descriptin{
font-size: 24px;
line-height: 1.35;
font-weight: bold;
}

a.pickup_item_linkbutton{
display: block;
background: #22C77F;
box-shadow: 0 8px 0 #419a73;
width: 100px;
text-decoration: none;
text-align: center;
font-weight: bold;
color: #fff;
border-radius: 10px;
line-height: 1.2;
padding: 10px 0;
position: relative;
overflow: hidden;
animation: btn_animation 1.8s infinite;
}

@keyframes btn_animation {
    0% {
        box-shadow: 0 8px 0 #419a73;
        top: 0px;
    }
    10% {
        box-shadow: 0 0 0 #419a73;
        top: 8px;
    }
    20% {
        box-shadow: 0 8px 0 #419a73;
        top: 0px;
    }
    30% {
        box-shadow: 0 0 0 #419a73;
        top: 8px;
    }
    40% {
        box-shadow: 0 8px 0 #419a73;
        top: 0px;
    }
}

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_item_linkbutton_wrap{
position: relative;
margin: 0 20px 0 0;
}

.pickup_item_linkbutton_wrap a.pickup_item_logo_link{
margin: 0;
}

.pickup_item_linkbutton_baloon_wrap{
position: absolute;
top: -52px;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

.pickup_item_linkbutton_baloon{
background: #ffffcc;
padding: 2px 8px 6px;
white-space: nowrap;
font-size: 20px;
text-align: center;
line-height: 1.0;
border: solid 2px #f86f64;
border-radius: 6px;
position: relative;
}

.pickup_item_linkbutton_baloon:before{
content: '';
position: absolute;
display: block;
width: 0;
height: 0;
bottom: -15px;
border-top: 14px solid #f86f64;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

.pickup_item_linkbutton_baloon:after{
content: '';
position: absolute;
display: block;
width: 0;
height: 0;
bottom: -13px;
border-top: 14px solid #ffffcc;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

.pickup_item_linkbutton_baloon span.__color01{
color: #fd5392;
font-weight: bold;
font-size: 24px;
}

ul.pickup_item_wrap li.pickup_item_ver02{
padding:  30px 20px 20px 74px;
margin: 0 0 24px;
}

ul.pickup_item_wrap li.pickup_item_ver02:first-child{
margin: 30px 0 24px;
}

ul.pickup_item_wrap li.pickup_item_ver02:first-child strong{
color: #222;
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(50%, #FAF19B));
background: linear-gradient(transparent 60%, #FAF19B 50%);
}

.pickup_tab_wrap {
  display: flex;
  flex-wrap: wrap;
  margin:0px auto 0;
  width: 100%;
  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: 15px 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 0;
  flex: 1;
  line-height: 1.35;
}

.pickup_tab_label i{
margin: 0 0 0 8px;
}

.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;
  color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
}

.pickup_tab_switch:checked+.pickup_tab_label: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: #0099ff transparent transparent transparent;
    border-width: 15px 10px 0 10px;
    z-index: 1;
}

.pickup_tab_switch:checked+.pickup_tab_label:nth-of-type(2):after{
border-color: #FF717A transparent transparent transparent;
}

.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: 25px 20px 20px;
  background: #F0F0F0;
}


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

.pickup_tab_content ul.pickup_item_wrap li{
background: #fff;
}

/*lead
----------------------------------------------------------------------*/

section.lead{
}

h1.lead_h1{
background: #f5f5f5;
padding: 20px;
font-size: 36px;
margin: 0 0 20px;
}

h1.lead_h1 span.pink{
color: #ff3366;
}

.lead_date{
text-align: right;
color: #888;
margin: 0 0 20px;
font-size: 24px;
}

.contents_lead{
padding: 0 20px;
}

p.lead_description{
margin: 0 0 40px;
}

p.lead_description span.pink{
color: #ff3366;
font-weight: bold;
}

p.lead_description span.bg_yellow{
background: #ffef80;
font-weight: bold;
}

p.lead_description span.__big{
font-size: 120%;
}

.lead_author{
display: flex;
padding: 20px;
border-radius: 6px;
background: #f5f5f5;
border: solid 1px #ccc;
margin: 0 0 40px;
}

img.lead_author_image{
width: 140px;
height: 140px;
border-radius: 100px;
border: solid 4px #fff;
margin: 0 20px 0 0;
}

.lead_author_text_name{
font-weight: bold;
}

p.lead_author_text_description{
font-size: 24px;
}

.lead_menu{
display: flex;
justify-content: space-between;
margin: 0 0 40px;
}

a.lead_menu_item{
display: block;
flex-basis: calc((100% - 32px) / 3);
background-color: #f8f8f8;
text-align: center;
text-decoration: none;
color: #2f5290;
padding: 10px 10px 46px;
position: relative;
box-shadow:  0px 2px 4px rgb(0 0 0 / 30%);
border: solid 1px #fd5392;
}

a.lead_menu_item:nth-child(2){
border: solid 1px #4EBFA5;
}

a.lead_menu_item:nth-child(3){
border: solid 1px #518BFF;
}

a.lead_menu_item:before{
position: absolute;
content: '';
display: inline-block;
width: 48px;
height: 48px;
background-image: url(../images/match_lead_menu_number01.png);
top: 0;
left: 0;
}

a.lead_menu_item:nth-child(2):before{
background-image: url(../images/match_lead_menu_number02.png);
}

a.lead_menu_item:nth-child(3):before{
background-image: url(../images/match_lead_menu_number03.png);
}


.lead_menu_item__title{
font-weight: bold;
font-size: 32px;
margin: 0 0 10px;
}

.lead_menu_item__linktext{
position: absolute;
font-size: 20px;
font-weight: bold;
line-height: 1;
right: 5px;
bottom: 5px;
}

.lead_menu_item__linktext i{
margin: 0 0 0 4px;;
}

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

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

}

h2.lead_h2{
background: linear-gradient(to bottom , #fd5392 , #f86f64);
color: #fff;
font-size: 36px;
text-align: center;
padding: 20px 0;
margin: 0 0 20px;
}

.lead_comment{
display: flex;
margin: 0 0 40px;
}

img.lead_comment_image{
margin: 0 20px 0 0;
width: 100px;
height: 100px;
border-radius: 100px;
}

p.lead_comment_text{
background: #f5f5f5;
padding: 20px;
border-radius: 20px;
font-size: 24px;
position: relative;
}

p.lead_comment_text:before {
content: '';
position: absolute;
display: block;
width: 0;
height: 0;
left: -20px;
top: 35px;
border-right: 20px solid #f5f5f5;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
}

img.lead_description_image_full{
margin: 0 0 40px;
}

/*pair
----------------------------------------------------------------------*/

.pair_contents{
padding: 0 20px;
margin: 0 0 40px;
}

table.pair_table{
width: 100%;
border-collapse: collapse;
margin: 0 0 20px;
}

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

table.pair_table th{
padding: 15px 0;
font-size: 28px;
}

table.pair_table tr:first-child th{
background: linear-gradient(to bottom , #fd5392 , #f86f64);
color: #fff;
}

table.pair_table tr:nth-child(2) th{
background: #FEF0F5;
}

table.pair_table.table02 tr:first-child th{
background: linear-gradient(to bottom , #4EBFA5 , #76D476);
}

table.pair_table.table02 tr:nth-child(2) th{
background: #E1F4F0;
}

table.pair_table.table03 tr:first-child th{
background: linear-gradient(to bottom , #518BFF , #51C9FF);
}

table.pair_table.table03 tr:nth-child(2) th{
background: #E2EBFF;
}


table.pair_table td{
width: 25%;
text-align: center;
padding: 20px 10px;
}

table.pair_table tr:nth-child(3) td{
border-bottom: none;
}

table.pair_table tr:nth-child(4) td{
border-top: none;
}

a.pair_table_icon_wrap{

}

img.pair_table_icon{
width: 120px;
margin: 0 0 10px;
}

a.pair_table_textlink{
font-size: 24px;
color: #666;
font-weight: bold;
}

.pair_tab_notification{
text-align: center;
font-weight: bold;
margin: 0 0 20px;
}

.pair_tab_notification:before,.pair_tab_notification:after{
content: '\f063';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
margin: 0 10px;
}

.tab02-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 0;
  align-items: flex-end;
  
}
.tab02-wrap:after {
  content: '';
  width: 100%;
  display: block;
  order: -1;
}
.tab02-label {
    color: #fff;
    background: #ff3366;;
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    white-space: nowrap;
    text-align: center;
    padding: 15px 0;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    flex: 1;
	font-size: 24px;
}

.tab02-label.__label02{
background: #66cc99;
}

.tab02-label.__label03{
background: #6699ff;
}

.tab02-label:not(:last-of-type) {
  margin: 0 20px 0 0;
}

.tab02-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;

}
/* アクティブなタブ */
.tab02-switch:checked+.tab02-label {
padding: 30px 0;
}
.tab02-switch:checked+.tab02-label+.tab02-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  background: none;
  padding: 20px 0 0;
}
/* ラジオボタン非表示 */
.tab02-switch {
  display: none;
}


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

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


h2.ranking_h2{
position: relative;
background: linear-gradient(to bottom , #fd5392 , #f86f64);
color: #fff;
line-height: 1;
padding: 45px 0;
text-align: center;
margin: 0 0 20px;
font-size: 36px;
}

h2.ranking_h2:before,h2.ranking_h2:after{
position: absolute;
display: inline-block;
content: '';
background-size: contain;
width: 42px;
height: 96px;
}

h2.ranking_h2:before{
background: url(../images/match_ranking_h2_icon01.png);
left: 10px;
bottom: 10px;
}

h2.ranking_h2:after{
background: url(../images/match_ranking_h2_icon02.png);
right: 10px;
bottom: 10px;
}

h2.ranking_h2.ranking_h2_02{
background: linear-gradient(to bottom , #4EBFA5 , #76D476);
margin: 0 0 40px;
}

h2.ranking_h2.ranking_h2_03{
background: linear-gradient(to bottom , #518BFF , #51C9FF);
margin: 0 0 40px;
}


.ranking_h2_date{
position: absolute;
line-height: 1;
padding: 5px 20px 10px;
border-radius: 100px;
background: #fff;
color: #888;
border: solid 4px #fd5392;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
top: -24px;
font-size: 20px;
}

h2.ranking_h2.ranking_h2_02 .ranking_h2_date{
border: solid 4px #4EBFA5;
}

h2.ranking_h2.ranking_h2_02 .ranking_h2_date span.color01{
color: #4EBFA5;
}

h2.ranking_h2.ranking_h2_03 .ranking_h2_date{
border: solid 4px #518BFF;
}

h2.ranking_h2.ranking_h2_03 .ranking_h2_date span.color01{
color: #518BFF;
}

.ranking_h2_date span.color01{
font-size: 28px;
color: #fd5392;
}

.ranking_tab_subtitle{
font-weight: bold;
text-align: center;
margin: 0 0 20px;
}

.ranking_tab_subtitle i{
color:#ffcc00;
margin: 0 10px 0;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 0;
  
}
.tab-wrap:after {
  content: '';
  width: 100%;
  
  display: block;
  order: -1;
}
.tab-label {
    color: #999;
    background: #eee;;
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    white-space: nowrap;
    text-align: center;
    padding: 1rem;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
	font-size: 24px;

}
.tab-label:not(:last-of-type) {
  margin: 0 10px 0 20px;
}

.tab-label:last-of-type {
  margin: 0 20px 0 10px;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;

}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
background: #FEF0F5;
border: solid 2px #fd5392;
border-bottom: none;
color: #fd5392;
text-shadow: none;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  background: none;
  border-top: solid 2px #fd5392;
  padding: 40px 0 0;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.ranking_item{
border-top: solid 4px #fedbe8;
overflow: visible;
margin: 0 0 60px;
}

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

.rank01.ranking_item{
border-top: solid 4px #ffd940;
}

.rank02.ranking_item{
border-top: solid 4px #cccccc;
}

.rank03.ranking_item{
border-top: solid 4px #dab48b;
}


.ranking_item_header_inner{
display: flex;
padding: 35px 20px 0;
position: relative;
}

.ranking_item_header{
position: sticky;
top: 0;
margin: 0 0 20px;
}

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

.ranking_item.rank01 .ranking_item_header_rank{
background-image: url(../images/match_ranking-item_rank-icon01.png);
}

.ranking_item.rank02 .ranking_item_header_rank{
background-image: url(../images/match_ranking-item_rank-icon02.png);
}

.ranking_item.rank03 .ranking_item_header_rank{
background-image: url(../images/match_ranking-item_rank-icon03.png);
}

img.ranking_item_header_appicon{
width: 150px;
}

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

.ranking_item_header_name{
margin: 0 0 10px;
}

a.ranking_item_header_name_link{
font-size: 40px;
font-weight: bold;
text-decoration: none;
line-height: 1;
}

a.ranking_item_header_name_link:after{
content: '\f35d';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	font-size: 80%;
	margin: 0 0 0 10px;
}

.ranking_item_header_value{
margin: 0 0 10px
}

 .ranking_item_header span.value_score{
 font-family: 'Anton', sans-serif, cursive;
 color: #fd5392;
 }

.ranking_item_header_tags{
display: flex;
}

.ranking_item_header_tags li{
line-height: 1;
padding: 10px 20px;
margin: 0 8px 0 0;
border-radius: 6px;
font-weight: bold;
font-size: 24px;
}

.ranking_item_header_tags li:first-child{
background:  #FEF0F5;
border: solid 2px #fd5392;
color: #fd5392;
}

.ranking_item_header_tags li:nth-child(2){
background:  #E1F4F0;
border: solid 2px #4EBFA5;
color: #4EBFA5;
}

.ranking_item_header_tags li:nth-child(3){
background:  #E2EBFF;
border: solid 2px #518BFF;
color: #518BFF;
}

.ranking_item_header_tags li.off{
background: #f5f5f5;
color: #ccc;
border: solid 2px #ccc;
}

.contents_ranking_item{
padding: 0 20px;
}

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

img.ranking_item_banner{
width: 100%;
}

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

h4.ranking_item_point_box_h4{
background: #222;
color: #fff;
display: inline-block;
padding: 10px 10px 10px 20px;;
line-height: 1;
height: 48px;
position: relative;
font-size: 24px
}

h4.ranking_item_point_box_h4:after{
content: '';
    position: absolute;
    top: 0;
    right: -32px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 48px 0px 0px 32px;
    border-color: transparent transparent transparent #222;
}

ul.ranking_item_point_box{
border: solid 1px #222;
padding: 20px 20px 20px 60px;
margin: 0 0 20px;
}

ul.ranking_item_point_box li{
position: relative;
font-weight: bold;
}

ul.ranking_item_point_box li:before{
content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: -36px;
	color: #fd5392;
}


.ranking_spec_table{
width: 100%;
font-size: 24px;
margin: 0 0 20px;
}

.ranking_spec_table th{
background: #222;
color: #fff;
padding: 10px 0;
width: calc(100% / 3);
border-radius: 10px 10px 0 0;
}

.ranking_spec_table td{
padding: 10px 0;
text-align: center;
background: #f5f5f5;
border-radius: 0 0 10px 10px;
font-weight: bold;
}

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

.ranking_spec_table span.label_male,.ranking_spec_table span.label_female{
background: #0066cc;
color: #fff;
padding: 0 10px;
font-size: 20px;
border-radius: 4px;
margin: 0 5px 0 0;
}

.ranking_spec_table span.label_female{
background: #ff3366;
}

h4.ranking_item_reviews_h4:before{
content: '\f4ad';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	font-size: 80%;
	margin: 0 5px 0 0px;
	font-size: 36px;
}


li.ranking_item_review{
position: relative;
padding: 20px;
background: #f5f5f5;
border-radius: 10px;
}

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

}

ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child):after{

 }

.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/match_ranking_item_review-icon_female.png);
left: 0;
background-repeat: no-repeat;
}

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

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

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

._detail_star{
margin: 0 20px 0 0;
font-size: 20px;
}

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 #444;
  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_linkbutton{
    width: calc(100% - 40px);
	text-align: center;
    font-size: 36px;
    display: block;
    text-decoration: none;
    color: #fff;
    background: #22C77F;
    font-weight: bold;
    box-shadow: 0 8px 0 #419a73;
    border-radius: 100px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
	margin: 0 auto 8px;
}

a.ranking_item_linkbutton: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%);
}

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

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

.ranking_item_campaign_box{
border: solid 2px #ff3366;

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: #ff3366;
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: 36px;
color: #ff3366;
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;
}

img.ranking_item_campaign_banner{
width: 100%;
}

/*result
----------------------------------------------------------------------*/
section.result{
padding: 20px 0 0;
}

.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: 24px;
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: #f1f1f1;
margin: 0 0 15px;
}

h3.result_header02_h3{
font-weight: normal;
color: #444;
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 30px 20px;
background: #fff;
border-radius: 5px;
display: flex;
flex-wrap: wrap;
}

ul.result_header02_settings_wrap li{
padding: 5px 10px 5px 20px;
border: solid 2px #fd5392;
color: #fd5392;
font-weight: 600;
margin: 0 10px 10px 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: #fd5392;
        top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

section.notice_result{
text-align: center;
padding: 20px;
margin: 0 0 20px;
border-radius: 10px;
background: #FFF4EB;
border: solid 2px #ff7e0e;
}

h3.notice_result_title{
font-size: 20px;
}

h3.notice_result_title:before{
content: '\f058';
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #00cc99;
margin: 0 5px 0 0;
}

p.notice_result_description{
font-size: 20px;
text-align: center;
}

section.notice_result.result_none{
background: #fff;
}

section.notice_result.result_none h3.notice_result_title:before{
color: #ff4b4b;
}


#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_items_wrap{
padding: 0 20px;
}

.result_item{
padding: 30px;
border-radius: 15px;
background: #fff;
margin: 0 0 30px;
border: solid 2px #666;
position: relative;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}

.result_item_header{
display: flex;
}

img.result_item_icon{
width: 150px;
}

ul.result_item_tags{
display: flex;
}

ul.result_item_tags li{
line-height: 1;
padding: 5px 10px;
margin: 0 4px 10px 0;
border-radius: 6px;
font-weight: bold;
font-size: 20px;
}

ul.result_item_tags li:first-child{
background:  #FEF0F5;
border: solid 2px #fd5392;
color: #fd5392;
}

ul.result_item_tags li:nth-child(2){
background:  #E1F4F0;
border: solid 2px #4EBFA5;
color: #4EBFA5;
}

ul.result_item_tags li:nth-child(3){
background:  #E2EBFF;
border: solid 2px #518BFF;
color: #518BFF;
}

ul.result_item_tags li.off{
background: #f5f5f5;
color: #ccc;
border: solid 2px #ccc;
}

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

a.result_item_name{
display: inline-block;
font-size: 40px;
line-height: 1;
margin: 0 0 20px;
}

ul.result_item_point{
margin: 0 0 20px;
}

ul.result_item_point li{
font-size: 24px;
}

ul.result_item_point li:before{
content: '\f105';
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #fd5392;
margin: 0 5px 0 0;

}

.result_item_table{
width: 100%;
font-size: 24px;
margin: 0 0 20px;
}

.result_item_table th{
background: #555;
color: #fff;
padding: 10px 0;
width: calc(100% / 3);
border-radius: 10px 10px 0 0;
}

.result_item_table td{
padding: 10px 0;
text-align: center;
background: #f5f5f5;
border-radius: 0 0 10px 10px;
font-weight: bold;
}

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

.result_item_table span.label_male,.result_item_table span.label_female{
background: #0066cc;
color: #fff;
padding: 0 10px;
font-size: 20px;
border-radius: 4px;
margin: 0 5px 0 0;
}

.result_item_table span.label_female{
background: #ff3366;
}



a.result_item_linkbutton{
    width: calc(100% - 40px);
	text-align: center;
    font-size: 36px;
    display: block;
    text-decoration: none;
    color: #fff;
    background: #22C77F;
    font-weight: bold;
    box-shadow: 0 8px 0 #419a73;
    border-radius: 100px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
	margin: 0 auto 8px;
position: relative;
overflow: hidden;
}

a.result_item_linkbutton: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; }
}


section.result #search h2{
background: #005eab;
color: #fff;
}

p.result_item_notification{
margin: 10px 0 0;
text-align: right;
color: #666;
}

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


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

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

h2.category_h2{
background: linear-gradient(to bottom , #fd5392 , #f86f64);
color: #fff;
font-size: 36px;
text-align: center;
padding: 20px 0;
margin: 0 0 20px;
}

a.category_menu_item_wrap{
text-decoration: none;
color: #444;
}

li.category_menu_item{
background: #f5f5f5;
display: flex;
margin: 0 0 20px;
align-items: center;
position: relative;
}

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

img.category_menu_item_icon{
margin: 0 20px 0 0;
}

.category_menu_item_title{
font-weight: bold;
font-size: 32px;
}

.category_menu_item_description{
font-size: 24px;
}

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

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

#search{
margin:0px auto 0px;
position: absolute;
z-index: 2;
}

#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: 20px;

}

#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: 0px 0px 20px 20px;
width: 680px;
}

#search select{
width: 100%;
padding: 20px 20px 20px 150px;
border-radius: 40px;
font-size: 15px;
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:nth-child(odd){
margin: 0 15px 20px 0;
}

#search .select-wrap:nth-child(even){
margin: 0 0 20px 15px;
}

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


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

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

h2.about_h2{
font-size: 32px;
padding: 10px 0;
margin: 0 0 40px;
background: #e1e1e1;
border-radius: 10px 10px 0 0;

}

h2.about_h2:after,h2.about_h2:before{
content:'－';
margin: 0 10px 0 10px;
color: #999;
}


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

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: 18px;
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;
padding: 40px 0 0;
}

h2.survey_h2{
font-size: 32px;
padding: 10px 0;
margin: 0 0 40px;
background: #e1e1e1;
border-radius: 10px 10px 0 0;
}

h2.survey_h2:after,h2.survey_h2:before{
content:'－';
margin: 0 10px 0 10px;
color: #999;
}

h3.survey_h3{
font-size: 18px;
border-left: solid 6px #ccc;
border-bottom: solid 1px #ccc;
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;
}

/*search_step
---------------------------------------------------------------------------*/

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

form.search_step_form{

}

h2.search_step_h2{
background: linear-gradient(to bottom , #fd5392 , #f86f64);
color: #fff;
border-radius: 10px 10px 0 0;
font-size: 28px;
line-height: 1;
padding: 22px 0 20px;
text-align: center;
}

.search_step_h2_wrap{
margin: 0 0 0;
position: relative;
}

img.search_step_h2_baloon{
position: absolute;
width: 92px;
top: -24px;
left: -20px;
}

#step_area html {
  line-height: 1;
}
#step_area ol, #step_area ul {
  list-style: none;
}
#step_area table {
  border-collapse: collapse;
  border-spacing: 0;
}
#step_area caption, #step_area th, #step_area td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
#step_area q, #step_area blockquote {
  quotes: none;
}
#step_area q:before, #step_area q:after, #step_area blockquote:before, #step_area blockquote:after {
  content: "";
  content: none;
}
#step_area a img {
  border: none;
}
#step_area article, #step_area aside, #step_area details, #step_area figcaption, #step_area figure, #step_area footer, #step_area header, #step_area hgroup, #step_area main, #step_area menu, #step_area nav, #step_area section, #step_area summary {
  display: block;
}
#step_area html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
#step_area body {
  font-family: "Kosugi Maru","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  color: #696969;
}
#step_area input, #step_area select, #step_area textarea, #step_area button, #step_area option {
  font-family: "Kosugi Maru","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  color: #696969;
  font-size: 1rem;
}
#step_area button {
  cursor: pointer;
}
#step_area a {
  text-decoration: none;
  color: #696969;
}
#step_area input[type="submit"] {
  -webkit-appearance: none;
}

:root {
  --main-color: #5bb75b;
  --sub-color: #ff7e0e;
}

#step_area {
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding: 20px 20px 10px;
  border: solid 4px #f86f64;
}
#step_area .step_title {  
  font-size: 24px;
  text-align: center;
  margin: 0 0 10px;
}
#step_area .step_count {
  padding: .5rem;
}
#step_area .step_count ul {
  display: flex;
  justify-content: center;
  margin: 0 0 10px;
}
#step_area .step_count ul li {
  background: #b0b0b0;
  padding: .5rem .5rem .6rem;
  border-radius: 100px;
  color: #ffffff;
  position: relative;
  line-height: 1;
}
#step_area .step_count ul li.active {
  background: #ffd940;
  color: #666;
  font-weight: bold;
}
#step_area .step_count ul li.active:not(:first-of-type):before {
  background: #ffd940;
}
#step_area .step_count ul li:not(:first-of-type) {
  margin-left: 1rem;
}
#step_area .step_count ul li:not(:first-of-type):before {
  content: '';
  display: block;
  background: #b0b0b0;
  height: 2px;
  position: absolute;
  left: -1rem;
  width: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
#step_area .step_body {
  
}
#step_area .step_body .step {
  display: none;
  flex-wrap: wrap;
}
#step_area .step_body .step.open {
  display: flex;
  justify-content: flex-start;
}
#step_area .step_body .step .label_wrap {
  flex-basis: calc((100% - 20px) / 3);
  padding: 0;
  box-sizing: border-box;
}

#step_area .step_body .step .label_wrap:nth-child(3n-1){
margin: 0 10px 10px 10px;
}

#step_area .step_body .step .label_wrap label span {
  font-size: 18px;
  font-weight: bold;
  color: #666;
  padding: .5rem;
  box-sizing: border-box;
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid var(--sub-color);
  border-radius: 5px;
  transition: .5s background-color,color;
  position: relative;
  background: #FFF4EB;
}

#step_area .step_body .step .label_wrap label span:after{
position: absolute;
content: '\f054';
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 18px;
right: 5px;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
color: var(--sub-color);
}


#step_area .step_body .step .label_wrap label input[type="radio"],
#step_area .step_body .step .label_wrap label input[type="checkbox"] {
  display: none;
}
#step_area .step_body .step .label_wrap label input[type="radio"]:checked + span,
#step_area .step_body .step .label_wrap label input[type="checkbox"]:checked + span {
  background: var(--sub-color);
  color: #ffffff;
}
#step_area .step_body .step .button_wrap {
  flex: 100%;
  padding: .5rem 0;
  display: flex;
  justify-content: space-evenly;
}
#step_area .step_body .step .button_wrap .button, #step_area .step_body .step .button_wrap button {
  padding: .2rem 2rem;
  font-size: 14px;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  font-size: 20px;
}
#step_area button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

#step_area .step_body .step .button_wrap button.search_start{
background: #ff4b4b;
color: #fff;
}

.search_step_wrap{

}

.search_step_wrap section.search_step{
position: relative;
top: 0;
margin: 0 0 60px;
}

.search_step_wrap form.search_step_form{
width: 100%;
}

.search_step_wrap #step_area{
padding: 20px 60px 10px;
}


.result_search_wrap{
padding: 0 20px;
margin: 0 0 40px;
}

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

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

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: #444;
  width: 380px;
}

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

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 0;
padding: 0 20px;
font-size: 24px;
color: #666;
}

/*タイプ別02
---------------------------------------------------------------------------*/

.type {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 20px;
  color: #333;
  line-height: 1.5;
  background-color: #ffffe0;
}

.type * {
  box-sizing: border-box;
}

.type img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* --- ヘッダー --- */
.cp-main-header {
  text-align: center;
  margin-bottom: 60px;
  background: none;
  position: relative;
}

.cp-main-header::before{
  position: absolute;
  background-image: url(../images/match_cp-title_icon02.png);
background-repeat: no-repeat;
background-size: contain;
content: "";
display: block;
width: 40px;
height: 40px;
top:0px;
left: 30px;
}

.cp-main-header::after{
  position: absolute;
  background-image: url(../images/match_cp-title_icon01.png);
background-repeat: no-repeat;
background-size: contain;
content: "";
display: block;
width: 64px;
height: 64px;
bottom:-20px;
right: 10px;
}

.cp-sub-title {
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: bold;
  color: #333;
}

.cp-main-title {
  font-size: 36px;
  margin: 0;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cp-title-badge {
  background: #444;
  color: #fff;
  padding: 6px 16px;
  font-size: 28px;
  border-radius: 4px;
  font-weight: 700;
}

/* --- セクション共通 --- */
.cp-category-section {
  border: 4px solid #333;
  position: relative;
  padding: 50px 30px 30px;
  margin-bottom: 56px;
  background: #fff;
  border-radius: 8px;
}

.cp-category-section:last-of-type{
  margin-bottom: 0;
}

.cp-category-title {
  position: absolute;
  top: -32px; /* 枠線の上に配置 */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 40px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-radius: 40px;
  white-space: nowrap;
}

/* --- 色分け（テーマカラー） --- */
/* 恋活：ピンク系 */
.cp-category-section.type-love {
  border-color: #ff4081; 
}
.cp-category-section.type-marriage {
  border-color: #ff9800; 
}
.cp-category-section.type-casual {
  border-color: #00bcd4; 
}
.cp-category-section.type-love .cp-category-title {
  background: #ff4081; /* ピンク */
}

/* 婚活：オレンジ系 */
.cp-category-section.type-marriage .cp-category-title {
  background: #ff9800; /* オレンジ */
}

/* 出会い：ブルー系 */
.cp-category-section.type-casual .cp-category-title {
  background: #00bcd4; /* シアン・ブルー */
}

/* --- アプリリスト --- */
.cp-app-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.cp-app-item:last-child {
  margin-bottom: 0;
}

/* 左側：説明吹き出し */
.cp-desc-box {
  background: #FFF3F7; /* グレー背景 */
  padding: 20px;
  border-radius: 8px;
  position: relative;
  flex: 1; /* 余った幅を使用 */
  margin-right: 30px;
}

.cp-category-section.type-marriage .cp-desc-box {
background: #FFF0DA;
}

.cp-category-section.type-casual .cp-desc-box {
background: #E9F9FB;
}

/* 吹き出しの三角 */
.cp-desc-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #FFF3F7;
}

.cp-category-section.type-marriage .cp-desc-box::after {
  border-color: transparent transparent transparent #FFF0DA;
}

.cp-category-section.type-casual .cp-desc-box::after {
  border-color: transparent transparent transparent #E9F9FB;
}

.cp-point-tag {
  display: inline-block;
  background-image: url(../images/match_cp-point_icon.png);
  content: '';
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
}

.cp-desc-head {
  font-weight: bold;
  font-size: 26px;
  margin: 10px 0;
  display: inline; /* バッジと並べるため */
}

.cp-desc-text {
  font-size: 22px;
  margin: 10px 0 0;
  line-height: 1.6;
}

/* 蛍光ペン風マーカー */
.cp-highlight {
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
  font-weight: bold;
}

/* 右側：アプリアイコンエリア */
.cp-app-info {
  width: 140px; /* 固定幅 */
  text-align: center;
  flex-shrink: 0; /* 縮小させない */
}

.cp-app-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  background: #eee;
}

.cp-app-link {
  display: block;
  text-decoration: none;
  color: #0000EE; /* 青リンク */
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
  text-decoration: underline;
}

/*タイプ別03
---------------------------------------------------------------------------*/

/* --- ベースレイアウト --- */
.mg-chart-container {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 28px;
    line-height: 1.5;
    color: #333;
  
}

.mg-chart-container * {
    box-sizing: border-box;
}

.mg-chart-section {
    display: flex;
    margin-bottom: 40px;
    align-items: stretch;
}

/* --- 左側：メインカテゴリ（縦書き） --- */
.mg-chart-sidebar {
    width: 120px; /* 左側の幅 */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
    padding: 20px 10px;
    margin-right: 12px;
    position: relative;
    /* 縦書き設定 */
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 4px;
    text-shadow: 0 0 2px rgba(0,0,0,0.6);
}

/* --- 右側：詳細エリア --- */
.mg-chart-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mg-chart-box {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    /* 背景色は各色のlightバージョンで上書き */
    background: #f5f5f5; 
    align-items: stretch;
    min-height: 200px;
}

/* サブタイトル部分（左の小見出し） */
.mg-chart-subtitle {
    width: 30%; /* スマホレイアウト調整 */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    position: relative;
    text-shadow: 0 0 2px rgba(0,0,0,0.6);;
}

/* 矢印（三角）の装飾 */
.mg-chart-subtitle::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 16px 0 16px 16px;
    /* 色は各カラー設定で指定 */
}

/* アプリリストエリア */
.mg-chart-apps {
    width: 70%;
    background: #fff; /* 背景白 */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* --- アプリリストのスタイル（リスト型） --- */
.mg-app-item-list {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
}
.mg-app-item-list:last-child {
    margin-bottom: 0;
}
.mg-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.mg-app-info {
    display: flex;
    flex-direction: column;
}
.mg-app-name {
    font-weight: bold;
    font-size: 28px;
    color: #0044cc; /* リンク色 */
    text-decoration: underline;
}
.mg-app-desc {
    font-size: 20px;
    color: #444;
    font-weight: bold;
}

.mg-app-desc strong{
color: #222;
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(50%, #FAF19B));
background: linear-gradient(transparent 60%, #FAF19B 50%);
}

/* --- アプリリストのスタイル（アイコンのみグリッド型） --- */
.mg-app-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.mg-app-grid .mg-app-icon {
    width: 100px;
    height: 100px;
    margin-right: 0;
}

/* --- カラーバリエーション --- */

/* ピンク（恋人探し） */
.mg-color-pink .mg-chart-sidebar {
    background: linear-gradient(to bottom, #ff758c, #ff7eb3);
}
.mg-color-pink .mg-chart-subtitle {
    background-color: #ff9a9e; /* 少し薄いピンク */
}
.mg-color-pink .mg-chart-subtitle::after {
    border-color: transparent transparent transparent #ff9a9e;
}
.mg-color-pink .mg-chart-box {
    background-color: #fff0f5; /* 全体の背景（白枠外） */
}

/* 水色（友達探し） */
/*
.mg-color-blue .mg-chart-sidebar {
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
}
.mg-color-blue .mg-chart-subtitle {
    background-color: #6dd5fa;
}
.mg-color-blue .mg-chart-subtitle::after {
    border-color: transparent transparent transparent #6dd5fa;
}
.mg-color-blue .mg-chart-box {
    background-color: #e0f7fa;
}
*/

/* --- 淡い紫色（友達探し）に変更 --- */
.mg-color-blue .mg-chart-sidebar {
    /* グラデーション：彩度を落としたソフトなラベンダー */
    background: linear-gradient(to bottom, #d4a5d8, #a88ac2);
}
.mg-color-blue .mg-chart-subtitle {
    /* サブタイトルの背景色：くすみのある薄紫 */
    background-color: #cab0d4;
}
.mg-color-blue .mg-chart-subtitle::after {
    /* 矢印の色 */
    border-color: transparent transparent transparent #cab0d4;
}
.mg-color-blue .mg-chart-box {
    /* 全体の背景：ほんのり紫がかった白 */
    background-color: #faf5fc;
}
/* オレンジ（結婚） */
.mg-color-orange .mg-chart-sidebar {
    background: linear-gradient(to bottom, #f6d365, #fda085);
}
.mg-color-orange .mg-chart-subtitle {
    background-color: #fbcb78;
}
.mg-color-orange .mg-chart-subtitle::after {
    border-color: transparent transparent transparent #fbcb78;
}
.mg-color-orange .mg-chart-box {
    background-color: #fff8e1;
}

/* ========================================
   app-hikaku 比較表
======================================== */
#app-hikaku{
margin: 0 0 40px;
}

p.app_hikaku_subtitle{
display: flex;
align-items: center;
gap: 12px;
text-align: center;
font-size: 13px;
font-weight: bold;
color: #fd5392;
margin: 0 0 8px;
letter-spacing: 0.05em;
}

p.app_hikaku_subtitle::before,
p.app_hikaku_subtitle::after{
content: '';
flex: 1;
height: 1px;
background: #ccc;
}

.app_hikaku_h2{
font-size: 22px;
font-weight: bold;
text-align: center;
margin: 0 0 8px;
}

.app_hikaku_scroll_note{
text-align: right;
font-size: 13px;
color: #888;
margin: 0 0 6px;
}

.app_hikaku_scroll_note span{
display: inline-flex;
align-items: center;
gap: 4px;
animation: scroll_note_anim 1.4s ease infinite;
}

@keyframes scroll_note_anim{
0%   { transform: translateX(0); }
40%  { transform: translateX(5px); }
60%  { transform: translateX(0); }
100% { transform: translateX(0); }
}

.app_hikaku_inner{
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.app_hikaku_table{
min-width: 700px;
border-collapse: collapse;
}

.app_hikaku_table thead th{
background: #f5f5f5;
font-size: 14px;
font-weight: bold;
text-align: center;
padding: 10px 8px;
border: 1px solid #ddd;
white-space: nowrap;
}

.app_hikaku_table thead th:first-child{
position: sticky;
left: 0;
z-index: 2;
}

.app_hikaku_table tbody td{
border: 1px solid #ddd;
padding: 12px 8px;
text-align: center;
vertical-align: middle;
}

.app_hikaku_table td.name{
text-align: center;
width: 110px;
position: sticky;
left: 0;
z-index: 1;
background: #fff;
overflow: hidden;
}

.app_hikaku_table td.name > a{
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 6px 4px 0;
}

.app_hikaku_table td.name span.badge{
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 40px;
background: #f8bd32;
clip-path: polygon(0 0, 100% 0, 0 100%);
display: flex;
align-items: flex-start;
justify-content: flex-start;
padding: 4px 0 0 5px;
color: #fff;
font-weight: bold;
font-size: 14px;
line-height: 1;
box-sizing: border-box;
}

.app_hikaku_table td.name span.badge.rank2{
background: #b498a8;
}

.app_hikaku_table td.name span.badge.rank3{
background: #a96455;
}


img.app_hikaku_logo{
width: 40px;
height: 40px;
object-fit: contain;
border-radius: 8px;
}

span.app_hikaku_service_name{
font-weight: bold;
font-size: 14px;
}

.app_hikaku_table td.star{
color: #e89a00;
font-size: 18px;
font-weight: bold;
white-space: nowrap;
}

span.app_hikaku_star_value{
color: #fd5392;
font-family: 'Anton', sans-serif, cursive;
font-weight: normal;
margin-left: 4px;
}

.app_hikaku_table td.charge{
text-align: left;
font-size: 13px;
width: 130px;
}

span.app_hikaku_label_male{
display: inline-block;
background: #0066cc;
color: #fff;
padding: 0 6px;
border-radius: 4px;
font-size: 12px;
margin: 0 4px 0 0;
}

span.app_hikaku_label_female{
display: inline-block;
background: #ff3366;
color: #fff;
padding: 0 6px;
border-radius: 4px;
font-size: 12px;
margin: 2px 4px 0 0;
}

.app_hikaku_table td.purpose{
min-width: 80px;
font-weight: bold;
}

span.app_hikaku_label_purpose01{
display: inline-block;
background: #ff758c;
color: #fff;
padding: 2px 7px;
border-radius: 4px;
font-size: 12px;
margin: 2px 2px;
white-space: nowrap;
}

span.app_hikaku_label_purpose02{
display: inline-block;
background: #F6BA01;
color: #fff;
padding: 2px 7px;
border-radius: 4px;
font-size: 12px;
margin: 2px 2px;
white-space: nowrap;
}

span.app_hikaku_label_purpose03{
display: inline-block;
background: #d4a5d8;
color: #fff;
padding: 2px 7px;
border-radius: 4px;
font-size: 12px;
margin: 2px 2px;
white-space: nowrap;
}

.app_hikaku_table td.feature{
min-width: 196px;
text-align: left;
}

ul.app_hikaku_feature_list{
list-style: none;
margin: 0;
padding: 0;
}

ul.app_hikaku_feature_list li{
display: flex;
align-items: flex-start;
gap: 6px;
font-size: 13px;
line-height: 1.4;
margin: 0 0 4px;
font-weight: bold;
}

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

ul.app_hikaku_feature_list li::before{
content: '✓';
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 16px;
height: 16px;
border-radius: 50%;
background: #6CC8AB;
color: #fff;
font-size: 10px;
font-weight: bold;
margin-top: 1px;
}


a.app_hikaku_dl_button{
display: inline-block;
background: #22C77F;
box-shadow: 0 6px 0 #419a73;
text-decoration: none;
text-align: center;
font-weight: bold;
color: #fff;
border-radius: 10px;
padding: 10px 20px;
font-size: 16px;
white-space: nowrap;
}

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

#app-hikaku{
margin: 0 0 24px;
}

.app_hikaku_h2{
font-size: 20px;
}

.app_hikaku_scroll_note{
font-size: 12px;
}

.app_hikaku_table thead th{
font-size: 11px;
padding: 6px 4px;
}

.app_hikaku_table tbody td{
padding: 8px 6px;
font-size: 12px;
}

ul.app_hikaku_feature_list li{
font-size: 11px;
gap: 6px;
}

ul.app_hikaku_feature_list li::before{
width: 15px;
height: 15px;
font-size: 10px;
}

.app_hikaku_table td.charge{
width: 120px;
font-size: 12px;
font-weight: bold;
}

.app_hikaku_table td.feature{
  width: 160px;
  font-size: 12px;
}

.app_hikaku_table td.name span.badge{
width: 34px;
height: 34px;
font-size: 12px;
}

img.app_hikaku_logo{
width: 36px;
height: 36px;
}

span.app_hikaku_service_name{
font-size: 11px;
}

.app_hikaku_table td.star{
font-size: 14px;
}

a.app_hikaku_dl_button{
font-size: 13px;
padding: 8px 10px;
box-shadow: 0 4px 0 #419a73;
}

.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: #1F35B6;
	opacity: 0.80;
    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;
background: #222;
}

.header-wrap{
padding: 0;
}

.header-wrap img.logo{
top: 20px;
width: 92px;
}


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

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

#page_top{
  right: 10px;
  bottom: 10px;
  background: #3f98ef;
  opacity: 0.8;
  border-radius: 50%;
}


/*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 10px 10px;
font-weight: bold;
}

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

.nav_li_label{
margin: 0 0 10px;
font-size: 12px;
}

#search{
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
top:225px;
}

section.result #search{
position: relative;
top:0px;
padding: 20px 20px 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 10px 10px;
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;
}



.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:10px auto 0;
  
}
.tab-wrap:after {
}

.tab-label {
padding: 0.5rem 1rem;
font-size: 16px;
text-shadow: none;
}

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

.tab-content {
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  

}

.tab-switch:checked+.tab-label+.tab-content {
padding: 20px 0 0;

}

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

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

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

img.fv_image{
}

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

.fv_wrap.fv_wrap_index02 .fv_pr{
border: solid 1px #666;
}

.fv_pr.fv_pr_lefttop{
right: auto;
left: 5px;
}

.fv_year{
font-size: 3.07vw;
top: 7.12vw;
left: 17.0vw;
text-align: center;
font-family: "Noto Sans JP", sans-serif;
}

.fv_year.fv_year_centerbottom{
top: 50.55vw;
}


/*lead
----------------------------------------------------------------------*/

section.lead{
}

h1.lead_h1{
padding: 10px;
font-size: 18px;
margin: 0 0 10px;
}

h1.lead_h1 span.pink{
}

.lead_date{
margin: 0 0 10px;
font-size: 12px;
}

.contents_lead{
padding: 0 10px;
}

p.lead_description{
margin: 0 0 20px;
}

p.lead_description span.pink{
}

p.lead_description span.bg_yellow{
}

.lead_author{
padding: 10px;
border-radius: 4px;
margin: 0 0 20px;
}

img.lead_author_image{
width: 70px;
height: 70px;
border: solid 2px #fff;
margin: 0 10px 0 0;
}

.lead_author_text_name{
}

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

.lead_menu{
margin: 0 0 20px;
}

a.lead_menu_item{
flex-basis: calc((100% - 16px) / 3);
padding: 5px 5px 24px;
box-shadow:  0px 2px 4px rgb(0 0 0 / 30%);
}

a.lead_menu_item:before{
width: 24px;
height: 24px;
background-size: contain;
}

a.lead_menu_item:nth-child(2):before{
background-image: url(../images/match_lead_menu_number02.png);
}

a.lead_menu_item:nth-child(3):before{
background-image: url(../images/match_lead_menu_number03.png);
}


.lead_menu_item__title{
font-size: 16px;
margin: 0 0 5px;
}

img.lead_menu_item__icon{
width: 36px;
}

.lead_menu_item__linktext{
font-size: 10px;
right: 5px;
bottom: 5px;
}

.lead_menu_item__linktext i{
margin: 0 0 0 2px;;
}


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

a.lead_textlink:after{
	left: 5px;
}

h2.lead_h2{
font-size: 18px;
text-align: center;
padding: 15px 0;
margin: 0 0 10px;
}

.lead_comment{
margin: 0 0 20px;
}

img.lead_comment_image{
margin: 0 10px 0 0;
width: 50px;
height: 50px;
}

p.lead_comment_text{
padding: 10px;
border-radius: 10px;
font-size: 14px;
font-weight: bold;
}

p.lead_comment_text:before {
left: -10px;
top: 15px;
border-right: 10px solid #f5f5f5;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
}

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

/*pair
----------------------------------------------------------------------*/

section.pair{
padding: 0 10px;
}

.pair_contents{
padding: 0 5px;
margin: 0 0 20px;
}

table.pair_table{
margin: 0 0 10px;
}

table.pair_table td,table.pair_table th{
}

table.pair_table th{
padding: 8px 0;
font-size: 14px;
}

table.pair_table tr:first-child th{
background: linear-gradient(to bottom , #fd5392 , #f86f64);
color: #fff;
}

table.pair_table tr:nth-child(2) th{
background: #FEF0F5;
}

table.pair_table.table02 tr:first-child th{
background: linear-gradient(to bottom , #4EBFA5 , #76D476);
}

table.pair_table.table02 tr:nth-child(2) th{
background: #E1F4F0;
}

table.pair_table.table03 tr:first-child th{
background: linear-gradient(to bottom , #518BFF , #51C9FF);
}

table.pair_table.table03 tr:nth-child(2) th{
background: #E2EBFF;
}


table.pair_table td{
width: 25%;
padding: 10px 5px;
}

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

}

table.pair_table tr:nth-child(4) td{

}

a.pair_table_icon_wrap{

}

img.pair_table_icon{
width: 60px;
margin: 0 0 5px;
}

a.pair_table_textlink{
font-size: 12px;
}

.pair_tab_notification{
margin: 0 0 10px;
}

.pair_tab_notification:before,.pair_tab_notification:after{
margin: 0 5px;
}

.tab02-wrap {  
}
.tab02-wrap:after {
}
.tab02-label {
    padding: 8px 0;
    border-radius: 10px 10px 0 0;
	font-size: 14px;
}

.tab02-label.__label02{
}

.tab02-label.__label03{
}

.tab02-label:not(:last-of-type) {
  margin: 0 5px 0 0;
}

.tab02-content {
}
/* アクティブなタブ */
.tab02-switch:checked+.tab02-label {
padding: 15px 0;
}
.tab02-switch:checked+.tab02-label+.tab02-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  background: none;
  padding: 5px 0 0;
}
/* ラジオボタン非表示 */
.tab02-switch {
  display: none;
}




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


h2.ranking_h2{
padding: 25px 0;
margin: 0 0 10px;
font-size: 18px;
}

h2.ranking_h2:before,h2.ranking_h2:after{
width: 21px;
height: 48px;
}

h2.ranking_h2:before{
background: url(../images/match_ranking_h2_icon01.png);
background-size: contain;
left: 5px;
bottom: 10px;
}

h2.ranking_h2:after{
background: url(../images/match_ranking_h2_icon02.png);
background-size: contain;
right: 5px;
bottom: 10px;
}


h2.ranking_h2.ranking_h2_02{
margin: 0 0 20px;
}

h2.ranking_h2.ranking_h2_03{
margin: 0 0 20px;
}



.ranking_h2_date {
    padding: 3px 10px 5px;
    border: solid 2px #fd5392;
    top: -14px;
    font-size: 12px;
}

.ranking_h2_date span.color01{
font-size: 18px;
color: #fd5392;
}

h2.ranking_h2.ranking_h2_02 .ranking_h2_date{
border: solid 4px #4EBFA5;
}

h2.ranking_h2.ranking_h2_02 .ranking_h2_date span.color01{
color: #4EBFA5;
}

h2.ranking_h2.ranking_h2_03 .ranking_h2_date{
border: solid 4px #518BFF;
}

h2.ranking_h2.ranking_h2_03 .ranking_h2_date span.color01{
color: #518BFF;
}

.ranking_tab_subtitle{
margin: 0 0 10px;
}

.ranking_tab_subtitle i{
margin: 0 5px 0;
}

.ranking_item{
border-top: solid 2px #fedbe8;
margin: 0 0 30px;
}

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

.rank01.ranking_item{
border-top: solid 2px #ffd940;
}

.rank02.ranking_item{
border-top: solid 2px #cccccc;
}

.rank03.ranking_item{
border-top: solid 2px #dab48b;
}


.ranking_item_header_inner{
padding: 18px 10px 0;
}

.ranking_item_header{
position: sticky;
top: 0;
margin: 0 0 10px;
}

.ranking_item_header_rank{
    width: 36px;
    height: 42px;
    top: -10px;
    left: 5px;
    font-size: 20px;
    padding: 5px 0 0;
}

.ranking_item.rank01 .ranking_item_header_rank{

}

.ranking_item.rank02 .ranking_item_header_rank{

}

.ranking_item.rank03 .ranking_item_header_rank{

}

img.ranking_item_header_appicon{
width: 75px;
}

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

.ranking_item_header_name{
margin: 0 0 5px;
}

a.ranking_item_header_name_link{
font-size: 20px;
}

a.ranking_item_header_name_link:after{
	margin: 0 0 0 5px;
}

.ranking_item_header_value{
margin: 0 0 5px
}

 .ranking_item_header span.value_score{
 }

.ranking_item_header_tags{
}

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

.ranking_item_header_tags li:first-child{
border: solid 1px #fd5392;
}

.ranking_item_header_tags li:nth-child(2){
border: solid 1px #4EBFA5;
}

.ranking_item_header_tags li:nth-child(3){
border: solid 1px #518BFF;
}

.ranking_item_header_tags li.off{
border: solid 1px #ccc;
}

.contents_ranking_item{
padding: 0 10px;
}

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

img.ranking_item_banner{
}

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

h4.ranking_item_point_box_h4{
padding: 5px 5px 5px 10px;;
height: 24px;
font-size: 12px;
}

h4.ranking_item_point_box_h4:after{
content: '';
    position: absolute;
    top: 0;
    right: -16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 0px 0px 16px;
    border-color: transparent transparent transparent #222;
}

ul.ranking_item_point_box{
padding: 10px 10px 10px 30px;
margin: 0 0 10px;
}

ul.ranking_item_point_box li{
}

ul.ranking_item_point_box li:before{
left: -18px;
}


.ranking_spec_table{
font-size: 12px;
margin: 0 0 10px;
}

.ranking_spec_table th{
padding: 5px 0;
border-radius: 6px 6px 0 0;
}

.ranking_spec_table td{
padding: 5px 0;
border-radius: 0 0 6px 6px;
font-size: 14px
}

p.ranking_spec_price{
}

.ranking_spec_table span.label_male,.ranking_spec_table span.label_female{
padding: 0 5px;
font-size: 10px;
border-radius: 4px;
margin: 0 5px 0 0;
}

.ranking_spec_table span.label_female{
}

h4.ranking_item_reviews_h4:before{
	margin: 0 3px 0 0px;
	font-size: 20px;
}




li.ranking_item_review{
padding: 10px;
border-radius: 6px;
}

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

}

.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/match_ranking_item_review-icon_female.png);
left: 0;
background-repeat: no-repeat;
background-size: contain;
}

.ranking_item_review__profile.male:before{
background: url(../images/match_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;
}

._detail_star i{
font-size: 12px;
}

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 1px #444;
  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_linkbutton{
    width: 100%;
    font-size: 18px;
    box-shadow: 0 4px 0 #419a73;
    border-radius: 100px;
    padding: 15px 0;
    margin: 0 auto 4px;
}

p.ranking_item_addition {
font-size: 10px;
margin: 14px 0 0;
}


.ranking_item_campaign_box{
padding: 20px 10px 10px;
margin: 20px 0 10px;
border: solid 1px #ff3366;
}

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: 18px;
color: #ff3366;
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;
}


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

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

.contents_category{
padding: 0 10px;
}

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

a.category_menu_item_wrap{
}

li.category_menu_item{
margin: 0 0 10px;
}

li.category_menu_item:after{
font-size: 18px;
right: 10px;
}

img.category_menu_item_icon{
margin: 0 10px 0 0;
width: 80px;
height: 80px;
}

.category_menu_item_title{
font-size: 16px;
}

.category_menu_item_description{
font-size: 12px;
}



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

section.result{
padding: 10px 0 0;
}

.result_header01{
padding: 0 20px;
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 20px;
}

.result_header02{
margin: 0 0 20px;
}

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

ul.result_header02_settings_wrap{
padding: 10px 10px 5px;
}

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

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

section.notice_result{
padding: 10px 0px;
margin: 0 auto 10px;
width: calc(100vw - 20px);
border-radius: 5px;
border: solid 1px #ff7e0e;
}

h3.notice_result_title{
font-size: 12px;
}

h3.notice_result_title:before{
margin: 0 3px 0 0;
}

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

section.notice_result.result_none{

}

section.notice_result.result_none h3.notice_result_title:before{

}

.result_items_wrap{
padding: 0 10px;
}

.result_item{
padding: 10px;
border-radius: 6px;
margin: 0 0 20px;
border: solid 1px #666;
}

.result_item_header{
}

img.result_item_icon{
width: 75px;
}

ul.result_item_tags{
}

ul.result_item_tags li{
line-height: 1;
padding: 3px 5px;
margin: 0 2px 5px 0;
border-radius: 4px;
font-size: 12px;
}

ul.result_item_tags li:first-child{
border: solid 1px #fd5392;
}

ul.result_item_tags li:nth-child(2){
border: solid 1px #4EBFA5;
}

ul.result_item_tags li:nth-child(3){
border: solid 1px #518BFF;
}

ul.result_item_tags li.off{
border: solid 1px #ccc;
}

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

a.result_item_name{
font-size: 20px;
margin: 0 0 10px;
}

ul.result_item_point{
margin: 0 0 10px;
}

ul.result_item_point li{
font-size: 12px;
}

ul.result_item_point li:before{
margin: 0 3px 0 0;

}

.result_item_table{
font-size: 12px;
margin: 0 0 10px;
}

.result_item_table th{
padding: 5px 0;
border-radius: 4px 4px 0 0;
}

.result_item_table td{
padding: 5px 0;
border-radius: 0 0 4px 4px;
font-size: 14px;
}

p.result_item_table_price{
}

.result_item_table span.label_male,.result_item_table span.label_female{
padding: 0 5px;
font-size: 10px;
border-radius: 2px;
margin: 0 3px 0 0;
}

.result_item_table span.label_female{
background: #ff3366;
}



a.result_item_linkbutton{
    width: calc(100% - 20px);
	font-size: 18px;
    box-shadow: 0 4px 0 #419a73;
    padding: 15px 0;
	margin: 0 auto 4px;
}


section.result #search h2{
}

p.result_item_addition{
margin: 14px 0 0;
font-size: 10px;
}

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

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

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

h2.about_h2:after,h2.about_h2:before{

margin: 0 5px 0 5px;
}

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

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

h2.survey_h2:after,h2.survey_h2:before{

margin: 0 5px 0 5px;
}

h3.survey_h3{
font-size: 16px;
border-left: solid 6px #ccc;
border-bottom: solid 1px #ccc;
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;
}

/*search_step
---------------------------------------------------------------------------*/

section.search_step{
padding: 0 10px;
margin: 0 0 0;
top: 210px;
}

.hv_short section.search_step{
top: 156px;
}

form.search_step_form{
width: auto;
}

h2.search_step_h2{
border-radius: 10px 10px 0 0;
font-size: 14px;
padding: 12px 0 10px;
}

.search_step_h2_wrap{
margin: 10px 0 0;
position: relative;
}

img.search_step_h2_baloon{
width: 46px;
height: 46px;
top: -10px;
left: -10px;
}


#step_area html {
}
#step_area ol, #step_area ul {
}
#step_area table {
}
#step_area caption, #step_area th, #step_area td {
}
#step_area q, #step_area blockquote {
}
#step_area q:before, #step_area q:after, #step_area blockquote:before, #step_area blockquote:after {
}
#step_area a img {
}
#step_area article, #step_area aside, #step_area details, #step_area figcaption, #step_area figure, #step_area footer, #step_area header, #step_area hgroup, #step_area main, #step_area menu, #step_area nav, #step_area section, #step_area summary {
}
#step_area html {
}
#step_area body {
}
#step_area input, #step_area select, #step_area textarea, #step_area button, #step_area option {
}
#step_area button {
}
#step_area a {
}
#step_area input[type="submit"] {
}

#step_area {
  border: 1px solid #f86f64;
  border-radius: 0 0 10px 10px;
  padding: 10px 10px 10px;
}

.search_step_wrap #step_area{
  padding: 10px 10px 10px;
}

.search_step_wrap section.search_step{
margin: 0 0 30px;
}

#step_area .step_title {  
  font-size: 14px;
  margin: 0 0 10px;
}
#step_area .step_count {
}
#step_area .step_count ul {
  margin: 0 0 5px;
}
#step_area .step_count ul li {
}
#step_area .step_count ul li.active {
}
#step_area .step_count ul li.active:not(:first-of-type):before {
}
#step_area .step_count ul li:not(:first-of-type) {
}
#step_area .step_count ul li:not(:first-of-type):before {
}
#step_area .step_body {
  
}
#step_area .step_body .step {
}
#step_area .step_body .step.open {
}
#step_area .step_body .step .label_wrap {
  flex-basis: calc((100% - 10px) / 3);
  padding: 0;
  box-sizing: border-box;
}

#step_area .step_body .step.column2 .label_wrap {
  flex-basis: calc((100% - 5px) / 2);
}

#step_area .step_body .step .label_wrap:nth-child(3n-1){
margin: 0 5px 5px 5px;
}

#step_area .step_body .step.column2 .label_wrap:nth-child(3n-1){
margin: 0 0px 5px 0px;
}

#step_area .step_body .step.column2 .label_wrap:nth-child(odd){
margin: 0 5px 5px 0;
}

#step_area .step_body .step .label_wrap label span {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  padding: .5rem;
  box-sizing: border-box;
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid var(--sub-color);
  border-radius: 5px;
  transition: .5s background-color,color;
  position: relative;
  background: #FFF4EB;
}

#step_area .step_body .step .label_wrap label span:after{
font-size: 12px;
right: 2px;
}


#step_area .step_body .step .label_wrap label input[type="radio"],
#step_area .step_body .step .label_wrap label input[type="checkbox"] {

}
#step_area .step_body .step .label_wrap label input[type="radio"]:checked + span,
#step_area .step_body .step .label_wrap label input[type="checkbox"]:checked + span {
}
#step_area .step_body .step .button_wrap {
  flex: 100%;
  padding: .5rem 0 0;
  display: flex;
  justify-content: space-evenly;
}
#step_area .step_body .step .button_wrap .button, #step_area .step_body .step .button_wrap button {
  padding: .5rem 2rem;
  font-size: 14px;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  font-size: 14px;
}
#step_area button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

#step_area .step_body .step .button_wrap button.search_start{
background: #ff4b4b;
color: #fff;
font-weight: bold;
}

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

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

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

}

.common_search_title.close{
border-radius: 6px 6px 0 0;

}

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

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

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

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

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

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

.result_search_wrap{
padding: 0 0px;
margin: 0 0 40px;
}

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

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

h2.pickup_h2{
    width: calc(100% - 60px);
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin: 0 auto 10px;
}

h2.pickup_h2:before,h2.pickup_h2:after{
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}
h2.pickup_h2:before{
    border-width: 15px 0px 15px 8px;
}

h2.pickup_h2:after{
    border-width: 15px 8px 15px 0px;
}

ul.pickup_item_wrap li{
padding: 10px 10px 10px 37px;
border-radius: 6px;
border: solid 1px #ccc;
}

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

.pickup_item_lael{
font-size: 12px;
padding: 9px 3px;
left: 10px;
}

.pickup_item_lael.__label02{

}

.pickup_item_lael.__label03{

}

a.pickup_item_logo_link{
margin: 0 5px 0 0;
}

img.pickup_item_logo{
width: 50px;
}

.pickup_item_inner{
}

.pickup_item_spec_title{
}

.pickup_item_spec_title .__name{
font-size: 16px;
}

.pickup_item_spec_title .__score{
font-size: 13.5px;
width: 102px;
white-space: nowrap;
}

.pickup_item_spec_title span.__value{
}

.pickup_item_spec{
margin: 0 5px 0 0;
}

p.pickup_item_descriptin{
font-size: 13.5px;
}

a.pickup_item_linkbutton{
box-shadow: 0 4px 0 #419a73;
width: 50px;
border-radius: 6px;
padding: 6px 0;
}

@keyframes btn_animation {
    0% {
        box-shadow: 0 4px 0 #419a73;
        top: 0px;
    }
    10% {
        box-shadow: 0 0 0 #419a73;
        top: 4px;
    }
    20% {
        box-shadow: 0 4px 0 #419a73;
        top: 0px;
    }
    30% {
        box-shadow: 0 0 0 #419a73;
        top: 4px;
    }
    40% {
        box-shadow: 0 4px 0 #419a73;
        top: 0px;
    }
}

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

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

.pickup_item_linkbutton_wrap a.pickup_item_logo_link{
}

.pickup_item_linkbutton_baloon_wrap{
top: -26px;
}

.pickup_item_linkbutton_baloon{
padding: 1px 4px 3px;
font-size: 10px;
border: solid 1px #f86f64;
border-radius: 4px;
}

.pickup_item_linkbutton_baloon:before{
bottom: -8px;
border-top: 7px solid #f86f64;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
}

.pickup_item_linkbutton_baloon:after{
bottom: -7px;
border-top: 7px solid #ffffcc;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
}

.pickup_item_linkbutton_baloon span.__color01{
font-size: 12px;
}

ul.pickup_item_wrap li.pickup_item_ver02{
padding:  15px 10px 10px 37px;
margin: 0 0 12px;
}

ul.pickup_item_wrap li.pickup_item_ver02:first-child{
margin: 15px 0 12px;
}

.pickup_tab_wrap {
}
.pickup_tab_wrap:after {
}
.pickup_tab_label {
  padding: 10px 0;
}

.pickup_tab_label i{
margin: 0 0 0 4px;
}

.pickup_tab_label:not(:last-of-type) {
  margin-right: 3px;
}
.pickup_tab_content {
}
/* アクティブなタブ */
.pickup_tab_switch:checked+.pickup_tab_label {
  font-size: 14px;
}

.pickup_tab_switch:checked+.pickup_tab_label:after {
    bottom: -8px;
    border-width: 8px 5px 0 5px;
    z-index: 1;
}

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

}

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

}



.pickup_tab_switch:checked+.pickup_tab_label+.pickup_tab_content {
  padding: 14px 10px 10px;
}


/* ラジオボタン非表示 */
.pickup_tab_switch {
}

.pickup_tab_content ul.pickup_item_wrap li{

}



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

section.tvcm{
padding: 10px 10px 14px;
border-radius: 10px;
width: calc(100% - 20px);
margin: 40px auto 40px;
border: solid 1px #f86f64;
}

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

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



.pc{
display: none;
}

p.__other_notice{
margin: 20px 0 20px;
padding: 0 10px;
font-size: 12px;
}


 /*タイプ別02
---------------------------------------------------------------------------*/

.type {
  padding: 20px 10px;
  margin-bottom: 20px;
}

.type * {
}

.type img {
}

/* --- ヘッダー --- */
.cp-main-header {
  margin-bottom: 30px;
}

.cp-main-header::before{
width: 20px;
height: 20px;
top:0px;
left: 15px;
}

.cp-main-header::after{
width: 32px;
height: 32px;
bottom:-10px;
right: 5px;
}

.cp-sub-title {
  font-size: 14px;
  margin: 0 0 8px;
}

.cp-main-title {
  font-size: 18px;
  gap: 5px;
}

.cp-title-badge {
  padding: 3px 8px;
  font-size: 14px;
  border-radius: 2px;
}

/* --- セクション共通 --- */
.cp-category-section {
  border: 2px solid #333;
  padding: 25px 15px 15px;
  margin-bottom: 28px;
  border-radius: 4px;
}

.cp-category-title {
  top: -16px; /* 枠線の上に配置 */
  padding: 5px 20px;
  font-size: 14px;
  border-radius: 20px;
}

/* --- 色分け（テーマカラー） --- */
/* 恋活：ピンク系 */
.cp-category-section.type-love {
  border-color: #ff4081; 
}
.cp-category-section.type-marriage {
  border-color: #ff9800; 
}
.cp-category-section.type-casual {
  border-color: #00bcd4; 
}
.cp-category-section.type-love .cp-category-title {
  background: #ff4081; /* ピンク */
}

/* 婚活：オレンジ系 */
.cp-category-section.type-marriage .cp-category-title {
  background: #ff9800; /* オレンジ */
}

/* 出会い：ブルー系 */
.cp-category-section.type-casual .cp-category-title {
  background: #00bcd4; /* シアン・ブルー */
}

/* --- アプリリスト --- */
.cp-app-item {
  margin-bottom: 20px;
}
.cp-app-item:last-child {
}

/* 左側：説明吹き出し */
.cp-desc-box {
  padding: 10px;
  border-radius: 4px;
  margin-right: 15px;
}

/* 吹き出しの三角 */
.cp-desc-box::after {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f5f5f5;
}

.cp-point-tag {
  width: 20px;
  height: 20px;
}

.cp-desc-head {
  font-size: 14px;
  margin: 5px 0;
}

.cp-desc-text {
  font-size: 12px;
  margin: 5px 0 0;
  font-weight: 500;
}

.cp-desc-text b{
  font-weight: 800;
}

/* 蛍光ペン風マーカー */
.cp-highlight {
}

/* 右側：アプリアイコンエリア */
.cp-app-info {
  width: 70px; /* 固定幅 */
}

.cp-app-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin: 0 auto 5px;
}

.cp-app-link {
  font-size: 11px;
}

/*タイプ別03
---------------------------------------------------------------------------*/

/* --- ベースレイアウト --- */
.mg-chart-container {
    font-size: 14px;
}

.mg-chart-container * {
  
}

.mg-chart-section {
    margin-bottom: 20px;
    padding-left: 6px;
    padding-right: 6px;
}

/* --- 左側：メインカテゴリ（縦書き） --- */
.mg-chart-sidebar {
    width: 60px; /* 左側の幅 */
    border-radius: 10px;
    font-size: 18px;
    padding: 10px 4px;
    margin-right: 6px;
    letter-spacing: 2px;
}

/* --- 右側：詳細エリア --- */
.mg-chart-content {
    gap: 6px;
}

.mg-chart-box {
    border-radius: 10px;
    min-height: 100px;
}

/* サブタイトル部分（左の小見出し） */
.mg-chart-subtitle {
    width: 30%; /* スマホレイアウト調整 */
    padding: 10px;
    font-size: 13px;
}

/* 矢印（三角）の装飾 */
.mg-chart-subtitle::after {
    right: -8px;
    border-width: 8px 0 8px 8px;
    /* 色は各カラー設定で指定 */
}

/* アプリリストエリア */
.mg-chart-apps {
    width: 70%;
    padding: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #f8f8f8;
}

/* --- アプリリストのスタイル（リスト型） --- */
.mg-app-item-list {
    margin-bottom: 8px;
}
.mg-chart-apps .mg-app-item-list:not(:last-child) {
    border-bottom: dotted 2px #ccc;
    padding-bottom: 8px;
}
.mg-app-item-list:last-child {
}
.mg-app-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.mg-app-info {
}
.mg-app-name {
    font-size: 14px;
}
.mg-app-desc {
    font-size: 12px;
}

/* --- アプリリストのスタイル（アイコンのみグリッド型） --- */
.mg-app-grid {
    gap: 10px;
}
.mg-app-grid .mg-app-icon {
    width: 50px;
    height: 50px;
}

/* --- カラーバリエーション --- */

/* ピンク（恋人探し） */
.mg-color-pink .mg-chart-sidebar {
}
.mg-color-pink .mg-chart-subtitle {
}
.mg-color-pink .mg-chart-subtitle::after {
}
.mg-color-pink .mg-chart-box {
}

/* 水色（友達探し） */
/*
.mg-color-blue .mg-chart-sidebar {
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
}
.mg-color-blue .mg-chart-subtitle {
    background-color: #6dd5fa;
}
.mg-color-blue .mg-chart-subtitle::after {
    border-color: transparent transparent transparent #6dd5fa;
}
.mg-color-blue .mg-chart-box {
    background-color: #e0f7fa;
}
*/

/* --- 淡い紫色（友達探し）に変更 --- */
.mg-color-blue .mg-chart-sidebar {
    /* グラデーション：彩度を落としたソフトなラベンダー */
}
.mg-color-blue .mg-chart-subtitle {
    /* サブタイトルの背景色：くすみのある薄紫 */
}
.mg-color-blue .mg-chart-subtitle::after {
    /* 矢印の色 */
}
.mg-color-blue .mg-chart-box {
    /* 全体の背景：ほんのり紫がかった白 */
}
/* オレンジ（結婚） */
.mg-color-orange .mg-chart-sidebar {
}
.mg-color-orange .mg-chart-subtitle {
}
.mg-color-orange .mg-chart-subtitle::after {
}
.mg-color-orange .mg-chart-box {
}
}

/* モーダルのスタイル */
.survey-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;

  .modal-content {
    background: #fff;
    padding: 32px 16px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 400px;
    display: grid;
    gap: 16px;
  }

  .modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #094067;
    text-decoration: none;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
    &:hover {
      opacity: 0.8;
    }
  }

  .modal-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .modal-buttons .btn {
    background: #fff;
    color: #fff;
    padding: 30px 0;
    color: #094067;
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    &:hover {
      background: unset !important;
      opacity: 0.8;
    }
    img{
    width: 28px;
    height: 28px;
    margin: 0 6px 0 -14px;
    }
    img.__img_small{
    width: 20px;
    height: 20px;
    }
    span.__ft_small{
      font-size: 18px;
    }
  }

  .modal-buttons .red {
    border: 3px solid #ef4565;
    background: #fff;
    box-shadow: 1px 3px 0px 0px #ef4565;
  }

  .modal-buttons .blue {
    border-radius: 8px;
    border: 3px solid #3da9fc;
    box-shadow: 1px 3px 0px 0px #3da9fc;
  }

  .modal-title {
    border-radius: 10000px;
    background: #3da9fc;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
  }

  .modal-wrapper {
    display: grid;
    gap: 10px;
  }

  .modal-question {
    color: #094067;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }

  .modal-text {
    color: #5f6c7b;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px; /* 116.667% */
  }

  .modal-buttons .btn:hover {
    background: #0056b3;
  }

}

@media screen and (max-width:768px){
  .survey-modal {
    .modal-buttons .btn {
      background: #fff;
      color: #fff;
      padding: 30px 0;
      color: #094067;
      font-size: 22px;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      &:hover {
        background: unset !important;
        opacity: 0.8;
      }
      img{
      width: 28px;
      height: 28px;
      margin: 0 6px 0 -14px;
      }
      img.__img_small{
      width: 18px;
      height: 18px;
      margin: 0 4px 0 -6px;
      }
      span.__ft_small{
        font-size: 16px;
      }
    }
  }
}