@charset "utf-8";

/*==================================================================
	Import setting
===================================================================*/
@import url("import/reset.css");
@import url("import/util.css");

/*==================================================================
	Common setting
===================================================================*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	background: #fff;
	font-size: 62.5%;
}

body {
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Serif JP', serif;
	opacity: 0;
	visibility: hidden;
	transition: all ease-out 0.4s;
	overflow-x: hidden;
}

body.loaded {
	opacity: 1;
	visibility: visible;
}

.page {
	color: #333;
	font-size: 14px;
	line-height: 1.71;
	letter-spacing: 0.1em;
}

/* .ja { font-family: 'Noto Serif JP', serif; font-style: normal; } */

/* .qwitcherGrypen {font-family: 'Qwitcher Grypen', cursive;} */

.cormorantInfant {font-family: 'Cormorant Infant', serif;}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.white {
	color: #ffffff;
}

.gold {
	color: #a29056;
}

.vrl {
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

.fade-fog {
	opacity: 0;
	-webkit-filter: blur(20px);
	filter: blur(20px);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out, -webkit-filter 1s ease-out;
	transition: opacity 1s ease-out, -webkit-transform 1s ease-out, -webkit-filter 1s ease-out;
	transition: transform 1s ease-out, opacity 1s ease-out, filter 1s ease-out;
	transition: transform 1s ease-out, opacity 1s ease-out, filter 1s ease-out, -webkit-transform 1s ease-out, -webkit-filter 1s ease-out;
	visibility: hidden;
	backface-visibility: hidden;
}

.fade-fog.on {
	visibility: visible;
	opacity: 1;
	transform: scale(1.0);
	-webkit-filter: blur(0);
	filter: blur(0);
}

.sec_inner {
	margin: 0 auto;
	max-width: 1170px;
	width: 92%;
}

.pc,
.pc_only {
	display: block !important;
}

.sp,
.sp_only {
	display: none !important;
}

.ipad,
.ipad_only {
	display: block !important;
}

@media screen and (max-width: 767px) {
	.pc_only {
		display: none !important;
	}

	.sp_only {
		display: block !important;
	}
}

a {
	text-decoration: none;
}

a.disable {
	color: #999999 !important;
	cursor: default;
}

a.disable:hover {
	opacity: 1;
}

figure {
	margin: 0;
	padding: 0;
}

img.full {
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media only screen and (max-width:1000px) {
	.bg {
		padding: 0;
	}

	.ipad_only {
		display: none !important;
	}
}

a {
	background-color: transparent;
	background-image: none;
	background-repeat: no-repeat;
	background-position: top left;
	color: #333333;
	text-decoration: none;
}


a:hover {
	opacity: 0.8;
}

/*==================================================================
	Header setting
===================================================================*/
@media only screen and (min-width:1001px) {
	#btn-hambeger {
		cursor: pointer;
		padding: 14px 17px 20px;
		position: fixed;
		right: 4.5%;
		top: 8.3vh;
		transition: all 0.4s;
		z-index: 1001;
		background-color: #312E46;
	}

	#btn-hambeger .menu {
		color: #fff;
		font-size: 1.3rem;
		font-family: 'Cinzel', 'Noto Serif JP', serif;
		letter-spacing: 0.015em;
		font-weight: 500;
		transition: all 0.4s;
	}

	#btn-hambeger .lines {
		position: relative;
		height: 22px;
		width: 44px;
	}

	#btn-hambeger .lines span {
		background: #fff;
		display: block;
		height: 1px;
		width: 100%;
		position: absolute;
		left: 0;
		transition: all 0.4s;
	}

	#btn-hambeger .lines span:nth-child(1) {
		top: 0px;
	}

	#btn-hambeger .lines span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	#btn-hambeger .lines span:nth-child(3) {
		bottom: 0;
	}

	#btn-hambeger:hover .menu {
		color: #C8C9CA;
	}

	#btn-hambeger:hover .lines span {
		background: #C8C9CA;
	}


	#btn-hambeger.active .lines span:nth-child(1) {
		left: 0;
		top: 14px;
		transform: rotate(45deg);
	}

	#btn-hambeger.active .lines span:nth-child(2) {
		opacity: 0;
	}

	#btn-hambeger.active .lines span:nth-child(3) {
		bottom: 7px;
		left: 0;
		transform: rotate(-225deg);
	}

	.menu-hambeger {
		height: 100vh;
		max-width: 536px;
		width: 100%;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 999;
		padding-top: 7.5%;
		padding-bottom: 7.5%;
		padding-left: 3.4%;
		padding-right: 0;
		visibility: hidden;
		opacity: 0;
		transition: all 0.4s;
	}

	.menu-hambeger.active {
		opacity: 1;
		visibility: visible;
	}

	.menu-hambeger:after {
		background: rgba(55, 55, 59, 0.9);
		content: "";
		display: block;
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		transition: all 0.4s;
		transform: translateY(100%);

	}

	.menu-hambeger.active:after {
		transform: translateY(0);
	}

	.menu-body {
		width: 100%;
		height: 100%;
		margin-left: auto;
		position: relative;
		z-index: 1;
		transition: all 0.8s 0.75s;
		opacity: 0;
		visibility: hidden;
		overflow-y: scroll;
	}

	.menu-hambeger.active .menu-body {
		opacity: 1;
		visibility: visible;
	}

	.menu-body .links a {
		color: #F8F7F6;
	}

	.menu-body .links li {
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s;
		transform: translateY(105%);
	}

	/*.menu-body .links li:nth-child(1) { transition-delay:1.1s; }
	.menu-body .links li:nth-child(2) { transition-delay:1.2s; }*/
	.menu-hambeger.active .menu-body .links li {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.menu-body .navs-ttl {
		border-bottom: 0.5px solid #F8F7F6;
		color: #F8F7F6;
		font-size: 1.4rem;
		font-family: 'Cinzel', 'Noto Serif JP', serif;
		margin: 30px 0;
		max-width: 300px;
		width: 100%;
	}

	.menu-body .navs {
		display: flex;
		flex-direction: column;
		margin-bottom: 90px;
		padding-left: 41px;
	}

	.menu-body .navs li {
		display: block;
		margin-bottom: 12px;
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s;
		transform: translate(-10px, 105%);
	}

	.menu-body .navs li:after {
		content: "new";
		display: inline-block;
		position: absolute;
		left: -39px;
		top: 50%;
		transform: translateY(-50%);
		color: #bda586;
		font-size: 1.2rem;
		font-family: 'Cinzel', 'Noto Serif JP', serif;
		line-height: 1;
		opacity: 0;
	}

	.menu-body .navs li.new:after {
		opacity: 1;
	}

	/* .menu-body .navs li.off {
		opacity: 0.3 !important;
		pointer-events: none;
	} */

	/*.menu-body .navs li:nth-child(1) { transition-delay:1.00s; }
	.menu-body .navs li:nth-child(2) { transition-delay:1.05s; }
	.menu-body .navs li:nth-child(3) { transition-delay:1.10s; }
	.menu-body .navs li:nth-child(4) { transition-delay:1.15s; }
	.menu-body .navs li:nth-child(5) { transition-delay:1.20s; }
	.menu-body .navs li:nth-child(6) { transition-delay:1.25s; }
	.menu-body .navs li:nth-child(7) { transition-delay:1.30s; }
	.menu-body .navs li:nth-child(8) { transition-delay:1.35s; }
	.menu-body .navs li:nth-child(9) { transition-delay:1.40s; }
	.menu-body .navs li:nth-child(10) { transition-delay:1.45s; }*/
	.menu-hambeger.active .menu-body .navs li {
		opacity: 1;
		visibility: visible;
		transform: translate(0, 0);
	}

	.menu-body .navs li a {
		display: inline-block;
		position: relative;
		/* overflow: hidden; */
		min-width: 200px;
	}
	.menu-body .navs li.off a {
		display: inline-block;
		position: relative;
		/* overflow: hidden; */
		min-width: 200px;
		pointer-events: none;
		cursor: default;
	}

	.menu-body .navs li span {
		display: block;
		font-size: 1.6rem;
		line-height: 1.4;
		letter-spacing: 0.09em;
		transition: all 0.4s;
		white-space: nowrap;
		position: relative;
		font-family: 'Noto Serif JP', serif;
	}

	/* .menu-body .navs li.atarashie span {
		font-family: "Cormorant Garamond", serif;
	} */

	.menu-body .navs li span:before {
		background: #e8e8d7;
		content: "";
		display: inline-block;
		height: 0.5px;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		opacity: 0;
	}

	.menu-body .navs li.on span:before {
		opacity: 1;
	}


	.menu-body .navs li span:first-child {
		color: #e8e8d7;
		position: absolute;
		left: 0;
		top: 0;
		opacity: 1;
		visibility: visible;
	}

	.menu-body .navs li.off span:first-child {
		opacity: 0.5;
		cursor: default;
	}
	.menu-body .navs li.off a:hover {
		opacity: 1;
		cursor: default;
	}

	.menu-body .navs li a:hover span:first-child {
		opacity: 0;
		visibility: hidden;
	}

	.menu-body .navs li span:last-child {
		display: inline-block;
		opacity: 0;
		visibility: hidden;
		color: #e8e8d7;
	}
	


	.menu-body .navs li a:hover span:last-child {
		/* opacity: 0; */
		opacity: 1;
		visibility: visible;
	}
	.menu-body .navs li.off a:hover span:last-child {
		/* opacity: 0; */
		opacity: 0;
	}


	.menu-body .navs-foot {
		padding-left: 23px;
	}

	.menu-body .btns {
		max-width: 400px;
	}

	.menu-body .btns .items {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 5px;
	}

	.menu-body .btns li {
		max-width: 274px;
		width: 100%;
	}

	.menu-body .btns a {
		display: block;
		text-align: center;
		color: #37373B;
		background: linear-gradient(90deg, rgba(200, 201, 202, 1) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 85%, rgba(200, 201, 202, 1) 100%);
		padding: 3px 17px;
		width: 100%;
		font-size: 1.4rem;
		letter-spacing: 0.02em;
		transition: opacity .4s;
		font-family: 'Noto Serif JP', serif;
	}


	.menu-body02 .btns {
		position: fixed;
		right: 5px;
		top: 50%;
		z-index: 999;
		transform: translateY(-50%);
	}

	.menu-body02 .btns li {
		margin-bottom: 6px;
		position: relative;
		width: 50px;
	}

	.menu-body02 .btns li {
		opacity: 0;
		visibility: hidden;
		margin-bottom: 6px;
		transition: all 0.4s;
		transform: translateY(50px);
	}

	/*body.loaded .menu-body02 .btns li:nth-child(1) { transition-delay:1.1s; }
	body.loaded .menu-body02 .btns li:nth-child(2) { transition-delay:1.2s; }
	body.loaded .menu-body02 .btns li:nth-child(3) { transition-delay:1.3s; }*/
	body.loaded .menu-body02 .btns li {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.menu-body02 .btns li:before {
		background: rgba(0, 0, 0, 0.75);
		content: "";
		display: block;
		height: 0;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		-webkit-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
		-o-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
		transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
	}

	.menu-body02 .btns li:hover:before {
		height: 100%;
	}

	.menu-body02 .btns li a {
		background: rgba(000, 000, 000, 0.4);
		border: 1px solid #fff;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		letter-spacing: 0.1em;
		min-height: 140px;
		padding: 3px 0;
		position: relative;
		z-index: 1;
		text-decoration: none;
		text-align: center;
		transition: 0.2s;
	}

	.menu-body02 .btns li:hover a {
		color: #fff;
	}

	.menu-body02 .btns li a span {
		text-orientation: upright;
	}

	.menu-body .contact {
		opacity: 0;
		visibility: hidden;
		margin-top: 48px;
		transition: all 0.4s 1.1s;
		transform: translateY(105%);
		padding-left: 5px;
	}

	.menu-body .contact a {
		transition: opacity .4s;
	}

	.menu-hambeger.active .menu-body .contact {
		opacity: 1;
		visibility: visible;
		transform: translate(0, 0);
	}

	.menu-body .contact .ttl {
		color: #d5d1c9;
		font-size: 1.2rem;
		letter-spacing: 0.02em;
		margin-bottom: 6px;
	}

	.menu-body .contact .txt {
		color: #d5d1c9;
	}

	.menu-body .contact .txt img {
		height: 32px;
		margin-bottom: 5px;
	}

	.menu-body .contact .txt span {
		display: block;
		font-size: 1rem;
		line-height: 1.4;
		letter-spacing: 0.02em;
	}
}

@media only screen and (max-width:1000px) {
	/*
	#btn-hambeger {
		display: none;
	}

	.menu-hambeger {
		display: none;
	}
	*/
}

@media only screen and (max-width:640px) {
	.site-header {
		height: 140px;
	}

	.site-header .tools .head-btns li a {
		height: 55px;
		background-size: auto 40px;
	}

	.site-header .tools li.links a {
		background-image: url(../image/hdr-sp-map.png);
	}

	.site-header .tools li.tel a {
		background-image: url(../image/hdr-sp-tell.png);
	}

	.site-header .tools li.menu-button a {
		background-image: url(../image/hdr-sp-menu.png);
	}

	.site-header .tools li.menu-button.on a {
		background-image: url(../image/hdr-sp-close_ov.png);
	}

	.sp-navi {
		top: 55px !important;
	}
}

/* ----------------------------------------
 header-style only-pc 
*/
header {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	/*height: 100px;*/
	height: 95px;
	z-index: 100;
	padding-bottom: 20px;
}

#top header {
	background: rgba(255, 255, 255, 0);
}

