@charset "UTF-8";

/* **********************************************************************
 *
 *       Title:   block.css
 *
 ********************************************************************** */


/* トップページ設定
======================================================= */

/* メインビジュアル */
.kv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 720px;
	height: 100svh;
	font-size: 20px;
	font-size: 2.0rem;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
	clip-path: inset(0);
}

.fixed .kv {
	margin: 0 0 65px;
}

.kv::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 30px;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.kv::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 30px;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.kv .bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: transparent;
}

.kv .bg img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.kv .bg video,
.kv .bg iframe {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -2;
	width: 177.77777778vh;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
}

.kv .inner {
	width: 1080px;
	margin: 0 auto;
	text-align: center;
}

.kv .inner::before,
.kv #mv::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 1;
	width: 30px;
	height: calc(100% - 60px);
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.kv .inner::after,
.kv #mv::after {
	content: '';
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 1;
	width: 30px;
	height: calc(100% - 60px);
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.kv .inner h1 {
	margin: 0 0 35px;
	font-size: 0px;
}

.scroll-down {
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	z-index: 2;
	width: 2px;
	height: 60px;
	background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,1));
	animation: scrollDown 2s ease infinite;
	margin: 0 auto;
}

@keyframes scrollDown {
	0%{
		transform-origin: top;
		transform: scaleY(0);
	}
	45%{
		transform-origin: top;
		transform: scaleY(1);
	}
	55%{
		transform-origin: bottom;
		transform: scaleY(1);
	}
	100%{
		transform-origin: bottom;
		transform: scaleY(0);
	}
}

/* top_topics */

.top_topics {
	padding: 75px 0 105px;
	color: rgba(255,255,255,.9);
	background: url(../img/bg_top_topics01.svg) no-repeat 0 0, url(../img/bg_top_topics02.svg) no-repeat right 0, #252321;
}

.top_topics .tab {
	display: flex;
	justify-content: center;
	margin: 0 0 20px;	
	padding: 0;
	list-style: none;
	border-bottom: 1px solid rgba(255,255,255,.2);
	text-align: center;
	line-height: 1.4;
}

.top_topics .tab li {
	width: 200px;
	padding: 0 0 10px;
	position: relative;
	cursor: pointer;
}

.top_topics .tab li.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #B18E41;
}

.top_topics .tab li a {
	color: rgba(255,255,255,.9);
}

.top_topics .tab li.active a {
	color: #B18E41;
}

.top_topics .panel_wrap .panel {
	display: none;
}

.top_topics .slider {
	display: none;
}

.top_topics .slider.slick-initialized {
	display: block;
}

.top_topics .slider .slides {
	display: block;
	width: 320px;
	margin: 0 10px;
	font-size: 14px;
	font-size: 1.4rem;
	color: rgba(255,255,255,.9);
	text-decoration: none;
	transition: .3s;
}

.top_topics .slider .slides:hover {
	opacity: .7;
}

.top_topics .slider .slides .img {
	margin: 0 0 20px;
}

.top_topics .slider .slides .img img {
	width: 320px;
	height: 200px;
	object-fit: cover;
}

.top_topics .slider .slides .txt {
	width: 280px;
	margin: 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid rgba(255,255,255,.2);
}

.top_topics .slider .slides .txt .info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px;
	line-height: 1.4;
}

.top_topics .slider .slides .txt .info .category {
	margin-left: auto;
	padding: 3px 10px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	color: rgba(255,255,255,.6);
}

.top_topics .slider .slide-arrow.slick-prev {
	left: calc(50% - 540px);
}

.top_topics .slider .slide-arrow.slick-next {
	right: calc(50% - 540px);
}

/* sp_banner */

.top_topics ul.sp_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -20px -40px;
	padding: 0;
	list-style: none;
}

.top_topics ul.sp_banner li {
	width: 520px;
	margin: 0 20px 40px;
}

/* top_concept */

.top_concept {
	display: flex;
	align-items: center;
	padding: 80px 5vw 100px 2vw;
	color: #fff;
	text-shadow: 0 3px 10px rgba(0,0,0,.3);
	position: relative;
	z-index: 0;
}

.top_concept::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background: rgba(66,145,186,.6);
}

.top_concept::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 69%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(90deg,rgba(66,145,186,0),rgba(66,145,186,.8));
}

.top_concept .bg img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_concept .img {
	width: 395px;
}

.top_concept .txt {
	margin: 0 0 0 2vw;
}

.top_concept .txt h2 {
	width: auto;
	color: #DBBA6F;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: left;
}

.top_concept .txt h2 .en {
	display: inline-block;
	margin: 0 20px 0 0;
	font-size: 48px;
	font-size: 4.8rem;
	color: #fff;
}

.top_concept .txt .lead {
	margin: 0 0 20px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

/* top_scene */

.top_scene {
	padding: 80px 0 10px;
	color: #fff;
	background: url(../img/bg_top_scene01.svg) no-repeat 0 0, url(../img/bg_top_scene02.svg) no-repeat right 0, #000;
}

.top_scene h2 {
	margin-bottom: 60px;
	font-size: 16px;
	font-size: 1.6rem;
}

.top_scene h2 .en {
	font-size: 48px;
	font-size: 4.8rem;
}

.top_scene .list {
	display: flex;
	flex-wrap: wrap;
	font-size: 20px;
	font-size: 2.0rem;
	text-align: center;
	line-height: 1.4;
}

.top_scene .list .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	min-height: 320px;
	padding: 20px 60px;
	box-sizing: border-box;
	color: #fff;
	text-shadow: 0 3px 10px rgba(0,0,0,.3);
	text-decoration: none;
	position: relative;
	z-index: 0;
	transition: .3s;
}

.top_scene .list .col:hover {
	opacity: .7;
}

.top_scene .list .col::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: rgba(0,0,0,.5) url(../img/arw_w.svg) no-repeat right 20px center;
	background-size: 20px auto;
}

.top_scene .list .col img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_scene .list .col .lead {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 5px 20px 10px;
	font-size: 12px;
	font-size: 1.2rem;
	color: rgba(255,255,255,.6);
	letter-spacing: .2em;
	writing-mode: vertical-rl;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.top_scene .list .col .em {
	font-size: 28px;
	font-size: 2.8rem;
}

/* top_rooms */

.top_rooms {
	min-height: 720px;
	position: relative;
	z-index: 0;
}

.top_rooms .bg img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_rooms .inner {
	display: flex;
	justify-content: flex-start;
	min-height: 720px;
	width: 1080px;
	margin: 0 auto;
}

.top_rooms .inner .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 400px;
	padding: 0 60px;
	box-sizing: border-box;
	font-size: 14px;
	font-size: 1.4rem;
	color: #fff;
	background: url(../img/bg_top_rooms01.svg) no-repeat 0 0, url(../img/bg_top_rooms02.svg) no-repeat right bottom, #2CA1B6;
	position: relative;
	z-index: 0;
}

.top_rooms .inner .txt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(0deg,rgba(44,161,182,0),rgba(44,161,182,1));
	opacity: .15;
	mix-blend-mode: multiply;
}

.top_rooms .inner .txt::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg,rgba(44,161,182,0),rgba(44,161,182,1));
	opacity: .15;
	mix-blend-mode: multiply;
}

.top_rooms .inner .txt .tit {
	display: block;
	padding: 0 0 26px;
	margin: 0 0 25px;
	text-decoration: none;
	position: relative;
	transition: .3s;
}

.top_rooms .inner .txt .tit::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -60px;
	width: calc(100% + 60px);
	height: 1px;
	background: rgba(255,255,255,.2);
}

.top_rooms .inner .txt .tit[href]:hover {
	opacity: .7;
}

.top_rooms .inner .txt .tit h2 {
	width: auto;
	padding: 0 30px 0 0;
	margin: 0;
	font-size: 16px;
	font-size: 1.6rem;
	color: #DBBA6F;
	text-align: left;
}

.top_rooms .inner .txt .tit[href] h2 {
	background: url(../img/arw_w.svg) no-repeat right 1.7em;
	background-size: 20px auto;
}

.top_rooms .inner .txt .tit h2 .en {
	font-size: 40px;
	font-size: 4.0rem;
	color: #fff;
}

.top_rooms .inner .txt .list {
	margin: 60px 0 0;
	padding: 0;
	list-style: none;
	line-height: 1.4;
}

.top_rooms .inner .txt .list li {
	margin: 0 0 15px;
}

.top_rooms .inner .txt .list li:last-child {
	margin: 0;
}

.top_rooms .inner .txt .list li a {
	padding: 0 0 0 16px;
	color: #fff;
	text-decoration: none;
	background: url(../img/arw_s_w.svg) no-repeat 0 center;
	background-size: 6px auto;
	transition: .3s;
}

.top_rooms .inner .txt .list li a:hover {
	opacity: .7;
}

.top_rooms .inner .txt .s_list {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.4;
	opacity: .7;
}

.top_rooms .inner .txt .s_list li {
	margin: 0 0 15px;
}

.top_rooms .inner .txt .s_list li:last-child {
	margin: 0;
}

.top_rooms .inner .txt .s_list li a {
	padding: 0 0 0 16px;
	color: #fff;
	text-decoration: none;
	background: url(../img/arw_s_w.svg) no-repeat 0 center;
	background-size: 6px auto;
	transition: .3s;
}

.top_rooms .inner .txt .s_list li a:hover {
	opacity: .7;
}

/* top_restrant */

.top_restrant {
	min-height: 720px;
	position: relative;
	z-index: 0;
}

.top_restrant .bg img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_restrant .inner {
	display: flex;
	justify-content: flex-end;
	min-height: 720px;
	width: 1080px;
	margin: 0 auto;
}

.top_restrant .inner .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 400px;
	padding: 0 60px;
	box-sizing: border-box;
	font-size: 14px;
	font-size: 1.4rem;
	color: #fff;
	background: url(../img/bg_top_restrant01.svg) no-repeat 0 0, url(../img/bg_top_restrant02.svg) no-repeat right bottom, #5CA243;
	position: relative;
	z-index: 0;
}

.top_restrant .inner .txt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(0deg,rgba(92,162,67,0),rgba(92,162,67,1));
	opacity: .15;
	mix-blend-mode: multiply;
}

.top_restrant .inner .txt::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg,rgba(92,162,67,0),rgba(92,162,67,1));
	opacity: .15;
	mix-blend-mode: multiply;
}

.top_restrant .inner .txt .tit {
	display: block;
	padding: 0 0 26px;
	margin: 0 0 25px;
	text-decoration: none;
	position: relative;
	transition: .3s;
}

