@charset "utf-8";

@-ms-viewport {
    width: device-width;
}


/* check
*{
	border:1px solid #FF0000;
}
*/

/* clearfix
------------------------------------------------*/
.clearfix { *zoom:1; }
.clearfix:before,
.clearfix:after {
	display: table;
	content:"";
	line-height: 0;
}
.clearfix:after { clear: both; }

/* 全体
------------------------------------------------*/
body{
	margin: 0;
	padding: 0;
    font-family:"メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	background: #ffffff;
	position: relative;
	width: 100%;
	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
}

.wrapper{
	width:100%;
	margin: 0 auto;
	background: #ffffff;
	overflow: hidden;
}

@media screen and (min-width:641px){
	.wrapper{
		width: 640px;
	}
}

/* hover
------------------------------------------------*/
a:hover img{
opacity:0.9;
filter: alpha(opacity=90);
-moz-opacity:0.9;
}
a:hover{
opacity:0.9;
filter: alpha(opacity=90);
-moz-opacity:0.9;
}

/* TOPへ戻る
------------------------------------------------*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    z-index: 999;
}

#page-top a {
    background: rgb(147,199,226);
	background: linear-gradient(90deg, rgba(147,199,226,1) 0%, rgba(197,160,248,1) 100%);
    text-decoration: none;
    color: #fff;
    width: 40px;
	height:40px;
    padding: 14px 0;
    text-align: center;
    display: block;
    font-weight: 900;
	border-radius: 50%;
}

/* メインビジュアル
------------------------------------------------*/
.main h1 img{
	width: 100%;
}

/* カテゴリ分けゾーン
------------------------------------------------*/
/* 見出し部分 */
.category_title{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
	width: 98%;
	margin: 0.5em auto;
}
.category_circle{
	width: 38%;
	position: relative;
}
img.circle{
	width: 100%;
	margin: 0 auto;
	animation: rotateAnimation 15s linear infinite; /* 回転アニメーション */
}
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg); /* 初期の角度（0度） */
  }
  to {
    transform: rotate(360deg); /* 終了時の角度（360度） */
  }
}
img.category_circle_text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	z-index: 1;
}
img.category_circle_finger{
	position: absolute;
	bottom: -3%;
	left: 15%;
	transform: translateX(-50%);
	width: 30%;
	z-index: 1;
	animation: buttonPress 1s ease-in-out infinite alternate; /* ボタン押しアニメーション */
}
@keyframes buttonPress {
  0% {
    transform: scale(1); /* 初期サイズ */
  }
  100% {
    transform: scale(0.9); /* ボタンを押す動作（サイズを縮小） */
  }
}
.category_tag{
	width: 62%;
}
.category_tag img{
	width: 100%;
}

/* ボタンエリア */
.category_btn{
	width: 95%;
	margin: 1em auto;
}
.category_btn button{
	position: relative;
}
img.btn_category_wide{
	width: 100%;
}
.category_btn p{
	color: #ffffff;
	font-weight: bold;
	font-size: 14px;
	width: 100%;
}
p.category_btn_name{
	position: absolute;
	height: 100%;
    padding-top: 2.7vh;
	z-index: 1;
}
.category_btn_side{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-box-pack:space-between;
    -ms-flex-pack:space-between;
    justify-content:space-between;
}
.category_btn_side button img{
	width: 95%;
	margin: 0.6em auto 0 auto;
}
@media only screen and (min-width: 641px) {
	.category_btn p{
	font-size: 20px;
	width: 100%;
}
	p.category_btn_name{
    padding-top: 4vh;
}
}
/* カテゴリ検索結果 */
.category_result{
	position: relative;
	background: url("../img/blackbord_bg_top.jpg") no-repeat top center / 100%,url("../img/blackbord_bg_bottom.jpg") no-repeat bottom center / 100%,url("../img/pat_01.jpg") repeat center / 200px;
	margin: 2em auto 0 auto;
	padding-bottom: 1.5em;
	padding-top: 6.5em;
}
.category_result h2 img{
	width: 98%;
	position: absolute;
	top:-20px;
	left: 50%;
	transform: translateX(-50%);
}
.category_result h3 img{
	width: 98%;
	margin: 0.5em auto 0 auto;
}

/* 女の子一覧表示 */
ul.girls_list{
	display: flex;
	flex-wrap: nowrap;
	justify-content: unset;
	overflow-x:scroll;
}
ul.girls_list li{
	position: relative;
	min-width: 40%;
	margin: 0 0.5em;
}
ul.girls_list li img{
	width: 100%;
}
.selected-character {
  position: relative;
  z-index: 1;
}

