@charset "UTF-8";

/*root関数-------------------------------------*/
:root {
	/* root関数：color */
	--color-main1: #A60E1B;
	--color-main1-L: #C90011;
	--color-main1-D: #8C1118;
	--color-main2: #F0F095;
	--color-main2-L: #FAFAD2;
	--color-main2-D: #BD8C41;
	--color-main3: #AC9458;
	--color-main4: #1C1C1C;
	--color-dark: #000;
	--color-light: #fff;
	--color-link: #dede03;
	--color-ssp: #847F4F;


	/* root関数：gradident */
	--grad-rd: linear-gradient(175deg, #50060A 30%, #a60e1b 80%);
	--grad-bk: linear-gradient(175deg, #000000 20%, #282828 80%);
	--grad-gold: linear-gradient(135deg, #F0F095 20%, #AC9458 80%);
	--grad-light: linear-gradient(0deg, #ffffff, #fafad2 30% 70%, #ffffff);

	/* root関数：fonts */
	--font-main: "Shippori Mincho", serif;
	--font-notes: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
	--font-gothic: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
	--font-en: "Cinzel Decorative", serif;

}


/*共通要素*/
body {
	font-family: var(--font-main);
	font-weight: 500;
	font-style: normal;
	line-height: inherit;
	color: var(--color-light);
	font-size: clamp(1.6rem, 1.530rem + 0.3vw, 1.8rem);
	background: var(--color-dark);
}

/*Loading ここから*/
/* Loading Block */
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: var(--color-dark);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	display: grid;
	place-content: center;
	place-items: center;
}

/* Hide Loading Block  */
.loaded {
	opacity: 0;
	visibility: hidden;
}

/* loading anime  クラスはloaderで*/
.loader {
	width: 40px;
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(farthest-side, #8C1118 94%, #0000),
		radial-gradient(farthest-side, #C90011 94%, #0000),
		#C90011;
	background-position: center;
	background-repeat: no-repeat;
	animation: l4 1.5s infinite;
}

@keyframes l4 {
	0% {
		background-size: 0 0, 0 0
	}

	30%,
	50% {
		background-size: 0 0, 120% 120%
	}

	80%,
	100% {
		background-size: 120% 120%, 120% 120%
	}
}

/*Loading ここまで*/


#container {
	margin-inline: auto;
}

.fc-key1 {
	color: var(--color-main1);
}

.fc-key2 {
	color: var(--color-main2);
}

.fc-key3 {
	color: var(--color-main3);
}

.fc-key4 {
	color: var(--color-main4);
}


.fc-hanten {
	color: var(--color-dark);
}

.fc-hanten2 {
	color: var(--color-light);
}


.ff-en {
	font-family: var(--font-en);
}

a {
	color: var(--color-link);
	text-decoration: underline;
	transition: .5s;
}

a:hover {
	color: var(--color-link);
	text-decoration: none;
	/* opacity: .7; */
}

a:hover img {
	box-shadow: none;
	filter: none;

}

.notes {
	text-align: justify;
	font-family: var(--font-notes);
	width: fit-content;
	padding: 0;
	margin: clamp(20px, 12.958px + 1.878vw, 40px) auto 0;
	max-width: 800px;

}


ul.notes li {
	font-size: clamp(1.2rem, 1.130rem + 0.3vw, 1.4rem);
	font-weight: normal;
	margin: 0.5em auto 0 auto;
	margin-left: 1em;
	text-indent: -1em;
	line-height: 1.6;
	text-align: justify;
}


#page-top img {
	position: fixed;
	width: 45px;
	bottom: 20px;
	right: 10px;
	z-index: 99999;
	transition: .3s;
	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
}

@media (min-width:768px) {
	#page-top img {
		width: 55px;
		bottom: 40px;
		right: 20px;
	}
}

#page-top a img:hover {
	transform: scale(1.1);
}

.img-box-shadow {
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
	margin-bottom: 8px;
}

.img-filter-shadow {
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
}


.txt-shadow {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
	;
}

.img-radius {
	border-radius: clamp(12px, 7.775px + 1.127vw, 24px);
}

.wide-fit {
	width: fit-content;
}

.wide-max250,
.wide-max300,
.wide-max400,
.wide-max500,
.wide-max600,
.wide-max700,
.wide-max800,
.wide-max900,
.wide-max1000 {
	margin-inline: auto;
}

.wide-max250 {
	max-width: 250px;
}

.wide-max300 {
	max-width: 300px;
}

.wide-max400 {
	max-width: 400px;
}

.wide-max500 {
	max-width: 500px;
}

.wide-max600 {
	max-width: 600px;
}

.wide-max700 {
	max-width: 700px;
}

.wide-max800 {
	max-width: 800px;
}

.wide-max900 {
	max-width: 900px;
}

.wide-max1000 {
	max-width: 1000px;
}


/*入会関連-------------------------------------*/
.nyukai {
	background: var(--color-light);
	border: 2px solid var(--color-ssp);
	padding: 1.5em;
	font-family: var(--font-main);
	margin: 0 auto 1em;
	color: var(--color-dark);
}

@media (min-width:768px) {
	.nyukai {
		max-width: 800px;
		padding: 2em;

	}
}

.btn-nyukai a {
	display: block;
	font-family: var(--font-main);
	font-size: 1.6rem;
	text-align: center;
	text-decoration: none;
	width: 60vw;
	max-width: 280px;
	margin: 0 auto;
	padding: 1em 0;
	background: var(--color-ssp);
	color: var(--color-light);
	border-radius: 100vmax;
	transition: 0.5s;
}


.btn-nyukai a:hover {
	outline-offset: 0px;
	transform: scale(1.1);
}


/* 共通アイテム紹介-------------------------------------*/
.img-border-gold {
	border: clamp(3px, 2.296px + 0.188vw, 5px) solid transparent;
	border-image: var(--grad-gold);
	border-image-slice: 1;
}

.item-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
	justify-content: center;
	margin: 2em auto;
}