header .body {
	position: relative;
}

header .title a:hover {
	opacity: 1;
}

header .title {
	padding: 0px 0 0 60px;
}

@media only screen and (min-device-width: 1001px) and (max-device-width: 1024px) {
	header .title {
		padding-left: 40px;
	}
}

header .title .placeName {
	padding-bottom: 2px;
	max-width: 140px;
	margin-top: 0 !important;
	width: 30%;
	vertical-align: bottom;
}

header .title img {
	float: left;
	vertical-align: bottom;
}

header .title img+img {
	margin-top: 7px;
}

header .text {
	position: absolute;
	top: 2.5vh;
	right: 5%;
	font-size: 12px;
	line-height: 1.2;
	color: #fff;
}

header .tools {
	position: absolute;
	right: 58px;
	top: 40px;
}

header .menu-button {
	display: none;
}

header .tools li {
	float: left;
	margin-left: 1px;
	position: relative;
}

header .tools li.links {
	text-align: left;
	padding-right: 9px;
}

header .tools li.links a {
	color: #ffffff;
	font-size: 12px;
	display: inline;
	margin-top: 3px;
	line-height: 8px;
}

#top header .tools li.links a {
	color: #fff;
}

#top header .tools li.links a:hover {
	color: #fff;
	opacity: 0.7;
}

header .tools li.links a:hover span {
	opacity: 0.7;
}

#top header .tools li.links a:hover {
	color: #fff;
}

header .tools li.links .outline {
	padding-top: 16px;
}

header .tools li.request a:hover,
header .tools li.request a:hover img,
header .tools li.reserve a:hover,
header .tools li.reserve a:hover img {
	opacity: 1;
}

header .tools li.request,
header .tools li.reserve,
.site-footer .btns .requestBtn,
.site-footer .btns .reserveBtn,
.site-footer .btns .remoteBtn {
	font-family: 'Noto Serif JP', serif;
}

header .tools li.request>span,
header .tools li.reserve>span,
.site-footer .btns .requestBtn>span,
.site-footer .btns .reserveBtn>span,
.site-footer .btns .remoteBtn>span {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 1001px) {
	header .tools {
		display: none;
	}

	header .tools li.requestBtn {
		border: 1px solid #ffffff;
		position: relative;
		overflow: hidden;
		height: 40px;
		width: 160px;
		text-align: center;
		line-height: 40px;
		color: #fff;
		font-size: 1.3em;
		letter-spacing: 0.2em;
		margin-left: 10px;
		background: transparent;
	}

	#top header .tools li.requestBtn {
		border: 1px solid #fff;
	}

	header .tools li.reserveBtn {
		border: 1px solid #ffffff;
		position: relative;
		overflow: hidden;
		height: 40px;
		width: 160px;
		text-align: center;
		line-height: 40px;
		color: #fff;
		font-size: 1.3em;
		letter-spacing: 0.2em;
		margin-left: 10px;
		background: transparent;
	}

	#top header .tools li.reserveBtn {
		border: 1px solid #fff;
	}

	header .tools li.remoteBtn {
		border: 1px solid #ffffff;
		position: relative;
		overflow: hidden;
		height: 40px;
		width: 160px;
		text-align: center;
		line-height: 40px;
		color: #fff;
		font-size: 1.3em;
		letter-spacing: 0.1em;
		margin-left: 10px;
		background: transparent;
	}

	#top header .tools li.remoteBtn {
		border: 1px solid #fff;
	}
}

header .tools li.requestBtn a,
header .tools li.reserveBtn a,
header .tools li.remoteBtn a {
	display: block;
	color: #fff;
}

#top header .tools li.requestBtn a,
#top header .tools li.reserveBtn a,
#top header .tools li.remoteBtn a {
	color: #fff;
}

#top header .tools .head-btns li.requestBtn:hover a,
#top header .tools .head-btns li.reserveBtn:hover a,
#top header .tools .head-btns li.remoteBtn:hover a,
#top .site-footer .btns li:hover a {
	color: #000;
}

header .tools .head-btns li.requestBtn:hover a,
header .tools .head-btns li.reserveBtn:hover a,
header .tools .head-btns li.remoteBtn:hover a,
.site-footer .btns li:hover a {
	color: #333;
}



#top header .tools li.requestBtn:hover:before,
#top header .tools li.reserveBtn:hover:before,
#top header .tools li.remoteBtn:hover:before,
#top .site-footer .btns .reserveBtn:hover:before,
#top .site-footer .btns .requestBtn:hover:before,
#top .site-footer .btns .remoteBtn:hover:before {
	width: 100%;
}

/* header .tools li.requestBtn:before,
header .tools li.reserveBtn:before,
header .tools li.remoteBtn:before,
.site-footer .btns .reserveBtn:before,
.site-footer .btns .requestBtn:before,
.site-footer .btns .remoteBtn:before {
	background: rgba(255, 255, 255, 0.7);
	content: "";
	display: block;
	height: calc(100% - 0px);
	width: 0;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
	-o-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
	transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
} */

header .tools li.requestBtn:hover:before,
header .tools li.reserveBtn:hover:before,
header .tools li.remoteBtn:hover:before,
.site-footer .btns .reserveBtn:hover:before,
.site-footer .btns .requestBtn:hover:before,
.site-footer .btns .remoteBtn:hover:before {
	width: 100%;
}

@-webkit-keyframes reflection {
	0% {
		left: -40%;
	}

	55% {
		left: 110%;
	}

	100% {
		left: 110%;
	}
}

@keyframes reflection {
	0% {
		left: -40%;
	}

	55% {
		left: 110%;
	}

	100% {
		left: 110%;
	}
}

.mc {
	margin: 0 auto;
}

@media screen and (min-width: 1001px) {
	.sp-navi {
		display: none !important;
	}

	header .title .placeName {
		display: inline-block;
		height: auto;
		position: absolute;
		z-index: 9999;
	}

}

/*
 End-header-style only-pc 
 ---------------------------------------- */

/* ----------------------------------------
 header-style only-tablet 
*/
@media screen and (max-width: 1000px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	header .tools li.requestBtn::before,
	header .tools li.reserveBtn::before,
	header .tools li.remoteBtn::before {
		display: none;
		animation: reflection 0s ease infinite;
	}

	/*header .tools .head-btns li:nth-child(4) { display: none; }*/

}

/*
 End-header-style only-tablet 
 ---------------------------------------- */

/* ----------------------------------------
 header-style tablet-sp 
*/
@media screen and (max-width: 1000px) {

	/*
	header .tools li.request:after,
	header .tools li.reserve:after {
		display: none;
	}

	header {
		background: #fff;
		height: 164px;
		border-bottom: 1px solid #cbcbcb;
		position: relative;
	}

	#top header {
		background: rgba(255, 255, 255, 1);
	}

	header .title {
		padding: 20px 10px 0 10px;
		text-align: center;
	}

	header .title .placeName {
		display: inline-block;
		width: auto;
		height: 16px;
	}

	header .title .clio.sp {
		display: block !important;
		margin: 0 auto 10px auto;
		width: auto;
		height: 20px;
	}

	header .title .placeName {
		display: inline-block;
		height: 25px;
		max-width: 220px;
	}

	header .title img {
		display: block;
		margin: 0 auto 10px auto;
		max-width: 100%;
		height: 20px;
		float: inherit;
	}

	header .text {
		display: none;
	}

	header .tools {
		position: static;
	}

	header .tools li img {
		display: none;
	}

	header .tools .sp-navi li img {
		display: inline-block;
		width: auto;
	}

	header .tools .sp-navi li.off a {
		pointer-events: none;
		opacity: 0.3;
	}

	header .tools .sp-navi li.nolink img {
		opacity: 0.3;
	}

	header .menu-button {
		display: block;
	}

	header .tools-base {
		position: relative;
		height: 55px;
	}

	header .tools {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
	}
	*/

	header .tools li {
		/*width: 20%;*/
		width: calc(100% / 6);
		box-sizing: border-box;
		text-align: center;
		margin: 0;
		border-width: 1px 0 1px 1px;
	}

	header .tools .sp-navi {
		z-index: 10;
	}

	header .tools .head-btns li {
		border-right: none;
		background-color: #fff;
	}

	header .tools .head-btns li.sp {
		display: block !important;
	}

	header .tools .head-btns li:first-child {
		border-left: none;
	}

	header .tools li.links {
		padding-right: 0;
		text-align: center;
	}

	header .tools .head-btns li a:hover {
		opacity: 1;
	}

	header .tools li div.outline {
		display: none;
	}

	header .tools .head-btns li a {
		box-sizing: border-box;
		display: block;
		width: auto;
		height: 80px;
		padding: 9px 0 6px !important;
		border: none;
		line-height: 1;
		text-decoration: none;
		background-repeat: no-repeat;
		background-position: center;
		background-size: auto 60px;
	}

	header .tools li.menu-button.on a {
		background-color: rgba(255, 255, 255, 1);
	}

	header .tools li.links a {
		display: block;
		margin-top: 0;
		background-image: url(../image/hdr-sp-map.png);
	}

	header .tools .head-btns .requestBtn .btnText,
	header .tools .head-btns .reserveBtn .btnText,
	header .tools .head-btns .remoteBtn .btnText {
		display: none;
	}

	header .tools .head-btns li.requestBtn a {
		background-image: url(../image/hdr-sp-request.png);
	}

	header .tools .head-btns li.reserveBtn a {
		background-image: url(../image/hdr-sp-reserve.png);
	}

	header .tools .head-btns li.remoteBtn a {
		background-image: url(../image/hdr-sp-web.png);
	}

	header .tools li.tel a {
		background-image: url(../image/hdr-sp-tell.png);
	}

	header .tools li.menu-button a {
		background-image: url(../image/hdr-sp-menu.png);
	}

	header .tools li.menu-button.on a {
		background-image: url(../image/hdr-sp-close_ov.png);
	}

	header .tools .sp-navi ul {
		border-top: 1px solid rgba(51, 51, 51, 0.1);
		position: static;
		margin: 0px 0 20px;
	}

	header .tools .sp-navi .navi-list li {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 50%;
		border-bottom: 1px solid rgba(51, 51, 51, 0.1);
		border-right: 1px solid rgba(51, 51, 51, 0.1);
	}

	.site-header .tools .sp-navi .navi-list li:nth-child(odd):last-child {
		border-right: none;
		width: 100%;
	}

	header .tools .sp-navi .navi-list li:nth-child(2n) {
		border-right: none;
	}

	header .tools .sp-navi .navi-list li a {
		color: #191919;
		padding: 17px 0 15px;
	}

	header .tools .sp-navi .navi-list li.compact {
		padding: 10px 0 7px !important;
	}

	header .tools .sp-navi .navi-list li.disable a {
		opacity: 0.3;
	}

	header .tools .sp-navi .navi-list:before {
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		/*content: '';*/
		width: 100%;
		height: 1px;
		background: #8680a5;
	}

	header .tools .head-btns {
		position: relative;
		z-index: 20;
	}

	.sp-navi a {
		display: block;
		color: #fff;
	}

	header .tools .sp-navi .btns {
		clear: both;
		margin: 0 auto;
		padding: 0 0 15px;
		width: 70%;
		background: none;
	}

	header .tools .sp-navi .btns li {
		float: none;
		clear: both;
		margin: 0 auto;
		margin-bottom: 10px;
		width: auto;
		text-align: center;
	}

	header .tools .sp-navi .btns li:last-child {
		margin-bottom: 0;
	}

	header .tools .sp-navi .btns li a {
		color: #fff;
		display: block;
		box-sizing: border-box;
		padding: 0 !important;
		width: auto;
		height: 45px !important;
		border: none;
		font-size: 13px;
		line-height: 41px;
	}

	header .tools .sp-navi .btns li.requestBtn a {
		background: #fff;
		border: 1px solid #333333;
	}

	header .tools .sp-navi .btns li.reserveBtn a {
		background: #fff;
		border: 1px solid #333333;
	}

	header .tools .sp-navi .btns li.remoteBtn a {
		background: #fff;
		border: 1px solid #333333;
	}

	header .tools .sp-navi .btns li a .btnText {
		color: #333333;
		font-family: 'Noto Serif JP', serif;
	}

	header .head-btns .requestBtn a,
	header .head-btns .reserveBtn a {
		background-color: transparent;
	}

	header .head-btns .requestBtn a:after,
	header .head-btns .reserveBtn a:after {
		display: none !important;
	}

	header .btns .requestBtn a:after,
	header .btns .reserveBtn a:after {
		display: none !important;
	}

	header .tools .sp-navi .btns a:before {
		background: none;
	}
}

