@charset "UTF-8";

#footer
{
	background-color: rgb(240, 240, 240);
}
body:after
{
	background-color: rgb(240, 240, 240);
}

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

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

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

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

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


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

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;
}

#top_slide .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;
}

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

.sc #top_slide .slideFadeContainer.start
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	-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;
}

#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:450 / 300;
	width: clamp(300px, 50vw, 25rem);
	background-size: cover;
	background-image: url(../_img/logo_wh.svg);
}

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

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

#description
{
	color: rgb(255, 255, 255);
	padding: max(5rem, 10vw) max(2rem, 10vw);
	background-color: rgb(90, 140, 170);
	 min-height: 100vh; 
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#description > div
{
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
}

#description h2
{
	writing-mode: vertical-rl;
	font-size: clamp(2.2rem, 5vw, 3rem);
	position:sticky;
	top: 2rem;
	white-space: nowrap;
}

#description > div > div
{
	transition-delay: .5s;
	margin-left: max(10vw, 5rem);
}

#description .photo
{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 2rem min(-2vw, -.5rem) 2rem;
}

#description .photo img
{
	width: 100%;
	height: auto;
}

#description .photo > figure,
#description .photo > div
{
	width: 50%;
	margin: max(2vw, .5rem);
}

#description .photo > div > figure + figure
{
	margin-top: max(4vw, 1rem);
}

#description > div > div p
{
	font-size: clamp(1rem, 5vw, 1.2rem);
	line-height: 2;
}

#description .logo_losthomes
{
	width: min(calc(100% - 2rem), 10rem);
	margin-top: max(3vw, 3rem);
	overflow:hidden;
	cursor:pointer;
	display:block;
	aspect-ratio:450 / 200;
	background-size:contain;
	background-position: 50%;
	background-repeat:no-repeat;
	background-image: url(../../_img/logo_wh.svg);
}

/**********************************************************************/
/******************************* Map **********************************/
/**********************************************************************/

#map_canvas
{
	width: 100%;
	height: min(calc(100vh - 10rem), calc(100vw * 2 / 3));
}

.gm-style-mot
{
	text-align: center;
}

#map_canvas .map_link
{
	font-family: serif, "A1 Mincho", 'YuMin_36pKn-Medium';
}

#map_canvas .location
{
	font-size: .9em;
	color: rgb(100, 100, 100);
}

#map_canvas .mImg
{
	width: 200px;
	overflow: hidden;
	aspect-ratio: 5 / 3;
	margin-bottom: .5rem;
}
#map_canvas .mImg img
{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position: 50% 50%;
}

/**********************************************************************/
/******************************* Model *********************************/
/**********************************************************************/

#models
{
	background-color: rgb(90, 140, 170);
	color: rgb(255, 255, 255);
	padding: max(10rem, 10vw) 0;
}

#models .tile
{
	display: flex;
	padding: max(5vw, 5rem) 0;
}

#models .tile + .tile
{
	border-top: 1px solid rgba(255, 255, 255, .3);
}

#models .tile:nth-of-type(2n)
{
	flex-direction: row-reverse;
}

#models .tile .slide
{
	width: 65%;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background-color: rgb(0, 0, 0);
	line-height: 0;
}

#models .tile .slide > div
{
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-ms-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

body:not(.touch) #models .tile .slide:hover > div
{
	opacity: .7;
}

#models .tile .text
{
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

#models .tile .dir > div
{
	margin-right: 1rem;
}

#models .tile .period
{
	font-family: R-R, GG-R, sans-serif;
	color: rgba(255, 255, 255, .3);
}

#models .tile h2
{
	border-bottom: 1px solid;
	padding-top: .5em;
	margin-bottom: .5em;
}

/**********************************************************************/
/******************************* NEWS ********************************/
/**********************************************************************/

#news
{
	padding: max(2rem, 5vw) 2rem max(5rem, 10vw);
	background-color: rgb(240, 240, 240);
}

#news h2.secTitle
{
	text-align: center;
}

#news table
{
	width: 100%;
	margin: 0 auto;
	max-width: 900px;
}

#news td
{
	padding: .75rem 0 .25rem;
}
#news td
{
	border-bottom: 1px solid rgba(200, 200, 200, 1);
	padding-bottom: .5rem;
}
#news td:nth-of-type(1)
{
	width: 10rem;
	padding-right: 1em;
	white-space: nowrap;
	font-family: R-R, sans-serif;
	color: rgb(100, 100, 100);
	font-size: .9em;
}

/**********************************************************************/
/******************************* cresd ********************************/
/**********************************************************************/

#cresd
{
	padding: max(5vw, 5rem) 2rem;
}

#cresd > div
{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 900px;
	margin: 0 auto;
}

#cresd .logo
{
	width: calc(50% - 2rem);
	aspect-ratio: 500 / 75;
	background-size:cover;
	background-image: url(../../_img/cresd.svg);
}

#cresd .desc
{
	width: calc(50% - 2rem);
}

#cresd .link
{
	font-family: R-R, GG-R, sans-serif;
	display: flex;
	justify-content:center;
	align-items:center;
	width: 100%;
	margin-top: 1rem;
	background-color: rgb(240, 240, 240);
	padding: .5em 1em;
}


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


@media screen and (max-width: 1080px)
{
	#about .main,
	#about > div:nth-of-type(2n) .main
	{
		flex-direction: column;
		padding: 0 max(2rem, 4vw);
	}
	#about .main figure
	{
		margin-bottom: max(2rem, 4vw);
	}
	#about .main figure,
	#about .main .text
	{
		width: 100%;
		padding: 0;
	}
	
	#about .main .subTitle,
	#about .main .subTitle > h2,
	#about .moreBt
	{
		justify-content: center;
	}
	#about .main .desc
	{
		align-items: center;
		max-width: 650px;
		margin: 0 auto;
	}
}

@media screen and  (max-width: 700px)
{
	#highlight .bannerSlider .bannerChildren .photoWrapper > a,
	#highlight .bannerSlider .bannerChildren .dragger
	{
		aspect-ratio:3 / 2;
	}
}

@media screen and (orientation: portrait)
{
	#highlight .bannerSlider .bannerChildren .photoWrapper > a,
	#highlight .bannerSlider .bannerChildren .dragger
	{
		aspect-ratio:3 / 2;
	}
}

@media screen and  (max-width: 650px)
{
	#description .photo
	{
		flex-direction: column;
	}
	#description .photo > figure,
	#description .photo > div
	{
		width: 100%;
	}
	#news td
	{
		display: block;
	}
	#news td:nth-of-type(1)
	{
		border-bottom-width: 0;
		padding-bottom: 0rem;
	}
	#news td:nth-of-type(2)
	{
		padding-top: 0;
	}
}

@media screen and (max-width: 600px)
{
	#models
	{
		padding-top: 0rem;
	}
	#models .tile,
	#models .tile:nth-of-type(2n)
	{
		flex-direction: column;
		padding: 0 0rem;
	}
	#models .tile + .tile
	{
		border-top-width: 0;
	}
	#models .tile .slide,
	#models .tile .text
	{
		width: 100%;
	}
	
	#cresd
	{
		padding: max(5vw, 5rem) 2rem;
		margin: 0;
	}
	
	#cresd > div
	{
		flex-direction: column;
	}
	#cresd .logo,
	#cresd .desc
	{
		width: 100%;
	}
	#cresd .logo
	{
		max-width: 20rem;
		margin-bottom: 2rem;
	}
}