@charset "UTF-8";

/*//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////// About /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/


/**********************************************************************/
/********************************* Title ********************************/
/**********************************************************************/


#title
{
	margin-top: clamp(3rem, 10vw, 5rem);
	padding: clamp(3rem, 10vw, 5rem) 0;
	background-color: rgba(255, 255, 255, 1);
	width: 100%;
}

#title h1
{
	transition-delay: .5s;
	display:flex;
	flex-direction:column;
	align-items: center;
	font-size: clamp(1.2rem, 5vw, 2.2rem);
	margin-bottom: 0em;
	margin-top: 0em;
}
#title h1> span:nth-of-type(1)
{
	font-size: max(.6em, .7rem);
	padding: 0 .5em .25em;
	margin-bottom: .25em;
	border-bottom: 1px solid rgb(100, 100, 100);
}

/**********************************************************************/
/***************************** Basic Info ******************************/
/**********************************************************************/

#basic_info
{
	padding: clamp(3rem, 5vw, 4rem) 0;
}

#basic_info h2
{
	margin-top: 0;
	text-align:center;
	padding-bottom: .5em;
	margin-bottom: 2em;
	border-bottom: 1px solid rgb(200, 200, 200);
}

#basic_info h3,
.wp-block-group h3
{
	margin-bottom: .5em;
}

.wp-block-group + .wp-block-group
{
	margin-top: max(2vw, 2rem);
}

.wp-block-group.moreinfo,
.moreinfo
{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: calc(650px + 4rem);
	margin: clamp(3rem, 5vw, 4rem) auto 0;
	padding: 2rem 1rem;
	background-color: rgba(255,255,255, .7);
}

/**********************************************************************/
/****************************** Contents *******************************/
/**********************************************************************/

#reservation
{
	background-color: rgb(255, 255, 255, .5);
	padding-bottom: clamp(3rem, 5vw, 4rem);
}

#reservation .reservation
{
	padding-top: clamp(3rem, 5vw, 4rem);
	padding-bottom: clamp(3rem, 5vw, 4rem);
}

#reservation .reservation + .reservation
{
	border-top: 1px solid rgb(200, 200, 200);
}

.reservation_title
{
	top: 0;
	padding: 2rem 0;
	position: sticky;
	width: 100%;
	z-index: 1;
	margin-bottom: 2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-image: url(../_img/bg.jpg);
}

.reservation_title h3,
.reservation_title .moreBt
{
	margin: 0 1rem;
}

.reservation .lead
{
	padding: clamp(2rem, 3vw, 3rem) 0;
}

.reservation .description
{
	padding-top: clamp(2rem, 3vw, 3rem) 0;
}

.reservation ul
{
	display: flex;
	flex-wrap: wrap;
}
.reservation li
{
	list-style: none;
	display: block;
	padding-left: 1em;
	padding-right: .5em;
}

.reservation li:before
{
	content:"";
	display: block;
	position:absolute;
	width: .5em;
	left: 0;
	top: .5em;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: rgb(200, 200, 200);
}

.slide_wrapper
{
	width: 100%;
}

.slideFadeContainer + .sumnailWrapper
{
	margin-top: 2rem;
}

.sumnailWrapper,
.sumnailWrapper > div
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.sumnailWrapper > div
{
	margin-left: -.5rem;
	width: calc(100% + 1rem);
}

.sumnailWrapper .sum
{
	width: calc( (100% - 6rem) / 6);
	aspect-ratio: 4 / 3;
	margin: .5rem;
	background-color: black;
	cursor:pointer;
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.sumnailWrapper .sum.gray > img,
body:not(.touch) .sumnailWrapper .sum:hover
{
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}

.sumnailWrapper .sum > img
{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position: 50% 50%;
}

.cap_wrapper_wrapper
{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.cap_wrapper
{
	display: flex;
	flex-wrap: nowrap;
}

.cap_wrapper .cap_text
{
	width: 100%;
	padding: 1rem 0 2rem;
	display:flex;
	justify-content: center;
}

.cap_text h4
{
	margin-bottom: .5em;
}

.cap_text div
{
	font-size: .9em;
	font-family: R-R, GG-R, sans-serif;
	color: rgb(75, 75, 75);
}


/*//////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN ////////////////////////////////
//////////////////////////////////////////////////////////////////////////////*/


@media screen and (max-width: 600px)
{
	.sumnailWrapper .sum
	{
		aspect-ratio: 1 / 1;
	}
}