/*
Theme Name: Design01
Version: 1.5
*/
@charset "utf-8";
/* ------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
/* ------------------------------------------------ */
.pc {}.sp {display: none;}.none {display: none;}
@media screen and (max-width: 767px) {
.pc {display: none;}.sp {display: block;}
}
.drawer .none {display: block!important;}
/* ------------------------------------------------ */
:root {
	--text: #3c311e;
	--white: #fff;
	--black: #000;
	--gray1: #333;
	--gray2: #666;
	--gray3: #999;
	--gray4: #ccc;
	--gray5: #e6e6e6;
	--gray6: #f2f2f2;
	--color1: #f49a00;
	--color2: #f26800;
	--red: #c00;
	--font1: 'Noto Sans JP', sans-serif;
}
/* ------------------------------------------------ */
.anim {
}
/* ----------------- */
.fade {
	opacity:0;
}
.fade.animated {
	animation-fill-mode:forwards;
	animation-duration: 1s;
	opacity:0;
}
.fade.animated.fade-top {animation-name:fade-top;}
.fade.animated.fade-btm {animation-name:fade-btm;}
.fade1.animated {animation-delay:0s;}
.fade2.animated {animation-delay:0.5s;}
.fade3.animated {animation-delay:1s;}
@keyframes fade-top {
	from {opacity: 0;transform: translateY(100px);}
	to {opacity: 1;transform: translateY(0);}
}
@keyframes fade-btm {
	from {opacity: 0;transform: translateY(-100px);}
	to {opacity: 1;transform: translateY(0);}
}
/* ----------------- */
.btna.animated a {
	animation-name: btna;
	animation-fill-mode:forwards;
	animation-duration: .5s;
	animation-timing-function: ease-in-out;
	transform-origin: bottom left 0px;
	opacity:0;
}
@keyframes btna {
0% {opacity: 0;transform: translateX(200px);}
60% {transform: translateX(-30px);}
80% {transform: translateX(10px);}
100% {opacity: 1;transform: translateX(0);}
}
/* ----------------- */
.scale.animated {
	animation-name: scalea;
	animation-fill-mode:forwards;
	animation-duration: .5s;
	animation-timing-function: ease-in-out;
	
}
@keyframes scalea {
0% {opacity: 0;transform: scale(0.5, 0.5);}
100% {opacity: 1;transform: scale(1, 1);}
}
/* ----------------- */
.splash.animated img {
	animation-name: splasha;
	animation-fill-mode:forwards;
	animation-duration: .5s;
	animation-timing-function: ease-in-out;
	
}
@keyframes splasha {
0% {opacity: 0;transform: scale(0.1, 0.1);}
100% {opacity: 1;transform: scale(1, 1);}
}
/* ------------------------------------------------ */
@-ms-viewport {width: device-width;}
@viewport {width: device-width;}
*{
margin:0;
padding:0;
}
html,body {
	height: 100%;
	font-size: 62.5%;
	margin: 0px auto;
}
body {
	color: var(--text);
	font-size: 16px;
	font-size: 1.6rem;
	font-size: 1.6vw;
	font-size: clamp(15px, 1.6vw, 16px);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	background-color: var(--white);
	background-image: url("./img/bg.png");
	background-repeat: repeat;
	background-position: center top;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 15px;
		font-size: 1.5rem;
		-webkit-text-size-adjust: 100%;
	}
}
#container {
	position: relative;
	height: 100%;
	min-height: 100%;
	text-align: left;
	margin: 0px auto;
	padding: 0px;
}
body > #container {height: auto;}
a {
	text-decoration: none;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
a:link {color: var(--black);}
a:visited {color: var(--black);}
a:active {color: var(--color1);}
a:hover {color: var(--color1);}
a img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a:active img,
a:hover img {
	opacity: 1;
}
a svg rect,
a svg path,
a svg circle,
a svg polygon{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
h1,h2,h3,h4,h5,h6 {font-size:1em;}
em,i,address {font-style: normal;}
a[href^='tel'] {pointer-events: none;text-decoration: none;}
a[href^='tel'] img {display:inline-block;}
@media screen and (max-width: 767px) {
	a[href^='tel'] {pointer-events: auto;}
	a[href^='tel'] img {display:block;}
}
button,input,select,textarea {
	outline: none;
	font-family: var(--font1);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	appearance:textfield;
}
input[type='submit'],
input[type='button'],
button {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
img {display:block;max-width:100%;border:none;-ms-interpolation-mode: bicubic;backface-visibility: hidden;image-rendering: -webkit-optimize-contrast;}
@media screen and (max-width: 767px) {
	img {max-width:100%;height:auto;}
}
.center {text-align: center;}
.right {text-align: right;}
.imgleft {float: left;margin-right:5px;}
.imgright {float: right;margin-left:5px;}
@media screen and (max-width: 767px) {
	.imgleft {float: none;margin-right:0px;margin-bottom:10px;}
	.imgright {float: none;margin-left:0px;margin-bottom:10px;}
}
.clear {clear: both;}
.clearfix::after {
	display: block;
	content: "";
	clear: both;
	height: 0px;
	visibility: hidden;
}
ul {list-style-type:none;}
.attention,.error {color: #c00;font-weight: 700;}
.red {color: #f00;}
i.sup {
	position: relative;
	top: -0.2em;
	font-size: 0.7em;
	font-style: normal;
	vertical-align: top;
}
i.sub {
	position: relative;
	top: 0.2em;
	font-size: 0.5em;
	font-style: normal;
	vertical-align: bottom;
}
.sup {
	font-size:0.6em;
	font-style: normal;
	vertical-align: super;
}
/* ------------------------------------------------ */
.width {
	width: 1000px;
	margin: 0px auto;
}
.widths {
	width: 900px;
	margin: 0px auto;
}
@media screen and (max-width: 1000px) {
	.width {
		width: auto;
	}
}
@media screen and (max-width: 900px) {
	.widths {
		width: auto;
	}
}
.drawer .width,
.drawer .widths,
.drawer .widthb {
	width: auto;
}
/* ------------------------------------------------ */
#header {
	position: relative;
	text-align: center;
	padding-top: 6px;
}
#header::before,
#header::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0px;
	width: 100%;
}
#header::before {
	top: 0px;
	height: 4px;
	background-color: #5e4925;
}
#header::after {
	top: 4px;
	height: 2px;
	background-color: #cb9801;
}
.header {
	background-color: #e1dcc5;
	border-bottom: 4px solid #a89575;
}
.header-outer {
	position: relative;
	background-image: url("./img/header.webp");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.header-outer::before,
.header-outer::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	width: 30%;
	height: 100%;
}
.header-outer::before {
	left: 0px;
	background: linear-gradient(to right,  rgba(225,220,197,1) 0%,rgba(225,220,197,0) 60%,rgba(225,220,197,0) 100%);
}
.header-outer::after {
	right: 0px;
	background: linear-gradient(to right,  rgba(225,220,197,0) 0%,rgba(225,220,197,1) 60%,rgba(225,220,197,1) 100%);
}
.header-inner {
	position: relative;
	z-index: 2;
}
/* ------------------------------------------------ */
#header-logo {
}
.header-logo {
	background-color: rgba(196,179,149,0.6);
}
.drawer .header-logo {
	background-color: #e2d3b5;
}
@media screen and (min-width:768px) {
	#header .header-logo {
		text-align: left;
		width: 50%;
		padding: 40px 0px 0px 0px;
	}
}
@media screen and (max-width:767px) {
	.header-logo {
		text-align: center;
	}
}
.header-logo h1 {
	text-align: center;
}
.header-logo h1 a {
	display: inline-block;
}
.header-logo h1 a img {
	display: inline-block;
	width: 300px;
	margin-bottom: 30px;
}
.drawer .header-logo h1 a {
	padding: 5px;
}
.drawer .header-logo h1 a img {
	width: 250px;
}
.header-logo h1 strong {
	display: block;
	font-size: 11px;
	font-weight: 500;
	line-height: 1em;
}
.drawer .header-logo h1 strong {
	padding: 5px 5px;
}
@media screen and (max-width:767px) {
	#header .header-logo h1 {
		text-align: left;
	}
	#header .header-logo h1 a {
		padding: 5px 0px 0px 10px;
	}
	#header .header-logo h1 a img {
		width: 250px;
	}
	#header .header-logo h1 strong {
		padding: 5px 0px 0px 10px;
	}
}
@media screen and (min-width:768px) {
	#header .header-logo h1 strong {
		position: absolute;
		left: 10px;
		top: 10px;
	}
}
.header-logo h1 b {
	display: block;
	position: relative;
	font-size: 20px;
	font-size: clamp(15px, 2vw, 20px);
	font-weight: 700;
	line-height: 1em;
	background-color: rgba(170,142,94,0.6);
	padding: 10px;
}
.drawer .header-logo h1 b {
	font-size: 15px;
}
.header-logo h1 b::before,
.header-logo h1 b::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0px;
	width: 100%;
	height: 4px;
	background-color: rgba(170,142,94,0.6);
}
.header-logo h1 b::before {
	top: -10px;
}
.header-logo h1 b::after {
	top: -25px;
}
.header-logo h1 b {
}
.header-logo h1 b em {
	color: #cd0001;
	font-size: 1.2em;
}
/* ------------------------------------------------ */
#header-mv {
	text-align: center;
}
.header-mv {
	background: linear-gradient(to right, rgba(86,71,48,1) 0%,rgba(146,121,80,1) 100%);
}
.header-mv-maru {
}
.header-mv-maru em {
	background-color: rgba(255,255,255,0.5);
}
.header-mv-maru em b {
	color: #ff9901;
	font-size: 22px;
	font-weight: 900;
	text-shadow: #fff 2px 0px 0px, #fff -2px 0px 0px, #fff 0px -2px 0px, #fff 0px 2px 0px, #fff 2px 2px 0px, #fff -2px 2px 0px, #fff 2px -2px 0px, #fff -2px -2px 0px, #fff 1px 2px 0px, #fff -1px 2px 0px, #fff 1px -2px 0px, #fff -1px -2px 0px, #fff 2px 1px 0px, #fff -2px 1px 0px, #fff 2px -1px 0px, #fff -2px -1px 0px, #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px,#ff9901 3px 3px 5px, #ff9901 -3px 3px 5px, #ff9901 3px -3px 5px, #ff9901 -3px -3px 5px;
}
.header-mv-maru em b span {
	font-size: 12px;
}
@media screen and (max-width:767px) {
	.header-mv-maru {
		padding-top: 5px;
	}
	.header-mv-maru em {
		display: inline-block;
		vertical-align: middle;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		margin: 2px 2px;
		padding: 5px 5px;
	}
	.header-mv-maru em b {
		font-size: 18px;
	}
	.header-mv-maru em b span {
		display: inline-block;
		font-size: 12px;
	}
}
@media screen and (min-width:768px) {
	.header-mv-maru em {
		position: absolute;
		z-index: 3;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}
	.header-mv-maru em:nth-child(1) {
		right: 300px;
		top: 0px;
		width: 120px;
		height: 120px;
	}
	.header-mv-maru em:nth-child(2) {
		right: 200px;
		top: 50px;
		width: 140px;
		height: 140px;
	}
	.header-mv-maru em:nth-child(3) {
		right: 70px;
		top: 0px;
		width: 150px;
		height: 150px;
	}
	.header-mv-maru em:nth-child(4) {
		right: 0px;
		top: 100px;
		width: 150px;
		height: 150px;
	}
	.header-mv-maru em b {
		position: absolute;
		left: 0px;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		font-size: 22px;
	}
	.header-mv-maru em b span {
		display: block;
	}
}
.header-mv-img {
}
.header-mv-img-list {
	padding: 5px;
}
@media screen and (min-width:768px) {
	.header-mv-img-list {
		padding: 10px;
	}
}
.header-mv-img-list ul {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-spacing: 5px 0px;
}
.header-mv-img-list ul li {
	display: table-cell;
	position: relative;
	vertical-align: middle;
}
.header-mv-img-list ul li::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 95%;
	height: 95%;
	background-color: rgba(255,255,255,0.2);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.header-mv-img-list ul li img {
}
.header-mv-img b {
	display: block;
	color: #003332;
	font-size: 20px;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: 900;
	line-height: 1em;
	background-color: #a99678;
	text-shadow: 3px 0px 10px #fff,-3px 0px 10px #fff,0px -3px 10px #fff,0px 3px 10px #fff;
	padding: 10px 10px;
}
@media screen and (max-width:767px) {
	.header-mv-img b {
		font-weight: 900;
		line-height: 1.2em;
	}
}
/* ------------------------------------------------ */
#header #nav {
}
.nav {
	text-align: center;
	position: relative;
	background-color: #f7f7f3;
	padding: 5px 0px;
}
.nav::before,
.nav::after {
	content: "";
	position: absolute;
	left: 0px;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, rgba(230,213,158,1) 0%,rgba(100,78,42,1) 25%,rgba(100,78,42,1) 75%,rgba(230,213,158,1) 100%);
}
.nav::before {
	top: 0px;
}
.nav::after {
	bottom: 0px;
}
.drawer .nav {
	text-align: left;
}
#header .nav ul {
	display: block;
}
.nav ul li {
	position: relative;
}
#header .nav ul li {
	display: inline-block;
	position: relative;
	vertical-align: top;
}
#header .nav ul li::after {
	content: "";
	position: absolute;
	right: -5px;
	top: 0px;
	width: 10px;
	height: 100%;
	background-image: url("./img/nav.webp");
	background-repeat: no-repeat;
	background-position: right center;
}
#header .nav ul li:last-child::after {
	display: none;
}
#header .nav ul li.navnone {
	display: none;
}
.nav ul li a {
	display: block;
	position: relative;
	color: var(--text);
	text-decoration: none;
}
.nav ul li a strong {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-size: 16px;
	font-weight: 700;
	padding: 18px 30px 18px 40px;
}
.drawer .nav ul li a strong {
	font-size: 18px;
}
.nav ul li a:hover,
.nav ul li a:active {
	color: #5a4519;
	background-color: rgba(234,216,147,0.5);
}