.top_restrant .inner .txt .tit::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -60px;
	width: calc(100% + 60px);
	height: 1px;
	background: rgba(255,255,255,.2);
}

.top_restrant .inner .txt .tit[href]:hover {
	opacity: .7;
}

.top_restrant .inner .txt .tit h2 {
	width: auto;
	padding: 0 30px 0 0;
	margin: 0;
	font-size: 16px;
	font-size: 1.6rem;
	color: #DBBA6F;
	text-align: left;
}

.top_restrant .inner .txt .tit[href] h2 {
	background: url(../img/arw_w.svg) no-repeat right 2.7em;
	background-size: 20px auto;
}

.top_restrant .inner .txt .tit h2 .en {
	font-size: 40px;
	font-size: 4.0rem;
	color: #fff;
}

.top_restrant .inner .txt .tit h2 .em {
	font-size: 32px;
	font-size: 3.2rem;
}

.top_restrant .inner .txt .list {
	margin: 60px 0 0;
	padding: 0;
	list-style: none;
	line-height: 1.4;
}

.top_restrant .inner .txt .list li {
	margin: 0 0 15px;
}

.top_restrant .inner .txt .list li:last-child {
	margin: 0;
}

.top_restrant .inner .txt .list li a {
	padding: 0 0 0 16px;
	color: #fff;
	text-decoration: none;
	background: url(../img/arw_s_w.svg) no-repeat 0 center;
	background-size: 6px auto;
	transition: .3s;
}

.top_restrant .inner .txt .list li a:hover {
	opacity: .7;
}

.top_restrant .inner .txt .s_list {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.4;
	opacity: .7;
}

.top_restrant .inner .txt .s_list li {
	margin: 0 0 15px;
}

.top_restrant .inner .txt .s_list li:last-child {
	margin: 0;
}

.top_restrant .inner .txt .s_list li a {
	padding: 0 0 0 16px;
	color: #fff;
	text-decoration: none;
	background: url(../img/arw_s_w.svg) no-repeat 0 center;
	background-size: 6px auto;
	transition: .3s;
}

.top_restrant .inner .txt .s_list li a:hover {
	opacity: .7;
}

/* top_other */

.top_other {
	padding: 10px 0;
	background: #000;
}

.top_other .list {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}

.top_other .list .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	min-height: 320px;
	padding: 20px 140px;
	box-sizing: border-box;
	color: #fff;
	text-shadow: 0 3px 10px rgba(0,0,0,.3);
	text-decoration: none;
	position: relative;
	z-index: 0;
	transition: .3s;
}

.top_other .list .col:hover {
	opacity: .7;
}

.top_other .list .col::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: rgba(0,0,0,.5) url(../img/arw_w.svg) no-repeat right 60px center;
	background-size: 20px auto;
}

.top_other .list .col img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_other .list .col .lead {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 5px 20px 10px;
	font-size: 12px;
	font-size: 1.2rem;
	color: rgba(255,255,255,.6);
	letter-spacing: .2em;
	writing-mode: vertical-rl;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.top_other .list .col .txt {
	text-align: left;
}

.top_other .list .col .em {
	margin: 0 0 25px;
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.2;
	text-align: center;
}

/* top_stay */

.top_stay {
	min-height: 610px;
	color: #fff;
	text-shadow: 0 3px 10px rgba(0,0,0,.3);
	text-align: center;
	position: relative;
	z-index: 0;
}

.top_stay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg,rgba(78,136,180,.5),rgba(78,136,180,.9));
}

.top_stay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 200px;
	background: url(../img/bg_top_stay01.svg) no-repeat 0 0, url(../img/bg_top_stay02.svg) no-repeat right 0;
}

.top_stay .bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	background: rgba(78,136,180,.3);
}

.top_stay .bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.01);
	backdrop-filter: blur(3px);
}

.top_stay .bg img,
.top_stay .bg video {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_stay .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0 100px;
}

.top_stay .inner h2 {
	margin-bottom: 20px;
	font-size: 16px;
	font-size: 1.6rem;
	color: #DBBA6F;
}

.top_stay .inner h2 .en {
	font-size: 40px;
	font-size: 4.0rem;
}

.top_stay .inner .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 60px 0 -60px;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.4;
	text-shadow: 0 3px 10px rgba(0,0,0,1);
}

.top_stay .inner .list::after {
	content: '';
	display: block;
	width: 320px;
}

.top_stay .inner .list .col {
	display: flex;
	flex-direction: column;
	width: 320px;
	margin: 0 0 60px;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}

.top_stay .inner .list .col:hover {
	opacity: .7;
}

.top_stay .inner .list .col .img {
	margin: 0 0 10px;
}

.top_stay .inner .list .col .txt {
	padding: 0 30px;
	background: url(../img/arw_w.svg) no-repeat right 15px center;
	background-size: 20px auto;
}

/* top_voice */

.top_voice {
	background: #F6F5F4;
}

.top_voice .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0 90px;
}

.top_voice .inner h2 {
	font-size: 16px;
	font-size: 1.6rem;
}

.top_voice .inner h2 .en {
	font-size: 40px;
	font-size: 4.0rem;
	color: #252321;
}

.top_voice .inner .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -6px -12px;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.4;
}

.top_voice .inner .list .col {
	display: flex;
	flex-direction: column;
	width: 170px;
	margin: 0 6px 12px;
	border: 1px solid #CBC9C6;
	box-sizing: border-box;
	color: #252321;
	text-decoration: none;
	background: #fff;
	transition: .3s;
}

.top_voice .inner .list .col:hover {
	opacity: .7;
}

.top_voice .inner .list .col .col_in {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 15px 15px 24px;
	box-sizing: border-box;
}

.top_voice .inner .list .col .col_in .img {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 0 10px;
}

.top_voice .inner .list .col .col_in .num {
	font-size: 28px;
	font-size: 2.8rem;
}

.top_voice .inner .list .col .col_in .star {
	width: 94px;
	margin: 0 auto;
	position: relative;
}

.top_voice .inner .list .col .col_in .star::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/img_star02.svg) no-repeat 0 0;
	background-size: 94px auto;
	width: 0px;
	height: 14px;
}

.top_voice .inner .list .col .col_in .star.fill5-0::after {
	width: 94px;
}

