@charset "UTF-8";


/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding-top: 50px;
}

@media screen and (max-width: 768px) {
	.footer {
		padding-top: 13.33333vw;
	}
}

/*
	footer__note
------------------------------ */
.footer__note {
	margin: 0 auto 50px;
	padding: 0 50px;
	max-width: 1200px;
	width: 100%;
	display: flex;
}

.footer__note li {
	margin-right: 1rem;
	font-size: 15px;
}

@media screen and (max-width: 768px) {
	.footer__note {
		margin: 0 auto 13.33333vw;
		padding: 0 5.86667vw;
		display: block;
	}

	.footer__note li {
		margin-right: 0;
		font-size: 4vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	line-height: 1;
	color: rgb(var(--blk));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:first-of-type::before,
.footer__hotelNav li::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.footer__hotelNav li:first-of-type::before {
	left: 0;
	content: "|";
}

.footer__hotelNav li::after {
	right: 0;
	content: "|";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--blk));
	text-decoration: none;
	display: inline-block;
}

.footer__hotelNav li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		text-align: center;
		display: block;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after {
		content: "";
	}

	.footer__hotelNav li {
		margin-bottom: 1rem;
		justify-content: center;
	}

	.footer__hotelNav li a {
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		content: "|";
	}

	.footer__hotelNav li a::before {
		left: 0;
	}

	.footer__hotelNav li a::after {
		right: 0;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 2rem 0 3rem;
	color: rgba(var(--blk), 0.5);
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.copy {
		font-size: 2.93333vw;
	}
}

/* ----------------------------------------------------
	toggle nav
---------------------------------------------------- */
/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		display: block;
		position: fixed;
		top: 5.86667vw;
		right: 5.86667vw;
		z-index: 2001;
	}

	.toggle__inner {
		position: relative;
		width: 11.46667vw;
		height: 4.53333vw;
		cursor: pointer;
	}

	.toggle__inner span {
		background: rgb(var(--blk));
		width: 100%;
		height: 1.06667vw;
		display: block;
		position: absolute;
		left: 0;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 0;
	}

	.toggle__inner span:nth-child(2) {
		bottom: 0;
	}

	/* is-open */
	.is-open .toggle__inner span {
		height: 1px;
	}

	.is-open .toggle__inner span:nth-child(1) {
		top: 50%;
		transform: rotate(25deg) translatey(-50%);
	}

	.is-open .toggle__inner span:nth-child(2) {
		top: 50%;
		transform: rotate(-25deg) translatey(-50%);
	}
}

/*
	nav_content
------------------------------ */
.gnav__list {
	background: rgba(var(--wht), 0.95);
	padding: 0 2.19619vw;
	width: 100%;
	height: 100px;
	display: flex;
	/* justify-content: center; */
	justify-content: flex-start;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1999;
}

.gnav__list--item {
	height: 100%;
}

.gnav__list--item a,
.gnav__list--item.navHotel span {
	padding: 0 1em;
	height: 100%;
	color: rgb(var(--mainColor));
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: all 0.6s ease;
}

.gnav__list--item a:hover,
.gnav__list--item span:hover {
	color: rgb(var(--blk));
	opacity: 1;
}

