
/* ==============================================================================
	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{	overflow: hidden;}

header,
nav,
main,
aside,
footer{
	width: 650px;
	margin: 0 auto;
}

body:before{
	content: '';
	width: 650px;
	height: 100%;
	position: fixed;
	z-index: -2;
	top: 0;
	left: calc(50% - 325px);
}


/** header **/

header{
	position: relative;
	height: 80px;
}


/** navToggle **/

#navToggle{
	display: block;
}
#navToggle button{
	position: fixed;
	z-index: 9999;
	top: 10px;
	right: calc(50% - 315px);
	cursor: pointer;
	display:block;
	width: 60px;
	height: 60px;
	text-indent: -9999px;
	border: none;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
#navToggle button span,
#navToggle button span:before,
#navToggle button span:after{
	display: inline-block;
	width: 30px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	-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;
}
#navToggle button span{
	position: absolute;
	top: 20px;
	right: 15px;
}
#navToggle button span:before,
#navToggle button span:after{
	content: "";
	display: block;
	clear: both;
}
#navToggle button span:before{
	position: absolute;
	top: 10px;
	right: 0;
}
#navToggle button span:after{
	position: absolute;
	top: 20px;
	right: 0;
}
#navToggle .closebt span{
	position: absolute;
	top: 30px;
	right: 15px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}
#navToggle .closebt span:before{
	content: "";
	clear: both;
	position: absolute;
	top: 0px;
	right: 0px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	opacity:0;
}
#navToggle .closebt span:after{
	content: "";
	display: block;
	clear: both;
	position: absolute;
	top: 0px;
	left: 0px;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
}


/** nav **/

nav{
	position: fixed;
	z-index: 9998;
	width: 650px;
	top: 0;
	right: -110vw;
	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;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
			background-color:#ffe671;
}
.opennav nav{
	height: 100%;
	right: calc(50% - 325px);
	opacity: 1;
	filter: alpha(opacity=100);
	overflow: visible;
	overflow-y: auto;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}
.opennav nav::-webkit-scrollbar{	display: none;}
body:after{
	content: '';
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	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;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
body.opennav:after{
	z-index: 9997;
	opacity: 1;
	filter: alpha(opacity=100);
}

nav #navshop{
	width: 100%;
	height: 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	text-align: left;
	padding: 0 75px 0 15px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

nav #navshop h1{
	width: 100%;
	font-size: 11px;
	line-height: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}

nav #navshop h2{
	width: 100%;
	font-size: 20px;
	line-height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}

nav .menu{
	padding: 0 20px 20px 20px;
}

nav li{
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

nav li a{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 20px;
	padding: 15px 0 15px 25px;
}
nav li a:hover{	text-decoration: none;}

nav li a:before{
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
	position: absolute;
	top: calc(50% - 5px);
	left: 7px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
nav li a:after{
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: calc(50% - 2px);
	left: 11px;
}

nav li a i{
	display: inline-block;
	vertical-align: middle;
	font-style: normal;
	margin-right: 10px;
	margin-top: -2px;
}

.navinfo{
	text-align: left;
}

.navarea{
	font-size: 12px;
	line-height: 18px;
	padding: 0 20px 20px 20px;
}

.nav_contact{
	padding: 0 20px 60px 20px;
}

.nav_contact > a,
.nav_contact > div{
	width: 100%;
	display: flex;
	margin: 0 0 10px 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_contact > a:last-child,
.nav_contact > div:last-child{	margin-bottom: 0;}
.nav_contact > a:hover{	text-decoration: none;}

.nav_contact span{
	width: 25px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

.nav_contact span i{
	width: 25px;
	height: 25px;
	border-radius: 50%;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
}

.nav_contact p{
	font-size: 20px;
	line-height: 22px;
	text-align: left;
	padding: 2px 0 2px 5px;
}

.nav_contact p em{
	display: inline-block;
	font-size: 10px;
	line-height: 14px;
	vertical-align: bottom;
}



/** main **/

main{
	overflow: hidden;
}

.cnt{	margin-bottom: 20px;
clear: both;}

.page_title{
	padding: 15px 0;
}

.page_title em{
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 34px;
	line-height: 34px;
	padding: 0 0 10px 0;
	text-transform: uppercase;
}
.page_title em:after{
	content: '';
	width: 30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	position: absolute;
	bottom: 6px;
	left: calc(50% - 15px);
}

.page_title span{
	display: block;
	font-size: 16px;
	line-height: 20px;
}

.s_title{
	padding: 10px 0 5px 0;
	text-align: center;
}

.s_title em{
	display: block;
	font-size: 24px;
	line-height: 26px;
}

.s_title span{
	display: inline-block;
	vertical-align: top;
	position: relative;
	font-size: 11px;
	font-weight: normal;
	line-height: 18px;
}




/** aside **/

.as_contact{
	margin: 0 0 20px 0;
	padding: 0 10px;
}

.as_contact > a,
.as_contact > div{
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	align-content: center;
	margin: 0 0 2px 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;
}
.as_contact > a:last-child,
.as_contact > div:last-child{	margin-bottom: 0;}
.as_contact > a:hover{	text-decoration: none;}

.as_contact span{
	width: 50px;
	padding: 0 0 0 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

.as_contact span i{
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 34px;
	text-align: center;
}

.as_contact p{
	font-size: 24px;
	line-height: 24px;
	text-align: left;
	padding: 0 0 0 5px;
}

.as_contact p em{
	display: block;
	font-size: 13px;
	line-height: 14px;
}
.as_contact p i{
	font-style: normal;
}

.as_menu{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding: 0 9px 8px 9px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

.as_menu a{
	display: inline-flex;
	width: calc(100% / 2 - 2px);
	align-items: center;
	align-content: center;
	height: 50px;
	font-size: 15px;
	line-height: 16px;
	text-align: left;
	margin: 0 1px 2px 1px;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.as_menu a:hover{	text-decoration: none;}

.as_menu a i{
	font-style: normal;
}

.as_menu a:nth-of-type(2n+1):last-of-type{	width: calc(100% - 2px);}


/** footer **/

footer{
	padding: 20px 0 95px 0;
}

footer .foot_dis{
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	margin: 0 10px 15px 10px;
	padding: 0 0 15px 0;
}

footer .sns_bt{
	font-size: 0;
	line-height: 0;
	text-align: center;
	margin: 0 0 15px 0;
}

footer .sns_bt a,
footer .sns_bt span{
	display: inline-block;
	vertical-align: top;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 5px;
}
footer .sns_bt img{
	width: 50px;
	height: auto;
}
footer .sns_bt span img{
	opacity: 0.7;
	filter: alpha(opacity=70);
}

footer .sns_bt img.bk{	filter: invert();}

footer #ad{
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	margin: 0 0 15px 0;
}

footer #copyright{
	font-size: 10px;
	line-height: 16px;
	text-align: center;
}


/** page-top **/

#page-top{
	display: none;
	width: 650px;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	text-align: center;
	position: fixed;
	z-index: 997;
	bottom: 0;
	left: calc(50% - 325px);
}
#page-top:after{
	content: '';
	width: 100%;
	height: 40px;
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
}

#page-top .fbt{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 10px 10px 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

#page-top a{
	height: 65px;
	-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 a:hover{
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

#page-top .fbt_tel_bg{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	width: calc(100%);
}

#page-top .fbt_tel{
	position: relative;
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	border-radius: 2px;
}
#page-top .fbt_tel span,
#page-top .fbt_tel p{width: 100%;line-height: 30px;}

#page-top .fbt_tel span i{
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	font-size: 12px;
	line-height: 16px;
	border-radius: 50%;
	margin: 0 5px 3px 0;
}
#page-top .fbt_tel p{
	font-size: 25px;
	line-height: 26px;
}

