
/* ==============================================================================
	CSS for touch-screen : common.css
============================================================================== */

/* ----------------------------------------------------------
  Common Settings : css-reset
---------------------------------------------------------- */
html{
font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
overflow-y:scroll;
-webkit-text-size-adjust:none;
-webkit-font-smoothing: antialiased;
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
}

body,div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,form,fieldset,legend,input,textarea,pre,code,blockquote,th,td{
margin:0;
padding:0;
}

div,h2,h3,h4,h5,h6,p,li,dt,dd,pre,code,blockquote,th,td{
word-break:break-all;
}

br{
letter-spacing:0;
}

fieldset,img{
border:0;
}

li{
list-style:none;
}

caption,th{
text-align:left;
}

h1,h2,h3,h4,h5,h6,th{
font-size:100%;
font-weight:normal;
font-style:normal;
}

input,textarea,select{
font-family:inherit;
font-size:inherit;
font-weight:inherit;
color:#333;
}

input[type="submit"]{
cursor:pointer;
}

select{
background-color:#ffffff !important;
}

address,caption,cite,code,dfn,var{
font-style:normal;
font-weight:normal;
}

abbr,acronym{
border:0;
font-variant:normal;
}

del,u{
text-decoration:none;
}

/*=================================================
 * CSS MAIN
 * ================================================= */

body{
	text-align	: center;
	font-size	: 12px;
	line-height	: 16px;
	font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	-webkit-text-size-adjust: 100%;
	scrollbar-face-color: #ffffff;
	scrollbar-3dlight-color: #553f09;
	scrollbar-highlight-color: #ffffff;
	scrollbar-shadow-color: #ffffff;
	scrollbar-darkshadow-color: #553f09;
	scrollbar-arrow-color: #553f09;
	scrollbar-track-color: #ffffff;
	-webkit-font-smoothing: subpixel-antialiased;
}

a{
	text-decoration	: none;
}

a:hover{
	text-decoration: none;
}

h1,h2,h3{
	font-size	: 13px;
}

ul{
	list-style-type	: none;
}

li{
	margin		: 0px;
	padding		: 0px;
}

table{
	font-size	: 13px;
}

table tr{
	vertical-align	: top;
}

em{
	font-style		: normal;
}


/*=================================================
 * CSS for PC
 * ================================================= */

body{
	position: relative;
	color: #fff;
	background-color: #000;
	background-image: url(../img/all/pc_bg.jpg);
	background-attachment: fixed;
}

header,
main,
aside,
footer,
#link_bnr{
	position: relative;
	z-index: 2;
	width: 750px;
	margin: 0 auto;
}

body:before{
	content: '';
	width: 750px;
	height: 100%;
	position: fixed;
	z-index: -2;
	top: 0;
	left: calc(50% - 375px);
	background:
	url(../img/all/footer_bg.png) no-repeat bottom center,
	url(../img/all/bg.jpg) no-repeat top center;
	background-size: 100% auto, 100% auto;
}


/** header **/

header{
	width: 750px;
	text-align: left;
	margin: 0 auto;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
h1{
	font-size: 10px;
	line-height: 1;
	color: #7083b3;
	text-align: right;
	padding: 7px 0;
}

#homelink{
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}
#toppage_body #homelink{	display: none;}
#homelink img{
	width: 170px;
	height: auto;
}

header p{
	position: relative;
	font-size: 13px;
	line-height: 1.5;
	margin: 15px 0 0 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}


/** menu POPUP BOUNCE **/