/*
 End-header-style tablet-sp 
 ---------------------------------------- */
@media only screen and (min-width: 1001px) {
	header {
		position: absolute;
	}
}

/* 
 End-header-style 
---------------------------------------- */


/*==================================================================
	Navi setting
===================================================================*/
.global-navi-base {
	position: absolute;
	top: 75px;
	width: 100%;
	min-height: 50px;
	margin: 20px 0 0;
	height: auto !important;
	height: 50px;
	z-index: 30;
}


.global-navi {
	position: absolute;
	box-sizing: border-box;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 30;
}

.global-navi ul {
	max-width: 1060px;
	margin: 20px auto 15px;
	text-align: center;
	padding: 0;
	box-sizing: border-box;
}

.global-navi ul li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	float: left;
	text-align: center;
	font-size: 1.15rem;
	width: calc(100% / 10);
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 1);
	line-height: 2.4;
	opacity: 0.8;
}

.global-navi ul li.support_n {
	font-size: 1rem;
}

.global-navi ul li.off {
	opacity: 0.4;
}

.global-navi ul li.off a {
	opacity: 1;
	cursor: default;
}

.global-navi ul li.on {
	opacity: 1;
}

.global-navi ul li.off a span:after {
	display: none;
}

.global-navi ul li:nth-child(7),
.global-navi ul li:nth-child(8),
.global-navi ul li:nth-child(9) {
	color: rgba(0, 0, 0, .5);
}

.global-navi ul li.value a,
.global-navi ul li.select a {
	letter-spacing: -0.1px;
}

.global-navi ul li a {
	display: block;
	position: relative;
	opacity: 1;
}

#top .global-navi ul li a {
	color: #fff;
}

.global-navi ul li a span {
	color: #fff;
	position: relative;
	display: inline-block;
}

#top .global-navi ul li a span::after {
	background: #fff;
}

.global-navi ul li a span::after {
	position: absolute;
	bottom: -5px;
	left: 0%;
	content: '';
	width: 100%;
	height: 2px;
	background: #ffffff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

.global-navi ul li.on a span::after {
	transform: scale(1, 1);
}

.global-navi ul li a:hover span::after {
	transform: scale(1, 1);
}

.global-navi ul li a.disable span::after {
	display: none;
}

.global-navi .bar {
	display: none;
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 4px;
	background: #fff;
	transition: 0.5s all;
}

.global-navi ul li.disable a {
	color: #fff;
	opacity: 0.3;
	cursor: default;
}

.global-navi ul li.disable a:hover span::after {
	transform: scale(0, 0);
}

@media screen and (min-width: 1001px) {
	.global-navi .bar {
		display: block !important;
	}
}

.global-navi.fixed {
	position: fixed;
	background-color: rgba(20, 33, 49, 0.4);
}

.global-navi.fixed .links li a {
	color: #fff;
}

.global-navi.fixed ul li a {
	color: #fff !important;
}

.global-navi .links {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1280px;
	height: 100%;
}

.global-navi .links li {
	box-sizing: border-box;
	position: relative;
	float: left;
	text-align: center;
	font-size: 12px;
}

.global-navi .links li a {
	box-sizing: border-box;
	display: block;
	position: relative;
	padding-top: 20px;
	height: 50px;
	color: #282828;
	text-decoration: none;
}

.global-navi .links li a:hover {
	opacity: 1;
}

.global-navi .links li .en {
	display: inline-block;
	padding-top: 5px;
	font-size: 11px;
}

.global-navi .links li.current a:after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 1;
}

.sp-navi li a {
	position: relative;
}

.global-navi .links li.new a:before {
	content: "new";
	display: inline-block;
	position: absolute;
	margin-left: -17.5px;
	padding: 1px 6px;
	top: 3px;
	left: 50%;
	color: #86544e;
	font-size: 10px;

	font-weight: normal;
	font-style: italic;
}

.global-navi .links li.Pickup a:before {
	content: "Pick up";
	display: inline-block;
	position: absolute;
	margin-left: -17.5px;
	padding: 1px 6px;
	top: 3px;
	left: 50%;
	color: #bd0808;
	font-size: 10px;

	font-weight: normal;
	font-style: italic;
}

.global-navi .links {
	max-width: 1000px;
	text-align: justify;
}

.global-navi .links li {
	margin-right: 3.5%;
}

.global-navi .links li:last-child {
	margin-right: 0;
}

/* ----------------------------------------
 navi-style only-pc 
*/
@media screen and (min-width: 1001px) {
	.sp-navi {
		display: none !important;
	}

	.global-navi-base {
		z-index: 101;
	}

	.global-navi .links a:after {
		content: "";
		position: absolute;
		display: block;
		bottom: 17px;
		left: 0;
		width: 100%;
		height: 20px;
		background: #4f74a2;
		opacity: 0;
		transition: .4s all;
	}

	.global-navi .links a:hover:after {
		bottom: 4px;
		height: 1px;
		opacity: 1;
	}

	.global-navi li.new a:before {
		content: "";
		display: block;
		position: absolute;
		margin-left: -15px;
		padding: 1px 3px 0;
		top: -14px;
		left: 50%;
		width: 30px;
		height: 10px;
		background: url(../image/ico_new.svg) no-repeat center center;
		background-size: contain;

		font-weight: normal;
		font-style: italic;
	}

	.global-navi li.Pickup a:before {
		content: "Pick up";
		display: inline-block;
		position: absolute;
		margin-left: -17.5px;
		padding: 1px 3px 0;
		top: -12px;
		left: 50%;
		color: #bd0808;
		font-weight: bold;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: 0;
	}
}

/* 
 End-navi-style only-pc 
---------------------------------------- */
@media only screen and (min-width: 1001px) {

	.global-navi-base,
	.global-navi {
		position: absolute;
		opacity: 0 !important;
		visibility: hidden !important;
	}
}

/* ----------------------------------------
 navi-style tablet-sp
*/
@media screen and (max-width: 1000px) {
	/*
	.global-navi-base {
		display: none;
	}

	.global-navi {
		display: none;
	}
	*/

	.global-navi.fd_fixed {
		top: 80px;
	}

	.sp-navi {
		display: none;
		position: absolute;
		box-sizing: border-box;
		top: 80px;
		left: 0;
		width: 100%;
		text-align: center;
		font-size: 10px;
		background: rgba(255, 255, 255, 1);
		z-index: 10;
	}

	.sp-navi li {
		margin-bottom: 4px;
	}

	.sp-navi li.current a {
		box-sizing: border-box;
		text-decoration: underline;
	}

	.sp-navi .close {
		display: none;
	}

	.sp-navi .close a {
		display: block;
		box-sizing: border-box;
		border: 1px solid #333;
		background-color: #FFF;
	}

	.sp-navi .close a span {
		display: inline-block;
		line-height: 50px;
		background-repeat: no-repeat;
		background-position: left;
		padding-left: 30px;
		font-size: 24px;
		color: #333;
		background-image: url(../image/gNav-close-icn.png);
	}

	.sp-navi li.new a span {
		position: relative;
	}

	.sp-navi li.new a span:before {
		content: "NEW";
		display: inline-block;
		position: absolute;
		padding: 0 3px;
		top: 50%;
		left: -40px;
		transform: translateY(-50%);
		color: #bda586;
		font-size: 1rem;
		font-family: 'Cinzel', 'Noto Serif JP', serif;
		line-height: 1.0;
		letter-spacing: 0;
		font-weight: normal;
		height: fit-content;
		width: fit-content;
	}

	.sp-navi li.Pickup a:before {
		content: "Pick up";
		display: inline-block;
		position: absolute;
		margin-left: -17.5px;
		padding: 0 3px;
		top: 2px;
		left: 12%;
		color: #bd0808;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: 0;

		font-weight: normal;
		font-style: italic;
	}

	.sp-navi .nolink span {
		color: rgba(255, 255, 255, .1) !important;
	}
}



/*==================================================================
	Footer setting
===================================================================*/
.site-footer {
	position: relative;
	background-color: #FFF;
	z-index: 5;
}

.foot-navi li.disable a {
	opacity: 0.3;
}

.site-footer .infoes {
	margin-bottom: 25px;
	padding: 40px 0;
	background: rgb(55, 55, 59);
	background: linear-gradient(90deg, rgba(55, 55, 59, 1) 5%, rgba(86, 87, 100, 1) 50%, rgba(55, 55, 59, 1) 95%);
}

.site-footer .infoes .infoes-base {
	position: relative;
	height: 70px;
}

.site-footer .infoes .base {
	position: absolute;
	padding: 11px 0 7px;
	left: 0;
	bottom: 0;
	width: 100%;
}

.site-footer .infoes .base.fixed {
	position: fixed;
	z-index: 99;
	background: rgb(55, 55, 59);
	background: linear-gradient(90deg, rgba(55, 55, 59, 1) 5%, rgba(86, 87, 100, 1) 50%, rgba(55, 55, 59, 1) 95%);
}

.site-footer .infoes .inner:after {
	content: "";
	width: 1px;
	height: 1px;
	display: table;
	clear: both;
}

.site-footer .infoes .btn.spin a:hover {
	opacity: 1;
}

.site-footer .infoes img {
	max-width: 270px;
	height: auto;
}

@keyframes button {
	0% {
		left: -10%;
	}

	17% {
		left: 110%;
	}

	100% {
		left: 110%;
	}
}

.site-footer .btns {
	margin: 0;
	float: right;
	width: 42.8%;
}

.site-footer .btns li {
	background: transparent;
	box-sizing: border-box;
	position: relative;
	float: left;
	text-align: center;
	margin-right: 10px;
	width: 150px;
}


.site-footer .btn a span:first-child {
	position: relative;
	z-index: 1;
}

