@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-size: 16px;
	line-height: 1.9;
	word-wrap : break-word;
	overflow-wrap : break-word;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
body > #wrapper {
	height: auto;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

@media print {
	html,
	html body{overflow: visible !important;}
}

/* アクセシビリティ */
.guidance {
	left:-999px;
	position:absolute;
	width:990px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
} /* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0; /* IE7対応 */
}
/* Windows Chrome 画像ぼやけ防止 */
@media screen and (min-width: 768px) {
	img{
		image-rendering: -webkit-optimize-contrast;
	}
}
/* リンク */
a{
	display: inline-block;
}
a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: inherit;
	opacity: .7;
	text-decoration: none!important;
}

.NotoSans {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.NotoSerif {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

.font_shippori{
	font-family: 'Shippori Mincho', serif;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.indent_list li{
	padding-left: 1em;
	text-indent: -1em;
}
.dot_list li::before{
	content: '・';
}

.pc {display: block;}
.sp {display: none;}


/* ▼ タイトル
--------------------------------------- */
#site_title {
	overflow: hidden;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
	width: 100%;
	padding: 0;
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	overflow: visible;
}
header .header_container{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	max-width: 1366px;
	margin: 0 auto;
	height: 80px;
	padding: 0 235px 0 20px;
	position: relative;
}
.header_inner {
}
.header_inner #site_title{
	-webkit-flex: 0 0 300px;
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	width: 300px;
	max-width: 300px;
}
.header_inner #site_title a{
	display: block;
}
.header_inner #site_title a img{
	vertical-align: middle;
}
.header_inner a.reserve_btn{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	width: 200px;
	height: 46px;
	border-radius: 23px;
	background: #D5212C;
	color: #FFF;
	font-size: 16px;
	position: absolute;
	top: calc(50% - 23px);
	right: 20px;
	line-height: 1.2;
}

.menu {display: none;}

/* グローバルナビゲーション */
#gnav {
	width: 600px;
	max-width: calc(100% - 315px);
	overflow: hidden;
}
	#gnav ul {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		-ms-align-items: center;
		align-items: center;
		align-content: center;
		width: 100%;
	}
	#gnav ul > li {
		padding: 0;
	}
	#gnav ul > li a {
		display: block;
		font-size: 14px;
		text-decoration: none;
	}
	#gnav ul > li a:hover {
		-ms-filter: "alpha(opacity=60)";
		-moz-opacity:0.6;
		-khtml-opacity: 0.6;
		opacity: 0.6;
	}
	#gnav ul > li.shop_btn > a {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: center;
		-ms-align-items: center;
		align-items: center;
		align-content: center;
		height: 46px;
		width: 200px;
		border: #000 1px solid;
		border-radius: 23px;
		padding: 0;
		font-size: 16px;
	}
	#gnav ul > li.shop_btn > a::before{
		content: '';
		width: 25px;
		height: 24px;
		margin-right: 8px;
		background: url(../img/icon_cart.png) no-repeat center center/contain;
	}


/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	margin: 0 auto;
	padding-top: 80px;
	clear: both;
	overflow: hidden;
}