.top_voice .inner .list .col .col_in .star.fill4-9::after {
	width: calc(80px + 14px * 9 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-8::after {
	width: calc(80px + 14px * 8 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-7::after {
	width: calc(80px + 14px * 7 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-6::after {
	width: calc(80px + 14px * 6 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-5::after {
	width: calc(80px + 14px * 5 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-4::after {
	width: calc(80px + 14px * 4 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-3::after {
	width: calc(80px + 14px * 3 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-2::after {
	width: calc(80px + 14px * 2 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-1::after {
	width: calc(80px + 14px * 1 / 10);
}

.top_voice .inner .list .col .col_in .star.fill4-0::after {
	width: 80px;
}

.top_voice .inner .list .col .col_in .star.fill3-9::after {
	width: calc(60px + 14px * 9 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-8::after {
	width: calc(60px + 14px * 8 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-7::after {
	width: calc(60px + 14px * 7 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-6::after {
	width: calc(60px + 14px * 6 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-5::after {
	width: calc(60px + 14px * 5 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-4::after {
	width: calc(60px + 14px * 4 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-3::after {
	width: calc(60px + 14px * 3 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-2::after {
	width: calc(60px + 14px * 2 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-1::after {
	width: calc(60px + 14px * 1 / 10);
}

.top_voice .inner .list .col .col_in .star.fill3-0::after {
	width: 60px;
}

.top_voice .inner .list .col .col_in .star.fill2-9::after {
	width: calc(39px + 14px * 9 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-8::after {
	width: calc(39px + 14px * 8 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-7::after {
	width: calc(39px + 14px * 7 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-6::after {
	width: calc(39px + 14px * 6 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-5::after {
	width: calc(39px + 14px * 5 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-4::after {
	width: calc(39px + 14px * 4 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-3::after {
	width: calc(39px + 14px * 3 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-2::after {
	width: calc(39px + 14px * 2 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-1::after {
	width: calc(39px + 14px * 1 / 10);
}

.top_voice .inner .list .col .col_in .star.fill2-0::after {
	width: 34px;
}

.top_voice .inner .list .col .col_in .star.fill1-9::after {
	width: calc(19px + 14px * 9 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-8::after {
	width: calc(19px + 14px * 8 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-7::after {
	width: calc(19px + 14px * 7 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-6::after {
	width: calc(19px + 14px * 6 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-5::after {
	width: calc(19px + 14px * 5 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-4::after {
	width: calc(19px + 14px * 4 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-3::after {
	width: calc(19px + 14px * 3 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-2::after {
	width: calc(19px + 14px * 2 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-1::after {
	width: calc(19px + 14px * 1 / 10);
}

.top_voice .inner .list .col .col_in .star.fill1-0::after {
	width: 14px;
}

.top_voice .inner .list .col .col_in .star.fill0-9::after {
	width: calc(14px * 9 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-8::after {
	width: calc(14px * 8 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-7::after {
	width: calc(14px * 7 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-6::after {
	width: calc(14px * 6 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-5::after {
	width: calc(14px * 5 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-4::after {
	width: calc(14px * 4 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-3::after {
	width: calc(14px * 3 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-2::after {
	width: calc(14px * 2 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-1::after {
	width: calc(14px * 1 / 10);
}

.top_voice .inner .list .col .col_in .star.fill0-0::after {
	width: 0px;
}

.top_voice .inner .list .col .txt {
	padding: 6px 15px;
	background: #F6F5F4;
}

.top_voice .inner .list .col .txt .ico {
	padding: 0 15px 0 0;
	background: url(../img/arw_voice.svg) no-repeat right center;
	background-size: 10px auto;
}

/* Grand Executive Floor
======================================================= */

.gef {
	color: rgba(255,255,255,.9);
	background: #000;
}

.gef h3 {
	margin: 0 0 40px;
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: normal;
	color: #B18E41;
	line-height: 1.6;
}

.gef h4 {
	margin: 0 0 40px;
	padding: 0 0 0 10px;
	border-left: 4px solid #B18E41;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: normal;
	color: rgba(255,255,255,.9);
	line-height: 1.4;
}

.gef .common_btn a {
	border-color: #7C5C13;
	background-color: #7C5C13;
}

.gef .top_back a {
	color: rgba(255,255,255,.6);
}

.gef_kv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 617px;
	height: calc(100svh - 105px);
	font-size: 24px;
	font-size: 2.4rem;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
	clip-path: inset(0);
}

.gef_kv::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 30px;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.gef_kv::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 30px;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.gef_kv .bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: transparent;
}

.gef_kv .bg img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gef_kv .inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 1080px;
	height: 100%;
	padding: 100px 0;
	margin: 0 auto;
	box-sizing: border-box;
	line-height: 1;
}

.gef_kv .inner::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 1;
	width: 30px;
	height: calc(100% - 60px);
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.gef_kv .inner::after {
	content: '';
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 1;
	width: 30px;
	height: calc(100% - 60px);
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.gef_kv .inner h1 {
	margin: 5px 0 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.5;
}

.gef_kv .inner h1 .en {
	position: relative;
	left: -20px;
}

.gef_kv .inner h1 .jp {
	display: inline-block;
	padding: 5px 15px 7px;
	background: url(../img/bg_gef01.jpg);
	position: relative;
	top: -15px;
	left: 20px;
	color: #B18E41;
}

/* gef_feature */

.gef_feature  {
	background: url(../img/bg_gef_feature01.svg) no-repeat 0 0, url(../img/bg_gef_feature02.svg) no-repeat right 0;
}

.gef_feature .inner {
	padding: 80px 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.gef_feature .inner::before {
	content: '';
	position: absolute;
	top: 277px;
	right: 0;
	z-index: -1;
	width: 84%;
	height: 580px;
	background: url(../img/bg_gef01.jpg);
}

.gef_feature .inner h2 {
	margin-bottom: 60px;
}

.gef_feature .inner h2 .en {
	font-size: 40px;
	font-size: 4.0rem;
}

.gef_feature .inner .bg_txt {
	position: absolute;
	top: 550px;
	right: 0;
	z-index: -1;
	font-size: 80px;
	font-size: 8.0rem;
	line-height: 1;
	color: rgba(255,255,255,.05);
}

.gef_feature .inner .col {
	display: flex;
	margin: 0 0 60px;
	padding: 40px 0 0;
}

.gef_feature .inner .col .img {
	width: 55%;
	background: url(../img/bg_gef_feature03.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.gef_feature .inner .col .img img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	position: relative;
	top: -40px;
	left: 40px;
}

.gef_feature .inner .col .txt {
	width: 25%;
	margin: 40px 0 0;
	padding: 80px 8% 0 12%;
	border-top: 1px solid rgba(255,255,255,.2);
	position: relative;
}

.gef_feature .inner .col .txt::before {
	content: '';
	position: absolute;
	top: 0;
	right: 18%;
	width: 1px;
	height: 140px;
	background: #B18E41;
}

.gef_feature .inner .col .txt::after {
	content: '';
	position: absolute;
	top: 0;
	right: calc(18% + 1px);
	width: 15px;
	height: 70px;
	background: #000;
}

.gef_feature .inner .img_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 1080px;
	margin: 0 auto -40px;
	padding: 0;
	list-style: none;
}

.gef_feature .inner .img_list li {
	width: 23%;
	margin: 0 0 40px 2.66%;
}

.gef_feature .inner .img_list li:nth-child(4n + 1) {
	margin-left: 0;
}

.gef_feature .inner .bnr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 60px -20px -40px;
	padding: 0;
	list-style: none;
}

.gef_feature .inner .bnr_list li {
	margin: 0 20px 40px;
}

/* gef_service */

.gef_service {
	background: url(../img/bg_gef01.jpg) center center;
	position: relative;
	z-index: 0;
}

.gef_service::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	width: calc(50% + 540px);
	height: 1px;
	background: rgba(255,255,255,.2);
}

.gef_service .bg_txt {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: -1;
	font-size: 80px;
	font-size: 8.0rem;
	line-height: 1;
	color: rgba(255,255,255,.05);
}

.gef_service .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0 20px;
	position: relative;
}

.gef_service .inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 120px;
	background: #B18E41;
}

.gef_service .inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 1px;
	width: 15px;
	height: 60px;
	background: #000;
}

.gef_service .inner h3 {
	padding-left: 20px;
}

.gef_service .inner .lead {
	margin: 0 0 60px;
}

.gef_service .inner .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.6;
}

.gef_service .inner .list::after {
	content: '';
	display: block;
	width: 340px;
}

.gef_service .inner .list .col {
	width: 340px;
	margin: 0 0 60px;
	padding: 0 20px 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 0;
}

.gef_service .inner .list .col::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: calc(100% - 20px);
	background: #000 url(../img/bg_gef_feature02.svg) no-repeat right top;
}

.gef_service .inner .list .col .img {
	margin: 0 0 20px;
}

/* gef_rooms */

.gef_rooms  {
	background: url(../img/bg_gef_feature01.svg) no-repeat 0 0, url(../img/bg_gef_feature02.svg) no-repeat right 0;
}

.gef_rooms .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0 60px;
}

.gef_rooms .inner h2 .en {
	font-size: 40px;
	font-size: 4.0rem;
}

.gef_rooms .list {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 105px;
	font-size: 20px;
	font-size: 2.0rem;
	text-align: center;
	line-height: 1.6;
}

.gef_rooms .list .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	min-height: 400px;
	box-sizing: border-box;
	position: relative;
	z-index: 0;
}

.gef_rooms .list .col img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gef_rooms .list .col .lead {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 5px 20px 10px;
	font-size: 12px;
	font-size: 1.2rem;
	color: rgba(255,255,255,.6);
	letter-spacing: .2em;
	writing-mode: vertical-rl;
	background: rgba(255,255,255,.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.gef_rooms .list .col .txt {
	position: absolute;
	bottom: -25px;
	left: 0;
	padding: 10px 40px;
	background: url(../img/bg_gef01.jpg);
}

/* gef_type */

.gef_type {
	background: url(../img/bg_gef01.jpg) center center;
	position: relative;
	z-index: 0;
}

.gef_type::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	width: calc(50% + 540px);
	height: 1px;
	background: rgba(255,255,255,.2);
}

.gef_type .bg_txt {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: -1;
	font-size: 80px;
	font-size: 8.0rem;
	line-height: 1;
	color: rgba(255,255,255,.05);
}

.gef_type .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0;
	position: relative;
}

.gef_type .inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 120px;
	background: #B18E41;
}

.gef_type .inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 1px;
	width: 15px;
	height: 60px;
	background: #000;
}

.gef_type .inner h3 {
	padding-left: 20px;
}

.gef_type .inner .lead {
	margin: 0 0 60px;
}

.gef_type .inner .common_1col .col a {
	color: rgba(255,255,255,.9);
}

.gef_type .inner .common_1col .col .txt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	background: none;
}

.gef_type .inner .common_1col .col .txt .tit {
	margin: 0 20px 0 0;
	padding: 0 36px 0 0;
	background: url(../img/arw.svg) no-repeat right center;
	background-size: 16px auto;
}

.gef_type .inner .common_1col .col .txt .tag li {
	margin: 0 0 5px 5px;
	color: rgba(255,255,255,.6);
	border-color: rgba(255,255,255,.3);
}

/* gef_type2 */

.gef_type2 {
	background: #000;
	position: relative;
	z-index: 0;
}

.gef_type2::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	width: calc(50% + 540px);
	height: 1px;
	background: rgba(255,255,255,.3);
}

.gef_type2 .bg_txt {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: -1;
	font-size: 80px;
	font-size: 8.0rem;
	line-height: 1;
	color: rgba(255,255,255,.1);
}

.gef_type2 .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0;
	position: relative;
}

.gef_type2 .inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 120px;
	background: #B18E41;
}

.gef_type2 .inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 1px;
	width: 15px;
	height: 60px;
	background: #252321;
}

.gef_type2 .inner h3 {
	padding-left: 20px;
}

.gef_type2 .inner .lead {
	margin: 0 0 60px;
}

.gef_type2 .inner .common_2col a {
	color: rgba(255,255,255,.9);
}

.gef_type2 .inner .common_2col .col .txt .tag li {
	color: rgba(255,255,255,.6);
	border-color: rgba(255,255,255,.3);
}

/* アニバーサリーケーキ
======================================================= */

.patisserie_col {
	width: 510px;
	margin: 0 auto;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.patisserie_col .img {
	margin: 0 0 20px;
}

.patisserie_col .common_btn_s {
	margin-top: 20px;
}

/* patisserie_list */

.patisserie_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -60px;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.6;
}

.patisserie_list::after {
	content: '';
	display: block;
	width: 340px;
}

.patisserie_list .col {
	display: flex;
	flex-direction: column;
	width: 340px;
	margin: 0 0 60px;
}

.patisserie_list .col .img {
	margin: 0 0 20px;
}

.patisserie_list .col .tit {
	flex: 1;
}

.patisserie_list .col .common_btn_s {
	margin-top: 20px;
}

/* テイクアウト
======================================================= */

.takeout_lead {
	font-size: 28px;
	font-size: 2.8rem;
	text-align: center;
	line-height: 1.6;
}

.takeout_lead .em {
	margin: 5px 0 0;
	font-size: 20px;
	font-size: 2.0rem;
	color: #B18E41;
}

/* takeout_col */

.takeout_col {
	display: flex;
	justify-content: space-between;
	padding: 15px 40px;
	width: 100%;
	box-sizing: border-box;
	background: #F6F5F4;
}

.takeout_col .tit {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 190px;
	padding: 0 40px 0 0;
	border-right: 1px dashed #E0DFDD;
	box-sizing: border-box;
	font-size: 24px;
	font-size: 2.4rem;
}

.takeout_col .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 190px);
	padding: 0 0 0 40px;
	box-sizing: border-box;
}

/* MACARONI CLUB
======================================================= */

.mb_kv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 617px;
	height: calc(100svh - 105px);
	font-size: 24px;
	font-size: 2.4rem;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
	clip-path: inset(0);
}

.mb_kv .bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: transparent;
}

.mb_kv .bg img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.mb_kv .bg video,
.mb_kv .bg iframe {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -2;
	width: 177.77777778vh;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
}

.mb_kv .inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 1080px;
	height: 100%;
	padding: 50px 0;
	margin: 0 auto;
	box-sizing: border-box;
	font-weight: bold;
	line-height: 1;
}

.mb_kv .inner .lead {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	color: #745F30;
	line-height: 2;
}

.mb_kv .inner .lead .hl {
	padding: 4px 15px;
	background: #fff;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.mb_kv .inner h1 {
	margin: 3px 0 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
}

.mb_kv .inner h1 .en {
	display: inline-block;
	padding: 10px 30px 15px;
	font-size: 48px;
	font-size: 4.8rem;
	background: #745F30;
}

.mb_kv .inner h1 .en .small {
	display: block;
	margin: 0 0 -5px;
	font-size: 24px;
	font-size: 2.4rem;
}

.mb_kv .inner h1 .en .small2 {
	display: block;
	margin: -4px 0 0;
	font-size: 16px;
	font-size: 1.6rem;
}


/* mb_lead */

.mb_lead {
	background: #EDE8DF;
}

.mb_lead .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0;
}

.mb_lead .inner .tit {
	margin: 0 0 40px;
	font-size: 32px;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.mb_lead .inner .tit .em {
	color: #745F30;
}

/* mb_mainmenu */

.mb_mainmenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0;
	background: #F6F2ED;
	position: relative;
	z-index: 0;
}

.mb_mainmenu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: rgba(255,255,255,.8);
}

.mb_mainmenu.left::before {
	left: auto;
	right: 0;
}

.mb_mainmenu .txt {
	width: 28%;
	padding: 0 8%;
}

.mb_mainmenu.left .txt {
	order: 1;
}

.mb_mainmenu .txt .tit {
	margin: 0 0 30px;
	padding: 20px 0 0;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.2;
	position: relative;
}

.mb_mainmenu .txt .tit::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 4px;
	background: #745F30;
}

.mb_mainmenu .txt .tit .em {
	display: block;
	margin: 10px 0 0;
	font-size: 32px;
	font-size: 3.2rem;
}

.mb_mainmenu .txt .tit .em:first-letter {
	color: #745F30;
}

.mb_mainmenu .img {
	width: 56%;
}

.mb_mainmenu.left .img {
	order: 0;
}

.mb_mainmenu .img img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	box-shadow: 0px 10px 30px 0px rgba(0,0,0,.2);
}

.mb_mainmenu .img ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -5px;
	padding: 0 0 20px;
	list-style: none;
}

.mb_mainmenu .img ul li {
	width: calc(50% - 2.5px);
	margin: 0 0 5px;
}

.mb_mainmenu .img ul li:nth-child(even) {
	position: relative;
	top: 20px;
}

.mb_mainmenu .img ul li img.ht {
	height: 230px;
}

/* こころぎ
======================================================= */

.ko_kv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 617px;
	height: calc(100svh - 105px);
	font-size: 24px;
	font-size: 2.4rem;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
	clip-path: inset(0);
}

.ko_kv .bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: transparent;
}

.ko_kv .bg img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ko_kv .inner {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	width: 1080px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	line-height: 1;
}

.ko_kv .inner h1 {
	display: inline-block;
	margin: 40px 0 0;
	padding: 30px 15px;
	font-size: 48px;
	font-size: 4.8rem;
	font-weight: normal;
	line-height: 1;
	background: #6C74A3;
	writing-mode: vertical-rl;
	letter-spacing: 8px;
}

.ko_kv .inner .lead {
	display: inline-block;
	padding: 20px 13px;
	color: #252321;
	line-height: 1;
	background: #EFEFEF;
	writing-mode: vertical-rl;
	letter-spacing: 3px;
}

/* ko_lead */

.ko_lead {
	background: #E5E5E5;
}

.ko_lead .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0;
}

.ko_lead .inner .tit {
	margin: 0 0 40px;
	font-size: 32px;
	font-size: 3.2rem;
	text-align: center;
	line-height: 1.5;
}

.ko_lead .inner .tit .em {
	color: #6C74A3;
}


/* ko_mainmenu */

.ko_mainmenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0;
	background: #EFEFEF;
	position: relative;
	z-index: 0;
}

.ko_mainmenu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255,255,255,.3) 90%, rgba(255,255,255,.8) 100%);
}

.ko_mainmenu.left::before {
	left: auto;
	right: 0;
}

.ko_mainmenu .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 28%;
	padding: 0 8%;
	max-height: 510px;
	writing-mode: vertical-rl;
}

.ko_mainmenu.left .txt {
	order: 1;
}

.ko_mainmenu .txt .tit {
	margin: 0 0 0 30px;
	padding: 0 30px 0 0;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.3;
	position: relative;
}

.ko_mainmenu .txt .tit::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 160px;
	background: linear-gradient(135deg, #6C74A3, #fff);
}

.ko_mainmenu .txt .tit .em {
	display: block;
	margin: 10px 10px 0 0;
	font-size: 32px;
	font-size: 3.2rem;
}

.ko_mainmenu .txt .tit .em:first-letter {
	color: #6C74A3;
}

.ko_mainmenu .txt .tit ~ * {
	padding-top: 120px;
	line-height: 1.8;
}

.ko_mainmenu .txt .tc {
	-webkit-text-combine: horizontal;
	text-combine-upright: all;
	writing-mode: rl;
	line-height: 1;
}

.ko_mainmenu .img {
	width: 56%;
}

.ko_mainmenu.left .img {
	order: 0;
}

.ko_mainmenu .img img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	box-shadow: 0px 10px 30px 0px rgba(0,0,0,.2);
}

.ko_mainmenu .img ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -5px;
	padding: 0 0 20px;
	list-style: none;
}

.ko_mainmenu .img ul li {
	width: calc(50% - 2.5px);
	margin: 0 0 5px;
}

.ko_mainmenu .img ul li:nth-child(even) {
	position: relative;
	top: 20px;
}

.ko_mainmenu .img ul li img {
	height: 460px;
}

/* リゾートダイニング「フジヤマテラス」
======================================================= */

.fujiyamaterrace {
	color: #423F3B;
}

.ft_kv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 617px;
	height: calc(100svh - 105px);
	font-size: 24px;
	font-size: 2.4rem;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
	clip-path: inset(0);
}

.ft_kv .bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: transparent;
}

.ft_kv .bg img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ft_kv .inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 1080px;
	height: 100%;
	padding: 100px 0;
	margin: 0 auto;
	box-sizing: border-box;
	font-weight: bold;
	line-height: 1;
}

.ft_kv .inner h1 {
	margin: 0 0 0 30px;
	font-weight: normal;
	line-height: 1.3;
}

.ft_kv .inner h1 .type {
	display: inline-block;
	padding: 5px 15px 5px;
	font-size: 24px;
	font-size: 2.4rem;
	color: #423F3B;
	background: #FCF9ED;
	position: relative;
	left: -30px;
}

.ft_kv .inner h1 .tit {
	display: inline-block;
	padding: 10px 30px 13px;
	font-size: 48px;
	font-size: 4.8rem;
	line-height: 1.2;
	background: #CCA72B;
}

/* ft_lead */

.ft_lead {
	background: #F1EDDC;
}

.ft_lead .inner {
	width: 1080px;
	margin: 0 auto;
	padding: 80px 0;
}

.ft_lead .inner .tit {
	margin: 0 0 40px;
	font-size: 32px;
	font-size: 3.2rem;
	text-align: center;
	line-height: 1.5;
}

.ft_lead .inner .tit .em {
	color: #CCA72B;
}

/* ft_point */

.ft_point {
	padding: 80px 0;
	background: #F8F6ED;
}

.ft_point .block {
	width: 1080px;
	margin: 0 auto 80px;
}

.ft_point .block .common_slider:before {
	background: #fff;
}

.ft_point .point {
	display: flex;
}

.ft_point .point .lead {
	width: 20%;
	margin: 0 5%;
	padding: 22px 0 0;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.6;
	position: relative;
}

.ft_point .point .lead::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background: #CCA72B;
}

.ft_point .point .lead .em {
	display: block;
	font-size: 32px;
	font-size: 3.2rem;
}

.ft_point .point .lead .em:first-letter {
	color: #CCA72B;
}

.ft_point .point .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 65%;
	margin: 0 5% -30px 0;
}

.ft_point .point .inner::after {
	content: '';
	width: 31%;
}

.ft_point .point .inner .col {
	width: 31%;
	margin: 0 0 30px;
	font-size: 14px;
	font-size: 1.4rem;
}

.ft_point .point .inner .col .img {
	margin: 0 0 20px;
}

.ft_point .point .inner .col .img img {
	width: 100%;
}

.ft_point .point .inner .col .tit {
	margin: 0 0 20px;
	padding: 0 0 10px;
	border-bottom: 1px solid #E0DFDD;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.6;
}

/* ft_menu */

.ft_menu {
	padding: 0 0 80px;
	background: #F8F6ED;
}

.ft_menu .col {
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 0;
}

.ft_menu .col + .col {
	margin-top: 40px;
}

.ft_menu .col .img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 56%;
}

.ft_menu .col .img img {
	width: 100%;
	height: 540px;
	object-fit: cover;
}

.ft_menu .col .txt {
	width: 53%;
	margin: 40px 0 0;
	padding: 60px 80px;
	box-sizing: border-box;
	background: rgba(255,255,255,.95);
}

.ft_menu .col .txt .tit {
	margin: 0 0 30px;
	padding: 22px 0 0;
	font-size: 32px;
	font-size: 3.2rem;
	line-height: 1.3;
	position: relative;
}

.ft_menu .col .txt .tit:first-letter {
	color: #CCA72B;
}

.ft_menu .col .txt .tit::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background: #CCA72B;
}

.ft_menu .col .txt .intit {
	margin: 0 0 10px;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.2;
}

.ft_menu .col .txt .list li .list-in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
	position: relative;
	z-index: 0;
}

.ft_menu .col .txt .list li .list-in .bg {
	display: block;
	max-width: 100%;
	width: 100%;
	margin: 2px 10px 0;
	border-top: 1px dashed #E0DFDD;
}

/* アクセス
======================================================= */

.map_btn {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.4;
}

.map_btn a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	max-width: 360px;
	width: 100%;
	padding: 20px 35px;
	border: 1px solid #B18E41;
	box-sizing: border-box;
	border-radius: 3px;
	color: #B18E41;
	text-decoration: none;
	background: url(../img/ico_blank.svg) no-repeat right 15px center;
	background-size: 12px auto;
	transition: .3s;
}

.map_btn a:hover {
	opacity: .7;
}

.map_btn a::before {
	content: '';
	display: block;
	width: 198px;
	height: 23px;
	margin: 0 0 5px;
	background: url(../img/logo_hr.svg) no-repeat 0 0;
	background-size: cover;
}

/* access_free */

.access_free {
	display: flex;
	justify-content: space-between;
	padding: 40px;
	background: #F6F5F4;
}

.access_free .txt {
	width: 720px;
}

.access_free.wide .txt {
	width: 560px;
}

.access_free .txt .tit {
	margin: 0 0 20px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.8;
}

.access_free .txt .tit .em {
	font-size: 28px;
	font-size: 2.8rem;
}

.access_free .txt .em {
	color: #B18E41;
}

.access_free .img {
	width: 240px;
}

.access_free.wide .img {
	width: 400px;
}

/* access_bus */

.access_bus {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #E0DFDD;
	border-left: 1px solid #E0DFDD;
}

.access_bus .time {
	display: flex;
	justify-content: space-between;
	width: 33.33%;
	padding: 20px;
	border-right: 1px solid #E0DFDD;
	border-bottom: 1px solid #E0DFDD;
	box-sizing: border-box;
	font-size: 14px;
	font-size: 1.4rem;
}

.access_bus .time .txt {
	width: 210px;
}

.access_bus .time .txt .em {
	font-size: 16px;
	font-size: 1.6rem;
	color: #B18E41;
}

.access_bus .time .txt .small {
	margin: 0 0 0 5px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
}

.access_bus .time .common_btn_s {
	width: 85px;
	height: 62px;
	margin: 0;
}

.access_bus .time .common_btn_s a {
	padding: 0 30px 0 10px;
	background-color: #fff;
	background-position: right 10px center;
	text-align: left;
}

/* 会場一覧
======================================================= */

.hall_tbl01 tr th,
.hall_tbl01 tr td {
	text-align: center;
}

/* hall_detail */

.hall_detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0 0;
	margin: 0 0 20px;
}

.hall_detail h3 {
	width: 100%;
}

.hall_detail .txt {
	width: 580px;
}

.hall_detail .txt.wide {
	width: 100%;
	margin: 0 0 30px;
}

.hall_detail .img {
	width: 440px;
}

.hall_detail .img a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 440px;
	height: 440px;
	padding: 24px;
	border: 1px solid #E0DFDD;
	box-sizing: border-box;
	position: relative;
	transition: .3s;
}

.hall_detail .img a:hover {
	opacity: .7;
}

.hall_detail .img a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 12px;
	height: 14px;
	background: url(../img/ico_pdf.svg) no-repeat 0 0;
	background-size: 100% auto;
}

.hall_detail .img img {
	object-fit: contain;
	max-height: 100%;
}

.hall_detail .imglist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 0 -60px;
	padding: 0;
	list-style: none;
}

.hall_detail .imglist li {
	width: 510px;
	margin: 0 0 60px;
}

/* hall_detail_img */

.hall_detail_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0 -30px;
	padding: 0;
	list-style: none;
}

.hall_detail_img::after {
	content: '';
	display: block;
	width: 340px;
}

.hall_detail_img li {
	width: 340px;
	margin: 0 0 30px;
}

.hall_detail_img a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 340px;
	padding: 24px;
	border: 1px solid #E0DFDD;
	box-sizing: border-box;
	position: relative;
	transition: .3s;
}

.hall_detail_img a:hover {
	opacity: .7;
}

.hall_detail_img a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 12px;
	height: 14px;
	background: url(../img/ico_pdf.svg) no-repeat 0 0;
	background-size: 100% auto;
}

.hall_detail .img img {
	object-fit: contain;
	max-height: 100%;
}

/* hall_alink */

.hall_alink {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	flex-flow: row wrap;
	font-size: 10px;
	font-size: 1.0rem;
}
.hall_alink li {
	width: 25%;
	margin: 0 0 40px;
	border-right: 1px solid #E0DFDD;
	box-sizing: border-box;
}
.hall_alink li:nth-child(4n + 1) {
	border-left: 1px solid #E0DFDD;
}
.hall_alink li a {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	transition: .3s;
}

.hall_alink li a:link,
.hall_alink li a:visited {
	text-decoration: none;
}
.hall_alink li a:hover {
	opacity: .7;
}

.hall_alink li a .img {
	margin: 0 0 10px;
}

.hall_alink li a .txt {
	padding: 0 20px 0 0;
	background: url(../img/arw_alink.svg) no-repeat right center;
	background-size: 8px auto;
}

.hall_alink li a .txt .tit {
	margin: 0 0 3px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.6;
}

/* フロアガイド
======================================================= */

#fc_list_map {
	width: 960px;
	height: 800px;
	position: relative;
	margin: 0 auto 30px;
}


#fc_list_map .map_box p.tit {
	margin: 0 0 0px;
	font-weight:bold;
	line-height: 1.4;
}

#fc_list_map .map_box ul {
	margin: 0 0 5px;
	padding: 0 0 0 10px;
	list-style: none;
	line-height: 1.4;
}

#fc_list_map .map_box ul li {
	margin: 0 0 2px;
}

#fc_list_map .map_box ul li a {
	padding:0 0 0 9px;
	background: url(../../facility/_img/map_box_arw.png) no-repeat 0 center;
}



#fc_list_map .map_box ul li a:link,
#fc_list_map .map_box ul li a:visited {
	color: #008ad8;
	text-decoration: underline;
}

#fc_list_map .map_box ul li a:hover {
	color: #008ad8;
	text-decoration: none;
}

#fc_list_map .annex {
	background: url(../../facility/_img/bg_box_annex.png) no-repeat 0 0;
	width: 386px;
	height: 226px;
	position: absolute;
	top: 24px;
	left: 15px;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: left;
}

#fc_list_map .annex .an_left {
	float: left;
	width: 190px;
	padding:10px 0 0 5px;
}

#fc_list_map .annex .an_right {
	float: right;
	width: 190px;
	padding:10px 0 0;
}

#fc_list_map .main {
	background: url(../../facility/_img/bg_box_main.png) no-repeat 0 0;
	width: 455px;
	height: 166px;
	min-height: 0px;
	position: absolute;
	bottom: 30px;
	right: 15px;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: left;
}

#fc_list_map .main .main_left {
	float: left;
	width: 185px;
	padding:10px 0 0 5px;
}

#fc_list_map .main .main_right {
	float: right;
	width: 250px;
	padding:10px 0 0;
}

#fc_list_map .cafe {
	background: url(../../facility/_img/bg_box_cafe.png) no-repeat 0 0;
	width: 189px;
	height: 87px;
	position: absolute;
	top: 100px;
	left: 457px;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: left;
}

#fc_list_map .cafe .main_box {
	padding:15px 0 0 5px;
}



#fc_list_map .entrance		{ top: 381px; left:   29px; position: absolute; }
#fc_list_map .parking		{ top: 470px; left:  343px; position: absolute; }
#fc_list_map .busstop		{ top: 625px; left:  305px; position: absolute; }
#fc_list_map .skybalcony	{ top: 331px; left:  491px; position: absolute; }
#fc_list_map .walkway		{ top: 412px; right: 233px; position: absolute; }
#fc_list_map .museum		{ top:  92px; right: 109px; position: absolute; }
#fc_list_map .hotspring		{ top: 227px; right:  15px; position: absolute; }

/* お知らせ
======================================================= */

.article_list {
	margin: 0 0 60px;
}

.article_list .col {
	margin: 0 0 40px;
	padding: 0 0 40px;
	border-bottom: 1px dashed #E0DFDD;
}

.article_list .col .inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.article_list .col:last-child {
	margin: 0;
}

.article_list .col .img {
	width: 320px;
	position: relative;
}

.article_list .col.new .img::before {
	content: 'New';
	position: absolute;
	top: -5px;
	left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	border-radius: 20px;
	background: #B18E41;
}

.article_list .col .img img {
	width: 320px;
	height: 200px;
	object-fit: cover;
}

.article_list .col .txt {
	width: 720px;
}

.article_list .col .info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 10px;
	color: #5F5B55;
}

.article_list .col .info .status {
	margin: 0 10px 0 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.article_list .col .info .date {
	margin: 0 10px 0 0;
	font-size: 16px;
	font-size: 1.6rem;
}

.article_list .col .info .category {
	padding: 3px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4;
}

.article_list .col .txt .tit {
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.8;
}

.article_list .col .txt .tit + p {
	margin: 20px 0 0;
}

.article_list .col .txt .common_btn_s {
	margin: 20px 0 0 auto;
	width: 240px;
}

.article_list .col:nth-child(-n + 10) {
	display: block !important;
	height: auto !important;
}

.article_list .col:nth-child(n + 11) {
	display: none;
}

/* article_btn */

.article_btn {
	display: table;
	width: 100%;
	max-width: 360px;
	height: 66px;
	margin: 0 auto;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.4;
}

.article_btn a {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 35px;
	border: 1px solid #B18E41;
	border-radius: 3px;
	color: #B18E41;
	text-decoration: none;
	text-align: center;
	background: url(../img/ico_open.svg) no-repeat right 15px center;
	background-size: 15px auto;
	transition: .3s;
}

.article_btn.active a {
	background: url(../img/ico_close.svg) no-repeat right 15px center;
	background-size: 15px auto;
}

/* article */

.article {
	width: 880px;
	margin: 0 auto;
}

.article_info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 15px;
	color: #5F5B55;
	line-height: 1.8;
}

.article_info.new::before {
	content: 'New';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	border-radius: 20px;
	background: #B18E41;
}

.article_info .status {
	margin: 0 10px 0 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.article_info .date {
	margin: 0 10px 0 0;
	font-size: 16px;
	font-size: 1.6rem;
}

.article_info .category {
	padding: 3px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4;
}

.article_img {
	margin: 0 0 40px;
	text-align: center;
}

/* お問い合わせ
======================================================= */

.contact_faq {
	display: flex;
	justify-content: space-between;
	padding: 40px;
	background: #F6F5F4;
}

.contact_faq .txt {
	width: 600px;
}

.contact_faq .common_btn_s {
	max-width: 360px;
	font-size: 16px;
	font-size: 1.6rem;
}

.imp {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #E34F43;
	margin: 0 5px 0 0;
	padding: 0 5px 2px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #E34F43;
	line-height: 1.5;
}

.free {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #A09D99;
	margin: 0 5px 0 0;
	padding: 0 5px 2px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #A09D99;
	line-height: 1.5;
}

/* form_tbr */

.form_tbr {
	width: 100%;
	margin: 0 0 40px;
	border-top: 1px solid #E0DFDD;
}

.form_tbr tr th {
	width: 275px;
	padding: 35px 90px 35px 0;
	border-bottom: 1px solid #E0DFDD;
	box-sizing: border-box;
	position: relative;
	vertical-align: top;
}

.form_tbr tr th .imp,
.form_tbr tr th .free {
	position: absolute;
	top: 37px;
	right: 40px;
	margin: 0;
}

.form_tbr tr td {
	padding: 20px 0;
	border-bottom: 1px solid #E0DFDD;
	vertical-align: middle;
}

.form_tbr tr td .small {
	font-size: 14px;
	font-size: 1.4rem;
}

.form_tbr tr td .radio-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.form_tbr tr td .radio-list li {
	margin: 0 40px 0 0;
}

.form_tbr tr td dl {
	display: flex;
	align-items: center;
}

.form_tbr tr td dl + dl {
	margin: 15px 0 0;
}

.form_tbr tr td dl dt {
	width: 110px;
	font-size: 14px;
	font-size: 1.4rem;
}

.form_tbr tr td dl dd {
	width: calc(100% - 110px);
}

.form_tbr tr td table {
	margin: -21px 0;
}

.form_tbr tr td table tr th.pttl {
	width: 400px;
	padding-right: 20px;
}

.form_tbr tr td table tr td.size {
	width: 200px;
}

.form_tbr tr td table tr td.last {
	text-align: right;
}

input[type="checkbox"],
input[type="radio"] {
	vertical-align: middle;
	margin: 0 8px 0 0;
	accent-color: #B18E41;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"] {
	width: 100%;
	padding: 15px;
	border: 1px solid #E0DFDD;
	box-sizing: border-box;
	font-size: 16px;
	font-size: 1.6rem;
	background: #F6F5F4;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select {
	padding: 15px 35px 15px 15px;
	border: 1px solid #A09D99;
	border-radius: 4px;
	color: #252321;
	font-size: 16px;
	font-size: 1.6rem;
	background: #fff url(../img/arw_select.svg) no-repeat right 15px center;
	background-size: 10px auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	width: 100%;
	height: 210px;
	min-height: 210px;
	padding: 15px;
	border: 1px solid #E0DFDD;
	box-sizing: border-box;
	font-size: 16px;
	font-size: 1.6rem;
	background: #F6F5F4;
	resize: vertical;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="submit"] {
	display: block;
	width: 360px;
	height: 58px;
	margin: 0 auto;
	border: 1px solid #B18E41;
	border-radius: 3px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
	color: #B18E41;
	line-height: 1.6;
	text-align: center;
	background: url(../img/arw.svg) no-repeat right 15px center;
	border-radius: 4px;
}

input.number {
	width: 10%;
}

input.name {
	width: 50%;
}

input.email {
	width: 70%;
}

::placeholder {
	color: #A09D99;
}

.errs {
	margin: 20px 0 0;
	padding: 20px 30px;
	border: 2px solid #E34F43;
	color: #E34F43;
	font-weight: bold;
	background: #fff;
}

.errs li::marker {
	color: #E34F43;
}

.back_btn {
	max-width: 200px;
	margin: 30px auto 0;
	cursor: pointer;
}

.back_btn a {
	display: block;
	padding: 10px 40px;
	border: 1px solid #aeaeae;
	font-size: 16px;
	font-size: 1.6rem;
	color: #aeaeae;
	text-decoration: none;
	text-align: center;
	border-radius: 4px;
}

/* コンポーネント
======================================================= */

/* common_block */

.common_block {
	margin: 0 0 60px;
}

.common_block::after {
	content: '';
	display: block;
	clear: both;
}

/* common_1col_slider */

.common_1col_slider .col a {
	display: block;
	color: #252321;
	text-decoration: none;
	transition: .3s;
}

.common_1col_slider .col a:hover {
	opacity: .7;
}

.common_1col_slider .col .slider {
	display: none;
	margin: 0 0 20px;
}

.common_1col_slider .col .slider.slick-initialized {
	display: block;
}

.common_1col_slider .col .txt {
	padding: 0 30px 0 0;
}

.common_1col_slider .col a .txt {
	background: url(../img/arw.svg) no-repeat right center;
	background-size: 20px auto;
}

.common_1col_slider .col a.blank .txt {
	background: url(../img/ico_blank.svg) no-repeat right center;
	background-size: 13px auto;
}

.common_1col_slider .col .txt .tit {
	margin: 0 0 10px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.common_1col_slider .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.common_1col_slider .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}

/* common_1col */

.common_1col .col a {
	display: block;
	color: #252321;
	text-decoration: none;
	transition: .3s;
}

.common_1col .col a:hover {
	opacity: .7;
}

.common_1col .col .img {
	margin: 0 0 20px;
	text-align: center;
}

.common_1col .col .txt {
	padding: 0 30px 0 0;
}

.common_1col .col a .txt {
	background: url(../img/arw.svg) no-repeat right center;
	background-size: 20px auto;
}

.common_1col .col a.blank .txt {
	background: url(../img/ico_blank.svg) no-repeat right center;
	background-size: 13px auto;
}

.common_1col .col .txt .tit {
	margin: 0 0 10px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.common_1col .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.common_1col .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}

.common_1col .col .detail  {
	margin: 20px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid #E0DFDD;
}

.common_1col .iframe {
	margin: 0 0 20px;
}

.common_1col iframe {
	height: 405px;
}

/* common_2col */

.common_2col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -60px;
}

.common_2col .col {
	display: flex;
	flex-direction: column;
	width: 510px;
	margin: 0 0 60px;
}

.common_2col .col > a {
	flex: 1;
	display: block;
	color: #252321;
	text-decoration: none;
	transition: .3s;
}

.common_2col .col > a:hover {
	opacity: .7;
}

.common_2col .col .img {
	margin: 0 0 20px;
	text-align: center;
}

.common_2col .col > a .txt {
	padding: 0 30px 0 0;
}

.common_2col .col > a .txt {
	background: url(../img/arw.svg) no-repeat right center;
	background-size: 20px auto;
}

.common_2col .col > a.blank .txt {
	background: url(../img/ico_blank.svg) no-repeat right center;
	background-size: 13px auto;
}

.common_2col .col .txt .tit {
	margin: 0 0 10px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.common_2col .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.common_2col .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}

.common_2col .col .detail  {
	margin: 20px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid #E0DFDD;
}

/* common_slider */

.common_slider {
	padding: 0 100px 40px;
	position: relative;
	z-index: 0;
}

.common_slider .slider {
	display: none;
	margin: 0 0 30px;
}

.common_slider .slider.slick-initialized {
	display: block;
}

.common_slider:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: calc(100% - 40px);
	background: url(../img/bg_pattern01.svg) no-repeat 0 0,url(../img/bg_pattern02.svg) no-repeat right 0, #000;
}

.common_slider .slide-arrow.slick-prev {
	left: -75px;
}

.common_slider .slide-arrow.slick-next {
	right: -75px;
}

.common_slider .thum {
	display: none;
}

.common_slider .thum.slick-initialized {
	display: block;
}

.common_slider .thum .slick-current img {
	opacity: 1;
}

.common_slider .thum img {
	display: block;
	width: 100px;
	opacity: 0.5;
	cursor: pointer;
	padding: 0 10px 0 0;
}

/* common_room_detail */

.common_room_detail {
	display: flex;
	justify-content: space-between;
}

.common_room_detail .txt {
	width: 580px;
}

.common_room_detail .img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 440px;
	height: 440px;
	padding: 24px;
	border: 1px solid #E0DFDD;
	box-sizing: border-box;
}

.common_room_detail .img img {
	object-fit: contain;
	max-height: 100%;
}

/* common_accrodion */

.common_accrodion {
	margin: 0 0 40px;
}

.common_accrodion .trigger {
	padding: 15px 60px 15px 20px;
	font-size: 20px;
	font-size: 2.0rem;
	color: #fff;
	line-height: 1.4;
	background: #5F5B55 url(../img/ico_ac_open.svg) no-repeat right 20px center;
	background-size: 20px auto;
	position: relative;
}

.common_accrodion .trigger.active {
	background: #5F5B55 url(../img/ico_ac_close.svg) no-repeat right 20px center;
	background-size: 20px auto;
}

.common_accrodion .trigger.car,
.common_accrodion .trigger.train,
.common_accrodion .trigger.bus {
	padding-left: 60px;
}

.common_accrodion .trigger.car::before,
.common_accrodion .trigger.train::before,
.common_accrodion .trigger.bus::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	width: 30px;
	height: 30px;
	margin: -15px 0 0;
}

.common_accrodion .trigger.car::before {
	background: url(../img/ico_car_w.svg) no-repeat 0 0;
	background-size: 100% auto;
}

.common_accrodion .trigger.train::before {
	background: url(../img/ico_train_w.svg) no-repeat 0 0;
	background-size: 100% auto;
}

.common_accrodion .trigger.bus::before {
	background: url(../img/ico_bus_w.svg) no-repeat 0 0;
	background-size: 100% auto;
}

.common_accrodion .trigger .small {
	margin: 0 0 0 10px;
	font-size: 16px;
	font-size: 1.6rem;
}

.common_accrodion .accordion {
	padding: 20px 0 0;
}

.common_accrodion .accordion .common_btn {
	margin-top: 20px;
}

/* common_3col */

.common_3col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -60px;
}

.common_3col::after {
	content: '';
	display: block;
	width: 340px;
}

.common_3col .col {
	display: flex;
	flex-direction: column;
	width: 340px;
	margin: 0 0 60px;
}

.common_3col .col > a {
	display: block;
	color: #252321;
	text-decoration: none;
	transition: .3s;
}

.common_3col .col > a:hover {
	opacity: .7;
}

.common_3col .col .img {
	margin: 0 0 20px;
	text-align: center;
	position: relative;
}

.common_3col .col.new .img::before {
	content: 'New';
	position: absolute;
	top: -5px;
	left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	border-radius: 20px;
	background: #B18E41;
}

.common_3col .col .txt {
	font-size: 14px;
	font-size: 1.4rem;
}

.common_3col .col > a .txt {
	padding: 0 30px 0 0;
}

.common_3col .col > a .txt {
	background: url(../img/arw.svg) no-repeat right center;
	background-size: 20px auto;
}

.common_3col .col > a.blank .txt {
	background: url(../img/ico_blank.svg) no-repeat right center;
	background-size: 13px auto;
}

.common_3col .col .txt .tit {
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.4;
}

.common_3col .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.common_3col .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}

.common_3col .col .detail  {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin: 20px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid #E0DFDD;
	font-size: 14px;
	font-size: 1.4rem;
}

.common_3col .col .detail .box {
	margin: 20px 0 0;
	padding: 10px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	background: #F6F5F4;
}

.common_3col .col .txt .en {
	margin: 0 0 20px;
	line-height: 1.6;
}

.common_3col .col .detail .price {
	margin: 0 0 30px;
	padding: 0 0 0;
	line-height: 1.4;
}

.common_3col .col .detail .price + .price {
	margin-top: -10px;
}

.common_3col .col .detail .price .em {
	font-size: 20px;
	font-size: 2.0rem;
}

.common_3col .col .detail .price .num {
	font-size: 28px;
	font-size: 2.8rem;
}

.common_3col .col .detail .common_btn_s {
	margin-top: auto;
}

/* common_img_txt */

.common_img_txt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0;
	color: #fff;
	position: relative;
	z-index: 0;
}

.common_img_txt::before {
	content: '';
	position: absolute;
	top: 0;
	z-index: -1;
	width: 920px;
	height: 100%;
}

.common_img_txt.left::before {
	right: 0;
	background: #000 url(../img/bg_pattern02.svg) no-repeat right 0;
}

.common_img_txt.right::before {
	left: 0;
	background: #000 url(../img/bg_pattern01.svg) no-repeat 0 0;
}

.common_img_txt .txt {
	width: 290px;
}

.common_img_txt.left .txt {
	order: 1;
	padding-right: 60px;
}

.common_img_txt.right .txt {
	order: 0;
	padding-left: 60px;
}

.common_img_txt .img {
	width: 670px;
}

.common_img_txt.left .img {
	order: 0;
}

.common_img_txt.right .img {
	order: 1;
}

.common_img_txt .txt .tit {
	margin: 0 0 20px;
	padding: 0 0 15px;
	border-bottom: 1px solid rgba(224, 223, 221, .3);
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.2;
}

.common_img_txt .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: rgba(255,255,255,.6);
	line-height: 1.4;
}

.common_img_txt .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 3px;
}

.common_img_txt .txt .common_btn_s {
	margin-top: 20px;
}

/* common_tag */

.common_tag {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.common_tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}

/* common_exfloar */

.common_exfloar {
	padding: 80px 0;
	color: #fff;
	background: url(../img/bg_pattern01.svg) no-repeat 0 0,url(../img/bg_pattern02.svg) no-repeat right 0, #000;
}

.common_exfloar .tit {
	margin: 0 0 40px;
	padding: 0 30px 16px;
	font-size: 28px;
	font-size: 2.8rem;
	text-align: center;
	line-height: 1.2;
	position: relative;
}

.common_exfloar .tit::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 200px;
	height: 1px;
	margin: 0 0 0 -100px;
	background: #B18E41;
}

.common_exfloar .intit {
	margin: 0 0 30px;
	font-size: 14px;
	font-size: 1.4rem;
	color: #B18E41;
	line-height: 1.4;
	text-align: center;
	text-shadow: 0 3px 10px rgba(0,0,0,.3);
}

.common_exfloar .intit .en {
	display: block;
	font-size: 32px;
	font-size: 3.2rem;
	color: rgba(255,255,255,.9);
}

.common_exfloar .inner01 {
	padding: 30px 30px 90px;
	position: relative;
	z-index: 0;
}

.common_exfloar .inner01 .bg img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .4;
}

.common_exfloar .inner02 {
	margin: 0 0 40px;
	padding: 60px 30px 60px;
	position: relative;
	z-index: 0;
}

.common_exfloar .inner02 .bg img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .4;
}

