@charset "utf-8";


/*共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* フォーム全体のスタイル */
.filter .inner {
  padding: 20px;
  background-color: #fde98f;
  border-radius: 8px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

/* セレクトボックスを横並びにするための親要素 */
.filter .select-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  /* セレクトボックス間の間隔 */
}

/* セレクトボックスのスタイル */
.filter select {
  flex: 1 1 calc(33% - 20px);
  /* 各セレクトボックスを同じ幅に */
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
  appearance: none;
  /* デフォルトの矢印を非表示 */
  -webkit-appearance: none;
  /* Safari用 */
  -moz-appearance: none;
  /* Firefox用 */
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5"><path fill="none" stroke="%23333" stroke-width="1.5" d="M0 0l5 4 5-4"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  /* アイコンの位置 */
  background-size: 10px;
  /* アイコンのサイズ */
}

/* ボタンのスタイル */
.filter button {
  width: 80%;
  padding: auto;
  /* ボタンの内側の余白を調整 */
  border: none;
  border-radius: 4px;
  background-color: #ec4870;
  color: white;
  font-size: 24px;
  cursor: topicer;
  margin-top: 20px;
  /* 上部の余白を追加 */
}

.filter button:hover {
  background-color: #f888a4;
}

#search-form {
  display: flex;
  align-sets: center;
}

#search-form input[type="text"] {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
}

#search-form button {
  padding: 5px 10px;
  font-size: 12px;
  background-color: #ec4870;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: topicer;
}

#search-form button:hover {
  background-color: #f09fb3;
}

.header-wrap .btn-wrap input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  width: 130px;
  /* ここで入力フィールドの幅を設定 */
}




/* 管理人レビューの枠とタイトル部分のスタイル */
.manager_review {
  border: 2px solid #734231;
  border-radius: 10px;
  margin: 20px 0;
}

.manager_review h4 {
  background-color: #734231;
  color: white;
  padding: 10px;
  margin: 0;
  border-radius: 5px 5px 0 0;
  text-align: center;
  /* 中央揃え */
}

.manager_review_content {
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.manager_info {
  display: flex;
  align-sets: center;
}

.manager_image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.manager_name {
  font-size: 18px;
  font-weight: bold;
  color: #444;
}

.manager_divider {
  height: 1px;
  background-color: #ec4870;
  margin: 20px 0;
}

.manager_review_text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}




/*全体の設定
---------------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
	color: #444;	/*全体の文字色*/
	font-family: 'Noto Sans JP',sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic";	/*フォント種類*/
	font-size: 24px;	/*文字サイズ*/
	line-height: 1.6;		/*行間*/
	-webkit-text-size-adjust: 100%;
	width: 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;}
ul {list-style-type: none;}
img {border: none;height: auto;}
iframe {width: 100%;}

input, select {
  -webkit-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  -webkit-appearance:checkbox;
  appearance: checkbox;

}


*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
}


sup{
vertical-align: top;
}

.bgred{
background-color: red;
}

.bgblue{
background-color: blue;
}


.success-msg {
    display: none;
    position: fixed;
    width: 460px;
    height: 60px;
    line-height: 60px;
    background-color: #2020CC;
	opacity: 0.75;
    color: #fff;
	font-weight: bold;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
	z-index: 3;
}


/*コンテンツエリア
---------------------------------------------------------------------------*/

#contents{
width: 100%;
background-color: #fff;
position: relative;
overflow: hidden;
font-family: 'Zen Kaku Gothic New', sans-serif;
}

#main{
background: #fff;
}

.inner{
max-width: 750px;
margin: 0 auto;
box-sizing: border-box;
overflow: hidden;
}


.inner.inner_visible{
overflow: visible;
}



footer{
width: 100%;
text-align: center;
background-color: #333333;
color: white;
}

footer #footermenu{
background-color: #004444;
overflow: hidden;
padding: 16px 8px;
}

footer #footermenu .inner{

}

footer #footermenu ul{
float: left;
width: 25%;
padding-left: 16px;
}

footer #footermenu ul li{
text-align: left;
text-decoration: none;

}

footer #footermenu ul li a{
font-size: 12px;
color: #fff;
}

footer #about{
padding: 8px 0px 0px;
}

footer #about a{
color: #fff;
font-size: 12px;
}

footer #copyright{
padding: 8px 0px;
font-size: 12px;
}

.center{
text-align: center;
}

.sp{
display: none;
}

.all_background-pink {
  background: #ffe0e8;
  /* 背景色を変更 */
}

.all_background-pink_arrow{
position: relative;
}

.all_background-pink_arrow:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-style: solid;
  border-color: #ffe0e8 transparent transparent transparent;
  border-width: 30px 40px 0 40px;
  z-index: 1;
}