.nav ul li a strong::before {
	position: absolute;
	content: "";
	z-index: 0;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
}

.nav ul li:nth-child(1) a strong::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 50 50" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23cc9900" d="M42.063,20.138l-0,-11.443l-6.672,-0l-0,4.776l-5.296,-5.289l-5.086,-5.106l-24.66,24.641l3.652,3.65l21.008,-20.99l20.99,20.99l3.652,-3.65l-7.588,-7.579Z"/><path fill="%23cc9900" d="M7.937,30.402l0,16.522l13.018,-0l0,-11.117l8.09,0l-0,11.117l13.018,-0l-0,-16.524l-17.054,-17.055l-17.072,17.057Z"/></svg>');}
.nav ul li:nth-child(2) a strong::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 50 50" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23cc9900" d="M39.111,4.621c-1.173,0.949 -1.93,2.41 -1.93,4.051l-0,25.123c-5.456,2.537 -10.612,2.609 -15.755,0.217c-3.352,-1.565 -10.661,-2.79 -17.703,-0.62l-0,-24.72c-0,-1.111 0.443,-2.12 1.16,-2.852c0.724,-0.74 1.727,-1.199 2.833,-1.199m34.572,-1.131l-34.572,0c-2.817,0 -5.108,2.324 -5.108,5.182l0,35.957c0,1.04 0.834,1.881 1.854,1.881l31.979,-0c1.021,-0 1.854,-0.841 1.854,-1.881l0,-20.932l7.243,0c1.025,0 1.854,-0.845 1.854,-1.881l-0,-13.144c-0,-2.862 -2.282,-5.182 -5.104,-5.182Z"/></svg>');}
.nav ul li:nth-child(3) a strong::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 50 50" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23cc9900" d="M25,0.556c-9.169,0 -16.602,7.435 -16.602,16.605c-0,9.17 14.768,32.283 16.602,32.283c1.835,-0 16.602,-23.113 16.602,-32.283c0,-9.17 -7.433,-16.605 -16.602,-16.605Zm-0,22.955c-3.506,0 -6.35,-2.844 -6.35,-6.35c0,-3.509 2.844,-6.352 6.35,-6.352c3.506,-0 6.351,2.843 6.351,6.352c0,3.506 -2.845,6.35 -6.351,6.35Z"/></svg>');}
.nav ul li:nth-child(4) a strong::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 50 50" version="1.1" xmlns="http://www.w3.org/2000/svg"><rect fill="%23cc9900" x="15.242" y="4.831" width="18.486" height="18.486"/><rect fill="%23cc9900" x="3.216" y="26.684" width="18.486" height="18.486"/><rect fill="%23cc9900" x="28.299" y="26.684" width="18.486" height="18.486"/></svg>');}
.nav ul li:nth-child(5) a strong::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 50 50" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23cc9900" d="M5.884,0.897l38.232,0l0,48.206l-16.623,-0l0,-11.636l-4.987,-0l0,11.636l-16.622,-0l-0,-48.206Zm31.583,11.636l0,-4.987l-4.987,0l-0,4.987l4.987,0Zm-19.947,0l-0,-4.987l-4.987,0l-0,4.987l4.987,0Zm19.947,9.974l0,-4.987l-4.987,-0l-0,4.987l4.987,-0Zm-9.974,-9.974l0,-4.987l-4.987,0l0,4.987l4.987,0Zm9.974,19.947l0,-4.987l-4.987,0l-0,4.987l4.987,0Zm-9.974,-9.973l0,-4.987l-4.987,-0l0,4.987l4.987,-0Zm-9.973,-0l-0,-4.987l-4.987,-0l-0,4.987l4.987,-0Zm9.973,9.973l0,-4.987l-4.987,0l0,4.987l4.987,0Zm-9.973,0l-0,-4.987l-4.987,0l-0,4.987l4.987,0Z"/></svg>');}
.nav ul li:nth-child(6) a strong::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 50 50" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23cc9900" d="M49.17,28.701l-6.239,-6.481l6.239,-5.377l-0,11.858Z"/><path fill="%23cc9900" d="M7.077,22.22l-6.247,6.488l0,-11.865l6.247,5.377Z"/><path fill="%23cc9900" d="M49.17,34.592l-0,5.967c-0,1.443 -1.171,2.614 -2.614,2.614l-43.112,-0c-1.443,-0 -2.614,-1.171 -2.614,-2.614l0,-5.967l9.343,-9.698l10.673,9.192c1.11,0.952 2.583,1.481 4.154,1.481c1.571,-0 3.051,-0.529 4.162,-1.481l10.665,-9.192l9.343,9.698Z"/><path fill="%23cc9900" d="M49.17,9.433l-0,2.613l-22.796,19.638c-0.732,0.635 -2.016,0.635 -2.749,0l-22.795,-19.638l0,-2.613c0,-1.442 1.171,-2.606 2.614,-2.606l43.112,0c1.443,0 2.614,1.164 2.614,2.606Z"/></svg>');}


