@charset "UTF-8";

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

#title
{
	position:sticky;
	top: 0;
}

#title > figure
{
	left: 1rem;
	position:absolute;
	width: calc(100% - 2rem);
	height: 100%;
	overflow:hidden;
}

#title > figure img
{
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position: 50% 50%;
}

#title .cover
{
	position: absolute;
	top: 0;
	left: 1rem;
	background-image: radial-gradient(rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 0), radial-gradient(rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 0);
	background-position: 0 0, 2px 2px;
	background-size: 4px 4px;
	background-attachment: fixed;
	width: calc(100% - 2rem);
	height: 100%;
}

#title .sec_title
{
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	height: 100%;
	
	color:white;
	text-shadow: 0 0 10px rgb(0,0,0);
}

#title .sec_title h1
{
	font-size: clamp(1.2rem, 4vw, 3rem);
}

#title .head,
#title .season,
#title .date
{
	font-family: 'FS-R';
	margin-bottom: .75rem;
}

#title .head
{
	border-bottom: 1px solid;
}


/**********************************************************/
/*********************** Description ***********************/
/**********************************************************/

#desc
{
	background-color: white;
	padding: max(5vw, 5rem) 2rem max(5vw, 5rem);
}

#desc > div
{
	max-width: max(50vw, 650px);
	margin: 0 auto;
}

/**********************************************************/
/************************** Plan ***************************/
/**********************************************************/

#content
{
	padding-bottom: max(2vw, 2rem);
}

#content .title
{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}

#content .title .date
{
	width: 3em;
	height: 3em;
	margin-right: 2em;
	
	font-family: serif, "LB-R";
	font-weight: 400;
	font-size: clamp(1.2rem, 3vw, 2rem);
}

#content .title .date > span
{
	position:absolute;
	line-height: .65;
}

#content .title .date > span:nth-of-type(1)
{
	top: 0;
	left: 0;
}

#content .title .date > span:nth-of-type(2)
{
	bottom: 0;
	right: -.3em;
	font-size: 3em;
}

#content .title .date:after
{
	content:"";
	display:block;
	position: absolute;
	left: 10%;
	bottom: 0;
	width: 1px;
	height: calc(100% * 1.41);
	background-color: black;
	transform-origin: bottom left;
	transform: rotate(40deg);
}

#content .title > div
{
	transform:translateY(clamp(.6rem, 1.75vw, 1rem));
}

#content .title h2
{
	font-size: clamp(1.2rem, 5vw, 2rem);
}

#content .contents
{
	padding-left: clamp(6rem, 15vw, 10rem);
	margin-top: clamp(1.2rem, 3vw, 2rem);
}

#content .contents:before
{
	content:"";
	display:block;
	position:absolute;
	top: 0;
	left: calc(clamp(3rem, calc(15vw / 2), 3rem) - 2px);
	height: 0%;
	width: 4px;
	background-color: rgb(240, 240, 240);
	
	transition: all .5s ease;
	transition-delay: .5s;
}

#content .end .contents:before
{
	height: 100%;
}

#content .day + .day
{
	margin-top: clamp(3rem, 5vw, 5rem);
}

.desc_youtube
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.desc_youtube .desc
{
	flex-shrink: 1;
	width: calc(100% - 250px - 2rem);
}

.youtube
{
	flex-shrink: 0;
	cursor: pointer;
	width: 250px;
	display: block;
	aspect-ratio: 5 / 2.5;
	overflow:hidden;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 1);
}

.youtube figure
{
	width: 100%;
	height: 100%;
	filter:alpha(opacity=80);
	-moz-opacity: .8;
	opacity: .8;
	
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
body:not(.touch) .youtube:hover figure
{
	filter:alpha(opacity=50);
	-moz-opacity: .5;
	opacity: .5;
}

.youtube img
{
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position: 50% 50%;
}

.youtube:before,
.youtube:after
{
	content:"";
	display:block;
	position: absolute;
	pointer-events: none;
}

.youtube:before
{
	width: 2rem;
	height: 2rem;
	background-color: rgba(255, 255, 255, .8);
	top:calc(50% - 1rem);
	left: calc(50% - 1rem);
	border-radius: 50%;
	z-index: 10;
}
.youtube:after
{
	width: 0;
	height: 0;
	top:calc(50% - .3rem);
	left: calc(50% - .2rem);
	border-style: solid;
	border-width: .3rem 0 .3rem .5rem;
	border-color: transparent transparent transparent rgb(0, 0, 0);
	z-index: 11;
}

.modal-vdo-body
{
	width: calc(100% - 4rem);
/*	width: 100%;*/
	height: auto;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
}

.modal-vdo-body iframe
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.cassette_wrapper
{
	margin-top: clamp(1.2rem, 3vw, 2rem);
}

.cassette_wrapper .cassette
{
	cursor:pointer;
}

.cassete_inner
{
	display: none;
}

#modalWindow.cassette_single
{
	padding-left: 0;
	padding-right: 0;
}

#modalWindow.cassette_single nav span
{
	cursor: pointer;
}

#google_mymap
{
	margin-top: clamp(3rem, 5vw, 5rem);
	width: 100%;
	padding: 2rem;
}

#google_mymap > iframe
{
	width: 100%;
	border-width: 0;
	aspect-ratio: 2 / 1;
}

/**********************************************************/
/********************** Model Plan *************************/
/**********************************************************/

#model_plan
{
	padding-top: 0;
	padding-bottom: max(10vw, 10rem);
}

/*#model_plan .model_plan figure
{
	height: clamp(200px, 40vw, 50vh);
}*/


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

@media screen and (orientation: portrait)
{
	.modal-vdo-body
	{
		width: 100%;
	}
}

@media screen and (max-width: 800px)
{
	#content .title
	{
		flex-direction: column;
		align-items: flex-start;
	}
	.desc_youtube
	{
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.desc_youtube .desc
	{
		width: 100%;
		margin-top: 2em;
	}
	#content .contents
	{
		padding-left: 2rem;
	}
	#content .contents:before
	{
		left: 0;
	}
}