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

.header__title,
.header__date {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.header__title {
	width: 55.692vw;
	top: 5.846vw;
}

.header__date {
	width: 40.308vw;
	top: 24.769vw;
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 28.2rem;
		top: 2.3rem;
	}

	.header__date {
		width: 26.6rem;
		top: 12rem;
	}
}

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	width: 100%;
	line-height: 1;
}

.gnav__list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.gnav__item {
	margin-bottom: 0.5rem;
	width: calc((100% - 1.5rem) / 4);
}

.gnav__item:not(:nth-child(4n)) {
	margin-right: 0.5rem;
}

.gnav__link {
	background: rgba(var(--red), 1);
	color: rgb(var(--wht));
	font-family: var(--din);
	font-size: 4.2rem;
	text-decoration: none;
	height: 13rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__link--text {
	background-image: url(../img/arrow-gnav.svg);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 1.4rem auto;
	padding-right: 2.8rem;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background-color: rgba(var(--red), 1);
		max-width: 37.5rem;
		width: 100%;
		height: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		z-index: 999;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		display: block;
	}

	.gnav__item {
		margin: 0;
		width: 100%;
	}

	.gnav__item:not(:nth-child(4n)) {
		margin-right: 0
	}

	.gnav__link {
		background: none;
		height: 6.2rem;
		font-size: 2.4rem;
		border-bottom: solid 2px rgb(var(--beg));
	}

	.gnav__link--text {
		background: none;
		padding-right: 0;
	}

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

	body.is-open {
		overflow: hidden;
	}

	.is-open .gnav--sp-toggle {
		transform: translateX(0);
	}

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

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

@media screen and (max-width: 768px) {
	.toggle {
		background: rgba(var(--red), 1);
		width: 4.4rem;
		height: 4.4rem;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
	}

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

	.toggle__line {
		background: rgb(var(--wht));
		width: 2.6rem;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
		transform: translateX(-50%);
		transform-origin: center;
	}

	.toggle__line:nth-child(1) {
		top: 1.2rem;
	}

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

	.toggle__line:nth-child(3) {
		bottom: 1.2rem;
	}

	.is-open .toggle__line {
		transform-origin: 0 0;
	}

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

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

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

/* ----------------------------------------------------
	art, sec
---------------------------------------------------- */
.art__title,
.sec__title {
	margin-bottom: 4rem;
	line-height: normal;
	font-family: var(--din);
	font-size: 6rem;
	text-align: center;
}

.art__lead,
.sec__lead {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

.art__lead--inner::before,
.sec__lead--inner::before {
	content: "＼";
}

.art__lead--inner::after,
.sec__lead--inner::after {
	content: "／";
}

.sec {
	padding: 8rem 0;
}

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

	.art__title,
	.sec__title {
		margin-bottom: 2rem;
		font-size: 4.5rem;
	}

	.art__lead,
	.sec__lead {
		padding: 0 2rem;
		font-size: 2rem;
		text-align: left;
	}

	.art__lead--inner::before,
	.sec__lead--inner::before,
	.art__lead--inner::after,
	.sec__lead--inner::after {
		content: "";
	}

	.sec {
		padding: 5rem 0;
	}
}

/* ----------------------------------------------------
	outdoor
---------------------------------------------------- */
.outdoor {
	padding: 11rem 0 3rem;
	color: rgb(var(--red));
}

.outdoor .art__title {
	position: relative;
}

.outdoor .art__title::after {
	background-image: url(../img/bubble.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 20.7rem;
	height: 12.7rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(22rem, -50%);
	content: "";
}

.outdoor .art__lead {
	font-size: 2.7rem;
}

.outdoor .art__lead {
	font-size: 2.7rem;
}

.outdoor .link-button {
	background-color: rgb(var(--bro));
	color: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.outdoor {
		padding: 5rem 0 0;
	}

	.outdoor .art__title::after {
		background: none;
		background-color: rgb(var(--red));
		margin: 0.5rem auto 0;
		width: 29rem;
		height: 3.4rem;
		color: rgb(var(--wht));
		font-size: 1.9rem;
		font-weight: bold;
		border-radius: 3.4rem;
		display: flex;
		justify-content: center;
		align-items: center;
		position: static;
		transform: translate(0);
		content: "屋根があるので雨でも安心！";
	}

	.outdoor .art__lead {
		font-size: 2rem;
	}
}

/* ----------------------------------------------------
	indoor
---------------------------------------------------- */
.indoor {
	background-color: rgb(var(--red));
	padding: 11rem 0 3rem;
	color: rgb(var(--wht));
}

.indoor .link-button {
	background-color: rgb(var(--wht));
	color: rgb(var(--red));
}

@media screen and (max-width: 768px) {
	.indoor {
		padding: 5rem 0 0;
	}
}

/* ----------------------------------------------------
	menu
---------------------------------------------------- */
.menu {
	margin: 0 auto;
	padding: 8rem 0;
	width: 114rem;
}

.menu__main,
.menu__content {
	margin: 0 auto 5rem;
	display: flex;
}

@media screen and (max-width: 768px) {
	.menu {
		padding: 5rem 0;
		width: 100%;
	}

	.menu__main,
	.menu__content {
		display: block;
		position: relative;
	}

	.menu__main {
		margin: 0 auto 3rem;
		width: 33.5rem;
	}

	.menu__content {
		background-color: #efe8dd;
		margin-bottom: 3rem;
		padding: 2rem;
	}
}

/* 
	menu__main
------------------------------*/
.menu__main--image {
	margin-right: 5rem;
	flex: 0 0 75.8rem;
}

.menu__main--detail {
	min-width: 0;
	flex: 1 1 auto;
}

.menu__main--title {
	line-height: normal;
	font-size: 3.8rem;
	font-weight: bold;
}

.menu__main--price {
	margin-bottom: 1rem;
	line-height: normal;
	font-size: 3.2rem;
	font-weight: bold;
}

.menu__main--price span {
	font-size: 2.3rem;
	font-weight: normal;
}

.menu__main--price small {
	font-size: 1.8rem;
	font-weight: normal;
	display: block;
}

.menu__main--text {
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.menu__main--detail .note li {
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.menu__main--image {
		margin: 0 0 1rem;
		width: 33.5rem;
	}

	.menu__main--detail {
		width: 100%;
		position: relative;
		z-index: 2;
	}

	.menu__main--title {
		margin-bottom: 1rem;
		line-height: 1.25;
		font-size: 3.2rem;
		text-align: center;
	}

	.menu__main--price {
		font-size: 3.1rem;
		text-align: right;
	}

	.menu__main--price span {
		font-size: 1.9rem;
	}

	.menu__main--price small {
		font-size: 1.5rem;
	}

	.menu__main--text {
		font-size: 1.6rem;
	}

	.menu__main--detail .note li {
		font-size: 1.4rem;
	}
}

/* 
	menu__content
------------------------------*/
.menu__content {
	width: 91.2rem;
	display: flex;
	flex-direction: row-reverse;
}

.menu__content--image {
	margin-left: 1rem;
	flex: 0 0 52rem;
}

.menu__content--detail {
	min-width: 0;
	flex: 1 1 auto;
}

.menu .detail-title {
	margin-bottom: 1rem;
	width: 8rem;
}

.menu .detail-list__item {
	margin-left: 1em;
	font-size: 1.6rem;
	text-indent: -1em;
}

.menu .detail-list__item::before {
	content: "●";
}

.menu .note {
	margin-top: 1rem;
}

@media screen and (max-width: 768px) {
	.menu__content {
		width: 100%;
		display: block;
	}

	.menu__content--image {
		display: none;
	}

	.menu__content--detail {
		width: 100%;
	}

	.menu .detail-title {
		display: none;
	}

	.menu .detail-list__item {
		color: rgb(var(--red));
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------
	seafood
---------------------------------------------------- */
@media screen and (max-width: 768px) {
	#seafood {
		padding-bottom: 0;
	}

	#seafood .detail-list__item {
		letter-spacing: -0.005em;
		float: left;
	}

	#seafood .detail-list__item:not(:last-of-type) {
		margin-right: 1em;
	}
}

/* ----------------------------------------------------
	bbqset
---------------------------------------------------- */
#bbqset .detail-list {
	display: grid;
	grid-template-columns: 24.5rem auto;
}

#bbqset .detail-list__item:nth-child(1),
#bbqset .detail-list__item:nth-child(2),
#bbqset .detail-list__item:nth-child(3),
#bbqset .detail-list__item:nth-child(4) {
	grid-column: 1/2;
}

#bbqset .detail-list__item:nth-child(5),
#bbqset .detail-list__item:nth-child(6),
#bbqset .detail-list__item:nth-child(7),
#bbqset .detail-list__item:nth-child(8) {
	grid-column: 2/3;
}

