@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&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);
}

/* btn */
.lp_btn,
.lp_btn.blk {
	background-image: url(../img/arrow.svg);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: auto 14px;
	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;
	}
}

.pss_text {
	line-height: 1.5em;
	color: #2970C3;
	font-weight: bold;
}

.pss_text .pss_s {
	font-size: 14px;
	display: block;
	color: #2970C3;
}

.pss_text .pss_s a {
	line-height: 2;
	color: #2970C3;
	text-decoration: underline;
}

.pss_text .pss_s a:hover {
	text-decoration: none;
	color: #2970C3;
}

@media (max-width: 768px) {
	.pss_text {
		font-size: 3.38542vw;
	}

	.pss_text .pss_s {
		font-size: 3.29688vw;
	}
}

/* ----------------------------------------------------
	lp_header
---------------------------------------------------- */
.lp_header {
	width: 100%;
}

/*
	lp_kv
------------------------------ */
.lp_kv {
	margin: 0;
	height: auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.lp_kv .kv_lead {
	width: 38.72549%;
	position: absolute;
	top: 10.33333%;
	left: 7.5625%;
	z-index: 2;
}

.lp_slide_kv {
	width: 100%;
	overflow: hidden;
}

.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}

@media (max-width: 768px) {
	.lp_slide_kv {
		height: 120vw;
	}

	.lp_kv .kv_lead {
		width: 65%;
		top: 15%;
		left: 2.5%;
	}

	.lp_slide_kv img {
		width: auto;
		height: 120vw;
		object-fit: cover;
	}

	.lp_slide_kv li:nth-child(1) img {
		object-position: 65% 0;
	}

	.lp_slide_kv li:nth-child(2) img {
		object-position: left 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 {
	background: url(../img/arrow.svg) right 1em center no-repeat;
	background-size: auto 12px;
	padding: 1.25em 0 1.15em 1em;
	color: #fff;
	text-decoration: none;
	border-bottom: solid 1px #fff;
	display: block;
	transition: opacity .6s ease;
	line-height: normal;
}

.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_movie {
	padding-top: 90px;
}

.lp_movie .img_title,
.lp_pickup .img_title,
.lp_topics .lp_topics-title,
.lp_allhotel .img_title {
	margin-bottom: 3rem;
	text-align: center;
}

.lp_movie .img_title img,
.lp_pickup .img_title img,
.lp_topics .lp_topics-title img,
.lp_season-title img,
.lp_allhotel .img_title img {
	width: auto;
	height: 24px;
}

.lp_pickup-title {
	margin-bottom: 1rem;
	font-size: 42px;
	text-align: center;
}

@media (max-width: 768px) {
	.lp_movie {
		padding-top: 11.71875vw;
	}

	.lp_movie .img_title,
	.lp_pickup .img_title,
	.lp_topics .lp_topics-title,
	.lp_allhotel .img_title {
		margin-bottom: 6.51042vw;
	}

	.lp_movie .img_title img,
	.lp_pickup .img_title img,
	.lp_topics .lp_topics-title img,
	.lp_season-title img,
	.lp_allhotel .img_title img {
		height: 4.16667vw;
	}

	.lp_pickup-title {
		font-size: 6.64063vw;
	}
}

/*
	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%;
}

.lp_movie .lp_movie_text {
	text-align: right;
}


@media (max-width: 768px) {
	.lp_movie {
		margin-bottom: 10.74219vw;
	}

	.lp_movie .lp_movie_text {
		font-size: 2.34375vw;
		text-align: center;
	}
}

/* ----------------------------------------------------
	lp_pickup
---------------------------------------------------- */
.lp_pickup {
	padding-top: 120px;
}

.lp_pickup .lp_pickup-lead {
	margin-bottom: 120px;
	font-size: 17px;
	text-align: center;
}

@media (max-width: 768px) {
	.lp_pickup {
		padding-top: 15.625vw;
	}

	.lp_pickup .lp_pickup-lead {
		margin-bottom: 15.625vw;
		padding: 0 5.20833vw;
		font-size: 3.38542vw;
	}
}

/*
	lp_cont
------------------------------ */
.lp_cont {
	padding: 0 20px;
}

.lp_cont .lp_inner {
	margin: 0 auto;
	padding: 0 0 120px;
	max-width: 1130px;
	width: 100%;
	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 {
		padding: 0 0 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: 1rem;
	line-height: 1.5;
	font-size: 21px;
	font-weight: bold;
}

.lp_cont .lp_cont-detail .lp_cont-title span {
	font-size: 23px;
	text-indent: -0.5em;
	display: block;
}

.lp_cont .lp_cont-detail .lp_cont-hotel {
	margin-bottom: 1rem;
	line-height: 1;
	font-weight: bold;
}
.lp_cont .lp_cont-detail .lp_cont-hotel a {
	color: #c6ab9c;
	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: 15px;
}

/* 画像 */
.lp_cont .lp_cont-image {
	max-width: 760px;
	width: 67.25664%;
}

@media (max-width: 1050px) {
	.lp_cont .lp_cont-detail .lp_cont-title {
		font-size: 2vw;
	}

	.lp_cont .lp_cont-detail .lp_cont-title span {
		font-size: 2.19048vw;
	}

	.lp_cont .lp_cont-detail .lp_cont_text {
		font-size: 1.52381vw;
	}

	.lp_cont .lp_cont-detail .lp_cont-link li a {
		font-size: 1.42857vw;
	}
}

@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: 3.90625vw;
		text-align: center;
	}

	.lp_cont .lp_cont-detail .lp_cont-title span {
		font-size: 4.55729vw;
	}

	.lp_cont .lp_cont-detail .lp_cont-hotel {
		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_allhotel
---------------------------------------------------- */
.lp_allhotel {
	margin-bottom: 60px;
	padding: 80px 20px;
	text-align: center;
}

.lp_bnr {
	background: #FFFFFF;
	padding: 0 20px;
	text-align: center;
}

.lp_allhotel .lp_inner,
.lp_bnr .lp_inner {
	margin: 0 auto;
	max-width: 1130px;
	width: 100%;
}

.lp_allhotel .lp_allhotel-text {
	margin-bottom: 44px;
	font-size: 24px;
}

.lp_allhotel .lp_allhotel-link {
	background: #c6ab9c url(../img/arrow.svg) right 1rem center no-repeat;
	background-size: auto 16px;
	margin: 0 auto;
	max-width: 450px;
	width: 100%;
	height: 80px;
	color: #fff;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lp_allhotel .lp_all_img,
.lp_bnr .lp_all_img {
	max-width: 768px;
	margin: 0 auto 40px;
}

@media (max-width: 768px) {
	.lp_allhotel {
		margin-bottom: 7.81250vw;
		padding: 13.02083vw 0;
	}

	.lp_bnr {
		padding: 0;
	}

	.lp_allhotel .lp_allhotel-text {
		margin-bottom: 5.20833vw;
		font-size: 3.64583vw;
	}

	.lp_allhotel .lp_allhotel-link {
		width: calc(100% - (6.25vw * 2));
		height: 12.36979vw;
		font-size: 3.64583vw;
	}

	.lp_allhotel .lp_all_img,
	.lp_bnr .lp_all_img {
		margin-bottom: 5.20833vw;
	}
}

/* ----------------------------------------------------
	lp_topics
---------------------------------------------------- */
.lp_topics-title {
	text-align: center;
}

.lp_topics-title small {
	font-size: 25px;
	display: block;
}

.lp_topics-title span {
	margin-bottom: 1rem;
	font-size: 40px;
	display: block;
}

@media (max-width: 768px) {
	.lp_topics-title small {
		font-size: 4.16667vw;
	}

	.lp_topics-title span {
		font-size: 6.64063vw;
	}
}

/*
	lp_season
------------------------------ */
.lp_season {
	padding: 68px 0 130px;
	position: relative;
}

.lp_season::before {
	width: 100%;
	height: 470px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.lp_season .lp_inner {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 985px;
	position: relative;
	z-index: 2;
}

.lp_season .lp_season-title {
	margin-bottom: 1em;
	text-align: center;
}

.lp_season .lp_season-title em {
	font-size: 32px;
	display: block;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: italic;
	letter-spacing:.1em;
}
.lp_season .lp_season-title span {
	font-size: 35px;
	font-weight: bold;
	display: block;
}

.lp_season .lp_season-lead {
	margin-bottom: 2em;
	font-size: 20px;
	text-align: center;
}

@media (max-width: 768px) {
	.lp_season {
		/* padding: 0 0 16.92708vw; */
		padding: 0;
	}

	.lp_season::before {
		display: none;
	}

	.lp_season .lp_inner {
		padding: 0;
	}

	.lp_season .lp_season-title {
		margin-bottom: 0;
		padding: 8.07292vw 0 1em;
		text-align: center;
	}
	
	.lp_season .lp_season-title em,
	.lp_season .lp_season-title span {
		font-size: 5.20833vw;
	}

	.lp_season .lp_season-lead {
		margin-bottom: 0;
		padding: 0 6.25vw 8.07292vw;
		font-size: 3.38542vw;
		text-align: left;
	}
}

/*
	slide
------------------------------ */
/* tmb_list */
.lp_season .tmb_list {
	margin: 1em auto 3em;
	max-width: 606px;
}

.lp_season .tmb_list .slick-track {
	transform: unset !important;
}

.lp_season .tmb_list li {
	width: calc((100% - 12px) / 4);
	cursor: pointer;
}

.lp_season .tmb_list li:not(:last-of-type) {
	margin-right: 4px;
}

.lp_season .tmb_list li.slick-current img {
	opacity: 0.5;
}

@media (max-width: 768px) {
	.lp_season .tmb_list {
		padding: 0 6.25vw;
		max-width: 100%;
	}
}

/* topics_text */
.lp_season .topics_text {
	margin: 0 auto;
	max-width: 760px;
	text-align: center;
}

.lp_season .topics_text .lp_topics-detail dt {
	margin-bottom: 1em;
	font-size: 23px;
	font-weight: bold;
}

.lp_season .topics_text .lp_topics-detail dd .text {
	margin-bottom: 1em;
}

@media (max-width: 768px) {
	.lp_season .topics_text {
		padding: 0 6.25vw;
		max-width: 100%;
	}

	.lp_season .topics_text .lp_topics-detail dt {
		font-size: 3.77604vw;
	}

	.lp_season .topics_text .lp_topics-detail dd .text {
		font-size: 3.38542vw;
		text-align: left;
	}

	.lp_season .topics_text .lp_topics-detail dd .text span {
		font-size: 3.38542vw;
		text-align: center;
		display: block;
	}
}

/* text_link */
.lp_season .topics_text .lp_topics-detail dd .text_link {
	margin-bottom: 3em;
}

.lp_season .topics_text .lp_topics-detail dd .text_link a {
	padding-left: 0.5em;
	line-height: 1;
	text-decoration: underline;
	position: relative;
}

.lp_season .topics_text .lp_topics-detail dd .text_link a:hover {
	text-decoration: none;
}

.lp_season .topics_text .lp_topics-detail dd .text_link a::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 0;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
}

@media (max-width: 768px) {
	.lp_season .topics_text .lp_topics-detail dd .text_link {
		margin-bottom: 1.5em;
	}

	.lp_season .topics_text .lp_topics-detail dd .text_link a {
		font-size: 3.38542vw;
	}

	.lp_season .topics_text .lp_topics-detail dd .text_link a::before {
		border-top: 1.04167vw solid transparent;
		border-bottom: 1.04167vw solid transparent;
	}
}

/* topicst_linkBtn */
.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn {
	display: flex;
	justify-content: space-between;
}

.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li {
	width: 360px;
	display: block;
}

.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li a {
	background-image: url(../img/arrow.svg);
	background-position: right 1em center;
	background-repeat: no-repeat;
	background-size: auto 14px;
	height: 72px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li a.comingsoon,
.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li a.end{
	pointer-events: none;

}

.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li a.comingsoon::before {
	content: "";
    background: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #444;
	font-size: 18px;
}
.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li a.end::before {
	content: "体験は終了いたしました。";
	background: #444;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #e5e5e5;
	font-size: 18px;
}

@media (max-width: 768px) {
	.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn {
		display: block;
	}

	.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li {
		width: 100%;
	}

	.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li:not(:last-of-type) {
		margin-bottom: 1em;
	}

	.lp_season .topics_text .lp_topics-detail dd .topics_linkBtn li a {
		background-size: auto 1.82292vw;
		height: 12.36979vw;
		font-size: 3.38542vw;
	}
}

/* lp_banner */
.lp_season .lp_banner {
	margin: 5em auto;
	max-width: 760px;
	text-align: center;
}

.lp_season .lp_banner dt {
	margin-bottom: 1em;
	font-size: 21px;
	font-weight: bold;
}

@media (max-width: 768px) {
	.lp_season .lp_banner {
		margin-top: 3em;
		padding: 0 6.25vw;
		max-width: 100%;
	}

	.lp_season .lp_banner dt {
		font-size: 3.64583vw;
	}
}


/*
	lp_spring
------------------------------ */
.lp_spring::before {
	background: #FDE9ED;
}

.lp_spring .topics_text .lp_topics-detail dd .text_link a {
	color: #C6818B;
}

.lp_spring .topics_text .lp_topics-detail dd .text_link a::before {
	border-left: 10px solid #C6818B;
}

.lp_spring .lp_season-title span {
	font-family: "Noto Serif JP", serif;
	color: #F7A1AE;
}

.lp_spring .topics_text .lp_topics-detail dd .topics_linkBtn .type1 a {
	background-color: #F7A1AE;
}

.lp_spring .topics_text .lp_topics-detail dd .topics_linkBtn .type2 a {
	background-color: #C6818B;
}

@media (max-width: 768px) {

	.lp_spring .lp_season-title,
	.lp_spring .lp_season-lead {
		background: #FDE9ED;
	}

	.lp_spring .topics_text .lp_topics-detail dd .text_link a::before {
		border-left: 1.30208vw solid #F7A1AE;
	}
}

/*
	lp_summer
------------------------------ */
.lp_summer::before {
	background: #e4fcff;
}

.lp_summer .topics_text .lp_topics-detail dd .text_link a {
	color: #18adef;
}

.lp_summer .topics_text .lp_topics-detail dd .text_link a::before {
	border-left: 10px solid #18adef;
}

.lp_summer .lp_season-title em {
	color: #ffaa00;
}
.lp_summer .lp_season-title span {
	color: #03a1ea;
	font-family: "Noto Serif JP", serif;
}

.lp_summer .topics_text .lp_topics-detail dd .topics_linkBtn .type1 a {
	background-color: #43aced;
}

.lp_summer .topics_text .lp_topics-detail dd .topics_linkBtn .type2 a {
	background-color: #0e5bc9;
}

@media (max-width: 768px) {

	.lp_summer .lp_season-title,
	.lp_summer .lp_season-lead {
		background: #e4fcff;
	}

	.lp_summer .topics_text .lp_topics-detail dd .text_link a::before {
		border-left: 1.30208vw solid;
	}
}


/*
	lp_autumn
------------------------------ */
.lp_autumn::before {
	background: rgba(249,221,191,.7);
}

.lp_autumn .topics_text .lp_topics-detail dd .text_link a {
	color: #F16F4A;
}

.lp_autumn .topics_text .lp_topics-detail dd .text_link a::before {
	border-left: 10px solid #F16F4A;
}

.lp_autumn .lp_season-title em {
	color: #F69277;
}
.lp_autumn .lp_season-title span {
	color: #CF8355;
	font-family: "Noto Serif JP", serif;
}


.lp_autumn .topics_text .lp_topics-detail dd .topics_linkBtn .type1 a {
	background-color: #E4A850;
}

.lp_autumn .topics_text .lp_topics-detail dd .topics_linkBtn .type2 a {
	background-color: #7D8561;
}

@media (max-width: 768px) {

	.lp_autumn .lp_season-title,
	.lp_autumn .lp_season-lead {
		background: #F9DDBF;
	}

	.lp_summer .topics_text .lp_topics-detail dd .text_link a::before {
		border-left: 1.30208vw solid;
	}
}

/*
	lp_winter
------------------------------ */
.lp_winter::before {
	background: #d8e3ed;
}

.lp_winter .topics_text .lp_topics-detail dd .text_link a {
	color: #6491b7;
}

.lp_winter .topics_text .lp_topics-detail dd .text_link a::before {
	border-left: 10px solid #6491b7;
}


.lp_winter .lp_season-title em {
	color: #1c4c73;
}
.lp_winter .lp_season-title span {
	color: #6491b7;
	font-family: "Noto Serif JP", serif;
}

.lp_winter .topics_text .lp_topics-detail dd .topics_linkBtn .type1 a {
	background-color: #6491b7;
}

.lp_winter .topics_text .lp_topics-detail dd .topics_linkBtn .type2 a {
	background-color: #1c4c73;
}

@media (max-width: 768px) {

	.lp_winter .lp_season-title,
	.lp_winter .lp_season-lead {
		background: #d8e3ed;
	}

	.lp_winter .topics_text .lp_topics-detail dd .text_link a::before {
		border-left: 1.30208vw solid #6491b7;
	}
}


/* ----------------------------------------------------
	lp_footer
---------------------------------------------------- */
.lp_footer .lp_inner {
	width: 100%;
}

/*
	lp_note
------------------------------ */
.lp_note {
	margin-bottom: 30px;
}

.lp_note .lp_inner {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 982px;
	width: 100%;
}

.lp_note .lp_inner li {
	margin-left: 1em;
	font-size: 13px;
	text-indent: -1em;
}

.lp_note .lp_inner li::before {
	content: "※";
}

@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_note .lp_inner li {
		font-size: 1.69271vw;
	}
}

/*
	ホテルリスト
------------------------------ */
.lp_footer .lp_hotel-list {
	margin-bottom: 30px;
	font-size: 20px;
	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;
	}
}

.zekkei {
	max-width: 800px;
	width: 100%;
	margin: 80px auto 0;
	display: block;
}

@media (max-width: 768px) {
	.zekkei {
		margin-top: 13.02083vw;
	}
}