.site-footer .btn a .gradient {
	background: rgb(175, 175, 175, 1);
	background: -moz-linear-gradient(left, rgba(175, 175, 175, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(175, 175, 175, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(175, 175, 175, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(175, 175, 175, 1) 100%);
	background: linear-gradient(to right, rgba(175, 175, 175, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(175, 175, 175, 1) 100%);

	display: block;
	height: 500px;
	width: 500px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 0.4s;
}

.site-footer .btn a:hover .gradient {
	transform: translate(-50%, -50%) rotate(180deg);
}


.site-footer .btns li:last-child {
	margin-right: 0;
}

.site-footer .btns li a {
	color: #37373B;
	display: block;
	font-size: clamp(0.1rem, 0.012rem + 0.94vw, 1.5rem);
	letter-spacing: 0.2em;
	max-width: 450px;
	padding: 5px 15px;
	text-align: center;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}


.site-footer .btns li a img {
	max-width: 100%;
	height: auto;
}

.site-footer .btns li .caption {
	position: absolute;
	right: 1%;
	bottom: 1%;
	line-height: 1;
	font-size: 10px;
	color: #fff;
}


.site-footer .links {
	float: right;
	padding: 0 10px 0 0;
	font-size: 11px;
}

.site-footer .links li:first-child {
	margin-bottom: 6px;
}

.site-footer .links a {
	color: #fff;
}

.site-footer .contact {
	margin-bottom: 0;
	padding: 0 0 0;
	float: left;
	width: 44%;
	line-height: 1;
}

.site-footer .contact a {
	color: #ffffff;
}

.site-footer .contact .title {
	color: #fff;
	letter-spacing: -0.1px;
	padding-bottom: 5px;
	font-size: 12px;
}

.site-footer .contact .number {
	float: left;
	padding-right: 14px;
	position: relative;
	font-size: 36px;
}

.site-footer .foot-bnr {
	padding: 40px 10px;
	background: #c2b8a9;
}

.site-footer .foot-bnr ul {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 1110px;
	margin: 0 auto;
	padding-left: 14px;
}

.site-footer .foot-bnr li {
	float: left;
	width: 50%;
	margin-left: 14px;
	line-height: 0;
}

.site-footer .foot-bnr li:first-child {
	margin-left: -14px;
}

.site-footer .foot-bnr li img {
	max-width: 100%;
	height: auto;
}

.site-footer .foot-bnr li a {
	display: block;
}

@media only screen and (max-width:1200px) {
	.site-footer .btns {
		width: 40%;
	}

	.site-footer .btns li {
		max-width: 120px;
	}

	.site-footer .infoes img {
		max-width: 190px;
	}
}

@media only screen and (max-width:1000px) {
	.site-footer .btns li a {
		font-size: 1.3rem;
	}
}

@media screen and (min-width: 1001px) {

	.site-footer .contact .number span.pc {
		display: inline-block !important;
	}
}

.site-footer .contact .number a {
	display: block;
	position: relative;
}

.site-footer .contact .businessHours {
	color: #fff;
	float: left;
	line-height: 0.5;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.site-footer .foot-navi ul li.off a {
	opacity: 0.2;
	cursor: default;
}

.site-footer .foot-navi ul li.off a span:after {
	display: none;
}

/* ----------------------------------------
 footer-style only-pc 
*/
@media screen and (min-width: 1001px) {

	.site-footer .infoes .bg .caption {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 105px;
		line-height: 20px;
		background: rgba(43, 43, 43, 0.74);
		text-align: center;
	}

	.site-footer .contact .num {
		pointer-events: none;
	}

	.site-footer .foot-navi {
		background-color: #47403a;
		display: none;
		/*padding-top: 20px;*/
		text-align: center;
		border-top: none;
	}

	.site-footer .foot-navi ul {
		margin: 0 auto;
		padding: 20px 0 20px;
		max-width: 900px;
	}

	.site-footer .foot-navi ul li {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: calc(100% / 10);
		position: relative;
		font-size: 11px;
		letter-spacing: 0;
	}

	.site-footer .foot-navi ul li a {
		display: inline-block;
		position: relative;
		text-decoration: none;
		color: #fff;
		font-size: 10px;
		opacity: 0.6;
	}

	.site-footer .foot-navi ul li.on a {
		opacity: 1;
	}

	.site-footer .foot-navi ul li.new a:before {
		content: "";
		display: none;
		position: absolute;
		margin-left: -15px;
		padding: 1px 3px 0;
		top: -14px;
		left: 50%;
		width: 30px;
		height: 10px;
		background: url(../image/ico_new.svg) no-repeat center center;
		background-size: contain;

		font-weight: normal;
	}
}

/*
 End-footer-style only-pc 
---------------------------------------- */
/* ----------------------------------------
 footer-style only-tablet 
*/
@media screen and (max-width: 1000px) and (min-width: 640px) {
	.site-footer .pc {
		display: none !important;
	}

	.site-footer .sp {
		display: block !important;
	}
}

/* 
 End-footer-style only-tablet 
---------------------------------------- */
/* ----------------------------------------
 footer-style tablet-sp
*/
@media screen and (max-width: 1000px) {
	header .tools.fixed {
		position: fixed;
		background: #877848;
	}

	.site-footer .infoes {
		margin-bottom: 0;
		text-align: center;
	}

	.site-footer .infoes .infoes-base {
		height: inherit;
	}

	.site-footer .infoes .btns {
		float: none;
		margin: 0 auto;
		width: 70%;
	}

	.site-footer .infoes .btns li {
		float: none;
	}

	.site-footer .infoes .btns li a {
		width: auto;
		margin: 0 auto;
	}

	.site-footer .infoes .base {
		position: static !important;
	}

	.site-footer .infoes .contact {
		float: none;
		margin: 0 auto;
		width: 94%;
		text-align: center;
	}

	.site-footer .infoes .contact .title {
		float: none;
		width: auto;
	}

	.site-footer .infoes .contact .title img {
		margin-bottom: 0;
	}

	.site-footer .infoes .contact .businessHours {
		padding-top: 0;
		float: none;
		width: auto;
	}

	.site-footer .contact .businessHours img {
		margin: 0 auto;
		height: auto;
	}

	#gFooter img {
		max-width: 100%;
	}

	#gFooter .meiwaLink {
		margin-top: 0;
		border-top: 1px solid #E1E1E1;
		margin-bottom: 0;
	}

	#gFooter .meiwaLink li {
		border: 1px solid #E1E1E1;
		border-width: 0 0 1px 0;
		width: 100%;
	}

	#gFooter .ftrCompanyLink {
		text-align: center;
		padding: 20px 10px 0 10px;
		border-bottom: 1px solid #E1E1E1;
		margin-bottom: 0;
	}

	#gFooter .ftrCompanyLink .companyLink {
		position: static;
		margin-top: 20px;
	}

	#gFooter .ftrCompanyLink .companyLink li {
		float: none;
		margin: 10px 0;
	}

	#gFooter .ftrCopy {
		text-align: center;
	}

	.foot-navi {
		border-top: 1px solid rgba(51, 51, 51, 0.1);
		position: relative;
		height: auto;
		/* overflow: hidden; */
	}

	.foot-navi:before {
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 1px;
		background-color: #8d8d8d;
	}

	.foot-navi li {
		box-sizing: border-box;
		display: block;
		float: left;
		width: 50%;
		margin-right: 0;
		text-align: center;
		font-size: 10px;
		letter-spacing: 0;
		border-bottom: 1px solid rgba(51, 51, 51, 0.1);
		border-right: 1px solid rgba(51, 51, 51, 0.1);
		padding: 15px 0;
		color: #8d8d8d;
	}

	.foot-navi li:nth-child(2n) {
		border-right: none;
	}

	.foot-navi li:nth-child(odd):last-child {
		border-right: none;
		width: 100%;
	}

	.foot-navi li a {
		display: block;
		position: relative;
		color: #333333;
	}

	.foot-navi li.new a span {
		position: relative;
	}

	.foot-navi li.new a span:before {
		content: "NEW";
		display: inline-block;
		position: absolute;
		padding: 0 3px;
		top: 50%;
		left: -35px;
		transform: translateY(-50%);
		color: #bda586;
		font-size: 1rem;
		font-family: 'Cinzel', 'Noto Serif JP', serif;
		line-height: 1.0;
		letter-spacing: 0;
		font-weight: normal;
		height: fit-content;
		width: fit-content;
	}

	.foot-navi li.Pickup a:before {
		content: "Pick up";
		display: inline-block;
		position: absolute;
		margin-left: -17.5px;
		padding: 0 3px;
		top: 2px;
		left: 14%;
		color: #bd0808;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: 0;
		font-family: 'Noto Serif JP', serif;
	}

	.foot-navi li a:hover {
		text-decoration: none;
	}

	.site-footer .btns {
		padding-bottom: 30px;
	}

	.site-footer .btns li {
		float: none;
		width: auto;
		height: auto;
		margin-right: 0;
		margin-bottom: 10px;
		max-width: 100%;
	}

	.site-footer .btns li.remoteBtn {
		margin-bottom: 0;
	}

	.site-footer .btns li img {
		margin: 0 0 0 auto;
	}

	.site-footer .links {
		float: none;
		margin-bottom: 30px;
		padding: 0;
	}

	.site-footer .links li:first-child {
		margin-bottom: 4px;
	}

	.site-footer .contact {
		float: none;
		clear: both;
		width: auto;
	}

	.site-footer .contact .title {
		padding-bottom: 10px;
	}

	.site-footer .contact .title .pc {
		display: none !important;
	}

	.site-footer .contact .title .sp {
		display: block !important;
	}

	.site-footer .contact .number {
		float: none;
		clear: both;
		padding: 0 0px 10px 0;
		position: relative;
		font-size: 36px;
	}

	.site-footer .foot-bnr {
		padding: 40px 15px;
	}

	.site-footer .foot-bnr ul {
		padding-left: 0;
	}

	.site-footer .foot-bnr li {
		float: none;
		width: auto;
		margin-left: 0;
		text-align: center;
	}

	.site-footer .foot-bnr li:first-child {
		margin: 0 0 15px;
	}
}

@media screen and (max-width: 1000px) and (min-width: 1001px) {
	.site-footer .contact .number span.pc {
		display: inline-block !important;
	}
}

@media screen and (max-width: 1000px) {
	.site-footer .contact .number a {
		box-sizing: border-box;
		border: 1px solid #fff;
		padding: 18px 0 18px 28px;
		width: 100%;
		color: #fff;
		font-size: 15px;
		/* background: #000; */
	}

	.site-footer .contact .number a .sp {
		display: inline-block !important;
		width: auto;
	}

	.site-footer .contact .number a:before {
		position: absolute;
		left: 50%;
		margin: -7px 0 0 -110px;
		width: 28px;
		height: 27px;
		display: block;
		content: '';
		background-image: url("../image/icon_tel.png");
		background-size: 100% auto;
	}

	.site-footer .contact .businessHours {
		font-size: 10px;
	}

	.site-footer .copyright {
		text-align: center;
	}

	.site-footer .copyright p {
		width: 94%;
	}

	.site-footer .copyright img {
		width: 100%;
		height: auto;
		max-width: 279px;
	}

	.site-footer .copyright img.sp {
		display: inline-block !important;
	}
}

@media screen and (min-width: 1001px) {
	.site-footer ul.reserve .reserveBtn a {
		width: 260px;
		transition: all .3s;
	}

	.site-footer ul.reserve .requestBtn a {
		width: 150px;
		opacity: 0.7;
		transition: all .3s;
	}

	.site-footer ul.request .requestBtn a {
		width: 260px;
		transition: all .3s;
	}

	.site-footer ul.request .reserveBtn a {
		width: 150px;
		opacity: 0.7;
		transition: all .3s;
	}
}

footer {
	background-color: #FFF;
}

footer .gFooterBody {
	max-width: 1000px;
	margin: 0 auto;
}

footer .meiwaLink {
	margin-top: 20px;
	margin-bottom: 35px;
	font-size: 14px;
	text-align: center;
}

footer .meiwaLink li {
	box-sizing: border-box;
	border-left: 1px solid #E1E1E1;
	display: inline-block;
	width: 32.333333%;
}

footer .meiwaLink li:first-child {
	border-left: none;
}

footer .meiwaLink a {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 14px 10px;
}

footer .meiwaLink a:hover span {
	text-decoration: underline;
}