#bbqset .detail-list__item:nth-child(1),
#bbqset .detail-list__item:nth-child(5) {
	grid-row: 1/2;
}

#bbqset .detail-list__item:nth-child(2),
#bbqset .detail-list__item:nth-child(6) {
	grid-row: 2/3;
}

#bbqset .detail-list__item:nth-child(3),
#bbqset .detail-list__item:nth-child(7) {
	grid-row: 3/4;
}

#bbqset .detail-list__item:nth-child(4),
#bbqset .detail-list__item:nth-child(8) {
	grid-row: 4/5;
}


@media screen and (max-width: 768px) {
	#bbqset {
		padding-bottom: 0;
	}

	#bbqset .detail-list {
		display: block;
	}

	#bbqset .detail-list__item {
		letter-spacing: -0.005em;
		float: left;
	}

	#bbqset .detail-list__item:not(:last-of-type) {
		margin-right: 1em;
	}
}

/* ----------------------------------------------------
	child
---------------------------------------------------- */
#child .detail-list {}

@media screen and (max-width: 768px) {
	#child .detail-list {
		display: block;
	}

	#child .detail-list__item {
		letter-spacing: -0.005em;
		float: left;
	}

	#child .detail-list__item:not(:last-of-type) {
		margin-right: 1em;
	}
}

