/*
Theme Name: Design02
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');

/* ------------------------------------------------ */
.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: #222;
	--white: #fff;
	--black: #000;
	--red: #c00;
	--gray1: #333;
	--gray2: #666;
	--gray3: #999;
	--gray4: #ccc;
	--gray5: #e6e6e6;
	--gray6: #f2f2f2;
	--text1: #3b3c40;
	--text2: #ccc;
	--color1: #d8d6d1;
	--color2: #8e8982;
	--color3: #3b3c40;
	--color4: #a68053;
	--color5: #cfc0aa;
	--color6: #e5e0db;
	--font1: 'Noto Sans JP', sans-serif;
	--font2: 'Noto Serif JP', serif;
	--font3: 'Noto Serif JP', serif;
	--font4: 'Noto Serif JP', serif;
}
/* ------------------------------------------------ */
.fade {
	opacity:0;
}
.fade.animated {
	animation-fill-mode:forwards;
	animation-duration: 1s;
	opacity:0;
	animation-name:fades;
	animation-delay:0s;
}
@media screen and (min-width: 768px) {
	.fade.animated {
		animation-name:fades-pc;
	}
	.fade1.animated {animation-delay:0s;}
	.fade2.animated {animation-delay:0.5s;}
	.fade3.animated {animation-delay:1s;}
}
@keyframes fades-pc {
	from {opacity: 0;transform: translateY(100px) scale(0.95, 0.95);}
	to {opacity: 1;transform: translateY(0) scale(1, 1);}
}
@media screen and (max-width: 767px) {
	.fade.animated {
		animation-name:fades-sp;
	}
}
@keyframes fades-sp {
	from {opacity: 0;transform: translateY(20px) scale(0.99, 0.99);}
	to {opacity: 1;transform: translateY(0) scale(1, 1);}
}
/* ------------------------------------------------ */
.item {
	opacity:0;
}
.shadow {
	opacity:0;
}
.item.animated {
	animation-fill-mode:forwards;
	animation-duration: 1s;
	opacity:0;
	animation-name:items;
	animation-delay:0s;
}
.shadow.animated {
	animation-fill-mode:forwards;
	animation-duration: 1s;
	opacity:0;
	animation-name:shadows;
	animation-delay:0.1s;
}
@media screen and (min-width: 768px) {
	.item.animated {
		animation-name:items-pc;
	}
	.shadow.animated {
		animation-name:shadows-pc;
	}
}
@keyframes items-pc {
	from {opacity: 0;transform: translateY(100px) scale(0.8, 0.8);}
	to {opacity: 1;transform: translateY(0) scale(1, 1);}
}
@keyframes shadows-pc {
	from {opacity: 0;transform: translateX(80px) translateY(300px) scale(0.5, 0.5);}
	to {opacity: 1;transform: translateY(0) scale(1, 1);}
}
@media screen and (max-width: 767px) {
	.item.animated {
		animation-name:items-sp;
	}
	.shadow.animated {
		animation-name:shadows-sp;
	}
}
@keyframes items-sp {
	from {opacity: 0;transform: translateY(50px) scale(0.9, 0.9);}
	to {opacity: 1;transform: translateY(0) scale(1, 1);}
}
@keyframes shadows-sp {
	from {opacity: 0;transform: translateX(40px) translateY(100px) scale(0.5, 0.5);}
	to {opacity: 1;transform: translateY(0) 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);
	color: #1a1a1a;
	color: #3b3c40;
	color: var(--text);
	font-size: 16px;
	font-size: 1.6rem;
	font-size: 1.6vmin;
	font-size: clamp(15px, 1.6vmin, 16px);
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	background-color: #fff;
	background-color: var(--white);
	background-attachment: fixed;
}
@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(--text);}
a:visited {color: var(--text);}
a:active {color: var(--color2);}
a:hover {color: var(--color2);}
a img {
	-webkit-transition: all 0.5s ease;
	-moz-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;
}
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;}
}
input,textarea,select,button {
	outline: none;
	font-family: 'Noto Sans JP', sans-serif;
}
button,input,select {
	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] {
	-moz-appearance:textfield;
}
input[type='submit'],
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;-webkit-backface-visibility: hidden;image-rendering: -webkit-optimize-contrast;}
@media screen and (max-width: 767px) {
	img {max-width:100%;height:auto;}
}
p {}
.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;}
}
pre {}
.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;}
/* ------------------------------------------------ */
.widthb {
	width: 1100px;
	margin: 0px auto;
}
.width {
	width: 1000px;
	margin: 0px auto;
}
.widths {
	width: 800px;
	margin: 0px auto;
}
.widthss {
	width: 700px;
	margin: 0px auto;
}
@media screen and (max-width: 1100px) {
	.widthb {
		width: auto;
	}
}
@media screen and (max-width: 1000px) {
	.width {
		width: auto;
	}
}
@media screen and (max-width: 800px) {
	.widths {
		width: auto;
	}
}
@media screen and (max-width: 700px) {
	.widthss {
		width: auto;
	}
}
.drawer .width,
.drawer .widths,
.drawer .widthss {
	width: auto;
}
/* ------------------------------------------------ */
.globalbloc {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-spacing: 0px;
}
.globalbox {
	display: table-cell;
	vertical-align: top;
}
.globalleft {
	width: 300px;
}
.globallogo a {
	display: inline-block;
}
.globallogo a img {
	display: inline-block;
}
@media screen and (max-width: 767px) {
	.globalbloc {
		display: block;
		width: auto;
	}
	.globalbox {
		display: block;
		width: auto;
	}
	.globallogo {
		text-align: center;
	}
}
/* ------------------------------------------------ */
#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;
}
.headerouter {
}
.headerinner {
	position: relative;
}

