/*
Theme Name: Design01
Version: 1.5
*/
@charset "utf-8";
/* ------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');


/*
	font-family: 'Raleway', sans-serif;
	font-family: 'Roboto Condensed', sans-serif;
*/
/* ------------------------------------------------ */
.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 {
	--white: #fff;
	--black: #3d3530;
	--gray1: #333;
	--gray2: #666;
	--gray3: #999;
	--gray4: #ccc;
	--gray5: #e6e6e6;
	--gray6: #f2f2f2;
	--color1: #91847c;
	--color2: #99635b;
	--color3: #703f33;
	--color4: #f2a591;
	--color5: #e0baaf;
	--color6: #f2eae8;
	--red: #9b1e19;
	--red2: #c00;
	--font1: 'Noto Sans JP', sans-serif;
/*
	--font2: 'Noto Serif JP', serif;
*/
	--font2: 'Shippori Mincho', serif;
	--font3: 'Roboto Condensed', sans-serif;
}
/*
	font-size: 30px;
	font-size: 3vmin;
	font-size: clamp(24px, 3vmin, 30px);

	color: var(--color1);
	background-color: var(--color1);
	font-family: var(--font1);
*/
/* ------------------------------------------------ */
.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;}
.fade.animated.fade-left {animation-name:fade-left;}
.fade.animated.fade-right {animation-name:fade-right;}
.fade.animated.fade-fade {animation-name:fade-fade;}
.fade1.animated {animation-delay:0s;}
.fade2.animated {animation-delay:0.5s;}
.fade3.animated {animation-delay:1s;}
.duration15.animated {animation-duration:1.5s;}
@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);}
}
@keyframes fade-left {
	from {opacity: 0;transform: translateX(-100px);}
	to {opacity: 1;transform: translateX(0);}
}
@keyframes fade-right {
	from {opacity: 0;transform: translateX(100px);}
	to {opacity: 1;transform: translateX(0);}
}
@keyframes fade-fade {
	from {opacity: 0;}
	to {opacity: 1;}
}
/* ----------------- */
.line {
	display: inline-block;
	position: relative;
}
.line::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0px;
	bottom: -10px;
	height: 3px;
	background-color: var(--color1);
	animation-fill-mode:forwards;
	animation-duration: 1.2s;
	animation-delay:0.5s;
}
.line.animated.line-left::after {animation-name:line-left;}
.line.animated.line-right::after {animation-name:line-right;}
.line.animated.line-fade::after {animation-name:line-fade;}
@keyframes line-left {
	0% {width: 0%;}
	100% {width: 100%;}
}
/* ----------------- */
.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(--black);
	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);
}
@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;
}
/*
@media screen and (max-width: 1000px) {#container {width:1000px;}}
@media screen and (max-width: 767px) {#container {width:100%;}}
*/
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: 0.8;
}
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;
}
/*
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95);

	-webkit-transform: translate(0px,30px);
	-moz-transform: translate(0px,30px);
	-ms-transform: translate(0px,30px);
	-o-transform: translate(0px,30px);
	transform: translate(0px,30px);

	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);

	-webkit-transition: -webkit-transform 0.3s linear;
	-moz-transition: -moz-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	transition: transform 0.3s linear;

.galbox li {
	position: relative;
	width: 20%;
	height: 75px;
	overflow: hidden;
}
.galbox li img {
	position: absolute;
	left: 50%;
	top: 50%;

	width: auto;
	height: 75px;
	max-width: none;


	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);

	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);

	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	-webkit-transform: translate(0%,-50%);
	-moz-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);

	-webkit-transform: translate(-50%,0%);
	-moz-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	-o-transform: translate(-50%,0%);
	transform: translate(-50%,0%);

	-webkit-transform: translate(0%,0%);
	-moz-transform: translate(0%,0%);
	-ms-transform: translate(0%,0%);
	-o-transform: translate(0%,0%);
	transform: translate(0%,0%);
}
*/
h1,h2,h3,h4,h5,h6 {font-size:1em;}
strong, b {font-weight: 700;}
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: var(--red);}
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;
}
.dsh {
	box-shadow: 2px 2px 2px #e6e6e6;
	-moz-box-shadow: 2px 2px 2px #e6e6e6;
	-webkit-box-shadow: 2px 2px 2px #e6e6e6;

	box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.1);
	-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);
