@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

/* ----------------------------------------------------
	表示
---------------------------------------------------- */
.pc_only {
	display: block;
}

.sp_only {
	display: none;
}

@media (max-width: 768px) {
	.pc_only {
		display: none;
	}

	.sp_only {
		display: block;
	}
}

.lp_wrap * {
	box-sizing: border-box;
	line-height: 1.8;
	color: #595757;
	font-size: 16px;
}

.lp_wrap img {
	width: 100%;
	height: auto;
}

.lp_wrap a,
.lp_wrap a img {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}

.lp_wrap a:hover {
	opacity: 0.7;
}

@media (max-width: 768px) {
	.lp_wrap * {
		font-size: 16px;
	}
}

/* ----------------------------------------------------
	メインカラー（#c6ab9c）
	※サイト毎に設定
---------------------------------------------------- */
/* background */
.toggle span,
.lp_nav,
.lp_btn {
	background: rgba(198, 171, 156, 1);
}

/* color */
.lp_cont-title::before,
.lp_spot-title {
	color: rgba(198, 171, 156, 1);
}

/* border */
.lp_cont .lp_inner {
	border-color: rgba(198, 171, 156, 1);
}

/* btn */
.lp_btn,
.lp_btn.blk {
	background-image: url(../img/arrow.svg);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: auto 20px;
	padding: 1em 0;
	color: #fff;
	text-align: center;
	display: block;
}

.lp_btn.blk {
	background-color: #575757;
}

.lp_btn:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.lp_btn {
		font-size: 4.125vw;
	}
}



/* ----------------------------------------------------
	lp_header
---------------------------------------------------- */
.lp_header {
	width: 100%;
}

/*
	lp_kv
------------------------------ */
.lp_kv {
	margin: 0;
	height: auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.lp_slide_kv {
	width: 100%;
	height: 60.6vw;
	overflow: hidden;
}

.lp_slide_kv img {
	width: 100%;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
		/* 拡大率 */
	}
}

.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}

@media (max-width: 768px) {
	.lp_slide_kv {
		height: 120vw;
	}

	.lp_slide_kv img {
		width: auto;
		height: 120vw;
		object-fit: cover;
	}

	.lp_slide_kv li:nth-child(1) img {
		object-position: 50% 0;
	}

	.lp_slide_kv li:nth-child(2) img {
		object-position: 20% 0;
	}
}

/*
	toggle
------------------------------ */
.toggle {
	position: fixed;
	top: 30px;
	left: 1em;
	z-index: 110;
}

.toggle_inner {
	width: 40px;
	height: 32px;
	position: relative;
	z-index: 109;
	cursor: pointer;
}

.toggle_inner>span {
	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: 0;
}

.toggle_inner>span:nth-child(2) {
	top: 50%;
	transform: translatey(-50%);
}

.toggle_inner>span:nth-child(3) {
	bottom: 0;
}

@media (max-width: 768px) {
	.toggle {
		top: 15px;
	}
}

/*
	lp_nav（基本設定）
------------------------------ */
.lp_nav {
	padding: 92px 1em 0;
	max-width: 320px;
	width: 100%;
	height: 100%;
	color: #fff;
	overflow: auto;
	position: fixed;
	top: 0;
	left: -350px;
	z-index: 100;
	transition: all 0.6s;
}

.lp_nav .lp_nav-list {
	list-style: none;
}

.lp_nav .lp_nav-link {
	padding: 0.5em 0;
	color: #fff;
	text-decoration: none;
	display: block;
	transition: opacity .6s ease;
}

.lp_nav .lp_nav-link:hover {
	opacity: 0.6;
}

.lp_nav .lp_nav-link.reserve {
	font-size: 1.125em;
	font-weight: bold;
}

/*
	lp_nav（表示設定）
------------------------------ */
.is_open {
	overflow: hidden;
}

.is_open .lp_nav {
	left: 0;
}

.is_open .toggle_inner>span {
	background: #fff;
	z-index: 109;

}

.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 .lp_nav {
	transform: translateX(0);
}

