@charset "UTF-8";

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.header__content {
	background: #EC3A3A;
	background: linear-gradient(90deg, rgba(236, 58, 58, 0.9) 0%, rgba(255, 195, 99, 0.9) 100%);
	padding-top: 9.531vw;
	width: 28.438vw;
	height: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 9.453vw;
	z-index: 2;
}

.header__title {
	margin: 0 auto 2.188vw;
	width: 25.703vw;
}

.header__text {
	color: rgb(var(--wht));
	font-size: 1.484vw;
}

.header__slide {
	line-height: 0;
	position: relative;
	z-index: 1;
}

.header__slide--item {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.header__slide--item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transform-origin: center;
	transition: opacity 2s ease-in-out;
}

.add-animation .header__slide--item img {
	animation: zoomUp 10s linear 0s normal both;
}

/* ズームアニメーション */
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
	}
}

@media screen and (max-width: 768px) {
	.header__content {
		padding-top: 5.333vw;
		width: 73.6vw;
		height: 84.267vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.header__title {
		margin-bottom: 1.6%;
		width: 57.333vw;
	}

	.header__text {
		line-height: 1.6;
		font-size: 3.733vw;
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgb(var(--blu));
	padding: 69px 34px 0;
	max-width: 375px;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	left: auto;
	transform: translateX(100%);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gnav__container {
	width: 100%;
	height: auto;
	display: block;
}

.gnav__logo {
	display: none;
}

.gnav__list {
	display: block;
}

.gnav__list--item {
	margin: 0 0 1.5em;
}

.gnav__list--item a {
	color: rgb(var(--wht));
	font-size: 19px;
	font-weight: 600;
	text-decoration: none;
}

.gnav__list--item a:hover {
	opacity: 0.6;
}

.overlay {
	background: rgba(var(--blk), 0.75);
	width: 100vw;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	content: "";
}

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

.is-open .gnav {
	z-index: 999;
	transform: translateX(0);
}

.is-open .overlay {
	opacity: 1;
	visibility: visible;
	cursor: pointer;
}

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

/*
	toggle
------------------------------ */
.toggle {
	width: 36px;
	height: 26px;
	display: block;
	position: fixed;
	top: min(3.6rem, 2.813vw);
	right: min(4.2rem, 3.281vw);
	z-index: 1000;
}

.toggle__inner {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
}

.toggle__inner--item {
	background: rgb(var(--wht));
	width: 100%;
	height: 4px;
	display: block;
	position: absolute;
	left: 50%;
	transition: all 0.6s;
}

.toggle.active .toggle__inner--item {
	background: rgb(var(--blu));
}

.toggle__inner--item:nth-child(1) {
	top: 0;
	transform: translateX(-50%);
}

.toggle__inner--item:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%);
}

.toggle__inner--item:nth-child(3) {
	bottom: 0;
	transform: translateX(-50%);
}

/* is-open */
.is-open .toggle__inner--item,
.is-open .toggle.active .toggle__inner--item {
	background: rgb(var(--wht));
	height: 1px;
	transform-origin: 0 0;
}

.is-open .toggle__inner--item:nth-child(1) {
	top: 50%;
	transform: rotate(45deg) translate(-50%, -50%);
}

.is-open .toggle__inner--item:nth-child(2) {
	opacity: 0;
}

.is-open .toggle__inner--item:nth-child(3) {
	top: 50%;
	bottom: auto;
	transform: rotate(-45deg) translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.toggle {
		top: 20px;
		right: 14px;
	}
}

/* ----------------------------------------------------
	page-nav
---------------------------------------------------- */
.page-nav {
	background: #EC3A3A;
	background: linear-gradient(90deg, rgba(236, 58, 58, 0.9) 0%, rgba(255, 195, 99, 0.9) 100%);
	padding: min(5.4rem, 4.219vw) 0 min(5.8rem, 4.531vw);
	color: rgb(var(--wht));
}

.page-nav__list {
	margin: 0 auto;
	width: min(113.8rem, 88.906vw);
	text-align: center;
	display: flex;
	justify-content: space-between;
}

.page-nav__list--item {
	width: min(16.8rem, 13.125vw);
}

.page-nav__list--item a {
	font-size: min(1.8rem, 1.406vw);
	font-weight: 600;
	text-decoration: none;
}

.page-nav__list--image {
	margin-bottom: min(1.2rem, 0.938vw);
}

.page-nav__list--image figcaption {
	margin-top: min(1.5rem, 1.172vw);
	line-height: 1.6;
}

.page-nav__list--item a svg {
	width: min(2.5rem, 1.953vw);
	height: min(3.4rem, 2.656vw);
}

@media screen and (max-width: 768px) {
	.page-nav {
		padding: 9.067vw 0 1.333vw;
	}

	.page-nav__list {
		width: 89.333vw;
		flex-wrap: wrap;
	}

	.page-nav__list--item {
		margin-bottom: 7.733vw;
		width: 28vw;
	}

	.page-nav__list--item a {
		font-size: 4vw;
	}

	.page-nav__list--image {
		margin-bottom: 1.867vw;
	}

	.page-nav__list--image figcaption {
		margin-top: 1.333vw;
	}

	.page-nav__list--item a svg {
		width: 5.6vw;
		height: 4.267vw;
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.main {
	padding-top: min(14.2rem, 11.094vw);
}

@media screen and (max-width: 768px) {
	.main {
		padding-top: 19.467vw;
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.plan {
	margin: 0 auto min(13rem, 10.156vw);
	width: min(113.5rem, 88.672vw);
	position: relative;
}

.plan__content {
	background: rgba(var(--beg), 0.9);
	padding: min(5rem, 3.906vw) min(2.5rem, 1.953vw);
	width: min(38.1rem, 29.766vw);
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.plan__content::before,
.plan__content::after {
	background: #EC3A3A;
	background: linear-gradient(90deg, rgba(236, 58, 58, 1) 0%, rgba(255, 195, 99, 1) 100%);
	width: 100%;
	height: min(0.2rem, 0.156vw);
	position: absolute;
	left: 0;
	content: "";
}

.plan__content::before {
	top: 0;
}

.plan__content::after {
	bottom: 0;
}

.plan__title {
	margin-bottom: min(0.9rem, 0.703vw);
	line-height: 1.52;
	color: rgb(var(--orn));
	font-size: min(2.3rem, 1.797vw);
	font-weight: 700;
	display: flex;
	flex-direction: column;
}

.plan__title--category {
	margin: 0 auto min(2rem, 1.563vw);
	width: min(8.8rem, 6.875vw);
	color: rgb(var(--blu));
	font-size: min(1.6rem, 1.25vw);
	border-bottom: solid min(0.4rem, 0.313vw);
}

.plan__text {
	margin-bottom: min(2rem, 1.563vw);
	font-size: min(1.6rem, 1.25vw);
}

.plan__content .link-button {
	background: #FFC363;
	background: linear-gradient(90deg, rgba(255, 195, 99, 1) 0%, rgba(236, 58, 58, 1) 100%);
	width: 100%;
	height: min(6.5rem, 5.078vw);
	color: rgb(var(--wht));
	font-size: min(1.7rem, 1.328vw);
	font-weight: 700;
	border-radius: min(6.5rem, 5.078vw);
}

.plan__content .link-button svg {
	width: min(3.4rem, 2.656vw);
	height: min(2.5rem, 1.953vw);
	top: 50%;
	right: min(1.5rem, 1.172vw);
	transform: translateY(-50%);
}

.plan__image {
	padding-bottom: min(10.5rem, 8.203vw);
	width: min(82.3rem, 64.297vw);
	position: relative;
	z-index: 1;
}

/* odd */
.main .plan:nth-child(even) {}

.main .plan:nth-child(even) .plan__content {
	right: auto;
	left: 0;
}

.main .plan:nth-child(even) .plan__image {
	margin-left: auto;
}

@media screen and (max-width: 768px) {
	.plan {
		margin-bottom: 19.2vw;
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
	}

	.plan__content {
		margin: 0 auto;
		padding: 8.267vw 0;
		width: 88vw;
		position: relative;
		bottom: auto;
		right: auto;
	}

	.plan__content::before,
	.plan__content::after {
		height: 0.8vw;
	}

	.plan__title {
		margin-bottom: 2.667vw;
		font-size: 5.333vw;
	}

	.plan__title--category {
		margin-bottom: 5.333vw;
		width: 20.267vw;
		font-size: 3.733vw;
		border-bottom-width: 1.067vw;
	}

	.plan__text {
		margin-bottom: 5.333vw;
		font-size: 3.2vw;
	}

	.plan__content .link-button {
		margin: 0 auto;
		width: 74.667vw;
		height: 14.933vw;
		font-size: 4vw;
		border-radius: 14.933vw;
	}

	.plan__content .link-button svg {
		width: 7.2vw;
		height: 5.333vw;
		right: 3.467vw;
	}

	.plan__image {
		margin-bottom: 6.133vw;
		padding-bottom: 0;
		width: 100%;
	}

	/* odd */
	.main .plan:nth-child(odd) .plan__content {
		left: auto;
	}

	.main .plan:nth-child(odd) .plan__image {
		margin-left: 0;
	}
}

/* ----------------------------------------------------
	banner
---------------------------------------------------- */
.banner {
	padding: min(5rem, 3.906vw) 0 min(14.8rem, 11.563vw);
	text-align: center;
}

.banner__title {
	margin-bottom: min(3.6rem, 2.813vw);
	font-size: min(2.3rem, 1.797vw);
}

.banner__list {
	margin: 0 auto;
	width: min(81.3rem, 63.516vw);
}

@media screen and (max-width: 768px) {
	.banner {
		padding: 12.533vw 0 17.067vw;
	}

	.banner__title {
		margin-bottom: 4.533vw;
		font-size: 4.267vw;
	}

	.banner__list {
		width: 82.133vw;
	}
}

/* ----------------------------------------------------
	spgr
---------------------------------------------------- */
.spgr {
	background: rgba(248, 238, 221, 1);
	padding: min(10.3rem, 8.047vw) 0;
}

.spgr__logo {
	margin: 0 auto min(2.9rem, 2.266vw);
	width: min(22.7rem, 17.734vw);
}

.spgr__title {
	margin-bottom: min(3.3rem, 2.578vw);
	font-size: min(2.5rem, 1.953vw);
	font-weight: 700;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.spgr__title--small {
	font-size: min(1.9rem, 1.484vw);
}

.spgr .link-button {
	background: #C66E4E;
	margin: 0 auto;
	width: min(46.8rem, 36.563vw);
	height: min(7rem, 5.469vw);
	color: rgb(var(--wht));
	font-size: min(1.6rem, 1.25vw);
}

.spgr .link-button svg {
	width: min(3.7rem, 2.891vw);
	height: min(0.9rem, 0.703vw);
	position: absolute;
	right: min(1.3rem, 1.016vw);
	bottom: min(1.3rem, 1.016vw);
}

@media screen and (max-width: 768px) {
	.spgr {
		padding: 10.933vw 0;
	}

	.spgr__logo {
		margin-bottom: 4.533 vw;
		width: 37.6vw;
	}

	.spgr__title {
		margin-bottom: 3.2vw;
		font-size: 4.267vw;
	}

	.spgr__title--small {
		font-size: 3.733vw;
	}

	.spgr .link-button {
		width: 82.133vw;
		height: 15.2vw;
		font-size: 3.467vw;
	}

	.spgr .link-button svg {
		width: 8.267vw;
		height: 1.867vw;
		right: 2.667vw;
		bottom: 2.667vw;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	padding-top: min(8rem, 6.25vw);
}

.footer__note {
	margin-bottom: min(5rem, 3.906vw);
	text-align: center;
}

.footer__copyright {
	padding: min(3rem, 2.344vw) 0 min(4rem, 3.125vw);
	text-align: center;
}

.footer__copyright--text {
	color: rgb(var(--gry));
	font-size: min(1.2rem, 0.938vw);
}

@media screen and (max-width: 768px) {
	.footer {
		padding-top: 17.333vw;
	}

	.footer__note {
		margin-bottom: 8vw;
	}

	.footer__copyright {
		padding: 6.4vw 0;
	}

	.footer__copyright--text {
		font-size: 2.4vw;
	}
}

/*
	hotel-list
------------------------------ */
.footer__hotel-list {
	font-size: min(1.6rem, 1.25vw);
	display: flex;
	justify-content: center;
}

.footer__hotel-list--item {
	padding: 0 1.5em;
	position: relative;
}

.footer__hotel-list--item::before,
.footer__hotel-list--item::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "|";
}

.footer__hotel-list--item::before {
	left: 0;
}

.footer__hotel-list--item::after {
	right: 0;
}

.footer__hotel-list--link {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer__hotel-list {
		margin: 0 auto;
		font-size: 4.267vw;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer__hotel-list--item:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.footer__hotel-list--item:last-of-type:before {
		content: "|";
	}
}