.gnav__list--item.navHotel span {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.gnav__list--item.navHotel span svg {
	margin-left: 0.5em;
	width: 14px;
	height: auto;
	fill: none;
	stroke: rgb(var(--mainColor));
	stroke-miterlimit: 10;
}

.gnav__list--item span:hover svg {
	stroke: rgb(var(--blk));
}

.gnav__list--item.navHotel span+.underlayer {
	border-top: solid 1px #c8c8c8;
	display: none;
}

.gnav__list--item.navHotel span:hover+.underlayer,
.gnav__list--item.navHotel span+.underlayer:hover {
	display: block;
}

.gnav__list--item .underlayer__item {
	white-space: nowrap;
	border-bottom: solid 1px #c8c8c8;
}

.gnav__list--item .underlayer__item a {
	background: rgba(var(--wht), 0.9);
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__list--item .underlayer__item a:hover {
	color: rgb(var(--blk));
	opacity: 1;
}

@media screen and (max-width: 1200px) {
	.gnav__list {
		padding: 0 4.16667vw;
		height: 8.33333vw;
	}

	.gnav__list--item a,
	.gnav__list--item.navHotel span {
		font-size: 1.5vw;
	}

	.gnav__list--item.navHotel span svg {
		width: 1.16667vw;
	}

	.gnav__list--item .underlayer__item a {
		height: 5vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		background: rgb(var(--lightGre));
		padding-top: 14.13333vw;
		width: 100%;
		height: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		background: none;
		padding: 0 5.86667vw;
		height: auto;
		display: block;
		position: relative;
		top: auto;
		left: auto;
	}

	.gnav__list--item {
		border-top: solid 1px rgb(var(--mainColor));
	}

	.gnav__list--item:last-of-type {
		border-bottom: solid 1px rgb(var(--mainColor));
	}

	.gnav__list--item a,
	.gnav__list--item.navHotel span {
		padding: 0 0.5em;
		height: 14.13333vw;
		font-size: 4.26667vw;
		color: rgb(var(--blk));
	}

	.gnav__list--item.navHotel span {
		justify-content: flex-start;
	}

	.gnav__list--item a:hover,
	.gnav__list--item span:hover {
		color: rgb(var(--blk));
		opacity: 1;
	}

	.gnav__list--item.navHotel span svg {
		display: none;
	}

	.gnav__list--item.navHotel span+.underlayer {
		padding: 0.5em 0;
		border-top: solid 1px rgb(var(--mainColor));
		display: block;
	}

	.gnav__list--item .underlayer__item {
		border-bottom: none;
	}

	.gnav__list--item .underlayer__item a {
		background: none;
		padding: 0.5em 2em;
		height: auto;
		justify-content: flex-start;
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .gnav {
		z-index: 2000;
		transform: translateX(0);
	}
}

/* ----------------------------------------------------
	pageNav
---------------------------------------------------- */
.pageNav {
	margin-bottom: 8.05271vw;
}

.pageNav__list {
	display: flex;
	justify-content: center;
}

.pageNav__list--item {
	margin: 0 2.5%;
	width: 40%;
	border: solid 1px rgb(var(--mainColor));
}

.pageNav__list--item a {
	height: 120px;
	line-height: 1;
	text-decoration: none;
	border-bottom: solid 10px rgb(var(--mainColor));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pageNav__list--item a svg {
	height: auto;
	fill: rgb(var(--mainColor));
	stroke-width: 0px;
}

.pageNav__list--item.dog a svg {
	width: 81px;
}

.pageNav__list--item.cat a svg {
	width: 63px;
}

.pageNav__list--item a .text {
	margin-top: 0.5em;
	color: rgb(var(--mainColor));
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
}

.pageNav__list--item a:hover {
	background: rgb(var(--mainColor));
	border-bottom-color: rgb(var(--wht));
	opacity: 1;
}

.pageNav__list--item a:hover svg {
	fill: rgb(var(--wht));
}

.pageNav__list--item a:hover .text {
	color: rgb(var(--wht));
}

@media screen and (max-width: 1200px) {
	.pageNav__list--item a {
		height: 10vw;
		border-bottom: solid 0.83333vw rgb(var(--mainColor));
	}

	.pageNav__list--item.dog a svg {
		width: 6.75vw;
	}

	.pageNav__list--item.cat a svg {
		width: 5.25vw;
	}

	.pageNav__list--item a .text {
		font-size: 1.66667vw;
	}
}

@media screen and (max-width: 768px) {
	.pageNav {
		margin-bottom: 20.53333vw;
	}

	.pageNav__list {
		display: block;
	}

	.pageNav__list--item {
		margin: 0;
		width: 100%;
	}

	.pageNav__list--item:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.pageNav__list--item a {
		width: 100%;
		height: 27.733336vw;
	}

	.pageNav__list--item.dog a svg {
		width: 17.86667vw;
	}

	.pageNav__list--item.cat a svg {
		width: 15.2vw;
	}

	.pageNav__list--item a .text {
		font-size: 5.86667vw;
	}
}

/* ----------------------------------------------------
	contents
---------------------------------------------------- */
.contents__title {
	background: rgb(var(--mainColor));
	margin-bottom: 53px;
	color: rgb(var(--wht));
}

.contents__title .wrap {
	margin: 0 auto;
	padding: 1.5rem 50px;
	max-width: 1200px;
	width: 100%;
	line-height: 1;
	display: flex;
	flex-direction: column;
}

.contents__title .with {
	font-family: var(--pauline);
	font-size: 40px;
	font-weight: normal;
}

.contents__title .name {
	margin: 1rem 0 1.5rem;
	font-size: 42px;
}

.contents__title .area {
	line-height: 1.5;
	font-size: 28px;
}

.contents__title .area::before,
.contents__title .area::after {
	content: "｜";
}

@media screen and (max-width: 1200px) {
	.contents__title {
		margin-bottom: 4.41667vw;
	}

	.contents__title .with {
		font-size: 3.33333vw;
	}

	.contents__title .name {
		font-size: 3.5vw;
	}

	.contents__title .area {
		font-size: 2.33333vw;
	}
}

@media screen and (max-width: 768px) {
	.contents__title .wrap {
		margin-bottom: 12vw;
	}

	.contents__title .wrap {
		padding: 1.5rem 5.86667vw;
	}

	.contents__title .with {
		font-size: 5.33333vw;
	}

	.contents__title .name {
		margin: 0.75rem 0 1rem;
		font-size: 7.2vw;
	}

	.contents__title .area {
		font-size: 4.26667vw;
	}
}

.header__title .area span.close{    
        font-weight: 500;
        color: white;
    background: none;
    }
.closelink {
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.closelink::before {
    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;
    content: "";
}