/* ----------------------------------------------------
	party
---------------------------------------------------- */
#party .detail-list {
	display: grid;
	grid-template-columns: 47.5rem auto;
}

#party .detail-list__item:nth-child(1),
#party .detail-list__item:nth-child(2),
#party .detail-list__item:nth-child(3) {
	grid-column: 1/2;
}

#party .detail-list__item:nth-child(4),
#party .detail-list__item:nth-child(5),
#party .detail-list__item:nth-child(6) {
	grid-column: 2/3;
}

#party .detail-list__item:nth-child(1),
#party .detail-list__item:nth-child(4) {
	grid-row: 1/2;
}

#party .detail-list__item:nth-child(2),
#party .detail-list__item:nth-child(5) {
	grid-row: 2/3;
}

#party .detail-list__item:nth-child(3),
#party .detail-list__item:nth-child(6) {
	grid-row: 3/4;
}

@media screen and (max-width: 768px) {
	#party .detail-list {
		display: block;
	}

	#party .detail-list__item {
		letter-spacing: -0.005em;
		float: left;
	}

	#party .detail-list__item:not(:last-of-type) {
		margin-right: 1em;
	}
}

/* ----------------------------------------------------
	carte
---------------------------------------------------- */
#carte {
	padding: 19.4rem 0 0;
	color: rgb(var(--red));
	font-size: 2.2rem;
}

#carte .content {
	background-color: rgb(var(--wht));
	margin: 0 auto;
	padding: 10rem 0 6rem;
	width: 79.6rem;
	position: relative;
}