.drawer .nav ul li a {
	border-top: 1px solid #000;
}
.drawer .nav ul li:first-child a {
	border-top: 2px solid #000;
}
.drawer .nav ul li:last-child a {
	border-bottom: 2px solid #000;
}
html#html_home_toppage .nav ul li:nth-child(1) a,
html#html_page_chuko .nav ul li:nth-child(2) a,
html#html_page_deli .nav ul li:nth-child(3) a,
html#html_page_other .nav ul li:nth-child(4) a,
html#html_page_com .nav ul li:nth-child(5) a,
html#html_page_contact .nav ul li:nth-child(6) a,
html#html_page_confirm .nav ul li:nth-child(6) a {
	color: #ed8711;
}
/* ------------------------------------------------ */
#footer {
	color: var(--white);
	background-color: #564731;
	padding: 30px 10px 10px 10px;
}
.footer {
}
.footer-inner {
}
.footer-logo {
	text-align: center;
	margin-bottom: 10px;
}
.footer-logo a {
	display: inline-block;
	color: var(--white);
}
.footer-logo img {
	display: inline-block;
}
@media screen and (max-width: 767px) {
	.footer-logo img {
		width: auto;
	}
}
.footer-add {
	text-align: center;
	margin-bottom: 10px;
}
.footer-add strong {
}
.footer-add address {
	font-size: 12px;
}
.footer-link {
	font-size: 11px;
	text-align: center;
	margin-bottom: 10px;
}
.footer-link ul {
}
.footer-link li {
	display: inline-block;
	border-left: 1px solid #ccc;
	margin-left: 5px;
	padding-left: 5px;
}
.footer-link li:first-child {
	border-left: none;
	margin-left: 0px;
	padding-left: 0px;
}
.footer-link a {
	color: var(--white);
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.footer-link li {
		display: block;
		border-left: none;
		border-bottom: 1px dashed #ccc;
		margin-left: 0px;
		padding: 10px;
	}
	.footer-link li:last-child {
		border-bottom: none;
	}
	.footer-link a:hover {
	}
}
.copyright {
	color: #d1cab6;
	font-weight: 400;
	text-align: center;
	padding: 5px;
}
.copyright small {
	font-size: 10px;
}
/* ------------------------------------------------ */
.gotop{
	position: fixed;
	bottom: -50px;
	right: 0;
	z-index: 9997;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.gotop.block {
	bottom: 0;
	visibility: visible;
	opacity: 1;
}
.gotop a,
.gotop a::before,
.gotop a::after {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.gotop a {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	background-color: #f49a00;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-left: auto;
	margin-right: 10px;
	margin-bottom: 10px;
}
.gotop a::before,
.gotop a::after {
	display: inline-block;
	content: "";
	position: absolute;
	left: 50%;
}
.gotop a::before {
	bottom: 10px;
	z-index: 1;
	width: 10px;
	height: 10px;
	border-top: 1px solid;
	border-left: 1px solid;
	border-color: var(--white);
	transform: rotate(45deg);
	margin-left: -5px;
}
.gotop a::after {
	bottom: -10px;
	z-index: 0;
	width: 1px;
	height: 31px;
	background-color: var(--white);
}
.gotop a:hover {
	background-color: #f25900;
}
.gotop a:hover::before {
	bottom: 20px;
	border-color: #fff;
}
.gotop a:hover::after {
	bottom: 0px;
	background-color: #fff;
}
.gotop a span {
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
/* ------------------------------------------------ */
.panlink {
	width: 1100px;
	margin: 0px auto;
}
.panlink ul {
}
.panlink li {
	display: inline-block;
	font-size: 0.8em;
}
.panlink li::after {
	content: " >";
}
.panlink li:last-child::after {
	content: "";
}
.panlink li a {
}
.panlink li span {
}
@media screen and (max-width: 767px) {
	.panlink {
		width: auto;
	}
}
/* ------------------------------------------------ */
#wrap {
}
#main {
	line-height: 1.8em;
}
.main {
	background-color: #f3f3ec;
	padding: 20px 0px;
}
@media screen and (max-width: 767px) {
	.main {
		padding: 20px 0px;
	}
}
/* link------------------------------------------------ */
.link {
	text-align: center;
	padding: 30px 0px;
}
.link-bloc {
	text-align: center;
}
.link-bloc .link {
	display: inline-block;
	vertical-align: top;
	padding: 5px 10px;
}
.link a {
	display: inline-block;
	position: relative;
	font-weight: 500;
	font-size: 1.2em;
	text-decoration: none;
}
.link a span {
	display: block;
	padding: 20px 80px;
}
.link a span b {
	display: inline-block;
	position: relative;
	font-weight: 700;
}
.link.arrow a span b:before,
.link.arrow a span b:after {
	position: absolute;
	right: -40px;
	width: 8px;
	height: 2px;
	content: '';
	border-radius: 2px;
}
.link.arrow a span b:before {
	top: 50%;
	-webkit-transform: rotate(60deg);
	transform: rotate(60deg);
	margin-top: -4px;
}
.link.arrow a span b:after {
	bottom: 50%;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
	margin-bottom: -4px;
}
.link a::before,
.link a::after,
.link a span::before,
.link a span::after {
	content: "";
	position: absolute;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.link a::before,
.link a::after {
	width: 3px;
	height: 20px;
}
.link a span::before,
.link a span::after {
	width: 20px;
	height: 3px;
}
.link a::before {
	left: 0px;
	top: 0px;
}
.link a::after {
	right: 0px;
	bottom: 0px;
}
.link a span::before {
	left: 0px;
	top: 0px;
}
.link a span::after {
	right: 0px;
	bottom: 0px;
}
.link a:hover::before,
.link a:hover::after {
	height: 100%;
}
.link a:hover span::before,
.link a:hover span::after {
	width: 100%;
}

.link a {
	color: var(--black);
}
.link.arrow a span b:before,
.link.arrow a span b:after {
	background-color: var(--black);
}
.link a::before,
.link a::after,
.link a span::before,
.link a span::after {
	background-color: var(--color1);
}
.link a:hover {
	background-color: var(--white);
}
.link.arrow a:hover span b:before,
.link.arrow a:hover span b:after {
	background-color: var(--color1);
}
/* table------------------------------------------------ */
table {
	width: 100%;
}
.table {
	width: 100%;
	border-collapse: collapse;
	/*border-collapse: sepalate;*/
	border-spacing: 0px;
	empty-cells:show;
	margin: 0px auto 10px auto;
}
.table th {
	width: 25%;
	color: #fff;
	font-weight: normal;
	background-color: #666;
	text-align: center;
	padding: 5px;
}
.table td {
	border: 1px solid #999;
	padding: 5px;
}

/*
table {
	width: 100%;
}
.table {
	display:table;
	width: 100%;
	border-collapse:sepalate; //collapse
	border-spacing: 5px;
	empty-cells:show;
	margin: 0px auto;
}
.row{
	display:table-row;
}
.th{
	display:table-cell;
	width: 25%;
	text-align: center;
	vertical-align: middle;
	background-color: #f5f3f2;
	border: 1px solid #dcdddd;
	padding: 5px;
}
.td {
	display:table-cell;
	border: 1px solid #dcdddd;
	padding: 5px;
}
.contact table p {
	padding-bottom:5px;
}
@media screen and (max-width:767px) {
	.table,
	.row,
	.th,
	.th:before{
		display:block;
	}
	.table,
	.row .th:last-child{
		border-bottom:none;
	}
	.row{
		margin:20px 0;
	}
	.row .th:nth-child(1){ 
	}
	.row .th:last-child{
	}
	.row:last-child .th,
	.th{
		width: auto;
	}
	.th:before{
		font-weight:bold;
		padding-right:20px;
		font-size:12px;
		content:" "attr(data-label)"";
	}
	.td {
		display: block;
		border: none;
		padding: 10px;
	}
}
*/
/* ------------------------------------------------ */
.photo {}.photo ul {display: table;width: 100%;table-layout: fixed;border-spacing: 0px;margin: 0px auto;}.photo li {display: table-cell;vertical-align: top;}.photo li img {margin: 0px auto;}@media screen and (max-width: 767px) {.photo ul {display: block;width: auto;}.photo li {display: block;}}
.photo.photoB ul {display: table;width: 100%;table-layout: fixed;border-spacing: 0px;margin: 0px auto;}.photo.photoB li {display: table-cell;vertical-align: top;}
.photo.flex {}.photo.flex ul {display: flex;flex-wrap: wrap;-webkit-flex-wrap: wrap;align-items: flex-start;align-content: flex-start;}.photo.flex li {width: 25%;}
/* ------------------------------------------------ */
.movie {z-index: 9998!important;width: 560px;margin: 0 auto;padding: 20px 0 0 0;}.movie iframe{z-index: 9998!important;}@media screen and (max-width: 767px){.movie {position: relative;width: auto;padding-bottom: 56.25%;padding-top: 30px;height: 0;overflow: hidden;}.movie iframe {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}}
/* ------------------------------------------------ */
.tablebox,.tablebloc dl,.tablebloc ul {display: table;width: 100%;table-layout: fixed;border-spacing: 0px;margin: 0px auto;list-style-type: none;}.tabletd,.tablebloc li,.tablebloc dt,.tablebloc dd {display: table-cell;vertical-align: top;}@media screen and (max-width: 767px) {.tablebox,.tablebloc dl,.tablebloc ul {display: block;width: auto;}.tabletd,.tablebloc li,.tablebloc dt,.tablebloc dd {display: block;width: auto;}}

.tableinner {
}
.tableinner dl {
	background-color: #fff;
	margin: 0px auto 5px auto;
}
.tableinner dl:first-child {
}
.tableinner dl:last-child {
}
.tableinner dl dt {
	width: 20%;
	color: #fff;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
	background-color: #a89475;
	padding: 20px 10px;
}
.tableinner dl dd {
	padding: 20px 20px;
}
@media screen and (max-width: 767px) {
	.tableinner dl {
	}
	.tableinner dl dt {
		width: auto;
		border-right: none;
		padding: 10px 10px;
	}
	.tableinner dl dd {
		padding: 20px 10px;
	}
}
.tableinner dl dd p {
	margin-bottom: 10px;
}
.tableinner dl dd p:last-child {
	margin-bottom: 0px;
}
/* ------------------------------------------------ */
.map iframe {width:100%;height:300px;}@media screen and (max-width: 767px) {.map iframe {height:200px;}}
/* ------------------------------------------------ */
#contact {
}
.contact {
}
.message,
.messages {
	text-align: center;
	background-color: #fff;
	margin-bottom: 30px;
	padding: 30px 30px;
}
.message p,
.messages p {
	margin-bottom: 10px;
}
.message p:last-child,
.messages p:last-child {
	margin-bottom: 0px;
}
.message .link a,
.messages .link a {/*.link*/
	font-size: 13px;
	padding: 5px 50px;
}
@media screen and (max-width: 767px) {
	.message,
	.messages {
		padding: 10px;
	}
}
/* ------------------------------------------------ */
#drawertriger {
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 9999;
}
.drawertrig {
	display: block;
	text-align: center;
	cursor: pointer;
}
.drawertrig span, .drawertrig span::before, .drawertrig span::after {
	position: absolute;
	display: inline-block;
	height: 2px;
	width: 34px;
}
.drawertrig span {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-40%);
	-moz-transform: translate(-50%,-40%);
	-ms-transform: translate(-50%,-40%);
	-o-transform: translate(-50%,-40%);
	transform: translate(-50%,-40%);
	-webkit-transition: background 0.3s 0.3s;
	-moz-transition: background 0.3s 0.3s;
	transition: background 0.3s 0.3s;
}
.drawertrig span::before, .drawertrig span::after {
	content: '';
	right: 0px;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-origin: 0% 50%;
	-moz-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	-o-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.3s 0.3s;
	-moz-transition: -moz-transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s;
}
.drawertrig span::before {
	top: -10px;
}
.drawertrig span::after {
	top: 10px;
}
.drawer-open .drawertrig span {
}
.drawer-open .drawertrig span::before, .drawer-open .drawertrig span::after {
}
.drawer-open .drawertrig span::before {
	-webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
	-moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
	-ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
	-o-transform: translateX(4px) translateY(-3px) rotate(45deg);
	transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.drawer-open .drawertrig span::after {
	-webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
	-moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
	-ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
	-o-transform: translateX(4px) translateY(2px) rotate(-45deg);
	transform: translateX(4px) translateY(2px) rotate(-45deg);
}
.drawer-open #drawertriger {
	-webkit-transform: translateX(-300px);
	-moz-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	-o-transform: translateX(-300px);
	transform: translateX(-300px);
}
.drawertrig {
	width: 50px;
	height: 50px;
	background-color: var(--white);
	background-color: #644e2a;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
	-moz-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.1);
	overflow: hidden;
}
#container .drawertrig span {
	top: 50%;
}
#container.fixed.drawer-open #drawertrig .drawertrig span {
}
.drawer-open .drawertrig {
/*
	background: transparent;
*/
	background-color: var(--color1);
	background-color: #e2dbbf;
	background: var(--white);
	box-shadow: none;
}
.drawer-open .drawertrig span {background: rgba(0,0,0,0);}
.drawertrig span, .drawertrig span::before, .drawertrig span::after {
	background: var(--white);
}
.drawer-open .drawertrig span::before, .drawer-open .drawertrig span::after {
	background: var(--white);
	background-color: #644e2a;
}
#drawertrig a {
	text-decoration: none;
}
.drawer-open #drawertrig a em {
	padding-top: 30px;
}
#container.fixed.drawer-open #drawertrig a em {
	padding-top: 30px;
}
.drawer {
	background-color: #e2d3b5;
	box-shadow: -2px 0px 5px 1px rgba(0,0,0,0.1);
	position: fixed;
	z-index: 9998;
	right: -120%;
	top: 0;
	height: 100%;
	width: 300px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.drawer-open .drawer {
	right: 0;
}
/* ------------------------------------------------ */
.overlay {
	position: fixed;
	z-index: 999;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	background-color: rgba(0,0,0, 0.5);
	background-color: rgba(255,255,255,0.5);
	visibility: hidden;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}
.overlay.close {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}
/* ------------------------------------------------ */
.modal {
	visibility: hidden;
	opacity: 0;
	position:fixed;
	z-index:9998;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	transition: all 0.2s linear;
	background:#fff;
	padding:0px;
	box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.1);
}
.modal.open {
	visibility: visible;
	opacity: 1;
	top:50%;
}
.modal .modalinner {
}

.sandwichs {
	position:absolute;
	z-index: 1;
	right: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	background-color: #000;
}
.sandwichs::before,
.sandwichs::after {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 48%;
	width: 100%;
	height: 6%;
	content: "";
	background-color: #fff;
	transition: all 0.8s ease-in-out;
}
.sandwichs::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.sandwichs::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.sandwichs:hover::before,
.sandwichs:hover::after {
	height: 14%;
}
.sandwichs:hover::before {
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
.sandwichs:hover::after {
	-webkit-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
.sandwichs:hover {
	cursor: pointer;
}
/* ------------------------------------------------ */

/* ------------------------------------------------ */
.recaptcha_policy {
	text-align: center;
	font-size: 13px;
	padding: 20px 0px;
}
.recaptcha_policy a {
	text-decoration: underline;
}
.grecaptcha-badge { visibility: hidden; }
/* ------------------------------------------------ */
#interval {
	z-index:9999;
	position:fixed;
	opacity: 0;
}
/* ------------------------------------------------ */