.common_exfloar .col_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -15px -30px;
	line-height: 1.4;
}

.common_exfloar .col_wrap .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 320px;
	margin: 0 15px 30px;
	padding: 10px 0;
	color: rgba(255,255,255,.9);
	text-decoration: none;
	position: relative;
	z-index: 0;
	transition: .3s;
}

.common_exfloar .col_wrap .col:hover {
	opacity: .7;
}

.common_exfloar .col_wrap .col::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: calc(100% - 45px);
	height: 100%;
	background: rgba(0,0,0,.5);
}

.common_exfloar .col_wrap .col .img {
	width: 90px;
}

.common_exfloar .col_wrap .col .img img {
	width: 90px;
	height: 90px;
	object-fit: cover;
}

.common_exfloar .col_wrap .col .txt {
	width: 160px;
	margin-left: auto;
	padding: 0 50px 0 0;
	background: url(../img/arw_w.svg) no-repeat right 20px center;
	background-size: 20px auto;
}

.common_exfloar .col_wrap .col .txt .en {
	font-size: 10px;
	font-size: 1.0rem;
	color: rgba(255,255,255,.6);
}

.common_exfloar .col_wrap .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 5px 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 10px;
	font-size: 1.0rem;
}

.common_exfloar .col_wrap .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 3px;
}