#carte .content::before {
	background-color: rgb(var(--wht));
	width: 40.5rem;
	height: 40.5rem;
	border-radius: 40.5rem;
	position: absolute;
	top: -11.6rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	content: "";
}

#carte .content__title {
	color: rgb(var(--red));
	position: absolute;
	top: -2.5rem;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
}

.carte-list {
	margin: 0 auto 2rem;
	width: 59.5rem;
	position: relative;
	z-index: 2;
}

.carte-list__item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
}

.carte-list__item::before {
	width: 100%;
	height: 1px;
	border-top: dotted 2px rgb(var(--red));
	position: absolute;
	bottom: 1.8rem;
	left: 0;
	z-index: 1;
	content: "";
}

.carte-list__item::after {
	width: 1em;
	height: 1em;
	position: absolute;
	bottom: 0.8em;
	right: -1.25em;
}

.carte-list__item.number01::after {
	content: "①";
}

.carte-list__item.number02::after {
	content: "②";
}

.carte-list__item.number03::after {
	content: "③";
}

.carte-list__item.number04::after {
	content: "④";
}

.carte-list__item.number05::after {
	content: "⑤";
}

.carte-list__item.number06::after {
	content: "⑥";
}

.carte-list__item.number07::after {
	content: "⑦";
}

.carte-name,
.carte-price {
	background-color: rgb(var(--wht));
	position: relative;
	z-index: 2;
}

.carte-name {
	padding-right: 1rem;
}

.carte-price {
	padding-left: 1rem;
}

#carte .image {
	margin: 0 auto;
	width: 69rem;
}

@media screen and (max-width: 768px) {
	#carte {
		padding-top: 10rem;
		font-size: 1.3rem;
	}

	#carte .content {
		padding: 2rem;
		width: 33.5rem;
	}

	#carte .content::before {
		width: 17rem;
		height: 17rem;
		border-radius: 17rem;
		top: -4.8rem;
	}

	#carte .content__title {
		font-size: 2.8rem;
	}

	.carte-list {
		width: 100%;
	}

	.carte-list__item::before {
		bottom: 1rem;
	}

	.carte-list__item::after {
		right: -1.2em;
	}

	.carte-name {
		padding-right: 0.5rem;
		letter-spacing: -0.005em;
	}

	.carte-price {
		padding-left: 0.5rem;
	}

	#carte .image {
		width: 100%;
	}
}

/* ----------------------------------------------------
	drinks
---------------------------------------------------- */
#drinks {
	margin: 0 auto;
	width: 84rem;
	color: rgb(var(--red));
	display: flex;
	justify-content: space-between;
}

#drinks .content {
	flex: 0 0 44rem;
}

#drinks .sec__title {
	margin-bottom: 0;
	text-align: left;
}

.drink-menu__title {
	margin-bottom: 1rem;
	font-size: 3rem;
	font-weight: 600;
}

.drink-menu__detail {
	font-size: 1.6rem;
}

.drink-menu__list {
	margin-bottom: 1rem;
}

.drink-menu__list--item::before {
	width: 1em;
	height: 1em;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	content: "・";
}

#drinks .image {
	flex: 0 0 37rem;
}

