@charset "UTF-8";


/* ----------------------------------------------------
 btn
---------------------------------------------------- */
a.btnA {
	display: flex;
	width: 246px;
	height: 60px;
	padding: 10px 10px 10px 30px;
	align-items: center;
	gap: 80px;
	border: 1px solid #EDACAA;
	background: #EDACAA;
	color: #000;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 700;
	position: relative;
}
a.btnA::after {
	content: '';
	background: url(../img/arrowA.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 8px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(-50%, -50%);
}

a.btnB {
	display: flex;
	width: 246px;
	height: 60px;
	padding: 10px 10px 10px 20px;
	align-items: center;
	gap: 80px;
	border: 1px solid #B19552;
	background: #B19552;
	color: #fff;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 700;
	position: relative;
}
a.btnB::after {
	content: '';
	background: url(../img/arrowB.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 8px;
	height: 16px;
	position: absolute;
	top: 53%;
	right: 20px;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	a.btnA,
	a.btnB {
		font-size: min(1.6rem, 4.267vw);
		margin: 0 auto;
	}
}


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

.header nav.header-menu {
	width: 100%;
	padding: 0 54px;
	position: fixed;
	top: 33px;
	z-index: 10;
	opacity: 0;
	animation: fadeOnly 0.8s ease forwards;
	animation-delay: 3s;
}

.header nav.header-menu .wrap {
	display: flex;
	justify-content: space-between;
}

.header nav.header-menu a {
	color: #fff;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 600;
}

.header nav.header-menu.is-pink a {
	color: #EDACAA;
}

.header nav.header-menu .header-menu__links {
	width: 522px;
	display: flex;
	justify-content: space-between;
}

/* ボタン非表示 */
.header .menu-toggle {
	display: none;
}

@keyframes fadeOnly {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ハンバーガー */
@media screen and (max-width: 768px) {
	.header {
		padding-top: 80px;
		background: #161317;
	}
	.header .area-header-menu {
		background: #161317;
		display: block;
		width: 100%;
		height: 80px;
		position: fixed;
		top: 0;
		z-index: 100;
	}
	.header .menu-toggle {
		width: 52px;
		height: 52px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 10px;
		position: fixed;
		top: 15px;
		right: 20px;
		z-index: 999;
		background: none;
		border: none;
		cursor: pointer;
	}
	.header .menu-toggle span {
		width: 100%;
		height: 2px;
		background: #EDACAA;
		display: block;
		transition: .4s;
	}
	.header .menu-toggle.is-open span:nth-child(1) {
		transform: translateY(6px) rotate(30deg);
		background: #000;
	}
	.header .menu-toggle.is-open span:nth-child(2) {
		transform: translateY(-6px) rotate(-30deg);
		background: #000;
	}
	.header nav.header-menu {
		width: 70%;
		height: 50vh;
		padding: 90px 30px 30px;
		position: fixed;
		top: 0;
		right: 0;
		background: rgba(237, 172, 170, 0.9);
		transform: translateX(100%);
		transition: transform .5s ease;
		animation: none;
		opacity: 1;
		z-index: 100;
	}
	.header nav.header-menu.is-open {
		transform: translateX(0);
	}
	.header nav.header-menu .wrap {
		display: block;
	}
	.header nav.header-menu .header-menu__links {
		width: 100%;
		margin-top: 25px;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
	.header nav.header-menu a {
		font-size: min(1.5rem, 4vw);
		color: #000;
	}
}


/* ----------------------------------------------------
 kv
---------------------------------------------------- */
.kv {
	background: url(../img/kv.webp) no-repeat;
	background-size: 100%;
	width: 100%;
	height: 70vw;
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: kvFade 4s ease forwards;
}

.kv::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.00) 0%,
			rgba(0, 0, 0, 0.60) 50%,
			rgba(0, 0, 0, 0.00) 100%
		);
	opacity: 0;
	animation: gradientFade 4s ease forwards;
	animation-delay: 4s;
}

.kv h1 {
	max-width: 986px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	opacity: 0;
	animation: fadeOnly 1.3s ease forwards;
	animation-delay: 3.5s;
}

@keyframes kvFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes gradientFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.kv {
		background: url(../img/kv_sp.webp) no-repeat;
		background-size: 100%;
		height: 150vw;
	}
}


