@charset "UTF-8";
/*
Theme Name: toki-no-miyako
Author: Catwork Co., Ltd.
Version: 1.0.0
*/

/* サイトの基本カラーに合わせて変更 */
:root {
	--main-color: #b5934d;
	--main-light-color: #eeebe5;
	--main-dark-color: #333;
}

/* Reset
----------------------------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, code,
del, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, u,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
}

html{
	scroll-behavior: smooth;
}
body {
	/* font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 16px;
	line-height: 2;
	color: #333;
}
a {
	color:#333;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
strong {
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="email"],
textarea {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color, #333);
}
textarea {
	overflow: auto;
}
::placeholder {
	color: #666;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
.wrap {
	width: 100%;
	overflow-x: hidden;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
h2, h3, h4, h5, h6 {
	font-weight: normal;
}



/* フェードアニメーション css
----------------------------------------------------------*/

/*ふわっと出る*/
.mv01_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 0
}
.mv01_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*下から*/
.mv02_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 60px, 0);
	-moz-transform: scale(1, 1) translate3d(0, 60px, 0);
	-ms-transform: scale(1, 1) translate3d(0, 60px, 0);
	-o-transform: scale(1, 1) translate3d(0, 60px, 0);
	transform: scale(1, 1) translate3d(0, 60px, 0);
	opacity: 0
}
.mv02_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*右から*/
.mv03_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(100px, 0, 0);
	transform: scale(1, 1) translate3d(100px, 0, 0);
	opacity: 0
}
.mv03_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*左から*/
.mv04_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(-100px, 0, 0);
	transform: scale(1, 1) translate3d(-100px, 0, 0);
	opacity: 0
}
.mv04_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}



/*===============================================
横幅1200px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 441px){
html,
body,
.wrap{
	width:1240px;
}
}

/*===============================================
横幅441px以上
===============================================*/
@media screen and (min-width: 441px) {
a {
	transition: all .5s;
}
a:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	transition: all .5s;
}
.sp {
	display:none;
}



/* header
------------------------------------------------------------------------*/
header{
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	z-index: 10000;
	position: fixed;
}
header h1{
	position: absolute;
	top: 30px;
	left: 40px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
header.fixed h1 {
    opacity: 0;
}
header .logo{
	visibility: visible;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s ease, transform 0.6s ease;
	position: absolute;
	top: 25.5px;
	left: 40px;
}
header.fixed .logo{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
	position: fixed;
}
header .logo img {
    content: url("img/header_logo.svg");
}
header.is-light .logo img {
    content: url("img/header_logo_ho.svg");
}
header .button{
	position: fixed;
	top: 30.5px;
	right: 135px;
}
header .button a{
	display: block;
	width: 200px;
	height: 35px;
	font-size: 14px;
	line-height: 35px;
	border-radius: 3px;
	color: #fff;
	background: #333;
	text-align: center;
	box-sizing: border-box;
}


/* nav
------------------------------------------------------------------------*/

header nav{
	position: fixed;
	top: 0;
	right: 0;
}
header #nav-btn{
	position: absolute;
	top: 18px;
	right: 40px;
	display: block;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	transition: all .5s;
	z-index: 10010;
}
header .menu-btn,
header .menu-btn span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
header .menu-btn{
	position: absolute;
	width: 60px;
	height: 9px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	cursor: pointer;
	z-index: 10002;
}
header .menu-btn span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
header.is-light .menu-btn span{
    background: #333;
}
header .menu-btn span:nth-of-type(1){
	top: 0;
}
header .menu-btn span:nth-of-type(2){
	bottom: 0;
}
header #nav-btn.active .menu-btn span:nth-of-type(1){
	-webkit-transform: translateY(4px) rotate(-15deg);
	transform: translateY(4px) rotate(15deg);
	background: #333;
}
header #nav-btn.active .menu-btn span:nth-of-type(2){
	-webkit-transform: translateY(-4px) rotate(15deg);
	transform: translateY(-4px) rotate(-15deg);
	background: #333;
}
header #nav{
	display: none;
}
header #nav-btn.active + #nav{
	display: flex;
	align-items: center;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: -100vw;
	background: #fff url("img/bg_pattern.png") repeat;
	width: 100vw;
	height: 100vh;
	z-index: 10001;
}
header #nav-btn.active + #nav::after{
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: calc(50% + 227px);
    width: 1px;
    background: #b5934d;
	opacity: 0.3;
    z-index: 1;
}
header #nav-btn.active + #nav .inner{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 0 147px;
	position: relative;
}
header #nav-btn.active + #nav .inner::before{
	content: "";
    background: url("img/menu_bg.png") right center no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(50vw - 225px);
    height: 100vh;
    z-index: -1;
}
header #nav-btn.active + #nav .inner::after{
	content: "";
	background: url("img/home_bg02.png")no-repeat;
	background-size: 989px;
	width: 989px;
	height: 620px;
	pointer-events: none;
	position: fixed;
	right: -80px;
	bottom: -60px;
	z-index: -1;
}
header #nav-btn.active + #nav .inner .nav_box{
	font-size: 16px;
	line-height: 4.5;
	padding-right: 147px;
}
header #nav-btn.active + #nav .inner .nav_box li a:hover{
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media screen and (max-width: 1540px){
	header #nav-btn.active + #nav::after{
		left: calc(50% + 135px);
	}
	header #nav-btn.active + #nav .inner{
		gap: 0 100px;
	}
	header #nav-btn.active + #nav .inner::after{
		right: -180px;
	}
	header #nav-btn.active + #nav .inner .nav_box{
		padding-right: 100px;
	}
	header #nav-btn.active + #nav .inner .info_wrap{
		margin-right: 140px;
	}
}
@media screen and (max-width: 1240px){
	header #nav-btn.active + #nav .inner::before{
		width: 650px;
		left: -280px;
	}
}

header #nav-btn.active + #nav .inner .nav_box .sns a{
	display: block;
	width: 15px;
	height: 15px;
	background: url("img/sns_icon02.svg")no-repeat;
	background-size: 100%;
	margin-top: 25px;
	padding: 15px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