footer .meiwaLink a span {
	background-image: url(../image/ftr-link-arr.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	font-size: 12px;
	letter-spacing: 0;
}

footer .ftrCompanyLink {
	position: relative;
	margin: 0 auto 15px auto;
	padding: 15px 0;
}

footer .ftrCompanyLink .companyLink {
	position: absolute;
	top: 0;
	right: 0;
}

footer .ftrCompanyLink .companyLink li {
	float: left;
	margin-left: 20px;
}

footer .ftrCopy {
	margin: 0 auto;
	padding: 20px 0;
	text-align: right;
}

@media only screen and (max-width:1000px) {

	footer img {
		max-width: 100%;
	}

	footer .meiwaLink {
		margin-top: 0;
		border-top: 1px solid #E1E1E1;
		margin-bottom: 0;
	}

	footer .meiwaLink li {
		border: 1px solid #E1E1E1;
		border-width: 0 0 1px 0;
		width: 100%;
	}

	footer .ftrCompanyLink {
		text-align: center;
		padding: 20px 10px 0 10px;
		border-bottom: 1px solid #E1E1E1;
		margin-bottom: 0;
	}

	footer .ftrCompanyLink .companyLink {
		position: static;
		margin-top: 20px;
	}

	footer .ftrCompanyLink .companyLink li {
		float: none;
		margin: 10px 0;
	}

	footer .ftrCopy {
		text-align: center;
	}
}

.site-footer .foot-navi li a span {
	position: relative;
	display: inline-block;
}

.site-footer .foot-navi li a span::after {
	position: absolute;
	bottom: -5px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

.site-footer .foot-navi li a:hover span::after {
	transform: scale(1, 1);
	transition: transform .3s;
}

.site-footer .foot-navi li.on a span::after {
	transform: scale(1, 1);
}

/*==================================================================
	Foot caption setting
===================================================================*/
.foot_caption {
	background: #fff;
	color: #333;
	font-size: 10px;
	line-height: 1.5;
	padding: 42px 15px;
	position: relative;
	z-index: 1;
	font-family: 'Noto Serif JP', serif;
}

.foot_caption ul {
	margin: 0 auto;
	max-width: 1170px;
}

.foot_caption ul li {
	padding-left: 1em;
	text-indent: -1em;
}

@media only screen and (max-width: 767px) {
	.foot_caption {
		padding: 15px 15px;
	}
}


/*==================================================================
	Contents setting
===================================================================*/
body #container {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
}

img {
	max-width: 100%;
	height: auto;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.bg_gray {
	background: #f2f2f3;
}

.bg_white {
	background: #fff;
}

.pageTop {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 40px;
	z-index: 30;
}

@media only screen and (max-width: 1000px) {
	.pageTop {
		width: 40px;
	}

	.pageTop img {
		width: 100%;
		height: auto;
	}
}

/* print */
@media print {

	.site-header,
	.global-navi-base,
	.site-footer,
	.print-btn,
	.planBtn {
		display: none;
	}

	.planDetail {
		padding: 80px 0 0;
	}
}

.pos_rel {
	position: relative;
}

.pic_cap {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 20;
	color: #000 !important;
	font-size: 10px;
	line-height: 1.2 !important;
	padding: 5px;
}

.pic_cap.l_side {
	right: auto;
	left: 0;
}

.pic_cap.bg {
	background: rgba(0, 0, 0, .50);
	color: #fff !important;
}

.pic_cap.w {
	color: #fff !important;
}

@media only screen and (min-width: 1001px) {
	.pic_cap.r_side {
		right: 65px;
	}
}

.caption {
	font-family: 'Noto Serif JP', serif;
	color: #000 !important;
	font-size: 10px;
	line-height: 1.2 !important;
}

/* fade_up */
.fadeup {
	opacity: 0;
	transform: translateY(20px);
	transition-duration: 1s;
}

.fadeup.on {
	opacity: 1;
	transform: translateY(0);
}

/* fade_in */
.fadein {
	opacity: 0;
	transition-duration: 2s;
}

.fadein.on {
	opacity: 1;
}

/* fade_out */
.fadeout {
	opacity: 1;
	transition-duration: 2s;
}

.fadeout.on {
	opacity: 0;
}

/* Swipe icon */
.swipe_scroll {
	position: relative;
}

.swipe_icon {
	display: none;
}

@media only screen and (max-width: 767px) {
	.swipe_scroll {
		overflow-x: auto;
		padding-bottom: 15px;
	}

	.swipe_scroll img {
		width: 768px;
		max-width: inherit;
	}

	.swipe_icon {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 70px;
		height: 70px;
		display: block;
		margin: -35px;
		animation: horizontal 1s ease-in-out infinite alternate;
		z-index: 10;
	}

	.swipe_icon img {
		max-width: 100% !important;
		width: 70px !important;
	}

	@keyframes horizontal {
		0% {
			transform: translate(-20%, -20%);
		}

		100% {
			transform: translate(30%, -20%);
		}
	}
}

.nolink {
	pointer-events: none;
}

a.disabled {
	pointer-events: none;
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) {
	header .tools li.links {
		padding-right: 0px;
	}

	header .tools li.links a {
		letter-spacing: 0.05em;
	}
}

.tab_only {
	display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {
	.tab_only {
		display: block !important;
	}

	.global-navi-base {
		top: 100px;
	}
}


/* IE11 */
@media all and (-ms-high-contrast:none) {
	.site-footer .foot-navi ul li.new a:before {
		top: -24px;
	}
}

.businessHours li {
	padding-bottom: 13px;
}

#top .line-1,
#top .line-2,
#top .line-3,
#top .line-4 {
	background-color: rgba(255, 255, 255, .85);
}

.infoes .line-1,
.infoes .line-2,
.infoes .line-3,
.infoes .line-4 {
	background-color: rgba(255, 255, 255, .85);
}

.line-1 {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	background-color: rgba(255, 255, 255, .85);
	left: 0;
	bottom: 0;
	-webkit-animation: move1 1500ms infinite ease;
	animation: move1 1500ms infinite ease;
}

.line-2 {
	content: "";
	display: block;
	position: absolute;
	height: 1px;
	background-color: rgba(255, 255, 255, .85);
	left: 0;
	top: 0;
	-webkit-animation: move2 1500ms infinite ease;
	animation: move2 1500ms infinite ease;
}

.line-3 {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	background-color: rgba(255, 255, 255, .85);
	right: 0;
	top: 0;
	-webkit-animation: move3 1500ms infinite ease;
	animation: move3 1500ms infinite ease;
}

.line-4 {
	content: "";
	display: block;
	position: absolute;
	height: 1px;
	background-color: rgba(255, 255, 255, .85);
	right: 0;
	bottom: 0;
	-webkit-animation: move4 1500ms infinite ease;
	animation: move4 1500ms infinite ease;
}

@-webkit-keyframes move1 {
	0% {
		height: 100%;
		bottom: 0;
	}

	54% {
		height: 0;
		bottom: 100%;
	}

	55% {
		height: 0;
		bottom: 0;
	}

	100% {
		height: 100%;
		bottom: 0;
	}
}

@keyframes move1 {
	0% {
		height: 100%;
		bottom: 0;
	}

	54% {
		height: 0;
		bottom: 100%;
	}

	55% {
		height: 0;
		bottom: 0;
	}

	100% {
		height: 100%;
		bottom: 0;
	}
}

@-webkit-keyframes move2 {
	0% {
		width: 0;
		left: 0;
	}

	50% {
		width: 100%;
		left: 0;
		opacity: 0;
	}

	100% {
		width: 0;
		left: 100%;
	}
}

@keyframes move2 {
	0% {
		width: 0;
		left: 0;
	}

	50% {
		width: 100%;
		left: 0;
		opacity: 0;
	}

	100% {
		width: 0;
		left: 100%;
	}
}

@-webkit-keyframes move3 {
	0% {
		height: 100%;
		top: 0;
	}

	54% {
		height: 0;
		top: 100%;
	}

	55% {
		height: 0;
		top: 0;
	}

	100% {
		height: 100%;
		top: 0;
	}
}

@keyframes move3 {
	0% {
		height: 100%;
		top: 0;
	}

	54% {
		height: 0;
		top: 100%;
	}

	55% {
		height: 0;
		top: 0;
	}

	100% {
		height: 100%;
		top: 0;
	}
}

@-webkit-keyframes move4 {
	0% {
		width: 0;
		right: 0;
	}

	55% {
		width: 100%;
		right: 0;
		opacity: 0;
	}

	100% {
		width: 0;
		right: 100%;
	}
}

@keyframes move4 {
	0% {
		width: 0;
		right: 0;
	}

	55% {
		width: 100%;
		right: 0;
		opacity: 0;
	}

	100% {
		width: 0;
		right: 100%;
	}
}

@media screen and (max-width:991px) {

	.head-btns .line-1,
	.head-btns .line-2,
	.head-btns .line-3,
	.head-btns .line-4 {
		display: none;
	}
}


/*instagram*/
.pc_only_insta_bnr {
	display: block;
}

.sp_only_insta_bnr {
	display: none;
}

@media only screen and (max-width: 1000px) {
	.pc_only_insta_bnr {
		display: none;
	}

	.sp_only_insta_bnr {
		display: block;
	}
}

.insta_logo {
	margin: 0 auto;
	max-width: 450px;
	padding: 20px 0;
}

@media only screen and (max-width: 1000px) {
	.insta_logo {
		margin: 0 auto;
		max-width: 330px;
		padding: 40px 0;
	}

	.insta_btn {
		margin: 0 auto;
		max-width: 290px;
		padding: 10px 0 30px;
	}
}

/*==================================================================
	Common page setting
===================================================================*/

.stretchL,
.stretchR,
.stretchT {
	overflow: hidden;
	position: relative;
	opacity: 0;
}

.stretchL.on {
	animation: stretchL 1.5s ease 0s forwards;
}

@keyframes stretchL {
	0% {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}

	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.stretchR.on {
	animation: stretchR 1.5s ease 0s forwards;
}

@keyframes stretchR {
	0% {
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}

	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.stretchT.on {
	animation: stretchT 1.5s ease 0s forwards;
}

@keyframes stretchT {
	0% {
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}

	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

/* main low pages */
#main_page {
	background: rgb(000, 000, 000);
	/*background: radial-gradient(circle, rgba(17,46,42,1) 0%, rgba(0,55,49,1) 25%, rgba(1,56,50,1) 50%, rgba(0,55,49,1) 75%, rgba(17,46,42,1) 100%);*/
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 140px 15px 90px;
	height: 400px;
	z-index: 0;
	transition: all 0.5s;
	opacity: 0;
}

.loaded #main_page {
	opacity: 1;
}

#main_page .main_cont {
	width: 100%;
	max-width: 380px;
}

#main_page .c_title {
	/*display: flex;*/
	text-align: center;
	flex-wrap: wrap;
	align-items: center;
	transition: all 1s;
	opacity: 0;
	transform: translateY(30px);
	filter: blur(10px);
	transition-delay: 0.5s;
	font-size: 300%;
}

.loaded #main_page .c_title {
	transform: translateY(0);
	filter: blur(0);
	opacity: 1;
}

#main_page .c_title .icon {
	width: 110px;
	opacity: 0.2;
}

#main_page .c_title .ttl {
	color: #878974;
	font-size: 10rem;
	line-height: 1;
	letter-spacing: 0;
	margin-left: -20px;
	margin-top: -10px;
	white-space: nowrap;
}

#main_page .main_img {
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 0%;
	width: 50%;
	opacity: 0.2;
	transform: translateY(-50%);
}


#main_page .pic_cap {
	right: 65px;
	bottom: 30px;
}

@media only screen and (max-width: 1000px) {
	#main_page {
		padding: 40px 15px;
		height: 220px;
	}

	#main_page .main_cont {
		width: 100%;
	}

	#main_page .c_title {
		padding-top: 0;
		justify-content: center;
	}

	#main_page .main_img {
		top: 0;
		right: 0;
		width: 70%;
		transform: translateY(0);
	}

	#main_page .pic_cap {
		right: 0;
		bottom: 0;
	}
}

@media only screen and (max-width: 767px) {
	#main_page .c_title .icon {
		width: 80px;
	}

	#main_page .c_title .ttl {
		font-size: 7rem;
	}
}

.head_title {
	margin: 0 0 120px;
	text-align: center;
}

.head_title .h_ttl {
	margin: 0 0 35px;
	position: relative;
}

.head_title .h_ttl .en {
	color: #b9a462;
	font-size: 2.8rem;
	letter-spacing: 0;
	display: inline-block;
	line-height: 1;
}

.head_title .h_txt {
	color: #586166;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em;
}

.head_title.dark .h_txt {
	color: #ffffff;
}

@media only screen and (max-width: 767px) {
	.head_title {
		margin: 0 0 60px;
	}

	.head_title .h_ttl {
		margin: 0 0 20px;
	}

	.head_title .h_txt {
		font-size: 1.4rem;
	}
}


.isMacOS .has-green:before {
	mask: linear-gradient(to bottom, rgba(19, 48, 44, 0) 0%, rgba(19, 48, 44, 0.82) 75%, rgba(19, 48, 44, 1) 91%);
	-webkit-mask: linear-gradient(to bottom, rgba(19, 48, 44, 0) 0%, rgba(19, 48, 44, 0.82) 75%, rgba(19, 48, 44, 1) 91%);
	background: linear-gradient(to bottom, rgba(19, 48, 44, 0) 0%, rgba(19, 48, 44, 0.82) 75%, rgba(19, 48, 44, 1) 91%);
}