/* ----------------------------------------------------
 lead
---------------------------------------------------- */
.lead .contentsA {
	background: #333131;
	padding: 174px 0 272px;
	color: #fff;
	position: relative;
}

.lead .contentsA h2 {
	text-align: center;
	font-size: min(4.3rem, 3.148vw);
	font-weight: 600;
}

.lead .contentsA h2 .txt-img {
	display: none;
}

.lead .contentsA .txt {
	text-align: center;
	font-size: min(2.6rem, 1.903vw);
	font-weight: 500;
	line-height: 53px;
	letter-spacing: 0.78px;	
	margin-top: 40px;
}

.lead .contentsB {
	background: #EDEBEB;
	padding: 155px 0 126px;
	position: relative;
}

.lead .contentsB .area-img {
	max-width: 1090px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.lead .contentsB .area-img .img {
	width: 100%;
	margin: 0 15px;
}

.lead .contentsB .txt {
	text-align: center;
	font-size: min(2.2rem, 1.611vw);
	font-weight: 400;
	line-height: 42px;
}

.lead .contentsB .note {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.lead .contentsA {
		padding: 51px 0 265px;
	}
	.lead .contentsA h2 {
		font-size: min(3.6rem, 9.6vw);
		font-weight: 600;
		margin-left: 30px;
	}
	.lead .contentsA h2 .txt-img {
		display: block;
		width: 241px;
		margin: 0 auto;
		position: relative;
		top: -10px;
		left: -10px;
	}
	.lead .contentsA .txt {
		font-size: min(1.8rem, 4.8vw);
		font-weight: 500;
		line-height: 38px;
		letter-spacing: 0.54px;
	}
	.lead .contentsB {
		padding: 135px 0 80px;
	}
	.lead .contentsB .area-img {
		justify-content: center;
		flex-wrap: wrap;
		transform: translate(-50%, -70%);
	}
	.lead .contentsB .area-img .img {
		width: 42%;
		margin: 0 9px;
	}
	.lead .contentsB .area-img .img:nth-of-type(1),
	.lead .contentsB .area-img .img:nth-of-type(2) {
		margin-bottom: 14px;
	}
	.lead .contentsB .txt {
		font-size: min(1.8rem, 4.8vw);
		line-height: 38px;
	}
	.lead .contentsB .note {
		line-height: 21px;
	}
}


/* ----------------------------------------------------
 proposal
---------------------------------------------------- */
.proposal {
	padding: 183px 20px 122px;
}

.proposal h2 {
	color: #B19552;
	text-align: center;
	font-family: var(--cormorantgaramond);
	font-size: min(6rem, 4.392vw);
	font-weight: 600;
	letter-spacing: 3.6px;
}

.proposal .manu {
	display: flex;
	justify-content: center;
	margin-top: 111px;
}

.proposal .manu a {
	background: url(../img/frame.webp) no-repeat;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 293.5px;
	height: 106.5px;
	color: #000;
	text-align: center;
	
	font-size: min(2.5rem, 1.83vw);
	font-weight: 600;
	margin: 0 23px;
}

.proposal .manu a span {
	display: block;
	font-family: var(--cormorantgaramond);
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	letter-spacing: 1.2px;
}

@media screen and (max-width: 768px) {
	.proposal {
		padding: 78px 0 113px;
	}
	.proposal h2 {
		font-size: min(4rem, 10.667vw);
		line-height: 40px;
		letter-spacing: 2.4px;
	}
	.proposal .manu {
		display: block;
		margin-top: 39px;
	}
	.proposal .manu a {
		background: url(../img/frame_sp.webp) no-repeat;
		background-size: 100%;
		width: 287px;
		height: 80px;
		margin: 0 auto;
		font-size: min(1.8rem, 4.8vw);
	}
	.proposal .manu a:nth-of-type(2),
	.proposal .manu a:nth-of-type(3) {
		margin-top: 26px;
	}
	.proposal .manu a span {
		font-size: min(1.6rem, 4.267vw);
	}
}


/*--- contents（共通） ---*/
.proposal .contents h3 {
	text-align: center;
	font-size: min(4.7rem, 3.441vw);
	font-weight: 600;
}

.proposal .contents h3 span {
	display: block;
	text-align: center;
	font-family: var(--cormorantgaramond);
	font-size: min(2.9rem, 2.123vw);
	font-weight: 600;
	letter-spacing: 1.74px;
}

.proposal .contents .boxA,
.proposal .contents .boxB,
.proposal .contents .boxC {
	max-width: 1140px;
	margin: 0 auto;
	margin-top: 160px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.proposal .contents .boxC {
	margin-top: 390px;
}

.proposal .contents .boxB .img,
.proposal .contents .boxC .img {
	order: 2;
}

.proposal .contents .img {
	max-width: 602px;
	width: 100%;
	position: relative;
}

.proposal .contents .img .abs {
	position: absolute;
}

.proposal .contents .text .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.proposal .contents .boxC .text .wrap {
	position: absolute;
	top: -190px;
	left: 0;
}

.proposal .contents .text .wrap .item {
	width: 130px;
	margin-right: 20px;
}

.proposal .contents .text .wrap h4 {
	color: #666;
	font-size: min(4.2rem, 3.075vw);
	font-weight: 400;
	line-height: 60px;
}

.proposal .contents .boxA .text .detail {
	margin-left: 90px;
}

.proposal .contents .boxB .text .detail {
	margin-left: 30px;
}

.proposal .contents .text .detail .txtA {
	font-size: min(1.8rem, 1.318vw);
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 0;
}

.proposal .contents .text .detail h5 {
	font-size: min(2.6rem, 1.903vw);
	font-weight: 500;
	line-height: 36px;
}

.proposal .contents .text .detail h5 span {
	display: block;
	font-size: min(1.8rem, 1.318vw);
	margin-top: -2px;
}

.proposal .contents .text .detail .txtB {
	font-size: min(1.7rem, 1.245vw);
	font-weight: 500;
	line-height: 26px;
	margin-top: 15px;
	margin-bottom: 0;
}

.proposal .contents .text .detail .date {
	font-size: min(1.4rem, 1.025vw);
	font-weight: 700;
	margin-top: 15px;
}

.proposal .contents .text .detail .date::before {
	content: '●';
	color: #B9B9B9;
}

.proposal .contents .text .detail a.btnA,
.proposal .contents .text .detail a.btnB {
	margin-top: 40px;
}

.proposal .contents .text .detail .accordion-btn {
	margin-top: 19px;
}

@media screen and (max-width: 768px) {
	.proposal .contents h3 {
		font-size: min(2.8rem, 7.467vw);
	}
	.proposal .contents h3 span {
		font-size: min(2.2rem, 5.867vw);
	}
	.proposal .contents .boxA,
	.proposal .contents .boxB,
	.proposal .contents .boxC {
		margin-top: 39px;
		display: block;
	}
	.proposal .contents .text {
		margin-top: 80px;
		padding: 0 20px;
	}
	.proposal .contents .text .wrap {
		display: flex;
		justify-content: flex-start;
		margin-bottom: 27px;
	}
	.proposal .contents .text .wrap .item {
		width: 73px;
		margin-right: 20px;
	}
	.proposal .contents .text .wrap h4 {
		font-size: min(2.8rem, 7.467vw);
		line-height: 35px;
	}
	.proposal .contents .boxA .text .detail,
	.proposal .contents .boxB .text .detail {
		margin-left: 0;
	}
	.proposal .contents .text .detail .txtA {
		font-size: min(1.6rem, 4.267vw);
		line-height: 16px;
		margin-bottom: 10px;
	}
	.proposal .contents .text .detail h5 {
		font-size: min(2.2rem, 5.867vw);
	}
	.proposal .contents .text .detail h5 span {
		font-size: min(1.6rem, 4.267vw);
	}
	.proposal .contents .text .detail .txtB {
		font-size:min(1.5rem, 4vw);
	}
	.proposal .contents .text .detail .date {
		font-size: min(1.4rem, 3.733vw);
	}
	.proposal .contents .boxC .text .wrap {
		position: relative;
		top: 0;
		left: 0;
	}


}


/*--- stay ---*/
.proposal .stay {
	padding-top: 160px;
}

.proposal .stay .img .abs.imgtxtA {
	width: 100%;
	bottom: -40px;
	left: -50px;
}

.proposal .stay .img .abs.imgtxtB {
	width: 100%;
	top: -70px;
	left: 30px;
}

@media screen and (max-width: 768px) {
	.proposal .stay {
		padding-top: 95px;
	}
	.proposal .stay .img .abs.imgtxtA {
		width: 90%;
		bottom: -30px;
		left: 20px;
	}
	.proposal .stay .img .abs.imgtxtB {
		width: 90%;
		top: auto;
		bottom: -30px;
		left: 20px;
	}
}


/*--- restaurant ---*/
.restaurant {
	padding-top: 200px;
}

.proposal .restaurant .img .abs.imgtxtC {
	width: 115%;
	bottom: -70px;
	left: -50px;
}

.proposal .restaurant .img .abs.imgtxtD {
	width: 90%;
	top: 0px;
	left: -70px;
}

.proposal .restaurant .img .abs.imgtxtE {
	width: 70%;
	bottom: -80px;
	left: -50px;
}

.proposal .restaurant .boxA .text .detail {
	margin-left: 20px;
}

.proposal .restaurant .text .detail .date {
	margin-bottom: 0;
}

.proposal .restaurant .text .detail .date:nth-of-type(3) {
    margin-top: 0;
}

.proposal .restaurant .boxA.number05 {
	margin-top: 230px;
}

@media screen and (max-width: 768px) {
	.restaurant {
		padding-top: 100px;
	}
	.proposal .restaurant .img .abs.imgtxtC {
		width: 90%;
		bottom: -20px;
		left: 10px;
	}
	.proposal .restaurant .img .abs.imgtxtD {
		width: 90%;
		top: auto;
		bottom: -40px;
		left: auto;
		right: 10px;
	}
	.proposal .restaurant .img .abs.imgtxtE {
		width: 70%;
		bottom: -40px;
		left: auto;
		right: 10px;
	}
	.proposal .restaurant .boxA .text .detail {
		margin-left: 0;
	}
	.proposal .restaurant .boxA.number05 {
		margin-top: 80px;
	}
}


/*--- special ---*/
.special {
	padding-top: 270px;
}

.proposal .special .img .abs.imgtxtF {
	width: 75%;
	bottom: -70px;
	left: -60px;
}

@media screen and (max-width: 768px) {
	.special {
		padding-top: 118px;
		margin-top: 100px;
	}
	.proposal .special .img .abs.imgtxtF {
		width: 75%;
		bottom: -50px;
		left: auto;
		right: 20px;
	}
}


/*--- option ---*/
#option {
	padding-top: 100px;
}

.option {
	max-width: 1100px;
	margin: 30px auto 0;
	padding: 80px 0;
	border: 1px solid #B19552;
}

.option h3 {
	text-align: center;
	font-family: var(--cormorantgaramond);
	font-size: min(4.6rem, 3.367vw);
	font-weight: 400;
	letter-spacing: 2.76px;
}

.option .option-contents {
	margin-top: 45px;
	padding-left: 119px;
}

.option .option-contents ul {
	display: flex;
	align-items: center;
}

.option .option-contents ul li {
	margin-bottom: 30px;
}

.option .option-contents ul li:first-child {
	width: 200px;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
}

.option .option-contents ul li:nth-of-type(2) {
	margin-left: 100px;
	font-size: min(1.6rem, 1.171vw);
}

.option .option-contents ul li p {
	margin-bottom: 5px;
}

.option .option-contents ul li .option__item::before {
	content: '●';
	color: #DCDAD6;
}

.option .option-contents ul li .pc-only {
	display: inline;
}

@media screen and (max-width: 768px) {
	.option {
		margin: 26px 20px 0;
		padding: 40px 20px 20px;
	}
	.option h3 {
		font-size: min(3.5rem, 9.333vw);
		font-weight: 400;
		letter-spacing: 2.1px;
	}
	.option .option-contents {
		margin-top: 0;
		padding-left: 0;
	}
	.option .option-contents ul {
		display: block;
		margin-bottom: 20px;
	}
	.option .option-contents ul li {
		margin-bottom: 0;
	}
	.option .option-contents ul li:first-child {
		width: 100%;
		font-size: min(1.8rem, 4.8vw);
	}
	.option .option-contents ul li:nth-of-type(2) {
		margin-left: 0;
		font-size: min(1.6rem, 4.267vw);
	}
	.option .option-contents ul li p .note {
		display: block;
	}
	.option .option-contents ul li .pc-only {
		display: none;
	}
}


/* ----------------------------------------------------
 plan-image
---------------------------------------------------- */
.plan-image {
	background: url(../img/proposal-bg.webp) no-repeat;
	background-size: 100%;
	width: 100%;
	height: 84vw;
	position: relative;
}

.plan-image .img {
	position: absolute;
	position: absolute;
	opacity: 0;
	transition:
		opacity 1.2s ease,
		transform 1.2s ease;
}

.plan-image .img.fadeIn {
	opacity: 1;
}

.plan-image .img.img01 {
	width: 693px;
	top: 95px;
	left: 10%;
}

.plan-image .img.img02 {
	width: 464px;
	top: 428px;
	right: 10%;
}

.plan-image .img.img03 {
	width: 312px;
	bottom: 138px;
	left: 6%;
}

.plan-image .img.img04 {
	width: 793px;
	bottom: 89px;
	right: 7%;
}

@media screen and (max-width: 768px) {
	.plan-image {
		background: url(../img/proposal-bg_sp.webp) no-repeat;
		background-size: 100%;
		height: 98vh;
		overflow: hidden;
	}
	.plan-image .img.img01 {
		width: 300px;
		top: 30px;
		left: auto;
		right: 0;
	}
	.plan-image .img.img02 {
		width: 190px;
		top: 233px;
		right: auto;
		left: 0;
	}
	.plan-image .img.img03 {
		width: 145px;
		bottom: 258px;
		left: auto;
		right: 20px;
	}
	.plan-image .img.img04 {
		width: 320px;
		bottom: 35px;
		right: auto;
		left: 50%;
		transform: translate(-50%, 0);
	}

}


/* ----------------------------------------------------
 reservation
---------------------------------------------------- */
.reservation {
	background: #EDEBEB;
	padding: 140px 0 104px;
}

.reservation h2 {
	text-align: center;
	font-family: var(--cormorantgaramond);
	font-size: min(6rem, 4.392vw);
	font-weight: 400;
	letter-spacing: 3.6px;
}

.reservation ul {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 20px;
	margin-left: 50px;
}

.reservation ul li.border {
	background: #000;
	width: 1px;
	height: 164px;
	margin: 0 80px;
}

.reservation ul li p {
	margin-bottom: 0;
}

.reservation ul li p:nth-of-type(1) {
	font-size: min(2.2rem, 1.611vw);
	font-weight: 700;
	line-height: 55px;
}

.reservation ul li p:nth-of-type(2) {
	font-size: min(3.3rem, 2.416vw);
	font-weight: 700;
	line-height: 55px;
}

.reservation ul li p:nth-of-type(2) a {
	font-size: min(4.3rem, 3.148vw);
	font-weight: 400;
	letter-spacing: 1.72px;
}

.reservation ul li p:nth-of-type(2) span {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 0;
}

.reservation ul li p:nth-of-type(3) {
	text-align: center;
	font-family: var(--notosanJP);
	font-size: min(1.5rem, 1.098vw);
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.reservation {
		padding: 70px 0 50px;
	}
	.reservation h2 {
		font-size: min(4rem, 10.667vw);
		letter-spacing: 2.4px;
	}
	.reservation ul {
		display: block;
		margin-left: 0;
	}
	.reservation ul li:nth-of-type(1) {
		margin-bottom: 30px;
	}
	.reservation ul li.border {
		display: none;
	}
	.reservation ul li p:nth-of-type(1) {
		font-size: min(1.8rem, 4.8vw);
	}
	.reservation ul li p:nth-of-type(2) {
		font-size: min(2.1rem, 5.6vw);
		font-weight: 400;
	}
	.reservation ul li p:nth-of-type(2) a {
		font-size: min(3.1rem, 8.267vw);
		letter-spacing: 1.24px;
	}
	.reservation ul li p:nth-of-type(2) span {
		display: block;
		font-size: min(1.6rem, 4.267vw);
		line-height: 30px;
		margin-top: -10px;
	}
	.reservation ul li p:nth-of-type(3) {
		font-size: min(1.5rem, 4vw);
	}
}


/* ----------------------------------------------------
 banner
---------------------------------------------------- */
.banner {
	padding: 147px 0 124px;
}

.banner a {
	display: block;
	max-width: 679px;
	width: 49.4%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.banner {
		padding: 64px 0;
	}
	.banner a {
		max-width: 100%;
		width: 320px;
	}
}


/* ----------------------------------------------------
 footer
---------------------------------------------------- */
footer {
	background: #333131;
	padding: 84px 0 61px;
	color: #fff;
}

footer .informationb .logo {
	width: 204px;
	margin: 0 auto;
}

footer .informationb .area-btn {
	display: flex;
	justify-content: center;
	margin-top: 83px;
}

footer .informationb .area-btn a {
	margin: 0 45px;
}

footer .informationb .area-info {
	margin-top: 94px;
}

footer .informationb .area-info p:nth-of-type(1) {
	text-align: center;
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
}

footer .informationb .area-info p:nth-of-type(2) {
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.8px;
}

footer .informationb .area-info .sns {
	display: flex;
	justify-content: center;
	margin-top: 26px;
}

footer .informationb .area-info .sns a {
	display: block;
	width: 45px;
	margin: 0 17px;
}

footer .area-note {
	max-width: 1000px;
	margin: 109px auto 0;
}

footer .area-note .note {
	padding-left: 1em;
	text-indent: -1em;
}

footer .link-hotel {
	margin-top: 60px;
	text-align: center;
	display: flex;
	justify-content: center;
}

footer .link-hotel a {
	display: block;
	color: #fff;
	text-align: center;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 600;
}

footer .link-hotel a::before {
	content: '｜';
	margin: 0 20px;
}

footer .link-hotel a:first-child:before {
	margin: 0 6px;
}


footer .link-hotel a:last-child::after {
	content: '｜';
	margin: 0 6px;
}

footer .copy {
	text-align: center;
	font-family: var(--notosanJP);
	font-size: min(1rem, 0.732vw);
	font-weight: 400;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 64px 0 27px;
	}
	footer .informationb .logo {
		width: 145px;
	}
	footer .informationb .area-btn {
		display: block;
		margin-top: 47px;
	}
	footer .informationb .area-btn a {
		margin: 0 auto;
	}
	footer .informationb .area-btn a:nth-of-type(1) {
		margin-bottom: 20px;
	}
	footer .informationb .area-info {
		margin-top: 64px;
	}
	footer .informationb .area-info p:nth-of-type(1) {
		font-size: min(1.8rem, 4.8vw);
	}
	footer .informationb .area-info p:nth-of-type(2) {
		font-size: min(1.6rem, 4.267vw);
	}
	footer .area-note {
		margin: 43px 20px 0;
	}
	footer .link-hotel {
		margin-top: 30px;
		display: block;
	}
	footer .link-hotel a {
		font-size: min(1.6rem, 4.267vw);
	}
	footer .link-hotel a::before {
		content: '｜';
		margin: 0 6px;
	}
	footer .link-hotel a:first-child {
		margin-bottom: 10px;
	}
	footer .link-hotel a:first-child::after {
		content: '｜';
		margin: 0 6px;
	}
	footer .copy {
		font-size: min(1rem, 2.667vw);
	}
}