@charset "UTF-8";

#selector
{
	color: rgb(255, 255, 255);
}
.menu #selector
{
	color: rgb(0, 0, 0);
}

#selector .hamburger span
{
	background-color: rgb(255, 255, 255);
}

.hamburgerOpen #selector .hamburger span,
.menu #selector .hamburger span
{
	background-color: rgb(0, 0, 0);
}

#selector .logo
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	pointer-events: none;
}


/*//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////// TOP /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

#top_slide
{
	-webkit-transition: opacity .5s ease, -webkit-filter .5s ease;
	-moz-transition: opacity .5s ease, filter .5s ease;
	-ms-transition: opacity .5s ease, filter .5s ease;
	-o-transition: opacity .5s ease, filter .5s ease;
	transition: opacity .5s ease, filter .5s ease;
}

body.sc #top_slide
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

a#entBt
{
	position: absolute;
	display: block;
	cursor: pointer;
	bottom: 0rem;
	width: 4rem;
	height: 9rem;
	left: 0rem;
	background-color: rgba(255, 255, 255, 0);
	z-index: 1000;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

a#entBt:hover
{
	border-bottom-width: 0px;
}

body.sc a#entBt
{
	transform: translateY(-5rem);
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

a#entBt p
{
	font-family: R-R, GG-R, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: .75rem;
	color: rgba(255, 255, 255, 1);
	position: absolute;
	transform-origin: center left;
	transform: rotate(90deg);
	top: 0;
	left: 2rem;
}

a#entBt span
{
	position: absolute;
	bottom: 0rem;
	left: 50%;
	width: 1px;
	height: 5rem;
	border-left: 1px solid rgba(255, 255, 255, 1);
	box-sizing: border-box;
}

a#entBt span::before
{
	position: absolute;
	top: 0px;
	left: 50%;
	content: '';
	width: 6px;
	height: 2px;
	margin-left: -3px;
	background-color:  rgba(255, 255, 255, 1);
	-webkit-animation: sdb10 2s infinite;
	animation: sdb10 2s infinite;
}

@keyframes sdb10 {
	0% {
		transform: translate(0, 0rem);
		opacity: 0;
	}
	20% {
		transform: translate(0, 0rem);
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0, 5rem);
		opacity: 1;
	}
	100% {
		transform: translate(0, 5rem);
		opacity: 0;
	}
}

.top .slideFadeContainer
{
	background-color: white;
/*	position: fixed;*/
	top: 0;
	height: 100vh;
	z-index: 0;
}

.slideFadeContainer.start
{
	-webkit-filter: blur(0px);
	filter: blur(0px);
	opacity: 1;
	height: 100vh;
	
	-webkit-transition: opacity 1.0s ease, -webkit-filter 1.0s ease;
	-moz-transition: opacity 1.0s ease, filter 1.0s ease;
	-ms-transition: opacity 1.0s ease, filter 1.0s ease;
	-o-transition: opacity 1.0s ease, filter 1.0s ease;
	transition: opacity 1.0s ease, filter 1.0s ease;
}

.slideFadeContainer.stop
{
	height: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	opacity: 0;
}

#top_slide .cover
{
	pointer-events: none;
	position: absolute;
	top: 0;
	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: 100%;
	height: 100%;
}

#top_slide .imgSelector
{
	display: none;
}

#top_slide .logo
{
	pointer-events: none;
	position: absolute;
	display:flex;
	align-items:center;
	justify-content: center;
	top:0;
	width: 100%;
	height: 100%;
	
}

#top_slide .logo:after
{
	content:"";
	aspect-ratio:250 / 400;
	height: clamp(240px, 40vh, 20rem);
	background-size: cover;
	background-image: url(../_img/logo_wh.svg);
}

#top_slide
{
	position:sticky;
	top: 0;
	overflow:hidden;
}

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

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

#statement
{
	padding-bottom: max(5rem, 10vw);
	max-width: 920px;
	margin: 0 auto;
}

#statement h1
{
	font-size: clamp(1.7rem, 5vw, 2.5rem);
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	margin: 2em 0 1em;
}

#statement div.statement > div
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

#statement div.statement > div > div + div
{
	margin-top: 2em;
}

#statement div.statement p
{
	font-family: "Zen", serif;
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	line-height: 1.75;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	white-space: nowrap;
}

#statement div.statement p + p
{
	margin-top: .5em;
}

#statement div.statement a.moreBt
{
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	margin-top: 2em;
}

/**********************************************************************/
/******************************* Banner ********************************/
/**********************************************************************/

#banner
{
	margin-bottom: min(10vw, 10rem);
}

#banner > div
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

#banner > a.b,
#banner > figure
{
	background-color: rgb(0, 0, 0);
	display: block;
	line-height: 0;
	border: 1px solid rgb(230, 230, 230);
}

#banner a.b + a.b,
#banner figure + figure
{
	margin-top: 2rem;
}

#banner a.b > img
{
	width: 100%;
	max-width: 100%;
	height: auto;
	-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) #banner a.b:hover > img
{
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}

/**********************************************************************/
/******************************* Season *******************************/
/**********************************************************************/