@media screen and (max-width: 768px) {
	#drinks {
		width: 33.5rem;
		display: block;
	}

	#drinks .sec__title {
		text-align: center;
	}

	#drinks .content {
		margin-bottom: 3rem;
	}

	.drink-menu__title {
		font-size: 2rem;
		text-align: center;
	}

	.drink-menu__detail {
		font-size: 1.4rem;
	}

	/* .drink-menu__list {
		margin-bottom: 2rem;
		display: flex;
		flex-wrap: wrap;
	}

	.drink-menu__list--item {
		width: 50%;
		display: flex;
	}

	.drink-menu__list--item::before {
		margin-top: 0.5rem;
	} */

	.drink-menu__list--item:nth-child(even) {
		padding-left: 1rem;
	}

	.drink-menu__list {
		margin-bottom: 2rem;
		display: grid;
		grid-template-columns: 50% 50%;
	}

	.drink-menu__list--item {
		display: flex;
	}

	.drink-menu__list--item::before {
		margin-top: 0.5rem;
	}

	/* .drink-menu__list--item:nth-child(1),
	.drink-menu__list--item:nth-child(2),
	.drink-menu__list--item:nth-child(3),
	.drink-menu__list--item:nth-child(4),
	.drink-menu__list--item:nth-child(5),
	.drink-menu__list--item:nth-child(6) {
		grid-column: 1/2;
	}

	.drink-menu__list--item:nth-child(7),
	.drink-menu__list--item:nth-child(8),
	.drink-menu__list--item:nth-child(9),
	.drink-menu__list--item:nth-child(10) {
		padding-left: 1rem;
		grid-column: 2/3;
	}

	.drink-menu__list--item:nth-child(1),
	.drink-menu__list--item:nth-child(7) {
		grid-row: 1/2;
	}

	.drink-menu__list--item:nth-child(2) {
		grid-row: 2/3;
	}

	.drink-menu__list--item:nth-child(3) {
		grid-row: 3/4;
	}

	.drink-menu__list--item:nth-child(4) {
		grid-row: 4/5;
	}

	.drink-menu__list--item:nth-child(5) {
		grid-row: 5/6;
	}

	.drink-menu__list--item:nth-child(8) {
		grid-row: 2/4;
	}

	.drink-menu__list--item:nth-child(9) {
		grid-row: 4/6;
	}

	.drink-menu__list--item:nth-child(6),
	.drink-menu__list--item:nth-child(10) {
		grid-row: 6/7;
	} */
}

/* ----------------------------------------------------
	english
---------------------------------------------------- */
#english {
	background-color: rgb(var(--red));
	color: rgb(var(--wht));
}

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

/* ----------------------------------------------------
	english
---------------------------------------------------- */
#english {
	padding: 10rem 0;
}

#english a {
	margin: 0 auto;
	width: 52rem;
	display: block;
}

@media screen and (max-width: 768px) {
	#english {
		padding: 5rem 0;
	}

	#english a {
		width: 33.5rem;
	}
}

/* ----------------------------------------------------
	spgr
---------------------------------------------------- */
#spgr {
	background: rgb(var(--wht));
}

#spgr .content {
	background-color: rgb(var(--beg));
	margin: 0 auto 5rem;
	padding: 9rem 0 3rem;
	width: 83.8rem;
	text-align: center;
	border-radius: 2rem;
	position: relative;
}

#spgr .content__title {
	width: 32.5rem;
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
}

#spgr .content__detail--title {
	margin-bottom: 1rem;
	line-height: normal;
	font-size: 3rem;
}

#spgr .content__detail--text {
	color: rgb(var(--red));
	font-size: 2.6rem;
}

#spgr .banner {
	margin: 0 auto;
	width: 83.8rem;
}

@media screen and (max-width: 768px) {
	#spgr .content {
		margin-bottom: 2rem;
		padding: 4rem 0 3rem;
		width: 33.5rem;
		border-radius: 1.5rem;
	}

	#spgr .content__title {
		width: 21rem;
		top: -2.5rem;
	}

	#spgr .content__detail--title {
		margin-bottom: 1rem;
		font-size: 1.8rem;
	}

	#spgr .content__detail--text {
		padding: 0 1.5rem;
		font-size: 1.6rem;
		text-align: left;
	}

	#spgr .banner {
		width: 33.5rem;
	}
}

/* ----------------------------------------------------
	access
---------------------------------------------------- */
#access {
	background-color: rgb(var(--gra));
	padding-bottom: 0;
	color: rgb(var(--wht));
}

#access .sec__lead {
	margin-bottom: 7.5rem;
}