/*
	overlay
------------------------------ */
.lp_overlay {
	background: rgba(0, 0, 0, 0.25);
	width: 100%;
	height: 100vh;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.is_open .lp_overlay {
	display: block;
}


/* ----------------------------------------------------
	lp_lead
---------------------------------------------------- */
.lp_lead {
	background: #f0f0f0;
	padding: 90px 20px 80px;
}

.lp_lead .lp_inner {
	margin: 0 auto;
	max-width: 1070px;
	width: 100%;
}

.lp_lead .lp_lead-title {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.lp_lead .lp_lead-title img {
	width: auto;
	height: 40px;
}

.lp_lead .lp_lead-text {
	margin-bottom: 1em;
	font-size: 18px;
	text-align: center;
}

.lp_lead .lp_lead-text:last-of-type {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.lp_lead {
		padding: 11.71875vw 2.60417vw;
	}

	.lp_lead .lp_lead-title {
		margin-bottom: 5.72917vw;
		font-size: 4.16667vw;
	}

	.lp_lead .lp_lead-title img {
		height: 5.20833vw;
	}

	.lp_lead .lp_lead-text {
		font-size: 3.38542vw;
	}
}

/* ----------------------------------------------------
	lp_movie
	lp_pu
---------------------------------------------------- */
.lp_movie .img_title,
.lp_pu,
.lp_pu .img_title,
.lp_allhotel .img_title {
	margin-bottom: 44px;
	text-align: center;
}

.lp_movie .img_title img,
.lp_pu .img_title img,
.lp_allhotel .img_title img {
	width: auto;
	height: 30px;
}

.lp_pu-title {
	margin-bottom: 1em;
	font-size: 32px;
}

@media (max-width: 768px) {

	.lp_movie .img_title,
	.lp_pu .img_title,
	.lp_allhotel .img_title {
		margin-bottom: 6.51042vw;
	}

	.lp_movie .img_title img,
	.lp_pu .img_title img,
	.lp_allhotel .img_title img {
		height: 5.20833vw;
	}

	.lp_pu-title {
		font-size: 4.6875vw;
	}
}

/*
	lp_movie
------------------------------ */
.lp_movie {
	margin-bottom: 60px;
}

.lp_movie .lp_inner {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 790px;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.lp_movie .lp_inner iframe {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.lp_movie {
		margin-bottom: 10.74219vw;
	}
}

/*
	lp_pu
------------------------------ */
.lp_pu {
	margin-bottom: 120px;
	padding-top: 60px;
}

.lp_pu .lp_inner {
	margin: 0 auto;
	padding: 0 30px 0 40px;
	max-width: 1200px;
	width: 100%;
}

.lp_pu .lp_inner .lp_slide_nav li {
	margin-right: 10px;
}

.lp_pu .lp_inner .lp_slide_nav li dl {
	margin: 20px 0 55px;
}

.lp_pu .lp_inner .lp_slide_nav li dl dt {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 18px;
	font-weight: bold;
}

.lp_pu .lp_inner .lp_slide_nav li dl dd {
	line-height: 1.5;
	font-size: 16px;
}

@media (max-width: 768px) {
	.lp_pu {
		margin-bottom: 21.48438vw;
		padding-top: 10.74219vw;
	}

	.lp_pu .lp_inner {
		padding: 0 10px 0 20px;
	}

	.lp_pu .lp_inner .lp_slide_nav li dl dt {
		font-size: 3.125vw;
	}

	.lp_pu .lp_inner .lp_slide_nav li dl dd {
		font-size: 2.34375vw;
	}
}

/* slick-dots */
.lp_pu .lp_inner .slick-dots {
	bottom: initial;
}

.lp_pu .lp_inner .slick-dots li {
	margin: 0 10px;
}

.lp_pu .lp_inner .slick-dots li button:before {
	background: #ccc;
	width: 14px !important;
	height: 14px !important;
	border-radius: 50%;
}

.lp_pu .lp_inner .slick-dots li.slick-active button:before {
	background: #9c9c9d;
}

/* slide-arrow */
.lp_pu .lp_inner .slide-arrow {
	position: absolute;
	top: 27%;
	/* transform: translateY(-50%); */
}

.lp_pu .lp_inner .slide-arrow {
	width: 16px;
	height: auto;
}

.lp_pu .lp_inner .slide-arrow.prev-arrow {
	left: -30px;
}

.lp_pu .lp_inner .slide-arrow.next-arrow {
	right: -20px;
}

@media (max-width: 768px) {
	.lp_pu .lp_inner .slick-dots li button:before {
		width: 2.60417vw !important;
		height: 2.60417vw !important;
	}
}

/* ----------------------------------------------------
	lp_cont
---------------------------------------------------- */
.lp_cont {
	padding: 0 20px;
}

.lp_cont .lp_inner {
	margin: 0 auto;
	padding: 80px 0;
	max-width: 1130px;
	width: 100%;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.lp_cont:last-of-type .lp_inner {
	border: none;
}

@media (max-width: 768px) {
	.lp_cont {
		padding: 0;
	}

	.lp_cont .lp_inner {
		margin-bottom: 14.32292vw;
		padding: 0 2.60417vw 14.32292vw;
	}

	.lp_cont:last-of-type .lp_inner {
		border: none;
	}
}

/* テキスト、リンク */
.lp_cont .lp_cont-detail {
	max-width: 340px;
	width: 30.0885%;
	display: flex;
	flex-direction: column;
}

.lp_cont .lp_cont-detail .lp_cont-title {
	margin-bottom: 1em;
	font-size: 20px;
	font-weight: bold;
}

.lp_cont .lp_cont-detail .lp_cont-link {
	margin-top: auto;
}

.lp_cont .lp_cont-detail .lp_cont-link li {
	margin-top: 12px;
}

.lp_cont .lp_cont-detail .lp_cont-link li a {
	font-size: 20px;
	font-weight: bold;
}

/* 画像 */
.lp_cont .lp_cont-image {
	max-width: 760px;
	width: 67.25664%;
}

@media (max-width: 768px) {
	.lp_cont .lp_cont-detail {
		padding: 0 6.51042vw;
		max-width: 100%;
		width: 100%;
		order: 1;
	}

	.lp_cont .lp_cont-detail .lp_cont-title {
		font-size: 4.16667vw;
		text-align: center;
	}

	.lp_cont .lp_cont-detail .lp_cont_text {
		font-size: 3.38542vw;
	}

	.lp_cont .lp_cont-detail .lp_cont-link li {
		margin-top: 3.90625vw;
	}

	.lp_cont .lp_cont-detail .lp_cont-link li a {
		font-size: 3.38542vw;
	}

	/* 画像 */
	.lp_cont .lp_cont-image {
		margin-bottom: 7.8125vw;
		width: 100%;
		order: 0;
	}
}

/* ホテル情報 */
.lp_cont .lp_hotel-info {
	background: #f3f3f3;
	padding: 30px 30px;
	margin: 50px auto 0;
	/* max-width: 960px; */
	max-width: 768px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.lp_cont .lp_hotel-info .lp_hotel-image {
	max-width: 305px;
	width: 35.46511%;
}

.lp_cont .lp_hotel-info .lp_hotel-detail {
	max-width: 520px;
	width: 60.46512%;
}

.lp_cont .lp_hotel-info .lp_hotel-title {
	font-weight: bold;
	position: relative;
}

.lp_cont .lp_hotel-info .lp_hotel-title .place {
	background: #717071;
	padding: 4px 8px;
	color: #fff;
	font-weight: normal;
	border-radius: 4px;
}

.lp_cont .lp_hotel-info .lp_hotel-title .name {
	letter-spacing: -0.05em;
	display: block;
}

.lp_cont .lp_hotel-info .lp_hotel-title .name a {
	line-height: 3;
	font-size: 20px;
	text-decoration: underline;
}

.lp_cont .lp_hotel-info .lp_hotel-title .name a:hover {
	text-decoration: none;
}

.lp_cont .lp_hotel-info .lp_hotel-title .fb {
	width: 28px;
	position: absolute;
	right: 0;
	bottom: 10px;
}

.lp_cont .lp_hotel-info .lp_hotel-cont .text {
	font-size: 1em;
}

.lp_cont .lp_hotel-info .lp_hotel-cont .link a {
	font-size: 18px;
	font-weight: bold;
	text-decoration: underline;
}

.lp_cont .lp_hotel-info .lp_hotel-cont .link a:hover {
	text-decoration: none;
}

.lp_cont .lp_hotel-info .lp_hotel-cont .link a::before {
	content: "＞";
}

.lp_cont .lp_hotel-info .lp_hotel-cont .link .fb {
	display: none;
}

@media (max-width: 768px) {
	.lp_cont .lp_hotel-info {
		padding: 10.41667vw 7.8125vw;
		margin: 13.02083vw auto 0;
		flex-direction: column;
		order: 2;
	}

	.lp_cont .lp_hotel-info .lp_hotel-image {
		max-width: 100%;
		width: 100%;
		order: 1;
	}

	.lp_cont .lp_hotel-info .lp_hotel-detail {
		max-width: 100%;
		width: 100%;
		text-align: center;
		order: 0;
	}

	.lp_cont .lp_hotel-info .lp_hotel-title .place {
		font-size: 2.86458vw;
	}

	.lp_cont .lp_hotel-info .lp_hotel-title .name {
		margin: 2.08333vw 0;
		font-size: 4.29688vw;
		letter-spacing: -0.05em;
		display: block;
	}

	.lp_cont .lp_hotel-info .lp_hotel-title .name a {
		line-height: 1.5;
		font-size: 4.16667vw;
	}

	.lp_cont .lp_hotel-info .lp_hotel-title .fb {
		display: none;
	}

	.lp_cont .lp_hotel-info .lp_hotel-cont .text {
		/* margin-bottom: 6.51042vw; */
		margin-bottom: 0.5em;
		font-size: 3.38542vw;
		text-align: left;
	}

	.lp_cont .lp_hotel-info .lp_hotel-cont .link {
		margin-bottom: 5.20833vw;
		text-align: left;
		position: relative;
	}

	.lp_cont .lp_hotel-info .lp_hotel-cont .link a {
		line-height: 1;
		font-size: 3.64583vw;
	}

	.lp_cont .lp_hotel-info .lp_hotel-cont .link .fb {
		width: 6.51042vw;
		display: inline-block;
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.lp_cont .lp_hotel-info .lp_hotel-cont .link .fb a::before {
		content: "";
	}

	.lp_cont .lp_hotel-info .lp_hotel-cont .link .fb img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}
}

/* ----------------------------------------------------
	lp_footer
---------------------------------------------------- */
.lp_footer .lp_inner {
	width: 100%;
}

/*
	lp_allhotel
------------------------------ */
.lp_allhotel {
	background: #e6e7ea;
	margin-bottom: 60px;
	padding: 80px 20px;
	text-align: center;
}

.lp_allhotel .lp_inner {
	margin: 0 auto;
	max-width: 1130px;
	width: 100%;
}

.lp_allhotel .lp_allhotel-text {
	margin-bottom: 44px;
	font-size: 20px;
	font-weight: bold;
}

.lp_allhotel .lp_allhotel-link {
	margin: 0 auto;
	max-width: 560px;
	width: 100%;
	height: 80px;
	color: #595757;
	font-size: 18px;
	font-weight: bold;
	border: solid 1px #595757;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 768px) {
	.lp_allhotel {
		margin-bottom: 7.81250vw;
		padding: 13.02083vw 2.60417vw;
	}

	.lp_allhotel .lp_allhotel-text {
		margin-bottom: 5.20833vw;
		font-size: 3.64583vw;
	}

	.lp_allhotel .lp_allhotel-link {
		font-size: 3.64583vw;
	}
}

/*
	lp_note
------------------------------ */
.lp_note {
	margin-bottom: 30px;
}

.lp_note .lp_inner {
	margin: 0 auto;
	max-width: 1130px;
	width: 100%;
}

@media (max-width: 768px) {
	.lp_note {
		margin-bottom: 7.81250vw;
		padding: 0 2.60417vw;
	}

	.lp_note .lp_inner {
		padding-top: 0;
		font-size: 2.60417vw;
	}
}

/*
	ホテルリスト
------------------------------ */
.lp_footer .lp_hotel-list {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}

.lp_footer .lp_hotel-list::before,
.lp_footer .lp_hotel-list .lp_hotel-item::after {
	content: "｜";
}

.lp_footer .lp_hotel-list .lp_hotel-item a {
	padding: 0 1em;
	display: inline-block;
}

@media (max-width: 768px) {
	.lp_footer .lp_hotel-list .lp_hotel-item a {
		margin-bottom: 5.20833vw;
		font-size: 3.125vw;
	}
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}

#pageTop img {
	width: 40px;
	transform: rotate(-90deg);
}

@media (max-width: 768px) {
	#pageTop a {
		bottom: 50px;
	}
}

.link_btn {
	width: 520px;
	margin: 50px auto 0;
}
.link_btn a {
	background: url(../img/arrow.svg) right 1em center no-repeat;
	background-color: #3A454C;
	background-size: auto 20%;
	height: 70px;
	color: #fff;
	font-size: 18px;
	/*font-weight: bold;*/
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media(max-width:768px) {
	.link_btn {
		width: 90%;
	margin: 30px auto 0;
	}
	.link_btn a {
		height: 13.02083vw;
		font-size: 3.38542vw;
	}
}