#season
{
	display: flex;
	align-items: flex-start;
	flex-wrap:wrap;
	width: calc(100% + 2rem);
	padding: 0;
	margin: clamp(2rem, 5vw, 5rem) -1rem 0;
}

#season .season
{
	display: block;
	width:calc(50% - 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;
	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);
}


/**********************************************************************/
/******************************* Tile ********************************/
/**********************************************************************/

#tile,
#tile_s
{
	margin-bottom: min(5vw, 5rem);
}

#tile .tile_wrapper
{
	width: 100%;
}

#tile .tile + .tile
{
	margin-top: min(5vw, 5rem);
}

#tile .slide_wrapper
{
	width: 100%;
	max-height: 50vh;
	margin-bottom: min(2rem, 5vw);
	overflow: hidden;
}

#tile .slide_wrapper:after
{
	content:"";
	display:block;
	position: absolute;
	top: 0;
	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: 100%;
	height: 100%;
}

.tile_wrapper .tile
{
	padding: 0 2rem;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.tile_wrapper h3
{
	display:flex;
	flex-direction:column;
	align-items: center;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: .5em;
	margin-top: 1em;
}
.tile_wrapper h3> 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);
}

#tile .slide_wrapper h3
{
	font-size: clamp(1.2rem, 4vw, 2rem);
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	height:100%;
	width: 100%;
	justify-content:center;
	color:white;
}

#tile .tile_wrapper h3> span:nth-of-type(1)
{
	border-bottom: 1px solid rgb(255, 255, 255);
	padding: 0 .5em .5em;
	margin-bottom: .5em;
}

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

#tile .tile_wrapper .text .desc
{
/*	font-family: "Zen", 'YuMin_36pKn-Medium', serif;
	font-weight: 500;*/
	line-height: 2;
	font-size: clamp(1.1rem, 2vw, 1.3rem);
}

#tile .link
{
	margin-top: min(1.5rem, 1.5vw);
	width: min(100%, 25em);
}

#tile .link a
{
	width: 100%;
}

#tile .link a + a
{
	margin-top: 1em;
}


.tile_wrapper .img
{
/*	background-color: rgb(0, 0, 0);*/
	display: block;
	line-height: 0;
	border: 1px solid rgb(230, 230, 230);
}

.tile_wrapper .img > img
{
	width: 100%;
	max-width: 100%;
	height: auto;
	-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) .tile_wrapper .img:hover > img
{
	filter:alpha(opacity=90);
	-moz-opacity: .9;
	opacity: .9;
}

.tile_wrapper .img:after
{
	content:"";
	display:block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	-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) .tile_wrapper .img:hover:after
{
	box-shadow: inset 0px 0px 25px rgba(0,0,0,.5);
}

.tile_wrapper .text
{
	display:flex;
	flex-direction:column;
	align-items: center;
	padding-bottom: 2rem;
}

.tile_wrapper .text > div
{
	text-align: center;
	margin-bottom: 1rem;
}

.tile_wrapper .text .desc
{
	text-align: center;
}

#tile_s
{
	padding: 2rem 0;
	background-image: url(../_img/bg_red.jpg);
}

#tile_s .tile_wrapper
{
	display: flex;
	flex-wrap: wrap;
}

#tile_s .tile_wrapper:has(>*:nth-child(1):last-child)
{
	justify-content:center;
}

#tile_s .tile
{
	width: calc(50% - 2rem);
}



/**********************************************************************/
/******************************** News *********************************/
/**********************************************************************/

#news .link
{
	margin-top: min(5rem, 10vw);
}

#news .link a.box
{
	min-width: 12em;
}

/**********************************************************************/
/******************************** Link *********************************/
/**********************************************************************/

#link
{
	margin-top: max(3rem, 5vw);
	padding-top: max(3rem, 5vw);
	padding-bottom: max(3rem, 5vw);
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 -5px 25px rgba(0, 0, 0, .1);
}

.link_wrapper
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 3rem);
	margin-left: -1.5rem;
}

.link_wrapper .link
{
	width: calc(100% / 4 - 3rem);
	margin: 1.5rem;
}

.link_wrapper .link a.img,
.link_wrapper .link figure
{
	display: block;
	width: 100%;
	aspect-ratio: 2/ 1;
}

.link_wrapper .link a.img > img,
.link_wrapper .link figure > img
{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit:contain;
	object-position: 50% 50%;
	-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) .link_wrapper a.link:hover img
{
/*	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;*/
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0 ,.5));
}

.link_wrapper .link .desc
{
	padding-top: 1em;
	margin-top: 1em;
	border-top: 1px solid;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
/*	color: rgb(50, 50, 50);*/
	-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) .link_wrapper a.link:hover .desc
{
	color: rgb(0, 0, 0);
}

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


@media screen and (max-width: 1080px)
{
	.link_wrapper .link
	{
		width: calc(100% / 3 - 3rem);
	}
	
	#tile_s .tile_wrapper
	{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	#tile_s .tile
	{
		width: 100%;
		max-width: 500px;
	}
}

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

@media screen and  (max-width: 650px)
{
	.link_wrapper .link
	{
		width: calc(100% / 2 - 3rem);
	}
}