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

/* ----------------------------------------------------------
  Common Settings : css-reset
---------------------------------------------------------- */
html{
font-family: var(--font-base);
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: var(--font-base);
    -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: #000}
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;
}


/** header **/

header{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	text-align: left;
	margin: 0 50px;
	height: 170px;
	padding: 0 0 0 325px;
	border-bottom: 1px solid #000;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
header h1{
	width: 100%;
	font-size: 10px;
	font-weight: normal;
	line-height: 20px;
	color: #999;
}
#homelink{
	display: inline-block;
	vertical-align: top;
	position: absolute;
	z-index: 13;
	top: 45px;
	left: 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;
}
#homelink img{
	width: 270px;
	height: auto;
}
#h_menu{
	font-size: 0;
	line-height: 0;
	margin: 10px 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#h_menu a{
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	margin: 0 45px 0 0;
	color: #000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	-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;
}
#h_menu a:hover{
	text-decoration: none;
}
#h_menu a::before{
	content: "";
	width: 20px;
	border-bottom: 1px solid #ccc;
	position: absolute;
	top: 10px;
	right: -30px;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
#h_menu a:last-of-type{	margin-right: 0;}
#h_menu a:last-of-type:before{	display: none;}
#h_menu a::after{
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #000000;
	bottom: 10px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
#h_menu a:hover::after {
	visibility: visible;
	bottom: -2px; /*アニメーションが止まる位置*/
	opacity: 1;
}
#h_info{
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#h_info,
#h_info a{	color: #000;}
#h_info p{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
	margin: 0 10px 0 0;
}
.navToggle{	display: none;}


/** menu **/
.navToggle{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-end;
	width: 60px;
	height: 65px;
	color: #fff;
	background: #000;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 15px;
}
.navToggle button,
.navToggle a{
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 60px;
	height: 65px;
	text-align: center;
	cursor: pointer;
	border: none;
	color: #fff;
	background: none;
	margin: 0;
	padding: 0;
}
.navToggle button:focus{	outline: 0;}
.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: 30px;
	height: 1px;
	right: 15px;
	background: #fff;
	transition: all .4s ease;
	position: absolute;
	-webkit-transition: all .4s ease;
}
.bb-1{	top:15px;}
.bb-2{	top:24px;}
.bb-3{	top:33px;}
.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);
}
nav{
	width: 450px;
	height: 620px;
	text-align: left;
	font-size: 0;
	line-height: 0;
	position: fixed;
	left: auto;
	right: -450px;
	top: 0;/** header,nav,SAME HEIGHT **/
	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: 0 0 100px 0;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
nav.opennav{
	overflow: visible;
	right: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
nav.opennav::-webkit-scrollbar{
  display: none;
}
#pc_nav{
	display: none;
	top: 0px;
	right: 50px;
}
#pc_nav{
	width: 80px;
	height: 80px;
}
#sp_nav{	display: none;}


@media screen and (max-width: 650px) {
	#pc_nav{	display: none;}
	#sp_nav{	display: block;}
	nav{
		width: 100%;
		height: 100vh;
		height: 100lvh;
		right: -200vw;
		top: 0;
	}
	nav.opennav{
		height: 100vh;
		right: 0;
	}
}