@media screen and (max-width: 650px) {
	#page-top .fbt_tel{
	    font-size: 4.4vw;
	    line-height: 1.2;
	}
	#page-top .fbt_tel p{
	    font-size: 4vw;
	    line-height: 1.2;
	}
}

#page-top .fbt_tel:only-child{
	width: 100%;
	font-size: 16px;
	line-height: 18px;
}
#page-top .fbt_tel:only-child p{
	font-size: 25px;
	line-height: 26px;
}


#page-top .fbt_top{
	width: 50px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	font-size: 12px;
	line-height: 12px;
	text-align: center;
	border-radius: 2px;
	position: absolute;
    right: 20px;
    background: #ff9116;
    color: #fff;
    height: 50px;
}

#page-top .fbt_top i{
	display: block;
	width: 100%;
	font-size: 30px;
	line-height: 30px;
}


/** 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);
}


/** ad_div **/
#ad_div{
	display: block;
}
#ad_div a{
	display: block;
	width: 650px;
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	position: fixed;
	top: 0;
	left: calc(50% - 325px);
	z-index: 9999;
}
#ad_div span{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
}

.ad_on{	padding-top: 50px;}
.ad_on:before{top: 50px;}
.ad_on #navToggle button{	top: 60px;}
.ad_on nav{	top: 50px;}

#footer_ad{
	display: block;
	font-size: 0;
	line-height: 0;
	margin: 0 0 20px 0;
}
#footer_ad img{
	width: 75%;
	max-width: 468px;
	height: auto;
}



/***************************************************
ANIMATION CSS
***************************************************/

/** BASE **/
.delighter{
	opacity: 0;
	filter: alpha(opacity=0);
}

/** START **/
.delighter.started{
	-webkit-transition	: 0.5s ease-in-out;
	-moz-transition	: 0.5s ease-in-out;
	-o-transition	: 0.5s ease-in-out;
	transition		: 0.5s ease-in-out;
	opacity: 1;
	filter: alpha(opacity=100);
}

/** END **/
.delighter.started.ended{
	opacity: 1;
	filter: alpha(opacity=100);
}


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

@media screen and (max-width: 650px) {
	header,
	nav,
	main,
	aside,
	footer{
		width: 100%;
		margin: 0;
	}
	.opennav nav{	right: 0;}
	body:before,
	#page-top{
		width: 100%;
		left: 0;
	}
	footer .foot_dis{
		margin-left: 10px;
		margin-right: 10px;
	}

	/** navToggle **/
	#navToggle button{	right: 10px;}

	#ad_div a{
		width: 100%;
		font-size: 4.5vw;
		left: 0;
	}
	#ad_div a span{	font-size: 5vw;}
}