/* common_restrant */

.common_restrant {
	padding: 80px 40px;
	color: #fff;
	background: url(../img/bg_top_restrant01.svg) no-repeat 0 0, url(../img/bg_top_restrant02.svg) no-repeat right bottom, #35593B;
	position: relative;
	z-index: 0;
}

.common_restrant::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(0deg,rgba(53,89,59,0),rgba(53,89,59,1));
	opacity: .15;
	mix-blend-mode: multiply;
}

.common_restrant::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg,rgba(53,89,59,0),rgba(53,89,59,1));
	opacity: .15;
	mix-blend-mode: multiply;
}

.common_restrant .tit {
	margin: 0 0 40px;
	padding: 0 0 15px;
	font-size: 28px;
	font-size: 2.8rem;
	text-align: center;
	line-height: 1.4;
	position: relative;
}

.common_restrant .tit::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -100px;
	width: 200px;
	height: 1px;
	background: #B18E41;
}

.common_restrant .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -40px;
}

.common_restrant .inner .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 480px;
	margin: 0 0 40px;
	padding: 20px 0;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	text-decoration: none;
	position: relative;
	z-index: 0;
	transition: .3s;
}

.common_restrant .inner .col:hover {
	opacity: .7;
}

.common_restrant .inner .col::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 410px;
	height: 100%;
	background: #000;
	opacity: .2;
}