@media (min-width:768px) {
	.item-wrapper {
		max-width: 800px;
		gap: 40px;

	}
}

.item-inner img {
	margin: 0 0 .5em;
	max-width: 600px;
}


.item-name {
	font-size: clamp(1.8rem, 1.730rem + 0.3vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
	margin: .5em;
}

.item-price {
	font-size: clamp(1.6rem, 1.459rem + 0.601vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
}

.item-size,
.item-material,
.item-notes {
	font-family: var(--font-gothic);
	font-size: clamp(1.2rem, 1.130rem + 0.3vw, 1.4rem);
	font-weight: 400;
	line-height: 1.2;
	margin-top: .5em;
}

.item-size::before {
	content: "［サイズ］";
	margin-right: .5em;
}

.item-material:before {
	content: "［素材］";
	margin-right: .5em;
}


.item-ingredients {
	font-family: var(--font-gothic);
	font-size: clamp(1.2rem, 1.130rem + 0.3vw, 1.4rem);
	font-weight: 400;
	line-height: 1.2;
	word-break: normal;
	overflow-wrap: normal;
}

.item-ingredients span{
white-space: nowrap;
}

.item-ingredients::before {
	content: "〈使用材料〉";
	display: block;
	margin: 1em 0 .5em;
}




/* KV-------------------------------------*/
.img-kv {
	margin: 0 auto;
	width: 100vw;
}

.img-kv img {
	object-fit: contain;
}


/*sec共通-------------------------------------*/
.sec-container {
	margin: 0 auto;
	max-width: 1000px;
	padding: clamp(40px, 3vw, 60px) clamp(15px, 6vw, 80px);
	text-align: center;
}

/*sec-kv------------------------------------*/
#sec-kv {
	background: var(--color-main1);
}


/*sec-intro------------------------------------*/
#sec-intro {
	background: url(../img/deco_line1.webp);
	background-color: var(--color-dark);
	background-repeat: repeat-x;
	background-position: top center;
	background-size: 42px 18px;
}

