@charset "utf-8";

/*********************
 base
*********************/
 
*{ padding:0; margin:0; }
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	     -o-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	        box-sizing: border-box;
}
html,body{ height:100%; }
body{
	-webkit-text-size-adjust: 100%;
	width:100%;
	font-family: Noto Sans Japanese,Noto Sans JP,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", arial, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	font-size:16px;
	line-height:1.5em;
	letter-spacing: .075em;
	color: #333;
	background-image: url(../img/bg.jpg);
	background-color:rgba(255,255,255,0.4);
	background-blend-mode:lighten;
}
img{
	vertical-align:middle;
}
#mainBody{
	max-width:1024px;
	margin:0 auto;
	box-shadow:0 10px 10px 0 rgba(0,0,0,.3);
}
main{
	width:100%;
	display:block;
	padding:0;
	text-align:center;
	background-color:#fff;
}
video{ display: block; }

.yellowLine{
	background:linear-gradient(transparent 80%, #ff0 80%, #ff0 90%, transparent 90%);
}
.pinkLine{
	background:linear-gradient(transparent 80%, #d77370 80%, #d77370 90%, transparent 90%);
}
.cyanLine{
	background:linear-gradient(transparent 80%, #55beb7 80%, #55beb7 90%, transparent 90%);
}

/*********************
 flexbox
*********************/
.flexbox{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flextop{
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}
.flexright{
	-webkit-box-align: end;
	-webkit-align-items: end;
	-ms-flex-align: end;
	align-items: end;
}
.flexstretch{
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.flexbetween{
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flexbr{
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}


/*********************
 header
*********************/
header{
	background-color:#fff;
}
header div.headerLine{
	background-color:#fff;
	padding:10px 15px;

}
header div.headerLine a.imgLink{
	width:150px;
}
header div.headerLine a.imgLink:last-child{
	width:200px;
}
header div.headerLine a.imgLink img{
	width:100%;
}
header .topArea{
	position:relative;
	width:100%;
}
header .topArea video{ width:100%; }
header .topArea .regBox{
	position:absolute;
	left:2%;
	top:50%;
	transform: translateY(-50%);
	width:400px;
	padding:10px 20px 25px;
	background:rgba(255,255,255,1);
	border-radius:5px;
	font-size:10px;
	border-top:20px solid #ec6968;
}
header .topArea .regBox img{
	max-width:100%;
}
header .topArea .regBox .textlink{
	letter-spacing:0em;
	padding:10px 0 0;
}
header .topArea .regBox a{
	color:#333;
}
header .topArea .regBox a.guest_btn,
header .topArea .regBox a.girl_btn{
	display:block;
	margin-top:15px;
}
header .topArea .sp-menu{ display:none; }



/*********************
 modal
*********************/
.modal-container,
.girlmodal-container,
.loginmodal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
	z-index: 999;
}
.modal-container:before,
.girlmodal-container:before,
.loginmodal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.modal-container.active,
.girlmodal-container.active,
.loginmodal-container.active{
	opacity: 1;
	visibility: visible;
}
.modal-body,
.girlmodal-body,
.loginmodal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
.modal-close,
.girlmodal-close,
.loginmodal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
.modal-content{
	background: #fff;
	text-align: left;
	border-radius:5px;
}
.modal-content a img{
	width:100%;
	margin:20px 0;
}
.modal-content font{
	color:#404dff;
	font-weight:bold;
	font-size:1.2em;
}
.modal-content .modal-title{
	background-color:#55beb7;
	text-align:center;
	line-height:1.2em;
	border-radius:5px 5px 0 0;
	padding:20px 0 40px;
	color:#fff;
}
.modal-content .girlmodal-title{
	background-color:#d77370;
}
.modal-content .loginmodal-title{
	background-color:#06c755;
}
.modal-content .modal-title .icon{
	width:75px;
	margin:20px 0 10px;
}
.modal-content .modal-title p{
	font-size:1.4em;
	font-weight:bold;
	margin-bottom:10px;
}
.modal-content .modal-main{
	padding:30px;
	line-height:1.2em;
}
.modal-content a{
	color:#333;
}
.modal-content .modal-main .top_guestLink{
	display:block;
	font-weight:bold;
	color:#55beb7;
	margin:0 auto 30px;
}
.modal-content .modal-main .top_castLink{
	display:block;
	font-weight:bold;
	color:#d77370;
	margin:0 auto 30px;
}
.modal-content .modal-main .notlogin{
	display:block;
	font-weight:bold;
	color:#1d5058;
	margin:0 auto 30px;
}
.modal-content .modal-main p{
	font-size:10px;
}

/*********************
 what
*********************/
.what img.champagne{
	width:40%;
	padding:0 30px 0 0;
}
.what .textBox{
	display:block;
	text-align:left;
	padding-right:20px;
	font-size:0.8em;
}
.what .textBox img{
	width:260px;
	padding:30px 0;
}
.what .textBox p{
	font-size:10px;
	line-height:1.3em;
}

/*********************
 girlList
*********************/
.girlList{
	padding:70px 0 50px;
	background:#ebf6f5;
}
.girlList .title_img{
	width:400px;
}
.girlList h1{
	color:#1d5058;
	font-size:1.8em;
}
.girlList .title_border{
	margin:10px auto 0;
	width: 80%;
	border: 1px solid #55beb7;
}
.girlList h2{
	margin:10px 0 40px;
	font-weight:normal;
	font-size:0.8em;
}
.girlList .horizontal-list{
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	margin:0 10px;
}
.girlList .item{
	display: inline-block;
	width:160px;
	margin:0 10px 15px;
	font-size:0.8em;
	border-radius: 5px;
	box-shadow:3px 3px 5px 0 rgba(0,0,0,.3);
}
.girlList .horizontal-list::-webkit-scrollbar {
	height: 8px;
} 
.girlList .horizontal-list::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 5px;
}
.girlList .item a{
	text-decoration:none;
	color:#333;
}
.girlList .item div{
	background:#fff;
}
.girlList .item p{
	background: #d77370;
	color:#fff;
	font-size:0.8em;
	border-radius: 0 0 5px 5px;
}
.girlList .item img{
	width:100%;
	border-radius: 5px 5px 0 0;
}
.girlList .girlsList_btn{
	display:block;
	background-color:#1d5058;
	text-decoration:none;
	color:#fff;
	font-weight:bold;
	width:50%;
	border-radius: 5px;
	margin:30px auto 0;
	padding:10px 5px;
}


/*********************
 priceBox
*********************/
.priceBox{
	background-color:#55beb7;
	background-image:url(../img/oblique-bg.png);
	padding:0;
}
.priceBox img.price_img{
	max-width:50%;
}
.priceBox .textBox{
	width:50%;
	display:block;
	text-align:center;
	margin:0 20px;
}
.priceBox .title_border{
	margin:10px auto 0;
	width: 80%;
	border: 1px solid #1d5058;
}
.priceBox .textBox h1{
	color:#fff;
	font-size:1.4em;
}
.priceBox .textBox h2{
	margin:10px 0 0;
	font-weight:normal;
	font-size:0.8em;
	line-height:1.2em;
	color:#fff;
}
.priceBox .menu{
	background:#fff;
	margin-top:20px;
	padding:20px 10px;
	border-radius: 5px;
	font-size:0.8em;
}
.priceBox .menu img{
	width:90%;
	margin:10px 0 20px;
}
.priceBox .menu p{
	text-align:left;
	font-size:10px;
	line-height:1.2em;
}
.priceBox .rate{
	text-align:right;
	font-size:10px;
	color:#fff;
}


/*********************
 howTo
*********************/
.howTo{
	padding:70px 20px;
	background:#fff;
}
.howTo h1{
	color:#1d5058;
	font-size:1.8em;
}
.howTo .title_border{
	margin:10px auto 0;
	width: 80%;
	border: 1px solid #55beb7;
}
.howTo h2{
	margin:10px 0 40px;
	font-weight:normal;
	font-size:0.8em;
}
.howTo .imageBox{
	width:calc( 100% - 20% );
	margin:0 auto;
}
.howTo .imageBox img{
	width:calc( (100%/3) - 7% );
}
.howTo .imageBox img:last-child{
	width:calc( (100%/3) - 7% );
	margin-right:0;
}


/*********************
 safety
*********************/
.safety{
	padding:70px 0 50px;
	background-color:#ebf6f5;
	background-image: url(../img/oblique02-bg.png);
}
.safety .title_img{
	width:400px;
}
.safety h1{
	color:#1d5058;
	font-size:1.8em;
}
.safety .title_border{
	margin:10px auto 0;
	width: 80%;
	border: 1px solid #55beb7;
}
.safety h2{
	margin:10px 0 40px;
	font-weight:normal;
	font-size:0.8em;
}
.safety .imageBox{
	width:80%;
	background:#fff;
	margin:0 auto 20px;
	padding:20px;
}
.safety .imageBox img{
	width:80px;
	margin-right:20px;
}
.safety .imageBox p{
	text-align:left;
}
.safety .imageBox p b{
	font-size:1.2em;
	display:block;
}

/*********************
 Q&A
*********************/
.qa{
	padding:70px 20px;
	background:#fff;
}
.qa h1{
	color:#1d5058;
	font-size:1.8em;
}
.qa .title_border{
	margin:10px auto 20px;
	width: 80%;
	border: 1px solid #55beb7;
}
.qa h2{
	margin:10px 0 20px;
	font-weight:normal;
	color:#55beb7;
	font-size:1.2em;
}
.qa .qainner{
	text-align:center;
	max-width:787px;
	width:100%;
	margin:0 auto;
}
.qa .qainner .toggle {
	display: none;
}
.qa .qainner .Label {
	text-align:left;
	padding:10px 40px 10px 50px;
	display: block;
	color: #fff;
	background:#1d5058;
	font-size:1em;
}
.qa .qainner .Label:after {
    content: url(../img/qa-q.png);
    position: absolute;
    left: 12px;
    top: 7px;
}
.qa .qainner .Label::before{
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.qa .qainner .Label, .content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.qa .qainner .content {
	text-align:left;
	height: 0;
	margin-bottom:15px;
	padding:0 20px 0 50px;
	overflow: hidden;
}
.qa .qainner .content:after {
    content: url(../img/qa-a.png);
    position: absolute;
    left: 15px;
    top: 20px;
}
.qa .qainner .toggle:checked + .Label + .content {
	height: auto;
	padding:20px 20px 20px 50px;
	transition: all .3s;
}
.qa .qainner .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
.qa .qainner .line_regist_notice {
	display:block;
	margin:30px auto 0;
	width:60%;
}


/*********************
 footer
*********************/
footer{
	background:#1d5058;
	text-align:center;
	font-size:0.8em;
	line-height:1.6em;
}
footer .siteinfo{
	background:#ebf6f5;
	padding:30px;
}
footer .siteinfo img{
	width:160px;
	margin:30px 0 10px;
}
footer .siteinfo a{
	color:#1d5058;
	font-size:0.8em;
	line-height:1.2em;
}
footer .copyright{
	padding:15px 0;
	color:#fff;
}