.menu-btn{
	width: 60px;
	height: 60px;
	top: 20px;
	right: calc(50% - 360px);
	position: fixed;
	z-index: 100003;
	background: none;
	border: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.menu-btn em{
	width: 60px;
	font-size: 11px;
	line-height: 12px;
	text-align: center;
	position: absolute;
	bottom: 2px;
	right: 1px;
}
.bb{
	width: 40px;
	height: 1px;
	right: 10px;
	background: #fff;
	position: absolute;
	-webkit-transition	: 0.4s ease-in-out;
	-moz-transition	: 0.4s ease-in-out;
	-o-transition	: 0.4s ease-in-out;
	transition		: 0.4s ease-in-out;
}
.bb-1{	top:12px;}
.bb-2{	top:24px;}
.bb-3{	top:36px;}
.closebt .bb-1{
	top: 24px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform:rotate(45deg);
}
.closebt .bb-2{
	opacity: 0;
}
.closebt .bb-3{
	top: 24px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 0;
	height: 0;
	background: rgba(0, 0, 0, 0.8);
	pointer-events: none;
	opacity: 0;
	transform-origin: center;
	transform: scale(.5);
	transition: all .3s ease;
	position: fixed;
	z-index: 100002;
	top: 50%;
	left: 50%;
}

.opennav .menu{
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	pointer-events: auto;
	opacity: 1;
	transform: scale(1.0);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);

}

.menu_in{
	position: relative;
	width: calc(100% - 30px);
	max-width: 400px;
	margin: 0 auto;
	padding: 0 50px 15px 50px;
	transition: all .4s ease-in;
	opacity: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.opennav .menu_in{opacity: 1;}

.menu_in p{}
.menu_in p a{
	display: flex;
	color: currentColor;
	margin: 0 0 25px 0;
	-webkit-transition	: 0.2s ease-in-out;
	-moz-transition	: 0.2s ease-in-out;
	-o-transition	: 0.2s ease-in-out;
	transition		: 0.2s ease-in-out;
}

.menu_in a span{
	width: calc(100% - 100px);
	font-family: "FontA";
	font-size: 24px;
	line-height: 25px;
	text-align: left;
}
.menu_in a em{
	position: relative;
	width: 100px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 25px;
	text-align: left;
}

.menu_in a em:after{
	content: "";
	width: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: absolute;
	top: 12px;
	left: -53px;
}
.menu_in a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.menu_in div{
	padding: 30px 0 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.menu_in div img{
	width: 140px;
	height: auto;
}


@media screen and (max-width: 750px) {
	.menu-btn{
		right: 15px;
	}
	.menu_in{
		padding-left: 30px;
		padding-right: 30px;
	}
	.menu_in a em:after{	display: none;}
}


/** main **/

main{
	display: block;
	overflow: hidden;
	padding: 0 0 100px 0;
}

.cnt{	padding-bottom: 50px;}

.page_title{
	position: relative;
	width: 100%;
	text-align: right;
	margin: 0 0 30px 0;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.page_title span{
	display: block;
	font-family: "FontA";
	font-size: 50px;
	line-height: 1.1;
	color: #fff;
}
.page_title em{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.1;
}

.pan{
	font-size: 10px;
	line-height: 1;
	text-align: right;
	padding: 0 15px;
}
.pan a{	color: #fff;}


/** aside **/

aside{
	position: relative;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding: 10px 7.5px 30px 7.5px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
aside:after{
	content: "";
	width: 50px;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: calc(50% - 25px);
}

aside .shopinfo{
	position: relative;
	width: 130px;
	margin-right: 20px;
	padding: 65px 0 0 0;
}
aside .shopinfo:before{
	content: "";
	width: 130px;
	height: 61px;
	background: url(../img/all/logo.png) no-repeat;
	background-size: 130px auto;
	position: absolute;
	top: 30px;
	top: 0;
	left: 0;
}
aside:before{
	content: "Gay massage Mens Tokyo";
	width: calc(100% - 20px);
	font-family: "FontA";
	font-weight: normal;
	font-size: 58px;
	line-height: 100px;
	color: #122965;
	text-align: right;
	position: absolute;
	z-index: 2;
	top: -100px;
	right: 20px;
}

aside .shopinfo,
aside .shopinfo a{	color: #fff;}
aside .shopinfo p{
	font-size: 13px;
	line-height: 20px;
	text-align: left;
}

#f_menu{
	position: relative;
	font-size: 0;
	line-height: 0;
	text-align: left;
	padding: 0 0 0 20px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

#f_menu p{
	margin: 0 0 10px 0;
}
#f_menu a{
	display: inline-flex;
	justify-content: flex-start;
	font-size: 24px;
	line-height: 30px;
	font-family: "FontA";
	color: #fff;
	-webkit-transition	: 0.2s ease-in-out;
	-moz-transition	: 0.2s ease-in-out;
	-o-transition	: 0.2s ease-in-out;
	transition		: 0.2s ease-in-out;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#f_menu p:last-of-type{	margin-bottom: 0;}
#f_menu a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}


/** footer **/

footer{
	width: 750px;
	text-align: center;
	padding: 30px 0 130px 0;
}

footer #copyright{
	font-size: 10px;
	line-height: 18px;
	color: #fff;
}
footer #copyright a{	color: #fff;}


/** page-top **/

#page-top{
	width: 750px;
	text-align: right;
	padding: 0 0 20px 0;
	position: fixed;
	z-index: 1002;
	left: calc(50% - 375px);
	bottom: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#page-top .fbt{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: center;
}
#page-top .fbt a{
	display: inline-flex;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: center;
	width: 75px;
	height: 60px;
	font-size: 10px;
	line-height: 12px;
	color: #fff;
	margin: 0 0.5px;
	padding: 42px 0 0 0;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#page-top .fbt a.fbt_tel{
	background: url(../img/all/fbt1.png) no-repeat top center rgb(25,53,123);
	background: url(../img/all/fbt1.png) no-repeat top center, linear-gradient(140deg, rgba(25,53,123,0.8) 0%, rgba(0,13,47,1) 100%);
	background-size: 75px auto, auto;
}
#page-top .fbt a.fbt_line{
	background: url(../img/all/fbt2.png) no-repeat top center rgb(25,53,123);
	background: url(../img/all/fbt2.png) no-repeat top center, linear-gradient(140deg, rgba(25,53,123,0.8) 0%, rgba(0,13,47,1) 100%);
	background-size: 75px auto, auto;
}
#page-top .fbt a.fbt_res{
	background: url(../img/all/fbt3.png) no-repeat top center rgb(25,53,123);
	background: url(../img/all/fbt3.png) no-repeat top center, linear-gradient(140deg, rgba(25,53,123,0.8) 0%, rgba(0,13,47,1) 100%);
	background-size: 75px auto, auto;
}
#page-top .fbt a.fbt_up{
	background: url(../img/all/fbt4.png) no-repeat top center rgb(25,53,123);
	background: url(../img/all/fbt4.png) no-repeat top center, linear-gradient(140deg, rgba(25,53,123,0.8) 0%, rgba(0,13,47,1) 100%);
	background-size: 75px auto, auto;
}
.error,
.over{
	padding: 50px 0;
}
.sp_no{
	display: none;
}