@media (min-width:768px) {
	#sec-intro {
		background-size: 60px 26px;
	}
}

#sec-intro .sec-container {
	margin: 0 auto;
	max-width: 1000px;
	padding: 18px 15px 40px;
	text-align: center;
}

@media (min-width:768px) {
	#sec-intro .sec-container {
		padding: 26px 30px 80px;
	}
}

.txt_period{
	font-size: clamp(2.2rem, 1.707rem + 2.103vw, 3.6rem);
	font-weight: 800;
	line-height: 1.2;
	margin: 1.5em auto;
}


/*sec-room-------------------------------------*/
#sec-room {
	background: url(../img/pattern_red.webp), var(--color-main1);
	background-repeat: repeat, repeat;
	background-size: clamp(60px, 52.958px + 1.878vw, 80px), contain;
}

#sec-room .sec-container {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 20px 40px;
}

@media (min-width:768px) {
	#sec-room .sec-container {
		padding: 0 20px 80px;
	}
}

.ttl-rd {
	background: url(../img/deco_line1.webp), var(--grad-rd);
	background-repeat: repeat-x, repeat-x;
	background-size: 42px 18px, contain;
	color: var(--color-main2);
	text-align: center;
	padding: clamp(45px, 29.155px + 4.225vw, 90px) 0 clamp(15px, 9.718px + 1.408vw, 30px);
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.8));
}

.ttl-bk {
	background: url(../img/deco_line1.webp), var(--grad-bk);
	background-repeat: repeat-x, repeat-x;
	background-size: 42px 18px, contain;
	color: var(--color-main1-L);
	text-align: center;
	padding: clamp(45px, 29.155px + 4.225vw, 90px) 0 clamp(15px, 9.718px + 1.408vw, 30px);
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.8));
}

@media (min-width:768px) {

	.ttl-rd,
	.ttl-bk {
		background-size: 60px 26px, contain;
	}
}

.ttl-rd h3,
.ttl-bk h3 {
	font-family: var(--font-en);
	font-size: clamp(3rem, 1.944rem + 4.507vw, 6rem);
	font-weight: 700;
	line-height: 1.1;
	text-transform: capitalize;
}

.ttl-rd h2,
.ttl-bk h2 {
font-size: clamp(1.6rem, 1.318rem + 1.202vw, 2.4rem);
	font-weight: 700;
	margin: .5em auto 1em;
}

.ttl_main {
	margin: 30px calc(50% - 50vw) 20px;
}

@media (min-width:640px) {
	.ttl_main {
		max-width: 1000px;
		margin: 80px auto 40px;
	}
}

.txt_price {
	background: var(--color-dark);
	padding: .1em 1em;
	color: var(--color-main2);
	font-size: clamp(1.8rem, 1.589rem + 0.901vw, 2.4rem);
	max-width: 800px;
	margin: 1em auto;
}


.btn-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 20px;
	margin: 1em auto;
}

@media (min-width:640px) {
	.btn-wrapper {
		gap: 40px;
		grid-template-columns: repeat(2, 1fr);
		margin: 2em auto;
		width: fit-content;
	}
}

.btn-wrapper img {
	max-width: 80vw;
}

@media (min-width:768px) {
	.btn-wrapper img {
		max-width: 360px;
	}
}

.btn-wrapper a img {
	filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
	transition: .2s ease;
}

.btn-wrapper a:hover img {
	filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.4));
	transform: scale(1) translate(2px, 2px);
}

.btns {
	display: grid;
}

.value_class {
	font-weight: 700;
	font-size: clamp(1.6rem, 1.459rem + 0.601vw, 2rem);
}

.value_price {
	color: var(--color-main2);
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(2.4rem, 1.977rem + 1.803vw, 3.6rem);
	text-transform: uppercase;
}