.all_background-blue {
  background: linear-gradient(to bottom, #FFD629 20%, #ffe0e8 100%);
}

/*header
---------------------------------------------------------------------------*/

header{
width: 100%;
}

.header-wrap{
display: flex;
justify-content: space-between;
align-sets: center;
padding: 15px 0;
}

header .btn-wrap {
    display: flex;
}

header .btn-wrap a{
display: block;
margin: 0 15px 0 0;
padding: 0 15px 30px 15px;
position: relative;
white-space: nowrap;
font-size: 21px;
text-decoration: none;
color: #444;
}

header .btn-wrap a i{
margin: 0 10px 0 0;
color: #FF686F;
}

header .btn-wrap a.common i{
color: #444;
}

header .btn-wrap a:last-child{
margin: 0;
}

header .btn-wrap a:after{
position: absolute;
bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
z-index: 100;
color: #666;
font-size: 14px;
font-weight: bold;
}

header img.logo{
width: 350px;
height: 50px;
}

.search-box {
  display: flex;
  align-sets: center;
}

.search-box input[type="text"] {
  width: 200px;
  height: 30px;
  /* 入力ボックスの幅 */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

.search-box button {
  width: 60px;
  height: 30px;
  padding: 5px;
  background-color: #ec4870;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  cursor: topicer;
}

.search-box button:hover {
  background-color: #f888a4;
}





/* ナビゲーション */
.nav-sp{
  position: absolute;
  top: 0;
  right: -40vw;
  width: 40vw;
  height: 200vh;
  padding: 60px 10px 0;
  background-color: rgba(255,255,255,0.85);
  text-align: left;
  transition: right 0.5s;
  z-index: 5;
}

.nav-sp.open{
  right: 0;
}

.nav-sp a{
  display: inline-block;
  padding: 5px 0;
}

html.is-fixed,html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }

/*fv
----------------------------------------------------------------------*/

section.fv{
padding: 20px 20px 0px;
margin: 0 0 40px;
}

img.fv_image{
width: 100%;
margin: 0 0 20px;
}

h3.fv_carousel_h3{
text-align: center;
font-size: 24px;
line-height: 1;
margin: 0 0 10px;
}

h3.fv_carousel_h3:before{
content: '';
display: inline-block;
width: 14px;
height: 28px;
background: url(../images/pairing__h3_before.png);
background-size: contain;
vertical-align:bottom;
margin: 0 10px 0 0;
}

h3.fv_carousel_h3:after{
content: '';
display: inline-block;
width: 14px;
height: 28px;
background: url(../images/pairing__h3_after.png);
background-size: contain;
vertical-align:bottom;
margin: 0 0 0 10px;
}

.fv_carousel{
  display: flex;
  width: 990px;
  height: 90px;
  overflow: hidden;
}

img.fv_carousel_img{
  width: auto;
  height: 100%;
  margin: 0 10px 0 0;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

img.fv_carousel_img:first-child {
  animation: loop 50s -25s linear infinite;
}

img.fv_carousel_img:last-child {
  animation: loop2 50s linear infinite;
}

a.fv_gender_banner_wrap{
display: inline-block;
margin: 20px 0 0;
}

img.fv_gender_banner{
width: 100%;
}

/*collect
----------------------------------------------------------------------*/

section.collect{
padding: 0 20px 40px;
}

h3.collect_h3,h3.compare_h3{
display: inline-block;
font-size: 28px;
color: #fff;
background: #734231;
border-radius: 100px;
line-height: 1;
padding: 15px 60px 20px;
margin: 0 0 20px;
position: relative;
}

h3.collect_h3:before,h3.compare_h3:before{
position: absolute;
content: '';
display: inline-block;
width: 40px;
height: 40px;
background: url(../images/pairing_collect_h3_before.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    left: 10;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

h3.collect_h3:after,h3.compare_h3:after{
position: absolute;
content: '';
display: inline-block;
width: 40px;
height: 40px;
background: url(../images/pairing_collect_h3_after.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    right: 10;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

h3.collect_h3.__women{
background: #EF9C0B;
}

.collect_set{
padding: 20px;
background: #fff;
border-radius: 10px;
display: flex;
align-sets: flex-start;
margin: 0 0 20px;
}

.collect_set:last-child{
margin: 0;
}

.collect_set_icon_label{
background: linear-gradient(to right, #927267, #734231);
color: #fff;
font-weight: bold;
margin: 0 20px 10px 0;
text-align: center;
line-height: 1;
font-size: 20px;
padding: 4px 0 6px;
border-radius: 0px;
}

.collect_set_icon_label:before{
content: '-';
margin: 0 4px 0 0;
font-weight: normal;
}

.collect_set_icon_label:after{
content: '-';
margin: 0 0 0 4px;
font-weight: normal;
}

.collect_set_icon_label.label__02{
background: linear-gradient(to bottom right, #FF99A7, #EF9C0B);
}

.collect_set_icon_label.label__03{
background: linear-gradient(to bottom right, #C0D4FF, #6699ff);
}

a.collect_set_img_wrap{
display: block;
margin: 0 20px 0 0;
}

img.collect_set_img{
width: 150px;
}

.collect_set_spec{
width: 100%;
}

.collect_set_spec_header{
display: flex;
justify-content: space-between;
align-sets: center;
}

.collect_set_spec_header__name{
font-size: 40px;
font-weight: bold;
line-height: 1.3;
}

.collect_set_spec_header__value{
display: flex;
align-sets: center;
font-size: 24px;
min-width: 264px;
white-space: nowrap;
}

.collect_set_spec_header__value .label{
background: #734231;
line-height: 1;
padding: 5px 10px;
border-radius: 6px;
color: #fff;
margin: 0 10px 0 0;
}

.collect_set_spec_header__value .score{
vertical-align: baseline;
}

.collect_set_spec_header__value .score span.red{
font-weight: bold;
color: #ec4870;
font-size: 28px;
}

p.collect_set_spec_description{
font-weight: bold;
}

.collect_set_spec_link_wrap{
display: flex;
flex-wrap: nowrap;
width: 100%;
}

a.collect_set_spec_link_cvbutton{
display: block;
width: calc(60% - 10px);
text-decoration: none;
color: #fff;
font-weight: bold;
background: #00BF39;
line-height: 1;
padding: 15px 0;
text-align: center;
border-radius: 6px;
box-shadow: 0 5px 0 #01962e;
margin: 0 10px 0 0;
position: relative;
overflow: hidden;
}

a.collect_set_spec_link_cvbutton:after{
 content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}

@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}


a.collect_set_spec_link_linkbutton{
display: block;
width: 40%;
text-decoration: none;
color: #fff;
font-weight: bold;
background: #6699ff;
line-height: 1;
padding: 15px 0;
text-align: center;
border-radius: 6px;
box-shadow: 0 5px 0 #002d87;
}

button#copy-url02{
background-color: transparent;
border: none;
cursor: topicer;
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{
margin: 0 0 0 4px;
}

/*dating-topic
----------------------------------------------------------------------*/

section.dating-topic{
padding: 40px 20px 0;
}

h3.dating-topic_h3{
display: inline-block;
font-size: 28px;
color: #fff;
background: #734231;
border-radius: 100px;
line-height: 1;
padding: 15px 20px 20px;
margin: 0 0 10px;
}

h2.dating-topic_h2{
font-size: 40px;
line-height: 1;
margin: 0 0 20px;
}

img.dating-topic_images{
margin: 0 0 20px;
}

p.dating-topic_description{
font-weight: bold;
width: 620px;
margin: 0 auto 40px;
}






/*position
----------------------------------------------------------------------*/

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px auto 0;
  width: 710px;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 10px;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: topicer;
  border-radius: 10px;
  flex: 1;
  line-height: 1.35;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;

}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: linear-gradient(to bottom, #FCA9A9 0%,#fa696a 100%);

}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 10px 0 0;
  opacity: 1;
  transition: .5s opacity;
  background: none;

}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

span.position_tab_label_span{
font-size: 36px;
}


section.position{
padding: 60px 0 0;
margin: 0 0 60px;
}



section.position{
  margin: 0 0 40px;
  padding: 20px 0 0;
  }
  
  
  h2.position_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.position_h2:before,h2.position_h2:after{
  position: absolute;
  display: inline-block;
  content: '';
  background-size: contain;
  width: 42px;
  height: 96px;
  }
  
  h2.position_h2:before{
  background: url(../images/match_position_h2_icon01.png);
  left: 10px;
  bottom: 10px;
  }
  
  h2.position_h2:after{
  background: url(../images/match_position_h2_icon02.png);
  right: 10px;
  bottom: 10px;
  }
  
  h2.position_h2.position_h2_02{
  background: linear-gradient(to bottom , #4EBFA5 , #76D476);
  margin: 0 0 40px;
  }
  
  h2.position_h2.position_h2_03{
  background: linear-gradient(to bottom , #518BFF , #51C9FF);
  margin: 0 0 40px;
  }
  
  
  .position_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.position_h2.position_h2_02 .position_h2_date{
  border: solid 4px #4EBFA5;
  }
  
  h2.position_h2.position_h2_02 .position_h2_date span.color01{
  color: #4EBFA5;
  }
  
  h2.position_h2.position_h2_03 .position_h2_date{
  border: solid 4px #518BFF;
  }
  
  h2.position_h2.position_h2_03 .position_h2_date span.color01{
  color: #518BFF;
  }
  
  .position_h2_date span.color01{
  font-size: 28px;
  color: #fd5392;
  }
  
  span.position_h2_span_black{
  font-size: 22px;
  color: #444;
  }

  span.position_h2_span_yellow{
  color: #f0ee2f;
  }

  .position_tab_subtitle{
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  }
  
  .position_tab_subtitle i{
  color:#ffcc00;
  margin: 0 10px 0;
  }


.position_set{
padding: 20px 20px 28px;
border-radius: 10px;
background: #fff;
position: relative;
margin: 0 0 40px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
margin-bottom: 20px;
  /* 下に20ピクセルの余白を追加 */
display: block;
  /* ここを確認 */
}

.position_set_header{
display: flex;
padding: 0 0 10px 80px;
justify-content: space-between;
align-sets: baseline;
border-bottom: solid 2px #EF9C0B;
margin: 0 0 20px;
}

.position_set_header_rank{
display: block;
position: absolute;
background: url(../images/kg_position-set_rank-icon04-05.png);
content: '';
background-size: contain;
background-repeat: no-repeat;
width: 72px;
height: 84px;
top: -10px;
left: 10px;
text-align: center;
font-size: 40px;
font-weight: bold;
line-height: 1;
padding: 10px 0 0;
color: #666;
}

.position_set.position_set__rank01 .position_set_header_rank{
background: url(../images/kg_position-set_rank-icon01.png);
}

.position_set.position_set__rank02 .position_set_header_rank{
background: url(../images/kg_position-set_rank-icon02.png);
}

.position_set.position_set__rank03 .position_set_header_rank{
background: url(../images/kg_position-set_rank-icon03.png);
}

.position_set.position_set__rank04 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon04-05.png);
}

.position_set.position_set__rank05 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon04-05.png);
}

.position_set.position_set__rank06 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank07 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank08 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank09 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank10 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank11 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank12 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank13 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank14 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
}

.position_set.position_set__rank15 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
}

/* ランキングの6位のアイテムの下部に余白を追加 */
.position_set__rank06 {
  margin-bottom: 20px;
  /* 20pxの余白を追加 */
}


h3.position_set_header_h3{
font-size: 40px;
}

.position_set_header_score{
font-size: 28px;
}

.position_set_header_score span.color-gold{
color: #f0ee2f;
}

.position_set_header_score span.color-gray{
color: #ccc;
}

.position_set_header_score span.color-score{
font-family: 'Anton', sans-serif, cursive;
color: #EF9C0B;
}

.position_set_maincopy{
font-size: 36px;
font-weight: bold;
margin: 0 0 20px;
}

img.position_set_banner{
width: 100%;
}

a.position_set_banner_wrap{
display: block;
margin: 0 0 20px;
}

.position_set_topic-box{
background:  #ffe0e8;
padding: 60px 20px 20px;
position: relative;
margin: 0 0 20px;
}

.position_set_topic-box_h4_wrap{
position: absolute;
top: 0;
left: 0;
}

h4.position_set_topic-box_h4{
background: #EF9C0B;
line-height: 1;
display: inline-block;
position: relative;
color: #fff;
padding: 10px 0px 12px 15px;
height: 46px;
}

h4.position_set_topic-box_h4:after{
content: '';
position: absolute;
top:0;
right: -32px;
width: 0;
height: 0;
border-style: solid;
border-width: 46px 32px 0 0;
border-color: #EF9C0B transparent transparent transparent;
}


ul.position_set_topic-box_ul{
padding: 0 0 0 33px;
}


ul.position_set_topic-box_ul li{
font-size: 28px;
font-weight: bold;
position: relative;
margin: 0 0 10px;
}

ul.position_set_topic-box_ul li:last-child{
margin: 0;
}

ul.position_set_topic-box_ul li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: -33px;
	color: #EF9C0B;
}

.position_set_topic-box.box02{
background: #e7efff;
}

.position_set_topic-box.box02 h4.position_set_topic-box_h4{
background: #6699ff;
}

.position_set_topic-box.box02 h4.position_set_topic-box_h4:after{
border-color: #6699ff transparent transparent transparent;
}


h3.position_set_review__h3{
border-radius: 10px 10px 0 0;
    background: #734231;
    text-align: center;
    color: #fff;
    line-height: 1;
    padding: 10px 0;
	font-size: 24px;
}

h3.position_set_review__h3 i{
margin: 0 5px 0 0;
color: #B6EDF2;
}



li.position_set_review{
position: relative;
}

ul.position_set_review__wrap li.position_set_review:not(:last-child){
margin: 0 0 20px;
padding: 0 0 20px;
}

ul.position_set_review__wrap li.position_set_review:not(:last-child):after{
position: absolute;
display: block;
content: '';
background: #ccc;
height: 2px;
width: calc(100%);
bottom: 0;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
 }

.position_set_review__profile{
padding: 0 0 0 84px;
position: relative;
font-size: 24px;
}

.position_set_review__profile:before{
position: absolute;
content: '';
display: inline-block;
width: 64px;
height: 64px;

left: 0;
background-repeat: no-repeat;
}






.position_set_review__profile_title{
line-height: 1.25;
font-weight: bold;
color: #734231;
}

.position_set_review__profile_detail{
display: flex;
align-sets: center;
}

._detail_star{
margin: 0 20px 0 0;
}

span._detail_star_gold{
color: #ffcc00;
}

span._detail_star_gray{
color: #ccc;
}

._detail_age-occuaption{
font-size: 20px;
}

p.position_set_review__description{
font-size: 20px;
}

.position_set_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: topicer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	font-weight: bold;
}

