@charset "UTF-8";

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
/*
	#font
------------------------------ */
body {
	background-color: #fff;
	padding-left: 83px;
	line-height: 1.5;
	color: #000;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-feature-settings: "pkna";
	letter-spacing: 0.05em;
}

@media(max-width:768px) {
	body {
		padding-left: 0;
		font-size: 3.64583vw;
	}
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p {
	margin-bottom: 1em;
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

ol.normal li,
ul.normal li {
	margin-left: 1em;
	text-indent: -1em;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}

a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
section {
	width: 100%;
}

.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1040px;
	width: 100%;
}

@media(max-width:768px) {
	.container {
		padding: 0 2.60417vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media(max-width:768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
.list_style li {
	margin-left: 1em;
	text-indent: -1em;
}

/* type */
.list_style.type1 li::before {
	content: "●";
}

/* note */
.list_style.note {
	font-size: 13px;
}

.list_style.note li::before {
	content: "※";
}

@media(max-width:768px) {
	.list_style.note {
		font-size: 3.125vw;
	}
}

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

@media(max-width:768px) {
	.tel {
		pointer-events: all;
	}
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background: rgba(18, 23, 44, 1);
	padding-top: 22px;
	color: #fff;
	width: 83px;
	height: 100vh;
	font-size: 16px;
	overflow-y: scroll;
	overflow-x: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
}

.header::-webkit-scrollbar {
	width: 2px;
}

.header::-webkit-scrollbar-track {
	background: rgba(18, 23, 44, 1);
}

.header::-webkit-scrollbar-thumb {
	background: #666;
}

.header .logo {
	padding-bottom: 2.5em;
	width: 83px;
	text-align: center;
	position: relative;
}

.header .logo img {
	width: 25%;
	vertical-align: top;
}

@media(max-width: 768px) {
	.header {
		background: none;
		padding-top: 0;
		width: auto;
		height: auto;
	}

	.header .logo {
		width: 52px;
		height: 52px;
		position: fixed;
		top: 15px;
		right: 10px;
	}

	.header .logo img {
		width: 60%;
	}
}

/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media(max-width: 768px) {
	.toggle {
		padding: 10px;
		display: block;
		position: fixed;
		top: 65px;
		right: 10px;
		z-index: 1000;
		transform: rotate(90deg);
	}

	.toggle_inner {
		position: relative;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}

	.toggle_inner>span {
		background: #fff;
		width: 100%;
		height: 1px;
		display: block;
		position: absolute;
		left: 0;
		transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
	}

	.toggle_inner>span:nth-child(1) {
		top: 2px;
	}

	.toggle_inner>span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle_inner>span:nth-child(3) {
		bottom: 2px;
	}
}

/*
	nav_content
------------------------------ */
.nav_content {
	width: 100%;
}

.nav_content .gnav {
	display: flex;
	flex-direction: column;
}

.nav_content .gnav li {
	margin-bottom: 1.5em;
	writing-mode: vertical-lr;
}

.nav_content .gnav a {
	padding-right: 2px;
	width: 83px;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .6s ease;
}

.nav_content .gnav a:hover {
	opacity: 0.6;
}

@media(max-width: 768px) {
	.nav_content {
		background: rgba(18, 23, 44, 1);
		max-width: 100%;
		width: 100%;
		color: #fff;
		text-align: center;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		transform: translatey(-100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.nav_content .gnav {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: flex-start;
	}

	.nav_content .gnav li {
		margin: 0 1em;
		font-size: 3.90625vw;
	}

	.nav_content .gnav a {
		width: auto;
		padding: 60px 0;
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .toggle {
		top: 15px;
	}

	.is-open .toggle_inner>span {
		background: #fff;
	}

	.is-open .toggle_inner>span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translatey(-50%);
	}

	.is-open .toggle_inner>span:nth-child(2) {
		width: 0;
	}

	.is-open .toggle_inner>span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg) translatey(-50%);
	}

	.is-open .nav_content {
		z-index: 999;
		transform: translateY(0);
	}

	.filter.overlay {
		background: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}
}

/* ---------------------------------------------------
	lang
---------------------------------------------------- */
.lang {
	color: rgba(117, 128, 157, 1);
	display: flex;
	position: fixed;
	top: 1em;
	right: 1em;
	z-index: 950;
}

.lang li::before {
	content: "/";
}

.lang li:first-of-type:before {
	content: "";
}

.lang a {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}

@media(max-width: 768px) {
	.lang {
		right: auto;
		left: 1em;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgba(214, 210, 197, 1);
	padding: 32px 0;
	position: relative;
	z-index: 50;
}

.footer .copy {
	margin-top: 2rem;
	font-size: 14px;
	text-align: center;
}

@media (max-width: 768px) {
	.footer {
		padding: 2em 0;
	}

	.footer .copy {
		font-size: 3.2vw;
	}
}

/*
	hotel list
------------------------------ */
.footer .hotel_list {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 10;
}

.footer .hotel_list,
.footer .hotel_list li a {
	color: #000;
	font-size: 14px;
}

.footer .hotel_list li {
	display: flex;
}

.footer .hotel_list::before,
.footer .hotel_list li::after {
	content: "｜";
}

.footer .hotel_list li a {
	padding: 0 1em;
	display: inline-block;
}

@media (max-width: 1100px) {
	.footer .hotel_list {
		font-size: 1.63636vw;
	}

	.footer .hotel_list,
	.footer .hotel_list li a {
		font-size: 1.27273vw;
	}
}

@media (max-width: 768px) {
	.footer .hotel_list {
		font-size: 3.64583vw;
		text-align: center;
		display: block;
	}

	.footer .hotel_list::before {
		content: "";
	}

	.footer .hotel_list li {
		justify-content: center;
	}

	.footer .hotel_list,
	.footer .hotel_list li a {
		font-size: 3.73333vw;
	}

	.footer .hotel_list li:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.footer .hotel_list li::before {
		content: "｜";
	}

	.footer .hotel_list li a {
		padding: 0 1em;
	}
}

/* ----------------------------------------------------
	main
---------------------------------------------------- */
.main section {
	box-shadow: none !important;
}

.mainGallery {
	background: rgba(18, 23, 44, 1);
	min-height: 100vh;
	color: #fff;
}

@media (max-width: 768px) {
	.main {}
}

/* ----------------------------------------------------
	top
---------------------------------------------------- */
.top {}

.top .container {
	padding: 0;
	max-width: 100%;
	width: 100%;
	position: relative;
	z-index: 10;
}

.top .logo,
.top .news {
	position: absolute;
	z-index: 11;
}

.top .logo {
	width: 22.72013%;
	top: 6.09244%;
	left: 5.18868%;
}

/*
	topSlide
------------------------------ */
.topSlide li {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.topSlide li img {
	width: 110%;
}

@keyframes zoomUp {
	0% {
		transform: translateX(-5%);
	}

	100% {
		transform: translateX(0);
	}
}

.add_anime img {
	animation: zoomUp 5s linear 0s normal both;
}


/*
	anime
------------------------------ */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.top .logo {
		width: 49.21875%;
		top: 37.76042vw;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* news */
.top .news {
	background: rgba(0, 0, 0, 0.85);
	padding: 38px 26px;
	width: 34.43396%;
	color: #fff;
	right: 4.00943%;
	bottom: 5.2521%;
}

.top .news dt,
.top .news dd li {
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: solid 1px #fff;
}

.top .news dt {
	font-size: 20px;
	border-color: #fff;
}

.top .news dd {
	font-size: 16px;
}

.top .news dd ul {
	width: 100%;
	max-height: 400px;
	overflow-y: scroll;
}

.top .news dd ul::-webkit-scrollbar {
	width: 4px;
}

.top .news dd ul::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
}

.top .news dd ul::-webkit-scrollbar-thumb {
	background-color: #666;
	border-radius: 4px;
}

.top .news dd li {
	border-color: #636361;
}

.top .news dd li:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.top .news dd li .date {
	display: block;
}

.top .news dd a {
	color: #fff;
	text-decoration: underline;
}

.top .news dd a:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
	.top .news {
		width: 89.58333%;
		right: auto;
		bottom: 5.371597%;
		left: 50%;
		transform: translateX(-50%);
	}

	.top .news dt,
	.top .news dd li {
		margin-bottom: 3.90625vw;
		padding-bottom: 3.125vw;
		border-bottom: solid 1px #fff;
	}

	.top .news dt {
		font-size: 3.90625vw;
	}

	.top .news dd {
		font-size: 3.125vw;
	}

	.top .news dd ul {
		max-height: 78vw;
	}
}

/* ----------------------------------------------------
	lead
---------------------------------------------------- */
.lead {
	position: relative;
	z-index: 10;
}

.lead .lead_title {
	line-height: 2;
	color: #fff;
	font-size: 33px;
	font-weight: normal;
	text-indent: -1.5em;
	writing-mode: vertical-rl;
	position: absolute;
	right: 10.47244%;
	bottom: 10.29083%;
	z-index: 11;
}

@media (max-width: 768px) {
	.lead {}

	.lead .lead_title {
		font-size: 6.64063vw;
		right: 16.14583vw;
		bottom: 7.94271vw;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	color: #fff;
	position: relative;
	z-index: 10;
}

.about .container {
	width: 100%;
	min-height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 11;
	transform: translateY(-50%) translateX(-50%);
}

.about .about_title {
	margin-bottom: 0.65em;
	font-size: 30px;
	font-weight: normal;
	text-align: center;
}

.about .about_main {
	background: rgba(0, 0, 0, 0.8);
	padding: 5.5%;
	height: 530px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 950px) {
	.about .about_main {
		padding: 3.5%;
		height: 420px;
	}
}

@media (max-width: 768px) {
	.about .container {
		max-width: 83.72396%;
		max-width: 90%;
		min-height: auto;
		display: block;
	}

	.about .about_title {
		font-size: 5.59896vw;
	}

	.about .about_main {
		padding: 6.3%;
		height: auto;
		flex-direction: column-reverse;
	}
}

/* image */
.about figure {
	width: 42%;
}

.about figure figcaption {
	margin-top: 0.5em;
	font-size: 13px;
}

@media (max-width: 768px) {
	.about figure {
		width: 100%;
	}

	.about figure figcaption {
		font-size: 3.125vw;
		text-align: center;
	}
}

/* text */
.about .about_text {
	height: 100%;
	display: flex;
	flex-direction: row-reverse;
}

.about .about_text p {
	line-height: 2;
	margin-left: 2em;
	font-size: 16px;
	writing-mode: vertical-rl;
}

.about .about_text p span {
	text-combine-upright: all;
}

.about .about_text .first {
	/* background: #f00; */
}

.about .about_text .block {
	/* background: #ccc; */
	display: flex;
	flex-direction: row-reverse;
}

@media (max-width: 1040px) {
	.about .about_text p {
		font-size: 1.53846vw;
	}
}

@media (max-width: 768px) {
	.about .about_text {
		height: 100%;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
	}

	.about .about_text p {
		margin-bottom: 2em;
		margin-left: 2em;
		height: 70vw;
		line-height: 2;
		font-size: 3.64583vw;
		writing-mode: vertical-rl;
	}

	.about .about_text .first {
		/* background: #f00; */
	}

	.about .about_text .block {
		/* background: #ccc; */
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
	}

	.about .about_text .block p:last-of-type {
		margin-left: 0;
	}
}

/* ----------------------------------------------------
	movie
---------------------------------------------------- */
.movie {
	background: rgba(18, 23, 44, 1);
	padding: 117px 0;
	color: #fff;
	text-align: center;
}

.movie .movie_title {
	margin-bottom: 1em;
	font-size: 34px;
	font-weight: normal;
}

.movie .schedule {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.movie .schedule dt::after {
	content: "：";
}

.movie .movie_main {
	margin: 3em auto;
	max-width: 680px;
}

.movie .movie_main .inner {
	padding-top: 56.25%;
	width: 100%;
	position: relative;
}

.movie .movie_main .inner iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width: 768px) {
	.movie {
		padding: 22.26563vw 0;
	}

	.movie .movie_title {
		font-size: 5.59896vw;
	}
}

/* ----------------------------------------------------
	area
---------------------------------------------------- */
.area {
	background: rgba(214, 210, 197, 1);
	padding: 130px 0;
	position: relative;
	z-index: 10;
}

.area .areaHead {
	display: flex;
	justify-content: flex-end;
}

.area .areaHead li {
	margin-left: 1.57233%;
	width: 21.54088%;
}

@media (max-width: 768px) {
	.area {
		padding: 22.65625vw 0;
	}

	.area .areaHead {
		flex-wrap: wrap;
	}

	.area .areaHead li {
		margin-bottom: 8.854167vw;
		margin-left: 2.99479%;
		width: 42.02573%;
	}
}

/*
	map
------------------------------ */
.area .map {
	padding: 5em 0;
	text-align: center;
}

.area .map .container {
	margin: 0 auto;
	padding: 0;
	max-width: 750px;
	width: 90%;
	border: solid 1px #000;
}

@media (max-width: 768px) {
	.area .map {}
}

/*
	guide
------------------------------ */
.area .guide {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.area .guide li {
	margin-bottom: 60px;
	width: 47.5%;
	display: flex;
	justify-content: space-between;
}

.area .guide_detail {
	width: 30%;
	height: 310px;
	writing-mode: vertical-rl;
}

.area .guide_detail dt {
	font-size: 20px;
}

.area .guide_detail dd {
	font-size: 16px;
}

.area .guide_image {
	width: 65.5%;
}

@media (max-width: 768px) {
	.area .guide {
		display: block;
	}

	.area .guide li {
		margin-bottom: 9.8vw;
		width: 100%;
		justify-content: center;
	}

	.area .guide_detail {
		width: 50%;
		height: 54.03646vw;
	}

	.area .guide_detail dt {
		padding: 0 3vw 0 2vw;
		font-size: 4.29688vw;
	}

	.area .guide_detail dd {
		font-size: 3.90625vw;
	}

	.area .guide_image {
		width: 43%;
	}
}

/* ----------------------------------------------------
	recommend
---------------------------------------------------- */
.recommend {
	background: rgba(18, 23, 44, 1);
	padding: 130px 0;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 10;
}

.recommend .container {
	position: relative;
	z-index: 11;
}

@media (max-width: 768px) {
	.recommend {
		padding: 22.65625vw 0;
		overflow: hidden;
	}

	.recommend .container {
		padding: 0 3.125vw;
	}
}

/*
	title, text, main
------------------------------ */
.recommend .recommend_title {
	margin-bottom: 1em;
	font-size: 33px;
	font-weight: normal;
	position: relative;
}

.recommend .recommend_title small {
	font-size: 0.55em;
	display: block;
}

.recommend .recommend_text {
	margin-bottom: 3em;
	line-height: 2;
}

.recommend .recommend_main {
	margin: 0 auto 2.5em;
	max-width: 748px;
}

@media (max-width: 768px) {
	.recommend .recommend_title {
		font-size: 4.29688vw;
	}

	.recommend .recommend_title small {
		font-size: 0.75em;
	}

	.recommend .recommend_text {
		font-size: 3.64583vw;
	}
}

/*
	list
------------------------------ */
.recommend .recommend_list {
	display: flex;
	flex-wrap: wrap;
}

.recommend .recommend_list.threeBlock {
	justify-content: center;
}

.recommend .recommend_item {
	margin-right: 6%;
	margin-bottom: 4em;
	width: 47%;
	text-align: left;
	display: flex;
	flex-direction: column;
}

.recommend .recommend_item:nth-child(2n) {
	margin-right: 0;
}

.recommend .recommend_list.threeBlock .recommend_item:nth-child(3) {
	margin-right: 0;
}

.recommend .recommend_item .recommend_image {
	margin-bottom: 1.25em;
}

.recommend .recommend_item dt {
	margin-bottom: 1.25em;
	padding-bottom: 0.5em;
	min-height: 64px;
	border-bottom: solid 1px #fff;
	display: flex;
	align-items: center;
}

.recommend .recommend_item dd {
	margin-bottom: 1em;
	line-height: 1.8;
	font-size: 16px;
}

.recommend .recommend_item .link_btn {
	margin-top: auto;
}

.recommend .recommend_item .link_btn a {
	background: #9A9072;
	height: 4em;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.recommend .recommend_item .link_btn a::after {
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "＞";
}

@media (max-width: 768px) {
	.recommend .recommend_list {
		display: block;
	}

	.recommend .recommend_item {
		margin-right: 0;
		width: 100%;
	}

	.recommend .recommend_item dt {
		min-height: 7.73333vw;
	}

	.recommend .recommend_item dd {
		font-size: 3.125vw;
	}
}

/* ----------------------------------------------------
	gallery
---------------------------------------------------- */
.gallery {
	background: rgba(18, 23, 44, 1);
	padding: 130px 0;
	color: #fff;
	position: relative;
	z-index: 10;
}

@media (max-width: 768px) {
	.gallery {
		padding: 22.65625vw 0;
	}
}

/*
	gallerySlide
------------------------------ */
.gallerySlide {
	/* margin-bottom: 160px; */
}

.gallerySlide li {
	margin: 0 10px;
}

/* dots */
.gallerySlide_dots {
	margin-left: 17%;
	padding-top: 1.5em;
	display: flex;
}

.gallerySlide_dots li {
	margin-right: 4px;
	width: 32px;
}

.gallerySlide_dots li button {
	outline: none;
	background: none;
	margin: 0;
	padding: 0;
	color: #fff;
	text-indent: -9999px;
	border: none;
	border-radius: 0;
	position: relative;
	z-index: 11;
	appearance: none;
}

.gallerySlide_dots li button::before {
	background: #323233;
	width: 32px;
	height: 4px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
	cursor: pointer;
	content: "";
}

.gallerySlide_dots li.slick-active button::before {
	background: #b3b3b3;
	content: "";
}

@media (max-width: 768px) {
	.gallerySlide {
		/* margin-bottom: 20.83333vw; */
	}

	.gallerySlide li {
		margin: 0 10px;
	}

	/* dots */
	.gallerySlide_dots {
		margin-left: 0;
	}

	.gallerySlide_dots li {
		margin-right: 0.25vw;
		width: 3.5vw;
		cursor: pointer;
	}

	.gallerySlide_dots li button::before {
		background: #323233;
		width: 3.5vw;
		height: 3px;
	}
}

/* arrow */
.slide-arrow {
	width: 15px;
	position: absolute;
	bottom: 3px;
	z-index: 11;
	cursor: pointer;
}

.slide-arrow.prev-arrow {
	right: calc(17% + 100px);
}

.slide-arrow.next-arrow {
	right: 17%;
	transform: rotate(-180deg);
}

@media (max-width: 768px) {
	.slide-arrow {
		width: 10px;
		bottom: 6px;
	}

	.slide-arrow.prev-arrow {
		right: 15%;
	}

	.slide-arrow.next-arrow {
		right: 5%;
	}
}

/*
	link
------------------------------ */
.gallery .galleryLink {
	margin-top: 2em;
	padding: 0 20px;
	display: flex;
	justify-content: flex-end;
}

.gallery .galleryLink a {
	background: #fff;
	margin-right: 16%;
	max-width: 400px;
	width: 100%;
	height: 4em;
	color: #12172C;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery .galleryLink a::before {
	content: "＞";
}

@media (max-width: 768px) {
	.gallery .galleryLink {
		padding: 0 3.125vw;
	}

	.gallery .galleryLink a {
		margin-right: 0;
		max-width: 100%;
	}
}

/*
	campaign
------------------------------ */
.gallery .campaign {
	margin-top: 160px;
}

.gallery .campaign_title {
	margin-bottom: 1em;
	font-size: 32px;
	font-weight: normal;
}

.gallery .campaign_title small {
	margin-top: 0.5em;
	font-size: 18px;
	display: block;
}

.gallery .campaign_text {
	margin-bottom: 2em;
	line-height: 1.8;
}

.gallery .campaign_hotel {
	margin-bottom: 25px;
	padding-bottom: 50px;
	border-bottom: solid 1px #686c79;
	display: flex;
	justify-content: space-between;
}

.gallery .campaign_hotel figure {
	width: 49%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gallery .campaign_hotel figure .image {
	width: 30%;
}

.gallery .campaign_hotel figure figcaption {
	width: 65%;
}

.gallery .campaign_hotel figure figcaption .hotelName {
	margin-bottom: 0.25em;
	display: block;
}

.gallery .campaign_hotel figure figcaption a {
	background: url(../img/icon_inst.svg) left center no-repeat;
	background-size: 24px auto;
	padding: 8px 0 8px 30px;
	color: #fff;
	font-size: 0.8em;
	letter-spacing: -0.01em;
}

.gallery .campaign_link {
	text-align: right;
}

.gallery .campaign_link a {
	color: #fff;
}

.gallery .campaign_link a::after {
	content: "＞";
}

@media (max-width: 768px) {
	.gallery .campaign {
		margin-top: 20.83333vw;
	}

	.gallery .campaign_title {
		font-size: 5.33854vw;
	}

	.gallery .campaign_title small {
		font-size: 3.90625vw;
	}

	.gallery .campaign_hotel {
		margin-bottom: 5.20833vw;
		padding-bottom: 10.41667vw;
		display: block;
	}

	.gallery .campaign_hotel figure {
		margin-bottom: 3.125vw;
		width: 100%;
	}

	.gallery .campaign_hotel figure img {
		width: 100%;
	}

	.gallery .campaign_hotel figure figcaption {
		width: 65%;
	}

	.gallery .campaign_hotel figure figcaption .hotelName {
		margin-bottom: 0.25em;
		display: block;
	}

	.gallery .campaign_hotel figure figcaption a {
		background-size: 3.5vw auto;
		padding: 3vw 0 3vw 5.5vw;
	}
}

/* ----------------------------------------------------
	chikaken
	accese
---------------------------------------------------- */
.chikaken,
.accese {
	background: rgba(214, 210, 197, 1);
	position: relative;
	z-index: 10;
}

.chikaken .container,
.accese .container {
	max-width: 800px;
}

@media (max-width: 768px) {
	.chikaken {}
}

/*
	chikaken
------------------------------ */
.chikaken {
	padding-top: 140px;
}

.chikaken .chikaken_haed {
	margin-bottom: 34px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chikaken .chikaken_haed .chikaken_logo,
.chikaken .chikaken_haed .chikaken_image {
	width: 46.5%;
}

.chikaken .chikaken_text {
	margin-bottom: 74px;
	padding-bottom: 100px;
	font-size: 16px;
	border-bottom: solid 1px #88857d;
}

.chikaken ul.chikaken_text {
	margin-bottom: 0;
	font-size: 13px;
	letter-spacing: -0.02em;
}

@media (max-width: 768px) {
	.chikaken {
		padding-top: 22.65625vw;
	}

	.chikaken .chikaken_haed {
		margin-bottom: 9.375vw;
		display: block;
	}

	.chikaken .chikaken_haed .chikaken_logo {
		margin: 0 auto 10.80729vw;
		width: 65%;
	}

	.chikaken .chikaken_haed .chikaken_image {
		margin: 0 auto;
		width: 68%;
	}

	.chikaken .chikaken_text {
		margin-bottom: 10.80729vw;
		padding-bottom: 10.80729vw;
		font-size: 3.64583vw;
	}

	.chikaken ul.chikaken_text {
		font-size: 2.86458vw;
	}
}

/*
	accese
------------------------------ */
.accese {
	padding-top: 60px;
	padding-bottom: 140px;
	line-height: 1.8;
}

.accese address {
	margin-bottom: 2em;
}

.accese .accese_title {
	margin-bottom: 1em;
	font-size: 32px;
	font-weight: normal;
	text-align: center;
}

.accese .accese_list,
.accese a {
	font-size: 16px;
}

.accese a {
	color: #000;
	text-decoration: underline;
}

.accese a::before {
	content: "＞";
}

.accese a:hover {
	text-decoration: none;
}

.accese .accese_map iframe {
	width: 100%;
}

@media (max-width: 768px) {
	.accese {
		padding-top: 12.36979vw;
		padding-bottom: 13.02083vw;
	}

	.accese .accese_title {
		font-size: 5.46875vw;
	}

	.accese .accese_list,
	.accese a {
		font-size: 3.64583vw;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(18, 23, 44, 0.8);
	width: 64px;
	height: 64px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 100;
	transform: rotate(90deg);
}

#pageTop a img {
	width: 10px;
	height: auto;
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
/*
	共通初期設定
	透明度が変化
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	下から
------------------------------ */
.fadeBottom {
	transform: translateY(100px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/* ----------------------------------------------------
	背景
---------------------------------------------------- */
/*
	共通
------------------------------ */
.contBg {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.contBg .contBg_clip {
	height: 100%;
	overflow: hidden;
	position: relative;
	clip-path: inset(0 0 0 0);
}

.contBg .contBg_clip img {
	width: 100%;
	min-height: 100vh;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
}

/*
	lead
------------------------------ */
.lead {
	height: 70.3vw;
}

@media (max-width: 768px) {
	.lead {
		height: 171.625vw;
	}
}

/*
	about
------------------------------ */
.about {
	height: 70.3vw;
}

@media (max-width: 768px) {
	.about {
		height: 252.25vw;
	}
}


/* --------------------------------------------------
	230922追加
--------------------------------------------------*/
.recommend .recommend_item .link_btn a.nolink {
	pointer-events: none;
}

.recommend .recommend_item .link_btn a.nolink::before {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	content: "";
}

.recommend .recommend_item .link_btn a.nolink::after {
	z-index: 1;
}

/*
	tab
------------------------------ */
.tabArea .tabSwitch {
	margin-bottom: 2em;
	display: flex;
	justify-content: center;
}

.tabArea .tabSwitch li {
	margin: 0 0.5em;
	width: calc(100% / 3);
	width: calc(100% / 4);
	height: 50px;
	color: #a7a7a7;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
	cursor: pointer;
}

.tabArea .spring {
	background: #ab7588;
}

.tabArea .spring:hover,
.tabArea .spring.active {
	background: #dd8ba1;
	color: #fff;
}

.tabArea .summer {
	background: #436875;
}

.tabArea .summer:hover,
.tabArea .summer.active {
	background: #74A2B4;
	color: #fff;
}

.tabArea .autumn {
	background: #6a5049;
}

.tabArea .autumn:hover,
.tabArea .autumn.active {
	background: #9E7B70;
	color: #fff;
}

.tabArea .winter {
	background: #666;
}

.tabArea .winter:hover,
.tabArea .winter.active {
	background: #aaa;
	color: #fff;
}

.tabArea .tabWrap .tabContent {
	display: none;
}

.tabArea .tabWrap .tabContent.active {
	display: block;
	animation: panel-show .9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.tabArea .tabSwitch li {
		margin: 0;
		/* width: calc(100% / 2); */
		width: calc(100% / 3);
		height: 13.02083vw;
		/* font-size: 4.29688vw; */
		font-size: 3.73333vw;
	}
}

/*
	recommend
------------------------------ */
.recommend .recommend_item dd.longTxt {
	letter-spacing: -0.05em;
}

/* column3 */
.recommend .recommend_list.column3 .recommend_item {
	margin-right: 3%;
	width: calc((100% - 6%) / 3);
}

.recommend .recommend_list.column3 .recommend_item:nth-child(3) {
	margin-right: 0;
}

.recommend .recommend_list.column3 .recommend_item dd {
	letter-spacing: -0.05em;
}

@media (max-width: 768px) {
	.recommend .recommend_list.column3 .recommend_item {
		margin-right: 0;
		width: 100%;
	}
}

/* column1 */
.recommend .recommend_list.attention {
	margin-bottom: 4em;
	border-bottom: solid 1px #9A9072;
}

.recommend .recommend_list.attention .recommend_item .inner {
	background: #9A9072;
}

.recommend .recommend_list.column1 .recommend_item {
	margin: 0 auto 4em;
	width: 90%;
}

.recommend .recommend_list.column1 .recommend_item .inner {
	margin: 0 auto 2em;
	padding: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.recommend .recommend_list.column1 .recommend_item .recommend_image {
	margin-right: 4%;
	margin-bottom: 0;
	width: 40%;
}

.recommend .recommend_list.column1 .recommend_item dl {
	width: 56%;
}

.recommend .recommend_list.column1 .recommend_item .link_btn {
	margin: 0 auto;
	max-width: 470px;
	width: 100%;
}

.recommend .recommend_list.column1 .recommend_item .link_btn.long {
	max-width: 560px;
	width: 100%;
}

@media (max-width: 768px) {
	.recommend .recommend_list.column1 .recommend_item {
		width: 100%;
	}

	.recommend .recommend_list.column1 .recommend_item .inner {
		display: block;
	}

	.recommend .recommend_list.column1 .recommend_item .recommend_image {
		margin-right: 0;
		margin-bottom: 1em;
		width: 100%;
	}

	.recommend .recommend_list.column1 .recommend_item dl {
		width: 100%;
	}

	.recommend .recommend_list.column1 .recommend_item dl dd {
		margin-bottom: 0;
	}

	.recommend .recommend_list.column1 .recommend_item .link_btn {
		margin: 0 auto;
		max-width: 100%;
		width: 100%;
	}
}

.recommend .recommend_list .recommend_item .date {
	text-align: center;
	display: block;
}

.bn.link_btn a {
	background: #9A9072;
	margin: 0 auto;
	max-width: 470px;
	width: 100%;
	height: 4em;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.bn.link_btn a::after {
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "＞";
}