@media screen and (min-width: 768px) {
	#header .header {
		background-color: rgba(255,255,255,0.5);
	}
	#container.fixed #header .header {
	}
	#header .headerinner {
		display: table;
		width: 1100px;
		table-layout: fixed;
		border-spacing: 0px;
		margin: 0px auto;
	}
	#header .headerLeft,
	#header .headerRight {
		display: table-cell;
		vertical-align: middle;
	}
	#header .headerRight {
		width: 40%;
		text-align: center;
	}
	#header .headerRight .header-box {
		display: inline-block;
		display: block;
		text-align: center;
		vertical-align: middle;
	}
}
.drawer .headerRight {
	text-align: center;
}
@media screen and (max-width: 767px) {
	#header .headerRight {
		display: none;
	}
}
/* ------------------------------------------------ */
#header-logo {
}
.header-logo {
}
.header-logo h1 {
}
.header-logo h1 a {
	display: inline-block;
	padding: 10px 5px;
}
.header-logo h1 a img {
	display: inline-block;
	width: 160px;
	height: auto;
}
.drawer .header-logo {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.header-logo {
		text-align: center;
	}
}
/* ------------------------------------------------ */
.header-con {
	position: relative;
	font-family: var(--font3);
	padding: 10px 10px;
}
.header-con dl {
}
.header-con dl dt {
}
.header-con dl dt span {
	display: block;
	position: relative;
	font-weight: 600;
	line-height: 1em;
}
.header-con dl dt span::before,
.header-con dl dt span::after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 35%;
	height: 1px;
	background-color: var(--black);
}
.header-con dl dt span::before {
	left: 0px;
}
.header-con dl dt span::after {
	right: 0px;
}
.header-con dl dd {
}
.header-con dl dd ul {
}
.header-con dl dd ul li {
}
@media screen and (min-width: 768px) {
	#header .header-con dl dd ul {
		display: flex;
		flex-wrap: nowrap;
		gap: 3px;
		align-items: stretch;
		justify-content: center;
	}
	#header .header-con dl dd ul li {
		flex: 1;
		box-sizing: border-box;
	}
	#header .header-con dl dd ul li.insta {
		flex: 0 1 40px;
	}
}
@media screen and (max-width: 767px) {
}
.drawer .header-con dl dd ul li {
	padding: 5px 0px;
}
.header-con dl dd ul li a {
	display: inline-block;
	position: relative;
	line-height: 1em;
	padding: 10px 0px 10px 30px;
}
.header-con dl dd ul li a::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center top;
}
.header-con dl dd ul li.tel a::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 30 30" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23000000" d="M22.807,19.847C21.828,18.878 20.603,18.878 19.631,19.847C18.889,20.583 18.145,21.319 17.415,22.069C17.214,22.275 17.047,22.318 16.802,22.182C16.323,21.918 15.81,21.707 15.348,21.419C13.194,20.064 11.389,18.323 9.791,16.362C8.999,15.389 8.293,14.347 7.8,13.173C7.7,12.936 7.72,12.779 7.912,12.586C8.656,11.868 9.38,11.131 10.109,10.394C11.126,9.371 11.126,8.172 10.104,7.143C9.522,6.555 8.942,5.981 8.363,5.395C7.762,4.795 7.17,4.189 6.563,3.596C5.583,2.641 4.361,2.641 3.387,3.601C2.636,4.338 1.919,5.092 1.158,5.819C0.452,6.487 0.097,7.303 0.022,8.26C-0.096,9.814 0.283,11.281 0.82,12.711C1.919,15.67 3.591,18.299 5.621,20.708C8.363,23.968 11.634,26.546 15.461,28.405C17.183,29.242 18.971,29.886 20.91,29.991C22.247,30.065 23.408,29.728 24.338,28.687C24.974,27.975 25.691,27.326 26.367,26.644C27.365,25.633 27.372,24.408 26.38,23.41C25.194,22.218 24,21.032 22.807,19.847"/><path fill="%23000000" d="M21.614,14.87L23.918,14.476C23.555,12.361 22.559,10.444 21.04,8.92C19.436,7.315 17.408,6.304 15.172,5.993L14.847,8.309C16.578,8.552 18.151,9.333 19.391,10.576C20.567,11.748 21.335,13.234 21.614,14.87"/><path fill="%23000000" d="M25.217,4.857C22.559,2.197 19.194,0.517 15.479,-0.001L15.154,2.315C18.363,2.765 21.272,4.22 23.57,6.511C25.748,8.689 27.179,11.443 27.696,14.47L30,14.077C29.395,10.57 27.739,7.384 25.217,4.857"/></svg>');
}
.header-con dl dd ul li.mail a::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" viewBox="0 0 30 30" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="%23000000" d="M30,24.312L30,5.689L19.656,14.999L30,24.312Z"/><path fill="%23000000" d="M15,19.191L12.047,16.533L1.703,25.843L28.297,25.843L17.953,16.533L15,19.191Z"/><path fill="%23000000" d="M28.297,4.157L1.703,4.157L15,16.125L28.297,4.157Z"/><path fill="%23000000" d="M0,5.689L0,24.312L10.344,15L0,5.689Z"/></svg>');
}
.header-con dl dd ul li a span {
	display: block;
	font-size: 20px;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: 600;
	line-height: 1em;
}
.header-con dl dd em {
	display: block;
	font-size: 15px;
	line-height: 1em;
}
.drawer .header-con dl dd em {
	padding: 5px 0px;
}
.header-con dl dd ul li.insta {
	padding-top: 5px;
}
.header-con dl dd ul li.insta a {
	width: 30px;
	height: 30px;
	background-image: url("./img/global/instagram.svg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding: 0px;
}
.header-con dl dd ul li.insta a::before {
	display: none;
}
.header-con dl dd ul li.insta a span {
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
/* ------------------------------------------------ */
#footer {
	position: relative;
	z-index: 0;
	text-align: center;
	background-color: var(--white);
}
.footer {
}
.footerinner {
	padding: 20px 0px;
}
.footer-logo {
	text-align: center;
	padding: 20px 0px;
}
.footer-logo a {
	display: inline-block;
}
.footer-logo svg,
.footer-logo img {
	display: inline-block;
	width: 138px;
	height: 27px;
}
.footer-logo svg path {
	fill: #3b3c40;
}
@media screen and (max-width: 767px) {
	.footer-logo img {
		width: auto;
	}
}


.footer-bloc {
}
.drawer .footer-bloc {
	padding: 20px 0px;
}
.footer-box {
	padding: 5px 10px;
}
@media screen and (min-width: 768px) {
	.footer-bloc {
	}
	.footer-box {
		display: inline-block;
		vertical-align: top;
		padding: 0px 20px;
	}
}

.footer-box-logo {
	text-align: center;
	padding: 0px 0px;
}
.footer-box-logo {
	text-align: center;
	padding: 0px 0px;
}
.footer-box-logo a {
	display: inline-block;
	text-decoration: none;
}
.footer-box-logo img,
.footer-box-logo svg {
	display: inline-block;
	width: 200px;
	height: 35px;
}
.drawer .footer-box-logo img,
.drawer .footer-box-logo svg {
	height: 35px;
}
.footer-box-sns {
	text-align: center;
}
.drawer .footer-box-sns {
	padding: 0px 0px 0px 0px;
}
.footer-box-sns ul {
}
.footer-box-sns ul li {
	display: inline-block;
	vertical-align: middle;
	padding: 0px 10px;
}
.footer-box-sns ul li a {
	display: inline-block;
}
.footer-box-sns ul li img,
.footer-box-sns ul li svg {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.footer-box-sns ul li svg path {
	fill: var(--color3);
}
.footer-box-sns ul li a:hover svg path {
	fill: var(--color4);
}
.footer-add {
	text-align: center;
	padding: 10px 0px;
}
.drawer .footer-add {
	padding: 10px 0px;
}
.footer-add strong {
	display: block;
	font-family: var(--font4);
	line-height: 1em;
	margin-bottom: 5px;
}
.footer-add address {
	display: block;
	font-size: 13px;
}
.footer-add a {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
.footer-con {
	text-align: center;
}
.drawer .footer-con {
	padding: 0px 0px 50px 0px;
}
.footer-link {
	font-size: 12px;
	padding: 10px 0px;
}
.footer-link ul {
}
.footer-link li {
	display: inline-block;
	border-left: 1px solid #999;
	margin-left: 5px;
	padding-left: 5px;
}
.footer-link li:first-child {
	border-left: none;
	margin-left: 0px;
	padding-left: 0px;
}
.footer-link a {
	text-decoration: none;
}
.footer-link a strong {
	font-weight: 400;
}
@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 {
	font-weight: 400;
	text-align: center;
	padding: 5px;
}
.copyright small {
	font-size: 10px;
}
/* ------------------------------------------------ */
nav {
	margin: 0px;
}
@media screen and (max-width: 767px) {
	#header #nav {
		display: none;
	}
}
#header #nav {
}
#container.fixed #header #nav {
}
.header-nav {
	text-align: center;
}
.drawer .header-nav {
	text-align: center;
}
#header .header-nav ul {
	display: block;
}
.header-nav ul li {
	position: relative;
}
.drawer .header-nav ul li a {
	border-bottom: 1px dashed var(--gray3);
}