.common_restrant .inner .col .img {
	width: 140px;
}

.common_restrant .inner .col .img img {
	width: 140px;
	height: 140px;
	object-fit: cover;
}

.common_restrant .inner .col .txt {
	width: 250px;
	padding: 0 60px 0 0;
	background: url(../img/arw_w.svg) no-repeat right 30px center;
	background-size: 16px auto;
}

.common_restrant .inner .col .txt .intit {
	margin: 5px 0 10px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.common_restrant .inner .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 1.4;
}

.common_restrant .inner .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 3px;
}

/* common_restrant_btn */

.common_restrant_btn {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -20px;
}

.common_restrant_btn .col {
	display: flex;
	align-items: center;
	width: 255px;
	margin: 0 10px 20px;
	padding: 15px;
	border: 1px solid #B18E41;
	border-radius: 3px;
	box-sizing: border-box;
	color: #B18E41;
	text-decoration: none;
	line-height: 1.4;
	text-align: center;
	transition: .3s;
}

.common_restrant_btn .col:hover {
	opacity: .7;
}

.common_restrant_btn .col .img {
	width: 60px;
}

.common_restrant_btn .col .txt {
	width: 160px;
	margin: 0 0 0 10px;
}

/* common_bnr */

.common_bnr {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -10px -40px;
}