header #nav-btn.active + #nav .inner .info_box .text02{
	margin: 35px 0 15px;
	line-height: 1.75;
}
header #nav-btn.active + #nav .inner .info_box .map a{
	display: inline-block;
	margin-left: 18px;
	line-height: 1.4;
	border-bottom: 1px solid #333;
	position: relative;
}
header #nav-btn.active + #nav .inner .info_box .map a::before{
	content: "";
	background: url("img/map_icon01.svg")no-repeat;
	background-size: 11px;
	width: 11px;
	height: 20px;
	position: absolute;
	top: 5px;
	left: -16px;
}
header #nav-btn.active + #nav .inner .contact_set{
	width: 225px;
	margin-top: 95px;
}
header #nav-btn.active + #nav .inner .contact_set .text03{
	line-height: 1;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid #b5934d;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box{
	display: flex;
	gap: 25px 0;
	flex-direction: column;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .tel{
	display: flex;
	flex-direction: column;
	position: relative;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .tel::before{
	content: "";
	background: url("img/tel_icon02.svg")no-repeat;
	background-size: 100%;
	width: 18px;
	height: 23px;
	position: absolute;
	top: 0;
	left: 0;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .tel a{
	display: block;
	width: 200px;
	height: 26px;
	background: url("img/tel_text02.svg")no-repeat;
	background-size: 100%;
	margin-left: 25px;
	padding: 26px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .mail a{
	display: block;
	width: 100%;
	height: 40px;
	background: #b5934d url("img/mail_icon01.svg")left 63px center no-repeat;
	background-size: 16px;
	border: 1px solid #b5934d;
	border-radius: 3px;
	padding-left: 22px;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .mail a:hover{
	background: #fff url("img/mail_icon01_ho.svg")left 63px center no-repeat;
	background-size: 16px;
	color: #b5934d;
	opacity: 1;
}



/* home
------------------------------------------------------------------------*/

/* key */
.home .key{
	position: relative;
	top: 0;
	width: 100%;
	min-height: 850px;
	height: 100vh;
	z-index: -1;
}
.home .key::before{
	content: "";
	background: url("img/home_bg01.svg")no-repeat;
	background-size: 989px;
	width: 989px;
	height: 620px;
	position: absolute;
	right: -80px;
	bottom: -30px;
	z-index: 2;
}
.home .key .swiper01,
.home .key .swiper01 .swiper-slide{
	width: 100%;
	height: 100%;
}
.home .key .swiper01 .swiper-slide{
	position: relative;
	overflow: hidden;
}
.home .key .swiper01 .swiper-slide-active picture,
.home .key .swiper01 .swiper-slide-duplicate-active picture,
.home .key .swiper01 .swiper-slide-prev picture{
	width: 100%;
	height: 100%;
	display: block;
	animation: zoomUp 15s linear 0s both;
}
.home .key .swiper01 .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}

.home .key .inner{
    display: flex;
    flex-direction: row-reverse;
	gap: 0 40px;
    justify-content: flex-end;
    align-items: center;
	width: 1100px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
@media screen and (min-width: 1441px){
	.home .key .inner{
		width: 1400px;
	}
}
.home .key .inner::before{
	content: "";
    width: 390px;
    height: 390px;
	border: 2px solid rgba(181,147,77,0.3);
	transform: rotate(45deg);
    position: absolute;
	top: 10px;
	left: -303px;
	z-index: 1;
}
.home .key .inner::after{
	content: "";
	background: url("img/home_bg03.svg")no-repeat;
	background-size: 800px;
    width: 800px;
    height: 585px;
    position: absolute;
	top: 150px;
	left: -550px;
	z-index: 1;
}
.home .key .inner .text01{
	background: url("img/home_key_text01.svg")no-repeat;
	background-size: 55px;
	width: 55px;
	height: 250px;
	padding: 250px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
.home .key .inner .text02{
	background: url("img/home_key_text02.svg")no-repeat;
	background-size: 72px;
	width: 72px;
	height: 250px;
	padding: 250px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}


/* cont01 */
.home .cont01{
	background: url("img/bg_pattern.png") repeat,#eeebe5;
	position: relative;
	z-index: 12;
}
.home .cont01::before{
	content: "";
	background: url("img/home_text01.png")no-repeat;
	mix-blend-mode: multiply;
	width: 560px;
	height: 504px;
	position: absolute;
	top: 405px;
	left: calc(50% + 300px);
	transform: translateX(-50%);
}
.home .cont01 .inner{
	height: 1150px;
	padding: 250px 0 0;
	box-sizing: border-box;
	writing-mode: vertical-rl;
	position: relative;
}
.home .cont01 .inner h2{
	font-size: 32px;
	line-height: 1;
	margin-right: 150px;
	padding: 0 45px 0 120px;
	letter-spacing: 2px;
	box-sizing: border-box;
	position: relative;
}
.home .cont01 .inner h2::before{
	content: "Concept";
	font-size: 14px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	right: 0;
}
.home .cont01 .inner .text01{
	font-size: 18px;
	line-height: 2.333;
	letter-spacing: 2px;
}
.home .cont01 .inner .text01 span{
	position: relative;
}
.home .cont01 .inner .text01 span::before{
	content: "";
	width: 1px;
	height: 100px;
	background: #333;
	position: absolute;
	left: 12px;
	top: 10px;
}

/* パララックス */
.home .cont01 .inner .prlximg_viewport:nth-of-type(1){
	width: 380px;
	height: 550px;
	min-height: 550px;
	position: absolute;
	top: 700px;
	right: -300px;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(2){
	width: 1170px;
	height: 640px;
	min-height: 640px;
	position: absolute;
	bottom: -350px;
	left: -300px;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(3){
	width: 620px;
	height: 380px;
	min-height: 380px;
	position: absolute;
	bottom: -530px;
	right: -185px;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(4){
	width: 460px;
	height: 460px;
	min-height: 460px;
	position: absolute;
	top: 1450px;
	left: 0;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
	top: -60px;
	height: 130%;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(3) .prlximg_target{
	top: -20px;
	height: 110%;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(4).prlximg_target img{
	margin-top: -100px;
}


/* cont02 */
.home .cont02{
	padding-top: 745px;
	background: #fff;
	position: relative;
}
.home .cont02 .box{
	padding-top: 220px;
	background: #fff;
	position: relative;
	z-index: 2;
}
.home .cont02 .box .inner{
	display: flex;
	gap: 440px;
	padding-bottom: 100px;
	position: relative;
}
.home .cont02 .box01 .inner::before{
	content: "";
	background: url("img/home_bg03.svg")no-repeat;
	transform: scale(1, 1);
	width: 747px;
	height: 546px;
	position: absolute;
	top: -80px;
	right: -285px;
	z-index: 2;
}
.home .cont02 .box01 .inner::after{
	content: "";
	background: url("img/home_bg05.png")no-repeat;
	width: 1430px;
	height: 1407px;
	transform: scale(-1, -1);
	position: absolute;
	top: -1285px;
	right: -535px;
	z-index: -1;
}
.home .cont02 .box02 .inner::before{
	content: "";
	background: url("img/home_bg03.svg")no-repeat;
	transform: scale(-1, -1);
	width: 747px;
	height: 546px;
	position: absolute;
	left: -464px;
	bottom: -387px;
	z-index: 2;
}
.home .cont02 .box02 .inner::after{
	content: "";
	background: url("img/home_bg06.png")no-repeat;
	width: 1162px;
	height: 1407px;
	position: absolute;
	top: -162px;
	left: -591px;
	z-index: -1;
}
.home .cont02 .box .inner .text_box{
    margin-top: -12px;
}
.home .cont02 .box .inner h2{
	font-size: 38px;
	line-height: 1;
	margin-left: 100px;
	padding-right: 38px;
	box-sizing: border-box;
	letter-spacing: 2px;
	writing-mode: vertical-rl;
	position: relative;
}
.home .cont02 .box .inner h2::before{
	content: "About Us";
	font-size: 12px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 5px;
	right: 0;
}
.home .cont02 .box02 .inner h2::before{
	content: "Cuisine";
}
.home .cont02 .box .inner .text01{
	font-size: 26px;
}
.home .cont02 .box .inner .text02{
	margin-top: 30px;
	line-height: 2.375;
	white-space: nowrap;
}
.home .cont02 .box .inner .text02 span{
	display: inline-block;
	width: 38px;
	height: 1px;
	background: #333;
	margin: 0 5px;
	position: relative;
	top: -5px;
}
.home .cont02 .box .inner .button{
	margin-top: 50px;
}
.home .cont02 .box .inner .button .mo_crop_text{
	padding-bottom: 5px;
}
.home .cont02 .box .inner .button .mo_crop_text::after{
	top: calc(100% - 5px);
}
.home .cont02 .fixed-bg{
    height: 680px;
    position: relative;
    z-index: 11;
    pointer-events: none;
    transition: opacity .4s ease;
}
.home .cont02 .fixed-bg01{
	background: url("img/home_img05.png")center center /cover no-repeat;
}
.home .cont02 .fixed-bg02{
	background: url("img/home_img06.png")center center /cover no-repeat;
}


/* cont03 */
.home .cont03{
	padding: 200px 0 300px;
	background: url("img/home_bg01.png") center top / cover fixed;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.home .cont03 .box{
	width: 1400px;
	display: flex;
	justify-content: space-between;
	color: #fff;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}
@media screen and (max-width: 1440px){
	.home .cont03 .box{
		width: 100%;
		padding: 0 20px;
	}
}
@media screen and (max-width: 1300px){
	.home .cont03 .box{
		width: 1200px;
		padding: 0;
	}
	.home .cont03 .box:nth-of-type(1) .img_box{
		margin-right: -100px;
	}
	.home .cont03 .box:nth-of-type(2) .img_box{
		margin-left: -100px;
	}
	.home .cont03 .box:nth-of-type(3) .img_box{
		margin-right: -100px;
	}
}
.home .cont03 .box:nth-of-type(even){
	margin: 340px auto;
	flex-direction: row-reverse;
}
.home .cont03 .box:nth-of-type(1){
	align-items: center;
}
.home .cont03 .box:nth-of-type(2){
	align-items: flex-end;
}
.home .cont03 .box:nth-of-type(1)::before{
	content: "";
	background: url("img/home_text02.png")no-repeat;
	mix-blend-mode: color-dodge;
	width: 178px;
	height: 364px;
	position: absolute;
	top: -72px;
	left: 500px;
	z-index: 2;
}
.home .cont03 .box:nth-of-type(2)::before{
	content: "";
	background: url("img/home_text03.png")no-repeat;
	mix-blend-mode: color-dodge;
	width: 175px;
	height: 379px;
	position: absolute;
	top: -80px;
	left: 732px;
	z-index: 2;
}
.home .cont03 .box:nth-of-type(3)::before{
	content: "";
	background: url("img/home_text04.png")no-repeat;
	mix-blend-mode: color-dodge;
	width: 164px;
	height: 376px;
	position: absolute;
	top: 140px;
	left: 465px;
	z-index: 3;
}
.home .cont03 .box h2{
	font-size: 42px;
	line-height: 1.524;
	padding-top: 40px;
	position: relative;
}
.home .cont03 .box h2::before{
	content: "Seasonal dishes";
	font-size: 15px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.home .cont03 .box h2:nth-of-type(2)::before{
	content: "Japanese modern space";
}
.home .cont03 .box h2:nth-of-type(3)::before{
	content: "A space of hospitality";
}
.home .cont03 .box .text01{
	margin-top: 60px;
	line-height: 2.25;
}
.home .cont03 .box .button{
	margin-top: 50px;
}
.home .cont03 .box .button .mo_crop_text{
	padding-bottom: 5px;
}
.home .cont03 .box .button .mo_crop_text::after{
	top: calc(100% - 5px);
}
.home .cont03 .box .img_box{
	position: relative;
}

/* パララックス */
.home .cont03 .box .prlximg_viewport{
	width: 800px;
	height: 570px;
	min-height: 570px;
	flex-shrink: 0;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(2){
	width: 360px;
	height: 250px;
	min-height: 250px;
	position: absolute;
	left: -135px;
	top: 380px;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(2) img{
	margin-top: -100px;
}
.home .cont03 .box:nth-of-type(2) .prlximg_target{
	top: -220px;
	height: 150%;
}
.home .cont03 .box:nth-of-type(3) .prlximg_viewport:nth-of-type(1){
	width: 300px;
	height: 400px;
	min-height: 400px;
	position: absolute;
	top: -135px;
	left: -135px;
	z-index: 2;
}
.home .cont03 .box:nth-of-type(3) .prlximg_viewport:nth-of-type(2){
	width: 720px;
	height: 510px;
	min-height: 510px;
}
.home .cont03 .box .prlximg_target{
	top: -50px;
	height: 120%;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(1) .prlximg_target{
	top: -50px;
	height: 120%;
	}
.home .cont03 .box:nth-of-type(3) .prlximg_viewport:nth-of-type(2) .prlximg_target{
	top: -20px;
	height: 110%;
}

.home .cont03 .cont{
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 1200px;
	height: 410px;
	margin: 250px auto 0;
	color: #fff;
	writing-mode: vertical-rl;
	position: relative;
}
.home .cont03 .cont::before{
	content: "";
	background: url("img/home_bg01.svg")no-repeat;
	background-size: 989px;
	width: 989px;
	height: 620px;
	position: absolute;
	left: -378px;
	bottom: -170px;
	z-index: -1;
}
.home .cont03 .cont::after{
	content: "";
	background: url("img/home_bg03.svg")no-repeat;
    transform: scale(-1, -1) rotate(35deg);
    width: 800px;
    height: 585px;
    position: absolute;
    top: -300px;
    right: -430px;
	z-index: -1;
}
.home .cont03 .cont h2{
	font-size: 34px;
	line-height: 1.882;
	margin-left: 90px;
	letter-spacing: 3px;
	position: relative;
}
.home .cont03 .cont h2 span{
	width: 1px;
	height: 173px;
	background: #fff;
	position: absolute;
	left: 33px;
	top: 170px;
}
.home .cont03 .cont .text02{
	line-height: 2.875;
	letter-spacing: 3px;
}


/* cont04 */
.home .cont04{
	padding: 330px 0 185px;
	background: url("img/bg_pattern.png") repeat,#fff;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.home .cont04 .inner{
	position: relative;
}
.home .cont04 .inner::before{
	content: "";
	background: url("img/home_bg03.svg")no-repeat;
	transform: scale(-1, -1);
	width: 747px;
	height: 546px;
	position: absolute;
	top: -210px;
	left: -373px;
	z-index: -1;
}
.home .cont04 .inner::after{
	content: "";
	background: url("img/home_bg05.png")no-repeat;
	width: 1430px;
	height: 1407px;
	position: absolute;
	top: -440px;
	right: -580px;
	z-index: -1;
}
.home .cont04 .inner h2{
	font-size: 28px;
	line-height: 1.5;
	padding-top: 40px;
	position: relative;
}
.home .cont04 .inner h2::before{
	content: "Various scenes";
	font-size: 16px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.home .cont04 .inner .text01{
	margin-top: 50px;
	line-height: 2.364;
	white-space: nowrap;
}
.home .cont04 .inner picture{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.home .cont04 .inner picture img{
	filter: drop-shadow(0 5px 30px rgba(0,0,0,0.05));
}


/* 流れる画像 */
.home .cont04 .slide_wrap{
	display: flex;
	width: 100%;
	height: 340px;
	overflow: hidden;
	position: absolute;
	top: -230px;
	z-index: 3;
}
.home .cont04 .slide_wrap picture{
	width: auto;
	height: 100%
}
.home .cont04 .slide_wrap picture img{
	max-width: none;
	width: auto;
	height: 100%;
	object-fit: contain;
}
.home .cont04 .slide_wrap picture:first-child{
	animation: BgImgloop 100s -50s linear infinite;
}
.home .cont04 .slide_wrap picture:last-child{
	animation: BgImgloop2 100s linear infinite;
}
@keyframes BgImgloop {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes BgImgloop2 {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}


/* cont05 */
.home .cont05{
	background: url("img/bg_pattern.png") repeat,#fff;
	position: relative;
	z-index: 2;
}
.home .cont05 .inner{
	padding: 120px 0;
	box-sizing: border-box;
	position: relative;
}
.home .cont05 .inner::before{
	content: "";
	background: #1e1e1e;
	width: 1500px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.home .cont05 .inner .text_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}
.home .cont05 .inner .text_box .button{
	margin-top: 8px;
}
.home .cont05 .inner .text_box .button .mo_crop_text{
	height: 33px;
}
.home .cont05 .inner .text_box .button .mo_crop_text_inner{
	padding-left: 22px;
	background: url("img/sns_icon01.svg")top 7px left no-repeat;
	background-size: 14px;
	box-sizing: border-box;
}
.home .cont05 .inner .text_box .button .mo_crop_text_after{
    display: block;
	width: 100%;
	padding-left: 22px;
	background: url("img/sns_icon01.svg")top 10px left no-repeat;
	background-size: 14px;
	box-sizing: border-box;

    transition:
        transform .55s cubic-bezier(0.25, 1, 0.5, 1),
        opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
        filter .55s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.8;
	position: absolute;
    top: 100%;
    left: 0;
}
.home .cont05 .inner .text_box .button .mo_crop_text_after img{
    display: block;
    width: 60px;
    height: 36px;
}
.home .cont05 .inner .text_box .button.mo_crop:hover .mo_crop_text_after{
    transform: translateY(-100%);
    opacity: 1;
    filter: blur(0);
}
.home .cont05 .inner .text_box h2{
	font-size: 50px;
	line-height: 1;
	color: #b5934d;
	margin-bottom: 6px;
	position: relative;
}
.home .cont05 .inner .text_box .text01{
	color: #fff;
	margin-right: 90px;
}


/* cont06 */
.home .cont06{
	padding: 180px 0 0;
	background: url("img/bg_pattern.png") repeat,#fff;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.home .cont06 .inner{
	width: 1500px;
	display: flex;
	gap: 0 85px;
	position: relative;
}
@media screen and (max-width: 1540px){
	.home .cont06 .inner{
		padding-left: 20px;
		gap: 0 75px;
	}
}
@media screen and (max-width: 1240px){
	.home .cont06 .inner{
		padding-left: 0;
		width: 1200px;
	}
}
.home .cont06 .inner h2{
	font-size: 30px;
	line-height: 1;
	writing-mode: vertical-rl;
	letter-spacing: 2px;
	padding-right: 35px;
	box-sizing: border-box;
	position: relative;
}
.home .cont06 .inner h2::before{
	content: "Shop Information";
	font-size: 15px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	right: 0;
}
.home .cont06 .inner .text_box{
	width: 460px;
	margin: -5px 15px 0 0;
}
.home .cont06 .inner .text_box address .opentime::before{
	content: "営業時間：";
}
.home .cont06 .inner .text_box address .tel::before{
	content: "電話：";
}
.home .cont06 .inner .text_box address .info01::before{
	content: "駐車場：";
}
.home .cont06 .inner .text_box address .info02::before{
	content: "貸切：";
}
.home .cont06 .inner .text_box .access_box{
	margin: 35px 0 30px;
	background: #fff;
	position: relative;
}
.home .cont06 .inner .text_box .access_box h3{
	font-size: 16px;
	line-height: 1;
	color: #b5934d;
	position: absolute;
	top: -8px;
	left: 30px;
}
.home .cont06 .inner .text_box .access_box ul{
	padding: 27px 30px 22px;
	box-sizing: border-box;
}
.home .cont06 .inner .text_box .access_box ul li{
	padding-left: 17px;
	font-size: 14px;
	line-height: 1.714;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	position: relative;
	box-sizing: border-box;
}
.home .cont06 .inner .text_box .access_box ul li::before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.home .cont06 .inner .img_box{
	display: flex;
	gap: 20px;
	position: relative;
}

/* パララックス */
.home .cont06 .inner .prlximg_viewport{
	width: 250px;
	height: 470px;
	min-height: 470px;
	flex-shrink: 0;
}
.home .cont06 .inner .prlximg_viewport:nth-of-type(2){
	margin-top: 60px;
}
.home .cont06 .inner .prlximg_viewport:nth-of-type(3){
	position: absolute;
	top: 0;
	right: -270px;
}
.home .cont06 .inner .prlximg_target{
	top: -50px;
	height: 120%;
}
.home .cont06 .g_map{
	margin-top: -85px;
}
.home .cont06 .g_map iframe{
    width: 100%;
    height: 480px;
    vertical-align: bottom;
}



/* common
------------------------------------------------------------------------*/

/* header */
.common header h1{
	position: absolute;
	top: 38px;
	left: 230px;
	font-size: 12px;
	line-height: 1;
	color: #333;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	opacity: 1;
	transition: opacity .4s;
}
.common header.fixed h1 {
	opacity: 0;
	transition: opacity .4s;
}
.common header .logo{
	position: fixed;
	top: 20px;
	left: 40px;
	opacity: 1;
	transform: scale(1);
}
.common header .logo img {
	content: url("img/header_logo_ho.svg");
}
.common header.is-light .logo img {
	content: url("img/header_logo.svg");
}
	
/* nav */
.common header .menu-btn span{
	background: #333;
}
.common header.is-light .menu-btn span{
	background: #fff;
}

/* key */
.common .key{
	background: url("img/bg_pattern.png");
}
.common .key .inner{
	padding: 160px 0 510px;
	z-index: 11;
	position: relative;
}
.common .key .inner::after{
	background: url("img/common_key_img01.png")no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 1500px;
	height: 480px;
}
.common .key .inner .text01{
	padding: 30px 0 0;
	font-size: 30px;
	line-height: 1;
	position: relative;
}
.common .key .inner .text01::before{
	position: absolute;
	top: 0;
	left: 0;
	color: #b5934d;
	font-size: 12px;
	line-height: 1;
}


/* パララックス */
/* 画像を包む枠 */
.prlximg_viewport{
	position: relative;
	width: 100%;
	overflow: hidden;
}
/* 動かす画像 */
.prlximg_target{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150%;
	object-fit: cover;
	will-change: transform;
	z-index: 1;
}


/* ボタンアクション */
.mo_crop{
	display: inline-block;
	width: 220px;
	position: relative;
	overflow: hidden;
}
.mo_crop_text{
	display: inline-block;
	width: 100%;
	color: #b5934d;
	font-size: 14px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	padding-right: 32px;
	border-bottom: 1px solid #b5934d;
	box-sizing: border-box;
	position: relative;
}
.mo_crop_text:hover{
	opacity: 1;
}
.mo_crop_text_inner{
	display: block;
	transform: translateY(0);
	transition:
		transform .55s cubic-bezier(0.25, 1, 0.5, 1),
		opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
		filter .55s cubic-bezier(0.25, 1, 0.5, 1);
}
.mo_crop:hover .mo_crop_text_inner{
	transform: translateY(-100%);
	opacity: 0.6;
	filter: blur(2px);
}
.mo_crop_text::after{
	content: attr(data-text);
	width: 100%;
	color: #b5934d;
	transform: translateY(0);
	transition:
		transform .55s cubic-bezier(0.25, 1, 0.5, 1),
		opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
		filter .55s cubic-bezier(0.25, 1, 0.5, 1);
	opacity: 0.8;
	position: absolute;
	top: 100%;
	left: 0;
}
.mo_crop:hover .mo_crop_text::after{
	transform: translateY(-100%);
	opacity: 1;
	filter: blur(0);
}
.arrow{
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 8px;
	margin: auto 0;
	line-height: 1;
}
.arrow::before,
.arrow::after{
	content: "";
	background: url("img/common_arrow01.svg") center/contain no-repeat;
	width: 8px;
	height: 100%;
	position: absolute;
	top: -2px;
	right: 0;
	animation-fill-mode: forwards;
	animation-duration: 0.25s;
	animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.arrow::after{
	transform: translateX(-100%);
}
.mo_crop:hover .arrow::before{
	animation-name: transformRightLeft;
	animation-delay: 0s;
}
.mo_crop:hover .arrow::after{
	animation-name: transformLeftRight;
	animation-delay: 0.45s;
}
@keyframes transformLeftRight {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
	}
	@keyframes transformRightLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);
	}
}


/* pankuzu */
.pankuzu {
	padding-top: 16px;
	line-height: 1.3;
	background: url("img/bg_pattern.png");
}
.pankuzu ul li {
	display: inline-block;
	margin-right: 10px;
	color: #333;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 14px;
}
.pankuzu ul li a {
	color: #333;
}
.pankuzu ul li:not(:last-of-type)::after {
	content: "-";
	margin-left: 10px;
	flex-shrink: 0;
}
.pankuzu ul li:last-of-type {
	margin-right: 0;
}



/* 一覧ページのページャー */
.archive-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin:120px auto;
}
.archive-pager .page-numbers{
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
}
.archive-pager .page-numbers.current {
	border: 1px solid var(--main-color);
	color:var(--main-color);
	background: #fff;
}
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next{
	background: var(--main-dark-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
	padding-top: 3px;
}
.archive-pager .page-numbers.next {
	padding-left: 3px;
}



.single-pager{
	display: flex;
	justify-content: space-between;
	margin: 120px auto;
}
.single-pager .prev-pager-box,
.single-pager .next-pager-box{
	width: calc(50% - 30px);
}
.single-pager .prev-pager-box {
	margin-left: 20px;
}
.single-pager .next-pager-box {
	margin-right: 20px;
}
.single-pager a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 14px;
	position: relative;
}
.single-pager .prev-pager-box a {
	flex-direction: row-reverse;
}
.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
	content: "";
	width: 35px;
	height: 35px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::before{
	left: -20px;
}
.single-pager .next-pager-box a::before {
	right: -20px;
}
.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::after{
	border-right: 8px solid #fff;
	left: -7px;
}
.single-pager .next-pager-box a::after {
	border-left: 8px solid #fff;
	right: -7px;
}
.single-pager .prev-pager-box a .text-box {
	padding-left: 20px;
}
.single-pager .next-pager-box a .text-box {
	padding-right: 20px;
}
.single-pager a h2 {
	line-height: 1.3;
	padding-bottom: 10px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.single-pager a .img {
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.single-pager a .img img {
	width: 150px !important;
	border-radius: 5px !important;
}



/* ここから各下層ページ
------------------------------------------------------------------------*/
	/* key */
	
	/* about */
	.about .key .inner::after{
		background: url("img/about_key_img01.png")no-repeat;
	}
	.about .key .inner .text01::before{
		content: "Greeting/Features";
	}
	
	/* cuisine-room */
	.cuisine .key .inner::after{
		background: url("img/cuisine_key_img01.png")no-repeat;
	}
	.cuisine .key .inner .text01::before{
		content: "Greeting/Features";
	}

	/* seasonal */
	.seasonal .key .inner::after{
		background: url("img/seasonal_key_img01.png")no-repeat;
	}
	.seasonal .key .inner .text01::before{
		content: "Seasonal Contents";
	}

	/* facility */
	.facility .key .inner::after{
		background: url("img/facility_key_img01.png")no-repeat;
	}
	.facility .key .inner .text01::before{
		content: "Facility Information";
	}

	/* shop */
	.shop .key .inner::after{
		background: url("img/shop_key_img01.png")no-repeat;
	}
	.shop .key .inner .text01::before{
		content: "Shop Information";
	}



	/* contact */
	.contact .key .inner::after{
		background: url("img/contact_key_img01.png")no-repeat;
	}
	.contact .key .inner .text01::before{
		content: "Reservation/Contact";
	}

	/* thanks */
	.thanks .key .inner::after{
		background: url("img/thanks_key_img01.png")no-repeat;
	}
	.thanks .key .inner .text01::before{
		content: "Thanks you";
	}

	/* privacy */
	.privacy .key .inner::after{
		background: url("img/privacy_key_img01.png")no-repeat;
	}
	.privacy .key .inner .text01::before{
		content: "Privacy Policy";
	}

	/* still */
	.still .key .inner .text01::before{
		content: "Consulting process";
	}

	/* 404 */
	.yonmaruyon .key .inner .text01::before{
		content: "404 NOT FOUND";
	}

	/* 410 */
	.yonichimaru .key .inner .text01::before{
		content: "410 Gone";
	}



/* about
------------------------------------------------------------------------*/

	/* cont01 */
	.about .cont01{
		background: url("img/bg_pattern.png");
	}
	.about .cont01 .inner{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 150px 0 0;
		position: relative;
	}
	.about .cont01 .inner::before{
		position: absolute;
		top: 270px;
		left: -471px;
		content: "";
		background: url("img/about_bg02.png")no-repeat;
		width: 1430px;
		height: 1407px;
	}
	.about .cont01 .inner h2{
		padding-right: 50px;
		box-sizing: border-box;
		font-size: 64px;
		line-height: 1;
		letter-spacing: 5px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.about .cont01 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Greeting";
        color: #b5934d;
        font-size: 18px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.about .cont01 .inner .text01{
		display: inline-block;
		font-size: 24px;
		line-height: 1;
		position: relative;
	}
	.about .cont01 .inner .text01::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 20px);
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 100px;
		height: 1px;
	}
	.about .cont01 .inner .text02{
		line-height: 2.875;
		margin-top: 56px;
	}
	.about .cont01 .inner .text03{
		line-height: 1;
		margin-top: 64px;
	}
	.about .cont01 .inner .img_box{
		width: 100%;
		height: 935px;
		position: relative;
	}

	/* パララックス */
	.about .cont01 .inner .prlximg_viewport:nth-of-type(1){
		width: 355px;
		height: 580px;
		min-height: 580px;
		position: absolute;
		top: 150px;
		left: 624px;
		z-index: 2;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(2){
		width: 1000px;
		height: 590px;
		min-height: 590px;
		position: absolute;
		top: 350px;
		left: -300px;
		z-index: 1;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(3){
		width: 300px;
		height: 300px;
		min-height: 300px;
		position: absolute;
		top: 540px;
		right: -300px;
		z-index: 2;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
		top: -50px;
		height: 120%;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(3) .prlximg_target{
		top: -30px;
		height: 130%;
	}

	@media screen and (max-width: 1240px){
		.about .cont01 .inner .prlximg_viewport:nth-of-type(1){
			width: 355px;
			height: 580px;
			min-height: 580px;
			position: absolute;
			top: 150px;
			left: 424px;
			z-index: 2;
		}
		.about .cont01 .inner .prlximg_viewport:nth-of-type(2){
			width: 1000px;
			height: 590px;
			min-height: 590px;
			position: absolute;
			top: 350px;
			left: -300px;
			z-index: 1;
		}
		.about .cont01 .inner .prlximg_viewport:nth-of-type(3){
			width: 300px;
			height: 300px;
			min-height: 300px;
			position: absolute;
			top: 540px;
			right: 0;
			z-index: 2;
		}
	}


	/* cont02 */
	.about .cont02{
		background: url("img/bg_pattern.png");
	}
	.about .cont02 .inner{
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		padding: 200px 0 0;
		position: relative;
	}
	.about .cont02 .inner::before{
		position: absolute;
		top: -222px;
		right: -402px;
		content: "";
		background: url("img/about_bg03.png")no-repeat;
		width: 1162px;
		height: 1296px;
		z-index: -1;
	}
	.about .cont02 .inner h2{
		padding-right: 50px;
		box-sizing: border-box;
		font-size: 64px;
		line-height: 1;
		letter-spacing: 5px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.about .cont02 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Attention to detail";
        color: #b5934d;
        font-size: 18px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.about .cont02 .inner .text01{
		display: inline-block;
		font-size: 24px;
		line-height: 1;
		position: relative;
	}
	.about .cont02 .inner .text01::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 20px);
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 100px;
		height: 1px;
	}
	.about .cont02 .inner .text02{
		line-height: 2.875;
		margin-top: 57px;
	}
	.about .cont02 .inner .text02 + .text02{
		margin-top: 28px;
	}
	.about .cont02 .detail_box{
		display: flex;
		justify-content: center;
		gap: 0 80px;
		margin-top: 105px;
	}
	.about .cont02 .detail_box .cont{
		display: flex;
		flex-direction: column;
		width: 430px;
	}

	@media screen and (max-width: 1240px){
		.about .cont02 .detail_box{
			display: flex;
			justify-content: space-between;
			gap: 0 50px;
			width: 1200px;
			margin: 105px auto 0;
		}
		.about .cont02 .detail_box .cont{
			display: flex;
			flex-direction: column;
			width: 380px;
		}
	}

	.about .cont02 .detail_box .cont h3{
		font-size: 22px;
		line-height: 1;
		margin-top: 30px;
		order: 2;
	}
	.about .cont02 .detail_box .cont .text03{
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
		letter-spacing: 1px;
		font-feature-settings: "palt" 1;
		margin-top: 24px;
		order: 3;
	}
	.about .cont02 .detail_box .cont figure{
		order: 1;
	}


	/* cont03 */
	.about .cont03{
		background: url("img/bg_pattern.png");
		position: relative;
	}
	.about .cont03::before{
		position: absolute;
		top: 140px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/about_bg01.png")center center repeat-x;
		width: 100%;
		height: 650px;
		animation: aboutslideMove 40s linear infinite;
		z-index: 12;
	}
	@keyframes aboutslideMove{
		0% {background-position: 1850px 0;}
		50% {background-position: 925px 0;}
		100% {background-position: 0 0;}
	}
	.about .cont03 .inner{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 945px 0 190px;
		position: relative;
	}
	.about .cont03 .inner::before{
		position: absolute;
		top: 580px;
		right: -360px;
		content: "";
		background: url("img/about_bg01.svg")no-repeat;
        transform: scale(-1, -1) rotate(35deg);
        width: 800px;
        height: 585px;
		z-index: -1;
	}
	.about .cont03 .inner::after{
		position: absolute;
		bottom: 0;
		left: -522px;
		content: "";
		background: url("img/about_bg02.svg")no-repeat;
        width: 985px;
        height: 556px;
		z-index: -1;
	}
	.about .cont03 .inner h2{
		padding-top: 58px;
		box-sizing: border-box;
		font-size: 36px;
		line-height: 1;
		letter-spacing: 5px;
		position: relative;
	}
	.about .cont03 .inner h2::before{
        position: absolute;
        top: 4px;
        left: 0;
		content: "Hospitality for every occasion";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.about .cont03 .inner .text01{
		font-size: 18px;
		line-height: 2.22;
		margin-top: 65px;
	}
	.about .cont03 .inner .text02 + .text02{
		margin-top: 22px;
	}


	
/* cuisine
------------------------------------------------------------------------*/
	
	/* cuisine_btn_box */
	.cuisine_btn_box{
		display: flex;
		justify-content: center;
		gap: 0 50px;
		background: url("img/bg_pattern.png");
		padding: 115px 0 0;
	}
	.cuisine_btn_box .button a{
		display: block;
		width: 380px;
		height: 80px;
		background: url("img/cuisine_btn_bg01.png")no-repeat;
		border-radius: 5px;
		padding: 0 0 0 262px;
		filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.2));
		box-sizing: border-box;
		color: #fff;
		font-size: 18px;
		line-height: 80px;
		position: relative;
	}
	.cuisine_btn_box .button:nth-of-type(2) a{
		background: url("img/cuisine_btn_bg02.png")no-repeat;
	}
	.cuisine_btn_box .button a::after{
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(90deg);
		content: "";
		background: url("img/common_arrow02.svg")no-repeat;
		width: 9px;
		height: 8px;
	}
	.cuisine_btn_box .button a:hover{
		transform: translate(0, 5px);
		filter: drop-shadow(15px 10px 10px rgba(0,0,0,0.2));
	}


	/* cont01 */
	.cuisine .cont01{
		background: url("img/bg_pattern.png");
	}
	.cuisine .cont01 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 0 140px;
		padding: 220px 0 0;
		position: relative;
	}
	.cuisine .cont01 .inner::before{
		position: absolute;
		top: 508px;
		left: -320px;
		content: "";
		background: url("img/cuisine_bg01.svg")no-repeat;
        transform: scale(-1, -1) rotate(35deg);
        width: 800px;
        height: 585px;
	}
	.cuisine .cont01 .inner h2{
		padding-right: 30px;
		box-sizing: border-box;
		font-size: 36px;
		line-height: 1;
		letter-spacing: 3.6px;
		writing-mode: vertical-rl;
		margin-left: 59px;
		position: relative;
	}
	.cuisine .cont01 .inner h2 span{
		display: block;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0.8px;
		text-indent: -0.5em;
		margin-left: 48px;
	}
	.cuisine .cont01 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Cuisine";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.cuisine .cont01 .inner .text01{
		font-size: 16px;
		line-height: 2.5;
	}
	.cuisine .cont01 .inner .text01 + .text01{
		margin-top: 24px;
	}

	/* パララックス */
	.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(2){
		width: 340px;
		height: 400px;
		min-height: 400px;
		position: absolute;
		top: 150px;
		left: auto;
		right: 0;
		z-index: 2;
	}
	.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(3){
		width: 240px;
		height: 240px;
		min-height: 240px;
		position: absolute;
		top: 455px;
		left: auto;
		right: -150px;
		z-index: 1;
	}
	.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(3) .prlximg_target{
		height: 280px;
		top: -15px;
	}
	@media screen and (max-width: 1240px){
		.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(2){
			width: 340px;
			height: 400px;
			min-height: 400px;
			position: absolute;
			top: 150px;
			left: auto;
			right: 30px;
			z-index: 2;
		}
		.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(3){
			width: 240px;
			height: 240px;
			min-height: 240px;
			position: absolute;
			top: 455px;
			left: auto;
			right: 10px;
			z-index: 1;
		}
	}

	.cuisine .cont01 .inner .cont{
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		justify-content: space-between;
		width: 1200px;
		padding: 790px 0 0;
		box-sizing: border-box;
		margin-top: 175px;
		position: relative;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2){
		margin-top: 145px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3){
		margin-top: 50px;
		padding-bottom: 85px;
	}
	.cuisine .cont01 .inner .cont::before{
		position: absolute;
        top: 860px;
        right: -300px;
        content: "";
        background: url(img/cuisine_bg01.svg) no-repeat;
        transform: scale(1, 1);
        width: 747px;
        height: 546px;
        z-index: 2;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3)::after{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #b5934d;
		width: 1500px;
		height: 1px;
	}
	.cuisine .cont01 .inner .cont h3{
		display: block;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 2px;
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		white-space: pre;
	}
	.cuisine .cont01 .inner .cont h3::after{
		content: "-KOU-";
		font-size: 18px;
		padding-top: 15px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2) h3::after{
		content: "-MIYABI-";
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3) h3::after{
		content: "-SHUN-";
	}
	.cuisine .cont01 .inner .cont .text02{
		display: inline-block;
		font-size: 16px;
		line-height: 2.375;
		letter-spacing: 0.8px;
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		white-space: pre;
		margin-left: 22px;
	}
	.cuisine .cont01 .inner .cont .cuisine_box{
		display: block;
		width: 780px;
		background: #fff;
		padding: 33px 40px 23px;
		box-sizing: border-box;
		position: relative;
	}
	.cuisine .cont01 .inner .cont .cuisine_box h4{
		position: absolute;
		top: -9px;
		left: 40px;
		color: #b5934d;
		font-size: 18px;
		line-height: 1;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul{
		display: flex;
		flex-wrap: wrap;
		gap: 5px 0;
		padding-bottom: 23px;
		border-bottom: 1px solid #b5934d;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul li{
		font-size: 14px;
		line-height: 2;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul li span{
		color: #b5934d;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul li span::after{
		content: "｜";
		padding: 0 6px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(2),
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(4){
		width: 224px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(3){
		margin-right: 240px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(6){
		margin-right: 1.5em;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2) .cuisine_box ul li:nth-of-type(2),
	.cuisine .cont01 .inner .cont:nth-of-type(2) .cuisine_box ul li:nth-of-type(3),
	.cuisine .cont01 .inner .cont:nth-of-type(3) .cuisine_box ul li:nth-of-type(2),
	.cuisine .cont01 .inner .cont:nth-of-type(3) .cuisine_box ul li:nth-of-type(3){
		margin-right: 3em;
	}
	.cuisine .cont01 .inner .cont .cuisine_box .price{
		font-size: 20px;
		line-height: 1;
		margin-top: 25px;
	}
	.cuisine .cont01 .inner .cont .cuisine_box .price span{
		font-size: 16px;
		padding-left: 6px;
	}

	/* パララックス */
	.cuisine .cont01 .inner .cont .prlximg_viewport{
		width: 1500px;
		height: 720px;
		min-height: 720px;
		position: absolute;
		top: 0;
		left: -150px;
		z-index: 2;
	}
	.cuisine .cont01 .inner .cont .prlximg_viewport::after{
		position: absolute;
		bottom: 68px;
		right: 78px;
		content: "";
		background: url("img/cuisine_text01.png")no-repeat;
		width: 271px;
		height: 281px;
		opacity: 0.3;
		z-index: 11;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2) .prlximg_viewport::after{
		position: absolute;
		bottom: 44px;
		right: 59px;
		content: "";
		background: url("img/cuisine_text02.png")no-repeat;
		width: 300px;
		height: 324px;
		opacity: 0.3;
		z-index: 11;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3) .prlximg_viewport::after{
		position: absolute;
		bottom: 71px;
		right: 94px;
		content: "";
		background: url("img/cuisine_text03.png")no-repeat;
		width: 219px;
		height: 322px;
		opacity: 0.3;
		z-index: 11;
	}
	.cuisine .cont01 .inner .cont  .prlximg_viewport .prlximg_target{
		height: 105%;
		top: -15px;
	}

	.cuisine .cont01 .inner .text03{
		width: 100%;
		line-height: 1;
		margin: 60px 0 20px;
	}


	/* cont02 */
	.cuisine .cont02{
		background: url("img/bg_pattern.png");
		padding: 100px 0 200px;
	}
	.cuisine .cont02 .inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 80px 0 56px;
		color: #fff;
		position: relative;
	}
	.cuisine .cont02 .inner::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #1e1e1e;
		width: 1500px;
		height: 605px;
		z-index: -2;
	}
	.cuisine .cont02 .inner::after{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/cuisine_bg01.png")no-repeat;
		width: 1500px;
		height: 605px;
		z-index: -1;
		mix-blend-mode: lighten;
	}
	.cuisine .cont02 .inner h2{
		padding-top: 32px;
		font-size: 30px;
		line-height: 1;
		position: relative;
	}
	.cuisine .cont02 .inner h2::before{
        position: absolute;
        top: 0;
        left: 0;
		content: "Souvenirs";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.cuisine .cont02 .inner .text01{
		font-size: 16px;
		margin-top: 40px;
	}
	.cuisine .cont02 .inner .souvenirs_box{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 25px;
		width: 725px;
	}
	.cuisine .cont02 .inner .souvenirs_box .text02{
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 1;
		margin-top: 9px;
	}


	/* cont03 */
	.cuisine .cont03{
		background: url("img/bg_pattern.png");
	}
	.cuisine .cont03 .fixed-bg{
		height: 680px;
		position: relative;
		z-index: 11;
	}
	.cuisine .cont03 .fixed-bg01{
		background: url("img/cuisine_img10.png")center center /cover no-repeat;
	}
	.cuisine .cont03 .inner{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0 190px;
		width: 1400px;
		padding: 140px 0 150px;
		position: relative;
	}
	@media screen and (max-width: 1240px){
		.cuisine .cont03 .inner{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			gap: 0 190px;
			width: 1200px;
			padding: 140px 0 150px;
			position: relative;
		}
	}

	.cuisine .cont03 .inner::after{
		position: absolute;
		top: -331px;
		left: 403px;
		content: "";
		background: url("img/cuisine_bg02.png")no-repeat;
		width: 1430px;
		height: 1407px;
		z-index: -1;
	}
	.cuisine .cont03 .inner h2{
		padding-right: 30px;
		box-sizing: border-box;
		font-size: 36px;
		line-height: 1.44;
		letter-spacing: 3.6px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.cuisine .cont03 .inner h2 span{
		display: block;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0.8px;
		text-indent: 0.2em;
		margin-left: 42px;
	}
	.cuisine .cont03 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Quaint Room";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.cuisine .cont03 .inner .text01{
		font-size: 16px;
		line-height: 2.5;
	}
	.cuisine .cont03 .inner .text01 + .text01{
		margin-top: 24px;
	}
	.cuisine .cont03 .inner .room_box{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 124px;
	}
	.cuisine .cont03 .inner .room_box .h_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 510px;
		padding: 0 0 0 930px;
		box-sizing: border-box;
		position: relative;
	}
	@media screen and (max-width: 1240px){
		.cuisine .cont03 .inner .room_box{
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			width: 100%;
			margin-top: 124px;
		}
		.cuisine .cont03 .inner .room_box .h_box{
			display: flex;
			flex-direction: column;
			justify-content: center;
			min-height: 400px;
			padding: 0 0 0 600px;
			box-sizing: border-box;
			position: relative;
		}
	}

	.cuisine .cont03 .inner .room_box .h_box h3{
		font-size: 26px;
		line-height: 1;
	}
	.cuisine .cont03 .inner .room_box .h_box .text02{
		font-size: 16px;
		line-height: 2;
		margin-top: 50px;
	}
	.cuisine .cont03 .inner .room_box .h_box .text02 + .text02{
		margin-top: 22px;
	}

	/* パララックス */
	.cuisine .cont03 .inner .room_box .h_box .prlximg_viewport{
		width: 720px;
		height: 510px;
		min-height: 510px;
		position: absolute;
		top: 0;
		left: 140px;
		z-index: 2;
	}
	.cuisine .cont03 .inner .room_box .h_box .prlximg_viewport .prlximg_target{
		height: 110%;
		top: -10px;
	}
	@media screen and (max-width: 1240px){	
		.cuisine .cont03 .inner .room_box .h_box .prlximg_viewport{
			width: 520px;
			height: 400px;
			min-height: 400px;
			position: absolute;
			top: 0;
			left: 0;
			z-index: 2;
		}
	}

	.cuisine .cont03 .inner .room_box .room_in_box{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 40px 40px;
		margin-top: 70px;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont{
		width: 580px;
		background: #fff;
		padding: 24px 0 15px 30px;
		box-sizing: border-box;
		position: relative;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4{
		position: absolute;
		top: -10px;
		left: 0;
		width: 100%;
		overflow: hidden;
		padding-left: 30px;
		box-sizing: border-box;
		font-size: 20px;
		line-height: 1;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4 .span01{
		display: inline-block;
		position: relative;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4 .span01::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 10px);
		transform: translateY(-50%);
		content: "";
		background: #b5934d;
		width: 580px;
		height: 1px;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4 .span02{
		font-size: 16px;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dt{
		flex-basis: 7em;
		color: #b5934d;
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dt::after{
		content: "｜";
		padding: 0.5em;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dd{
		flex-basis: calc(100% - 7em);
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dt:nth-of-type(3){
		flex-basis: 8em;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dd:nth-of-type(3){
		flex-basis: calc(100% - 8em);
	}

	.cuisine .cont03 .inner .other_room_box{
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 80px;
	}
	.cuisine .cont03 .inner .other_room_box .cont{
		display: flex;
		flex-direction: column;
		width: 320px;
	}
	.cuisine .cont03 .inner .other_room_box .cont h5{
		font-size: 20px;
		line-height: 1;
		margin-top: 24px;
		order: 2;
	}
	.cuisine .cont03 .inner .other_room_box .cont .text03{
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
		margin-top: 13px;
		order: 3;
	}
	.cuisine .cont03 .inner .other_room_box .cont figure{
		order: 1;
	}
	.cuisine .cont03 .inner .other_room_box .cont figure img{
		filter: drop-shadow(12px 12px 12px rgba(0,0,0,0.15));
	}
	@media screen and (max-width: 1240px){
		.cuisine .cont03 .inner .other_room_box .cont{
			display: flex;
			flex-direction: column;
			width: 280px;
		}
	}

	.cuisine .cont03 .inner .btn_box{
		display: flex;
		justify-content: center;
		gap: 0 90px;
		margin-top: 85px;
	}



/* seasonal
------------------------------------------------------------------------*/

	/* cont01 */
	.seasonal .cont01{
		background: url("img/bg_pattern.png");
	}
	.seasonal .cont01 .inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		flex-wrap: wrap;
		gap: 150px 0;
		padding: 160px 0 142px;
		position: relative;
	}
	.seasonal .cont01 .inner::before{
		position: absolute;
		top: -50px;
		left: 303px;
		content: "";
		background: url("img/seasonal_bg01.png")no-repeat;
		width: 1430px;
		height: 1407px;
		z-index: -1;
	}
	.seasonal .cont01 .inner::after{
		position: absolute;
		top: 1750px;
		left: -601px;
		content: "";
		background: url("img/seasonal_bg02.png")no-repeat;
		width: 1162px;
		height: 1402px;
		z-index: -1;
	}
	.seasonal .cont01 .inner h2{
		font-size: 42px;
		line-height: 1.86;
		letter-spacing: 2.2px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.seasonal .cont01 .inner h2::after{
		position: absolute;
		top: 0;
		left: 190px;
		content: "";
		background: #b5934d;
		width: 1px;
		height: 100px;
	}
	.seasonal .cont01 .inner h2 .span01{
		display: block;
        color: #b5934d;
		font-size: 26px;
		line-height: 1.785;
		margin-left: 67px;
	}
	.seasonal .cont01 .inner h2 .span02{
		font-size: 22px;
		position: relative;
	}
	.seasonal .cont01 .inner .text01{
		font-size: 18px;
		line-height: 2.57;
		letter-spacing: 0.8px;
		writing-mode: vertical-rl;
		margin-right: 86px;
	}

	.seasonal .cont01 .inner .menu_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 60px 0;
		width: 100%;
	}
	.seasonal .cont01 .inner .menu_box:first-of-type{
		margin-top: 40px;
	}
	.seasonal .cont01 .inner .menu_box h3{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 60px;
		font-size: 20px;
		line-height: 60px;
		z-index: 11;
		position: relative;
	}
	.seasonal .cont01 .inner .menu_box h3::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 1500px;
		height: 100%;
		z-index: -1;
	}
	.seasonal .cont01 .inner .menu_box h3 span{
		position: relative;
	}
	.seasonal .cont01 .inner .menu_box h3 span::before{
		position: absolute;
		top: 50%;
		left: 10em;
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 1px;
		height: 20px;
	}
	.seasonal .cont01 .inner .menu_box.rankup h3 span::before{
		left: 12em;
	}
	.seasonal .cont01 .inner .menu_box.child h3 span::before{
		left: 9em;
	}
	.seasonal .cont01 .inner .menu_box h3 span::after{
		content: "Additional Menu";
		color: #b5934d;
		font-size: 14px;
		line-height: 60px;
		letter-spacing: 1.4px;
		padding-left: 5.6em;
	}
	.seasonal .cont01 .inner .menu_box.rankup h3 span::after{
		content: "Rank Up Menu";
	}
	.seasonal .cont01 .inner .menu_box.child h3 span::after{
		content: "Children's Menu";
	}
	.seasonal .cont01 .inner .menu_box .cont{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: wrap;
		width: 100%;
		margin-bottom: 20px;
	}
	.seasonal .cont01 .inner .menu_box .cont:last-of-type{
		margin-bottom: 0;
	}
	.seasonal .cont01 .inner .menu_box .cont figure img{
		filter: drop-shadow(15px 15px 20px rgba(0,0,0,0.2));
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box{
		width: 550px;
		padding: 0 0 30px 30px;
		box-sizing: border-box;
		border-bottom: 1px solid #b5934d;
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box .menu_name{
		font-size: 20px;
		line-height: 1;
		margin-bottom: 18px;
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box .price{
		font-size: 20px;
		line-height: 1;
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box .price span{
		font-size: 16px;
		padding-left: 6px;
	}

	.seasonal .cont01 .inner .menu_box.rankup,
	.seasonal .cont01 .inner .menu_box.child{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 80px 60px;
		width: 100%;
	}
	.seasonal .cont01 .inner .menu_box.rankup .cont,
	.seasonal .cont01 .inner .menu_box.child .cont{
		display: flex;;
		align-items: center;
		flex-wrap: wrap;
		width: 570px;
		margin-bottom: 0;
	}
	.seasonal .cont01 .inner .menu_box.rankup .cont .text_box,
	.seasonal .cont01 .inner .menu_box.child .cont .text_box{
		display: flex;
		width: 570px;
		padding: 0 0 28px 0;
		margin-top: 34px;
	}
	.seasonal .cont01 .inner .menu_box.rankup .cont .text_box .menu_name,
	.seasonal .cont01 .inner .menu_box.child .cont .text_box .menu_name{
		font-size: 20px;
		line-height: 1;
		margin-bottom: 0;
	}
	.seasonal .cont01 .inner .menu_box.rankup .cont .text_box .menu_name::after,
	.seasonal .cont01 .inner .menu_box.child .cont .text_box .menu_name::after{
		content: "｜";
		padding: 26px;
	}
	.seasonal .cont01 .inner .attention_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 970px;
		border-right: 1px solid #b5934d;
		border-left: 1px solid #b5934d;
		text-align: center;
	}
	.seasonal .cont01 .inner .attention_box h4{
		color: #b5934d;
		font-size: 12px;
		line-height: 2;
	}
	.seasonal .cont01 .inner .attention_box .text02{
		font-size: 14px;
		line-height: 2;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		margin-top: 15px;
	}


	/* cont02 */
	.seasonal .cont02{
		background: url("img/bg_pattern.png");
		padding-bottom: 150px;
		position: relative;
	}
	.seasonal .cont02 .inner{
		padding: 120px 0;
		box-sizing: border-box;
		position: relative;
	}
	.seasonal .cont02 .inner::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 1500px;
		height: 100%;
		filter: drop-shadow(0 0 30px rgba(0,0,0,0.15));
		z-index: -1;
	}
	.seasonal .cont02 .inner .text_box{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 50px;
	}
	.seasonal .cont02 .inner .text_box .button{
		margin-top: 8px;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text{
		height: 33px;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text_inner{
		padding-left: 22px;
		background: url("img/sns_icon01.svg")top 7px left no-repeat;
		background-size: 14px;
		box-sizing: border-box;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text_after{
		display: block;
		width: 100%;
		padding-left: 22px;
		background: url("img/sns_icon01.svg")top 10px left no-repeat;
		background-size: 14px;
		box-sizing: border-box;

		transition:
			transform .55s cubic-bezier(0.25, 1, 0.5, 1),
			opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
			filter .55s cubic-bezier(0.25, 1, 0.5, 1);
		opacity: 0.8;
		position: absolute;
		top: 100%;
		left: 0;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text_after img{
		display: block;
		width: 60px;
		height: 36px;
	}
	.seasonal .cont02 .inner .text_box .button.mo_crop:hover .mo_crop_text_after{
		transform: translateY(-100%);
		opacity: 1;
		filter: blur(0);
	}
	.seasonal .cont02 .inner .text_box h2{
		font-size: 50px;
		line-height: 1;
		color: #b5934d;
		margin-bottom: 6px;
		position: relative;
	}
	.seasonal .cont02 .inner .text_box .text01{
		margin-right: 90px;
	}



/* facility
------------------------------------------------------------------------*/
	
	/* facility_btn_box */
	.facility_btn_box{
		display: flex;
		justify-content: center;
		gap: 0 50px;
		background: url("img/bg_pattern.png");
		padding: 115px 0 0;
	}
	.facility_btn_box .button a{
		display: block;
		width: 380px;
		height: 80px;
		background: url("img/facility_btn_bg01.png")no-repeat;
		border-radius: 5px;
		padding: 0 0 0 200px;
		filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.2));
		box-sizing: border-box;
		color: #fff;
		font-size: 18px;
		line-height: 80px;
		position: relative;
	}
	.facility_btn_box .button:nth-of-type(2) a{
		background: url("img/facility_btn_bg02.png")no-repeat;
	}
	.facility_btn_box .button a::after{
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(90deg);
		content: "";
		background: url("img/common_arrow02.svg")no-repeat;
		width: 9px;
		height: 8px;
	}
	.facility_btn_box .button a:hover{
		transform: translate(0, 5px);
		filter: drop-shadow(15px 10px 10px rgba(0,0,0,0.2));
	}


	/* cont01 */
	.facility .cont01{
		background: url("img/bg_pattern.png");
	}
	.facility .cont01 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 0 134px;
		padding: 220px 0 0;
		position: relative;
	}
	.facility .cont01 .inner::before{
		position: absolute;
		top: 490px;
		left: -225px;
		content: "";
		background: url("img/facility_bg01.svg")no-repeat;
        transform: scale(-1, -1) rotate(35deg);
        width: 800px;
        height: 585px;
	}
	.facility .cont01 .inner h2{
		padding-right: 28px;
		box-sizing: border-box;
		font-size: 36px;
		line-height: 1.67;
		letter-spacing: 3.6px;
		writing-mode: vertical-rl;
		margin-left: -12px;
		position: relative;
	}
	.facility .cont01 .inner h2 span{
		display: block;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0.8px;
		text-indent: -0.5em;
		margin-left: 36px;
	}
	.facility .cont01 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "The history of our city";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.facility .cont01 .inner .text01{
		font-size: 16px;
		line-height: 2.5;
	}
	.facility .cont01 .inner .text01 + .text01{
		margin-top: 25px;
	}
	.facility .cont01 .inner .img_box{
		width: 100%;
		height: 1005px;
		position: relative;
	}

	/* パララックス */
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(1){
		width: 340px;
		height: 400px;
		min-height: 400px;
		position: absolute;
		top: -510px;
		right: 0;
		left: auto;
		z-index: 2;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(2){
		width: 240px;
		height: 240px;
		min-height: 240px;
		position: absolute;
		top: -245px;
		right: -150px;
		left: auto;
		z-index: 1;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(3){
		width: 355px;
		height: 600px;
		min-height: 600px;
		position: absolute;
		top: 224px;
		right: 220px;
		left: auto;
		z-index: 3;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(4){
		width: 1005px;
		height: 590px;
		min-height: 590px;
		position: absolute;
		top: 402px;
		left: -300px;
		z-index: 2;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(1) .prlximg_target{
		top: -30px;
		height: 120%;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(4) .prlximg_target{
		top: -30px;
		height: 110%;
	}
	@media screen and (max-width: 1240px){
		.facility .cont01 .inner .prlximg_viewport:nth-of-type(1){
			width: 340px;
			height: 400px;
			min-height: 400px;
			position: absolute;
			top: -510px;
			right: 60px;
			left: auto;
			z-index: 2;
		}
		.facility .cont01 .inner .prlximg_viewport:nth-of-type(2){
			width: 240px;
			height: 240px;
			min-height: 240px;
			position: absolute;
			top: -205px;
			right: 10px;
			left: auto;
			z-index: 1;
		}
	}


	/* cont02 */
	.facility .cont02{
		background: url("img/bg_pattern.png");
	}
	.facility .cont02 .inner{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 140px 0 310px;
		position: relative;
	}
	.facility .cont02 .inner::before{
		position: absolute;
		top: -128px;
		right: -244px;
		content: "";
		background: url("img/facility_bg01.png")no-repeat;
		width: 560px;
		height: 504px;
	}
	.facility .cont02 .inner h2{
		padding-top: 28px;
		box-sizing: border-box;
		font-size: 36px;
		line-height: 1.72;
		letter-spacing: 2px;
		position: relative;
	}
	.facility .cont02 .inner h2 span{
		display: block;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0.8px;
		text-indent: -0.5em;
		margin-bottom: 36px;
	}
	.facility .cont02 .inner h2::before{
        position: absolute;
        top: 0;
        left: 0;
		content: "Origin of the name";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.facility .cont02 .inner .text01{
		font-size: 16px;
		line-height: 2.1875;
	}


	/* cont03 */
	.facility .cont03{
		background: url("img/facility_bg02.png");
		position: relative;
	}
	.facility .cont03::before{
		position: absolute;
		top: -168px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/facility_slide_bg01.png")center center repeat-x;
		width: 100%;
		height: 340px;
		animation: facilityslideMove 60s linear infinite;
		z-index: 12;
	}
	.facility .cont03::after{
		position: absolute;
		bottom: -168px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/facility_slide_bg02.png")center center repeat-x;
		width: 100%;
		height: 340px;
		animation: facilityRslideMove 60s linear infinite;
		z-index: 12;
	}
	@keyframes facilityslideMove{
		0% {background-position: 2220px 0;}
		50% {background-position: 1110px 0;}
		100% {background-position: 0 0;}
	}
	@keyframes facilityRslideMove{
		0% {background-position: 0 0;}
		50% {background-position: 1110px 0;}
		100% {background-position: 2220px 0;}
	}
	.facility .cont03 .inner{
		padding: 350px 0 320px;
		color: #fff;
		position: relative;
	}
	.facility .cont03 .inner::before{
		position: absolute;
		top: -137px;
		left: -471px;
		content: "";
		background: url("img/facility_bg03.png")no-repeat;
		width: 1430px;
		height: 1407px;
		z-index: -1;
	}
	.facility .cont03 .inner::after{
		position: absolute;
		top: 1166px;
		left: 440px;
		content: "";
		background: url("img/facility_bg04.png")no-repeat;
		width: 1162px;
		height: 1296px;
		z-index: -1;
	}
	.facility .cont03 .inner h2{
		padding-top: 33px;
		font-size: 40px;
		line-height: 1;
		letter-spacing: 1px;
		text-align: center;
		position: relative;
	}
	.facility .cont03 .inner h2::before{
        position: absolute;
        top: 0;
        left: 50%;
		transform: translateX(-50%);
		content: "Floor Guide";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.facility .cont03 .inner .text01{
		font-size: 24px;
		line-height: 1;
		text-align: center;
		margin-top: 58px;
	}
	.facility .cont03 .inner .text02{
		text-align: center;
		margin-top: 50px;
	}
	.facility .cont03 .inner .guide_box{
		display: flex;
		align-items: center;
		min-height: 360px;
		padding: 0 0 0 600px;
		box-sizing: border-box;
		margin-top: 70px;
		position: relative;
	}

	/* パララックス */
	.facility .cont03 .inner .guide_box .prlximg_viewport{
		width: 690px;
		height: 360px;
		min-height: 360px;
		position: absolute;
		top: 0;
		left: -150px;
		z-index: 2;
	}
	.facility .cont03 .inner .guide_box .prlximg_viewport .prlximg_target{
		top: -20px;
		height: 110%;
	}

	.facility .cont03 .inner .map_box{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 120px;
	}
	.facility .cont03 .inner .map_box ul{
		display: flex;
		flex-flow: column wrap;
		gap: 0 65px;
		width: 933px;
		height: 144px;
		margin-top: 70px;
	}
	.facility .cont03 .inner .map_box ul li{
		font-size: 16px;
		line-height: 2.25;
	}
	.facility .cont03 .inner .map_box ul li span{
		color: #b5934d;
	}
	.facility .cont03 .inner .map_box ul li span::before{
		content: "・";
	}
	.facility .cont03 .inner .map_box ul li span::after{
		content: "｜";
		padding: 0 20px;
		color: #fff;
	}


	/* cont04 */
	.facility .cont04{
		background: url("img/bg_pattern.png");
		position: relative;
	}
	.facility .cont04 .inner{
		padding: 320px 0 150px;
		position: relative;
	}
	.facility .cont04 .inner::before{
        position: absolute;
        top: 135px;
        left: -291px;
        content: "";
        background: url("img/facility_bg01.svg") no-repeat;
        transform: scale(-1, -1);
        width: 747px;
        height: 546px;
        z-index: -1;
	}
	.facility .cont04 .inner::after{
        position: absolute;
        bottom: 0;
        right: -300px;
        content: "";
        background: url("img/facility_bg02.svg") no-repeat;
        width: 989px;
        height: 620px;
        z-index: -1;
	}
	.facility .cont04 .inner h2{
		padding-top: 33px;
		font-size: 40px;
		line-height: 1;
		letter-spacing: 1px;
		text-align: center;
		position: relative;
	}
	.facility .cont04 .inner h2::before{
        position: absolute;
        top: 0;
        left: 50%;
		transform: translateX(-50%);
		content: "About visiting";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.facility .cont04 .inner .text01{
		text-align: center;
		margin-top: 50px;
	}
	.facility .cont04 .inner table{
		margin-top: 60px;
	}
	.facility .cont04 .inner table tr th{
		width: 370px;
		height: 125px;
		border-top: 1px solid #b5934d;
		font-size: 24px;
		text-align: left;
		vertical-align: middle;
	}
	.facility .cont04 .inner table tr td{
		width: 830px;
		min-height: 125px;
		border-top: 1px solid #b5934d;
		padding: 33px 0;
		font-size: 16px;
		line-height: 1.875;
		vertical-align: middle;
	}
	.facility .cont04 .inner table tr th:last-of-type,
	.facility .cont04 .inner table tr td:last-of-type{
		border-bottom: 1px solid #b5934d;
	}



/* shop
------------------------------------------------------------------------*/

	/* cont01 */
	.shop .cont01{
		background: url("img/bg_pattern.png");
	}
	.shop .cont01 .inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		padding: 150px 0 190px;
		z-index: 11;
		position: relative;
	}
	.shop .cont01 .inner h2{
		padding-right: 56px;
		box-sizing: border-box;
		font-size: 36px;
		line-height: 1.67;
		letter-spacing: 3.2px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.shop .cont01 .inner h2::before{
        position: absolute;
        top: 2px;
        right: 0;
		content: "Tsuruga−FUKUI";
        color: #b5934d;
        font-size: 16px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.shop .cont01 .inner h2::after{
		position: absolute;
		top: calc(4em + 18px);
		left: calc(0.5em + 12px);
		content: "";
		background: #333;
		width: 1px;
		height: 100px;
	}
	.shop .cont01 .inner h2 span{
		position: relative;
	}
	.shop .cont01 .inner .text01{
		font-size: 18px;
		line-height: 2.33;
		writing-mode: vertical-rl;
		margin-right: 66px;
	}

	/* パララックス */
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(1){
		width: 520px;
		height: 290px;
		min-height: 290px;
		position: absolute;
		top: 290px;
		left: -300px;
		z-index: 2;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(2){
		width: 160px;
		height: 220px;
		min-height: 220px;
		position: absolute;
		top: 660px;
		left: 220px;
		z-index: 1;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(3){
		width: 355px;
		height: 210px;
		min-height: 210px;
		position: absolute;
		top: 90px;
		right: -300px;
		z-index: 2;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(4){
		width: 290px;
		height: 320px;
		min-height: 320px;
		position: absolute;
		top: 350px;
		left: auto;
		right: -112px;
		z-index: 2;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
		top: -50px;
		height: 120%;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(3) .prlximg_target{
		top: -30px;
		height: 130%;
	}
	@media screen and (max-width: 1240px){
		.shop .cont01 .inner .prlximg_viewport:nth-of-type(1){
			width: 520px;
			height: 290px;
			min-height: 290px;
			position: absolute;
			top: 290px;
			left: -250px;
			z-index: 2;
		}
		.shop .cont01 .inner .prlximg_viewport:nth-of-type(2){
			width: 160px;
			height: 220px;
			min-height: 220px;
			position: absolute;
			top: 660px;
			left: 220px;
			z-index: 1;
		}
		.shop .cont01 .inner .prlximg_viewport:nth-of-type(3){
			width: 355px;
			height: 210px;
			min-height: 210px;
			position: absolute;
			top: 90px;
			right: -100px;
			z-index: 2;
		}
		.shop .cont01 .inner .prlximg_viewport:nth-of-type(4){
			width: 290px;
			height: 320px;
			min-height: 320px;
			position: absolute;
			top: 450px;
			left: auto;
			right: 0;
			z-index: 2;
		}
	}


	/* cont02 */
	.shop .cont02{
		background: url("img/bg_pattern.png");
	}
	.shop .cont02 .inner{
		display: flex;
		justify-content: space-between;
		background: #fff;
		padding: 150px;
		box-sizing: border-box;
		overflow: hidden;
		position: relative;
	}
	.shop .cont02 .inner::before{
		position: absolute;
		bottom: 0;
		left: -319px;
		content: "";
		background: url("img/shop_bg01.svg")center top no-repeat;
		background-size: 985px;
		width: 985px;
		height: 600px;
	}
	.shop .cont02 .inner h2{
		padding-right: 35px;
		box-sizing: border-box;
		font-size: 40px;
		line-height: 1;
		letter-spacing: 1px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.shop .cont02 .inner h2::before{
        position: absolute;
        top: 2px;
        right: 0;
		content: "Shop Information";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.shop .cont02 .inner table{
		width: 650px;
	}
	.shop .cont02 .inner table th{
		width: 160px;
		height: 64px;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0 30px;
		box-sizing: border-box;
		font-size: 16px;
		text-align: left;
		vertical-align: middle;
	}
	.shop .cont02 .inner table td{
		width: 490px;
		border-bottom: 1px solid #ddd;
		box-sizing: border-box;
		font-size: 16px;
		vertical-align: middle;
	}
	.shop .cont02 .inner table tr:first-of-type th,
	.shop .cont02 .inner table tr:first-of-type td{
		border-top: 1px solid #ddd;
	}
	.shop .cont02 .inner table td a{
		display: inline-block;
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		text-decoration: underline;
		margin-left: 30px;
		position: relative;
	}
	.shop .cont02 .inner table td a::before{
		position: absolute;
		top: 8px;
		left: -15px;
		content: "";
		background: url("img/map_icon02.svg")no-repeat;
		width: 11px;
		height: 15px;
	}


	/* cont03 */
	.shop .cont03{
		background: url("img/bg_pattern.png");
	}
	.shop .cont03 .inner{
		display: flex;
		justify-content: flex-end;
		flex-wrap: wrap;
		padding: 150px 150px 100px;
		box-sizing: border-box;
		position: relative;
	}
	.shop .cont03 .inner::before{
		position: absolute;
		top: 227px;
		right: -200px;
		content: "";
		background: url("img/shop_bg02.svg")no-repeat;
		width: 747px;
		height: 546px;
	}
	.shop .cont03 .inner h2{
		padding-right: 26px;
		box-sizing: border-box;
		font-size: 52px;
		line-height: 1;
		letter-spacing: 2px;
		writing-mode: vertical-rl;
		margin-bottom: 330px;
		position: relative;
	}
	.shop .cont03 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Access";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}

	/* パララックス */
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(1){
		width: 250px;
		height: 470px;
		min-height: 470px;
		position: absolute;
		top: 150px;
		left: -100px;
		z-index: 2;
	}
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(2){
		width: 250px;
		height: 470px;
		min-height: 470px;
		position: absolute;
		top: 210px;
		left: 170px;
		z-index: 2;
	}
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(3){
		width: 250px;
		height: 470px;
		min-height: 470px;
		position: absolute;
		top: 150px;
		left: 440px;
		z-index: 2;
	}
	.shop .cont03 .inner .prlximg_viewport .prlximg_target{
		top: -20px;
		height: 114%;
	}
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
		width: 285px;
		max-width: 285px;
		left: -35px;
	}
	@media screen and (max-width: 1240px){
		.shop .cont03 .inner .prlximg_viewport:nth-of-type(1){
			width: 250px;
			height: 470px;
			min-height: 470px;
			position: absolute;
			top: 150px;
			left: 0;
			z-index: 2;
		}
		.shop .cont03 .inner .prlximg_viewport:nth-of-type(2){
			width: 250px;
			height: 470px;
			min-height: 470px;
			position: absolute;
			top: 210px;
			left: 270px;
			z-index: 2;
		}
		.shop .cont03 .inner .prlximg_viewport:nth-of-type(3){
			width: 250px;
			height: 470px;
			min-height: 470px;
			position: absolute;
			top: 150px;
			left: 540px;
			z-index: 2;
		}
	}

	.shop .cont03 .inner .cont{
		width: 100%;
		margin-top: 60px;
	}
	.shop .cont03 .inner .cont h3{
		font-size: 20px;
		line-height: 1;
		margin-bottom: 30px;
		overflow: hidden;
	}
	.shop .cont03 .inner .cont h3 span{
		display: inline-block;
		position: relative;
	}
	.shop .cont03 .inner .cont h3 span::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 28px);
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 900px;
		height: 1px;
	}
	.shop .cont03 .inner .cont .access_box{
		display: flex;
		flex-direction: column;
		gap: 14px 0;
		background: #fff;
		padding: 22px 0 22px 30px;
		box-sizing: border-box;
	}
	.shop .cont03 .inner .cont .access_box .in_box h4{
		font-size: 16px;
		line-height: 2;
	}
	.shop .cont03 .inner .cont .access_box .in_box h4::before{
		content: "・";
	}
	.shop .cont03 .inner .cont .access_box .in_box .text01{
		text-indent: 1em;
	}
	.shop .cont03 .g_map iframe{
		display: block;
		width: 100%;
		height: 480px;
		vertical-align: bottom;
	}



/* works_archive
------------------------------------------------------------------------*/
/* cont01 */
.works_archive .cont01 {
	margin: 120px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
}
.works_archive .cont01:after{
	content:"";
	display: block;
	width: 380px;
}
.works_archive .cont01 .cont {
	width: 380px;
	background: var(--main-light-color);
}
.works_archive .cont01 .cont a{
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	padding: 25px;
	background: var(--main-light-color);
	position: relative;
}
.works_archive .cont01 .cont .text-box {
	position: relative;
}
.works_archive .cont01 .cont h2 {
	font-size: 18px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #999999;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.works_archive .cont01 .cont .info {
	font-size: 14px;
	color: #999999;
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-bottom: 10px;
}
.works_archive .cont01 .cont .text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.works_archive .cont01 .cont .cate_box{
	line-height: 1;
	margin-bottom: 12px;
}
.works_archive .cont01 .cont .cate_box p{
	display: inline-block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
	max-width: 142px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.works_archive .cont01 .cont .cate_box p:nth-of-type(2){
	background: var(--main-color);;
}
.works_archive .cont01 .cont .img{
	margin-bottom: 20px;
}


/* works-single
------------------------------------------------------------------------*/
/* cont01 */
.works_single .cont01 {
	margin: 120px auto 0;
}
.works_single .cont01 .title{
	border-bottom: 1px solid var(--main-color);
	padding-bottom: 25px;
	margin-bottom: 25px;
	line-height: 1;
	font-size: 24px;
	font-weight: bold;
}
.works_single .cont01 .cate_box{
	line-height: 1;
	margin-bottom: 20px;
}
/*
.works_single .cont01 .cate_box p{
	display: inline-block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
}
.works_single .cont01 .cate_box p:nth-of-type(2){
	background: var(--main-color);;
}
*/
.works_single .cont01 .cate_box p{
	display: inline-block;
}
.works_single .cont01 .cate_box p a{
	display: block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
}
.works_single .cont01 .cate_box p:nth-of-type(2) a{
	background: var(--main-color);;
}



.works_single .cont01 .info{
	margin-bottom: 30px;
}
.works_single .cont01 .info span{
	display: inline-block;
	padding-right: 20px;
}



.works_single .cont03 {
	margin: 120px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
}
.works_single .cont03:after{
	content:"";
	display: block;
	width: 380px;
}
.works_single .cont03 .cont {
	width: 380px;
	background: var(--main-light-color);
}
.works_single .cont03 .cont a{
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	padding: 25px;
	background: var(--main-light-color);
	position: relative;
}
.works_single .cont03 .cont .text-box {
	position: relative;
}
.works_single .cont03 .cont h2 {
	font-size: 18px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #999999;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.works_single .cont03 .cont .info {
	font-size: 14px;
	color: #999999;
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-bottom: 10px;
}
.works_single .cont03 .cont .text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.works_single .cont03 .cont .cate_box{
	line-height: 1;
	margin-bottom: 12px;
}
.works_single .cont03 .cont .cate_box p{
	display: inline-block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
	max-width: 142px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.works_single .cont03 .cont .cate_box p:nth-of-type(2){
	background: var(--main-color);;
}
.works_single .cont03 .cont .img{
	margin-bottom: 20px;
}

/* price
------------------------------------------------------------------------*/
/* cont01 */
.price .cont01{
	margin: 120px 0;
}
.price .cont01 .inner .ttl{
	font-size: 22px;
	line-height: 1;
	color: var(--main-color);
	font-weight: bold;
	margin-bottom: 25px;
	text-align: center;
}
.price .cont01 .inner h2 {
	font-size: 28px;
	line-height: 1;
	display: flex;
	flex-direction: column;
	gap: 15px 0;
	text-align: center;
}
.price .cont01 .inner h2 span{
	color: #777;
	font-size: 16px;
	font-weight: bold;
}
.price .cont01 .inner .text01{
	margin-top: 50px;
	text-align: center;
}
.price .cont01 .inner .table_set{
	width: 1000px;
	margin: 50px auto 0;
}
.price .cont01 .inner table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 5px;
}
.price .cont01 .inner table th,
.price .cont01 .inner table td{
	line-height: 1.2;
	padding: 15px 25px;
	box-sizing: border-box;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.05);
}
.price .cont01 .inner table th{
	color: #fff;
	background: var(--main-color);
	font-weight: bold;
	text-align: left;
}
.price .cont01 .inner table thead th{
	background: var(--main-dark-color);
}
.price .cont01 .inner table td{
	background: #fff;
}
.price .cont01 .inner .table_set .text02{
	font-size: 14px;
	margin-top: 15px;
}



/* faq
------------------------------------------------------------------------*/
.faq .cont01 {
	box-sizing: border-box;
	/* margin: 120px auto; */
	margin: 120px auto 0;
	width: 1000px;
}
.faq .cont01 .box {
	padding: 30px 40px;
	border-top: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.faq .cont01 .box span {
	position: absolute;
	top: 38px;
	right: 40px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p {
	padding-left: 40px;
	position: relative;
	font-weight: bold;
}
.faq .cont01 .box .qus::before {
	content: 'Q';
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	position: absolute;
	top: 0;
	left: 0;
}
.faq .cont01 .box .qus {
	font-size: 18px;
	transition: all .3s;
}
.faq .cont01 .box.active .qus {
	color: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box .ans {
	padding-top: 15px;
	display: none;
}


/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 28px;
	text-align: center;
	padding-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 16px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "OUTLINE";
}
.company .cont03 h2::before {
	content: "Specified Commercial Transaction Law";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
}
.company table tr {
	border-top: 1px solid #fff;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	width: 250px;
	padding: 23px 0 20px 50px;
	font-weight: bold;
	vertical-align: middle;
}
.company table td {
	padding: 23px 0 20px;
	vertical-align: middle;
}

/* cont01 */
.company .cont01 {
	margin: 120px auto;
}
.company .cont01 .flex {
	display: flex;
	align-items: center;
	padding-top: 50px;
}
.company .cont01 .flex .text_box {
	padding-left: 50px;
	width: 550px;
}
.company .cont01 .flex .text_box h3 {
	font-size: 22px;
	padding-bottom: 25px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 24px;
	margin-top: 40px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 16px;
	font-weight: bold;
}
.company .cont01 .img {
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
}


/* cont02 */
.company .cont02 {
	margin: 120px auto;
	padding: 120px 0;
	background: var(--main-light-color);
}
.company .cont02 .inner {
	width: 1000px;
}


/* cont02 */
.company .cont03 {
	width: 1000px;
	/* margin: 100px auto; */
	margin: 120px auto 0;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}


/* recruit
------------------------------------------------------------------------*/
.recruit .cont01{
	display: flex;
	flex-direction: column;
	gap: 80px 0;
	margin: 120px auto;
}
.recruit .cont01 .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.recruit .cont01 .inner .img{
	flex-shrink: 0;
	width: 900px;
	margin-left: -300px;
}
.recruit .cont01 .inner:nth-of-type(2n){
	flex-direction: row;
}
.recruit .cont01 .inner:nth-of-type(2n) .img{
	margin-left: 0;
	margin-right: -300px;
}
.recruit .cont01 .inner .text_box{
	width: 540px;
}
.recruit .cont01 .inner .text_box .ttl{
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 35px;
}
.recruit .cont01 .inner .text_box .catch{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	padding: 30px 0;
	margin-bottom: 30px;
}
.recruit .cont01 .inner .text_box .btn{
	margin-top: 35px;
}
.recruit .cont01 .inner .img{
	width: 900px;
	height: 600px;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
}
.recruit .cont01 .inner .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.recruit .cont02{
	background: var(--main-light-color);
	padding: 120px 0;
}
.recruit .cont02 h2{
	font-size: 28px;
	text-align: center;
	padding-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height:1;
}
.recruit .cont02 h2::before {
	content: '';
	font-size: 16px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "REQUIREMENTS";
}
.recruit .cont02 .link{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 40px auto 50px;
}
.recruit .cont02 .link li{
	text-align: center;
}
.recruit .cont02 .link li a{
	display: block;
	min-width: 200px;
	border: 1px solid var(--main-color);
	background: var(--main-color);
	color:#fff;
	padding-top: 15px;
	height: 31px;
	line-height: 1;
	border-radius: 30px;
	font-weight: bold;
}
.recruit .cont02 .link li a:hover{
	background: #fff;
	color:var(--main-color);
}

.recruit .cont02 .job_box{
	background: #fff;
	padding: 50px;
	box-sizing: border-box;
	margin-bottom: 50px;
}
.recruit .cont02 .job_box:last-of-type{
	margin-bottom: 0;
}

.recruit .cont02 .job_box h3{
	font-size: 24px;
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 40px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
.recruit .cont02 .job_box h3::after{
	content: "";
	display: block;
	width:20px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
.recruit .cont02 .job_box table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
}
.recruit .cont02 .job_box table tr {
	border-top: 1px solid var(--main-color);
}
.recruit .cont02 .job_box table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.recruit .cont02 .job_box table th {
	width: 250px;
	padding: 23px 0 20px 50px;
	font-weight: bold;
	vertical-align: middle;
}
.recruit .cont02 .job_box table td {
	padding: 23px 0 20px;
	vertical-align: middle;
}






/*blog共通項目
--------------------------------------------------------------------------*/
.blog .flex {
	display: flex;
	justify-content: flex-start;
	margin: 120px auto;
}
.blog .flex .left_box{
	flex-shrink: 1;
	width: 800px;
	margin-right: 30px;
}
.blog .flex .side {
	width: 370px;
	flex-shrink: 0;
	margin-top: -5px;
}
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 60px 0;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side h2 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.blog .flex .side h2::before {
	content: "";
	color: var(--main-color);
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 h2::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 h2::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 h2::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	margin-left: 15px;
	font-size: 14px;
	width: 205px;
}
.blog .flex .side .cont .text_box h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	position: relative;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog .flex .side .cont .img img {
	border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: var(--main-color);
	line-height: 1;
	box-sizing: border-box;
	padding-top: 6px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
	background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
	background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
	background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "new";
	width: 50px;
	height: 25px;
	line-height: 1;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: var(--main-color);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


/*blog_archive
------------------------------------------------------------------------*/
.blog_archive .cont01 .cont:nth-of-type(1) {
	margin-top: 0;
}
.blog_archive .cont01 .cont {
	border-bottom: 1px solid var(--main-color);
	margin-top: 30px;
}
.blog_archive .cont01 .cont a{
	display: block;
	box-sizing: border-box;
	padding: 0 0 30px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.blog_archive .cont01 .cont .img {
	flex-shrink: 0;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
	border-radius: 10px;
}
.blog_archive .cont01 .cont .img img {
	border-radius: 10px;
}
.blog_archive .cont01 .cont .text_box {
	width: 440px;
	padding-left: 30px;
}
.blog_archive .cont01 .cont h2 {
	font-size: 18px;
}
.blog_archive .cont01 .cont .text_box .cate_box {
	margin: 15px 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.blog_archive .cont01 .cont .text_box .cate_box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	min-width: 100px;
	padding: 7px 15px;
	text-align: center;
}
.blog_archive .cont01 .cont .text_box .cate_box .date {
	font-size: 14px;
	line-height: 1;
}
.blog_archive .cont01 .cont .text_box .text {
	line-height: 1.8;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 20px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
/*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}*/
.blog_single .cont01 .cate_box .cate {
	text-align: center;
}
.blog_single .cont01 .cate_box .cate a{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}



.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}





/* contact
------------------------------------------------------------------------*/
.contact .cont01,
.contact .cont02 {
	position: relative;
}
.contact .cont01::before,
.contact .cont02::before {
	content: "";
	background: url("img/bg_pattern.png");
	width: 1240px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
@media (min-width: 1240px) {
	.contact .cont01::before,
	.contact .cont02::before {
		width: 100vw;
	}
}


/* cont01 */
.contact .cont01 {
	width: 1000px;
	margin: 0 auto;
	padding-top: 120px;
}
.contact .cont01 .tel-box {
	padding: 40px 0 35px;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 .line-box {
	padding: 40px 0 45px;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 h2{
	font-size: 18px;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	display: flex;
	align-items: center;
	margin-top: 10px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
	padding-right: 20px;
	pointer-events: none;
}
.contact .cont01 .lead {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	font-size: 18px;
	line-height: 1;
	padding: 20px 75px 20px 55px;
	background: url(img/contact-line.png) no-repeat center left, url(img/contact-qr.png) no-repeat center right;
}


/* cont02 */
.contact .cont02 {
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 120px;
	box-sizing: border-box;
}
.contact .cont02 h2{
	font-size: 18px;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.contact .cont02 table{
	width:1000px;
	margin: 40px auto 0;
}
.contact .cont02 table tr {
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table th{
	width: 265px;
	text-align: left;
	vertical-align: middle;
	position: relative;
	box-sizing: border-box;
	font-weight: bold;
	padding: 30px 0;
	position: relative;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	float: right;
	padding: 7px 15px;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.contact .cont02 tr.address-contact th {
	vertical-align: top;
	padding-top: 48px;
}
.contact .cont02 tr.address-contact th span {
	top: 45px;
	transform: none;
}
.contact .cont02 table td{
	vertical-align: middle;
	padding: 30px 0 30px 25px;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 60px;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td input[type="date"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size:16px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px 30px;
	border: none !important;
	background: var(--main-light-color);
	border-radius: 3px !important;
}
.contact .cont02 tr.address-contact input {
	margin-bottom: 10px !important;
}
.contact .cont02 tr.address-contact input:first-of-type {
	margin-right: 20px;
}
.contact .cont02 tr.address-contact input:first-of-type,
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 210px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-bottom: 0 !important;
}
.contact .cont02 tr td.reserve-datetime{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.contact .cont02 table td input[type="date"]{
	width: 586px !important;
}
.contact .cont02 tr td.reserve-datetime select{
	width: 270px !important;
}
.contact .cont02 tr td.reserve-datetime .label01{
	font-weight: bold;
	margin-right: 50px;
}
.contact .cont02 tr td.reserve-datetime .label02{
	font-weight: bold;
	margin-right: 82px;
}
.contact .cont02 tr td.reserve-datetime .tilde{
	margin: 0 5px;
	font-weight: bold;
}
.contact .cont02 table td select{
	cursor: pointer;
}
.contact .cont02 table td textarea{
	height: 250px !important;
	vertical-align: middle;
	resize:none
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
	background: url(img/mfp_error.gif) no-repeat top 12px left 320px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	margin: 0 5px;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px!important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input{
	font-family: var(--main-font) !important;
	width: 380px;
	border-radius: 3px;
	line-height: 1;
	padding: 18px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: #333;
	border: 1px solid #333;
	transition: all .5s;
}
.contact .cont02 .button input:hover{
	background: #fff;
	color: #333;
	transition: all .5s;
}


/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
	padding: 70px 0 100px;
	background: url("img/bg_pattern.png");
	text-align: center;
}
.thanks .cont01 h2{
	text-align: center;
	font-size: 24px;
}
.thanks .cont01 .text{
	margin: 40px 0 0;
	font-weight: bold;
}
.thanks .cont01 .button {
	margin-top: 50px;
}
.thanks .cont01 .button a{
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.thanks .cont01 .button a:hover {
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
	position: relative;
}
.privacy .cont01::before {
	content: "";
	background: url("img/bg_pattern.png");
	width: 1240px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
@media (min-width: 1240px) {
	.privacy .cont01::before {
		width: 100vw;
	}
}
.privacy .cont01_2 {
	padding: 100px 0;
}
.privacy .cont01 h2 {
	font-size: 28px;
	text-align: center;
}
.privacy .cont01 .text01 {
	margin-top: 35px;
	line-height: 2;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed var(--main-color);
}
.privacy .cont01 .box:first-of-type {
	margin-top: 45px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
}
.privacy .cont01 .box h3 {
	font-size: 20px;
}
.privacy .cont01 .img {
	position: absolute;
	top: 0;
	right: 0;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	margin-top: 10px;
}
.privacy .cont01 .box .text02 span {
	font-weight: bold;
}
.privacy .cont01 .box .text02 a {
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 8px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	display: inline-block;
	padding: 25px 30px;
	background: var(--main-light-color);
	margin-top: 20px;
}
.privacy .cont01 .text04 {
	margin-top: 10px;
	text-align: right;
}


/* yonmaruyon yonichimaru
------------------------------------------------------------------------*/
.yonmaruyon .cont01,
.yonichimaru .cont01 {
	padding: 70px 0 100px;
	background: url("img/bg_pattern.png");
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2 {
	text-align: center;
	font-size: 24px;
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text {
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a {
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.yonmaruyon .cont01 .button a:hover,
.yonichimaru .cont01 .button a:hover {
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}


/* contact_box
------------------------------------------------------------------------*/
.contact_box{
	color: #fff;
	padding: 100px 0;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
/* パララックス */
.contact_box .prlximg_viewport{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.contact_box .prlximg_target{
	top: -100px;
}
.contact_box .inner{
	text-align: center;
    position: relative;
    z-index: 2;
}
.contact_box .inner h2{
	font-size: 26px;
	line-height: 1;
	padding-top: 44px;
	box-sizing: border-box;
}
.contact_box .inner h2::before{
	content: "Reservation/Contact";
	font-size: 14px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.contact_box .inner .text01{
	margin: 48px 0 40px;
}
.contact_box .inner .btn_box{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.contact_box .inner .btn_box .tel{
	display: flex;
	align-items: center;
	gap: 4px;
}
.contact_box .inner .btn_box .tel::before{
	content: "";
	background: url("img/tel_icon01.svg")no-repeat;
	width: 26px;
	height: 26px;
}
.contact_box .inner .btn_box .tel a{
	display: block;
	width: 214px;
	height: 26px;
	background: url("img/tel_text01.svg")no-repeat;
	background-size: 100%;
	margin-right: 10px;
	padding: 26px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
.contact_box .inner .btn_box .button a{
	display: block;
	width: 310px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2) url("img/mail_icon01.svg")left 100px center no-repeat;
	background-size: 16px;
	border-radius: 3px;
	padding-left: 10px;
	border: 1px solid transparent;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
}
.contact_box .inner .btn_box .button a:hover{
	border: 1px solid #fff;
	opacity: 1;
}



/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 40px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: var(--main-light-color);
	border-radius: 10px;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 25px;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 15px;
}
.post_cont .index_nav ul li a {
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 16px;
}
.post_cont .index_nav ul li a:hover {
	text-decoration: none;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 24px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:20px;
	height: 20px;
	background: var(--main-color);
	position: absolute;
	top:2px;
	left:0;
}

.post_cont h4{
	font-size:20px;
	border-left:5px solid var(--main-color);
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:18px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: var(--main-color);
}
.post_cont a{
	text-decoration: underline;
	color:var(--main-color);
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
}
.post_cont table th{
	background: var(--main-color);
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: var(--main-dark-color);
}
.post_cont table td{
	background: var(--main-light-color);
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: var(--main-light-color);
	padding: 50px;
	border-left: 3px solid var(--main-color);
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 100px;
	color:var(--main-color);
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 10px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 10px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	line-height: 48px;
	min-width: 350px;
	height: 50px;
	border-radius: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-buttons a:hover {
	color: var(--main-color);
	background: #fff;
	opacity: 1;
}
.post_cont .wp-block-buttons a:hover::after {
	filter: brightness(0) saturate(100%) invert(15%) sepia(53%) saturate(5355%) hue-rotate(201deg) brightness(95%) contrast(101%);
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
	border-radius: 10px;
}



/* footer
------------------------------------------------------------------------*/
footer{
	color: #fff;
	background: #1e1e1e;
	position: relative;
	z-index: 2;
}
footer .inner{
	display: flex;
	justify-content: space-between;

	padding: 150px 0;
	position: relative;
}
footer .inner .logo a{
	display: block;
	width: 190px;
	height: 58px;
	background: url("img/footer_logo.svg")no-repeat;
	background-size: 100%;
	padding: 58px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
footer .inner .info_box address .place{
	margin-top: 35px;
}
footer .inner .info_box address .tel::before{
	content: "Tel：";
}
footer .inner .info_box address .opentime::before{
	content: "営業時間：";
}
footer .inner .info_box .sns a{
	display: block;
	width: 15px;
	height: 15px;
	background: url("img/sns_icon01.svg")no-repeat;
	background-size: 100%;
	margin-top: 25px;
	padding: 15px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
footer .inner .info_box .copy{
	margin-top: 35px;
	color: #777;
	font-size: 12px;
	line-height: 1;
}
footer .inner .sitemap_box{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 120px;
	margin-top: 20px;
}
footer .inner .sitemap_box li a{
	font-size: 16px;
	line-height: 3.75;
	color: #fff;
}
footer .inner .sitemap_box li a:hover{
	text-decoration: underline;
}



}/*PCの記述ここまで*/





/*===============================================
横幅441px以下 sp
===============================================*/

@media screen and (max-width: 441px) {
html,
body,
.wrap {
	width: 440px;
	position: relative;
}
.inner {
	box-sizing: border-box;
	padding: 0 30px;
	width: auto;
}
.pc {
	display: none;
}
.sp {
	display: inline;
}
p {
	font-size: 14px;
}


/* header
------------------------------------------------------------------------*/
header {
  	position: fixed;
  	top: 0;
	left: 0;
  	width: 100%;
  	z-index: 10000;
}
header h1{
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.home header h1{
	display: none;
}
header .logo{
	visibility: hidden;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s ease, transform 0.6s ease;
	position: absolute;
	top: 15px;
	left: 20px;
}
header.fixed .logo{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
	position: fixed;
}
header .logo img {
    content: url("img/header_logo.svg");
	width: 90px;
}
header.is-light .logo img {
    content: url("img/header_logo_ho.svg");
	width: 90px;
}
header .button{
	display: none;
}
header .contact_button{
	visibility: hidden;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
header.fixed .contact_button{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
	position: fixed;
	bottom: 0;
	left: 0;

	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 440px;
	height: 50px;
	background: #1e1e1e;
}
header .contact_button .text01{
	width: 160px;
	font-size: 14px;
	color: #b5934d;
	text-align: center;
}
header .contact_button .tel{
	position: relative;
}
header .contact_button .tel::before,
header .contact_button .tel::after{
	content: "";
	background: #fff;
	width: 1px;
	height: 28px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
header .contact_button .tel::before{
	left: 0;
}
header .contact_button .tel::after{
	right: 0;
}
header .contact_button .tel a{
	display: block;
	width: 200px;
	color: #fff;
	background: url("img/tel_icon01.svg")center left 25px no-repeat;
	background-size: 17px;
	font-size: 13px;
	line-height: 1.308;
	padding-left: 50px;
	box-sizing: border-box;
}
header .contact_button .mail a{
	display: block;
	width: 80px;
	text-align: center;
}



/* nav
------------------------------------------------------------------------*/

#nav {
	display: none;
	width: 100%;
	position: fixed;
	z-index: 100;
}
#nav-btn.active + #nav{
	display: block;
	background: #fff url("img/bg_pattern.png") repeat;
	width: 440px;
	height: 100vh;
	height: 100dvh;
	padding: 60px 40px 100px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
	overflow-y: scroll;
	z-index: 10000;
	position: fixed;
}
#nav-btn{
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	position: fixed;
	top: 9.5px;
	right: 30px;
	z-index: 10010;
	cursor: pointer;
	transition: all .5s;
}
.menu-btn{
	position: absolute;
	width: 100%;
	height: 9px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}
.menu-btn,
header .menu-btn span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-btn span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
header.is-light .menu-btn span{
    background: #333;
}
.menu-btn span:nth-of-type(1){
	top: 0;
	transition: all 0.5s;
}
.menu-btn span:nth-of-type(2){
	bottom: 0;
	transition: all 0.5s;
}
#nav-btn.active span:nth-of-type(1){
	transform: translateY(4px) rotate(15deg);
	transition: all 0.5s;
	background: #333;
}
#nav-btn.active span:nth-of-type(2){
	transform: translateY(-4px) rotate(-15deg);
	transition: all 0.5s;
	background: #333;
}
header #nav-btn.active + #nav .inner{
	padding: 0;
}
header #nav-btn.active + #nav .inner .nav_box{
	font-size: 16px;
	line-height: 3.75;
}
header #nav-btn.active + #nav .inner .nav_box .sns a{
	display: block;
	width: 15px;
	height: 15px;
	background: url("img/sns_icon02.svg")no-repeat;
	background-size: 100%;
	margin-top: 25px;
	padding: 15px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
header #nav-btn.active + #nav .inner .info_wrap{
	display: flex;
	flex-direction: column-reverse;
}
header #nav-btn.active + #nav .inner .info_box .info_logo,
header #nav-btn.active + #nav .inner .info_box .text02{
	display: none;
}
header #nav-btn.active + #nav .inner .info_box .map a{
	display: inline-block;
	margin-left: 18px;
	line-height: 1.4;
	border-bottom: 1px solid #333;
	position: relative;
}
header #nav-btn.active + #nav .inner .info_box .map a::before{
	content: "";
	background: url("img/map_icon01.svg")no-repeat;
	background-size: 11px;
	width: 11px;
	height: 20px;
	position: absolute;
	top: 5px;
	left: -16px;
}
header #nav-btn.active + #nav .inner .contact_set .text03{
	font-size: 16px;
	line-height: 1;
	padding-bottom: 8px;
	margin: 45px 0 30px;
	border-bottom: 1px solid #b5934d;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box{
	display: flex;
	gap: 20px 0;
	flex-direction: column;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .tel{
	display: flex;
	flex-direction: column;
	position: relative;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .tel::before{
	content: "";
	background: url("img/tel_icon02.svg")no-repeat;
	background-size: 100%;
	width: 16px;
	height: 21px;
	position: absolute;
	top: 0;
	left: 0;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .tel a{
	display: block;
	width: 200px;
	height: 26px;
	background: url("img/tel_text02.svg")no-repeat;
	background-size: 100%;
	margin-left: 25px;
	padding: 26px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
header #nav-btn.active + #nav .inner .contact_set .btn_box .mail a{
	display: block;
	width: 225px;
	height: 40px;
	background: #b5934d url("img/mail_icon01.svg")left 63px center no-repeat;
	background-size: 16px;
	border: 1px solid #b5934d;
	border-radius: 3px;
	margin-bottom: 25px;
	padding-left: 22px;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
}



/* home
------------------------------------------------------------------------*/

/* key */
.home .key{
	position: fixed;
	top: 0;
	width: 100%;
	min-height: 650px;
    height: 100vh;
    height: 100dvh;
	transform: translateY(0)!important;
	z-index: -1;
}
.home .key::before{
	content: "";
	background: url("img/home_bg01.svg")no-repeat;
	background-size: 647px;
	width: 647px;
	height: 405px;
	position: absolute;
	left: -10px;
	bottom: -15px;
	z-index: 2;
}
.home .key .swiper01,
.home .key .swiper01 .swiper-slide{
	width: 100%;
	height: 100%;
}
.home .key .swiper01 .swiper-slide{
	position: relative;
	overflow: hidden;
}
.home .key .swiper01 .swiper-slide-active picture,
.home .key .swiper01 .swiper-slide-duplicate-active picture,
.home .key .swiper01 .swiper-slide-prev picture{
	width: 100%;
	height: 100%;
	display: block;
	animation: zoomUp 6s linear 0s both;
}
.home .key .swiper01 .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}

.home .key .inner{
    display: flex;
    flex-direction: row-reverse;
	gap: 0 20px;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
	padding: 0;
    position: absolute;
    top: 0;
    left: 40px;
	z-index: 2;
}
.home .key .inner::before{
	content: "";
    width: 226px;
    height: 226px;
	border: 2px solid rgba(181,147,77,0.3);
	transform: rotate(45deg);
    position: absolute;
	top: 25px;
	left: -55px;
}
.home .key .inner::after{
	content: "";
	background: url("img/home_bg03.svg")no-repeat;
	background-size: 577px;
    width: 577px;
    height: 421px;
    position: absolute;
	top: -58px;
	right: -183px;
}
.home .key .inner .text01{
	background: url("img/home_key_text01.svg")no-repeat;
	background-size: 45px;
	width: 45px;
	height: 206px;
	padding: 206px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
.home .key .inner .text02{
	background: url("img/home_key_text02.svg")no-repeat;
	background-size: 60px;
	width: 60px;
	height: 206px;
	padding: 206px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
.home .key .text03{
	font-size: 10px;
	line-height: 1;
	color: #fff;
	position: absolute;
	right: 15px;
	bottom: 15px;
	z-index: 3;
}



/* cont01 */
.home .cont01{
	background: url("img/bg_pattern.png") repeat,#eeebe5;
	position: relative;
	z-index: 2;
}
.home .cont01::before{
	content: "";
	background: url("img/home_text01.png")no-repeat;
	background-size: 286px;
	mix-blend-mode: multiply;
	width: 286px;
	height: 257px;
	position: absolute;
	top: 154px;
	left: -60px;
}
.home .cont01 .inner{
	padding: 95px 40px 195px;
	box-sizing: border-box;
	position: relative;
}
.home .cont01 .inner h2{
	height: 240px;
	font-size: 28px;
	line-height: 1.714;
	letter-spacing: 2px;
	writing-mode: vertical-rl;
	margin-left: auto;
	padding-right: 32px;
	box-sizing: border-box;
	position: relative;
}
.home .cont01 .inner h2::before{
	content: "Concept";
	font-size: 14px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	right: 0;
}
.home .cont01 .inner .text01{
	font-size: 16px;
	line-height: 2.125;
}
.home .cont01 .inner .text01 span{
	position: relative;
}
.home .cont01 .inner .text01 span::before{
	content: "";
	width: 70px;
	height: 1px;
	background: #333;
	position: absolute;
	left: 10px;
	top: 10px;
}

/* パララックス */
.home .cont01 .inner .prlximg_viewport:nth-of-type(1){
	width: 100px;
	height: 145px;
	min-height: 145px;
	flex-shrink: 0;
	position: absolute;
	top: 890px;
	right: 0;
	left: auto;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(2){
	width: 310px;
	height: 170px;
	min-height: 170px;
	flex-shrink: 0;
	position: absolute;
	bottom: -33px;
	left: 0;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(3){
	width: 163px;
	height: 100px;
	min-height: 100px;
	flex-shrink: 0;
	position: absolute;
	bottom: -85px;
	right: 0;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(4){
	width: 124px;
	height: 124px;
	min-height: 124px;
	flex-shrink: 0;
	position: absolute;
	top: 1120px;
	left: 80px;
	z-index: 2;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
	top: -60px;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(3) .prlximg_target{
	top: -20px;
}
.home .cont01 .inner .prlximg_viewport:nth-of-type(4).prlximg_target img{
	margin-top: -24px;
}


/* cont02 */
.home .cont02{
	padding-top: 95px;
	background: #fff;
	position: relative;
	z-index: 1;
}
.home .cont02 .box{
	padding-top: 110px;
	background: #fff;
	position: relative;
	z-index: 2;
}
.home .cont02 .box .inner{
	padding: 0 40px;
	padding-bottom: 50px;
	position: relative;
}
.home .cont02 .box01 .inner::before{
	content: "";
	background: url("img/home_bg03_opa4.svg")no-repeat;
    width: 471px;
    height: 344px;
    position: absolute;
    top: -168px;
    left: 87px;
	z-index: 2;
}
.home .cont02 .box01 .inner::after{
	content: "";
	background: url("img/home_bg05.png")no-repeat;
	background-size: 514px;
	width: 514px;
	height: 506px;
	transform: scale(-1, -1);
	position: absolute;
	top: -136px;
	left: 32px;
	z-index: -1;
}
.home .cont02 .box02 .inner::before{
	content: "";
	background: url("img/home_bg03_opa4.svg")no-repeat;
    width: 471px;
    height: 344px;
    position: absolute;
    top: -168px;
    left: 87px;
}
.home .cont02 .box02 .inner::after{
	content: "";
	background: url("img/home_bg05.png")no-repeat;
	background-size: 514px;
	width: 514px;
	height: 506px;
	transform: scale(-1, -1);
	position: absolute;
	top: 69px;
	left: 32px;
	z-index: -1;
}
.home .cont02 .box .inner h2{
	height: 200px;
	font-size: 26px;
	line-height: 1;
	margin-right: auto;
	padding-right: 30px;
	box-sizing: border-box;
	letter-spacing: 2px;
	writing-mode: vertical-rl;
	position: relative;
}
.home .cont02 .box02 h2{
	height: 172px;
}
.home .cont02 .box .inner h2::before{
	content: "About Us";
	font-size: 12px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 3px;
	right: 0;
}
.home .cont02 .box02 .inner h2::before{
	content: "Cuisine";
}
.home .cont02 .box .inner .text01{
	font-size: 20px;
	line-height: 1.8;
}
.home .cont02 .box .inner .text02{
	margin-top: 30px;
	font-size: 16px;
	line-height: 2.125;
}
.home .cont02 .box .inner .text02 span{
	display: inline-block;
	width: 38px;
	height: 1px;
	background: #333;
	margin: 0 5px;
	position: relative;
	top: -5px;
}
.home .cont02 .box .inner .button{
	margin-top: 30px;
}
.home .cont02 .box .inner .button .mo_crop_text{
	padding-bottom: 5px;
}
.home .cont02 .box .inner .button .mo_crop_text::after{
	top: calc(100% - 5px);
}
.home .cont02 .fixed-bg{
	width: 440px;
    position: relative;
    z-index: 11;
    pointer-events: none;
    transition: opacity .4s ease;
}
.home .cont02 .fixed-bg01{
	height: 531px;
	background: url("img/home_img05_sp.png")center center /cover no-repeat;
}
.home .cont02 .fixed-bg02{
	height: 440px;
	background: url("img/home_img06_sp.png")center center /cover no-repeat;
}


/* cont03 */
.home .cont03{
	padding: 120px 0 185px;
	background: url("img/home_bg01_sp.png") center top / cover;
	background-attachment: fixed;
	background-size: 440px;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.home .cont03 .box{
	color: #fff;
	position: relative;
}
.home .cont03 .box:nth-of-type(even){
	margin: 150px 0 100px;
}
.home .cont03 .box:nth-of-type(1)::before{
	content: "";
	background: url("img/home_text02.png")no-repeat;
	background-size: 87px;
	mix-blend-mode: color-dodge;
	width: 87px;
	height: 180px;
	position: absolute;
	top: 202px;
	right: 42px;
	z-index: 2;
}
.home .cont03 .box:nth-of-type(2)::before{
	content: "";
	background: url("img/home_text03.png")no-repeat;
	background-size: 85px;
	mix-blend-mode: color-dodge;
	width: 85px;
	height: 185px;
	position: absolute;
	top: 213px;
	right: 40px;
	z-index: 2;
}
.home .cont03 .box:nth-of-type(3)::before{
	content: "";
	background: url("img/home_text04.png")no-repeat;
	background-size: 88px;
	mix-blend-mode: color-dodge;
	width: 88px;
	height: 203px;
	position: absolute;
	top: 266px;
	right: 42px;
	z-index: 3;
}
.home .cont03 .box .text_box{
	margin-bottom: 45px;
	padding: 0 40px;
	box-sizing: border-box;
}
.home .cont03 .box h2{
	font-size: 26px;
	line-height: 1.524;
	padding-top: 30px;
	position: relative;
}
.home .cont03 .box h2::before{
	content: "Seasonal dishes";
	font-size: 13px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.home .cont03 .box h2:nth-of-type(2)::before{
	content: "Japanese modern space";
}
.home .cont03 .box h2:nth-of-type(3)::before{
	content: "A space of hospitality";
}
.home .cont03 .box .text01{
	font-size: 16px;
	margin-top: 32px;
	line-height: 2.25;
}
.home .cont03 .box .button{
	margin-top: 25px;
}
.home .cont03 .box .button .mo_crop_text{
	padding-bottom: 5px;
}
.home .cont03 .box .button .mo_crop_text::after{
	top: calc(100% - 5px);
}
.home .cont03 .box .img_box{
	position: relative;
}
.home .cont03 .box:nth-of-type(3) .img_box{
	margin-top: 115px;
}

/* パララックス */
.home .cont03 .box .prlximg_viewport{
	width: 440px;
	height: 313px;
	min-height: 313px;
	flex-shrink: 0;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(1){
	width: 380px;
	height: 270px;
	min-height: 270px;
	margin-left: 60px;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(2){
	width: 150px;
	height: 104px;
	min-height: 104px;
	position: absolute;
	left: 0;
	top: 200px;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(2) img{
	margin-top: -50px;
}
.home .cont03 .box:nth-of-type(2) .prlximg_target{
	top: -20px;
}
.home .cont03 .box:nth-of-type(3) .prlximg_viewport:nth-of-type(1){
	width: 150px;
	height: 200px;
	min-height: 200px;
	position: absolute;
	top: -70px;
	left: 0;
	z-index: 2;
}
.home .cont03 .box:nth-of-type(3) .prlximg_viewport:nth-of-type(2){
	width: 370px;
	height: 262px;
	min-height: 262px;
	margin-left: auto;
}
.home .cont03 .box .prlximg_target{
	top: -20px;
	height: 120%;
}
.home .cont03 .box:nth-of-type(1) .prlximg_viewport:nth-of-type(1) .prlximg_target{
	top: -20px;
	height: 100%;
}
.home .cont03 .box:nth-of-type(3) .prlximg_viewport:nth-of-type(2) .prlximg_target{
	top: -20px;
	height: 110%;
}

.home .cont03 .cont{
	margin: 100px auto 0;
	padding: 0 40px;
	color: #fff;
	box-sizing: border-box;
	position: relative;
}
.home .cont03 .cont::before{
	content: "";
	background: url("img/home_bg01.svg")no-repeat;
	background-size: 581px;
	width: 581px;
	height: 364px;
	position: absolute;
	right: 117px;
	bottom: -200px;
	z-index: -1;
}
.home .cont03 .cont::after{
	content: "";
	background: url("img/home_bg03_opa4.svg")no-repeat;
    width: 471px;
    height: 344px;
    position: absolute;
    top: -43px;
    left: 105px;
	z-index: -1;
}
.home .cont03 .cont h2{
	width: 108px;
	height: 300px;
	font-size: 26px;
	line-height: 2.077;
	letter-spacing: 3px;
	margin: 0 auto;
	writing-mode: vertical-rl;
	position: relative;
}
.home .cont03 .cont h2::before{
	content: "";
	width: 1px;
	height: 130px;
	background: #fff;
	position: absolute;
	top: 125px;
	left: 50%;
	transform: translateX(-27px);
}
.home .cont03 .cont .text02{
	font-size: 16px;
	line-height: 2.25;
}


/* cont04 */
.home .cont04{
	padding: 170px 0 480px;
	background: url("img/bg_pattern.png") repeat,#fff;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.home .cont04 .inner{
	padding: 0 40px;
	position: relative;
}
.home .cont04 .inner::after{
	content: "";
	background: url("img/home_bg05.png")no-repeat;
	background-size: 711px;
	width: 711px;
	height: 700px;
	position: absolute;
	top: -253px;
	left: -50px;
	z-index: -2;
}
.home .cont04 .inner h2{
	font-size: 22px;
	line-height: 1;
	padding-top: 30px;
	position: relative;
}
.home .cont04 .inner h2::before{
	content: "Various scenes";
	font-size: 13px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.home .cont04 .inner .text01{
	margin-top: 30px;
	font-size: 16px;
	line-height: 2;
}
.home .cont04 .inner picture{
	width: 510px;
	position: absolute;
	bottom: -450px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.home .cont04 .inner picture img{
	filter: drop-shadow(0 5px 30px rgba(0,0,0,0.05));
}


/* 流れる画像 */
.home .cont04 .slide_wrap{
	display: flex;
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: absolute;
	top: -110px;
	z-index: 3;
}
.home .cont04 .slide_wrap picture{
	width: auto;
	height: 100%
}
.home .cont04 .slide_wrap picture img{
	max-width: none;
	width: auto;
	height: 100%;
	object-fit: contain;
}
.home .cont04 .slide_wrap picture:first-child{
	animation: BgImgloop 120s -60s linear infinite;
}
.home .cont04 .slide_wrap picture:last-child{
	animation: BgImgloop2 120s linear infinite;
}
@keyframes BgImgloop {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes BgImgloop2 {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}


/* cont05 */
.home .cont05{
	background: #1e1e1e;
	position: relative;
	z-index: 3;
}
.home .cont05 .inner{
	padding: 50px 30px 60px;
	box-sizing: border-box;
	position: relative;
}
.home .cont05 .inner .text_box{
	margin-bottom: 30px;
}
.home .cont05 .inner .text_box .button{
	margin-top: 15px;
}
.home .cont05 .inner .text_box .button .mo_crop_text{
	height: 33px;
}
.home .cont05 .inner .text_box .button .mo_crop_text_inner{
	padding-left: 22px;
	background: url("img/sns_icon01.svg")top 7px left no-repeat;
	background-size: 14px;
	box-sizing: border-box;
}
.home .cont05 .inner .text_box .button .mo_crop_text_after{
    display: block;
	width: 100%;
	padding-left: 22px;
	background: url("img/sns_icon01.svg")top 10px left no-repeat;
	background-size: 14px;
	box-sizing: border-box;

    transition:
        transform .55s cubic-bezier(0.25, 1, 0.5, 1),
        opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
        filter .55s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.8;
	position: absolute;
    top: 100%;
    left: 0;
}
.home .cont05 .inner .text_box .button .mo_crop_text_after img{
    display: block;
    width: 60px;
    height: 36px;
}
.home .cont05 .inner .text_box h2{
	font-size: 28px;
	line-height: 1;
	color: #b5934d;
	margin-bottom: 20px;
	position: relative;
}
.home .cont05 .inner .text_box .text01{
	color: #fff;
	line-height: 1.857;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}


/* cont06 */
.home .cont06{
	padding: 100px 0 0;
	background: url("img/bg_pattern.png") repeat,#fff;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.home .cont06 .inner{
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.home .cont06 .inner::before{
	content: "";
	background: url("img/home_bg03_opa4.svg")no-repeat;
    width: 471px;
    height: 344px;
    position: absolute;
    top: -145px;
    left: 75px;
	z-index: -1;
}
.home .cont06 .inner h2{
	height: 155px;
	font-size: 26px;
	line-height: 1;
	writing-mode: vertical-rl;
	letter-spacing: 2px;
	margin-right: auto;
	padding-right: 30px;
	box-sizing: border-box;
	position: relative;
	order: 1;
}
.home .cont06 .inner h2::before{
	content: "Shop Information";
	font-size: 13px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	right: 0;
}
.home .cont06 .inner .text_box{
	order: 3;
}
.home .cont06 .inner .text_box address{
	margin-top: 40px;
}
.home .cont06 .inner .text_box address p{
	font-size: 16px;
}
.home .cont06 .inner .text_box address .opentime::before{
	content: "営業時間：";
}
.home .cont06 .inner .text_box address .tel::before{
	content: "電話：";
}
.home .cont06 .inner .text_box address .info01::before{
	content: "駐車場：";
}
.home .cont06 .inner .text_box address .info02::before{
	content: "貸切：";
}
.home .cont06 .inner .text_box .access_box{
	margin: 30px 0 25px;
	background: #fff;
	position: relative;
}
.home .cont06 .inner .text_box .access_box h3{
	font-size: 16px;
	line-height: 1;
	color: #b5934d;
	position: absolute;
	top: -8px;
	left: 15px;
}
.home .cont06 .inner .text_box .access_box ul{
	padding: 23px 10px 20px;
	box-sizing: border-box;
}
.home .cont06 .inner .text_box .access_box ul li{
	padding-left: 14px;
	font-size: 14px;
	line-height: 1.714;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	position: relative;
	box-sizing: border-box;
}
.home .cont06 .inner .text_box .access_box ul li + li{
	margin-top: 5px;
}
.home .cont06 .inner .text_box .access_box ul li::before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.home .cont06 .inner .img_box{
	display: flex;
	gap: 10px;
	position: relative;
	order: 2;
}

/* パララックス */
.home .cont06 .inner .prlximg_viewport{
	width: 115px;
	height: 215px;
	min-height: 215px;
	flex-shrink: 0;
}
.home .cont06 .inner .prlximg_viewport:nth-of-type(2){
	margin-top: 25px;
}
.home .cont06 .inner .prlximg_target{
	top: -10px;
	height: 120%;
}
.home .cont06 .g_map{
	margin-top: 50px;
}
.home .cont06 .g_map iframe{
    width: 100%;
    height: 270px;
    vertical-align: bottom;
}



/* common
------------------------------------------------------------------------*/

	/* header */
	.common header{
		position: absolute;
	}
	.common header h1{
		position: absolute;
		top: 355px;
		right: 5px;
		left: auto;
		font-size: 10px;
		line-height: 1;
		color: #fff;
		font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
		opacity: 1;
		transition: opacity .4s;
	}
	.common header.fixed h1 {
		opacity: 0;
		transition: opacity .4s;
	}
	.common header .logo{
		position: fixed;
		opacity: 1;
		transform: scale(1);
		visibility: inherit;
	}
	.common header .logo img {
		content: url("img/header_logo_ho.svg");
	}
	.common header.is-light .logo img {
		content: url("img/header_logo.svg");
	}
	
	/* nav */
	.common header .menu-btn span{
		background: #333;
	}
	.common header.is-light .menu-btn span{
		background: #fff;
	}
	
	/* key */
	.common .key{
		background: url("img/bg_pattern.png");
	}
	.common .key .inner{
		padding: 86px 0 240px 40px;
		box-sizing: border-box;
		position: relative;
	}
	.common .key .inner::after{
		background: url("img/common_key_img01_sp.png")no-repeat;
		position: absolute;
		bottom: 0;
		left: 40px;
		content: "";
		width: 400px;
		height: 220px;
	}
	.common .key .inner .text01{
		padding: 22px 0 0;
		font-size: 24px;
		line-height: 1;
		position: relative;
	}
	.common .key .inner .text01::before{
		position: absolute;
		top: 0;
		left: 0;
		color: #b5934d;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 1px;
	}


	/* パララックス */
	/* 画像を包む枠 */
	.prlximg_viewport{
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	/* 動かす画像 */
	.prlximg_target{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 150%;
		object-fit: cover;
		will-change: transform;
		z-index: 1;
	}


	/* ボタンアクション */
	.mo_crop{
		display: inline-block;
		width: 220px;
		position: relative;
		overflow: hidden;
	}
	.mo_crop_text{
		display: inline-block;
		width: 100%;
		color: #b5934d;
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		padding-right: 32px;
		border-bottom: 1px solid #b5934d;
		box-sizing: border-box;
		position: relative;
	}
	.mo_crop_text_inner{
		display: block;
		transform: translateY(0);
		transition:
			transform .55s cubic-bezier(0.25, 1, 0.5, 1),
			opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
			filter .55s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.mo_crop_text::after{
		content: attr(data-text);
		width: 100%;
		color: #b5934d;
		transform: translateY(0);
		transition:
			transform .55s cubic-bezier(0.25, 1, 0.5, 1),
			opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
			filter .55s cubic-bezier(0.25, 1, 0.5, 1);
		opacity: 0.8;
		position: absolute;
		top: 100%;
		left: 0;
	}
	.arrow{
		overflow: hidden;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 8px;
		margin: auto 0;
		line-height: 1;
	}
	.arrow::before,
	.arrow::after{
		content: "";
		background: url("img/common_arrow01.svg") center/contain no-repeat;
		width: 8px;
		height: 100%;
		position: absolute;
		top: -2px;
		right: 0;
		animation-fill-mode: forwards;
		animation-duration: 0.25s;
		animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
	}
	.arrow::after{
		transform: translateX(-100%);
	}

	
	/* pankuzu */
	.pankuzu {
		padding-top: 20px;
		line-height: 1.3;
		background: url("img/bg_pattern.png");
	}
	.pankuzu .inner{
		padding: 0 20px 0 40px;
	}
	.pankuzu ul li {
		display: inline-block;
		margin-right: 10px;
		color: #333;
		font-size: 12px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		max-width: 400px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.pankuzu ul li a {
		color: #333;
		font-size: 12px;
	}
	.pankuzu ul li:not(:last-of-type)::after {
		content: "-";
		margin-left: 10px;
		flex-shrink: 0;
	}
	.pankuzu ul li:last-of-type {
		margin-right: 0;
	}
	

/* 一覧ページのページャー */
.archive-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	width: 380px;
	margin:70px auto;
}
.archive-pager .page-numbers{
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
}
.archive-pager .page-numbers.current {
	border: 1px solid var(--main-color);
	color:var(--main-color);
	background: #fff;
}
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next{
	background: var(--main-dark-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
	padding-top: 3px;
}
.archive-pager .page-numbers.next {
	padding-left: 3px;
}



.single-pager{
	width: 100%;
	margin: 60px auto;
}
.single-pager .prev-pager-box {
	margin:0 10px 30px;
}
.single-pager .next-pager-box {
	margin:0 10px;
}
.single-pager a {
	display: flex;
	align-items: center;
	text-decoration: none !important;
	text-align: left;
	font-size: 14px;
	position: relative;
	justify-content: flex-end;
}
.single-pager .prev-pager-box a {
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
	content: "";
	width: 25px;
	height: 25px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::before{
	left: -10px;
}
.single-pager .next-pager-box a::before {
	right: -10px;
}
.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::after{
	border-right: 6px solid #fff;
	left: -2px;
}
.single-pager .next-pager-box a::after {
	border-left: 6px solid #fff;
	right: -2px;
}
.single-pager .prev-pager-box a .text-box {
	padding-left: 20px;
}
.single-pager .next-pager-box a .text-box {
	padding-right: 20px;
}
.single-pager a h2 {
	line-height: 1.5;
	margin-bottom: 5px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.single-pager a .img {
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.single-pager a .img img {
	width: 150px;
	border-radius: 5px;
}



/* ここから各下層ページ
------------------------------------------------------------------------*/
	/* key */

	/* about */
	.about .key .inner::after{
		background: url("img/about_key_img01_sp.png")no-repeat;
	}
	.about .key .inner .text01::before{
		content: "Greeting/Features";
	}
	
	/* cuisine-room */
	.cuisine .key .inner::after{
		background: url("img/cuisine_key_img01_sp.png")no-repeat;
	}
	.cuisine .key .inner .text01::before{
		content: "Greeting/Features";
	}

	/* seasonal */
	.seasonal .key .inner::after{
		background: url("img/seasonal_key_img01_sp.png")no-repeat;
	}
	.seasonal .key .inner .text01::before{
		content: "Seasonal Contents";
	}

	/* facility */
	.facility .key .inner::after{
		background: url("img/facility_key_img01_sp.png")no-repeat;
	}
	.facility .key .inner .text01::before{
		content: "Facility Information";
	}

	/* shop */
	.shop .key .inner::after{
		background: url("img/shop_key_img01_sp.png")no-repeat;
	}
	.shop .key .inner .text01::before{
		content: "Shop Information";
	}



	/* contact */
	.contact .key .inner::after{
		background: url("img/contact_key_img01_sp.png")no-repeat;
	}
	.contact .key .inner .text01::before{
		content: "Reservation/Contact";
	}

	/* thanks */
	.thanks .key .inner::after{
		background: url("img/thanks_key_img01_sp.png")no-repeat;
	}
	.thanks .key .inner .text01::before{
		content: "Thanks you";
	}

	/* privacy */
	.privacy .key .inner::after{
		background: url("img/privacy_key_img01_sp.png")no-repeat;
	}
	.privacy .key .inner .text01::before{
		content: "Privacy Policy";
	}

	/* still */
	.still .key .inner .text01::before{
		content: "Consulting process";
	}

	/* 404 */
	.yonmaruyon .key .inner .text01::before{
		content: "404 NOT FOUND";
	}

	/* 410 */
	.yonichimaru .key .inner .text01::before{
		content: "410 Gone";
	}



/* about
------------------------------------------------------------------------*/

	/* cont01 */
	.about .cont01{
		background: url("img/bg_pattern.png");
	}
	.about .cont01 .inner{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 80px 40px 0;
		position: relative;
	}
	.about .cont01 .inner::before{
		position: absolute;
		top: 20px;
		left: 60px;
		content: "";
		background: url("img/about_bg02_sp.png")no-repeat;
		background-size: 480px;
		width: 480px;
		height: 473px;
	}
	.about .cont01 .inner h2{
		padding-right: 32px;
		box-sizing: border-box;
		font-size: 40px;
		line-height: 1;
		letter-spacing: 5px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.about .cont01 .inner h2::before{
        position: absolute;
        top: 3px;
        right: 0;
		content: "Greeting";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.about .cont01 .inner .text01{
		display: inline-block;
		font-size: 20px;
		line-height: 1;
		margin-top: 50px;
		position: relative;
	}
	.about .cont01 .inner .text01::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 20px);
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 100px;
		height: 1px;
	}
	.about .cont01 .inner .text02{
		font-size: 16px;
		line-height: 2;
		letter-spacing: 1px;
		font-feature-settings: "palt" 1;
		margin-top: 40px;
	}
	.about .cont01 .inner .text03{
		font-size: 16px;
		line-height: 1;
		margin-top: 45px;
	}
	.about .cont01 .inner .img_box{
		width: 100%;
		height: 480px;
		position: relative;
	}

	/* パララックス */
	.about .cont01 .inner .prlximg_viewport:nth-of-type(1){
		width: 178px;
		height: 290px;
		min-height: 290px;
		position: absolute;
		top: 40px;
		left: 200px;
		z-index: 2;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(2){
		width: 500px;
		height: 295px;
		min-height: 295px;
		position: absolute;
		top: 150px;
		left: -200px;
		z-index: 1;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(3){
		width: 150px;
		height: 150px;
		min-height: 150px;
		position: absolute;
		top: 400px;
		right: 30px;
		z-index: 2;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
		top: -50px;
		height: 120%;
	}
	.about .cont01 .inner .prlximg_viewport:nth-of-type(3) .prlximg_target{
		top: -30px;
		height: 130%;
	}


	/* cont02 */
	.about .cont02{
		background: url("img/bg_pattern.png");
	}
	.about .cont02 .inner{
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		padding: 120px 40px 0;
		box-sizing: border-box;
		position: relative;
	}
	.about .cont02 .inner::before{
		position: absolute;
		top: 22px;
		right: -40px;
		content: "";
		background: url("img/about_bg03_sp.png")no-repeat;
		background-size: 480px;
		width: 480px;
		height: 536px;
		z-index: -1;
	}
	.about .cont02 .inner h2{
		padding-right: 32px;
		box-sizing: border-box;
		font-size: 40px;
		line-height: 1;
		letter-spacing: 5px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.about .cont02 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Attention to detail";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.about .cont02 .inner .text01{
		display: inline-block;
		font-size: 18px;
		line-height: 1;
		margin-top: 50px;
		position: relative;
	}
	.about .cont02 .inner .text01::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 10px);
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 60px;
		height: 1px;
	}
	.about .cont02 .inner .text02{
		font-size: 16px;
		line-height: 2;
		margin-top: 40px;
	}
	.about .cont02 .inner .text02 + .text02{
		margin-top: 28px;
	}
	.about .cont02 .detail_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 50px 0;
		margin-top: 45px;
	}
	.about .cont02 .detail_box .cont{
		display: flex;
		flex-direction: column;
		width: 350px;
	}
	.about .cont02 .detail_box .cont h3{
		font-size: 20px;
		line-height: 1;
		margin-top: 28px;
		order: 2;
	}
	.about .cont02 .detail_box .cont .text03{
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
		letter-spacing: 1px;
		font-feature-settings: "palt" 1;
		margin-top: 20px;
		order: 3;
	}
	.about .cont02 .detail_box .cont figure{
		order: 1;
	}


	/* cont03 */
	.about .cont03{
		background: url("img/bg_pattern.png");
		position: relative;
	}
	.about .cont03::before{
		position: absolute;
		top: 80px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/about_bg01_sp.png")center center repeat-x;
		width: 100%;
		height: 325px;
		animation: aboutslideMove 40s linear infinite;
		z-index: 12;
	}
	@keyframes aboutslideMove{
		0% {background-position: 925px 0;}
		50% {background-position: 462.5px 0;}
		100% {background-position: 0 0;}
	}
	.about .cont03 .inner{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 450px 40px 100px;
		box-sizing: border-box;
		position: relative;
	}
	.about .cont03 .inner::before{
		position: absolute;
		top: 300px;
		right: -230px;
		content: "";
		background: url("img/about_bg01.svg")no-repeat;
        transform: scale(-1, -1) rotate(35deg);
        width: 600px;
        height: 439px;
		z-index: -1;
	}
	.about .cont03 .inner::after{
		position: absolute;
		bottom: 0;
		left: -210px;
		content: "";
		background: url("img/about_bg02.svg")no-repeat;
        width: 591px;
        height: 334px;
		z-index: -1;
	}
	.about .cont03 .inner h2{
		padding-top: 40px;
		box-sizing: border-box;
		font-size: 24px;
		line-height: 1;
		letter-spacing: 2px;
		position: relative;
	}
	.about .cont03 .inner h2::before{
        position: absolute;
        top: 4px;
        left: 0;
		content: "Hospitality for every occasion";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.about .cont03 .inner .text01{
		font-size: 18px;
		line-height: 2;
		margin-top: 34px;
	}
	.about .cont03 .inner .text02{
		font-size: 16px;
		margin-top: 44px
	}
	.about .cont03 .inner .text02 + .text02{
		margin-top: 22px;
	}



/* cuisine
------------------------------------------------------------------------*/
	
	/* cuisine_btn_box */
	.cuisine_btn_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px 0;
		background: url("img/bg_pattern.png");
		padding: 80px 40px 0;
	}
	.cuisine_btn_box .button a{
		display: block;
		width: 360px;
		height: 65px;
		background: url("img/cuisine_btn_bg01.png")no-repeat;
		border-radius: 5px;
		padding: 0 0 0 240px;
		filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.2));
		box-sizing: border-box;
		color: #fff;
		font-size: 18px;
		line-height: 65px;
		position: relative;
	}
	.cuisine_btn_box .button:nth-of-type(2) a{
		background: url("img/cuisine_btn_bg02.png")no-repeat;
	}
	.cuisine_btn_box .button a::after{
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(90deg);
		content: "";
		background: url("img/common_arrow02.svg")no-repeat;
		width: 9px;
		height: 8px;
	}


	/* cont01 */
	.cuisine .cont01{
		background: url("img/bg_pattern.png");
	}
	.cuisine .cont01 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 40px 0;
		padding: 120px 40px 0;
		position: relative;
	}
	.cuisine .cont01 .inner::before{
		position: absolute;
		top: 220px;
		left: -45px;
		content: "";
		background: url(img/cuisine_bg01.svg) no-repeat;
		transform: scale(-1, -1) rotate(35deg);
		width: 471px;
		height: 344px;
	}
	.cuisine .cont01 .inner h2{
		padding-right: 28px;
		box-sizing: border-box;
		font-size: 28px;
		line-height: 1;
		letter-spacing: 2.6px;
		writing-mode: vertical-rl;
		margin-left: 10px;
		position: relative;
	}
	.cuisine .cont01 .inner h2 span{
		display: block;
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0.8px;
		text-indent: -0.5em;
		margin-left: 30px;
	}
	.cuisine .cont01 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Cuisine";
        color: #b5934d;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.cuisine .cont01 .inner .text01{
		font-size: 16px;
		line-height: 2.25;
	}
	.cuisine .cont01 .inner .text01 + .text01{
		margin-top: 24px;
	}

	/* パララックス */
	.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(2){
		width: 170px;
		height: 200px;
		min-height: 200px;
		position: absolute;
		top: 80px;
		left: auto;
		right: 70px;
		z-index: 2;
	}
	.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(3){
		width: 120px;
		height: 120px;
		min-height: 120px;
		position: absolute;
		top: 260px;
		left: auto;
		right: 20px;
		z-index: 1;
	}
	.cuisine .cont01 .inner > .prlximg_viewport:nth-of-type(3) .prlximg_target{
		height: 130%;
		top: -20px;
	}

	.cuisine .cont01 .inner .cont{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		width: 100%;
		padding: 335px 0 0;
		margin-top: 35px;
		position: relative;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2){
		margin-top: 20px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3){
		margin-top: 30px;
		padding-bottom: 45px;
	}
	.cuisine .cont01 .inner .cont::before{
		position: absolute;
        top: 420px;
        left: 30px;
        content: "";
        background: url(img/cuisine_bg01.svg) no-repeat;
        width: 471px;
        height: 344px;
        z-index: -1;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3)::after{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #b5934d;
		width: 400px;
		height: 1px;
	}
	.cuisine .cont01 .inner .cont h3{
		font-size: 26px;
		line-height: 1;
		letter-spacing: 2px;
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		white-space: pre;
		position: relative;
	}
	.cuisine .cont01 .inner .cont h3:before{
		position: absolute;
		top: -100px;
		right: -30px;
		content: "";
		background: url("img/cuisine_text01.png")no-repeat;
		background-size: 136px;
		width: 136px;
		height: 141px;
		opacity: 0.4;
		z-index: -1;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2) h3:before{
		position: absolute;
		top: -80px;
		right: -30px;
		content: "";
		background: url("img/cuisine_text02.png")no-repeat;
		background-size: 150px;
		width: 150px;
		height: 162px;
		opacity: 0.4;
		z-index: -1;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3) h3:before{
		position: absolute;
		top: -100px;
		right: -30px;
		content: "";
		background: url("img/cuisine_text03.png")no-repeat;
		background-size: 110px;
		width: 110px;
		height: 162px;
		opacity: 0.4;
		z-index: -1;
	}
	.cuisine .cont01 .inner .cont h3::after{
		content: "-KOU-";
		font-size: 14px;
		padding-top: 15px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2) h3::after{
		content: "-MIYABI-";
	}
	.cuisine .cont01 .inner .cont:nth-of-type(3) h3::after{
		content: "-SHUN-";
	}
	.cuisine .cont01 .inner .cont .text02{
		display: inline-block;
		font-size: 16px;
		line-height: 2.375;
		letter-spacing: 0.8px;
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		white-space: pre;
		margin-right: 40px;
	}
	.cuisine .cont01 .inner .cont .cuisine_box{
		width: 100%;
		background: #fff;
		padding: 26px 30px 20px;
		box-sizing: border-box;
		margin-top: 40px;
		position: relative;
	}
	.cuisine .cont01 .inner .cont .cuisine_box h4{
		position: absolute;
		top: -9px;
		left: 40px;
		color: #b5934d;
		font-size: 18px;
		line-height: 1;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul{
		display: flex;
		flex-wrap: wrap;
		gap: 5px 0;
		padding-bottom: 18px;
		border-bottom: 1px solid #b5934d;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul li{
		font-size: 14px;
		line-height: 2;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul li span{
		color: #b5934d;
	}
	.cuisine .cont01 .inner .cont .cuisine_box ul li span::after{
		content: "｜";
		padding: 0 6px;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(2),
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(3),
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(4){
		width: 100%;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(1) .cuisine_box ul li:nth-of-type(6){
		margin-right: 1.5em;
	}
	.cuisine .cont01 .inner .cont:nth-of-type(2) .cuisine_box ul li:nth-of-type(2),
	.cuisine .cont01 .inner .cont:nth-of-type(2) .cuisine_box ul li:nth-of-type(3),
	.cuisine .cont01 .inner .cont:nth-of-type(3) .cuisine_box ul li:nth-of-type(2),
	.cuisine .cont01 .inner .cont:nth-of-type(3) .cuisine_box ul li:nth-of-type(3){
		margin-right: 3em;
	}
	.cuisine .cont01 .inner .cont .cuisine_box .price{
		font-size: 20px;
		line-height: 1;
		margin-top: 20px;
	}
	.cuisine .cont01 .inner .cont .cuisine_box .price span{
		font-size: 16px;
		padding-left: 6px;
	}

	/* パララックス */
	.cuisine .cont01 .inner .cont .prlximg_viewport{
		width: 420px;
		height: 300px;
		min-height: 300px;
		position: absolute;
		top: 0;
		left: -30px;
		z-index: -2;
	}
	.cuisine .cont01 .inner .cont  .prlximg_viewport .prlximg_target{
		height: 103%;
		top: -5px;
	}

	.cuisine .cont01 .inner .text03{
		width: 100%;
		font-size: 16px;
		line-height: 1.875;
		text-align: center;
	}
	.cuisine .cont01 .inner .button{
		margin: 0 auto;
	}


	/* cont02 */
	.cuisine .cont02{
		background: url("img/bg_pattern.png");
		padding: 80px 0;
	}
	.cuisine .cont02 .inner{
		display: flex;
		flex-direction: column;
		gap: 35px 0;
		width: 440px;
		background: url("img/cuisine_bg01_sp.png");
		padding: 45px;
		color: #fff;
		position: relative;
	}
	.cuisine .cont02 .inner h2{
		padding-top: 30px;
		font-size: 24px;
		line-height: 1;
		position: relative;
	}
	.cuisine .cont02 .inner h2::before{
        position: absolute;
        top: 0;
        left: 0;
		content: "Souvenirs";
        color: #b5934d;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.cuisine .cont02 .inner .text01{
		font-size: 16px;
		line-height: 2.25;
		margin-top: 24px;
	}
	.cuisine .cont02 .inner .souvenirs_box{
		display: flex;
		flex-wrap: wrap;
		gap: 25px 0;
		width: 360px;
	}
	.cuisine .cont02 .inner .souvenirs_box .text02{
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 1;
		margin-top: 11px;
	}


	/* cont03 */
	.cuisine .cont03{
		background: url("img/bg_pattern.png");
	}
	.cuisine .cont03 .fixed-bg{
		height: 465px;
		position: relative;
		z-index: 11;
	}
	.cuisine .cont03 .fixed-bg01{
		background: url("img/cuisine_img10_sp.png")center center no-repeat;
		background-size: 440px;
	}
	.cuisine .cont03 .inner{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		padding: 70px 40px 100px;
		position: relative;
	}
	.cuisine .cont03 .inner::after{
		position: absolute;
		top: -231px;
		left: -43px;
		content: "";
		background: url("img/cuisine_bg02.png")no-repeat;
		background-size: 800px;
		width: 800px;
		height: 788px;
		z-index: -1;
	}
	.cuisine .cont03 .inner h2{
		padding-right: 24px;
		box-sizing: border-box;
		font-size: 28px;
		line-height: 1.44;
		letter-spacing: 2.6px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.cuisine .cont03 .inner h2 span{
		display: block;
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0.8px;
		text-indent: 0.2em;
		margin-left: 32px;
	}
	.cuisine .cont03 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Quaint Room";
        color: #b5934d;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.cuisine .cont03 .inner .text01{
		font-size: 16px;
		line-height: 2.25;
		margin-top: 45px;
	}
	.cuisine .cont03 .inner .text01 + .text01{
		margin-top: 24px;
	}
	.cuisine .cont03 .inner .room_box{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		margin-top: 60px;
	}
	.cuisine .cont03 .inner .room_box .h_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 330px 0 0 0;
		box-sizing: border-box;
		position: relative;
	}
	.cuisine .cont03 .inner .room_box .h_box h3{
		font-size: 22px;
		line-height: 1;
	}
	.cuisine .cont03 .inner .room_box .h_box .text02{
		font-size: 16px;
		line-height: 2;
		margin-top: 35px;
	}
	.cuisine .cont03 .inner .room_box .h_box .text02 + .text02{
		margin-top: 22px;
	}

	/* パララックス */
	.cuisine .cont03 .inner .room_box .h_box .prlximg_viewport{
		width: 400px;
		height: 284px;
		min-height: 284px;
		position: absolute;
		top: 0;
		left: -20px;
		z-index: 2;
	}
	.cuisine .cont03 .inner .room_box .h_box .prlximg_viewport .prlximg_target{
		height: 110%;
		top: -10px;
	}

	.cuisine .cont03 .inner .room_box .room_in_box{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 36px 0;
		width: 100%;
		margin-top: 40px;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont{
		width: 360px;
		background: #fff;
		padding: 24px 14px 15px 20px;
		box-sizing: border-box;
		position: relative;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4{
		position: absolute;
		top: -10px;
		left: 0;
		width: 100%;
		overflow: hidden;
		padding-left: 15px;
		box-sizing: border-box;
		font-size: 18px;
		line-height: 1;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4 .span01{
		display: inline-block;
		position: relative;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4 .span01::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 5px);
		transform: translateY(-50%);
		content: "";
		background: #b5934d;
		width: 580px;
		height: 1px;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont h4 .span02{
		font-size: 16px;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dt{
		flex-basis: 7em;
		color: #b5934d;
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dt::after{
		content: "｜";
		padding: 0.5em;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dd{
		flex-basis: calc(100% - 7em);
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 2;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dt:nth-of-type(3){
		flex-basis: 8em;
	}
	.cuisine .cont03 .inner .room_box .room_in_box .cont dl dd:nth-of-type(3){
		flex-basis: calc(100% - 8em);
	}

	.cuisine .cont03 .inner .other_room_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 30px 20px;
		width: 100%;
		margin-top: 60px;
	}
	.cuisine .cont03 .inner .other_room_box .cont{
		display: flex;
		flex-direction: column;
		width: 170px;
	}
	.cuisine .cont03 .inner .other_room_box .cont h5{
		font-size: 18px;
		line-height: 1;
		margin-top: 20px;
		order: 2;
	}
	.cuisine .cont03 .inner .other_room_box .cont .text03{
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 1.875;
		margin-top: 13px;
		order: 3;
	}
	.cuisine .cont03 .inner .other_room_box .cont figure{
		order: 1;
	}
	.cuisine .cont03 .inner .other_room_box .cont figure img{
		filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.15));
	}
	.cuisine .cont03 .inner .btn_box{
		display: flex;
		flex-direction: column;
		gap: 30px 0;
		margin-top: 45px;
	}



/* seasonal
------------------------------------------------------------------------*/

	/* cont01 */
	.seasonal .cont01{
		background: url("img/bg_pattern.png");
	}
	.seasonal .cont01 .inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		flex-wrap: wrap;
		gap: 50px 0;
		padding: 80px 20px;
		position: relative;
	}
	.seasonal .cont01 .inner::before{
		position: absolute;
		top: -50px;
		left: -150px;
		content: "";
		background: url("img/seasonal_bg01.png")no-repeat;
		background-size: 800px;
		width: 800px;
		height: 787px;
		z-index: -1;
	}
	.seasonal .cont01 .inner::after{
		position: absolute;
		bottom: 50px;
		left: -150px;
		content: "";
		background: url("img/seasonal_bg02.png")no-repeat;
		background-size: 720px;
		width: 720px;
		height: 869px;
		z-index: -1;
	}
	.seasonal .cont01 .inner h2{
		font-size: 30px;
		line-height: 1.86;
		letter-spacing: 2.2px;
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		white-space: pre;
		position: relative;
	}
	.seasonal .cont01 .inner h2::after{
		position: absolute;
		top: 0;
		left: 140px;
		content: "";
		background: #b5934d;
		width: 1px;
		height: 100px;
	}
	.seasonal .cont01 .inner h2 .span01{
		display: block;
        color: #b5934d;
		font-size: 20px;
		line-height: 1.785;
		margin-left: 60px;
	}
	.seasonal .cont01 .inner h2 .span02{
		font-size: 18px;
		position: relative;
	}
	.seasonal .cont01 .inner .text01{
		font-size: 16px;
		line-height: 2.57;
		letter-spacing: 0.8px;
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		white-space: pre;
	}

	.seasonal .cont01 .inner .menu_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 35px 0;
		width: 100%;
		margin-top: 40px;
	}
	.seasonal .cont01 .inner .menu_box h3{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		background: #fff;
		font-size: 18px;
		line-height: 50px;
		z-index: 11;
		position: relative;
	}
	.seasonal .cont01 .inner .menu_box h3 span{
		position: relative;
	}
	.seasonal .cont01 .inner .menu_box h3 span::before{
		position: absolute;
		top: 50%;
		left: 9.4em;
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 1px;
		height: 20px;
	}
	.seasonal .cont01 .inner .menu_box.rankup h3 span::before{
		left: 11.4em;
	}
	.seasonal .cont01 .inner .menu_box.child h3 span::before{
		left: 8.4em;
	}
	.seasonal .cont01 .inner .menu_box h3 span::after{
		content: "Additional Menu";
		color: #b5934d;
		font-size: 14px;
		line-height: 50px;
		letter-spacing: 1.4px;
		padding-left: 3.6em;
	}
	.seasonal .cont01 .inner .menu_box.rankup h3 span::after{
		content: "Rank Up Menu";
	}
	.seasonal .cont01 .inner .menu_box.child h3 span::after{
		content: "Children's Menu";
	}
	.seasonal .cont01 .inner .menu_box .cont{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: wrap;
		gap: 20px 0;
		width: 100%;
		margin-bottom: 20px;
	}
	.seasonal .cont01 .inner .menu_box .cont:last-of-type{
		margin-bottom: 0;
	}
	.seasonal .cont01 .inner .menu_box .cont figure img{
		filter: drop-shadow(12px 12px 15px rgba(0,0,0,0.2));
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box{
		width: 100%;
		padding: 0 0 20px 20px;
		box-sizing: border-box;
		border-bottom: 1px solid #b5934d;
		text-align: center;
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box .menu_name{
		font-size: 20px;
		line-height: 1;
		margin-bottom: 12px;
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box .price{
		font-size: 20px;
		line-height: 1;
	}
	.seasonal .cont01 .inner .menu_box .cont .text_box .price span{
		font-size: 16px;
		padding-left: 6px;
	}

	.seasonal .cont01 .inner .menu_box.rankup,
	.seasonal .cont01 .inner .menu_box.child{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 35px 0;
		width: 100%;
		margin-top: 30px;
	}
	.seasonal .cont01 .inner .menu_box.rankup .cont,
	.seasonal .cont01 .inner .menu_box.child .cont{
		display: flex;;
		align-items: center;
		flex-wrap: wrap;
		width: 360px;
		margin-bottom: 0;
	}
	.seasonal .cont01 .inner .menu_box.rankup .cont .text_box,
	.seasonal .cont01 .inner .menu_box.child .cont .text_box{
		width: 100%;
		padding: 0 0 22px 0;
		text-align: center;
	}
	.seasonal .cont01 .inner .attention_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 360px;
		padding: 6px 0 10px;
		border-right: 1px solid #b5934d;
		border-left: 1px solid #b5934d;
		text-align: center;
		margin-top: 30px;
	}
	.seasonal .cont01 .inner .attention_box h4{
		color: #b5934d;
		font-size: 12px;
		line-height: 2;
	}
	.seasonal .cont01 .inner .attention_box .text02{
		font-size: 14px;
		line-height: 2;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		margin-top: 12px;
	}


	/* cont02 */
	.seasonal .cont02{
		background: #fff;
		position: relative;
		z-index: 3;
	}
	.seasonal .cont02 .inner{
		padding: 50px 30px 60px;
		box-sizing: border-box;
		position: relative;
	}
	.seasonal .cont02 .inner .text_box{
		margin-bottom: 30px;
	}
	.seasonal .cont02 .inner .text_box .button{
		margin-top: 15px;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text{
		height: 33px;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text_inner{
		padding-left: 22px;
		background: url("img/sns_icon01.svg")top 7px left no-repeat;
		background-size: 14px;
		box-sizing: border-box;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text_after{
		display: block;
		width: 100%;
		padding-left: 22px;
		background: url("img/sns_icon01.svg")top 10px left no-repeat;
		background-size: 14px;
		box-sizing: border-box;

		transition:
			transform .55s cubic-bezier(0.25, 1, 0.5, 1),
			opacity .55s cubic-bezier(0.25, 1, 0.5, 1),
			filter .55s cubic-bezier(0.25, 1, 0.5, 1);
		opacity: 0.8;
		position: absolute;
		top: 100%;
		left: 0;
	}
	.seasonal .cont02 .inner .text_box .button .mo_crop_text_after img{
		display: block;
		width: 60px;
		height: 36px;
	}
	.seasonal .cont02 .inner .text_box h2{
		font-size: 28px;
		line-height: 1;
		color: #b5934d;
		margin-bottom: 20px;
		position: relative;
	}
	.seasonal .cont02 .inner .text_box .text01{
		line-height: 1.857;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}



/* facility
------------------------------------------------------------------------*/
	
	/* facility_btn_box */
	.facility_btn_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px 0;
		background: url("img/bg_pattern.png");
		padding: 80px 40px 0;
	}
	.facility_btn_box .button a{
		display: block;
		width: 360px;
		height: 65px;
		background: url("img/facility_btn_bg01.png")no-repeat;
		border-radius: 5px;
		padding: 0 0 0 170px;
		filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.2));
		box-sizing: border-box;
		color: #fff;
		font-size: 18px;
		line-height: 65px;
		position: relative;
	}
	.facility_btn_box .button:nth-of-type(2) a{
		background: url("img/facility_btn_bg02.png")no-repeat;
	}
	.facility_btn_box .button a::after{
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(90deg);
		content: "";
		background: url("img/common_arrow02.svg")no-repeat;
		width: 9px;
		height: 8px;
	}


	/* cont01 */
	.facility .cont01{
		background: url("img/bg_pattern.png");
	}
	.facility .cont01 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 50px 0;
		padding: 120px 40px 0;
		position: relative;
	}
	.facility .cont01 .inner::before{
		position: absolute;
		top: 320px;
		left: -85px;
		content: "";
		background: url("img/facility_bg01.svg")no-repeat;
        transform: scale(-1, -1) rotate(35deg);
        width: 471px;
        height: 344px;
	}
	.facility .cont01 .inner h2{
		padding-right: 28px;
		box-sizing: border-box;
		font-size: 28px;
		line-height: 1.67;
		letter-spacing: 2.6px;
		writing-mode: vertical-rl;
		margin-left: -8px;
		position: relative;
	}
	.facility .cont01 .inner h2 span{
		display: block;
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0.4px;
		text-indent: -0.5em;
		margin-left: 30px;
	}
	.facility .cont01 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "The history of our city";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.facility .cont01 .inner .text01{
		font-size: 16px;
		line-height: 2.25;
	}
	.facility .cont01 .inner .text01 + .text01{
		margin-top: 25px;
	}
	.facility .cont01 .inner .img_box{
		width: 100%;
		height: 400px;
		position: relative;
	}

	/* パララックス */
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(1){
		width: 170px;
		height: 200px;
		min-height: 200px;
		position: absolute;
		top: -890px;
		right: -10px;
		left: auto;
		z-index: 2;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(2){
		width: 120px;
		height: 120px;
		min-height: 120px;
		position: absolute;
		top: -740px;
		right: -30px;
		left: auto;
		z-index: 1;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(3){
		width: 178px;
		height: 301px;
		min-height: 301px;
		position: absolute;
		top: -40px;
		right: -30px;
		left: auto;
		z-index: 3;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(4){
		width: 503px;
		height: 295px;
		min-height: 295px;
		position: absolute;
		top: 100px;
		left: -140px;
		z-index: 2;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(1) .prlximg_target{
		top: -20px;
		height: 120%;
	}
	.facility .cont01 .inner .prlximg_viewport:nth-of-type(4) .prlximg_target{
		top: -30px;
		left: 40px;
		height: 110%;
	}


	/* cont02 */
	.facility .cont02{
		background: url("img/bg_pattern.png");
	}
	.facility .cont02 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 45px 0;
		padding: 100px 40px 150px;
		position: relative;
	}
	.facility .cont02 .inner::before{
		position: absolute;
		top: 140px;
		right: -24px;
		content: "";
		background: url("img/facility_bg01.png")no-repeat;
		background-size: 286px;
		width: 286px;
		height: 257px;
	}
	.facility .cont02 .inner h2{
		padding-top: 28px;
		box-sizing: border-box;
		font-size: 28px;
		line-height: 1.65;
		letter-spacing: 1.2px;
		position: relative;
	}
	.facility .cont02 .inner h2 span{
		display: block;
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0.4px;
		text-indent: -0.5em;
		margin-bottom: 30px;
	}
	.facility .cont02 .inner h2::before{
        position: absolute;
        top: 0;
        left: 0;
		content: "Origin of the name";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.facility .cont02 .inner .text01{
		font-size: 16px;
		line-height: 2.2;
	}


	/* cont03 */
	.facility .cont03{
		background: url("img/facility_bg02_sp.png")center top / cover;
		background-attachment: fixed;
		background-size: 440px;
		position: relative;
	}
	.facility .cont03::before{
		position: absolute;
		top: -84px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/facility_slide_bg01_sp.png")center center repeat-x;
		width: 100%;
		height: 170px;
		animation: facilityslideMove 50s linear infinite;
		z-index: 12;
	}
	.facility .cont03::after{
		position: absolute;
		bottom: -84px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/facility_slide_bg02_sp.png")center center repeat-x;
		width: 100%;
		height: 170px;
		animation: facilityRslideMove 50s linear infinite;
		z-index: 12;
	}
	@keyframes facilityslideMove{
		0% {background-position: 1110px 0;}
		50% {background-position: 555px 0;}
		100% {background-position: 0 0;}
	}
	@keyframes facilityRslideMove{
		0% {background-position: 0 0;}
		50% {background-position: 555px 0;}
		100% {background-position: 1110px 0;}
	}
	.facility .cont03 .inner{
		padding: 150px 40px;
		color: #fff;
		position: relative;
	}
	.facility .cont03 .inner::before{
		position: absolute;
		top: -50px;
		left: -310px;
		content: "";
		background: url("img/facility_bg03.png")no-repeat;
		background-size: 715px;
		width: 715px;
		height: 704px;
		z-index: -1;
	}
	.facility .cont03 .inner::after{
		position: absolute;
		top: 1250px;
		left: 140px;
		content: "";
		background: url("img/facility_bg04.png")no-repeat;
		background-size: 581px;
		width: 581px;
		height: 648px;
		z-index: -1;
	}
	.facility .cont03 .inner h2{
		padding-top: 33px;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 1px;
		text-align: center;
		position: relative;
	}
	.facility .cont03 .inner h2::before{
        position: absolute;
        top: 0;
        left: 50%;
		transform: translateX(-50%);
		content: "Floor Guide";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.facility .cont03 .inner .text01{
		font-size: 18px;
		line-height: 1;
		text-align: center;
		margin-top: 45px;
	}
	.facility .cont03 .inner .text02{
		font-size: 16px;
		text-align: center;
		margin-top: 40px;
	}
	.facility .cont03 .inner .guide_box{
		padding: 300px 0 0;
		box-sizing: border-box;
		margin-top: 50px;
		position: relative;
	}
	.facility .cont03 .inner .guide_box .text03{
		font-size: 16px;
	}

	/* パララックス */
	.facility .cont03 .inner .guide_box .prlximg_viewport{
		width: 440px;
		height: 260px;
		min-height: 260px;
		position: absolute;
		top: 0;
		left: -40px;
		z-index: 2;
	}
	.facility .cont03 .inner .guide_box .prlximg_viewport .prlximg_target{
		top: -20px;
		height: 110%;
	}

	.facility .cont03 .inner .map_box{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 60px;
	}
	.facility .cont03 .inner .map_box ul{
		margin-top: 45px;
	}
	.facility .cont03 .inner .map_box ul li{
		font-size: 16px;
		line-height: 2;
		margin-bottom: 14px;
	}
	.facility .cont03 .inner .map_box ul li span{
		display: block;
		text-indent: -1em;
		color: #b5934d;
	}
	.facility .cont03 .inner .map_box ul li span::before{
		content: "・";
	}


	/* cont04 */
	.facility .cont04{
		background: url("img/bg_pattern.png");
		position: relative;
	}
	.facility .cont04 .inner{
		padding: 160px 40px 100px;
		position: relative;
	}
	.facility .cont04 .inner::before{
        position: absolute;
        top: 50px;
        left: -140px;
        content: "";
        background: url("img/facility_bg01.svg") no-repeat;
        transform: scale(-1, -1);
        width: 471px;
        height: 344px;
        z-index: -1;
	}
	.facility .cont04 .inner::after{
        position: absolute;
        bottom: 0;
        right: -80px;
        content: "";
        background: url("img/facility_bg02.svg") no-repeat;
        width: 495px;
        height: 311px;
        z-index: -1;
	}
	.facility .cont04 .inner h2{
		padding-top: 33px;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 1px;
		text-align: center;
		position: relative;
	}
	.facility .cont04 .inner h2::before{
        position: absolute;
        top: 0;
        left: 50%;
		transform: translateX(-50%);
		content: "About visiting";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.facility .cont04 .inner .text01{
		font-size: 16px;
		text-align: center;
		margin-top: 45px;
	}
	.facility .cont04 .inner table{
		margin-top: 50px;
	}
	.facility .cont04 .inner table tr th{
		display: block;
		width: 360px;
		padding-bottom: 6px;
		border-bottom: 1px solid #b5934d;
		font-size: 20px;
		line-height: 1.5;
		text-align: left;
		vertical-align: middle;
	}
	.facility .cont04 .inner table tr td{
		display: block;
		width: 360px;
		padding: 18px 0 30px;
		font-size: 16px;
		line-height: 1.875;
		vertical-align: middle;
	}



/* shop
------------------------------------------------------------------------*/

	/* cont01 */
	.shop .cont01{
		background: url("img/bg_pattern.png");
	}
	.shop .cont01 .inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		padding: 450px 0 80px;
		z-index: 11;
		position: relative;
	}
	.shop .cont01 .inner h2{
		padding-right: 28px;
		box-sizing: border-box;
		font-size: 22px;
		line-height: 1.67;
		letter-spacing: 3.2px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.shop .cont01 .inner h2::before{
        position: absolute;
        top: 2px;
        right: 0;
		content: "Tsuruga−FUKUI";
        color: #b5934d;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 2px;
	}
	.shop .cont01 .inner h2 span{
		position: relative;
	}
	.shop .cont01 .inner h2 span::after{
		position: absolute;
		top: calc(100% + 10px);
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #333;
		width: 1px;
		height: 100px;
	}
	.shop .cont01 .inner .text01{
		font-size: 16px;
		line-height: 2;
		letter-spacing: 1px;
		writing-mode: vertical-rl;
		margin-right: 30px;
	}

	/* パララックス */
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(1){
		width: 260px;
		height: 145px;
		min-height: 145px;
		position: absolute;
		top: 60px;
		left: 0;
		z-index: 2;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(2){
		width: 120px;
		height: 165px;
		min-height: 165px;
		position: absolute;
		top: auto;
		bottom: -110px;
		left: auto;
		right: 80px;
		z-index: 3;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(3){
		width: 220px;
		height: 131px;
		min-height: 131px;
		position: absolute;
		top: 250px;
		left: 120px;
		z-index: 2;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(4){
		width: 145px;
		height: 160px;
		min-height: 160px;
		position: absolute;
		top: 120px;
		left: auto;
		right: 0;
		z-index: 2;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(1) .prlximg_target{
		top: -20px;
		height: 120%;
	}
	.shop .cont01 .inner .prlximg_viewport:nth-of-type(3) .prlximg_target{
		top: -20px;
		height: 130%;
	}


	/* cont02 */
	.shop .cont02{
		background: url("img/bg_pattern.png");
		padding: 0 20px;
	}
	.shop .cont02 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 35px 0;
		background: #fff;
		padding: 40px;
		box-sizing: border-box;
		overflow: hidden;
		position: relative;
	}
	.shop .cont02 .inner::before{
		position: absolute;
		bottom: 0;
		left: -350px;
		content: "";
		background: url("img/shop_bg01.svg")center top no-repeat;
		background-size: 985px;
		width: 985px;
		height: 600px;
	}
	.shop .cont02 .inner h2{
		padding-right: 32px;
		box-sizing: border-box;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 1px;
		writing-mode: vertical-rl;
		position: relative;
	}
	.shop .cont02 .inner h2::before{
        position: absolute;
        top: 2px;
        right: 0;
		content: "Shop Information";
        color: #b5934d;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 1px;
	}
	.shop .cont02 .inner table{
		width: 650px;
	}
	.shop .cont02 .inner table th{
		width: 100px;
		height: 64px;
		border-bottom: 1px solid #ddd;
		padding: 0 0 0 10px;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 1.45;
		text-align: left;
		vertical-align: middle;
	}
	.shop .cont02 .inner table td{
		width: 200px;
		border-bottom: 1px solid #ddd;
		padding: 12px 0;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 1.45;
		vertical-align: middle;
	}
	.shop .cont02 .inner table tr:first-of-type th,
	.shop .cont02 .inner table tr:first-of-type td{
		border-top: 1px solid #ddd;
	}
	.shop .cont02 .inner table td a{
		display: block;
		font-size: 14px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		text-decoration: underline;
		margin: 4px 0 0 17px;
		position: relative;
	}
	.shop .cont02 .inner table td a::before{
		position: absolute;
		top: 2px;
		left: -15px;
		content: "";
		background: url("img/map_icon02.svg")no-repeat;
		width: 11px;
		height: 15px;
	}


	/* cont03 */
	.shop .cont03{
		background: url("img/bg_pattern.png");
	}
	.shop .cont03 .inner{
		padding: 440px 40px 60px;
		box-sizing: border-box;
		position: relative;
	}
	.shop .cont03 .inner::before{
		position: absolute;
		top: 280px;
		left: 40px;
		content: "";
		background: url("img/shop_bg02.svg")no-repeat;
		width: 500px;
		height: 365px;
	}
	.shop .cont03 .inner h2{
		padding-right: 32px;
		box-sizing: border-box;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 2px;
		writing-mode: vertical-rl;
		margin-bottom: 80px;
		position: relative;
	}
	.shop .cont03 .inner h2::before{
        position: absolute;
        top: 4px;
        right: 0;
		content: "Access";
        color: #b5934d;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
	}

	/* パララックス */
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(1){
		width: 125px;
		height: 235px;
		min-height: 235px;
		position: absolute;
		top: 120px;
		left: 22px;
		z-index: 2;
	}
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(2){
		width: 125px;
		height: 235px;
		min-height: 235px;
		position: absolute;
		top: 160px;
		left: 157px;
		z-index: 2;
	}
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(3){
		width: 125px;
		height: 235px;
		min-height: 235px;
		position: absolute;
		top: 120px;
		left: 292px;
		z-index: 2;
	}
	.shop .cont03 .inner .prlximg_viewport .prlximg_target{
		top: -20px;
		height: 114%;
	}
	.shop .cont03 .inner .prlximg_viewport:nth-of-type(2) .prlximg_target{
		width: 142px;
		max-width: 142px;
		left: -17px;
	}

	.shop .cont03 .inner .cont{
		width: 100%;
		margin-top: 45px;
	}
	.shop .cont03 .inner .cont h3{
		font-size: 18px;
		line-height: 1;
		margin-bottom: 22px;
		overflow: hidden;
	}
	.shop .cont03 .inner .cont h3 span{
		display: inline-block;
		position: relative;
	}
	.shop .cont03 .inner .cont h3 span::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 20px);
		transform: translateY(-50%);
		content: "";
		background: #333;
		width: 400px;
		height: 1px;
	}
	.shop .cont03 .inner .cont .access_box{
		display: flex;
		flex-direction: column;
		gap: 14px 0;
		background: #fff;
		padding: 20px;
		box-sizing: border-box;
	}
	.shop .cont03 .inner .cont .access_box .in_box h4{
		font-size: 16px;
		line-height: 2;
	}
	.shop .cont03 .inner .cont .access_box .in_box h4::before{
		content: "・";
	}
	.shop .cont03 .inner .cont .access_box .in_box .text01{
		padding-left: 1em;
		font-size: 16px;
	}
	.shop .cont03 .g_map iframe{
		display: block;
		width: 100%;
		height: 270px;
		vertical-align: bottom;
	}



/* works_archive
------------------------------------------------------------------------*/
/* cont01 */
.works_archive .cont01 {
	margin: 60px auto;
}
.works_archive .cont01 .cont {
	width: 380px;
	background: var(--main-light-color);
	margin-bottom: 30px;
}
.works_archive .cont01 .cont a{
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	padding: 25px;
	background: var(--main-light-color);
	position: relative;
}
.works_archive .cont01 .cont .text-box {
	position: relative;
}
.works_archive .cont01 .cont h2 {
	font-size: 18px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #999999;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.works_archive .cont01 .cont .info {
	font-size: 14px;
	color: #999999;
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-bottom: 10px;
}
.works_archive .cont01 .cont .text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.works_archive .cont01 .cont .cate_box{
	line-height: 1;
	margin-bottom: 15px;
}
.works_archive .cont01 .cont .cate_box p{
	display: inline-block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
	max-width: 142px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.works_archive .cont01 .cont .cate_box p:nth-of-type(2){
	background: var(--main-color);;
}
.works_archive .cont01 .cont .img{
	margin-bottom: 20px;
}


/* .works_single
------------------------------------------------------------------------*/
.works_single .cont01{
	margin: 70px auto;
}
.works_single .cont01 .title{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 16px;
	line-height: 1;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 380px;
}
.works_single .cont01 .cate_box{
	line-height: 1;
	margin-bottom: 20px;
}
/*
.works_single .cont01 .cate_box p{
	display: inline-block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	margin-bottom: 10px;
	font-size: 14px;
	color: #fff;
	height: 19px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 380px;
}
.works_single .cont01 .cate_box p:nth-of-type(2){
	background: var(--main-color);;
}
*/

.works_single .cont01 .cate_box p{
	display: inline-block;
	margin-bottom: 10px;
}
.works_single .cont01 .cate_box p a{
	display: block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 380px;
}
.works_single .cont01 .cate_box p:nth-of-type(2) a{
	background: var(--main-color);;
}



.works_single .cont01 .info{
	margin-bottom: 30px;
}
.works_single .cont01 .info span{
	display: inline-block;
	padding-right: 20px;
}


.works_single .cont03 {
	margin: 60px auto;
}
.works_single .cont03 .cont {
	width: 380px;
	background: var(--main-light-color);
	margin-bottom: 30px;
}
.works_single .cont03 .cont a{
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	padding: 25px;
	background: var(--main-light-color);
	position: relative;
}
.works_single .cont03 .cont .text-box {
	position: relative;
}
.works_single .cont03 .cont h2 {
	font-size: 18px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #999999;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.works_single .cont03 .cont .info {
	font-size: 14px;
	color: #999999;
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-bottom: 10px;
}
.works_single .cont03 .cont .text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.works_single .cont03 .cont .cate_box{
	line-height: 1;
	margin-bottom: 15px;
}
.works_single .cont03 .cont .cate_box p{
	display: inline-block;
	background: var(--main-dark-color);;
	line-height: 1;
	padding: 7px 10px 0;
	font-size: 14px;
	color: #fff;
	height: 19px;
	max-width: 142px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.works_single .cont03 .cont .cate_box p:nth-of-type(2){
	background: var(--main-color);;
}
.works_single .cont03 .cont .img{
	margin-bottom: 20px;
}


/* price
------------------------------------------------------------------------*/
/* cont01 */
.price .cont01{
	margin: 70px 0;
}
.price .cont01 .inner .ttl{
	font-size: 20px;
	line-height: 1;
	color: var(--main-color);
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
.price .cont01 .inner h2 {
	font-size: 24px;
	line-height: 1;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	text-align: center;
}
.price .cont01 .inner h2 span{
	color: #777;
	font-size: 12px;
	font-weight: bold;
}
.price .cont01 .inner .text01{
	margin-top: 30px;
}
.price .cont01 .inner .table_wrap{
	padding: 30px 0 15px;
	margin-right: -30px;
	overflow-x: auto;
	box-sizing: border-box;
}
.price .cont01 .inner table{
	width: 1000px;
	margin-right: 30px;
	border-collapse: separate;
	border-spacing: 5px;
}
.price .cont01 .inner table th,
.price .cont01 .inner table td{
	line-height: 1.2;
	padding: 15px 25px;
	box-sizing: border-box;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.05);
}
.price .cont01 .inner table th{
	color: #fff;
	background: var(--main-color);
	font-weight: bold;
	text-align: left;
}
.price .cont01 .inner table thead th{
	background: var(--main-dark-color);
}
.price .cont01 .inner table td{
	background: #fff;
}
.price .cont01 .inner .table_set .text02{
	font-size: 14px;
}



/* faq
------------------------------------------------------------------------*/
.faq .cont01 {
	box-sizing: border-box;
	margin: 70px 30px;
}
.faq .cont01 .box {
	padding: 30px 30px 30px 27px;
	border-top: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.faq .cont01 .box span {
	position: absolute;
	top: 35px;
	right: 10px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p {
	position: relative;
}
.faq .cont01 .box .qus::before {
	content: 'Q';
	position: absolute;
	top: -2px;
	left: -20px;
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}
.faq .cont01 .box .qus {
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
}
.faq .cont01 .box.active .qus {
	color: #bbbbbb;
}
.faq .cont01 .box .ans {
	line-height: 2;
	padding-top: 15px;
	display: none;
}


/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 22px;
	text-align: center;
	padding-bottom: 25px;
	font-weight: bold;
	position: relative;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 12px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "OUTLINE";
}
.company .cont03 h2::before {
	content: "Specified Commercial Transaction Law";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
	font-size: 14px;
}
.company table tr {
	border-top: 1px solid #fff;
	padding: 20px;
	display: block;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}
.company table td {
	display: block;
}


/* cont01 */
.company .cont01 {
	margin: 60px auto;
	padding: 0 30px;
}
.company .cont01 .flex {
	margin-top: 20px;
}
.company .cont01 .flex .text_box {
	padding-top: 25px;
	line-height: 1.9;
}
.company .cont01 .flex .text_box h3 {
	font-size: 18px;
	padding-bottom: 12px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 18px;
	margin-top: 15px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 14px;
	font-weight: bold;
}
.company .cont01 .flex .img img {
	width: 100%;
	border-radius: 10px;
}


/* cont02 */
.company .cont02 {
	margin: 60px auto;
	padding: 60px 0;
	background: var(--main-light-color);
}


/* cont03 */
.company .cont03 {
	/* margin: 60px auto; */
	margin: 60px auto 0;
	padding: 0 30px;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}



/* recruit
------------------------------------------------------------------------*/
.recruit .cont01{
	display: flex;
	flex-direction: column;
	margin: 70px 0;
	gap: 60px 0;
}
.recruit .cont01 .inner{
	display: flex;
	flex-direction: column-reverse;
	gap: 25px;
}
.recruit .cont01 .inner .text_box .ttl{
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 23px;
}
.recruit .cont01 .inner .text_box .catch{
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	padding: 20px 0;
	margin-bottom: 20px;
}
.recruit .cont01 .inner .text_box .btn{
	margin-top: 25px;
}
.recruit .cont01 .inner .img{
	width: 380px;
	height: 250px;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
}
.recruit .cont01 .inner .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


.recruit .cont02{
	background: var(--main-light-color);
	padding: 70px 0;
}
.recruit .cont02 h2{
	font-size: 22px;
	text-align: center;
	padding-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height:1;
}
.recruit .cont02 h2::before {
	content: '';
	font-size: 14px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "REQUIREMENTS";
}
.recruit .cont02 .link{
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	gap: 20px;
	margin: 40px 0 50px;
}
.recruit .cont02 .link li{
	text-align: center;
}
.recruit .cont02 .link li a{
	display: block;
	min-width: 150px;
	border: 1px solid var(--main-color);
	background: var(--main-color);
	color:#fff;
	padding-top: 15px;
	height: 31px;
	line-height: 1;
	border-radius: 30px;
	font-weight: bold;
}
.recruit .cont02 .job_box{
	background: #fff;
	padding: 50px 30px;
	box-sizing: border-box;
	margin:0 30px 30px;
}
.recruit .cont02 .job_box:last-of-type{
	margin-bottom: 0;
}

.recruit .cont02 .job_box h3{
	font-size: 20px;
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 40px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
.recruit .cont02 .job_box h3::after{
	content: "";
	display: block;
	width:20px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
.recruit .cont02 .job_box table,
.recruit .cont02 .job_box tr,
.recruit .cont02 .job_box td,
.recruit .cont02 .job_box th{
	display: block;
}

.recruit .cont02 .job_box table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
}
.recruit .cont02 .job_box table tr {
	border-top: 1px solid var(--main-color);
}
.recruit .cont02 .job_box table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.recruit .cont02 .job_box table th {
	padding: 23px 20px 20px;
	font-weight: bold;
	vertical-align: middle;
	line-height: 1.5;
}
.recruit .cont02 .job_box table td {
	padding: 0 20px 20px;
	vertical-align: middle;
	line-height: 1.5;
}



/*blog 共通項目
--------------------------------------------------------------------------*/
.blog .flex{
	margin:70px auto;
}
.blog .flex .side .side_box01,
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 70px 0;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side h2 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.blog .flex .side h2::before {
	content: "";
	color: var(--main-color);
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 h2::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 h2::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 h2::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	padding-left: 15px;
	font-size: 14px;
}
.blog .flex .side .cont .text_box h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog .flex .side .cont .img img {
	max-width: 100%;
	border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img {
	position: relative;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: var(--main-color);
	line-height: 25px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
	background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
	background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
	background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "new";
	width: 50px;
	height: 25px;
	line-height: 1;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: var(--main-color);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


/* blog_archive
------------------------------------------------------------------------*/

.blog_archive .cont01 .cont{
	width: 330px;
	margin:0 auto 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--main-color);
}
.blog_archive .cont01 .cont a {
	display: flex;
	flex-direction: column-reverse;
}
.blog_archive .cont01 .cont h2 {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.blog_archive .cont01 .cont .text_box .cate_box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	min-width: 95px;
	padding: 7px 15px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	margin: 10px 0;
}
.blog_archive .cont01 .cont .text {
	margin-top: 5px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.blog_archive .cont01 .cont .img{
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog_archive .cont01 .cont .img img {
	background: var(--main-light-color);
	border-radius: 5px;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
/*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
	box-sizing: border-box;
	margin: 0;
}*/

.blog_single .cont01 .cate_box .cate {
	text-align: center;
}
.blog_single .cont01 .cate_box .cate a{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}

.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}



/* contact
------------------------------------------------------------------------*/
.contact .cont01,
.contact .cont02 {
	background: url("img/bg_pattern.png");
}


/* cont01 */
.contact .cont01 {
	width: 100%;
	padding: 70px 30px 0;
	box-sizing: border-box;
	margin: 0 auto;
}
.contact .cont01 .tel-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 .line-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 h2{
	font-size: 18px;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	margin-top: 5px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
}
.contact .cont01 .lead {
	margin-top: 15px;
	font-size: 16px;
	line-height: 1.8;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	padding: 15px 30px 15px 70px;
	border-radius: 30px;
	background: url(img/contact-line_sp.png) no-repeat center left 30px #00b12b;
}


/* cont02 */
.contact .cont02 {
	margin: 0 auto;
	padding: 30px 30px 70px;
}
.contact .cont02 h2{
	font-size: 18px;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 15px;
	font-size: 16px;
	line-height: 1.8;
}
.contact .cont02 .lead li:nth-of-type(n+2) {
	margin-top: 10px;
}
.contact .cont02 table{
	width:100%;
	margin: 20px auto 0;
	font-size: 16px;
}
.contact .cont02 table tr {
	display: block;
	padding: 20px 0;
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table tr:first-of-type {
	border-top: none;
}
.contact .cont02 table th{
	display: block;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-bottom: 15px;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	padding: 7px 15px;
	font-size: 14px;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.contact .cont02 table td{
	display: block;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td input[type="date"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size: 18px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px;
	border: none !important;
	background: var(--main-light-color);
	border-radius: 3px !important;
}
.contact .cont02 table td textarea{
	height: 250px !important;
}
.contact .cont02 tr.address-contact td {
	position: relative;
	padding-top: 30px;
}
.contact .cont02 tr.address-contact td span {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 16px;
}
.contact .cont02 tr.address-contact input:first-of-type {
	width: 150px !important;
	margin-right: 5px;
}
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 220px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-top: 10px !important;
}
.contact .cont02 tr td.reserve-datetime{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.contact .cont02 tr td.reserve-datetime select{
	width: 166px !important;
}
.contact .cont02 tr td.reserve-datetime .label01,
.contact .cont02 tr td.reserve-datetime .label02{
	width: 100%;
	font-weight: bold;
}
.contact .cont02 tr td.reserve-datetime .tilde{
	margin: 0 5px;
	font-weight: bold;
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 20px;
	font-size: 18px;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	background: url(img/mfp_error.gif) no-repeat top 7px left 30px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	border-radius: 3px;
	margin: 0 5px !important;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px !important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input[type="submit"] {
	font-family: var(--main-font) !important;
	width: 360px;
	border-radius: 3px;
	line-height: 1;
	padding: 18px 0;
	font-size: 18px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: #333;
}


/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
	padding: 50px 15px 70px;
	background: url("img/bg_pattern.png");
	text-align: center;
}
.thanks .cont01 h2{
	text-align: center;
	font-size: 18px;
}
.thanks .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.thanks .cont01 .button {
	margin-top: 40px;
}
.thanks .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	padding: 70px 30px 0;
	background: url("img/bg_pattern.png");
	position: relative;
}
.privacy .cont01_2 {
	padding-bottom: 80px;
}
.privacy .cont01 h2 {
	font-size: 24px;
	text-align: center;
}
.privacy .cont01_2 h2 {
	line-height: 1.5;
}
.privacy .cont01 .text01 {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 25px;
	border-bottom: 1px dashed var(--main-color);
}
.privacy .cont01 .box:first-of-type {
	margin-top: 30px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
}
.privacy .cont01 .box h3 {
	font-size: 18px;
}
.privacy .cont01 .img {
    width: 75px;
    position: absolute;
    top: 0;
    right: 20px;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	margin-top: 10px;
	font-size: 14px;
}
.privacy .cont01 .box .text02 span {
	font-weight: bold;
}
.privacy .cont01 .box .text02 a {
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li {
	font-size: 14px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 10px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	display: inline-block;
	padding: 25px;
	background: var(--main-light-color);
	margin-top: 20px;
	font-size: 14px;
}
.privacy .cont01 .text04 {
	margin-top: 10px;
	text-align: right;
}


/* yonmaruyon yonichimaru
------------------------------------------------------------------------*/

.yonmaruyon .cont01,
.yonichimaru .cont01{
	padding: 50px 0 80px;
	background: url("img/bg_pattern.png");
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2{
	text-align: center;
	font-size: 20px;
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button ,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}


/* contact_box
------------------------------------------------------------------------*/
.contact_box{
	color: #fff;
	padding: 60px 0 65px;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
/* パララックス */
.contact_box .prlximg_viewport{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.contact_box .prlximg_target{
	top: -100px;
}
.contact_box .inner{
	text-align: center;
    position: relative;
    z-index: 2;
}
.contact_box .inner h2{
	color: transparent;
}
.contact_box .inner h2::before{
	content: "Reservation/Contact";
	font-size: 14px;
	line-height: 1;
	color: #b5934d;
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.contact_box .inner .text01{
	margin: 15px 0 35px;
	font-size: 16px;
}
.contact_box .inner .btn_box{
	display: flex;
	gap: 15px 0;
	flex-direction: column;
	align-items: center;
}
.contact_box .inner .btn_box .tel{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px 0;
	position: relative;
}
.contact_box .inner .btn_box .tel::before{
	content: "";
	background: url("img/tel_icon01.svg")no-repeat;
	background-size: 18px;
	width: 18px;
	height: 23px;
	position: absolute;
	top: 0;
	left: 0;
}
.contact_box .inner .btn_box .tel a{
	display: block;
	width: 214px;
	height: 26px;
	background: url("img/tel_text01.svg")no-repeat;
	background-size: 100%;
	margin-left: 25px;
	padding: 26px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
.contact_box .inner .btn_box .button a{
	display: block;
	width: 310px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2) url("img/mail_icon01.svg")left 106px center no-repeat;
	background-size: 13px;
	border-radius: 3px;
	padding-left: 20px;
	border: 1px solid transparent;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
}



/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 30px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: var(--main-light-color);
	border-radius: 10px;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 30px;
	line-height: 1.2;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 25px;
}
.post_cont .index_nav ul li a {
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 14px;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 20px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:20px;
	height: 20px;
	background: var(--main-color);
	position: absolute;
	top:2px;
	left:0;
}

.post_cont h4{
	font-size:18px;
	border-left:5px solid var(--main-color);
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:16px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: var(--main-color);
}
.post_cont a{
	text-decoration: underline;
	color:var(--main-color);
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
	font-size: 14px;
	line-height: 1.5;
}
.post_cont table th{
	background: var(--main-color);
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: var(--main-dark-color);
}
.post_cont table td{
	background: var(--main-light-color);
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: var(--main-light-color);
	padding: 50px;
	border-left: 3px solid var(--main-color);
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 100px;
	color:var(--main-color);
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 10px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 10px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	line-height: 48px;
	min-width: 380px;
	height: 50px;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
	border-radius: 10px;
}



/* footer
------------------------------------------------------------------------*/
footer{
	color: #fff;
	background: #1e1e1e;
	position: relative;
	z-index: 2;
}
footer .inner{
	padding: 80px 40px 200px;
	position: relative;
}
footer .inner .logo a{
	display: block;
	width: 145px;
	height: 43px;
	background: url("img/footer_logo.svg")no-repeat;
	background-size: 100%;
	padding: 43px 0 0;
	box-sizing: border-box;
	overflow: hidden;
}
footer .inner .info_box address p{
	font-size: 16px;
}
footer .inner .info_box address .place{
	margin-top: 25px;
}
footer .inner .info_box address .tel::before{
	content: "Tel：";
}
footer .inner .info_box address .opentime::before{
	content: "営業時間：";
}
footer .inner .info_box .sns a{
	display: block;
	width: 15px;
	height: 15px;
	background: url("img/sns_icon01.svg")no-repeat;
	background-size: 100%;
	padding: 15px 0 0;
	box-sizing: border-box;
	overflow: hidden;
	position: absolute;
	bottom: 160px;
	left: 40px;
}
footer .inner .info_box .copy{
	position: absolute;
	bottom: 100px;
	left: 40px;
	color: #777;
	font-size: 12px;
}
footer .inner .sitemap_box{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 25px;
	margin-top: 35px;
}
footer .inner .sitemap_box li a{
	font-size: 14px;
	line-height: 3.857;
	color: #fff;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}



}/*SPの記述ここまで*/





/* swiper
----------------------------------------------------------*/

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}





/*mail form pro
----------------------------------------------------------*/
div#mfp_hidden {
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0px;
	margin: 0px;
}
div#mfp_hidden input {
	margin: 10px;
}
div.mfp_thanks {
	padding: 30px;
}
div.mfp_thanks p {
	line-height: 1.7em;
}
div.mfp_thanks ul.mfp_caution {
	margin: 0px;
	padding: 0px;
}
div.mfp_thanks ul.mfp_caution li {
	display: block;
	color: #C00;
	margin: 0px;
	padding: 5px 0px;
}
div#mfp_thanks {
	text-align: center;
	font-size: 18px;
	padding: 20px 0px;
}
div#mfp_thanks strong {
	color: #C00;
	font-size: 24px;
}
form#mailformpro dl dt {
	float: left;
	width: 160px;
	clear: both;
	font-size: 12px;
	padding: 10px 0px;
	text-align: right;
	border-top: solid 1px #CCC;
	margin: 0px;
}
form#mailformpro dl dd {
	border-top: solid 1px #CCC;
	margin: 0px;
	padding: 10px 5px 20px 170px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
}
form#mailformpro dl dd ul,form#mailformpro dl dd ol {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd ul li,form#mailformpro dl dd ol li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
form#mailformpro .must {
	display: block;
	background-color: #C00;
	border: solid 2px #C00;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro .optionally {
	display: block;
	background-color: #06C;
	border: solid 2px #06C;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro label {
	border-radius: 3px;
	margin: 3px;
	display: inline-block;
	white-space: nowrap;
}
table#mfp_confirm_table {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	border-top: solid 1px #CCC;
	padding: 9px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
div#mfp_phase_confirm {
	clear: both;
}
div#mfp_phase_confirm h4 {
	font-size: 36px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}
div#mfp_overlay {
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_overlay_inner {
	background-color: #FFF;
	padding: 15px;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 640px;
	max-width: 90%;
}
div#mfp_overlay_background {
	background-color: #000;
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_loading_screen {
	z-index: 20000;
	opacity: 0.8;
	display: none;
	background-color: #000;
	position: absolute;
}
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(img/mfp_loading.gif);
}
.mfp_colored {
	background-color: #F6F7F9;
}
.mfp_achroma {
	background-color: #FFF;
}
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 14px;
	line-height: normal;
	background-image: url(img/mfp_error.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
}
.mfp_parent_error {
	border: solid 2px #F00;
}
form#mailformpro .problem {
	background-color: #FCC;
}
div#mfp_error {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
}
div#mfp_error p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_error p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_warning {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
	border-radius: 5px;
}
div#mfp_warning p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_warning p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_price {
	color: #C00;
	font-size: 36px;
	padding: 10px;
	font-weight: bolder;
}
div#mfp_price span {
	color: #666;
	font-size: 12px;
	font-weight: normal;
}
button.mfp_next,button.mfp_prev {
	font-size: 18px;
	margin: 10px;
	padding: 5px 10px;
}
button.mfp_next {
	float: right;
}
button.mfp_prev {
	float: left;
}
ul#mfp_phase_stat {
	padding: 10px;
	text-align: center;
}
ul#mfp_phase_stat li {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 5px;
	margin: 0px 5px;
	list-style: none;
	font-size: 14px;
}
ul#mfp_phase_stat li.mfp_phase_arrow {
	box-shadow: none;
	color: #999;
	padding: 8px 0px;
}
ul#mfp_phase_stat li.mfp_active_phase {
	box-shadow: 0px 1px 6px #000;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #0068B7;
	border: solid 2px #0068B7;
	font-weight: bolder;
	color: #FFF;
	text-shadow: 0px 1px 3px #000;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #EEE;
	border: solid 2px #EEE;
	color: #999;
	box-shadow: 0px 1px 6px #CCC;
}
div#mfp_shopping_cart {
	border: solid 1px #CCC;
	margin: 0px;
	padding: 0px;
}
div#mfp_shopping_cart p {
	margin: 0px;
	text-align: center;
	padding: 20px 10px;
	font-size: 12px;
	background-color: #FEE;
}
table.mfp_shoppingcart {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table.mfp_shoppingcart thead tr td {
	background-color: #EEE;
	border-bottom: solid 1px #CCC;
	text-align: center;
	font-size: 12px;
	padding: 5px;
}
table.mfp_shoppingcart tbody tr th,table.mfp_shoppingcart tbody tr td {
	font-size: 12px;
	padding: 5px;
	border-bottom: solid 1px #CCC;
}
table.mfp_shoppingcart tbody tr td select {
	display: block;
	margin: 0px auto;
	text-align: center;
}
table.mfp_shoppingcart tbody tr td select option {
	text-align: center;
}
table.mfp_shoppingcart tbody tr th span {
	display: block;
	font-weight: normal;
	font-size: 10px;
	color: #666;
	padding: 3px 0px;
}
table.mfp_shoppingcart tfoot tr td {
	padding: 5px;
	font-size: 16px;
	font-weight: bolder;
	color: #900;
}
td.msc_price {
	font-size: 12px;
	text-align: right;
}
div.mfp_buttons {
	clear: both;
	padding: 10px 0px;
	text-align: center;
}
div.mfp_buttons button#mfp_button_send {
	padding: 10px 100px;
	background-color: #b5934d;
	border: 1px solid #b5934d;
	color: #FFFFFF;
	cursor: pointer;
}
div.mfp_buttons button#mfp_button_cancel {
	padding: 10px 100px;
	border: 1px solid #b5934d;
	color: #b5934d;
	cursor: pointer;
	background:#fff;
}
.imagebutton {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	background: none;
}
.mfp_element_checkbox,
.mfp_element_radio {
	vertical-align: middle;
	margin: 0px 2px;
}
.mfp_element_file {
	font-size: 12px;
	display: inline-block;
	padding: 10px 10px;
	vertical-align: middle;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
.mfp_element_reset {
	color: #333;
}
button.mfp_next,button.mfp_prev {
	font-size: 14px;
}
input#mfp_reserve_item,input#mfp_reserve_date {
	display: none;
}
div#mfp_reserve_wrapper {
	position: relative;
	overflow: hidden;
	border: solid 1px #CCC;
}
div#mfp_reserve_inner {
	position: relative;
	padding: 0px 0px 0px 100px;
	overflow: auto;
}
div#mfp_reserve_wrapper table {
	border-spacing: 0px;
	border-collapse: collapse;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_label {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	background-color: #FEE;
	z-index: 100;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value {
	padding: 0px 0px 0px 0px;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
	cursor: pointer;
}
@media screen and (min-width: 441px){
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
	background-color: #E8EEF9;
}
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
	background-color: #0068B7;
	color: #FFF;
}
td.mfp_reserve_disabled {
	background-color: #CCC;
}
td.mfp_reserve_warning {
	background-color: #FFC;
}
div#mfp_reserve_wrapper table tr td,div#mfp_reserve_wrapper table tr th {
	border: solid 1px #CCC;
	padding: 0px 5px;
	font-size: 12px;
	text-align: center;
	font-family: Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-weight: normal;
	height: 20px;
	text-align: left;
}
td.mfp_reserve_week_0 {
	color: #F00;
	background-color: #FEE;
}
td.mfp_reserve_week_6 {
	color: #00F;
	background-color: #EEF;
}
div.mfp_ok {
	border: solid 1px #111;
	display: inline-block;
	padding: 1px 10px;
	margin-top: 5px;
	color: #111;
	font-size: 12px;
	display: none;
}
div.prefcodeWrapper {
	position: relative;
}
div.prefcodeResult {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 5px;
	border: solid 1px #CCC;
	background-color: #FFF;
	box-shadow: 0px 0px 5px #CCC;
	display: none;
}
div.prefcodeResult div {
	cursor: pointer;
}
@media screen and (min-width: 441px){
div.prefcodeResult div:hover {
	background-color: #C9EBFB;
}
}
div.prefcodeResult div.prefcodeNext {
	background-color: #EEE;
	text-align: center;
}
div.prefLoading {
	padding: 60px 100px;
	background: url(img/mfp_zip_loading.gif) no-repeat center center;
}
.hidefield {
	height: 0px;
	overflow: hidden;
}
.showfield {
	height: auto;
	overflow: visible;
}
div.mfp_attached_thumbnails {
	display: none;
	padding: 5px;
	margin: 5px auto;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
div.mfp_attached_thumbnails ul {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	border: solid 4px #FFF;
	margin: 5px;
	box-shadow: 0px 2px 5px #999;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
	display: block;
	max-height: 100px;
	overflow: hidden;
}
div.mfp_attached_thumbnails ul li a img {
	display: block;
	max-width: 80px;
}
button.mfp_attached_reset {
	font-size: 14px;
}
div#mfp_OperationCheck div#mfp_OperationCheck_inner {
	display: none;
}
div#mfp_OperationCheck strong {
	background: #090;
	display: block;
	color: #222;
	text-align: center;
	border-radius: 3px;
}
div#mfp_OperationCheck * {
	padding: 0px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p {
	padding: 0px 5px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p a {
	color: #0C0;
	text-decoration: none;
}
@media screen and (min-width: 441px){
div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
	text-decoration: underline;
}
}
div#mfp_OperationCheck p button {
	border: none;
	background: none;
	color: #0C0;
	cursor: pointer;
}
div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
	line-height: 12px;
	font-size: 12px;
	list-style: none;
	vertical-align: middle;
}
div#mfp_OperationCheck ul li {
	padding: 5px 10px;
}
div#mfp_OperationCheck ul li
{
	text-decoration: underline;
}
button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
	border-radius: 5px;
	padding: 5px 10px 5px 2em;
	border: solid 1px #CCC;
	background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -moz-linear-gradient(top, #EEE, #CCC);
	background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
	text-shadow: 0px 2px 0px #FFF;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	display: inline-block;
	margin: 5px auto;
}
button#mfp_recorder_record {
	background: url(img/mfp_record_disabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_clear {
	background: url(img/mfp_record_remove.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_restore {
	background: url(img/mfp_record_restore.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
	background: url(img/mfp_record_enabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
div#mfp_recorder_wrap {
	border: solid 1px #CCC;
	padding: 10px;
	text-align: center;
	margin: 5px auto;
}
td.request_image {
	width: 100px;
}
td.request_image img {
	max-width: 100px;
}
span.mfp_tips {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #FCC;
	display: block;
	border-radius: 5px;
	padding: 10px;
	margin: 2px;
	box-shadow: 0px 2px 10px #999;
}
span.mfp_tips strong {
	color: #800040;
}
span.mfp_tips span {
	display: block;
	padding: 10px;
	color: #008080;
}
span.mfp_tips em {
	font-style: normal;
	color: #090;
	font-weight: bold;
}
@media screen and (max-width: 1240px) {
	div#mfp_overlay_background{
		width:1240px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:1240px !important;
	}
}
@media screen and (max-width: 800px) {
	form#mailformpro dl dt {
		float: none;
		width: auto;
		font-size: 12px;
		padding: 5px;
		text-align: left;
	}
	form#mailformpro dl dd {
		clear: both;
		border-top: none;
		padding: 5px 15px;
		font-size: 12px;
		line-height: 1.5em;
	}
	div.mfp_buttons button {
		font-size: 14px;
	}
	div#mfp_phase_confirm h4 {
		font-size: 18px;
	}
	ul#mfp_phase_stat {
		padding: 0px;
		text-align: left;
	}
	ul#mfp_phase_stat li {
		text-align: center;
		padding: 5px 0px;
		border-radius: 3px;
		margin: 5px;
		list-style: none;
		font-size: 14px;
		width: 28%;
	}
	ul#mfp_phase_stat li.mfp_phase_arrow {
		bos-shadow: none;
		display: none;
	}
	table#mfp_confirm_table tr th {
		white-space: nowrap;
		width: 150px;
	}
	div#mfp_thanks {
		text-align: center;
		font-size: 18px;
		padding: 20px 0px;
	}
	div#mfp_thanks strong {
		color: #C00;
		font-size: 24px;
		display: block;
	}
}

@media screen and (max-width: 441px) {
	div#mfp_overlay_background{
		width:440px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:440px !important;
	}
	div#mfp_overlay_inner{
		width:390px;
		max-width:none;
	}
	div.mfp_buttons button#mfp_button_send {
		padding: 10px 0;
		width:300px;
		margin-bottom: 10px;
	}
	div.mfp_buttons button#mfp_button_cancel {
		padding: 9px 0;
		width:300px;
		margin-right: 3px;
	}
}

body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}