/* 中ページタイトル */
h1.page_title{
	margin-bottom: 50px;
	font-weight: normal;
}
h1.page_title .page_title_sub,
h1.page_title .page_title_main{
	display: block;
	text-align: center;
}
h1.page_title .page_title_sub{
	padding-top: 90px;
	background: #F6F5F0;
	font-size: 16px;
}
h1.page_title .page_title_main{
	background: -webkit-linear-gradient(#F6F5F0 0%, #F6F5F0 50%, #FFF 50%, #FFF 100%);
	background: -o-linear-gradient(#F6F5F0 0%, #F6F5F0 50%, #FFF 50%, #FFF 100%);
	background: linear-gradient(#F6F5F0 0%, #F6F5F0 50%, #FFF 50%, #FFF 100%);
	font-size: 50px;
}
.title_under{
	margin-bottom: 40px;
	padding-bottom: 13px;
	font-size: 26px;
	font-weight: normal;
	position: relative;
}
.title_under::after{
	content: '';
	width: 100%;
	height: 3px;
	background: -webkit-linear-gradient(left, #D5212C 0px, #D5212C 40px, #F4F4F4 40px, #F4F4F4 100%);
	background: -o-linear-gradient(left, #D5212C 0px, #D5212C 40px, #F4F4F4 40px, #F4F4F4 100%);
	background: linear-gradient(to right, #D5212C 0px, #D5212C 40px, #F4F4F4 40px, #F4F4F4 100%);
	position: absolute;
	left: 0;
	bottom: 0;
}
.title_under.title_under_w::after{
	background: -webkit-linear-gradient(left, #D5212C 0px, #D5212C 40px, #FFF 40px, #FFF 100%);
	background: -o-linear-gradient(left, #D5212C 0px, #D5212C 40px, #FFF 40px, #FFF 100%);
	background: linear-gradient(to right, #D5212C 0px, #D5212C 40px, #FFF 40px, #FFF 100%);
}


/* ▼ パンくず
--------------------------------------- */
#path {
	margin-bottom: 10px;
	font-size: 14px;
	overflow: hidden;
}
	#path li {
		float: left;
	}
	#path li:not(:last-child):after {
		content: "〉";
		margin-left: 10px;
		color: #333;
	}

/* ▼ システム
--------------------------------------- */
.disabled {
    opacity: .5;
    pointer-events:none;
}

/* ▼▼▼ フッター
===================================== */
footer {
	width: 100%;
	background: #FFF;
	clear: both;
	overflow: hidden;
	}
#footer_inner {
	max-width: 1306px;
	margin: 0 auto;
	padding: 35px 20px 40px;
	overflow: hidden;
}
.fooer_box{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
}
.fooer_box .footer_logo{
	-webkit-flex: 0 0 125px;
	-ms-flex: 0 0 125px;
	flex: 0 0 125px;
	width: 125px;
	max-width: 125px;
}
.fooer_box .footer_logo a{
	display: block;
}
.fooer_box .footer_link{
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: auto;
}
.fooer_box .footer_link .footer_link_list{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
}
.fooer_box .footer_link .footer_link_list li{
	padding: 0 15px;
	font-size: 12px;
	color: #000;
}
.fooer_box .footer_link .footer_link_list li:not(:last-child){
	border-right: #000 1px solid;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
	width: 60px;
	height: 60px;
	background: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 2000;
	cursor: pointer;
}
.pagetop::after{
	content: '';
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-color: #FFF transparent transparent #FFF;
	position: absolute;
	right: calc(50% - 5px);
	bottom: calc(50% - 8px);
	transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
}

/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body{
		font-size: 14px;
	}
	body.wrap {
		overflow: hidden;
	}


	#wrapper {width: 100%;}
	#screen {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color:rgba(0,0,0,0.8);
		z-index: 200;
	}

	.pc {display: none;}
	.sp {display: block;}

	/* ▼タイトル
	--------------------------------------- */
	#site_title {
		overflow: hidden;
	}

	/* ▼▼▼ ヘッダー
	====================================================== */
	header {
		width: 100%;
		padding: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		overflow: visible;
	}
	header .header_container{
		height: 60px;
		padding: 0;
	}
	.header_inner {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		-ms-align-items: center;
		align-items: center;
		align-content: center;
		width: 100%;
		height: 60px;
		background: #fff;
		padding: 0 120px 0 20px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
	}
	.header_inner #site_title{
		-webkit-flex: 0 0 180px;
		-ms-flex: 0 0 180px;
		flex: 0 0 180px;
		width: 180px;
		max-width: 100%;
	}
	.header_inner a.reserve_btn{
		width: 60px;
		height: 60px;
		border-radius: 0;
		font-size: 14px;
		top: 0;
		right: 60px;
	}

	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	#gnav {
		display: block!important;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		float: none;
		width: 100%;
		max-width: 235px;
		height: 100vh;
		padding: 80px 27px 0;
		background: #fff;
		margin: 0;
		position: absolute;
		top: 0;
		right: -1000px;
		z-index: 1000;
		overflow: auto;
	}
		#gnav.open {
			-moz-transform: translateX(-1000px);
			-webkit-transform: translateX(-1000px);
			transform: translateX(-1000px);
		}
		#gnav ul {
			display: block;
		}
		#gnav ul > li {
			width: 100%!important;
			max-width: 100%!important;
			height: auto;
			text-indent: 0;
		}
		#gnav ul > li:not(.shop_btn){
			border-bottom: #000 1px dashed;
		}
		#gnav ul > li > a {
			height: 60px;
			padding: 0;
			color: #000;
			line-height: 60px;
			text-align: left;
		}
		#gnav ul > li > a:hover {
			text-decoration: none;
			opacity: 1;
		}

		#gnav ul > li.shop_btn {
			padding: 30px 0 0;
		}
		#gnav ul > li.shop_btn > a {
			width: 100%;
			height: 40px;
			border-radius: 20px;
			margin: 0 auto;
			padding: 0;
			font-size: 14px;
			text-align: center;
		}
		#gnav ul > li.shop_btn > a::before{
			width: 21px;
			height: 21px;
		}

	/* ▼メニューボタン
	--------------------------------------- */
	.menu {
		display: block;
		width: 60px;
		height: 60px;
		background: #FFF;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2000;
	}
		.menu .icon {
			display: block;
			width: 30px;
			height: 1px;
			border-top: 1px solid #000;
			position: absolute;
			top: 40%;
			right: 15px;
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
			-moz-transition: all 0.3s;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
		.menu .icon:before,
		.menu .icon:after{
			content: '';
			width: 30px;
			border-top: 1px solid #000;
			position: absolute;
			-moz-transition: all 0.3s;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
			right: 0;
		}
		.menu .icon:before {
			top:-7px;
		}
		.menu .icon:after {
			bottom:-6px;
		}
		.menu .icon.active {
			border-color: #FFF;
		}
		.menu .icon.active:before {
			-moz-transform: rotate(-150deg);
			-webkit-transform: rotate(-150deg);
			transform: rotate(-150deg);
			top: -1px;
			right: 0;
		}
		.menu .icon.active:after {
			-moz-transform: rotate(150deg);
			-webkit-transform: rotate(150deg);
			transform: rotate(150deg);
			bottom: 0;
			right: 0;
		}
		.menu .icon span:before{
			content: "Menu";
			color: #000;
			font-size: 12px;
			position: absolute;
			left: 50%;
			bottom: -30px;
			transform: translate(-50%,-0%);
			-webkit-transform: translate(-50%,-0%);
		}
		.menu .icon.active span:before{
			content: "Close";
		}

	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner {
		float: none;
		width: 100%;
		}
	#main {
		padding-top: 60px;
	}

	/* 中ページタイトル */
	h1.page_title{
		margin-bottom: 40px;
		font-weight: normal;
	}
	h1.page_title .page_title_sub,
	h1.page_title .page_title_main{
		display: block;
		text-align: center;
	}
	h1.page_title .page_title_sub{
		padding-top: 45px;
		font-size: 12px;
	}
	h1.page_title .page_title_main{
		font-size: 32px;
	}
	.title_under{
		margin-bottom: 30px;
		padding-bottom: 10px;
		font-size: 20px;
		font-weight: normal;
	}

	/* ▼▼▼ フッター
	====================================================== */
	#footer_inner {
	padding: 40px 20px 100px;
	}
	.fooer_box{
		display: block;
	}
	.fooer_box .footer_logo{
		width: 125px;
		max-width: 125px;
		margin: 0 auto 30px;
	}
	.fooer_box .footer_logo a{
		display: block;
	}
	.fooer_box .footer_link{
		width: 100%;
	}
	.fooer_box .footer_link .footer_link_list{
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: center;
		-ms-align-items: center;
		align-items: center;
		align-content: center;
        flex-wrap: wrap;
	}
	.fooer_box .footer_link .footer_link_list li{
		padding: 0 15px;
		font-size: 12px;
		color: #000;
        width: 50%;
	}
	.fooer_box .footer_link .footer_link_list li:not(:last-child){
		/* border-right: #000 1px solid; */
        border: none;
	}


}