#header .header-nav ul li {
	display: inline-block;
	vertical-align: top;
}
#header .header-nav ul li.navnone {
	display: none;
}

#header .header-nav ul li.nav-home {display: none;}
#header .header-nav ul li.nav-page {display: inline-block;}
#footer .footer-link ul li.nav-home {display: none;}
#footer .footer-link ul li.nav-page {display: inline-block;}
.home #header .header-nav ul li.nav-home {display: inline-block;}
.home #header .header-nav ul li.nav-page {display: none;}

.drawer .header-nav ul li.nav-home {display: none;}
.drawer .header-nav ul li.nav-page {display: block;}

#header .header-nav ul li ul {
	display: none;
	z-index: 0;
	margin: 0;
	padding: 0;
	min-width: 200px;
	list-style: none;
	position: static;
	top: 100%;
	left: -50%;
}
#header .header-nav ul li ul {
	display: block;
	z-index: 1;
	position: absolute;
}
#header .header-nav ul li ul li {
	overflow: hidden;
	width: 100%;
	height: auto;
}
#header .header-nav ul li ul li {
	display: block;
	overflow: hidden;
	height: 0;
}
#header .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;
	border-top: 2px solid rgba(255,255,255,0.1);
}
#header .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);
	border-top: 2px solid var(--white);
}
#header .header-nav ul > li:hover > ul > li {
	overflow: visible;
	height: auto;
	border-bottom: 1px solid var(--white);
}
.header-nav ul li a {
	display: block;
	position: relative;
	color: var(--text1);
	text-decoration: none;
	padding: 20px 15px 10px 15px;
}
.drawer .header-nav ul li a {
	padding: 20px 10px;
}
.drawer .header-nav ul li.navnone a {
	padding: 5px 10px;
	padding: 20px 10px;
}
#container.fixed #header .header-nav ul li a {
	padding: 5px 15px;
}
#header .header-nav ul li ul li a {
	background-color: var(--color1);
	padding: 10px 10px;
}
#header .header-nav ul li ul li a:hover {
	background-color: rgba(217, 189, 156,1);
}
.drawer .header-nav ul li a {
	border-top: 1px solid var(--white);
}
.drawer .header-nav ul li:first-child a {
	border-top: 2px solid var(--color2);
}
.drawer .header-nav ul li:last-child a {
	border-bottom: 2px solid var(--color2);
}
.drawer .header-nav ul li ul li a {
	border-top: 1px dashed var(--color2);
	padding: 10px 10px;
}
.drawer .header-nav ul li ul:first-child a,
.drawer .header-nav ul li ul:last-child a {
	border-top: none;
	border-top: 1px dashed var(--white);
	border-bottom: none;
}
.header-nav ul li a span {
	display: block;
	font-size: 16px;
	font-family: var(--font3);
	text-transform: uppercase;
	text-transform: capitalize;
	font-weight: 600;
}
.header-nav ul li a strong {
	display: block;
	text-align: center;
	color: var(--text2);
	color: rgba(0,0,0,0.5);
	font-size: 11px;
	font-weight: 500;
}
#container.fixed #header .header-nav ul li a strong {
	display: none;
}
.drawer .header-nav ul li a span {
	display: inline-block;
	vertical-align: middle;
display: none;
}
.drawer .header-nav ul li a strong {
	display: inline-block;
	font-size: 16px;
	vertical-align: middle;
	padding-left: 10px;
	-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 .header-nav ul li a:hover {
	color: var(--color4);
}
.drawer .header-nav ul li a:active,
.drawer .header-nav ul li a:hover {
	color: var(--white);
	background-color: var(--color2);
}
.drawer .header-nav ul li a:active strong,
.drawer .header-nav ul li a:hover strong {
	color: var(--color4);
	color: var(--white);
}
#header-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 #header-nav {
}
/* ------------------------------------------------ */
#drawertriger {
	position: fixed;
	z-index: 9999;
	right: 5px;
	top: 5px;
	transition: transform 0.3s;
}
.drawertrig {
	display: block;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
}
.drawertrig span, .drawertrig span::before, .drawertrig span::after {
	display: inline-block;
	position: absolute;
	height: 2px;
	width: 34px;
}
.drawertrig span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: background 0.3s 0.3s;
}
.drawertrig span::before, .drawertrig span::after {
	content: '';
	right: 0px;
	transform: translateZ(0);
	backface-visibility: hidden;
	transform-origin: 0% 50%;
	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 {
	transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.drawer-open .drawertrig span::after {
	transform: translateX(4px) translateY(2px) rotate(-45deg);
}
.drawer-open #drawertriger {
	transform: translateX(-300px);
}
.drawertrig {
	width: 50px;
	height: 50px;
/*
	background-color: var(--color1);
	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-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(--text1);
}
.drawer-open .drawertrig span::before, .drawer-open .drawertrig span::after {
	background: var(--text1);
}
/*
.drawer-open .drawertrig em {
	padding-top: 30px;
}
#container.fixed.drawer-open .drawertrig em {
	padding-top: 30px;
}
*/
.drawer {
	position: fixed;
	z-index: 9998;
	right: -120%;
	top: 0;
	height: 100%;
	width: 300px;
	overflow: auto;
	background-color: var(--black);
	background-color: var(--white);
	box-shadow: -2px 0px 5px 1px rgba(0,0,0,0.1);
	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.open {
	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-bloc {
	visibility: hidden;
	opacity: 0;
	position:fixed;
	z-index:9998;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	transition: all 0.2s linear;
	background: var(--white);
	padding:0px;
	box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.1);
}
.modal-bloc.open {
	visibility: visible;
	opacity: 1;
	top:50%;
}

.modal-close {
	display: block;
	position:absolute;
	z-index: 1;
	right: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	background-color: var(--black);
}
.modal-close::before,
.modal-close::after {
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 48%;
	width: 100%;
	height: 6%;
	content: "";
	background-color: var(--white);
	transition: all 0.8s ease-in-out;
}
.modal-close::before {
	transform: rotate(45deg);
}
.modal-close::after {
	transform: rotate(-45deg);
}
.modal-close:hover::before,
.modal-close:hover::after {
	height: 14%;
}
.modal-close:hover::before {
	transform: rotate(315deg);
}
.modal-close:hover::after {
	transform: rotate(-315deg);
}
.modal-close:hover {
	cursor: pointer;
}
.modal-prev,
.modal-next {
	display: block;
	position:absolute;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: var(--black);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.modal-prev {left: 0px;}
.modal-next {right: 0px;}
.modal-prev::before,
.modal-next::before,
.modal-prev::after,
.modal-next::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 2px;
	height: 8px;
	background-color: var(--white);
}
.modal-prev::before,
.modal-next::before {
	margin-top: -8px;
}
.modal-prev::before {transform: skewX(-30deg);}
.modal-prev::after {transform: skewX(30deg);}
.modal-next::before {transform: skewX(30deg);}
.modal-next::after {transform: skewX(-30deg);}
/* ------------------------------------------------ */
@media screen and (min-width: 768px) {
	.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;
	}
}
@media screen and (max-width: 767px) {

	.gotop{
		display: none;
	}
}
/* ------------------------------------------------ */
#wrap {
}
#main {
	line-height: 1.8em;
}
.main {
	padding: 0px 0px;
}
@media screen and (max-width: 767px) {
	.main {
		padding: 0px 0px;
	}
}
/* ------------------------------------------------ */
.link {
	text-align: center;
	padding: 30px 0px;
}
.link-bloc {
	text-align: center;
}
@media screen and (min-width: 768px) {
	.link-bloc .link {
		display: inline-block;
		vertical-align: top;
		padding: 5px 10px;
	}
}
@media screen and (max-width: 767px) {
	.link-bloc .link {
		padding: 5px 10px;
	}
}
.link a {
	display: inline-block;
	position: relative;
	font-weight: 500;
	text-decoration: none;
}
.entry-content .link a {
	text-decoration: none!important;
}
.links a {
	font-size: 1em;
}
.link a span {
	display: block;
	padding: 10px 50px;
}
.links a span {
	padding: 5px 20px;
}
@media screen and (max-width: 767px) {
	.link a span {
		display: block;
		padding: 10px 20px;
	}
	.links a span {
		padding: 5px 10px;
	}
}
.link a span b {
	display: inline-block;
	position: relative;
	font-weight: 500;
	padding-right: 20px;
}
.link.arrow a span b:before,
.link.arrow a span b:after {
	position: absolute;
	right: 0px;
	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.arrow.arrowb a span b:before,
.link.arrow.arrowb a span b:after {
	top: 50%;
	bottom: auto;
}
.link.arrow.arrowb a span b:before {
	right: 0px;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
	margin-top: 0px;
}
.link.arrow.arrowb a span b:after {
	right: 7px;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	margin-bottom: 0px;
}
.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: 1px;
	height: 100%;
}
.link a span::before,
.link a span::after {
	width: 100%;
	height: 1px;
}
.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: 20%;
}
.link a:hover span::before,
.link a:hover span::after {
	width: 20%;
}

