
/* ==============================================================================
    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:#121212;
}

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

a[href^="tel:"] { cursor: default; text-decoration: none; color: #fff}
a[href^="tel:"]: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;
}

i, em{
	font-style		: normal;
}


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

body{
	min-width: 1200px;
}
body:after{
	content: '';
	width: 21vw;
	max-width: 350px;
	height: auto;
	aspect-ratio: 840 / 410;
	background: 	url(../img/all/logo.png) no-repeat bottom left;
	background-size: contain;
	z-index: 1000001;
	position: fixed;
	bottom: 0;
	left: 0;
}


/** header **/

header{
	text-align: right;
	padding: 130px 50px 0 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

header h1{
	font-size: 11px;
	line-height: 20px;
}

header p{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;
}
#navToggle{	display: none;}


/** menu **/

nav{
	font-size: 0;
	line-height: 0;
	text-align: center;
	position: absolute;
	z-index: 10001;
	top: 0;
	left: 50px;
	-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;
}

nav ul{
	padding: 50px 0 0 50px;
	border-left: 1px solid #fff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
nav li{
	position: relative;
	text-align: left;
}
nav li.on:before{
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 16px;
	left: -55px;
}
nav li.on:after{
	content: '';
	width: 40px;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: 20px;
	left: -50px;
}
nav li a{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 240px;
	font-size: 35px;
	line-height: 40px;
	color: #fff;
	margin: 0 0 20px 0;
}
nav li a:hover{
	text-decoration: none;
	color: #fff;
}
nav li a span{
	display: inline-block;
	font-family: "FontA";
	-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;
}
nav li a:hover span{
	opacity: 0;
	filter: alpha(opacity=0);
}
nav li a em{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	display: inline-block;
	vertical-align: top;
	font-size: 25px;
	position: absolute;
	top: 0;
	left: 10px;
	opacity: 0;
	filter: alpha(opacity=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;
}
nav li a:hover em{
	opacity: 1;
	filter: alpha(opacity=100);
	left: 0;
}
nav li a:hover span, nav li a:hover em{
}


/** title **/

.page_title{
	position: relative;
	line-height: 1;
	text-align: right;
	margin: 0 0 200px 0;
	padding: 0 50px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.page_title span{
	display: block;
	font-family: "FontA";
	font-size: 160px;
}

.page_title em{
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 25px;
}


/** main **/

main{
	display: block;
	padding: 0 0 0 0;
}



/** footer **/

footer{
	position: relative;
	text-align: right;
	padding: 150px 90px 180px 0;
}

.pan{
	font-size: 10px;
	line-height: 20px;
	text-align: right;
	margin: 0 0 20px 0;
}
.pan a,
.pan span{	color: #fff;}

#finfo{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin: 0 0 30px 0;
}
#finfo h2{
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 10px 0;
}
#finfo p{
	font-size: 14px;
	line-height: 20px;
}

#fmenu{
	position: relative;
	width: 440px;
	font-size: 10px;
	line-height: 20px;
	margin-left: auto;
	padding: 30px 0 0 0;
	border-top: 1px solid #fff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

#fmenu a{
	position: relative;
	color: #fff;
}
#fmenu br{	display: none;}

footer #copyright{
	font-family: "FontA";
	font-size: 11px;
	line-height: 14px;
	position: absolute;
	bottom: 190px;
	right: -150px;
	-webkit-transform: rotate(90deg);
	   -moz-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	     -o-transform: rotate(90deg);
	        transform: rotate(90deg);
}
footer #copyright br{	display: none;}
footer #copyright a{	color: #fff;}
footer #copyright a:hover{	text-decoration: none;}

#page-top{
	display: none;
	width: calc(100% - 100px);
	height: 100px;
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.9);
	font-size: 0;
	line-height: 0;
	z-index: 999;
	position: fixed;
	right: 50px;
	bottom: 50px;
}

#page-top #pc_menu{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	color: #fff;
	width: 100%;
	height: 100px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#page-top #pc_menu div{
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	margin: 0 0 10px 0;
}
#page-top #pc_menu div a{
	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;
}
#page-top #pc_menu div a:hover{
	text-decoration: none;
	color: #ff8f2e;
}
#page-top #pc_menu p{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
}
#page-top #pc_menu p a{	color: #fff;}

#page-top .pbt_line{
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: url(../img/all/line.png) no-repeat;
	background-size: 50px auto;
	position: absolute;
	top: 25px;
	right: 88px;
	-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;
}
#page-top .pbt_line:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#page-top .pbt_up{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	font-size: 0;
	line-height: 0;
	text-align: center;
	width: 50px;
	height: 50px;
	color: #fff;
	position: absolute;
	top: 25px;
	right: 25px;
	-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;
}
#page-top .pbt_up:hover{
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
#page-top .pbt_up span{
	font-size: 34px;
	line-height: 34px;
	margin: 0 0 5px 0;
}
#page-top .pbt_up em{
	width: 100%;
	font-size: 11px;
	line-height: 12px;
}

.error,
.over{
	text-align: center;
	padding: 80px 0;
	font-size: 12px;
	line-height: 16px;
}

.error{
	color: #ff0000;
}
.sp_bg{	display: none;}


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

