@charset "UTF-8";

/*root関数-------------------------------------*/
:root {
	/* root関数：color */
	--color-main1: #EE546B;
	--color-main2: #FFDBE1;
	--color-main3: #E90023;
	--color-dark: #4F2614;
	--color-light: #fbf9f0;
	--color-link: #FFCC00;
	--color-ssp: #847F4F;
	--color-blk: #151515;



	/* root関数：fonts */
	--font-main: "Local Noto Sans JP","Noto Sans JP", sans-serif;
	--font-deco: "Kaisei Decol", 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: "Charm", cursive;
}


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

/*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,#EE546B 94%,#0000),
    radial-gradient(farthest-side,#FFDBE1 94%,#0000),
    #EE546B;
  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-hanten {
	color: var(--color-light);
}

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

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

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

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

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

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

}

.notes {
	text-align: justify;
	font-family: var(--font-notes);
	width: 100%;
	padding: 0;
	margin: 0 auto;
}


@media (min-width:834px) {
	.notes {
		box-sizing: initial;
		/*padding分を初期化*/
		margin: 30px auto 0 auto;
		max-width: 700px;
	}
}

ul.notes li{
	font-size: 1.4rem;
	font-weight: 400;
	margin: 0.5em auto 0 auto;
	margin-left: 1em;
	text-indent: -1em;
	line-height: 1.6;
	text-align: justify;
}

@media (min-width:834px) {

	ul.notes li {
		font-size: 1.4rem;
	}
}

#page-top img {
	position: fixed;
	width: 45px;
	bottom: 20px;
	right: 10px;
	z-index: 99999;
	transition: .3s;
}

@media (min-width:834px) {
	#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.4);
	margin-bottom: 8px;
}

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

.img-radius {
	border-radius: clamp(20px, 12.958px + 1.878vw, 40px);
}

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

.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;
	margin: 40px auto 0 auto;
	font-family: var(--font-main);
	margin: 2em auto;
	color: var(--color-blk);
}

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

	}
}

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

@media (min-width:834px){
	.btn-nyukai a {
		max-width: 320px;
		padding: 1.2em 0;
	}
}

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

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

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



/*sec共通-------------------------------------*/
.sec-container {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 15px;
	text-align: center;
}
@media (min-width:834px){
	.sec-container {
		padding: 0;
	}
	
}

/*sec01/#sec02-------------------------------------*/
#sec01,#sec02 {
	background: url(../img/pattern_stripe.webp);
}
#sec02 {
padding-bottom: 1.5em;
}
@media (min-width:834px){
	#sec02 {
		padding-bottom: 3em;

}
}
#sec03{
	background: url(../img/pattern_choco.webp);
	background-size: 15%;
	margin: 0;
	padding: 0 0 1em 0;
}
@media (min-width:834px){
	#sec03{
			background-size: auto;
	padding: 0 0 2em 0;

	}
}

.colabo-logo{
	margin: 0 calc(50% - 50vw);
	background: var(--color-main2);
	padding: 2em 0;
}

.colabo-logo img{
	width: 70vw;
	max-width: 900px;
}

@media (min-width:834px){
	.colabo-logo{
	padding: 4em 0;
}
}

.txt-date{
	font-size: clamp(2rem, 1.667rem + 1.481vw, 3rem);
	color: var(--color-main3);
	font-weight: 700;
	padding: 1.5em 0;
	font-family: var(--font-deco);
}
@media (min-width:834px){

.txt-date{
		padding: 2em 0;
}
}

.txt-date span{
font-size: 140%;	
}

.txt-intro{
	font-size: clamp(2rem, 1.437rem + 2.404vw, 3.6rem);
	font-family: var(--font-deco);
	color: var(--color-main3);
	font-weight: 700;
}




.point-deco img{
    /* display: block; */
    width: 120px;
    height: auto;
		margin: .5em auto;
}
@media (min-width:834px){
.point-deco img{
		    width: 160px;
	}
}

.cake-top{
	background: url(../img/shortcake_top.webp);
	background-repeat: repeat-x;
	background-size: contain;
	height: 80px;
	margin: 2em calc(50% - 50vw) 0;
}