.link a {
	color: var(--text);
	background-color: rgba(255,255,255,0.3);
}
.link.white a {
	color: var(--white);
	background-color: rgba(255,255,255,0.3);
}
.link.arrow a span b:before,
.link.arrow a span b:after {
	background-color: var(--gray3);
}
.link.white.arrow a span b:before,
.link.white.arrow a span b:after {
	background-color: var(--white);
}
.link a::before,
.link a::after,
.link a span::before,
.link a span::after {
	background-color: var(--gray3);
}
.link.white a::before,
.link.white a::after,
.link.white a span::before,
.link.white a span::after {
	background-color: var(--white);
}
.link a:hover {
/*
	color: var(--color4);
	color: var(--white);
*/
	background-color: var(--color2);
	background-color: rgba(190,186,170,0.3);
}
.link.arrow a:hover span b:before,
.link.arrow a:hover span b:after {
	background-color: var(--color1);
}
.link a:hover::before,
.link a:hover::after,
.link a:hover span::before,
.link a:hover span::after {
}
/* table------------------------------------------------ */
table {
	width: 100%;
}
.table {
	width: 100%;
	border-collapse:sepalate;
	/*border-collapse:collapse;*/
	border-spacing: 3px;
	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;
}
/* ------------------------------------------------ */
.photo {}
.photo ul {
	display: flex;
	flex-wrap: nowrap;
	gap: 3px;
	align-items: stretch;
	justify-content: center;
}
.photo ul {
	box-sizing: border-box;
}
.photo.photosp ul li {
}
@media screen and (min-width: 768px) {
	.photo ul li {
		flex: 1;
		flex: 1 0 calc(33.33% - 3px);
	}
	.photo.photo4 ul li {
		flex: 1;
		flex: 1 0 calc(25% - 3px);
	}
}
@media screen and (max-width: 767px) {
	.photo.photosp ul {
		flex-wrap: wrap;
	}
	.photo.photosp ul li {
		flex: 1 0 calc(50% - 3px);
	}
}