ul.position_set_review__wrap{
padding: 20px;
border: solid 2px #734231;
  position: relative;
  overflow: hidden;
  height: 240px;
}

ul.position_set_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.position_set_review__wrap{
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ ul.position_set_review__wrap::before {
  display: none; /*チェックされていたら、grad-setのbeforeを非表示にする*/
}

a.position_set_cvbutton{
text-align: center;
font-size: 36px;
display: block;
text-decoration: none;
color: #fff;
background: #00BF39;
font-weight: bold;
box-shadow: 0 8px 0 #01962e;
border-radius: 10px;
padding: 20px 0;
position: relative;
overflow: hidden;
}

a.position_set_cvbutton:before{
position: absolute;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 20px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

a.position_set_cvbutton:after{
 content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}

.position_set_campaign_box{
border: solid 2px #EF9C0B;
border-radius: 10px;
text-align: center;
position: relative;
padding: 40px 20px 20px;
background: #FFFAF0;
margin: 40px 0 20px;
}

h4.position_set_campaign_h4{
position: absolute;
display: inline-block;
background: #EF9C0B;
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.position_set_campaign_text{
font-weight: bold;
font-size: 24px;
}

p.position_set_campaign_text i{
color: #ffcc00;
}


span.position_set_campaign_text_span{
font-size: 36px;
color: #EF9C0B;
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;
}

.position_set_campaign_code_wrap{
margin: 10px 0 0;
display: flex;
justify-content: center;
align-sets: center;
}

.position_set_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{
        background-color: transparent;
        border: none;
        cursor: topicer;
        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{
position: absolute;
    content: '\f0c5';
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
	left: 10px;
	color: #fff;
}


p.position_set_notification{
margin: 18px 0 0;
color: #888;
}

/*section.compare
----------------------------------------------------------------------*/


section.compare{
padding: 60px 20px 0;
margin: 0 0 60px;
}

h3.compare_h3{
}

table.compare_table{
width: 100%;
border-collapse: collapse;
font-size: 24px;
background: #fff;
}

table.compare_table th,table.compare_table td{
border: solid 1px #ccc;
}

table.compare_table th{
border-top: solid 8px #EF9C0B;
background: #f5f5f5;
padding: 5px 0;
}

table.compare_table td{
text-align: center;
padding: 20px 0;
font-weight: bold;
}

table.compare_table tr td:nth-child(2),table.compare_table tr td:nth-child(3){
width: 140px;
}

table.compare_table tr td:nth-child(4){
text-align: left;
padding: 10px 0 10px 40px;
line-height: 1.8;
}

a.compare_table_appicon_wrap{
display: block;
margin: 0 0 5px;
}

img.compare_table_appicon{
width: 100px;
}

.compare_table_name{
font-weight: bold;
}

a.compare_table_dlbutton{
display: block;
width: calc(100% - 40px);
text-align: center;
background: #00BF39;
box-shadow: 0 4px 0 #01962e;
color: #fff;
text-decoration: none;
border-radius: 8px;
margin: 0 auto 0;
padding: 5px 0 7px;
line-height: 1;
font-weight: normal;
font-size: 20px;
}


table.compare_table span.label_male,table.compare_table span.label_female{
padding: 0px 10px;
background: #0099ff;
border-radius: 4px;
color: #fff;
margin: 0 10px 0 0;
}

table.compare_table span.label_female{
background: #ff6699;
}

span.compare_table_amount_label{
font-weight: normal;
font-size: 20px;
}

p.compare_notification{
margin: 10px 0 0;
}

.tab-wrap02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
}
.tab-wrap02:after {
  }

.tab-label02 {
  color: #999;
  background: LightGray;
  font-weight: bold;
  
  white-space: nowrap;
  text-align: center;
  padding: 5px .5em 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: topicer;
  border-radius: 10px 10px 0 0;
  flex: 1;
}

.tab-label02 span.tab-label02_span01{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/pare_tabicon01.png);
}

.tab-label02 span.tab-label02_span02{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/pare_tabicon02.png);
}

.tab-label02 span.tab-label02_span03{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/pare_tabicon02.png);
}



.tab-label02:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content02 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */

.tab-switch02:checked+.tab-label02 {
  background: #EF9C0B;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  color: #fff;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span01{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/pare_tabicon01.png);
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span02{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/pare_tabicon02.png);
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span03{
display: inline-block;
width: 56px;
height: 56px;
content: '';
background: url(../images/pare_tabicon02.png);
}

.tab-switch02:checked+.tab-label02+.tab-content02 {
  height: auto;
  overflow: auto;
  padding: 0px;
  opacity: 1;
  transition: .5s opacity;
  background: #fff;

}
/* ラジオボタン非表示 */
.tab-switch02 {
  display: none;
}




/*conclusion
----------------------------------------------------------------------*/
.conclusion_header01{
background: #fff;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-sets: center;
margin: 0 0 15px;
}

.conclusion_header01_counter{
font-size: 24px;
}

span.conclusion_header01_counter_color{
color: #ff4b4b;
font-weight: bold;
}

a.conclusion_header01_change-button_wrap{
text-decoration: none;
}

.conclusion_header01_change-button{
color: #888;
font-weight: bold;
font-size: 20px;
padding: 15px 10px;
background: #f4f4f4;
border-radius: 6px;
line-height: 1;
border: solid 2px #ccc;
}

.conclusion_header01_change-button i{
margin: 0 10px 0 0 ;
}

.conclusion_header02{
background: #d5fbff;
margin: 0 0 15px;
}

h3.conclusion_header02_h3{
font-weight: normal;
color: #734231;
margin: 0 0 15px;
}

h3.conclusion_header02_h3 i{
margin: 0 5px 0 0;

}

.conclusion_header02_wrap{
padding: 15px 0 30px;
}

ul.conclusion_header02_settings_wrap{
padding: 30px;
background: #fff;
border-radius: 5px;
display: flex;
}

ul.conclusion_header02_settings_wrap li{
padding: 5px 10px 5px 20px;
border: solid 2px #734231;
color: #734231;
font-weight: 600;
margin: 0 10px 0 0;
position: relative;
}

ul.conclusion_header02_settings_wrap li:after{
position: absolute;
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: 5px;
	color: #734231;
}

#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;
}


