
/* ==============================================================================
    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%;
	-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;
	padding-top: 100px;
	background-color: #000;
}


/** header **/

header{
	width: 100%;
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: space-between;
	height: 100px;
	background: rgb(21,21,21);
	background: linear-gradient(90deg, rgba(21,21,21,0.8) 0%, rgba(43,43,43,0.8) 50%, rgba(21,21,21,0.8) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
h1{
	font-size: 10px;
	font-weight: normal;
	line-height: 20px;
	text-align: right;
	color: #fff;
	position: absolute;
	z-index: 1002;
	top: 140px;
	right: 20px;
}

#homelink{
	position: relative;
	display: inline-flex;
	align-items: flex-end;
	align-content: flex-end;
	justify-content: center;
	width: 200px;
	height: 200px;
	padding: 0 0 40px 0;
	border-radius: 50%;
	position: absolute;
	z-index: 13;
	top: -60px;
	left: calc(50% - 100px);
	background: radial-gradient(ellipse at center,  #222 0%,#000 100%);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#homelink img{
	width: 160px;
	height: auto;
}

#navToggle{	display: none;}

.h_info{
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	padding: 65px 0 0 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.h_info p{
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	line-height: 26px;
}
.h_info p span{
	position: relative;
	bottom: -3px;
	font-size: 20px;
	line-height: 20px;
	color: #ffa400;
	margin-right: 3px;
}
.h_info .h_open{
	text-align: right;
	margin-right: 120px;
}
.h_info .h_tel{
	text-align: left;
	margin-left: 120px;
}


/** menu **/

nav{
	width: 100%;
	font-size: 0;
	line-height: 0;
	text-align: center;
	position: fixed;
	z-index: 1002;
	top: 16px;
	left: 0;
}
nav a{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 115px;
	height: 38px;
	border-right: 1px solid #000;
	-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 a:hover{
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
nav a:nth-of-type(4){
	border-right: none;
	margin-right: 120px;
}
nav a:nth-of-type(5){
	margin-left: 120px;
}
nav a:last-of-type{	border-right: none;}
nav a span{
	width: 100%;
	font-family: "FontA";
	font-size: 16px;
	line-height: 18px;
	color: #ffa400;
}
nav a em{
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	color: #fff;
}


/** title **/

.page_title{
	position: relative;
	height: 120px;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	text-align: left;
	padding: 30px 20px 0 20px;
	background: url(../img/all/pc_page_title.jpg) no-repeat bottom right;
	background-size: cover;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.page_title:after{
	content: "FUKUHARA SOAP LAND";
	font-family: "FontA";
	font-size: 18px;
	line-height: 1;
	letter-spacing: 7px;
	position: absolute;
	top: 64px;
	right: 20px;
}
.page_title span{
	font-family: "FontA";
	font-size: 56px;
}
.page_title em{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
}


/** main **/

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


/** aside **/

aside{
	position: relative;
	padding: 40px 0;
	background:
	url(../img/all/logo.png) no-repeat 50% 75px,
	url(../img/all/pc_aside.jpg) no-repeat center bottom;
	background-size: 225px auto, cover;
}


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

#f_info{
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
}
#f_info:before{
	content: '';
	width: 50px;
	height: 2px;
	background: #333;
	position: absolute;
	top: -25px;
	left: calc(50% - 25px);
}
#f_info,
#f_info a{	color: #fff;}

#f_info p:first-of-type{
	position: relative;
	font-size: 22px;
	line-height: 24px;
	margin: 0 0 10px 0;
}

#f_info .f_tel{
	display: inline-block;
	font-size: 30px;
	line-height: 50px;
	margin: 0 0 5px 0;
}
#f_info .f_tel em{
	font-size: 50px;
}

#f_info p.f_open{
	font-size: 22px;
	line-height: 24px;
	margin: 0 0 15px 0;
}

#f_info p.f_add{
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 10px 0;
}
#f_info p.f_add br{ display: none;}
#f_info p.f_add a{ color: #ff5d0d; text-decoration: underline;}
#f_info p.f_add a:hover{ text-decoration: none;}


/** footer **/

footer{
	position: relative;
	width: 100%;
	text-align: center;
	padding: 30px 0;
	background: #000;
}