.menu{
	text-align: center;
	padding: 100px 0 0 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.menu ul{
	position: relative;
	margin: 0 0 25px 0;
	padding: 0 0 25px 0;
}
.menu ul:before{
	content: '';
	width: 50px;
	height: 1px;
	background: #000;
	position: absolute;
	left: calc(50% - 25px);
	bottom: 0;
}
.menu ul li{
	display: block;
	padding: 7.5px 0;
}
.menu ul a{
	display: inline-flex;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: center;
	color:var(--font-color);
	-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 ul a:hover{
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.menu ul a span{
	width: 140px;
	font-family: "FontA";
	font-size: 26px;
	line-height: 30px;
	margin-right: 2px;
	text-align: right;
}
.menu ul a em{
	width: 140px;
	position: relative;
	bottom: -2px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 30px;
	text-align: left;
	padding: 0 0 0 22px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.menu ul a em::before{
	content: "";
	width: 20px;
	border-bottom: 1px solid #ccc;
	position: absolute;
	top: 15px;
	left: 0;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
#nav_info{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	padding: 0 0 80px 0;
	background: url(../img/all/h_logo.png) no-repeat bottom center;
	background-size: 195px auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#nav_info,
#nav_info a{	color: #000;}
#nav_info p{
	font-size: 16px;
	line-height: 25px;
	text-align: center;
}



/** title **/

.page_title{
	position: relative;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	height: 100px;
	font-size: 20px;
	line-height: 1;
	text-align: left;
	margin: 0 50px 100px 50px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.page_title em:before{
	width: 300px;
	content: 'HIGH-CLASS DELIVERY HEALTH';
	font-family: "FontA";
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 2px;
	position: absolute;
	bottom: -12px;
	left: 2px;
}
.page_title span{
	font-family: "FontA";
	font-size: 80px;
}
.page_title em{
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin: 0 0 0 10px;
	padding: 0 0 10px 0;
}



/** ntopimg **/
.ntopimg{
	font-size: 0;
	line-height: 0;
	padding: 0 0 70px 0;
	margin-top: -50px;
}
.ntopimg:last-of-type{	margin-bottom: 0;}
.ntopimg p{
	margin: 0 0 20px 0;
}
.ntopimg p:last-of-type{	margin-bottom: 0;}
.ntopimg p img{
	width: 100%;
	max-width: 750px;
	height: auto;
}



/** main **/

main{
	display: block;
	padding: 100px 0 50px 0;
}


/** aside **/

aside{
	position: relative;
	color: #fff;
	padding: 100px 0 185px 0;
	background: url(../img/all/pc_aside.png) no-repeat top center;
	background-size: 100% 100%;
}
aside:after{
	content: 'HIGH-CLASS DELIVERY HEALTH';
	width: 100%;
	font-family: "FontA";
	font-size: 10px;
	line-height: 20px;
	text-align: center;
	letter-spacing: 10px;
	position: absolute;
	bottom: 120px;
	left: 0;
}
.pan{
	font-size: 11px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	margin: 0 0 20px 0;
}
.pan a,
.pan span{	color: #fff;}

#f_info{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin: 0 0 50px 0;
	padding: 80px 0 0 0;
	background: url(../img/all/f_logo.png) no-repeat top center;
	background-size: 240px auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#f_info,
#f_info a{	color: #fff;}
#f_info p{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
	margin: 0 5px;
}
#f_menu{
	font-size: 0;
	line-height: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#f_menu a{
	display: inline-block;
	vertical-align: top;
	width: 120px;
	font-size: 14px;
	line-height: 20px;
	margin: 0 5px;
	padding: 10px 0;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	-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 a.pc_none{	display: none;}
#f_menu a:hover{
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 1);
}


/** footer **/

footer{
	position: relative;
	width: 100%;
	text-align: center;
	padding: 50px 0 170px 0;
}
footer #copy,
footer #des{
	font-family: "FontA";
	font-size: 12px;
	line-height: 25px;
	letter-spacing: 1.1px;
	color: #000;
}
footer #des a{	color: #000;}
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;
}
#page-top{
	display: none;
	width: 100%;
	text-align: center;
	padding: 0 10px 10px 10px;
	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;
	justify-content: center;
}
#page-top .fbt a{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: center;
	width: 125px;
	height: 95px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	margin: 0 2px;
	padding: 58px 0 0 0;
	clip-path: polygon(0 10px, 100% 0%, 100% calc(100% - 10px), 0% 100%);
	-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;
}
#page-top .fbt a:hover{
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
#page-top .fbt a.fbt_tel{
	padding-top: 50px;
	background: url(../img/all/fbt_01.png) no-repeat 50% 10px #ff92c8;
	background-size: 45px auto;
}
#page-top .fbt a.fbt_tel span{	width: 100%;}
#page-top .fbt a.fbt_mail{
	background: url(../img/all/fbt_02.png) no-repeat 50% 15px #f8cc47;
	background-size: 40px auto;
}
#page-top .fbt a.fbt_tele{
	background: url(../img/all/fbt_03.png) no-repeat 50% 15px #25a3e1;
	background-size: 40px auto;
}
#page-top .fbt a.fbt_line{
	background: url(../img/all/fbt_04.png) no-repeat 50% 15px #00b900;
	background-size: 40px auto;
}
#page-top .fbt a.fbt_up{
	background: url(../img/all/fbt_05.png) no-repeat 50% 15px #000;
	background-size: 40px auto;
}


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