.conclusion_set{
padding: 40px 40px;
border-radius: 15px;
background: #fff;
margin: 0 0 30px;
border: solid 2px #91DCFF;
}

.conclusion_set:last-child{
margin: 0 0 60px;
}

a.conclusion_set_h3_wrap{
text-decoration: none;
color: #666;
display: block;
margin: 0 0 15px;
border-bottom: solid 1px #bbb;
position: relative;
}

a.conclusion_set_h3_wrap:after{
position: absolute;
content: '〉';
font-size: 36px;
font-weight: bold;
color: #bbb;
right: -20px;
top: -8px;
}

h3.conclusion_set_h3{
font-size: 36px;
display: block;
line-height: 1;
padding: 0 0 20px;
}

.conclusion_set_maincopy{
font-size: 27px;
text-align: center;
background: #DBE9F5;
padding: 10px;
margin: 0 0 30px;
position: relative;
border-radius: 10px;
}

.conclusion_set_maincopy:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: #DBE9F5 transparent transparent transparent;
    border-width: 30px 20px 0 20px;
    z-index: 1;
}



a.conclusion_set_banner_wrap{
margin: 0 auto 15px;
display: block;
text-align: center;
}

img.conclusion_set_banner{
width: 320px;
}

table.conclusion_set_table{
width: 100%;
border-collapse: collapse;
margin: 0 0 40px;
font-size: 24px;
border-radius: 10px;
}

table.conclusion_set_table th,table.conclusion_set_table td{
line-height: 1;
padding: 10px;
width: 50%;
text-align: center;
border-bottom: solid 2px #91DCFF;
}

table.conclusion_set_table tr:last-child th,table.conclusion_set_table tr:last-child td{
border-bottom:none;
}

table.conclusion_set_table th{
background: #D0F0FF;
}

tr.conclusion_set_table_value th,tr.conclusion_set_table_amount th,tr.conclusion_set_table_area th{
padding: 30px 0px;
}

tr.conclusion_set_table_workstyle ul,tr.conclusion_set_table_occupation ul{
display: flex;
flex-wrap: wrap;
}

tr.conclusion_set_table_workstyle ul li,tr.conclusion_set_table_occupation ul li{
flex-basis:calc(50% - 5px);
padding: 8px 0px;
line-height: 1;
border-radius: 100px;
color: #FF686F;
margin-top: 10px;
font-weight: normal;
font-size: 20px;
white-space: nowrap;
border: solid 2px #FF9196;
background: #FFEEEF;
}

tr.conclusion_set_table_workstyle ul li.off,tr.conclusion_set_table_occupation ul li.off{
background: #f5f5f5;
color: #bbb;
border: solid 1px #bbb;
font-weight: normal;
}

tr.conclusion_set_table_workstyle ul li:nth-child(odd),tr.conclusion_set_table_occupation ul li:nth-child(odd){
margin-right: 5px;
}

tr.conclusion_set_table_workstyle ul li:nth-child(even),tr.conclusion_set_table_occupation ul li:nth-child(even){
margin-left: 5px;
}

tr.conclusion_set_table_workstyle ul li:nth-of-type(1),tr.conclusion_set_table_workstyle ul li:nth-of-type(2),tr.conclusion_set_table_occupation ul li:nth-of-type(1),tr.conclusion_set_table_occupation ul li:nth-of-type(2){
margin-top: 0;
}




a.conclusion_set_linkbutton{
margin: 30px auto 0;
padding: 15px 0px;
width: 360px;
text-align: center;
background: rgb(181,181,181);
background: linear-gradient(45deg, rgba(181,181,181,1) 0%, rgba(255,154,49,1) 0%, rgba(255,81,50,1) 100%);
display: block;
text-decoration: none;
color: #fff;
font-size: 24px;
font-weight: bold;
border-radius: 100px;
border: solid 1px #ff4500;
}

section.conclusion #search{
position: relative;
}

section.conclusion #search .form-wrap form{
width: 100%;
}

section.conclusion #search h2{
background: #734231;
color: #fff;
}



span.gold{
color: #ffcc00;
}

span.gray{
color: #ccc;
}

span.score{
color: #FF686F;
font-family: 'Anton', sans-serif, cursive;
}

.conclusion_set02{
padding: 20px;
border: solid 2px #EF9C0B;
border-radius: 10px;
margin: 0 0 20px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}

.conclusion_set02:last-child{
margin: 0 0 60px;
}

.conclusion_set02_header{
display: flex;
margin: 0 0 20px;
}

.conclusion_set02_header_left{
text-align: center;
margin: 0 20px 0 0 ;
}

a.conclusion_set02_header_left_appicon_wrap{
display: block;
margin: 0 0 0;
}

img.conclusion_set02_header_left_appicon{
width: 150px;
}

a.conclusion_set02_header_left_textlink{
color: #734231;
font-weight: bold;
font-size: 28px;
}

.conclusion_set02_header_right{
width: 100%;
}

ul.conclusion_set02_header_right_topic{
}

ul.conclusion_set02_header_right_topic li{
position: relative;
padding: 10px 0 10px 36px;
border-top: solid 1px #eee;
}

ul.conclusion_set02_header_right_topic li:last-child{
border-bottom: solid 1px #eee;
}

ul.conclusion_set02_header_right_topic li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 26px;
	color: #EF9C0B;
	left: 0px;
}

table.conclusion_set02_table{
width: 100%;
font-size: 24px;
border-collapse: separate;
border-spacing: 4px 2px;
margin: 0 0 20px;

}

table.conclusion_set02_table th{
padding: 10px 0px;
font-size: 20px;
background: #ffe0e8;
width: calc(100% / 3);
}

table.conclusion_set02_table td{
text-align: center;
padding: 20px 0;
background: #f9f9f9;
font-weight: bold;
}

span.conclusion_set02_table_label_amount{
font-weight: bold;
color: #FC040A;
font-size: 22px;
}

table.conclusion_set02_table tr td:nth-child(3){
line-height: 1.6;
}

.conclusion_set02_table_inner{
display: inline-block;
text-align: left;
}


span.conclusion_set02_table_span_male,span.conclusion_set02_table_span_female{
    padding: 0px 10px;
    background: #0099ff;
    border-radius: 4px;
    color: #fff;
    margin: 0 10px 0 0;
}

span.conclusion_set02_table_span_female{
background: #ff6699;
}

a.conclusion_set02_dlbutton{
    text-align: center;
    font-size: 28px;
    display: block;
    text-decoration: none;
    color: #fff;
    background: #EF9C0B;
    font-weight: bold;
    box-shadow: 0 8px 0 #D98B02;
    border-radius: 10px;
    padding: 20px 0;
    position: relative;
	margin: 0 auto 0;
	max-width: 480px;
}



/*検索ボックス
----------------------------------------------------------------------*/

#search h2 span.color{
color: #ee827c;
}

#search{
margin:0px auto 0px;
position: relative;
}

#search .inner{
border: solid 1px #004444;
background-color: #f5f5f5;
}

#search h2{
background-color: #fff;
text-align: center;
border-radius: 20px 20px 0px 0px;
color: #666;
padding: 20px 0px;
font-size: 24px;

}

#search h2 i{
margin: 0 10px 0 0;

}

#search .form-wrap{

}

#search .form-wrap form{
background: #fff;
padding: 30px;
box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
border-radius: 10px;
}

#search select{
width: 100%;
padding: 20px 20px 20px 280px;
border-radius: 40px;
font-size: 20px;
font-weight: bold;
box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

#search .select-wrap{
position: relative;
margin: 0 0 20px;
}

#search .select-wrap:before{
position: absolute;
content: 'デフォルト';
display: inline-block;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#search .select-wrap.qs1:before{
content:'アプリの利用目的';
}

#search .select-wrap.qs2:before{
content:'ご年齢';
}

#search .select-wrap.qs3:before{
content:'料金形態';
}

#search .select-wrap.qs4:before{
content:'施設';
}


#search table{
width: 100%;
}

#search input[type="submit"]{
    width: 50%;
    height: 60px;
    margin: 20px auto 0px;
    padding: 0 20px;
    display: block;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    background:   #ff4b4b;
    color: #fff;
    font-weight: bold;
    cursor: topicer;
	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 :topicer;
    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;
}



/*検索結果並べ替え
----------------------------------------------------------------------*/

#conclusion{
padding: 20px 20px 0px;
}

#conclusion section.count-area{
background: #fff;
padding: 20px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-sets: center;
margin: 0 0 20px;
}