/*
	text-shadow: 1px 1px 5px rgba(0,0,0,1),1px 2px 5px rgba(0,0,0,1);
	-moz-text-shadow: 1px 1px 5px rgba(0,0,0,1),1px 2px 5px rgba(0,0,0,1);
	-webkit-text-shadow: 1px 1px 5px rgba(0,0,0,1),1px 2px 5px rgba(0,0,0,1);

	-moz-text-shadow: 3px 0px 10px #fff,-3px 0px 10px #fff,0px -3px 10px #fff,0px 3px 10px #fff;
	-webkit-text-shadow: 3px 0px 10px #fff,-3px 0px 10px #fff,0px -3px 10px #fff,0px 3px 10px #fff;
	text-shadow: 3px 0px 10px #fff,-3px 0px 10px #fff,0px -3px 10px #fff,0px 3px 10px #fff;

	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;
	-moz-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;
	-webkit-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;
}

3pxのふち
text-shadow: 0px 1px 0px #000,1px 1px 0px #000,2px 1px 0px #000,3px 1px 0px #000,0px 2px 0px #000,1px 2px 0px #000,2px 2px 0px #000,3px 2px 0px #000,0px 3px 0px #000,1px 3px 0px #000,2px 3px 0px #000,3px 3px 0px #000,0px -1px 0px #000,1px -1px 0px #000,2px -1px 0px #000,3px -1px 0px #000,0px -2px 0px #000,1px -2px 0px #000,2px -2px 0px #000,3px -2px 0px #000,0px -3px 0px #000,1px -3px 0px #000,2px -3px 0px #000,3px -3px 0px #000,-1px 1px 0px #000,-2px 1px 0px #000,-3px 1px 0px #000,-1px 2px 0px #000,-2px 2px 0px #000,-3px 2px 0px #000,-1px 3px 0px #000,-2px 3px 0px #000,-3px 3px 0px #000,-1px -1px 0px #000,-2px -1px 0px #000,-3px -1px 0px #000,-1px -2px 0px #000,-2px -2px 0px #000,-3px -2px 0px #000,-1px -3px 0px #000,-2px -3px 0px #000,-3px -3px 0px #000,1px 0px 0px #000,1px 1px 0px #000,1px 2px 0px #000,1px 3px 0px #000,2px 0px 0px #000,2px 1px 0px #000,2px 2px 0px #000,2px 3px 0px #000,3px 0px 0px #000,3px 1px 0px #000,3px 2px 0px #000,3px 3px 0px #000,-1px 0px 0px #000,-1px 1px 0px #000,-1px 2px 0px #000,-1px 3px 0px #000,-2px 0px 0px #000,-2px 1px 0px #000,-2px 2px 0px #000,-2px 3px 0px #000,-3px 0px 0px #000,-3px 1px 0px #000,-3px 2px 0px #000,-3px 3px 0px #000,1px 0px 0px #000,1px -1px 0px #000,1px -2px 0px #000,1px -3px 0px #000,2px 0px 0px #000,2px -1px 0px #000,2px -2px 0px #000,2px -3px 0px #000,3px 0px 0px #000,3px -1px 0px #000,3px -2px 0px #000,3px -3px 0px #000,-1px 0px 0px #000,-1px -1px 0px #000,-1px -2px 0px #000,-1px -3px 0px #000,-2px 0px 0px #000,-2px -1px 0px #000,-2px -2px 0px #000,-2px -3px 0px #000,-3px 0px 0px #000,-3px -1px 0px #000,-3px -2px 0px #000,-3px -3px 0px #000;

	background: -moz-linear-gradient(top, rgba(19,128,182,1) 0%, rgba(2,85,158,1) 100%);
	background: -webkit-linear-gradient(top, rgba(19,128,182,1) 0%,rgba(2,85,158,1) 100%);
	-moz-background-clip: text;
	-webkit-background-clip: text;
	-moz-text-fill-color: transparent;
	-webkit-text-fill-color: transparent;

color: rgb(255,214,94);
background: -moz-linear-gradient(top, rgba(229,165,4,1) 0%, rgba(255,214,94,1) 30%, rgba(255,214,94,1) 70%, rgba(229,165,4,1) 100%);
background: -webkit-linear-gradient(top, rgba(229,165,4,1) 0%,rgba(255,214,94,1) 30%,rgba(255,214,94,1) 70%,rgba(229,165,4,1) 100%);
background: linear-gradient(to bottom, rgba(229,165,4,1) 0%,rgba(255,214,94,1) 30%,rgba(255,214,94,1) 70%,rgba(229,165,4,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5a504', endColorstr='#e5a504',GradientType=0 );endColorstr='#febf04',GradientType=0 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

	filter: drop-shadow(2px 0px 2px rgba(0,0,0,0.2));
*/
}
.corn {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.text-transform {
	text-transform: capitalize;
	text-transform: uppercase;
	text-transform: lowercase;
	text-transform: full-width;
}
/*
<div id="wrap" class="fade off">
#wrap.on {
	background-color: #fff;
}

$(function(){$(window).scroll(function (){$(".fade").each(function(){var imgPos = $(this).offset().top;var scroll = $(window).scrollTop();var windowHeight = $(window).height();if (scroll > imgPos - windowHeight + windowHeight/5){$(this).addClass("on");} else {$(this).removeClass("on");}});});});
$(function(){$(window).scroll(function (){$(".fade2").each(function(){var imgPos = $(this).offset().top;var scroll = $(window).scrollTop();var windowHeight = $(window).height();if (scroll > imgPos - windowHeight + windowHeight/3){$(this).addClass("on");} else {$(this).removeClass("on");}});});});
*/
.off {/*fade*/
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-ms-transition: all 1s;
	transition: all 1s;
}
.on {
}
/* ------------------------------------------------ */
.width {
	width: 1000px;
	margin: 0px auto;
}
.widths {
	width: 900px;
	margin: 0px auto;
}
.widthb {
	width: 1200px;
	margin: 0px auto;
}
@media screen and (max-width: 1200px) {
	.widthb {
		width: 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 {
}
.header {
	position: relative;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.3s linear;
}
.header-outer {
}
.header-inner {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 768px) {
	#header .header {
		position: fixed;
		left: 0px;
		top: 0px;
		z-index: 5;
		width: 100%;
		background-color: rgba(255,255,255,0.8);
	}
	#container.fixed #header .header {
		background-color: rgba(255,255,255,0.5);
	}
	#header .header-inner {
		display: table;
		width: 100%;
		table-layout: fixed;
		border-spacing: 0px;
		margin: 0px auto;
	}
	#header .headerLeft,
	#header .headerRight {
		display: table-cell;
		vertical-align: middle;
	}
	#container.fixed #header .header-inner {
	display: none;
	}
	#header .headerRight {
		text-align: right;
	}
	#header .headerRight .header-box {
		display: inline-block;
		text-align: center;
		vertical-align: middle;
	}
}
/* ------------------------------------------------ */
#header-logo {
}
.header-logo {
	text-align: center;
	padding: 10px 10px;
}
.drawer .header-logo {
	padding: 30px 10px;
}
.header-logo h1 {
}
.header-logo h1 a {
	display: inline-block;
}
.header-logo h1 a img {
	display: inline-block;
	width: 240px;
}
/* ------------------------------------------------ */
@media screen and (max-width: 767px) {
	#header #nav {
		display: none;
	}
}
.nav {
	text-align: center;
}
.drawer .nav {
}
#header .nav ul {
	display: block;
}
.nav ul li {
	position: relative;
}
#header .nav ul li {
	display: inline-block;
	vertical-align: top;
}
#header .nav ul li.navnone {
	display: none;
}
.nav ul li a {
	display: block;
	position: relative;
	color: var(--black);
	text-decoration: none;
	padding: 20px 10px;
}
.nav ul li a span {
	display: block;
	font-size: 18px;
	font-family: var(--font2);
	font-weight: 400;
	text-transform: uppercase;
}
.nav ul li a strong {
	display: block;
	font-size: 12px;
	font-weight: 400;
}
.drawer .nav ul li a span {
	display: none;
}
.drawer .nav ul li a strong {
	font-size: 16px;
	font-family: var(--font2);
	font-weight: 400;
}
#nav .nav ul li a {
}
#container.fixed #header #nav .nav ul li a {
	padding: 5px 10px;
}
.drawer .nav ul li a {
	border-top: 1px solid var(--color1);
}
.drawer .nav ul li:first-child a {
	border-top: 2px solid var(--color1);
}
.drawer .nav ul li:last-child a {
	border-bottom: 2px solid var(--color1);
}
.drawer .nav ul li ul li a {
	border-top: 1px dashed var(--color1);
	padding: 10px 10px;
}
.drawer .nav ul li ul:first-child a,
.drawer .nav ul li ul:last-child a {
	border-top: none;
	border-top: 1px dashed var(--color1);
	border-bottom: none;
}
.nav ul li a:hover {
	color: var(--color1);
}
.drawer .nav ul li a:hover,
.drawer .nav ul li a:active {
	color: var(--white);
	background-color: var(--color1);
}
#nav {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
#container.fixed #nav {
}
@media screen and (min-width: 768px) {
	#header .nav ul li ul {
		display: none;
		z-index: 0;
		margin: 0;
		padding: 0;
		min-width: 220px;
		list-style: none;
		position: static;
		top: 100%;
		left: -50%;
	}
	#header .nav ul li ul {
		display: block;
		z-index: 100;
		position: absolute;
	}
	#header .nav ul li ul li {
		overflow: hidden;
		width: 100%;
		height: auto;
	}
	#header .nav ul li ul li {
		display: block;
		overflow: hidden;
		height: 0;
	}
	#header .nav ul > li > ul {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	}
	#header .nav ul > li:hover > ul {
		box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.1);
		-moz-box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.1);
		-webkit-box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.1);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
		border-top: 3px solid #fff;
	}
	#header .nav ul > li:hover > ul > li {
		overflow: visible;
		height: auto;
		border-bottom: 1px solid #fff;
	}
	#header .nav ul li ul li a {
		color: var(--white);
		background-color: rgba(0,63,132,1);
		padding: 10px 10px;
	}
	#header .nav ul li ul li a:hover {
		color: var(--white)!important;
		background-color: rgba(0,63,132,0.8);
	}
}
/* ------------------------------------------------ */
#footer {
	background-color: linear-gradient(to right,  rgba(252,247,242,1) 0%,rgba(247,230,222,1) 47%,rgba(252,247,242,1) 100%);
	background-color: var(--color1);
}
.footer {
}
.footer-inner {
}
.footer-logo {
	text-align: center;
	padding: 20px 10px;
}
.footer-logo a {
	display: inline-block;
}
.footer-logo img {
	display: inline-block;
	width: 240px;
}
@media screen and (max-width: 767px) {
	.footer-logo img {
	width: 200px;
	}
}
.footer-add address {
	font-size: 12px;
}
.footer-link {
	line-height:1em;
	text-align: center;
}
.footer-link ul {
	line-height:1em;
}
.footer-link li {
	line-height:1em;
}
.footer-link a {
	color: var(--white);
	line-height:1em;
	vertical-align: middle;
	text-decoration: none;
}
.footer-link a:hover {
	color: var(--color1);
}
@media screen and (min-width:768px) {
	.footer-link li {
		display: inline-block;
		vertical-align: top;
	}
	.footer-link ul li ul {
		display: inline-block;
		vertical-align: top;
	}
	.footer-link ul li ul li {
		display: inline-block;
		vertical-align: top;
	}
	.footer-link a {
		display: inline-block;
		font-size: 11px;
		border-left: 1px solid #ccc;
		padding: 5px 5px;
	}
	.footer-link li:first-child a {
		border-left: none;
	}
	.footer-link li ul li:first-child a {
		border-left: 1px solid #ccc;
	}
}
@media screen and (max-width: 767px) {
	.footer-link li {
		display: block;
	}
	.footer-link li:last-child {
		border-bottom: none;
	}
	.footer-link ul li ul {
		display: block;
	}
	.footer-link ul li ul li {
		display: block;
	}
	.footer-link a {
		display: block;
		font-size: 13px;
		border-top: 1px solid #ccc;
		padding: 15px 5px;
	}
	.footer-link li:first-child a {
		border-top: none;
	}
	.footer-link li ul li a {
		border-top: 1px dashed #ccc;
	}
	.footer-link li ul li:first-child a {
		border-top: 1px dashed #ccc;
	}
}
.copyright {
	font-weight: 400;
	text-align: center;
	padding: 5px;
}
.copyright small {
	font-size: 10px;
}
/* ---------------------------------------------------------------------- */
#slide {
	position: relative;
	overflow: hidden;
}
.slide {
}
#slide-tex {
	position: absolute;
	left: 0px;
	z-index: 2;
	pointer-events: none;
	width: 100%;
	text-align: center;
}