@media (min-width:834px){
	.cake-top{
			background-size: contain;
		height: 160px;
			margin: 3em calc(50% - 50vw) 0;
	}
}
.cream-white{
		background: url(../img/cream_white.webp);
	background-repeat: repeat-x;
	background-size: contain;
	height: 85px;
	margin:0 calc(50% - 50vw) 2em;
}

@media (min-width:834px){
		.cream-white{
			background-size: contain;
		height: 170px;
			margin:0 calc(50% - 50vw) 3em;

	}
}

.cream-choco{
		background: url(../img/cream_choco.webp);
	background-repeat: repeat-x;
	background-size: contain;
	height: 85px;
	margin:0 calc(50% - 50vw) 2em;
}

@media (min-width:834px){
		.cream-choco{
			background-size: contain;
		height: 170px;
			margin:0 calc(50% - 50vw) 3em;

	}
}

.ttl-main{
	margin-inline: auto;

}


.ttl-main img{
	/* width: 80vw; */
	max-height: 480px;
	object-fit: contain;
	margin-bottom: 2em;
}

.txt-price{
	font-family:var(--font-deco);
	font-size: clamp(2.6rem, 2.177rem + 1.803vw, 3.8rem);
	font-weight: 700;
	color: var(--color-main1);
	margin-bottom: 1em;
}

.wrapper-entry-btn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	margin-block: 1.5em;
}
.wrapper-entry-btn img{
	width: 80vw;
	max-width: 380px;
}

@media (min-width:834px){
	.wrapper-entry-btn{
		flex-direction: row;
			gap: 30px;
			margin-block: 4em;

	}
}

.wrapper-amenity{
	background: var(--color-light);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
	border-radius: 20px;
	border: 3px solid var(--color-main1);
	margin: 2em auto;
	padding: 2em 1em;
}
@media (min-width:640px){
	.wrapper-amenity{
			padding: 3em;
	}

}

.wrapper-amenity h3{
	font-size: clamp(1.6rem, 1.107rem + 2.103vw, 3rem);
	color: var(--color-main1);
	font-weight: 500;
	font-family: var(--font-deco);
}
.wrapper-amenity h4{
font-size: clamp(3.8rem, 2.673rem + 4.808vw, 7rem);
	color: var(--color-main1);
	font-weight: 700;
	font-family: var(--font-en);
}
.wrapper-amenity h4 span{
 text-transform: inherit;
}


.inner-amenity{
	display: grid;
	gap: 40px;
		grid-template-columns: repeat(1, 1fr);
	margin: 2em 0;
}
@media (min-width:640px){
	.inner-amenity{
	grid-template-columns: repeat(2, 1fr);
}
}

.inner-amenity-solo{
	display: grid;
	gap: 40px;
			grid-template-columns: repeat(1, 1fr);

	margin: 2em 0;
}


.inner-amenity img{
	max-height: 300px;
	object-fit: contain;
}
.inner-amenity-solo img{
	max-height: 400px;
	object-fit: contain;
}


.inner-items{
	display: grid;
grid-template-rows: subgrid;
gap: 5px;
grid-row: span 3;
}

.item-name {
	font-size: clamp(2rem, 1.930rem + 0.3vw, 2.2rem);
	font-weight: 700;
	line-height: 1.2;
	font-family: var(--font-deco);
}

.item-price {
	font-size: clamp(1.8rem, 1.730rem + 0.3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
}

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

.item-size::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;
}
.item-ingredients::before {
	content: "〈使用材料〉";
	display: block;
	margin-bottom: .5em;
}

.menu-photo img{
	border: 8px solid var(--color-light);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
	max-width: 700px;
}
@media (min-width:834px){
	.menu-photo img{
	border: 12px solid var(--color-light);
}
}



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

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


.publisher-site {
	font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
	margin: 2em 0;
}

.publisher-site a {
	color: var(--color-dark);
	text-decoration: underline;

}


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




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

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

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

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

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

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

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

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


.sns-ico-set>li>span {
	color: var(--color-dark);
	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:834px) {
	.sns-ico-set {
		gap: 30px;
	}
}

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

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

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

@media (min-width:834px) {
	.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:834px) {
	.hotel-links {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
}

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

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

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

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

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