#conclusion section.count-area .counter{
font-size: 24px;
}

#conclusion section.count-area .counter span.color{
color: #ff4b4b;
font-weight: bold;
}

#conclusion section.count-area .change-button{
color: #888;
font-weight: bold;
font-size: 20px;
padding: 15px 10px;
background: #f4f4f4;
border-radius: 6px;
line-height: 1;
border: solid 2px #ccc;
}

#conclusion section.count-area .change-button i{
margin: 0 10px 0 0 ;
}

#conclusion section.count-area a{
text-decoration: none;
}



.set-conclusion{
border-radius: 6px;
padding: 20px;
background: #fff;
margin: 0 0 20px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}

.set-conclusion .hashtag{
display: flex;
flex-wrap: wrap;
margin: 0 0 12px;
}

.set-conclusion .hashtag .hashtag-set{
background: #c90e38;
line-height: 1;
color: #fff;
font-size: 20px;
font-weight: normal;
padding: 8px 8px 8px 32px;
position: relative;
border-radius: 6px;
margin: 0 8px 8px 0;
}

.set-conclusion .hashtag .hashtag-set:before{
content: '\f292';
font-family: "Font Awesome 5 Free";
font-weight: 900;
position: absolute;
left: 6px;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
}

.set-conclusion .spec{
display: flex;
flex-wrap: nowrap;
}

.set-conclusion .spec .left{
width: 36%;
margin: 0 20px 20px 0;
}

.set-conclusion .spec a.service-img{
margin: 0 0 20px;
display: block;
}

.set-conclusion .spec a.service-img img{
width: 100%;
}

.set-conclusion .spec .atm-box{
border: solid 1px #ccc;
position: relative;
padding: 20px 0px 10px;
text-align: center;
}

.set-conclusion .spec .atm-box .label{
position: absolute;
background: #fff;
top:-8px;
line-height: 1;
padding: 0 4px;
font-size: 20px;
font-weight: bold;
color: #888;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}

.set-conclusion .spec .atm-box img.atm-logo{
width: 48px;
margin: 0 6px 0 0;
}

.set-conclusion .spec .atm-box img.atm-logo:last-child{
margin: 0;
}

.set-conclusion .spec .right{
width: 64%;
margin: 0 0 20px;
}

.set-conclusion .spec .company{
font-size: 24px;
color: #888;
line-height: 1;
margin: 0 0 10px;
}

.set-conclusion .spec h3{
font-size: 36px;
line-height: 1;
margin: 0 0 10px;
}

.set-conclusion .spec .user{
font-size: 24px;
font-weight: bold;
color: #888;
line-height: 1;
margin: 0 0 20px;
}

.set-conclusion .spec .user span.color{
color: #ff4b4b;
}

.set-conclusion .spec .user sup{
font-size: 18px;
}

.set-conclusion table{
width: 100%;
text-align: left;
font-size: 20px;
border-collapse: collapse;
}

.set-conclusion table tr{
border-bottom: dotted 2px #ccc;
}

.set-conclusion table th,.set-conclusion table td{
padding: 8px 0px;
line-height: 1;
}

.set-conclusion table th{
color: #888;
}

.set-conclusion table td{
font-weight: bold;
}

.set-conclusion ul.topic{
padding: 0px 0px 20px;
}

.set-conclusion ul.topic li{
font-size: 24px;
font-weight: bold;
}

.set-conclusion ul.topic li:before{
content: '\f14a';
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #ff4b4b;
margin: 0 10px 0 0;
}

.set-conclusion .countdown{
display: flex;
border-radius: 6px;
padding: 10px 10px 10px 20px;
font-size: 24px;
font-weight: bold;
align-sets: center;
justify-content: center;
margin: 0 auto 20px;
position: relative;
width: 100%;
border: solid 2px #ccc;
}

.set-conclusion .countdown .countdown-label{
margin: 0 20px 0 0;
}

.set-conclusion .countdown .countdown-timer{
padding: 10px;
border-radius: 10px;
background: #222;
color: #fff;
line-height: 1;
}

.set-conclusion .countdown .countdown-timer i{
margin-right: 10px;
font-size: 26px;
vertical-align: -2px;
}

.set-conclusion .countdown .countdown-timer span#timer{
color: #ffcc00;
}

.set-conclusion a.cvbutton{
display: block;
font-size: 28px;
font-weight: bold;
text-decoration: none;
text-align: center;
background: #ff4b4b;
color: #fff;
line-height: 1;
padding: 30px 0px;
border-radius: 50px;
box-shadow: 0px 8px 0px #992d2d;
margin: 0 auto 8px;
width: 520px;
position: relative;
}

.set-conclusion a.cvbutton:after{
content: '\f054';
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 32px;
position: absolute;
right: 20px;
}

.set-conclusion p.addition{
margin: 28px 0 0;
color: #666;
font-size: 20px;
}





/*about
---------------------------------------------------------------------------*/

section.about{
width: 100%;
}

h2.about_h2{
font-size: 36px;
position: relative;
display: inline-block;
padding: 0 0 10px;
margin: 0 0 40px;
}

h2.about_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 80px;
    height: 4px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #FF9196;
}

table.about_table{
width: 100%;
border-collapse: collapse;
text-align: left;
margin: 0 auto 60px;
font-size: 24px;
}

table.about_table tr{
border-bottom: dotted 2px #ccc;
}

table.about_table tr:first-child{
border-top: dotted 2px #ccc;
}

table.about_table th,table.about_table td{
padding: 15px 0px;
}

h4.about_h4{
font-size: 24px;
border-left: solid 6px #888;
padding: 0 0 0 6px;
line-height: 1.25;
margin: 0 0 15px;
}

p.about_p{
margin: 0 0 30px;
}

p.about_p:last-child{
margin: 0 0 60px;
}

/*survey
---------------------------------------------------------------------------*/

section.survey{
width: 100%;
max-width: 2000px;
}

h2.survey_h2{
font-size: 36px;
position: relative;
display: inline-block;
padding: 0 0 10px;
margin: 0 0 40px;
}

h2.survey_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 80px;
    height: 4px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #FF9196;
}

h3.survey_h3{
font-size: 24px;
border-left: solid 6px #FF9196;
border-bottom: solid 1px #FF9196;
padding: 0 0 6px 6px;
line-height: 1.35;
margin: 0 0 15px;
}

p.survey_p{
margin: 0 0 30px;
}

p.survey_p:last-child{
margin: 0 0 60px;
}

/*notice
---------------------------------------------------------------------------*/

section.notice{
margin: 0 0 60px;
padding: 0 20px;
}

.notice_inner{
padding: 20px;
border-radius: 10px;
background: #f5f5f5;
}

h3.notice_h3{
font-size: 24px;
margin: 0 0 10px;
}

p.notice_description{
font-size: 20px;
}

a.notice_description_link{
color: #444;
font-weight: bold;
}

a.notice_description_link:after{
content: '\f101';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 10px;

}

/*post
---------------------------------------------------------------------------*/

section.post{
padding: 20px;
margin: 20px;
background: #fff;
border-radius: 10px;
}

h2.post_h2{
background-color: #EF9C0B;
background-image: url(../images/pairing_post_h2_bgimage.png);
background-size: 100%;
color: #fff;
padding: 20px;
font-size: 40px;
line-height: 1.35;
border-radius: 10px;
text-shadow: 0 0 2px #EF9C0B;
}

span.post_h2_subtitle{
font-size: 20px;
}

h2.post_h2.post_h2_wide{
padding: 30px 20px;
}

.post_date{
text-align: right;
font-weight: bold;
color: #888;
margin: 0 0 20px;
}

.post_date:before{
content: '\f017';
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
    margin: 0 5px 0 0;
}

p.post_description{
margin: 0 0 30px;
font-size: 28px;
}

h3.post_h3{
border-left: solid 8px #EF9C0B;
padding: 0 0 0 16px;
line-height: 1.35;
margin: 0 0 20px;
font-size: 28px;
}

a.post_listlink{
color: #EF9C0B;
font-weight: bold;
}

a.post_listlink:before{
content: '\f100';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

ul.post_list{
padding: 40px 0 0 30px;
}

ul.post_list li{
display: inline-block;
position: relative;
line-height: 1.35;
}

ul.post_list li:before{
position: absolute;
content: '\f105';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
    left: -20px;
    color: #EF9C0B;
}

a.post_list_set_wrap{
text-decoration: none;
display: inline-block;
font-size: 28px;
margin: 0 0 30px;
color: #444;
}



/*画面幅～750px
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:768px){

.sp{
display: block;
}

body{
font-size: 14px;
}



/*コンテンツ
---------------------------------------------------------------------------*/


#contents{
width: 100%;
margin:0;
overflow: hidden;
}