@media screen and (min-width: 768px) {
	#slide-tex {
		top: 60%;
		transform: translateY(-60%);
	}
}
@media screen and (max-width: 767px) {
	#slide-tex {
		top: 50%;
		transform: translateY(-50%);
	}
}
.slide-tex {
	color: var(--white);
	font-family: var(--font2);
	padding: 10px;
}
.slide-tex strong {
	display: block;
	font-size: 30px;
	font-size: clamp(20px, 2.4vw, 24px);
	font-weight: 400;
	line-height: 1em;
	margin-bottom: 20px;
}
.slide-tex b {
	display: block;
	font-size: 40px;
	font-size: clamp(36px, 4vw, 40px);
	font-weight: 400;
	line-height: 1em;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.slide-tex ruby {
	ruby-align: center;
}
.slide-tex ruby rt {
	font-size: 0.4em;
	margin-bottom: 2px;
}
.slide-tex em {
	display: inline-block;
	line-height: 1em;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}


swiper-container {
	position: relative;
	width: 100%;
	height: 100%;
/*
	height: auto;
*/
}
swiper-slide {
	position: relative;
/*
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
*/
}
swiper-slide::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(110,60,55,0.1);
	background-image: linear-gradient(45deg, rgba(110,60,55,0.1) 25%, transparent 25%, transparent 75%, rgba(110,60,55,0.1) 75%, rgba(110,60,55,0.1)), linear-gradient(45deg, rgba(110,60,55,0.1) 25%, transparent 25%, transparent 75%, rgba(110,60,55,0.1) 75%, rgba(110,60,55,0.1));
	background-position: 0 0, 3px 3px;
	background-size: 6px 6px;
}
swiper-slide::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
}
swiper-slide img {
		width: 100%;
	height: auto;
	margin: 0px auto;
}
@media screen and (min-width:768px) {
/*
	swiper-slide {
		width: 1200px;
	}
*/
}
swiper-slide a {
	display: block;
}
swiper-slide a:hover {
	color: var(--black);
}
/*
<script>
const swiperEl = document.querySelector('swiper-container')
const params = {
injectStyles: [`
	:host {
		--swiper-navigation-size: 30px;
	}
	.swiper-button-prev,
	.swiper-button-next {
		color: #fff;
	}
	.swiper-pagination-bullet-active {
		color: #fff;
		background: #fcc;
	}
`],
}
Object.assign(swiperEl, params)
swiperEl.initialize();
</script>
*/