.has-green.noBefore::before {
	content: none;
}

/* */
.menu-hambeger a{
	pointer-events: none;
}
.menu-hambeger.active a{
	pointer-events: auto;
}

@charset "utf-8";

body {
	opacity: 1;
	visibility: visible;
}

#top {
	opacity: 0;
	visibility: hidden;
}

.loaded #top {
	opacity: 1;
	visibility: visible;
}

.js-scrolling-fadein {
	opacity: 0;
	transition: all 1.5s;
	z-index: 11 !important;
}

.js-scrolling-fadein.on {
	opacity: 1;
	z-index: 0 !important;
}

.js-scrolling-fadeout {
	opacity: 1;
	transition: all 1.5s;
	z-index: 11 !important;
}

.js-scrolling-fadeout.on {
	opacity: 0;
	z-index: 0 !important;
}

/*==================================================================
	Main Visula
===================================================================*/

.main_visual {
	/* overflow: hidden; */
	position: relative;
	z-index: -3;
}

.main_visual .main_item {
	height: auto;
	position: relative;
	background: rgb(55, 55, 59);
	background: linear-gradient(90deg, rgba(55, 55, 59, 1) 5%, rgba(86, 87, 100, 1) 50%, rgba(55, 55, 59, 1) 95%);
}

.main_visual .main_item:after {
	background: rgba(0, 0, 0, .7);
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1;
}

.main_visual .main_item .main_img {
	width: 100%;
	height: inherit;
}

.main_visual .main_item .main_img figure {
	position: relative;
	height: inherit;

}

.main_visual .main_item .main_img img {
	display: block;
	/*height: 100%;*/
	width: 100%;
	object-fit: cover;
}


.main_visual .main_item .main_img figcaption {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #fff;
	font-size: 1rem;
	padding: 0 5px;
	background-color: rgba(0, 0, 0, 0.6);
}

.main_visual .main_item .main_copy {
	position: absolute;
	left: 50%;
	top: 48.5%;
	transform: translate(-50%, -50%);
	z-index: 1;
	/*width: 50%;*/
	text-align: center;
	opacity: 0;
	visibility: hidden;
}

.loaded .main_visual .main_item .main_copy {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width:768px) {
	.main_visual .main_item .main_copy .img {
		max-width: 391px;
		width: 100%;
		/* margin-bottom: 62px; */
		margin: 0 auto 62px;
	}
}
@media only screen and (max-width:767px) {
	.main_visual .main_item .main_copy {
		position: absolute;
		left: 50%;
		top: 5.0%;
		top: 12.0%;
		transform: translateX(-50%);
		z-index: 1;
		/*width: 36%;*/
		text-align: center;
	}
/*	.main_visual .main_item .main_copy .img {
		height: 0;
	}	*/
	
}


.main_visual .main_item .main_ttl {
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	position: relative;
}

.main_visual .title .main_ttl::after {
	position: absolute;
	content: "";
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 54px;
	height: 1px;
	background-color: #fff;
}



.main_visual .main_merit01 {
	position: absolute;
	bottom: 4%;
	left: 4%;
}

.main_visual .main_merit01 .img {
	max-width: clamp(42rem, 5.244rem + 40.13vw, 74.4rem);
	width: 100%;
}

@media only screen and (min-width:768px) {
	.main_visual .main_merit02 {
		position: absolute;
		/* top: clamp(9rem, -9.941rem + 20.71vw, 23.8rem);
		left: clamp(7rem, -3.249rem + 10.4vw, 12rem); */
		bottom: 9%;
		left: 4%;
	}
	.main_visual .main_merit02.main_merit002 {
		position: absolute;
		/* top: clamp(9rem, -9.941rem + 20.71vw, 23.8rem);
		left: clamp(7rem, -3.249rem + 10.4vw, 12rem); */
		bottom: 9% !important;
		right: 12.5% !important;
		left: auto;
	}
}

@media only screen and (min-width:768px) {
	.main_visual .main_merit02 .img {
		max-width: clamp(26.4rem, -38.261rem + 50vw, 45.5rem);
		width: 100%;
	}
	.main_visual .main_merit02.main_merit002 .img {
		/*max-width: clamp(26.4rem, -38.261rem + 50vw, 45.5rem);*/
		max-width: 13.0vw;
		width: 100%;
	}
}


/* .main_merit01.is-animation {
	animation-name: merit01;
	animation-delay: 15s;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	transform: translateY(10%);
	opacity: 0;
} */

.main_merit02.is-animation {
	animation-name: merit01;
	animation-delay: 13s;
	 /*animation-delay: 16s; */
	/*animation-delay: 21s;*/
	animation-fill-mode: forwards;
	animation-duration: 1s;
	transform: translateY(10%);
	opacity: 0;
}
@media only screen and (max-width:767px) {
	.main_merit02.is-animation {
		animation-name: merit01;
		 animation-delay: 13s; 
		/*animation-delay: 21s;*/
		animation-fill-mode: forwards;
		animation-duration: 1s;
		transform: translateY(10%);
		opacity: 0;
	}	
}

@keyframes merit01 {
	0% {
		opacity: 0;
		transform: translateY(10%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.slick-slide {
	opacity: 0.5;
	/* 非アクティブスライドをデフォルトで薄く表示 */
	transition: opacity 0.5s ease;
	/* 透明度の変化を滑らかに */
}



/*.main_visual .main_item .main_img .pic_cap { z-index: 2; }*/
.main_visual .main_item.slick-on .main_ttl,
.main_visual .main_item.slick-on .main_img {
	visibility: visible;
	opacity: 1;
	transform: scale(1.0);
	-webkit-filter: blur(0);
	filter: blur(0);
}



@media only screen and (max-width:1000px) {
	.main_visual .main_item {
		/*height: 550px;*/
		/*height: calc(100vh - 200px);
		height: 76vh;*/
	}

	/* .main_visual .main_merit02 {
		position: absolute;
		top: 10%;
		left: 5%;
	} */
}

@media only screen and (max-width:767px) {

	.main_visual .main_item .img {
		height: inherit;
	}

	.main_visual .main_item .main_ttl {
		max-width: 180px;
	}

	.main_visual .main_merit01 .img {
		max-width: clamp(17rem, 12.52rem + 48.98vw, 42rem);
		width: 100%;
	}


}

#skip {
	/*color: #d5d1c9;*/
	cursor: pointer;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1;
	position: absolute;
	right: 6%;
	top: 12%;
	z-index: 1;
	width: 60px;
	padding-left: 5px;
	opacity: 0.5;
}

#skip:after {
	background: url(../image/arrow_gold.svg) no-repeat left bottom;
	content: "";
	display: block;
	height: 10px;
	width: 60px;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 0;
	transition: 0.3s;
	opacity: 1;
}

#skip:hover:after {
	transform: translateX(5px);
}