.inner{
box-sizing: border-box;
width: 100%;
overflow: hidden;
}

.success-msg {
    display: none;
    position: fixed;
    width: 95vw;
    height: 40px;
    line-height: 40px;
    background-color: #2020CC;
	opacity: 0.75;
    color: #fff;
	font-weight: bold;
    top: calc(50vh - 50px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
	z-index: 3;
}


/*_new
---------------------------------------------------------------------------*/

header{
width: 100%;
padding: 10px;
overflow: hidden;
}


header img.logo{
width: 145px;
height: 20px;
}


img.logo-link{
width: 140px;
}
.tablesorter-default{
font-size: 10px;
}

#search.search-conclusion{
margin: 0 0 5px;
}

/*nav
---------------------------------------------------------------------------*/

.nav-sp{
width: 50vw;
right: -50vw;
padding: 60px 0px 0px;
}

header .btn-wrap a{
font-size: 12px;
padding: 0 5px 15px 10px;
font-weight: bold;
}

header .btn-wrap a i{
margin: 0 5px 0 0;
}

.header-wrap{
padding: 0px 0px;
}

#question{
padding: 0px 10px;
margin: 0 0 30px;
}

#question h2{
font-size: 20px;
margin: 0 0 10px;
}

#question .title{
font-size: 14px;
padding: 10px 10px 10px 35px;
}

#question .title::before{
left: 10px;
}

#question .title::after{
left: 10px;
}

#question .box{
padding: 10px;
}

#question .box p{
font-size: 12px;
}

#search{
position: relative;
}

section.conclusion #search{
position: relative;
top:0px;
padding: 20px 10px 0px;
}

section.conclusion #search .form-wrap{
margin: 0 0 10px;;
padding: 0;
}

#search .form-wrap{
padding: 0px 10px;
margin: 0 0 20px;
}

#search h2{
font-size: 14px;
border-radius: 10px 10px 0px 0px;
padding: 10px 0px;
}

#search .form-wrap form{
padding: 15px;
border-radius: 0 0 6px 6px;
width: calc(100vw - 40px);
}

#search select{
padding: 10px 10px 10px 150px;
font-size: 14px;
margin: 0 0 10px;
}

#search .select-wrap{
margin: 0 0 10px;
}

#search .select-wrap:last-child{
margin: 0;
}

#search .select-wrap:before{
left: 15px;
font-size: 12px;
top: 20px;
}


.acd-check:checked + .acd-label + .acd-content{
padding: 10px 0;
height: 140px;
}

.acd-label{
margin: 10px auto 0px;
}

.acd-content table td{
font-size: 12px;
padding: 10px;
}

#search input[type="submit"]{
font-size: 14px;
height: 40;
margin: 10px auto 0px;
height: 35px;
}


/*fv
----------------------------------------------------------------------*/

section.fv{
padding: 10px 10px 0px;
margin: 0 0 20px;
}

img.fv_image{
width: 100%;
margin: 0 0 10px;
}

h3.fv_carousel_h3{
font-size: 14px;
margin: 0 0 10px;
position: relative;
}

h3.fv_carousel_h3:before{
position: absolute;
width: 12px;
height: 14px;
background: url(../images/pairing__h3_before.png);
background-size: contain;
background-repeat: no-repeat;
left: -4px;
bottom: 0;
}

h3.fv_carousel_h3:after{
position: absolute;
width: 12px;
height: 14px;
background: url(../images/pairing__h3_after.png);
background-size: contain;
background-repeat: no-repeat;
right: -4px;
bottom: 0;
}

.fv_carousel{
  width: 495px;
  height: 45px;
}

img.fv_carousel_img{
margin: 0 5px 0 0;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

img.fv_carousel_img:first-child {
  animation: loop 50s -25s linear infinite;
}

img.fv_carousel_img:last-child {
  animation: loop2 50s linear infinite;
}

a.fv_gender_banner_wrap{
margin: 10px 0 0;
}

img.fv_gender_banner{
}


/*collect
----------------------------------------------------------------------*/

section.collect{
padding: 0 10px 20px;
}

h3.collect_h3,h3.compare_h3{
font-size: 16px;
padding: 8px 30px 10px;
margin: 0 0 10px;
}

h3.collect_h3:before,h3.compare_h3:before{
width: 20px;
height: 20px;
background: url(../images/pairing_collect_h3_before.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

h3.collect_h3:after,h3.compare_h3:after{
width: 20px;
height: 20px;
background: url(../images/pairing_collect_h3_after.png);
background-size: contain;
filter: opacity(70%);
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.collect_set{
padding: 10px;
border-radius: 6px;
margin: 0 0 10px;
}

.collect_set:last-child{
}

.collect_set_icon_label{
margin: 0 10px 5px 0;
font-size: 12px;
padding: 2px 0 4px;
}

.collect_set_icon_label:before{
margin: 0 2px 0 0;
}

.collect_set_icon_label:after{
margin: 0 0 0 2px;
}

.collect_set_icon_label.label__02{

}

.collect_set_icon_label.label__03{

}

a.collect_set_img_wrap{
margin: 0 10px 0 0;
}

img.collect_set_img{
width: 75px;
}

.collect_set_spec{
}

.collect_set_spec_header{
align-sets: flex-start;
}

.collect_set_spec_header__name{
font-size: 15px;
width: auto;
}

.collect_set_spec_header__value{
font-size: 12px;
min-width: 150px;
justify-content: flex-end;
}

.collect_set_spec_header__value .label{
padding: 3px 5px 5px;
border-radius: 3px;
margin: 0 5px 0 0;
font-size: 12px;
}

.collect_set_spec_header__value .score{

}

.collect_set_spec_header__value .score span.red{
font-size: 14px;
}

p.collect_set_spec_description{
font-weight: bold;
}

.collect_set_spec_link_wrap{
}

a.collect_set_spec_link_cvbutton{
width: calc(60% - 5px);
padding: 10px 0;
border-radius: 6px;
box-shadow: 0 3px 0 #01962e;
margin: 0 5px 0 0;
}

a.collect_set_spec_link_linkbutton{
padding: 10px 0;
border-radius: 6px;
box-shadow: 0 3px 0 #002d87;
}

button#copy-url02{
font-size: 14px;
}

/*dating-topic
----------------------------------------------------------------------*/

section.dating-topic{
padding: 20px 10px 0;
}

h3.dating-topic_h3{
font-size: 16px;
padding: 8px 10px 10px;
margin: 0 0 10px;
}

h2.dating-topic_h2{
font-size: 20px;
line-height: 1;
margin: 0 0 10px;
}

img.dating-topic_images{
display: block;
margin: 0 auto 10px;
width: calc(100vw - 20px);
}

p.dating-topic_description{
width: 310px;
margin: 0 auto 20px;
}

.all_background-pink_arrow:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    z-index: 1;
}


/*position
----------------------------------------------------------------------*/

.tab-wrap {
  margin:10px auto 0;
  width: calc(100vw - 20px);
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 10px;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: topicer;
  border-radius: 6px;
  flex: 1;
  line-height: 1.35;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;

}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: linear-gradient(to bottom, #FCA9A9 0%,#fa696a 100%);

}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 5px 0 0;
  opacity: 1;
  transition: .5s opacity;
  background: none;

}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

span.position_tab_label_span{
font-size: 18px;
}

section.position{
padding: 30px 0 0;
margin: 0 0 20px;
}


h2.position_h2{
  padding: 25px 0;
  margin: 0 0 10px;
  font-size: 18px;
  }
  
  h2.position_h2:before,h2.position_h2:after{
  width: 21px;
  height: 48px;
  }
  
  h2.position_h2:before{
  background: url(../images/match_position_h2_icon01.png);
  background-size: contain;
  left: 5px;
  bottom: 10px;
  }
  
  h2.position_h2:after{
  background: url(../images/match_position_h2_icon02.png);
  background-size: contain;
  right: 5px;
  bottom: 10px;
  }
  
  
  h2.position_h2.position_h2_02{
  margin: 0 0 20px;
  }
  
  h2.position_h2.position_h2_03{
  margin: 0 0 20px;
  }
  
















  
  .position_h2_date {
      padding: 3px 10px 5px;
      border: solid 2px #fd5392;
      top: -14px;
      font-size: 12px;
  }
  
  .position_h2_date span.color01{
  font-size: 18px;
  color: #fd5392;
  }
  
  h2.position_h2.position_h2_02 .position_h2_date{
  border: solid 4px #4EBFA5;
  }
  
  h2.position_h2.position_h2_02 .position_h2_date span.color01{
  color: #4EBFA5;
  }
  
  h2.position_h2.position_h2_03 .position_h2_date{
  border: solid 4px #518BFF;
  }
  
  h2.position_h2.position_h2_03 .position_h2_date span.color01{
  color: #518BFF;
  }

.position_set{
padding: 10px 10px 14px;
border-radius: 6px;
margin: 0 0 20px;
box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}


.position_set_header_rank{
background: url(../images/kg_position-set_rank-icon04-05.png);
content: '';
background-size: cover;
width: 36px;
height: 42px;
top: -5px;
left: 10px;
font-size: 22px;
padding: 5px 0 0;
}

.position_set.position_set__rank01 .position_set_header_rank{
background: url(../images/kg_position-set_rank-icon01.png);
background-size: cover;
}

.position_set.position_set__rank02 .position_set_header_rank{
background: url(../images/kg_position-set_rank-icon02.png);
background-size: cover;
}

.position_set.position_set__rank03 .position_set_header_rank{
background: url(../images/kg_position-set_rank-icon03.png);
background-size: cover;
}

.position_set.position_set__rank04 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon04-05.png);
  background-size: cover;
}