@media screen and (max-width: 767px) {
	.swiper-slide {
		width: 100%;
		max-width: none;
	}
}
/* ------------------------------------------------ */
.gotop{
	position: fixed;
	bottom: -50px;
	right: 0;
	z-index: 9999;
	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: var(--color1);
	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: var(--color2);
}
.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;
	}
}
/* ------------------------------------------------ */
/*wp用
.panlink {
	font-size: 0.8em;
	padding: 10px 10px;
}
.panlink span {
	display: inline-block;
	font-weight: 700;
}
.panlink a span {
	display: inline-block;
	font-weight: 400;
}
@media screen and (max-width: 767px) {
	.panlink {
		width: auto;
	}
}
*/
/* ------------------------------------------------ */
#wrap {
	position: relative;
	z-index: 1000;
}
#main {
	line-height: 1.8em;
}
.main {
	padding: 30px 0px 100px 0px;
}
.home .main {
	padding: 0px 0px;
}
@media screen and (max-width: 767px) {
	.main {
		padding: 20px 0px;
	}
}
/* link------------------------------------------------ */

/* 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;
	max-width: 300px;
	height: auto;
	cursor: pointer;
	outline: none;
	font-size: 15px;
	font-weight: 500;
	line-height: 1em;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: .2s linear .1s;
	transition: .2s ease-in-out .1s;
	overflow: hidden;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
}
.linkb a {
	font-size: 20px;
	font-size: clamp(18px, 2vw, 20px);
}
.link a:hover {
	-moz-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.3);
}
.link a span {
	display: block;
	position: relative;
	z-index: 1;
	padding: 15px 40px;
	-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::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 0px;
	-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:hover::after {
	width: 100%;
	height: 100%;
	background-color: var(--white);
}
/* ----------- */
.link a,
.link1 a {
	color: var(--white);
	background-color: var(--color1);
	border: 2px solid var(--color1);
}
.link a:hover,
.link1 a:hover {
	color: var(--color1);
}
.link a::after,
.link1 a::after {
	background-color: var(--color1);
}
.link a:hover span,
.link1 a:hover span {
	color: var(--color1);
}
.link a:hover::after,
.link1 a:hover::after {
	background-color: var(--white);
}
/* ----------- */
.link2 a {
	color: var(--white);
	background-color: var(--color2);
	border: 2px solid var(--color2);
}
.link2 a:hover {
	color: var(--color2);
}
.link2 a::after {
	background-color: var(--color2);
}
.link2 a:hover span {
	color: var(--color2);
}
.link2 a:hover::after {
	background-color: var(--white);
}
/* ----------- */
.link3 a {
	color: var(--white);
	background-color: var(--color8);
	border: 2px solid var(--color8);
}
.link3 a:hover {
	color: var(--color8);
}
.link3 a::after {
	background-color: var(--color8);
}
.link3 a:hover span {
	color: var(--color8);
}
.link3 a:hover::after {
	background-color: var(--white);
}
/* ----------- */
.link4 a {
	color: var(--white);
	background-color: var(--red);
	border: 2px solid var(--red);
}
.link4 a:hover {
	color: var(--red);
}
.link4 a::after {
	background-color: var(--red);
}
.link4 a:hover span {
	color: var(--red);
}
.link4 a:hover::after {
	background-color: var(--white);
}
/* 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;}
/* ------------------------------------------------ */
.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;
	border-top: 1px dashed #000;
	margin: 0px auto;
}
.tableinner dl:first-child {
	border-top: 2px solid #000;
}
.tableinner dl:last-child {
	border-bottom: 2px solid #000;
}
.tableinner dl dt {
	color: var(--color1);
	font-weight: 700;
	vertical-align: middle;
	padding: 20px 10px;
}
.tableinner dl dd {
	padding: 20px 20px;
}
@media screen and (min-width: 768px) {
	.tableinner dl  {
		display: table;
		width: 100%;
		table-layout: fixed;
		border-spacing: 0px;
	}
	.tableinner dl dt,
	.tableinner dl dd {
		display: table-cell;
		vertical-align: middle;
	}
	.tableinner dl dt {
		width: 20%;
		text-align: center;
		padding: 20px 10px;
	}
	.tableinner dl dd {
		padding: 20px 20px;
	}
}
@media screen and (max-width: 767px) {
	.tableinner dl {
		border-top: 1px solid #000;
	}
	.tableinner dl dt {
		width: auto;
		border-right: none;
		border-bottom: 1px dashed #999;
		padding: 10px 10px;
	}
	.tableinner dl dd {
		padding: 10px 10px;
	}
}
.tableinner dl dd p {
	margin-bottom: 10px;
}
.tableinner dl dd p:last-child {
	margin-bottom: 0px;
}
/* ------------------------------------------------ */
.flexbloc ul {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}
.flexbloc ul li {
	box-sizing: border-box;
}
@media screen and (max-width:767px) {
	.flexbloc ul li {
		flex: 1 0 calc(50% - 3px);
	}
}
@media screen and (min-width:768px) {
	.flexbloc ul li {
		flex: 1 0 calc(33.33% - 3px);
	}
}
/* ------------------------------------------------ */
.inlinebloc dl,.inlinebloc ul {font-size: 0;line-height: 1em;list-style-type: none;}.inlinebloc li,.inlinebloc dt,.inlinebloc dd {display: inline-block;font-size: 16px;line-height: 1em;}@media screen and (max-width: 767px) {.inlineblocA dl,.inlineblocA ul {display: block;}.inlineblocA li,.inlineblocA dt,.inlineblocA dd {display: block;}}@media screen and (max-width: 479px) {.inlineblocB dl,.inlineblocB ul {display: block;}.inlineblocB li,.inlineblocB dt,.inlineblocB dd {display: block;}}
/* ------------------------------------------------ */
.map iframe {width:100%;height:500px;}@media screen and (max-width: 767px) {.map iframe {height:200px;}}
/* ------------------------------------------------ */
#contact {
}
.contact {
}
.message {
	text-align: center;
	background-color: #f2f2f2;
	margin-bottom: 30px;
	padding: 30px 30px;
}
.message p {
	margin-bottom: 10px;
}
.message p:last-child {
	margin-bottom: 0px;
}
.message .link a {/*.link*/
	font-size: 13px;
	padding: 5px 50px;
}
@media screen and (max-width: 767px) {
	.message {
		padding: 10px;
	}
}
/* ------------------------------------------------ */
.page-con {
	padding: 50px 10px;
}
.page-con-inner {
	color: var(--black);
	text-align: center;
	background-color: var(--white);
	border: 3px solid var(--color1);
	padding: 20px 10px;
}
.page-con-inner p {
	font-size: 22px;
	line-height: 1.4em;
	padding: 10px 0px 20px 0px;
}
.page-con-inner p b {
	display: inline-block;
	color: var(--color3);
	font-size: 28px;
	line-height: 1.4em;
}
.contactlist ul {
}
.contactlist ul li {
	display: inline-block;
	vertical-align: top;
	padding: 5px 10px;
}
.contactlist ul li b {
	display: block;
	color: var(--white);
	line-height: 1em;
	background-color: var(--color2);
	margin-bottom: 10px;
	padding: 5px 5px;
}
.contactlist ul li a {
	display: inline-block;
	color: var(--color1);
	color: var(--black);
	text-decoration: none;
}
.contactlist ul li a svg {
	display: inline-block;
	width: 25px;
}
.contactlist ul li a svg path,
.contactlist ul li a svg polygon {
	fill: var(--color2);
}
.contactlist ul li a span {
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
}
.contactlist ul li.tel a span,
.contactlist ul li.fax a span {
	font-family: 'Roboto Condensed', sans-serif;
}
.contactlist ul li.mail a span {
	font-size: 24px;
}
.contactlist ul li a em {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	padding: 5px 5px;
}
/* ------------------------------------------------ */
#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: 60px;
	height: 60px;
	background-color: var(--white);
	-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.fixed #drawertriger .drawertrig {
	width: 50px;
	height: 50px;
}
#container .drawertrig span {
	top: 50%;
}
#container.fixed.drawer-open #drawertrig .drawertrig span {
}
.drawer-open .drawertrig {
/*
	background: transparent;
*/
	background-color: var(--color1);
	box-shadow: none;
}
.drawer-open .drawertrig span {background: rgba(0,0,0,0);}
.drawertrig span, .drawertrig span::before, .drawertrig span::after {
	background: var(--color1);
}
.drawer-open .drawertrig span::before, .drawer-open .drawertrig span::after {
	background: var(--white);
}
#drawertrig a {
	text-decoration: none;
}
.drawer-open #drawertrig a em {
	padding-top: 30px;
}
#container.fixed.drawer-open #drawertrig a em {
	padding-top: 30px;
}
/*
#drawertrig a em {
	display: block;
	text-align: center;
	padding-top: 60px;
}
#drawertrig a em::before,
#drawertrig a em::after {
	font-size: 11px;
}
#drawertrig a em::before {
	content: "";
}
#drawertrig a em::after {
	content: "Menu";
	color: var(--black);
}
.drawer-open #drawertrig a em::before {
	content: "Close";
	color: var(--white);
}
.drawer-open #drawertrig a em::after {
	content: "";
}
*/
.drawer {
	background-color: var(--white);
	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: 9997;
	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;
}
/* ------------------------------------------------ */