/* ------------------------------------------------ */
.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%;}}
/* ------------------------------------------------ */
.map iframe {width:100%;height:600px;}
@media screen and (max-width: 767px) {.map iframe {height:200px;}}
.map {
}
.map iframe,
.map object,
.map embed {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
}
.map iframe:hover,
.map object:hover,
.map embed:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
}
/* ------------------------------------------------ */
#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;
	}
}
/* ------------------------------------------------ */
.global-con {
	position: relative;
	font-family: var(--font3);
	text-align: center;
}
.btm-con {
	background-color: var(--color1);
	padding: 20px 10px;
}
@media screen and (min-width: 768px) {
	.btm-con-inner {
		width: 600px;
		margin: 0px auto;
	}
}
@media screen and (max-width: 767px) {

}
.drawer .btm-con-inner {
	width: auto;
}
.global-con dl {
}
.global-con dl dt {
	margin-bottom: 10px;
}
.global-con dl dt span {
	display: block;
	position: relative;
	font-weight: 600;
	line-height: 1em;
}
@media screen and (min-width: 768px) {
	.global-con dl dt span::before,
	.global-con dl dt span::after {
		content: "";
		position: absolute;
		z-index: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 25%;
		height: 1px;
		background-color: var(--black);
	}
	.global-con dl dt span::before {
		left: 0px;
	}
	.global-con dl dt span::after {
		right: 0px;
	}
}
.drawer .global-con dl dt span::before,
.drawer .global-con dl dt span::after {
	display: none;
}