.amenity-wrapper {
	background: rgba(255, 255, 255, 0.7);
	padding: clamp(30px, 19.437px + 2.817vw, 60px) clamp(15px, 6.197px + 2.347vw, 40px);
	margin: clamp(30px, 3vw, 60px) auto;
	max-width: 800px;
	display: grid;
	gap: clamp(40px, 25.915px + 3.756vw, 80px);
	grid-template-columns: repeat(1, 1fr);
	justify-content: center;
	color: var(--color-dark);
	border-radius: clamp(12px, 5.662px + 1.69vw, 30px);
}

@media (min-width:768px) {
	.amenity-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: space-between;

	}
}

#sec-drink {
	background: url(../img/pattern_wh.webp), var(--color-dark);
	background-repeat: repeat, repeat;
	background-size: clamp(80px, 65.915px + 3.756vw, 120px), contain;
}

#sec-drink .sec-container {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 20px 40px;
	text-align: center;
}

@media (min-width:768px) {
	#sec-drink .sec-container {
		padding: 0 20px 80px;
	}
}

.drink-notice {
	padding: 1em;
	border: 1px solid var(--color-light);
	max-width: 700px;
	margin: 1.5em auto;
	width: fit-content;
	color: var(--color-main2);
}



/*版権表記-------------------------------------*/
#publisher {
	color: var(--color-dark);
	padding: 2em 0 1em;
	background: var(--grad-light);
}

#publisher img {
	width: 70vw;
	max-width: 500px;
}


.publisher-site {
	margin: 2em 0;
}

.publisher-site a {
	color: var(--color-dark);
	font-size: clamp(1.4rem, 1.259rem + 0.601vw, 1.8rem);
	text-decoration: underline;
}

.publisher-name {
	font-family: var(--font-gothic);
	font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
}

/*footer-------------------------------------*/
footer {
	font-family: var(--font-main);
	color: var(--color-light);
	padding: 2em 1em;
	margin: 0 auto;
	text-align: center;
	background: var(--color-ssp);
	/* border-top: 1px solid var(--color-light); */
}

.hotel-name {
	text-align: center;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.4;
}

@media (min-width:768px) {
	.hotel-name {
		font-size: 2.2rem;
	}
}

.sns-nameE {
	text-align: center;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.4;
}

@media (min-width:768px) {
	.sns-nameE {
		font-size: 3rem;
	}
}

.sns-nameJ {
	text-align: center;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.4;
}

@media (min-width:768px) {
	.sns-nameJ {
		font-size: 2.2rem;
	}
}

.sns-ico-set {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin: 20px auto 30px auto;
}


.sns-ico-set>li>span {
	color: var(--color-light);
	display: block;
	font-family: var(--font-gothic);
	line-height: 1.2;
	/* font-weight: 400; */
	font-size: clamp(1.1rem, 1.065rem + 0.15vw, 1.2rem);
	margin-top: .5em;
}

@media (min-width:768px) {
	.sns-ico-set {
		gap: 30px;
	}
}

.sns-ico-set img {
	width: calc(100vw / 10);
	max-width: 40px;
	height: auto;
}

@media (min-width:768px) {
	.sns-ico-set img {
		width: 50px;
	}
}

.notes-foot {
	font-size: 1.3rem;
	line-height: 1.6;
	margin: 0 auto;
	width: fit-content;
}

@media (min-width:768px) {
	.notes-foot {
		font-size: 1.4rem;
		max-width: 800px;
		text-align: center;
	}
}

.hotel-links {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 20px 0 20px 0;
}

@media (min-width:768px) {
	.hotel-links {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
}

.hotel-links a {
	display: inline-block;
	padding: 0 1em;
	color: var(--color-light);
	text-decoration: none;
	transition: .3s ease-in-out;
	margin: 5px 0;
}

@media (min-width:768px) {
	.hotel-links a:first-of-type {
		margin: 0;
		border-left: 1px solid var(--color-light);
		border-right: 1px solid var(--color-light);
	}
}

.hotel-links a:hover {
	color: var(--color-main6);
}

.copyright {
	text-align: center;
	font-size: 1.2rem;
}

@media (min-width:768px) {
	.copyright {
		font-size: 1.4rem;
	}
}