.common_bnr .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 530px;
	margin: 0 10px 40px;
	padding: 40px 20px;
	border: 1px solid #E0DFDD;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 1.2rem;
	color: #252321;
	text-decoration: none;
	position: relative;
	z-index: 0;
	transition: .3s;
}

.common_bnr .col:hover {
	opacity: .7;
}

.common_bnr .col::before {
	content: '';
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: -1;
	width: 418px;
	height: calc(100% - 40px);
	background: #F6F5F4;
}

.common_bnr .col .img {
	width: 140px;
}

.common_bnr .col .img img {
	width: 140px;
	height: 140px;
	object-fit: cover;
}

.common_bnr .col .txt {
	width: 250px;
	padding: 0 60px 0 0;
	background: url(../img/arw.svg) no-repeat right 30px center;
	background-size: 16px auto;
}

.common_bnr .col.blank .txt {
	background: url(../img/ico_blank.svg) no-repeat right 30px center;
	background-size: 13px auto;
}

.common_bnr .col .txt .intit {
	margin: 5px 0 10px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}

.common_bnr .col .txt .tag {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 10px;
	font-size: 1.0rem;
	color: #5F5B55;
	line-height: 1.4;
}

.common_bnr .col .txt .tag li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}

/* common_price */

.common_price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 5px;
	padding: 15px 20px;
	background: #F6F5F4;
	line-height: 1.4;
}

.common_price .txt {
	width: 580px;
	padding: 0 40px 0 0;
	border-right: 1px dashed #E0DFDD;
}

.common_price .txt .name {
	font-size: 24px;
	font-size: 2.4rem;
}

.common_price .txt .name + p {
	margin-top: 5px;
}

.common_price .txt .name .small {
	font-size: 20px;
	font-size: 2.0rem;
}

.common_price .price {
	width: 380px;
}

.common_price .price .em {
	font-size: 20px;
	font-size: 2.0rem;
}

.common_price .price .num {
	font-size: 28px;
	font-size: 2.8rem;
}

.common_price .price .small {
	font-size: 14px;
	font-size: 1.4rem;
}

.common_price .price .mincho + .small {
	margin-top: 5px;
}

/* topics_list */

.topics_list {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #5F5B55;
}


.topics_list li {
	display: flex;
	align-items: center;
	padding: 0 0 20px;
	border-bottom: 1px dashed #E0DFDD;
}

.topics_list li + li {
	margin: 20px 0 0;
}

.topics_list li .date {
	width: 100px;
}

.topics_list li .category {
	width: 80px;
	margin: 0 20px 0 0;
	padding: 2px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.4;
}

.topics_list li .tit {
	width: calc(100% - 200px);
}

/* pickup_slider */

.pickup_slider {
	display: none;
	width: 1020px;
	margin: 0 auto;
	padding: 0 0 38px;
}

.pickup_slider.slick-initialized {
	display: block;
}

.pickup_slider .slides {
	display: block;
	width: 320px;
	margin: 0 15px;
	font-size: 14px;
	font-size: 1.4rem;
	color: #252321;
	text-decoration: none;
	transition: .3s;
}

.pickup_slider .slides:hover {
	opacity: .7;
}

.pickup_slider .slides .img {
	margin: 0 0 20px;
}

.pickup_slider .slides .img img {
	width: 320px;
	height: 200px;
	object-fit: cover;
}

.pickup_slider .slides .txt {
	width: 320px;
}

.pickup_slider .slides .txt .info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px;
	color: #5F5B55;
	line-height: 1.4;
}

.pickup_slider .slides .txt .info .category {
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
}

.pickup_slider .slide-arrow.slick-prev {
	left: -30px;
}

.pickup_slider .slide-arrow.slick-next {
	right: -30px;
}

/* comingsoon */

.comingsoon {
	width: 880px;
	margin: 0 auto;
	padding: 40px;
	border: 1px solid #B18E41;
	color: #5F5B55;
	background: url(../img/bg_f_contact01.svg) no-repeat 0 0,url(../img/bg_f_contact02.svg) no-repeat right 0,#F6F5F4;
	text-align: center;
}