.global-con dl dd {
}
.global-con ul {
}
.global-con ul li {
}
@media screen and (min-width: 768px) {
	.global-con ul {
		display: flex;
		flex-wrap: nowrap;
		gap: 3px;
		align-items: stretch;
		justify-content: center;
	}
	.global-con ul li {
		flex: 1;
		box-sizing: border-box;
	}
	.global-con ul li.insta {
		flex: 0 1 70px;
	}
}
@media screen and (max-width: 767px) {
}
.drawer .global-con ul{
	display: block;
}
.drawer .global-con ul li {
	display: block;
}
.global-con ul li a {
	display: inline-block;
	position: relative;
	line-height: 1em;
	padding: 10px 0px 10px 30px;
}
.global-con ul li a::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: var(--black);
	background-repeat: no-repeat;
	background-position: center top;
	box-sizing: border-box;
}
.global-con ul li.tel a::before {mask-image: url("./img/global/tel.svg");}
.global-con ul li.mail a::before {mask-image: url("./img/global/mail.svg");}

.global-con ul li a span {
	display: block;
	font-size: 20px;
	font-size: clamp(18px, 2.4vw, 24px);
	font-weight: 600;
	line-height: 1em;
}
.global-con dl dd em {
	display: block;
	font-size: 15px;
	line-height: 1em;
}
@media screen and (max-width: 767px) {
	.global-con dl dd em {
		display: block;
		font-size: 15px;
		line-height: 1em;
		padding: 15px 0px 5px 0px;
	}
}
.drawer .global-con dl dd em {
	padding: 15px 0px 5px 0px;
}
.global-con ul li.insta {
	padding-top: 5px;
}
.global-con ul li.insta a {
	width: 30px;
	height: 30px;
	background-image: url("./img/global/instagram.svg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding: 0px;
}
.global-con ul li.insta a::before {
	display: none;
}
.global-con ul li.insta a span {
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.index-showroom-con {
	padding: 20px 10px;
}
@media screen and (min-width: 768px) {
	.index-showroom-con {
		width: 600px;
		margin: 0px auto;
	}
}
.index-showroom-con dl dt span::before,
.index-showroom-con dl dt span::after {
	width: 35%;
	background-color: var(--white);
}
.index-showroom-con dl dd ul li.tel a::before {background-color: var(--white);}
.index-showroom-con dl dd ul li.mail a::before {background-color: var(--white);}

.index-showroom-con a {
	color: var(--white);
}

/* ------------------------------------------------ */
.panlink {
	font-size: 0.8em;
	padding: 10px 5px;
}
.panlink {
	padding: 10px 10px;
}
.panlink span {
	display: inline-block;
	font-weight: 700;
}
.panlink a span {
	display: inline-block;
	font-weight: 400;
}
/* ------------------------------------------------ */