@media screen and (max-width: 650px) {
	body{
		overflow: hidden;
		min-width: auto;
		padding-top: 0;
		padding-left: 0;
		background: none;
	}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		height:100vh;
	}
	a[href^="tel:"] { cursor: pointer;}
	a:hover{	text-decoration: none;}

	/** header **/
	header{
		position: relative;
		display: block;
		margin: 0 15px;
		height: 80px;
		padding: 50px 0 0 0;
		border-bottom: 1px solid #000;
	}
	header h1{
		position: absolute;
		top: -100px;
		left: 0;
	}
	#homelink{
		display: inline-block;
		vertical-align: top;
		position: absolute;
		z-index: 13;
		top: 13px;
		left: 0;
	}
	#homelink img{
		width: 138px;
		height: auto;
	}
	#h_menu{	display: none;}

	#h_info{
		width: 100%;
		font-family: 'Noto Serif JP', serif;
		font-weight: 600;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#h_info,
	#h_info a{	color: #000;}
	#h_info p{
		display: inline-block;
		vertical-align: top;
		font-size: 11px;
		line-height: 15px;
		margin: 0 10px 0 1px;
	}


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

	/** title **/
	.page_title{
		position: relative;
		display: block;
		height: auto;
		font-size: 14px;
		line-height: 1;
		text-align: left;
		margin: 0 15px 50px 15px;
	}
	.page_title em:before{
		width: 300px;
		content: 'HIGH-CLASS DELIVERY HEALTH';
		font-family: "FontA";
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 1px;
		position: absolute;
		bottom: -12px;
		left: 1px;
	}
	.page_title span{
		font-family: "FontA";
		font-size: 46px;
		display: block;
	}
	.page_title em{
		position: relative;
		margin: 0 0 0 2px;
		padding: 0 0 5px 0;
	}

	/** ntopimg **/
	.ntopimg{
		padding: 30px 15px;
		margin-top: -30px;
	}
	.ntopimg p{
		margin: 0 0 10px 0;
	}
	.ntopimg p:last-of-type{	margin-bottom: 0;}

	/** aside **/
	aside{
		position: relative;
		color: #fff;
		padding: 70px 0 140px 0;
		background: url(../img/all/sp_aside.png) no-repeat top center;
		background-size: 100% 100%;
	}
	aside:after{
		content: 'HIGH-CLASS DELIVERY HEALTH';
		width: 100%;
		font-family: "FontA";
		font-size: 10px;
		line-height: 20px;
		text-align: center;
		letter-spacing: 5px;
		position: absolute;
		bottom: 90px;
		left: 0;
	}
	.pan{
		font-size: 10px;
		line-height: 18px;
		margin: 0 0 20px 0;
	}
	#f_info{
		margin: 0 0 20px 0;
		padding: 50px 0 0 0;
		background: url(../img/all/f_logo.png) no-repeat top center;
		background-size: 140px auto;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#f_info,
	#f_info a{	color: #fff;}
	#f_info p{
		display: inline-block;
		vertical-align: top;
		font-size: 12px;
		line-height: 20px;
		margin: 0 5px;
	}
	#f_menu{
		width: 260px;
		font-size: 0;
		line-height: 0;
		margin: 0 auto;
	}
	#f_menu a{
		display: inline-block;
		vertical-align: top;
		width: 120px;
		font-size: 14px;
		line-height: 20px;
		margin: 0 5px;
		padding: 10px 0;
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		-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 a.pc_none{	display: none;}
	#f_menu a:hover{
		text-decoration: none;
		border-bottom: 1px solid rgba(255, 255, 255, 1);
	}


	/** footer **/

	footer{
		position: relative;
		width: 100%;
		text-align: center;
		padding: 25px 0 110px 0;
	}
	footer #copy,
	footer #des{
		font-size: 10px;
		line-height: 18px;
	}
	#page-top .fbt{
		padding: 0 2px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#page-top .fbt a{
		width: calc(20vw - 2px);
		max-width: 75px;
		height: 75px;
		font-size: 11px;
		line-height: 12px;
		padding: 47px 0 0 0;
		margin: 0 0.5px;
	}
	#page-top .fbt a.fbt_tel{
		padding-top: 47px;
		background: url(../img/all/fbt_01.png) no-repeat 50% 10px #ff92c8;
		background-size: 40px auto;
	}
	#page-top .fbt a.fbt_tel span{	display: none;}
	#page-top .fbt a.fbt_mail{
		background: url(../img/all/fbt_02.png) no-repeat 50% 13px #f8cc47;
		background-size: 30px auto;
	}
	#page-top .fbt a.fbt_tele{
		background: url(../img/all/fbt_03.png) no-repeat 50% 13px #25a3e1;
		background-size: 30px auto;
	}
	#page-top .fbt a.fbt_line{
		background: url(../img/all/fbt_04.png) no-repeat 50% 13px #00b900;
		background-size: 30px auto;
	}
	#page-top .fbt a.fbt_up{
		background: url(../img/all/fbt_05.png) no-repeat 50% 13px #000;
		background-size: 30px auto;
	}
	.error,
	.over{
		padding: 50px 0;
	}
	.sp_no{
		display: none;
	}
}