@media screen and (max-width: 650px) {
	body{
		min-width: 0;
		padding-top: 65px;
		background: #e272fc;
	}
	body:before{
		content: '';
		width: 100vw;
		height: 100vh;
		position: fixed;
		z-index: -1;
		top: 0;
		left: 0;
	}
	body:after{	display: none;	}
	.sp_bg{
		display: inline-block;
		width: 120px;
		height: auto;
		aspect-ratio: 800 / 540;
		z-index: 100001;
		position: fixed;
		left: 0;
		bottom: 0;
	}
	.sp_bg img{
		width: 120px;
		height: auto;
	}
	a[href^="tel:"] { cursor: pointer;}
	a:hover{	text-decoration: none;}

	/** header **/
	header{
		text-align: center;
		padding: 10px 0;
	}
	header h1{
		position: absolute;
		top: -100vh;
		left: -100vw;
	}
	header p{
		font-size: 15px;
		line-height: 20px;
	}


	/** navToggle **/
	#navToggle{
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: space-between;
		width: 100%;
		height: 65px;
		background: rgba(0, 0, 0, 0.85);
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
	}
	#navToggle button,
	#navToggle a{
		position: relative;
		display: inline-flex;
		flex-wrap: wrap;
		align-items: center;
		align-content: center;
		justify-content: center;
		width: 60px;
		height: 60px;
		text-align: center;
		cursor: pointer;
		border: none;
		color: #fff;
		background: none;
		margin: 0;
		padding: 0;
	}
	#navToggle button:focus{	outline: 0;}
	#navToggle a{
		background: url(../img/all/tel.png) no-repeat 50% 9px;
		background-size: 25px auto;
	}
	#navToggle button em,
	#navToggle a em{
		width: 60px;
		font-family: "FontA";
		font-size: 11px;
		line-height: 12px;
		text-align: center;
		position: absolute;
		bottom: 10px;
		right: 1px;
	}
	.bb{
		width: 32px;
		height: 2px;
		right: 15px;
		background: #fff;
		transition: all .4s ease;
		position: absolute;
		-webkit-transition: all .4s ease;
	}
	.bb-1{	top:15px;}
	.bb-2{	top:23px;}
	.bb-3{	top:31px;}
	.closebt .bb-1{
		top: 23px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform:rotate(45deg);
	}
	.closebt .bb-2{
		opacity: 0;
	}
	.closebt .bb-3{
		top: 23px;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	nav{
		width: 100%;
		height: 100vh;
		text-align: left;
		font-size: 0;
		line-height: 0;
		position: fixed;
		left:  -200vw;
		top: 65px;/** header,nav,SAME HEIGHT **/
		background: rgba(0, 0, 0, 0.85);
		background-repeat: repeat;
		z-index: 999;
		overflow: hidden;
		-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;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		padding: 0px 25px 120px 28px;
		box-shadow: none;
	}
	nav .mega_menu{	display: none;}
	header.fixed+#navToggle+nav{
		min-width: auto;
		position: fixed;
		top: 65px;
	}
	nav.opennav{
		height: calc(100vh - 65px);
		overflow: visible;
		left: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	nav.opennav::-webkit-scrollbar{
	  display: none;
	}
	header.fixed+#navToggle+nav{
		height: calc(100vh - 65px);
		padding-top: 0;
	}

	nav ul{
		padding: 25px 0 0 25px;
		border-left: 1px solid #fff;
	}
	nav li.on:before{
		content: '';
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #fff;
		position: absolute;
		top: 11px;
		left: -30px;
	}
	nav li.on:after{
		content: '';
		width: 15px;
		border-bottom: 1px solid #fff;
		position: absolute;
		top: 14px;
		left: -25px;
	}
	nav li a{
		position: relative;
		display: inline-block;
		vertical-align: top;
		width: 230px;
		font-size: 20px;
		line-height: 30px;
		color: #fff;
		margin: 0 0 20px 0;
	}
	nav li a:hover{	color: #fff;}
	nav li a:hover span{
		opacity: 1;
		filter: alpha(opacity=100);
	}
	nav li a em{	display: none;}

	/** title **/
	.page_title{
		text-align: right;
		margin: 0 0 50px 0;
		padding: 0 10px;
	}
	.page_title span{
		font-size: 74px;
	}
	.page_title em{
		font-size: 15px;
	}


	/** main **/
	main{
		display: block;
		width: 100%;
		padding: 0 0 10px 0;
		text-align: left;
	}

	/** footer **/
	footer{
		padding: 30px 10px 100px 10px;
	}
	.pan{
		font-size: 10px;
		line-height: 20px;
		margin: 0 0 20px 0;
	}
	#finfo{
		display: inline-block;
		font-family: 'Noto Serif JP', serif;
		font-weight: 600;
		margin: 0 0 20px 0;
		padding: 0 0 20px 0;
		border-bottom: 1px solid #000;
	}
	#finfo h2{
		font-size: 14px;
		line-height: 16px;
		margin: 0 0 10px 0;
	}
	#finfo p{
		font-size: 13px;
		line-height: 16px;
	}
	#fmenu{
		width: auto;
		padding: 0;
		border-top: none;
		font-size: 12px;
		line-height: 20px;
	}
	#fmenu br{	display: inline;}
	footer #copyright{
		position: static;
		margin: 30px 0 0 0;
		padding: 0;
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	     -o-transform: rotate(0deg);
	        transform: rotate(0deg);
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	footer #copyright br{	display: inline;}

	.pc_none{	display: inline;}
	.sp_none{	display: none;}


	#page-top{
		display: none;
		width: 130px;
		height: auto;
		border-radius: 0;
		background: none;
		z-index: 999;
		position: fixed;
		right: 10px;
		bottom: 10px;
	}
	#page-top #pc_menu{	display: none;}
	#page-top .pbt_line{
		width: 60px;
		height: 60px;
		border-radius: 60px;
		background: url(../img/all/line.png) no-repeat;
		background-size: 60px auto;
		position: static;
		margin: 0 10px 0 0;
	}
	#page-top .pbt_up{
		width: 60px;
		height: 60px;
		background: rgba(0, 0, 0, 0.9);
		position: static;
	}

	.error,
	.over{
		padding: 50px 0;
	}
	.sp_no{
		display: none;
	}
}

@media screen and (max-width: 360px) {

}