/*==================================================================
	Merit
===================================================================*/
.merit {
	background-image: url(../image/bg03.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	padding: 50px 0;
}

.merit .inner {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0 20px;
}

.merit .merit_img {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (max-width:767px) {

	.merit .merit_img {
		max-width: 250px;
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}

}

/*==================================================================
	Section info
===================================================================*/
.sec_information {
	color: #625430;
	/* overflow: hidden; */
	padding-top: 42px;
	padding-bottom: 138px;
	position: relative;
	text-align: center;
	background-image: url(../image/bg02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}


.sec_information .notice {
	font-size: 1.2rem;
	margin-top: 50px;
}

.sec_information .notice,
.sec_information .info-nextDay__txt {
	color: #E6E6E6;
}

.sec_information .lead {
	margin-bottom: 100px;
	font-size: 1.1rem;
	line-height: calc(21 / 11);
	letter-spacing: 0.1em;
	text-align: center !important;
	color: #E6E6E6;
}

.sec_information .ttl {
	font-size: 1.4rem;
	margin-bottom: 42px;
	letter-spacing: 0em;
	color: #E6E6E6;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
}


.sec_information .link {
	font-size: 1.6rem;
	letter-spacing: 0.2em;
	line-height: 1.9;
	margin-bottom: 50px;
}

.sec_information .link a {
	color: #625430;
}

.sec_information .link span {
	border-bottom: 1px solid #625430;
}

.sec_information .link a:hover span {
	border-bottom: none;
}

.sec_information .open_ttl {
	color: #E6E6E6;
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 15px;
}

.sec_information .open_time {
	color: #E6E6E6;
	font-size: 2rem;
	letter-spacing: 0.33rem;
	line-height: 1.9;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
}

.sec_information .open_time .num {
	font-size: 140%;
}

.sec_information .open_time .medium {
	font-size: 100%;
}

.sec_information .open_time .large {
	font-size: 120%;
}

.sec_information .open_time .morelarge {
	font-size: 130%;
}

.sec_information .open_time .little_little {
	font-size: 80%;
}

.sec_information .open_date {
	color: #E6E6E6;
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 60px;
}

.sec_information .ads {
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.9;
	margin-bottom: 70px;
}

.sec_information .ads span {
	display: block;
	margin-bottom: 5px;
}

.sec_information .open_date span {
	letter-spacing: 0.08em;
}

.sec_information .remote_bnr {
	display: block;
	max-width: 480px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	margin-bottom: 105px;
}

.sec_information .remote_bnr a {
	transition: opacity 0.4s;
}

.sec_information .open_time .note {
	font-size: 60%;
	margin-top: 10px;
}

.sec_information .time {
	font-size: 1.2rem;
}

.sec_information .time span {
	margin: 0 0 10px;
}

.sec_information .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
}

.sec_information .btn a {
	color: #37373B;
	display: block;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	max-width: 285px;
	padding: 14px 15px;
	text-align: center;
	transition: 0.3s;
	width: 50%;
	position: relative;
	overflow: hidden;
}


.sec_information .btn a span:first-child {
	position: relative;
	z-index: 1;
}

.sec_information .btn a .gradient {
	background: rgb(175, 175, 175, 1);
	background: -moz-linear-gradient(left, rgba(175, 175, 175, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(175, 175, 175, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(175, 175, 175, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(175, 175, 175, 1) 100%);
	background: linear-gradient(to right, rgba(175, 175, 175, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(175, 175, 175, 1) 100%);

	display: block;
	height: 500px;
	width: 500px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 0.4s;
}

.sec_information .btn.spin a:hover {
	opacity: 1;
}

.sec_information .btn a:hover .gradient {
	transform: translate(-50%, -50%) rotate(180deg);
	opacity: 1;
}

.sec_information .info-nextDay{
 color: #fff;
 font-size: 1.4rem;
}

.sec_information .info-nextDay.mt30{
	margin-top: 30px;
}

.sec_information .info-nextDay.mb90{
	margin-bottom: 90px;
}


.sec_information .urban-area {
	background-image: url(../image/bg04.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 45px;
	max-width: 850px;
	width: 100%;
	margin: 0 auto;
}

.sec_information .urban-area .inner {
	max-width: 741px;
	margin: 0 auto;
}

.sec_information .urban-area h3 {
	color: #574A10;
	display: inline-block;
	font-size: 1.6rem;
	position: relative;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
}

.sec_information .urban-area h3::after,
.sec_information .urban-area h3::before {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 42px;
	height: 0.7px;
	background-color: #574A10;
}

.sec_information .urban-area h3::after {
	left: -56px;
}

.sec_information .urban-area h3::before {
	right: -56px;
}

.sec_information .urban-area .ttl {
	margin-bottom: 38px;
}

.sec_information .urban-area .ttl .gradation {
	font-size: 2.2rem;
	letter-spacing: 0.07em;
	background: rgb(47, 34, 12);
	background: linear-gradient(45deg, rgba(47, 34, 12, 1) 0%, rgba(138, 101, 30, 1) 18%, rgba(188, 181, 104, 1) 50%, rgba(138, 101, 30, 1) 82%, rgba(47, 34, 12, 1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(47, 34, 12, 1) 0%, rgba(138, 101, 30, 1) 18%, rgba(188, 181, 104, 1) 50%, rgba(138, 101, 30, 1) 82%, rgba(47, 34, 12, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sec_information .urban-area .ttl .gradation span {
	font-size: 1.8rem;
}

.sec_information .urban-area .guide {
	margin-bottom: 48px;
}

.sec_information .urban-area .guide p {
	font-size: 1.7rem;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

.sec_information .urban-area .guide p.text_m {
	font-size: 1.9rem;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

.sec_information .urban-area .guide p:not(:last-child) {
	margin-bottom: 30px;
}

.sec_information .urban-area .guide p span {
	font-size: 1.3rem;
}

.sec_information .urban-area .btn {
	margin-bottom: 57px;
}

.sec_information .urban-area .btn a {
	background-color: #4B4B4F;
	color: #fff;
	font-size: 1.5rem;
	line-height: calc(24 / 15);
	padding: 10px;
	max-width: 291px;
	letter-spacing: 0.03em;
	transition: opacity 0.4s;
}

.sec_information .urban-area .btn a .text_space {
	letter-spacing: 0.16em;
}

/* .sec_information .urban-area .btn a:hover{
	opacity: 0.7;
} */

.sec_information .urban-area .case .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 25px;
}

.sec_information .urban-area .case .item {
	background-image: url(../image/bg_case.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 10px;
	padding-bottom: 19px;
}

.sec_information .urban-area .case .item .num {
	font-size: 1.2rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	margin-bottom: 11px;
}

.sec_information .urban-area .case .item .num span {
	font-size: 1.8rem;
}

.sec_information .urban-area .case .item .text {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: #333333;
}


@media screen and (max-width: 1000px) {
	.sec_information {
		padding-bottom: 85px;
	}

	.sec_information .lead {
		margin-bottom: 50px;
	}

	.sec_information .ttl {
		margin-bottom: 25px;
	}

	.sec_information .link {
		margin-bottom: 25px;
	}

	.sec_information .remote_bnr {
		margin-bottom: 50px;
	}

	.sec_information .open_time {
		font-size: 1.6rem;
	}

	.sec_information .open_date {
		margin-bottom: 40px;
	}


	.sec_information .btn {
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 767px) {
	.sec_information {
		padding-bottom: 55px;
	}

	.sec_information .lead {
		margin-bottom: 30px;
	}

	.sec_information .link {
		font-size: 1.5rem;
	}


	.sec_information .open {
		margin-bottom: 40px;
	}

	.sec_information .open_ttl {
		font-size: 2rem;
	}

	.sec_information .open_date {
		margin-bottom: 30px;
	}

	.sec_information .ads {
		margin-bottom: 30px;
	}

	.sec_information .open_time {
		font-size: 1.4rem;
	}

	.sec_information .btn {
		flex-direction: column;
		justify-content: center;
		margin-bottom: 40px;
	}

	.sec_information .btn a {
		font-size: 2rem;
		/*max-width: 250px;*/
		padding: 15px 5px;
		width: 100%;
	}

	.sec_information .btn a:after {
		height: 15px;
		width: 60px;
		right: 12% !important;
	}

	.sec_information .info_img_item {
		margin-bottom: 15px;
	}


	.sec_information .urban-area .guide {
		margin-bottom: 30px;

	}

	.sec_information .urban-area .btn {
		margin-bottom: 30px;
	}

	.sec_information .urban-area .case .items {
		grid-template-columns: 1fr;
		gap: 25px 0;
	}
}


/*==================================================================
	Section concept
===================================================================*/
.sec_concept {
	text-align: center;
	height: 954px;
	position: relative;
}

.sec_concept .bg_video {
	position: absolute;
	z-index: -1;
	/*最背面に設定*/
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	height: inherit;
}

.sec_concept .bg_video .video {
	/*天地中央配置*/
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 100%;
	height: inherit;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
}

.sec_concept .bg_video .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
}

.sec_concept .ttl {
	max-width: 260px;
	width: 100%;
	margin: 0 auto 96px;
}

.sec_concept .lead {
	/* max-width: 224px; */
	max-width: 320px;
	width: 100%;
	margin: 0 auto 94px;
	position: relative;
}

.sec_concept .lead::before {
	position: absolute;
	content: "";
	top: -45px;
	left: 50%;
	transform: translateX(-50%);
	width: 54px;
	height: 1px;
	background-color: #37373B;
}

.sec_concept p {
	font-size: 1.6rem;
	line-height: 2.2;
	letter-spacing: 0.1em;
	color: #37373B;
}

@media screen and (max-width: 1000px) {
	.sec_concept {
		padding-top: 100px;
		padding-bottom: 130px;
	}

	.sec_concept .ttl {
		margin: 0 auto 66px;
	}

	.sec_concept .lead {
		margin: 0 auto 44px;
	}

	.sec_concept .lead::before {
		top: -35px;
		left: 50%;
	}
}

@media screen and (max-width: 767px) {
	.sec_concept {
		padding-top: 50px;
		padding-bottom: 65px;
	}

	.sec_concept .ttl {
		margin: 0 auto 66px;
	}

	.sec_concept .lead {
		margin: 0 auto 44px;
	}

	.sec_concept .lead::before {
		top: -35px;
		left: 50%;
	}

}

/*==================================================================
	Section point
===================================================================*/

.sec_point {
	/*background-image: url(../image/bg05.jpg);*/
	background-image: url(../image/bg_body.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 133px;
	padding-bottom: 143px;
}

.sec_point .inner {
	max-width: 1187px;
	width: 100%;
}

.sec_point .item {
	position: relative;
}

.sec_point .item.item01 {
	margin-bottom: 178px;
	padding-bottom: 362px;
}

.sec_point .item.item02 {
	margin-bottom: 178px;
	padding-bottom: 203px;
}


.sec_point .item.item03 {
	padding-bottom: 191px;
}

.sec_point .item .img figure {
	position: relative;
}

.js-color-image {
	/* 最初はモノクロで表示 */
	filter: grayscale(100%);
	/* アニメーションの時間を設定 */
	transition: filter 0.8s;
}

.sec_point .item .img figcaption {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #fff;
	font-size: 1rem;
	padding: 0 5px;
	background-color: rgba(0, 0, 0, 0.6);
}

.sec_point .item.item02 .img figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	font-size: 1rem;
	padding: 0 5px;
	background-color: rgba(0, 0, 0, 0.6);
	width: fit-content;
}


.sec_point .item.item01>.img,
.sec_point .item.item03>.img {
	margin-right: calc(50% - 49.8vw);
	padding-left: calc(50vw - 50%);
	aspect-ratio: 1160 / 540;
}


.sec_point .item.item02>.img {
	margin-right: 0;
	margin-left: calc(50% - 50vw);
	padding-left: 0;
	padding-right: calc(50vw - 50%);
	aspect-ratio: 1160 / 540;
}


.sec_point .item .img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.sec_point .item .wrap {
	z-index: 1;
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 100%;
}

.sec_point .item.item02 .wrap {
	left: auto;
	right: 0;
}

.sec_point .item .ttl-img {
	max-width: 117px;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}

.sec_point .item .ttl-img::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 0.5px;
	background-color: #e6e6e6;
	bottom: -20px;
	left: 0;
}

.sec_point .item h3 {
	margin-bottom: 30px;
}

.sec_point .item.item02 h3,
.sec_point .item.item03 h3 {
	margin-bottom: 10px;
}

.sec_point .item h3 span {
	font-size: clamp(6rem, 5.371rem + 11.74vw, 10rem);
	letter-spacing: 0.02em;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	background: rgb(163, 161, 164);
	background: linear-gradient(45deg, rgba(163, 161, 164, 1) 0%, rgba(231, 231, 232, 1) 36%, rgba(230, 230, 230, 1) 57%, rgba(168, 167, 168, 1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(163, 161, 164, 1) 0%, rgba(231, 231, 232, 1) 36%, rgba(230, 230, 230, 1) 57%, rgba(168, 167, 168, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sec_point .item p {
	font-size: 1.8rem;
	color: #E6E6E6;
	line-height: calc(44 / 18);
	display: block;
	position: relative;
	font-feature-settings: "halt";
	width: fit-content;
}

.sec_point .item .text {
	margin-bottom: 10px;
}

.sec_point .item.item02 .text {
	margin-bottom: 25px;
}

.sec_point .item.item03 .text {
	margin-bottom: 53px;
}


.sec_point .item .cap {
	position: absolute;
	display: block;
	width: 20px;
	height: 10px;
	right: 5px;
	bottom: 6px;
	font-size: 1rem;
	color: #E6E6E6;
}

.sec_point .item .wrap .merit-img {
	width: clamp(50rem, 35.294rem + 23.53vw, 60rem);
	margin-bottom: 48px;
}

.sec_point .item .wrap .merit-img img {
	display: block;
	width: 100%;
}

.sec_point .item .wrap .btn a {
	padding-top: 10px;
	padding-bottom: 8px;
	padding-right: 33px;
	transition: transform .4s;
	position: relative;
	display: inline-block;
}

.sec_point .item .wrap .btn a::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 11px;
	background-image: url(../image/icon_btnarrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform .3s;
}

.sec_point .item .wrap .btn a span {
	display: inline-block;
	color: #E6E6E6;
	font-size: 1.6rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
}

.sec_point .item .wrap .btn a:hover::before {
	transform: translateX(30px);
}




@media only screen and (max-width:1000px) {
	.sec_point {
		padding-top: 85px;
		padding-bottom: 95px;
	}

	.sec_point .item.item01 {
		margin-bottom: 100px;
		padding-bottom: 450px;
	}

	.sec_point .item.item02,
	.sec_point .item.item03 {
		margin-bottom: 100px;
		padding-bottom: 300px;
	}

	.sec_point .item>.img {
		margin-right: 0;
		padding-left: 0;
		aspect-ratio: 1160 / 660;
	}

	.sec_point .item>.img:not(:last-child) {
		margin-bottom: 20px;
	}

	.sec_point .item.item-left>.img {
		margin-right: 0;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.sec_point .item .wrap {
		bottom: auto;
		/* position: static; */
	}

	.sec_point .item h3 {
		margin-bottom: 0;
	}

	.sec_point .item h3 span {
		font-size: clamp(5.5rem, -2.584rem + 13.73vw, 10rem);
	}

	.sec_point .item.item01>.img,
	.sec_point .item.item03>.img {
		padding-left: 0;
	}

	.sec_point .item.item02>.img {
		padding-right: 0;
	}

	.sec_point .item .wrap .merit-img {
		width: clamp(20rem, 10.481rem + 61.28vw, 50rem);
		margin-bottom: 48px;
	}
}


@media only screen and (max-width:767px) {

	.sec_point {
		padding-top: 45px;
		padding-bottom: 65px;
	}

	.sec_point .item .ttl-img {
		max-width: 80px;
	}

	.sec_point .item p {
		font-size: 1.6rem;
	}

	.sec_point .item.item01 {
		margin-bottom: 100px;
		padding-bottom: 390px;
	}

	.sec_point .item.item02,
	.sec_point .item.item03 {
		margin-bottom: 100px;
		padding-bottom: 260px;
	}

	.sec_point .item .cap {
		position: relative;
		display: inline-block;
	}

}





/*==================================================================
	Sections
===================================================================*/
.z-index-10 {
	z-index: 10;
}

.z-index-20 {
	z-index: 20;
}

.z-index-30 {
	z-index: 30;
}

.z-index-44 {
	z-index: 40;
}

.has-green {
	background: #13302c;
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
}

.has-green:before {
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(19, 48, 44, 0.82) 75%, rgba(19, 48, 44, 1) 91%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(19, 48, 44, 0.82) 75%, rgba(19, 48, 44, 1) 91%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(19, 48, 44, 0.82) 75%, rgba(19, 48, 44, 1) 91%);
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 100px;
	width: 100%;
	z-index: 0;
}

.has-green:after {
	display: none;
	background: -moz-linear-gradient(top, rgba(19, 48, 44, 1) 0%, rgba(239, 240, 242, 0.2) 80%, rgba(239, 240, 242, 0.19) 81%, rgba(239, 240, 242, 0) 100%);
	background: -webkit-linear-gradient(top, rgba(19, 48, 44, 1) 0%, rgba(239, 240, 242, 0.2) 80%, rgba(239, 240, 242, 0.19) 81%, rgba(239, 240, 242, 0) 100%);
	background: linear-gradient(to bottom, rgba(19, 48, 44, 1) 0%, rgba(239, 240, 242, 0.2) 80%, rgba(239, 240, 242, 0.19) 81%, rgba(239, 240, 242, 0) 100%);
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 100px;
	width: 100%;
	z-index: 0;
}

.section.pt200 {
	padding-top: 200px;
}

.section.location {
	padding-bottom: 0 !important;
}

.section.location .inner {
	margin-left: auto !important;
	margin-right: 0 !important;
}

.section {
	padding: 150px 0;
	position: relative;
}

.section .inner {
	position: relative;
	z-index: 1;
}

.section h2 {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
}

.section h2.center {
	justify-content: center
}

.section h2 img {
	display: inline-block;
	vertical-align: top;
	opacity: 0.2;
}

.section h2 span {
	display: inline-block;
	vertical-align: top;
	font-size: 10rem;
	line-height: 1;
	opacity: 0.7;
	transform: translate(-20px, 0);
}

.section .c_txt01 {
	font-size: 1.5rem;
	line-height: 2.2;
}

.section .c_txt01.white {
	color: #e4dfd8;
}

.section .c_txt02 {
	font-size: 2.2rem;
	line-height: 2;
}

.section .c_more {
	color: #877848;
	display: inline-block;
	font-size: 3rem;
	line-height: 1.5;
	margin-top: 20px;
	position: relative;
}

.section .c_more:after {
	
	background-size: 150px 15px;
	content: "";
	display: block;
	height: 15px;
	width: 150px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	transition: 0.3s;
	opacity: 1;
}

.section .c_more span {
	display: inline-block;
	transition: 0.3s;
}

.section .c_more:hover span {
	transform: translateX(20px);
}

.section .float_img {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	max-width: 800px;
	width: 50%;
}

.section .float_img img {
	opacity: 0.3;
}

.section .transY {
	transform: translateY(-100px);
}

.section .link a {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.section .link:hover~.c_more span {
	transform: translateX(10px);
}

@media only screen and (max-width:1000px) {
	.section h2 img {
		width: 100px;
	}

	.section h2 span {
		font-size: 7rem;
	}

	.section h2.pl55 {
		padding-left: 0 !important;
	}
}

@media only screen and (max-width:767px) {
	.section {
		padding: 70px 0 !important;
	}

	.has-green:before,
	.has-green:after {
		height: 50px;
	}

	.section h2 {
		text-align: center;
	}

	.section h2 span {
		font-size: 5rem;
	}

	.section h2 img {
		width: 80px;
	}

	.section .c_txt01 {
		font-size: 1.4rem;
		line-height: 1.7;
		letter-spacing: 0;
	}

	.section .c_txt02 {
		font-size: 1.8rem;
	}

	.section .c_more {
		line-height: 1.2;
		margin-top: 0;
	}

	.section .c_more:after {
		width: 120px;
	}

	.section .transY {
		transform: translateY(0);
	}


	.mt100 {
		margin-top: 20px;
	}
}

/*==================================================================
	Section PICKUP
	===================================================================*/

.sec_pickup {
	background-image: url(../image/bg06.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 130px 0;
	position: relative;
	z-index: 1;
}

.sec_pickup .inner {
	max-width: 1030px;
	width: 100%;
}

.sec_pickup .bnr {
	margin-bottom: 120px;
}

.bnr_items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}



.sec_pickup .container_text {
	margin-bottom: 60px;
	text-align: center;
}

.container_text .catch {
	color: #353a37;
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1;
	position: relative;
	padding: 0 50px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container_text .catch::after,
.container_text .catch::before {
	content: "";
	height: 1px;
	flex-grow: 1;
	background: #353a37;
}

.container_text .catch::before {
	margin-right: 54px;
}

.container_text .catch::after {
	margin-left: 54px;
}


.sec_pickup .swiper-slide {
	position: relative;
	transition: all .8s;
}

.sec_pickup .swiper-slide>a {
	display: block;
	padding-right: 24px;
}

.sec_pickup .swiper-slide:last-child a {
	padding-right: 0 !important;
}

.sec_pickup .swiper-slide h3 {
	color: #474a4d;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin-top: 10px;
	padding-bottom: 6px;
	position: relative;
}

.sec_pickup .swiper-slide h3 .viewmore {
	color: #474a4d;
	display: inline-block;
	margin-left: auto;
	font-size: 1.4rem;
	position: relative;
	right: 0;
	bottom: 5px;
}

.sec_pickup .swiper-slide h3 .viewmore:before,
.sec_pickup .swiper-slide h3 .viewmore:after {
	border-top: 1px solid #474a4d;
	border-right: 1px solid #474a4d;
	content: "";
	height: 7px;
	width: 7px;
	position: absolute;
	top: 10px;
	right: -10px;
	transform: rotate(45deg);
	transition: all ease-in-out 0.25s;
}

.sec_pickup .swiper-slide h3 .viewmore:after {
	right: -14px;
}

.sec_pickup .swiper-slide h3+p {
	color: #474a4d;
	font-size: 2.2rem;
	line-height: 1.6;
	letter-spacing: 0;
}

.sec_pickup .swiper-container {
	margin: 0;
	padding-bottom: 73px;
	overflow-x: hidden;
}

.inner_card .container_img {
	overflow: hidden;
}

.inner_card .container_img img {
	width: 100%;
	max-width: none;
	transition: all .8s;
}

.sec_pickup .swiper-slide a:hover .container_img img {
	transform: scale(1.1);
}

.container_img {
	position: relative;
	z-index: 0;
}

.swiper-wrapper {
	height: auto;
}

.sec_pickup .swiper-container>.swiper-scrollbar {
	border-radius: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 8px;
	width: 100%;
	background: none;
	border-bottom: 1px solid #353a37;
}

.sec_pickup .swiper-container>.swiper-scrollbar .swiper-scrollbar-drag {
	border-radius: 0;
	background: #353a37;
}

@media only screen and (max-width:767px) {
	.sec_pickup {
		padding: 40px 0;
	}

	.sec_pickup .bnr {
		margin-bottom: 60px;
	}

	.sec_pickup .swiper-container {
		padding-bottom: 50px;
	}

	.sec_pickup .container_text {
		margin-bottom: 35px;
	}

	.container_text .catch {
		font-size: 2rem;
		padding: 0;
	}

	.sec_pickup .swiper-slide>a {
		padding-right: 12px;
	}

	.sec_pickup .swiper-slide h3 {
		font-size: 1.3rem;
	}

	.sec_pickup .swiper-slide h3+p {
		font-size: 1.2rem;
	}

	.sec_pickup .swiper-slide h3 .viewmore {
		font-size: 1.2rem;
		text-align: right;
		position: relative;
		top: 0;
	}

	.sec_pickup .swiper-slide h3 .viewmore:before,
	.sec_pickup .swiper-slide h3 .viewmore:after {
		height: 4px;
		width: 4px;
		top: 8px;
	}

	.sec_pickup .swiper-container>.swiper-scrollbar {
		height: 4px;
	}

	.bnr_items {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/*¥í©`¥Ç¥£¥ó¥°*/
#loading-wrapper {
	background: rgb(55, 55, 59);
	background: linear-gradient(90deg, rgba(55, 55, 59, 1) 5%, rgba(86, 87, 100, 1) 50%, rgba(55, 55, 59, 1) 95%);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 9999;
	visibility: visible;
	opacity: 1;
}

#loading_text {
	display: block;
	width: 100%;
	height: 1px;
	overflow: hidden;
}

.loading-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
}
.loaded #loading-wrapper {
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}

.loading-title img {
	max-width: 391px;
	width: 100%;
	margin-bottom: 30px;
}


/* */
.bnr_wrap {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.bnr_wrap .bnr {
	margin-top: 30px;
}

.bnr_wrap .bnr a {
	transition: all .18s ease-out;
}

.bnr_wrap .bnr a:hover {
	opacity: .6;
	transition: all .18s ease-out;
}

/* */
.skip {
	position: absolute;
	top: 20%;
	right: 10%;
	text-align: center;
	display: inline-block;
	line-height: 1;
	border: 1px solid #fff;
	padding: 10px 15px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	transition: all .18s ease-out;
	cursor: pointer;
}

.skip:hover {
	opacity: .6;
	transition: all .18s ease-out;
}

@media screen and (max-width: 1380px) and (min-width: 1001px) {
	.skip {
		top: 38%;
	}
}

@media screen and (max-width: 1000px) {

	.skip {
		top: 5%;
	}
}

/* */
.result_bnr_wrap {
	background: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: 15px;
	padding-right: 15px;
}

.result_bnr {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 765px) {
	.loading-title img {
		max-width: 200px;
		width: 100%;
		margin-bottom: 30px;
	}

	.result_bnr_wrap {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* */
.ico_top{
	position: absolute;
    max-width: 260px;
    left: 5.5%;
    top: 36%;
    transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
	.ico_top{max-width: 22vw;left: 3%;}
}
@media screen and (max-width: 767px) {
	.ico_top{
		top: 6.5%;
    transform: translateY(0);
    max-width: 42vw;
    left: auto;
    right: 3%;}
}
@media screen and (max-width: 767px) {
	.sp_op0{opacity: 0;}
	.sp_none{display: none;}
}

/**/
.mv03{width: 100%;}

@media only screen and (max-width:767px) {
	.main_visual .main_merit02 {
		position: absolute;
		/*left: 50% !important;
		right: auto;
		-webkit-transform:translateX(-50%) !important;
		transform: translateX(-50%) !important;*/
		left: 12vw;
		top: 12%;
		width: 76vw;
		margin-left: auto;
		margin-right: auto;
	}
	.main_visual .main_merit02.main_merit002 {
		display: none !important;
	}
}

@media only screen and (max-width:767px) {
	.main_visual .main_merit02 .img {
		width: 100% !important;	
	}
}

/* */
/* */
.info_table{
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}
.row_table{
	margin-left: auto;
	margin-right: auto;
}
.row_table,
.row_table td,
.row_table th {
	border-collapse: collapse;
	text-align: left;
	vertical-align: top;
	color: #fff !important;
}
.row_table .place {
    font-size: 14px;
}
.row_table th .p30 {
    padding: 0 30px;
}
.fs13 {
		font-size: 12px;
	}
.w400 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    display: block;
    padding-left: 1.2em;
    text-indent: -1.2em;
}
@media screen and (max-width: 767px) {
	.pc_only_inlineblock{display: none;}
.row_table th {
	/*background: #01214d;*/
	color: #fff !important;
	padding: 4px 12px;
	display: block;
	width: 100%;
		text-align: center;
}

.row_table td {
	/*background: #f5f6f8;*/
	padding: 4px 12px;
	color: #fff !important;
	display: block;
	width: 100%;
	text-align: center;
}
.row_table th .p30 {
    padding: 0;
}
.row_table .place {
    font-size: 13px;
}
	.fs13 {
		font-size: 11px;
	}
}
.line{
	position: relative;
	max-width: 420px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 80px;
}
.line:after{
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	height: 1px;
	width: 100%;
	background: #fff;
}

/* */
.notice {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 30px;
	color: #000;
}
.note {
  color: #000;
  font-size: 1.1rem;
  line-height: 1.9;
}
.cBlk{color: #000 !important;}
.sp_mB{margin-bottom: 60px !important;}
.fs110p{font-size: 110% !important;}
.fs120p{font-size: 120% !important;}
@media screen and (max-width: 767px) {
	.sp_mB{margin-bottom: 30px !important;}
}

/* */
.sec_point .inner{
	position: relative;
	z-index: 1
}
.sec_point .item .img figure{
	z-index: 1;
}

.bg02_w{
	position: relative;
}
.bg02{
	position: absolute;
	z-index: 0;
	width: 100%;
	top: 20%;
}
.bg02 img{width: 100%;}
@media screen and (max-width: 1100px) and (min-width: 767px) {
	.bg02{ top: 54%;}
}
@media screen and (max-width: 767px) {
	.bg02{ top: 36%;}
}


.main_copy{
	opacity: 0;
	display: none;
}
.main_copy.op1{
	opacity: 1;
	display: inherit;
}
#mv_last.slick-current .main_copy{
	opacity: 0 !important;
	transition: 3.0s !important;
}
.merit .inner {max-width: 1140px;}

.sec_point .item.item03.mbB{
	margin-bottom: 178px !important;
	padding-bottom: 203px !important;
}
.sec_point .item.item02.mbB0{
	padding-bottom: 191px !important;
	margin-bottom: 0px !important;
}
@media only screen and (max-width:767px) {
	.sec_point{padding-bottom: 155px;}
}