#fmenu{
	width: 1200px;
	font-size: 0;
	line-height: 0;
	margin: 0 auto 30px auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

#fmenu a{
	display: inline-block;
	vertical-align: top;
	width: 100px;
	font-size: 12px;
	line-height: 22px;
	margin: 0 1px 2px 1px;
	color: #fff;
	border: 1px solid currentColor;
	-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;
}
#fmenu a.pc_none{	display: none;}
#fmenu a:hover{
	text-decoration: none;
	color: #fff;
}

footer #copy,
footer #des{
	font-size: 12px;
	line-height: 22px;
	color: #fff;
}
footer #des a{	color: #fff;}
footer #des a:hover{	text-decoration: none;}
footer #copy br{	display: none;}


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

.error{
	color: #ff0000;
}

#page-top{
	font-size: 0;
	line-height: 0;
}


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

@media screen and (max-width: 650px) {
	body{
		overflow: hidden;
		min-width: auto;
		padding-top: 65px;
		padding-left: 0;
		background: #000;
	}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		height:100vh;
		background: url(../img/all/sp_bg.jpg) no-repeat top center;
		-webkit-background-size: cover;
		background-size: cover;
	}
	a[href^="tel:"] { cursor: pointer;}
	a:hover{	text-decoration: none;}

	h1{
		position: absolute;
		top: -100vh;
		right: -100vw;
	}

	/** header **/
	header{
		height: 65px;
	}
	
	#homelink{
		width: 150px;
		height: 150px;
		padding: 0 0 25px 0;
		position: absolute;
		z-index: 13;
		top: -65px;
		left: calc(50% - 75px);
	}
	#homelink img{
		width: 105px;
		height: auto;
	}

	.h_info{
		font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
		padding: 15px 0 0 13px;
	}
	.h_info p{
		display: block;
		text-align: left;
		font-size: 11px;
		line-height: 15px;
	}
	.h_info p span{
		position: relative;
		bottom: -3px;
		font-size: 14px;
		line-height: 15px;
		color: #ffa400;
		margin-right: 3px;
	}
	.h_info .h_open{
		text-align: left;
		margin-right: 0;
	}
	.h_info .h_tel{
		text-align: left;
		margin-left: 0;
	}

	/** navToggle **/
	#navToggle{
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: flex-end;
		width: 60px;
		height: 65px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		position: fixed;
		z-index: 1002;
		top: 0;
		right: 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: 10px;
		line-height: 12px;
		text-align: center;
		position: absolute;
		bottom: 10px;
		right: 0;
	}
	.bb{
		width: 30px;
		height: 2px;
		right: 15px;
		background: #fff;
		transition: all .4s ease;
		position: absolute;
		-webkit-transition: all .4s ease;
	}
	.bb-1{	top:13px;}
	.bb-2{	top:21px;}
	.bb-3{	top:29px;}
	.closebt .bb-1{
		top: 21px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform:rotate(45deg);
	}
	.closebt .bb-2{
		opacity: 0;
	}
	.closebt .bb-3{
		top: 21px;
		-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: auto;
		right: -200vw;
		top: 65px;/** header,nav,SAME HEIGHT **/
		background: rgba(0, 0, 0, 0.9);
		background-repeat: repeat;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		overflow-y: auto;
		-ms-overflow-style: none;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		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: 30px 50px 120px 50px;
		box-shadow: none;
	}
	nav.opennav{
		height: calc(100vh - 65px);
		overflow: visible;
		right: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	nav.opennav::-webkit-scrollbar{
	  display: none;
	}
	nav a{
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		width: 100%;
		height: 49px;
		border-right: none;
		border-bottom: 1px solid #333;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	nav a:nth-of-type(4){
		margin-right: 0;
	}
	nav a:nth-of-type(5){
		margin-left: 0;
	}
	nav a span{
		font-size: 24px;
		line-height: 1;
		text-align: left;
		color: #ffa400;
		font-style: italic;
	}
	nav a em{
		font-size: 14px;
		line-height: 1;
		text-align: right;
		font-style: italic;
	}

	/** title **/
	.page_title{
		height: 80px;
		font-size: 14px;
		line-height: 1;
		padding: 19px 15px 0 15px;
		background: url(../img/all/sp_page_title.jpg) no-repeat bottom right;
		background-size: cover;
	}
	.page_title:after{
		content: "FUKUHARA SOAP LAND";
		font-family: "FontA";
		font-size: 10px;
		line-height: 1;
		letter-spacing: 5px;
		position: absolute;
		top: 59px;
		right: auto;
		left: 16px;
	}
	.page_title span{
		font-family: "FontA";
		font-size: 36px;
	}
	.page_title em{
		font-family: 'Noto Serif JP', serif;
		font-weight: 500;
	}

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

	/** aside **/
	aside{
		position: relative;
		padding: 25px 0 30px 0;
		background:
		url(../img/all/logo.png) no-repeat 50% 55px,
		url(../img/all/sp_aside.jpg) no-repeat center bottom;
		background-size: 190px auto, cover;
	}
	aside:after{
		font-size: 10px;
		line-height: 20px;
		position: absolute;
		top: 130px;
		left: 0;
	}
	.pan{
		font-size: 11px;
		line-height: 20px;
		margin: 0 0 140px 0;
	}
	#f_info:before{
		position: absolute;
		top: -20px;
	}
	#f_info p:first-of-type{
		position: relative;
		font-size: 16px;
		line-height: 18px;
		margin: 0 0 5px 0;
	}

	#f_info .f_tel{
		display: inline-block;
		font-size: 18px;
		line-height: 32px;
		margin: 0 0 5px 0;
	}
	#f_info .f_tel em{
		font-size: 32px;
	}

	#f_info p.f_open{
		font-size: 16px;
		line-height: 18px;
	}
	
	#f_info p.f_add{
		font-size: 16px;
	}
	#f_info p.f_add br{ display: inline;}


	/** footer **/
	footer{
		padding: 20px 0 75px 0
	}
	#fmenu{
		width: auto;
		margin: 0 0 13px 0;
		padding: 0 34px;
	}
	#fmenu a{
		display: inline-flex;
		align-items: center;
		align-content: center;
		justify-content: center;
		width: calc(100% / 3 - 2px);
		height: 30px;
		font-size: 12px;
		margin: 0 1px 2px 1px;
	}
	footer #copy,
	footer #des{
		font-size: 11px;
		line-height: 20px;
		color: #fff;
	}
	footer #des a{	color: #fff;}
	footer #des a:hover{	text-decoration: none;}
	footer #copy br{	display: none;}
	#page-top{
		width: 100%;
		text-align: center;
		position: fixed;
		z-index: 1002;
		right: 0;
		bottom: 0;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#page-top .fbt{
		width: 100%;
		display: flex;
		align-items: flex-end;
		align-content: flex-end;
	}
	#page-top .fbt a{
		display: inline-flex;
		align-items: flex-start;
		align-content: flex-start;
		justify-content: center;
		flex: 1;
		height: 54px;
		font-size: 12px;
		line-height: 12px;
		color: #fff;
		margin: 0 1px 2px 1px;
		padding: 35px 0 0 0;
		border: 1px solid #333;
		background: #fff;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#page-top .fbt a.fbt_tel{
		flex-wrap: wrap;
		height: 70px;
		color: #fff;
		background: url(../img/all/fbt1.png) no-repeat 50% 10px rgba(216,6,0,0.9);
		background-size: 30px auto;
		margin: 0;
		padding-top: 49px;
		border-radius: 0 10px 0 0;
		border: none;
	}
	#page-top .fbt a.fbt_top{	background: url(../img/all/fbt2.png) no-repeat 50% 3px rgba(0,0,0,0.9); background-size: 30px auto;}
	#page-top .fbt a.fbt_sche{	background: url(../img/all/fbt3.png) no-repeat 50% 3px rgba(0,0,0,0.9); background-size: 30px auto;}
	#page-top .fbt a.fbt_rank{	background: url(../img/all/fbt4.png) no-repeat 50% 3px rgba(0,0,0,0.9); background-size: 30px auto;}
	#page-top .fbt a.fbt_rec{	background: url(../img/all/fbt5.png) no-repeat 50% 3px rgba(0,0,0,0.9); background-size: 30px auto;}
	.error,
	.over{
		padding: 50px 0;
	}
	.sp_no{
		display: none;
	}
}