.position_set.position_set__rank05 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon04-05.png);
  background-size: cover;
}

.position_set.position_set__rank06 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
  background-size: cover;
}

.position_set.position_set__rank07 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
  background-size: cover;
}

.position_set.position_set__rank08 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
  background-size: cover;
}

.position_set.position_set__rank09 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
  background-size: cover;
}

.position_set.position_set__rank10 .position_set_header_rank {
  background: url(../images/kg_position-set_rank-icon06.png);
  background-size: cover;
}

.position_set.position_set__rank11 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
    background-size: cover;
}

.position_set.position_set__rank12 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
    background-size: cover;
}

.position_set.position_set__rank13 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
    background-size: cover;
}

.position_set.position_set__rank14 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
    background-size: cover;
}

.position_set.position_set__rank15 .position_set_header_rank {
    background: url(../images/kg_position-set_rank-icon06.png);
    background-size: cover;
}

.position_set_header{
display: flex;
justify-content: space-between;
border-bottom: solid 2px #ccc;
padding: 5px 0 10px;
margin: 0 0 10px;

}

h3.position_set_header_h3{
padding: 0 0 0 40px;
font-size: 20px;
line-height: 1;
}

.position_set_header_score{
font-size: 14px;
}


.position_set_header_score span.color-gold{
}

.position_set_header_score span.color-gray{
}

.position_set_header_score span.color-score{
}

.position_set_maincopy{
font-size: 18px;
margin: 0 0 10px;
}

img.position_set_banner{
width: 100%;
}

a.position_set_banner_wrap{
margin: 0 0 10px;
}

.position_set_topic-box{
background:  #ffe0e8;
padding: 30px 10px 10px;
margin: 0 0 10px;
}

.position_set_topic-box_h4_wrap{
}

h4.position_set_topic-box_h4{
padding: 5px 0px 6px 8px;
height: 23px;
}

h4.position_set_topic-box_h4:after{
top:0;
right: -16px;
width: 0;
height: 0;
border-style: solid;
border-width: 23px 16px 0 0;
border-color: #EF9C0B transparent transparent transparent;
}


ul.position_set_topic-box_ul{
padding: 0 0 0 16px;
}


ul.position_set_topic-box_ul li{
font-size: 14px;
margin: 0 0 5px;
}

ul.position_set_topic-box_ul li:last-child{
}

ul.position_set_topic-box_ul li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: -16px;
	color: #EF9C0B;
}

.position_set_topic-box.box02{

}

.position_set_topic-box.box02 h4.position_set_topic-box_h4{

}

.position_set_topic-box.box02 h4.position_set_topic-box_h4:after{

}

h3.position_set_review__h3{
border-radius: 10px 10px 0 0;
    background: #734231;
    text-align: center;
    color: #fff;
    line-height: 1;
    padding: 5px 0;
	font-size: 14px;
}

h3.position_set_review__h3 i{
margin: 0 5px 0 0;
color: #B6EDF2;
}

li.position_set_review{
}

ul.position_set_review__wrap li.position_set_review:not(:last-child){
margin: 0 0 10px;
padding: 0 0 10px;
}

ul.position_set_review__wrap li.position_set_review:not(:last-child):after{
height: 1px;
}

.position_set_review__profile{
padding: 0 0 0 42px;
position: relative;
font-size: 14px;
}