.selected-character::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background: linear-gradient(45deg, rgba(255, 192, 203, 0.5), rgba(255, 105, 180, 0.5)); /* 透過のピンク系のグラデーション */
  border: 2px solid #f14a91; /* 枠線 */
}
.girls_prof{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.girls_name p{
	padding: 0.5em 0.3em;
	background: rgba(25,25,25,0.7);
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	margin-top: 0.2em;
}
.girls_tag{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    color: #ffffff;
    font-size: 11px;
	margin-left: 0.3em;
}
.girls_tag p{
	/*
	background: rgb(250,134,180);
	background: linear-gradient(90deg, rgba(250,134,180,1) 0%, rgba(255,188,229,1) 100%);
	*/
	background: #92D1CB;
	border-radius: 50px;
	padding: 0.2em 0.6em;
	margin-right: 0.5em;
	margin-bottom: 0.3em;
}
@media only screen and (min-width: 641px) {
	.category_result{
	padding-bottom: 1.5em;
	padding-top: 11em;
}
	ul.girls_list li{
	min-width: 35%;
}
}
/* 横スクロール */
/* Chrome, Safari 対応 */
.girls_prof_scrool::-webkit-scrollbar {
 display:none;
}

/* 動画エリア
------------------------------------------------*/
.movie_container h1 img{
	width: 100%;
	margin: 0;
}
.movie_container{
	width: 100%;
    height: 0;
    padding-top: 198.979591836734694%;
    background: url(../img/movie_bg.jpg);
    background-repeat: repeat-y;
    background-position: center center;
    background-size: cover;
	position: relative;
}
.movie_inner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.movie_inner video{
	width: 90%;
	margin: 0.5em auto 0 auto;
	transform: rotate( 0.7deg ); 
}
.movie_inner h2 img{
	width: 98%;
	margin: 0 auto 0.6em auto;
}
.movie_inner h3 img{
	width: 98%;
	margin: 1.3em auto 0 auto;
}
.movie_box{
	position: relative;
}
.movie_box img.live_movie_catch_01{
	position: absolute;
	top: -0.8rem;
    right: -1.5rem;
    width: 100px;
	z-index: 1;
	transform: rotate( 0.7deg ); 
}
.movie_box img.live_movie_catch_02{
	position: absolute;
	bottom:6rem;
	left: -0.8rem;
	width: 100px;
	z-index: 1;
	transform: rotate( -0.7deg ); 
}
.movie_box img.live_movie_catch_03{
	position: absolute;
	left: 50%;
	bottom: -2rem;
	transform: translateX(-50%);
	width: 100%;
	z-index: 1;
}
@media only screen and (min-width:641px) {
	.movie_inner video{
	width: 80%;
	margin: 2em auto;
}
	.movie_box img.live_movie_catch_01{
	width: 150px;
	right: -1rem;
}
	.movie_box img.live_movie_catch_02{
	width: 130px;
	left: -0.8rem;
		bottom:9rem;
}
}

/* チャット画面エリア
------------------------------------------------*/
.chat{
	margin-bottom: 7rem;
}
.chat img{
	width: 100%;
}

/* ボタンエリア
------------------------------------------------*/
.entry{
	text-align: center;
	background: #ffff00;
	padding: 0.8em 0 0.5em 0;
}
.entry > img{
	width: 85%;
	margin: 0 auto 0.5em auto;
}
.entry_erea{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
	width: 95%;
	margin: 0 auto;
}
.entry_erea img.entry_icon{
	width: 20%;
}
.entry_erea a{
	width: 100%;
}
.entry_erea a img{
	display: inline;
	width: 95%;
}

/* footer
------------------------------------------------*/
footer{
	background: rgb(250,134,180);
	background: linear-gradient(90deg, rgba(250,134,180,1) 0%, rgba(255,188,229,1) 100%);
	color: #ffffff;
	padding: 1.5rem 0 1rem 0;
}
footer img{
	width: 30%;
	margin: 0 auto 1rem auto;
}
.footer_bottom{
	text-align: center;
}
.footer_bottom p{
	font-size: 0.7rem;
}
.footer_nav{
	width: 100%;
	height:auto;
	margin: 0 auto 0.5rem auto;
}
.footer_nav ul{
	width:60%;
    font-size: 0.7rem;
	display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
	margin: 0 auto;
	text-align: center;
}
.footer_nav ul li{
	width: calc(100% / 2);
}

/*ポップアップ　モーダル
------------------------------------------------*/

/*ポップアップ装飾*/

.popup {
	background: url("../img/popbg.jpg") no-repeat center / 120%, #fff;
	left: 50%;
	position: relative;
	top: 48%;
	transform: translate(-50%, -50%);
	width: 90%;
	border-radius: 24px;
	border: solid 3px #ffd86c;
	border-style: ridge;
	filter: drop-shadow(0px 2px 2px rgba(137, 49, 74, 1));
	padding-top: 8%;
	z-index: 9993;
}

@media only screen and (min-width:641px) {
	.popup {
	width: 65%;
	}
}

/*タイトル*/

.popup h3 {
	width: 100%;
	position: absolute;
	top: -4vh;
	left: 50%;
	transform: translateX(-50%);
}

.popup h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/h3title.png) no-repeat center;
	background-size: contain;
	margin: 1vw 0 vw 0;
	/* padding: 0.5vw 3.3vw; */
	height: 12vw;
	color: #fff;
	font-size: 5vw;
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
}