.comingsoon .tit {
	margin: 0 0 20px;
	font-size: 28px;
	font-size: 2.8rem;
	color: #B18E41;
	line-height: 1.6;
}

/* foodfes
======================================================= */

.tag_list {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 15px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-size: 1.2rem;
	color: #5F5B55;
	line-height: 1.4;
}

.tag_list li {
	margin: 0 5px 5px 0;
	padding: 2px 10px;
	border: 1px solid #E0DFDD;
	border-radius: 3px;
}


/* テンプレート
======================================================= */
/* 1カラムコンテンツ */
.col1 {
	display: flex;

	align-content: center;
	justify-content: space-between;
}
.col1 .img {
	width: 520px;
	margin: 0;
}
.col1 .img img {
	width: 520px;
}
.col1 .txt {
	width: 520px;
	margin: 0 0 0;
	vertical-align: middle;

	align-self: center;
}

/* 2カラムコンテンツ */
.col2 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 50px;
}
.col2 .box {
	width: 520px;
	margin: 0 40px 40px 0;
}
.col2 .box:nth-child(2n) {
	margin: 0 0 40px;
}
.col2 .box:nth-last-child(2) {
	margin: 0 40px 0 0;
}
.col2 .box:last-child {
	margin: 0;
}
.col2 .img {
	margin: 0 0 20px;
}
/* 3カラムコンテンツ */
.col3 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 50px;
}
.col3 .box {
	width: 332px;
	margin: 0 42px 40px 0;
}
.col3 .box:nth-child(3n) {
	margin: 0 0 40px;
}
.col3 .box:nth-last-child(2),
.col3 .box:nth-last-child(3) {
	margin: 0 42px 0 0;
}
.col3 .box:last-child {
	margin: 0;
}
.col3 .box img {
	width: 332px;
	height: auto;
	margin: 0 0 20px;
}
/* 4カラムコンテンツ */
.col4 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 50px;
}
.col4 .box {
	width: 240px;
	margin: 0 40px 40px 0;
}
.col4 .box:nth-child(4n) {
	margin: 0 0 40px;
}
.col4 .box:nth-last-child(2),
.col4 .box:nth-last-child(3),
.col4 .box:nth-last-child(4) {
	margin: 0 40px 0 0;
}
.col4 .box:last-child {
	margin: 0;
}
.col4 .box img {
	width: 240px;
	margin: 0 0 20px;
}
/* 2カラム横並びコンテンツ */
.col2w {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 50px;
}
.col2w .box {
	display: flex;
	width: 520px;
	margin: 0 40px 40px 0;
}
.col2w .box:nth-last-child(2) {
	margin: 0 40px 0 0;
}
.col2w .box:nth-child(even) {
	margin: 0 0 40px;
}
.col2w .box:last-child {
	margin: 0;
}
.col2w .box .img {
	width: 140px;
	margin: 0 20px 0 0;
}
.col2w .box .txt {
	width: 360px;
}
.col2w .box .txt p.tit {
	text-align: left;
}
.col2w .box img {
	width: 140px;
	height: auto;
}
.cnt_wrap .box p.tit {
	margin: 0 0 10px;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.cnt_wrap .box p.tit a,
.cnt_wrap .box p.tit a:visited {
	color: #07539f;
	text-decoration: none;
}
.cnt_wrap .box p.tit a:hover {
	text-decoration: underline;
}

/* ページ下部コンバージョン */
.f_contact {
	width: 880px;
	margin: 0 auto;
	padding: 40px 0;
	border: 1px solid #B18E41;
	background: url(../img/bg_f_contact01.svg) no-repeat 0 0,url(../img/bg_f_contact02.svg) no-repeat right 0,#F6F5F4;
	text-align: center;
}

.f_contact h2 {
	margin: 0 0 10px;
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1;
}

.main .block .f_contact h2 {
	width: auto;
	margin: 0 0 10px;
	padding: 0;
	border: none;
	background: none;
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.4;
	text-align: center;
}
.main .block .f_contact h2::before {
	position: static;
	width: auto;
	height: auto;
	background: none;
	content: "";
}
.f_contact .fcon {
	display: flex;
	margin: 20px 0 0 0;
	text-align: center;

	justify-content: center;
	align-items: center;
}
.f_contact .fcon .tel {
	margin: 0 20px 0 0;
	color: #5F5B55;
	text-align: left;
	line-height: 1;
}
.f_contact .fcon .tel a {
	display: inline-block;
	padding: 0 0 0 29px;
	background: url(../img/ico_tel.svg) 0 .2em no-repeat;
	background-size: 24px auto;
	color: #B18E41;
	font-size: 32px;
	font-size: 3.2rem;
	text-decoration: none;
	pointer-events: none;
	cursor: default;
}
.f_contact .fcon .tel span {
	display: block;
	margin: 0;
	padding: 0 0 0 29px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 2;
	text-align: center;
}
.f_contact .fcon .tel .reading {
	display: inline-block;
	overflow: hidden;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}
.f_contact .fcon .btn {
	display: inline-block;
	vertical-align: middle;
}
.f_contact .fcon .btn a span {
	padding: 0 0 0 30px;
	background: url(../img/ico_head_cv.png) no-repeat 0 50%;
	background-size: 23px auto;
}

.f_contact_txt {
	width: 880px;
	margin: 20px auto 0;
}

/* サイトマップ
======================================================= */

.sm_list {
	margin: 0;
	padding: 0;
	border-top: 1px solid #E0DFDD;
	list-style: none;
}

.sm_list > li {
	padding: 28px 0;
	border-bottom: 1px solid #E0DFDD;
}

.sm_list > li ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.sm_list > li ul {
	margin-left: 32px;
}

.sm_list > li ul li {
	float: left;
	margin: 0 32px 0 0;
}

.sm_list > li ul li {
	margin-top: 10px;
}

.sm_list > li ul .wide {
	width: 100%;
}

/* 汎用スタイル
======================================================= */

.textss {
	font-size: 12px;
	font-size: 1.2rem;
}
.texts {
	font-size: 14px;
	font-size: 1.4rem;
}
.textn {
	font-size: 16px;
	font-size: 1.6rem;
}
.textl {
	font-size: 18px;
	font-size: 1.8rem;
}
.textll {
	font-size: 20px;
	font-size: 2.0rem;
}
.textxl {
	font-size: 24px;
	font-size: 2.4rem;
}
.textxxl {
	font-size: 28px;
	font-size: 2.8rem;
}

.btn {
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.4;
}
.btn a,
.btn a:visited {
	display: inline-block;
	min-width: 360px;
	padding: 20px 30px;
	box-sizing: border-box;
	border-radius: 3px;
	background: #B18E41 url(../img/arw_w.svg) no-repeat right 15px center;
	background-size: 20px auto;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}
.btn a:hover {
	opacity: .7;
}

.btn.blank a,
.btn.blank a:visited {
	background: #B18E41 url(../img/ico_blank_w.svg) no-repeat right 15px center;
	background-size: 13px auto;
}

.overimg {
	transition: opacity .2s;
}
.overimg:hover {
	opacity: .6;
	transition: opacity .2s;
}

table {
	border-collapse: collapse;
	width: 100%;
	line-height: 1.5;
}

table.nbr,
table.tbr table.nbr {
	border-collapse: collapse;
	border-top: none;
	border-left: none;
}

table.nbr th,
table.tbr table.nbr th {
	padding: 0;
	border-right: none;
	border-bottom: none;
	font-weight: bold;
}

table.nbr td,
table.tbr table.nbr td {
	padding: 0;
	border-right: none;
	border-bottom: none;
}

table.tbr,
table.nbr table.tbr {
	border-collapse: collapse;
	border-top: 1px solid #E0DFDD;
	border-left: 1px solid #E0DFDD;
}

table.tbr th,
table.nbr table.tbr th {
	padding: 15px;
	border-right: 1px solid #E0DFDD;
	border-bottom: 1px solid #E0DFDD;
	background: #F6F5F4;
	color: #5F5B55;
	line-height: 1.4;
}

table.tbr th.parent,
table.nbr table.tbr th.parent {
	background: rgba(246, 245, 244, .4);
}

table.tbr td,
table.nbr table.tbr td {
	padding: 15px;
	border-right: 1px solid #E0DFDD;
	border-bottom: 1px solid #E0DFDD;
	line-height: 1.4;
}
table caption {
	margin: 0 0 10px;
	text-align: left;
}

.photo-r {
	float: right;
	margin: 3px 0 30px 60px;
	font-size: 10px;
	font-size: 1.0rem;
	text-align: left;
}
.photo-l {
	float: left;
	margin: 3px 30px 30px 0;
	font-size: 10px;
	font-size: 1.0rem;
	text-align: left;
}
.photo-c {
	margin: 3px auto 30px;
	font-size: 10px;
	font-size: 1.0rem;
}

.photo-r img,
.photo-l img,
.photo-c img {
	margin-bottom: 5px;
}
.top_back {
	clear: both;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}

.top_back a {
	padding: 0 15px;
}
iframe {
	border: none;
}

.tac {
	text-align: center !important;
}
.tal {
	text-align: left !important;
}
.tar {
	text-align: right !important;
}

.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.pc_none {
	display: none !important;
}
.clearfix {
	zoom: 1;
}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
*::after {
	display: block;
	clear: both;
}

/* 旧marginの設定
================================================================= */
.m01 { margin-bottom: 1px; }
.m02 { margin-bottom: 2px; }
.m03 { margin-bottom: 3px; }
.m04 { margin-bottom: 4px; }
.m05 { margin-bottom: 5px; }
.m06 { margin-bottom: 6px; }
.m07 { margin-bottom: 7px; }
.m08 { margin-bottom: 8px; }
.m09 { margin-bottom: 9px; }
.m10 { margin-bottom:10px; }

.m11 { margin-bottom:11px; }
.m12 { margin-bottom:12px; }
.m13 { margin-bottom:13px; }
.m14 { margin-bottom:14px; }
.m15 { margin-bottom:15px; }
.m16 { margin-bottom:16px; }
.m17 { margin-bottom:17px; }
.m18 { margin-bottom:18px; }
.m19 { margin-bottom:19px; }

.m20 { margin-bottom:20px; }.m25 { margin-bottom:25px; }
.m30 { margin-bottom:30px; }.m35 { margin-bottom:35px; }
.m40 { margin-bottom:40px; }.m45 { margin-bottom:45px; }
.m50 { margin-bottom:50px; }.m55 { margin-bottom:55px; }
.m60 { margin-bottom:60px; }.m65 { margin-bottom:65px; }
.m70 { margin-bottom:70px; }.m75 { margin-bottom:75px; }