#access .sec__image {
	margin: 0 auto 9rem;
	width: 87.5rem;
}

#access .logo {
	margin: 0 auto 4rem;
	width: 57.4rem;
}

#access .hotel {
	text-align: center;
}

#access .hotel__name,
#access .hotel__address {
	font-size: 2.2rem;
}

#access .hotel__address {
	margin-bottom: 8rem;
}

#access .hotel__map {
	margin: 0 auto 8rem;
	width: 108rem;
}

#access .hotel__map iframe {
	width: 100%;
	height: 56rem;
}

#access .hotel__access {
	margin-bottom: 5rem;
	font-size: 2.1rem;
}

#access .hotel__access--title {
	margin: 0 auto 1.5rem;
	width: 20rem;
	height: 4rem;
	border: solid 1px rgb(var(--wht));
	display: flex;
	justify-content: center;
	align-items: center;
}

#access .hotel__text {
	margin-bottom: 1rem;
	font-size: 2.1rem;
}

#access .hotel .link-button {
	background-color: rgb(var(--wht));
	margin-bottom: 8rem;
	color: rgb(var(--blk));
}

#access .note {
	margin: 0 auto 5rem;
	width: 108rem;
	text-align: left;
}

#access .hotel__logo {
	margin: 0 auto 5rem;
	width: 21rem;
}

#access .hotel__sns {
	display: flex;
	justify-content: center;
}

#access .hotel__sns--item {
	margin: 0 2rem 5rem;
	width: 7rem;
}

#access .hotel__detail {
	font-size: 2.9rem;
	text-align: center;
}

#access .hotel__detail .note {
	margin: 1rem 0 0;
	width: 100%;
}

#access .hotel__detail .note li {
	font-size: 1.8rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#access .sec__lead {
		margin-bottom: 2rem;
	}

	#access .sec__image {
		margin-bottom: 3rem;
		width: 33.5rem;
	}

	#access .logo {
		margin-bottom: 2rem;
		width: 28.4rem;
	}

	#access .hotel__name,
	#access .hotel__address {
		font-size: 1.4rem;
	}

	#access .hotel__address {
		margin-bottom: 2rem;
	}

	#access .hotel__map {
		margin-bottom: 3rem;
		width: 33.5rem;
	}

	#access .hotel__map iframe {
		height: 20rem;
	}

	#access .hotel__access {
		margin-bottom: 3rem;
		font-size: 1.3rem;
	}

	#access .hotel__access--title {
		margin-bottom: 1rem;
		width: 11.5rem;
		height: 2rem;
	}

	#access .hotel__text {
		margin-bottom: 3rem;
		font-size: 1.3rem;
	}

	#access .hotel .link-button {
		margin-bottom: 3rem;
	}

	#access .note {
		width: 33.5rem;
	}


	#access .hotel__logo {
		margin-bottom: 3rem;
		width: 10.4rem;
	}

	#access .hotel__sns--item {
		margin-bottom: 3rem;
		width: 3.4rem;
	}

	#access .hotel__detail {
		font-size: 1.4rem;
	}

	#access .hotel__detail .note li {
		font-size: 1.2rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--gra));
	padding: 5rem 0;
	color: rgb(var(--wht));
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: 1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .hotel-nav::before,
.footer .hotel-nav__item::after {
	content: "|";
}

.footer .hotel-nav__item a {
	padding: 0 1em;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		font-size: 4.267vw;
		text-align: center;
		display: block;
	}

	.footer .hotel-nav::before {
		content: "";
	}

	.footer .hotel-nav__item::before,
	.footer .hotel-nav__item::after {
		content: "|";
	}

	.footer .hotel-nav__item:not(:last-of-type) {
		margin-bottom: 1em;
	}

	.footer .hotel-nav__item a {
		padding: 0 1em;
		text-decoration: none;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	margin-top: 2em;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 2.933vw;
	}
}