.popup h3 p {
	margin-top: 2vw;
	color: #fff;
	text-shadow: 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c;
	font-size: 4vw;
}

@media only screen and (min-width:641px) {
	.popup h3 {
		width: 80%;
		position: absolute;
		top: -6vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.popup h3 {
		display: flex;
		align-items: center;
		justify-content: center;
		background: url(../img/h3title.png) no-repeat center;
		background-size: contain;
		margin: 1vw 0;
		/* padding: 0.5vw 3.3vw; */
		height: 12vw;
		color: #fff;
		font-size: 5vw;
		font-weight: 700;
		text-align: center;
		line-height: 1.3;
	}
	.popup h3 p {
		margin-top: 1vw;
		color: #fff;
		text-shadow: 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c, 0 0 2px #753b4c;
		font-size: 24px;
	}
}

.popup h3 img {
	width: 100%;
}


/*ポップアップモーダルの中身*/

.popup .modal_inner {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 2% 10%;
}

.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
    /*
	z-index: 9996;
	*/
	z-index: 10000;
}

@media only screen and (min-width:641px) {
	.modal {
	width: 640px;
	}
	}

/*モーダルを開いた時の背景ぼかし*/

.modal__bg {
	background: rgba(74, 55, 44, 0.7);
	height: 100vh;
	position: absolute;
	width: 100%;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

/*モーダル内のボタン*/
.lp_modal_line{
	text-align: center;
	margin: 0.8em auto;
}
.lp_modal_line a img{
	display: inline;
	width: 90%;
	margin-bottom: 0.6em;
}
.lp_modal_line p{
	font-size: 13px;
}
.lp_modal_line p a{
	text-decoration: underline;
}
/* その他ページ
------------------------------------------------*/
.common_page{
	padding: 1.5em 1em;
	color: #333333;
}
.common_page h1{
	text-align: center;
	margin-bottom: 0.5em;
	font-size: 1.3em;
	line-height: 1em;
}
.common_page img.company{
	width: 90%;
	margin: 1em auto;
}
.common_txt_box p{
	font-size: 0.6em;
}
.other_text{
	width:100%;
	margin: 1em auto;
}
.other_text dt{
	display: inline;
	padding: 0.4em 0.5em;
	border-radius: 4px;
	border:1px solid #1e2a66;
	font-size: 0.6em;
}
.other_text dt.disc{
	border:none;
	display: block;
}
.other_text dd{
	margin: 1em 0 0.8em 0.8em;
	font-size: 0.6em;
	padding-right: 0.5em;
}
.other_text ul{
	margin-bottom: 0.5em;
}
.other_text ul li{
	list-style: disc;
	margin-left: 0.5em;
}
span.under_line{
	text-decoration: underline;
}
.other_text ul li.disc_none{
	list-style: none;
}
.other_text ul li.bold{
	font-weight: bold;
	margin: 0.5em 0;
}
span.rubi{
	font-size: 0.6em;
}

/* LINE登録　下部固定
------------------------------------------------*/
#entry {
    position: fixed;
    z-index: 9999;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
#entry a{
	transition:all 0.3s;
}
/*　上に上がる動き　*/
#entry.UpMove{
  animation: UpAnime 0.5s forwards;
	width: 100%;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#entry.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(250px);
  }
}

@media screen and (min-width:  641px) {
	#entry.UpMove {
		width: 640px;
	}
}


/*--- modal ---*/
.footer_modal{display:none;position: fixed;top: 0;left: 0;z-index: 10000;width: 100%;height: 100vh;background: rgba(0,0,0,0.5);}
.footer_modal > .contbox{position:fixed;width:95%;max-width:600px;top:5%;bottom:5%;left: 0;right: 0;margin: auto;padding:2em 1em;
background: #FFF;border: solid 5px #ff3a6b;border-radius: 10px;}
.footer_modal > .contbox > .contttl{font-weight:bold;margin-bottom:1rem;}
.footer_modal > .contbox > .inner{font-size:14px;height:calc(100% - 2rem);text-align:left;overflow-y: scroll;}
.footer_modal > .contbox > .inner > .close{position:absolute;right:-0.5em;top:-1em;color:#ff3a6b;font-size:1.4rem;line-height:1;width:2em;height:2em;background:#FFF;border:5px solid #ff3a6b;border-radius:50%;cursor: pointer;}
.footer_modal > .contbox > .inner > .close > i{position:absolute;top:50%;left:50%;transform: translate(-50%,-50%);}


