@charset "UTF-8";


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

#title .sec_title
{
	display: flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

#title._a h1
{
	margin: 1rem;
	font-size: clamp(1.7rem, 5vw, 2.2rem)
}

#tile .tile_wrapper .text
{
	font-size: clamp(1em, 1.5vw, 1.2em);
	width: 100%;
}

#title .desc
{
	font-family: "Zen", serif;
	font-size: clamp(1em, 1.5vw, 1.2em);
	text-align: center;
	line-height: 2;
	margin: 1em auto;
	
	max-width: 650px;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#title .desc p
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#jump_menu
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: clamp(1rem, 3vw, 2rem);
}

#jump_menu .jump
{
	width: clamp(3rem, 20vw, 8rem);
	aspect-ratio: 1 / 1;
	margin: .5rem;
	border-radius: 50%;
	overflow:hidden;
	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;
}

#jump_menu .jump .num
{
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: rgb(255, 255, 255);
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	line-height: 1.1;
	font-size: clamp(2rem, 10vw, 5rem);
}
/*#jump_menu .jump .num span:nth-of-type(1)
{
	font-size: .2em;
}*/

#jump_menu .jump figure
{
	position: absolute;
	width: 100%;
	height: 100%;
}

#jump_menu .jump figure:after
{
	content:"";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .1);
	mix-blend-mode: multiply;
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

#jump_menu .jump:hover figure:after
{
	box-shadow: inset 0px 0px 25px rgba(0,0,0,.5);
}

#jump_menu .jump img
{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


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

#main > div
{
	padding: max(5rem, 5vw) 0 max(10rem, 10vw);
}

#main > div + div
{
	border-top: 1px solid rgb(200, 200, 200);
}

#main .head
{
	max-width: 650px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#main h2
{
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	margin-bottom: 1.5em;
	padding-bottom: .25em;
	border-bottom: 1px solid;
}

#main .desc
{
	font-family: "Zen", serif;
}

#main .link
{
	position:sticky;
	top: 1rem;
	max-width: 650px;
	margin: 1rem auto max(3rem, 3vw);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
}

#main figure
{
	width: 100%;
}

#main figure img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#main figure + figure
{
	margin-top: 1rem;
}

/**********************************************************************/
/***************************** Season Link *****************************/
/**********************************************************************/

#season
{
	width:100%;
	background-color: rgba(255, 255, 255, 1);
}

#season .tiles
{
	display: flex;
	align-items: flex-start;
	flex-wrap:wrap;
	width: 100%;
	max-width: 920px;
	padding: 0 2rem;
	margin: clamp(2rem, 5vw, 5rem) auto max(3rem, 5vw);
}

#season .season
{
	display: block;
	width:calc(100% / 3 - 2rem);
	margin: 1rem;
}

#season .season > div
{
	font-size: clamp(2rem, 5vw, 5rem);
	display: flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
	color:white;
	font-family: "Zen", serif;
	font-weight: 500;
	height: 100%;
	padding: 1em;
	line-height: .5;
}
#season .season > div span:nth-of-type(2)
{
	font-size: .5em;
	margin-top: 1em;
	text-transform: capitalize;
}

#season .season figure
{
	position:absolute;
	height: 100%;
	 width: 100%;
}

#season .season figure img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#season .season figure:after
{
	content:"";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .1);
	mix-blend-mode: multiply;
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

body:not(.touch) #season .season:hover figure:after
{
	box-shadow: inset 0px 0px 25px rgba(0,0,0,.5);
}

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

@media screen and (max-width: 650px)
{
	#main
	{
		flex-direction: column;
	}
	#main > .cate_date
	{
		position:relative;
		top: 0rem;
		flex-direction:row;
	}
	#main > .cate_date > span
	{
		display:block;
	}
	
	#title._a .sec_title
	{
		padding-top: 5rem;
	margin-left: 2rem;
	margin-right: 2rem;
		flex-direction:column;
	}
}

@media screen and (max-width: 600px)
{
	#season .season
	{
		width: calc(100% - 2rem);
	}
}