.position_set_review__profile:before{
width: 32px;
height: 32px;
background: url(../images/review01.png);
left: 0;
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.male:before{
background: url(../images/review02.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon04:before{
background: url(../images/review04.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon05:before{
background: url(../images/review05.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon06:before{
background: url(../images/review06.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon07:before{
background: url(../images/review07.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon08:before{
background: url(../images/review08.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon09:before{
background: url(../images/review09.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon10:before{
background: url(../images/review10.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon11:before{
background: url(../images/review11.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon12:before{
background: url(../images/review12.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon13:before{
background: url(../images/review13.png);
background-repeat: no-repeat;
background-size: contain;
}

.position_set_review__profile.icon14:before{
background: url(../images/review14.png);
background-repeat: no-repeat;
background-size: contain;
}         

.position_set_review__profile.icon15:before{
background: url(../images/review15.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon16:before{
background: url(../images/review16.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon17:before{
background: url(../images/review17.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon18:before{
background: url(../images/review18.png);
background-repeat: no-repeat;
background-size: contain;
}   


.position_set_review__profile.icon19:before{
background: url(../images/review19.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon20:before{
background: url(../images/review20.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon21:before{
background: url(../images/review21.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon22:before{
background: url(../images/review22.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon23:before{
background: url(../images/review23.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon24:before{
background: url(../images/review24.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon25:before{
background: url(../images/review25.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile.icon26:before{
background: url(../images/review26.png);
background-repeat: no-repeat;
background-size: contain;
}   

.position_set_review__profile_title{

}

.position_set_review__profile_detail{

}

._detail_star{
margin: 0 10px 0 0;
}

span._detail_star_gold{
color: #ffcc00;
}

span._detail_star_gray{
color: #ccc;
}

._detail_age-occuaption{
font-size: 12px;
}

p.position_set_review__description{
font-size: 12px;
}

.position_set_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: topicer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	font-weight: bold;
}

ul.position_set_review__wrap{
padding: 10px;
border: solid 2px #734231;
  position: relative;
  overflow: hidden;
  height: 120px;
}

ul.position_set_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.position_set_review__wrap{
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ ul.position_set_review__wrap::before {
  display: none; /*チェックされていたら、grad-setのbeforeを非表示にする*/
}

a.position_set_cvbutton{
font-size: 18px;
background: #00BF39;
font-weight: bold;
box-shadow: 0 4px 0 #01962e;
border-radius: 6px;
padding: 10px 0;
}

a.position_set_cvbutton:before{
	right: 10px;

}

.position_set_campaign_box{
padding: 20px 10px 10px;
margin: 20px 0 10px;
border-radius: 6px;
}

h4.position_set_campaign_h4{
padding: 4px 10px 6px;
font-size: 14px;
top: -12px;
}

p.position_set_campaign_text{
font-size: 12px;
}

p.position_set_campaign_text i{
margin: 0 2px;
}


span.position_set_campaign_text_span{
font-size: 18px;
color: #EF9C0B;
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;
}

.position_set_campaign_code_wrap{
margin: 5px 0 0;
}

.position_set_campaign_code_text{
padding: 0 5px;
border: solid 1px #cccccc;
border-radius: 4px;
margin:  3px 5px 0 0;
}

button#copy-url{
		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{
position: absolute;
    content: '\f0c5';
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
	left: 6px;
	color: #fff;
}


p.position_set_notification{
margin: 9px 0 0;
font-size: 12px;
}



/*conclusion
----------------------------------------------------------------------*/

.conclusion_header01{
padding: 0 10px;
margin: 0 0 10px;
}

.conclusion_header01_counter{
font-size: 16px;
}

.conclusion_header01_change-button{
padding: 10px 5px;
font-size: 14px;
}


.conclusion_header02_wrap{
padding: 10px 10px 10px;
}

.conclusion_header02{
margin: 0 0 10px;
}

h3.conclusion_header02_h3{
font-size: 14px;
margin: 0 0 10px;
}

ul.conclusion_header02_settings_wrap{
padding: 10px;
}

ul.conclusion_header02_settings_wrap li{
font-size: 12px;
border: solid 1px #734231;
padding: 5px 5px 5px 15px;
margin: 0 5px 0 0;
}

#submit_select{
    margin: 0 10px 20px auto;
    font-size: 14px;
    width: 160px;
    height: 36px;
    line-height: 30px;
	border-radius: 5px;
}


.conclusion_set02{
width: calc(100vw - 20px);
margin: 0 auto 10px;
padding: 10px;
border: solid 1px #EF9C0B;
border-radius: 6px;
}

.conclusion_set02:last-child{
margin: 0 auto 20px;
}

.conclusion_set02_header{
margin: 0 0 10px;
}

.conclusion_set02_header_left{
margin: 0 10px 0 0 ;
}

a.conclusion_set02_header_left_appicon_wrap{
}

img.conclusion_set02_header_left_appicon{
width: 75px;
}

a.conclusion_set02_header_left_textlink{
font-size: 14px;
}

.conclusion_set02_header_right{
}

ul.conclusion_set02_header_right_topic{
}

ul.conclusion_set02_header_right_topic li{
padding: 5px 0 5px 18px;
border-top: solid 1px #eee;
}

ul.conclusion_set02_header_right_topic li:last-child{
border-bottom: solid 1px #eee;
}

ul.conclusion_set02_header_right_topic li:before{
position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	color: #EF9C0B;
	left: 0px;
}

table.conclusion_set02_table{
font-size: 12px;
border-spacing: 4px 2px;
margin: 0 0 10px;

}

table.conclusion_set02_table th{
padding: 5px 0px;
font-size: 12px;
}

table.conclusion_set02_table td{
padding: 10px 0;
}

span.conclusion_set02_table_label_amount{

}


table.conclusion_set02_table tr td:nth-child(3){
line-height: 1.8;
}

.conclusion_set02_table_inner{

}


span.conclusion_set02_table_span_male,span.conclusion_set02_table_span_female{
    padding: 0px 5px 2px;
    border-radius: 4px;
    color: #fff;
    margin: 0 5px 0 0;
}

span.conclusion_set02_table_span_female{
}

a.conclusion_set02_dlbutton{
    font-size: 16px;
    box-shadow: 0 4px 0 #01962e;
    border-radius: 6px;
    padding: 10px 0;
	margin: 0 auto 0;
	max-width: 260px;
}



/*about
---------------------------------------------------------------------------*/

section.about{
width: 100%;
padding: 0 20px;
}

h2.about_h2{
font-size: 20px;
padding: 0 0 0px;
margin: 0 0 40px;
}

h2.about_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 2px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #FF9196;
}

table.about_table{
width: 940px;
border-collapse: collapse;
text-align: left;
margin: 0 auto 60px;
}

table.about_table{
width: 100%;
font-size: 14px;
margin: 0 auto 30px;
}

table.about_table tr{
border-bottom: dotted 1px #ccc;
}

table.about_table tr:first-child{
border-top: dotted 1px #ccc;
}

table.about_table th,table.about_table td{
padding: 15px 0px;
}

h4.about_h4{
font-size: 16px;
border-left: solid 4px #888;
padding: 0 0 0 6px;
margin: 0 0 10px;
}

p.about_p{
margin: 0 0 15px;
}

p.about_p:last-child{
margin: 0 0 30px;
}

/*survey
---------------------------------------------------------------------------*/

section.survey{
width: 100%;
padding: 0 20px;
}

h2.survey_h2{
font-size: 20px;
padding: 0 0 0px;
margin: 0 0 40px;
}

h2.survey_h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 2px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #307fc0;
}

h3.survey_h3{
font-size: 16px;
border-left: solid 6px #307fc0;
border-bottom: solid 1px #307fc0;
padding: 0 0 6px 6px;
margin: 0 0 10px;
}

p.survey_p{
margin: 0 0 15px;
}

p.survey_p:last-child{
margin: 0 0 30px;
}

/*section.compare
----------------------------------------------------------------------*/

section.compare{
padding: 20px 10px 0;
margin: 0 0 20px;
}

h3.compare_h3{

}

table.compare_table{
font-size: 14px;
}

table.compare_table th,table.compare_table td{
}

table.compare_table th{
border-top: solid 4px #EF9C0B;
padding: 5px 0;
}

table.compare_table td{
padding: 10px 0;
}

table.compare_table tr td:nth-child(2),table.compare_table tr td:nth-child(3){
width: 70px;
}

table.compare_table tr td:nth-child(4){
text-align: left;
padding: 10px 0 10px 5px;
line-height: 1.8;
font-size: 12px;
}

a.compare_table_appicon_wrap{
display: block;
margin: 0 0 0;
}

img.compare_table_appicon{
width: 50px;
}

.compare_table_name{
font-weight: bold;
margin: 0 0 5px;
font-size: 12px;
}

a.compare_table_dlbutton{
width: calc(100% - 10px);
box-shadow: 0 2px 0 #01962e;
border-radius: 6px;
margin: 0 auto 0;
padding: 5px 0 7px;
font-weight: bold;
font-size: 12px;
}


table.compare_table span.label_male,table.compare_table span.label_female{
padding: 0px 5px;
background: #0099ff;
border-radius: 4px;
color: #fff;
margin: 0 4px 0 0;
}

table.compare_table span.label_female{
background: #ff6699;
}

span.compare_table_amount_label{
font-size: 12px;
}

p.compare_notification{
margin: 5px 0 0;
font-size: 12px;
color: #666;
}

.tab-wrap02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
}
.tab-wrap02:after {
  }

.tab-label02 {
  color: #999;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 5px .5em 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: topicer;
  border-radius: 6px 6px 0 0;
  flex: 1;
}

.tab-label02 span.tab-label02_span01{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-label02 span.tab-label02_span02{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-label02 span.tab-label02_span03{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-label02:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content02 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */

.tab-switch02:checked+.tab-label02 {
  background: #EF9C0B;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  color: #fff;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span01{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span02{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-switch02:checked+.tab-label02 span.tab-label02_span03{
width: 28px;
height: 28px;
background-size: contain;
}

.tab-switch02:checked+.tab-label02+.tab-content02 {
  height: auto;
  overflow: auto;
  padding: 0px;
  opacity: 1;
  transition: .5s opacity;
  background: #fff;

}
/* ラジオボタン非表示 */
.tab-switch02 {
  display: none;
}


/*feature-ouen
---------------------------------------------------------------------------*/

section.feature-ouen{
padding: 0 10px;
margin: 0 0 20px;
}


li.feature-ouen_topic{
position: relative;
padding: 25px 80px 10px 10px;
border-radius: 10px;
margin: 0 0 25px;
min-height: 80px;
}

li.feature-ouen_topic:first-child{
margin: 25px 0 25px;
}

li.feature-ouen_topic:last-child{
margin: 0 0 0;
}

h4.feature-ouen_topic_h4{
padding: 8px 10px;
top: -15px;
}

img.feature-ouen_topic_image{
width: 60px;
right: 10px;
top: 20px;
}

h3.feature-ouen_topic_h3{
font-size: 20px;
}


/*notice
---------------------------------------------------------------------------*/

section.notice{
margin: 0 0 30px;
padding: 0 10px;
}

.notice_inner{
padding: 10px;
border-radius: 6px;
}

h3.notice_h3{
font-size: 14px;
margin: 0 0 5px;
}

p.notice_description{
font-size: 12px;
}

a.notice_description_link{
color: #444;
font-weight: bold;
}

a.notice_description_link:after{
content: '\f101';
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: 10px;
}

/*post
---------------------------------------------------------------------------*/




section.post{
padding: 10px;
margin: 10px;
border-radius: 6px;
}

h2.post_h2{
padding: 10px;
font-size: 20px;
border-radius: 6px;
text-shadow: 0 0 1px #EF9C0B;
}

span.post_h2_subtitle{
font-size: 10px;
}

.post_date{
margin: 0 0 10px;
}

.post_date:before{
margin: 0 5px 0 0;
}

p.post_description{
margin: 0 0 20px;
font-size: 14px;
}

h3.post_h3{
border-left: solid 6px #EF9C0B;
padding: 0 0 0 8px;
margin: 0 0 10px;
font-size: 16px;
}

h2.post_h2.post_h2_wide{
padding: 15px 10px;
}

ul.post_list{
padding: 20px 0 0 15px;
}

ul.post_list li{
}

ul.post_list li:before{
    left: -12px;
}

a.post_list_set_wrap{
font-size: 15px;
margin: 0 0 15px;
}


.pc{
display: none;
}

}