/** rollover **/

.fade{
	display: inline-block;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.hover,
.fade input{
	-webkit-transition	: 0.3s ease-in-out;
	-moz-transition	: 0.3s ease-in-out;
	-o-transition	: 0.3s ease-in-out;
	transition		: 0.3s ease-in-out;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}

.hover:hover,
.fade input:hover{
	opacity: 0.8;
	filter: alpha(opacity=80);
}


/*=================================================
 * COMMON CSS for SP
 * ================================================= */

@media screen and (max-width: 750px) {
	body{
		background-image: none;
	}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		height:100vh;
		background:
		url(../img/all/footer_bg.png) no-repeat bottom center,
		url(../img/all/bg.jpg) no-repeat top center;
		-webkit-background-size: 100% auto,cover;
		background-size: 100% auto,cover;
	}
	a[href^="tel:"] { cursor: pointer;}
	a:hover{	text-decoration: none;}

	header,
	main,
	aside,
	footer,
	#link_bnr{
		width: 100%;
		margin: 0;
	}
	header{	left: 0;}
	footer{	left: 0;}
	body:before,
	#page-top{
		width: 100%;
		left: 0;
	}
	#navToggle{	right: 10px;}
	aside:before{
		width: calc(100% - 10px);
		font-size: 9.3vw;
		line-height: 100px;
		top: -75px;
		right: 10px;
	}

}
