@charset "UTF-8";

#allWrapper:before
{
	top: -50vh;
	background-color: rgb(230, 230, 230);
}

/*//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////// 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
{
	position:sticky;
	top: 0;
	display:flex;
	justify-content:center;
	width: 100%;
	height: 100vh;
	background-color: rgb(230, 230, 230);
	z-index: 1;
	overflow:hidden;
	
	transition: all .5s ease;
}

.sc #top
{
	-webkit-filter: blur(5em);
	filter: blur(5em);
	-moz-opacity: 0;
	opacity: 0;
}

#top .anim
{
	width: 70%;
	height: 100%;
	background-image: url(../_img/sc_pc.jpg?20250901);
	animation: movbg_pc 120s linear infinite;
	background-size:cover;
}

@keyframes movbg_pc
{
	0%
	{
		background-position: 0% 0%;
	} 
	100%
	{
		background-position: 0% 4786px;
	} 
}


#top .catch_logo
{
	padding: 0 2rem 2rem;
	width: 30%;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

#top .catch
{
	display:flex;
	justify-content:center;
	align-items: center;
	flex-grow: 1;
	margin-bottom: 15%;
}

#top .catch h1,
#top .catch p
{
	overflow:hidden;
/*	text-indent: 100%;*/
	white-space: nowrap;
/*	background-size: contain;*/
	writing-mode: tb;
}

#top .catch > div
{
	height: 100%;
	display: flex;
	transition-delay: .75s;
}

#top .catch > div._2
{
	padding-right: clamp(1.1rem, 3vh, 3rem);
	align-items:center;
	transition-delay: 1.5s;
}

#top .catch > div._2 + div
{
	border-right: 5px solid rgb(255, 255, 255);
	height: 100%;
	transform: scale(1, 0);
	transform-origin: left top;
	transition: all .7s ease;
	transition-delay: .5s;
}

#top.end .catch > div._2 + div
{
	transform: scale(1, 1);
}

#top .catch > div._1
{
	padding-left: clamp(1.1rem, 3vh, 3rem);
	align-items:flex-start;
	transition-delay: 1s;
}

#top .catch h1
{
	margin: 2rem 0;
	display:flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: clamp(2rem, 6vh, 5rem);
	letter-spacing: .1em;
/*	height: 100%;
	max-height: 500px;
	aspect-ratio:150 / 350;
	background-image: url('../_img/catch_pc.svg');
	background-size: cover;*/
}

#top .catch p
{
	margin-top: 2rem;
	font-size: clamp(1.1rem, 3vh, 3rem);
/*	height: 100%;
	max-height: 300px;
	aspect-ratio:50 / 350;
	background-image: url('../_img/catch_sub.svg');
	background-size: cover;*/
}

#top .catch > div._2
{
	padding-right: clamp(1.1rem, 3vh, 3rem);
}

#top .catch > div._1
{
	padding-left: clamp(1.1rem, 3vh, 3rem);
}

#top .catch h1
{
	font-size: clamp(2rem, 6vh, 5rem);
}

#top .catch p
{
	font-size: clamp(1.1rem, 3vh, 3rem);
}

#top .logo
{
	width: 100%;
	max-width: 400px;
	aspect-ratio:300 / 100;
	background-size: contain;
	background-image: url(../_img/logo_top_pc.svg);
	
	transition-delay: 2s;
}


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

#news
{
	width: 100%;
	padding: max(3rem, 6vw) max(2rem, 4vw);
	background-color: rgb(148, 23, 60);
	color:rgb(230, 230, 230);
}

#news > div
{
	display: flex;
	justify-content: space-between;
}

#news .cont
{
	width:calc(100% - 10rem);
	font-family: R-R, GG-R, sans-serif;
	font-size: .9em;
}

#news .cont > a.news
{
	color:rgb(230, 230, 230);
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap:wrap;
	padding: .5em 0;
	border-bottom: 1px solid rgb(168, 27, 75);
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

#news .cont > a.news:nth-of-type(1)
{
	border-top: 1px solid rgb(168, 27, 75);
}
#news .cont .date
{
	margin-right: 1em;
}
#news .cont .tag
{
	margin-right: 2em;
	font-size: .7em;
	border-color: rgb(230,230, 230);
	border-style: solid;
	border-width: 1px;
	border-radius: .5em;
	color: rgb(230,230, 230);
	line-height: 1;
	padding: .5em .5em;
	display: flex;
	align-items: center;
	justify-content:center;
}

#news .cont .title
{
	flex-grow: 1;
	display:flex;
	justify-content: space-between;
	align-items:flex-end;
	flex-wrap:nowrap;
}

#news .cont .news .title:after
{
	font-family: f-icons;
	font-weight: 400;
	font-size: 1.1em;
	content: "\f198";
	transform: translateX(-.5em);
	transition: all .3s ease;
	margin-left: 1em;
}

body:not(.touch) #news .cont > a.news:hover .title:after
{
	transform: translateX(0);
}

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

#statement
{
	padding: max(5rem, 10vw) max(2rem, 4vw) max(10rem, 15vw);
	background-color: rgb(168, 27, 75);
	color:rgb(230, 230, 230);
	z-index:2;
}

#statement > div
{
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
}

#statement .copy
{
	position:sticky;
	top: 8rem;
	font-size: clamp(2rem, 3vw, 3rem);
	width: clamp(9rem, 15vw, 14rem);
}

#statement .copy h2
{
	font-size: 1em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	writing-mode: tb;
	white-space: nowrap;
}

#statement div.statement
{
	width: calc(100% - clamp(9rem, 15vw, 14rem));
}

#statement div.statement > div
{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#statement div.statement > div + div
{
	margin-top: max(5rem, 6vw);
}

#statement div.statement > div:nth-of-type(2n)
{
	flex-direction: row-reverse;
}

#statement div.statement > div:nth-of-type(1) .text
{
	transition-delay: .5s;
}

#statement div.statement > div .text
{
	width: calc(40% - 1rem);
}
#statement div.statement > div figure
{
	width: calc(60% - 1rem);
	transition-delay: .5s;
}

#statement div.statement > div:nth-of-type(1) figure
{
	transition-delay: 1s;
}

#statement div.statement > div figure img
{
	width: 100%;
	height: auto;
}

#statement div.statement > div .num
{
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding: 1em;
	margin-bottom: 2rem;
}
#statement div.statement > div .num span:nth-of-type(2)
{
	font-size: 4em;
}

#statement div.statement > div .text h2
{
	display:flex;
	flex-direction:row;
	justify-content:center;
	flex-wrap: wrap;
	margin-bottom: 1em;
}

#statement div.statement > div .text .comment p
{
	font-family: R-R, GG-R, sans-serif;
}

#statement div.statement > div .text .table
{
	margin-top: 1rem;
	border: 1px solid;
}
#statement div.statement > div .text .table > h3
{
	font-size: 1rem;
	background-color: rgb(230, 230, 230);
	line-height: 1;
	padding: .5em 1em;
	text-align: center;
	color: rgb(168, 27, 75);
	font-family: R-B, GG-B, sans-serif;
	font-weight: 700;
}
#statement div.statement > div .text .table > div
{
	display: flex;
	flex-wrap:wrap;
	padding: 1em;
	font-family: R-R, GG-R, sams-serif;
	font-weight: 400;
}


/**********************************************************************/
/******************************* Works ********************************/
/**********************************************************************/

#works
{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin: 0rem auto;
	padding: max(2rem, 4vw) 0rem max(2rem, 4vw) max(0rem, calc( (100% - 1120px) / 2));
}

#works .title
{
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	margin-right: 2rem;
	color: rgb(168, 27, 75);
	padding-right: 1rem;
	border-right: 1px solid;
}

#works .title h2
{
	writing-mode: tb;
}

#works .controler
{
	display: flex;
	justify-content: center;
}

#works .controler .photoDir
{
	cursor:pointer;
	margin:0 .25rem;
	width: 1rem;
	height: 1rem;
	display: flex;
	justify-content:center;
	align-items:center;
}

#works .controler .photoDir.nouse
{
	display: none;
}

#works .controler .photoDir:after
{
	content:"";
	display: block;
	width: .5em;
	height: .5em;
	border-color: rgb(168, 27, 75);
	border-style:solid;
	border-width: 1px 1px 0 0;
}

#works .controler .photoDir.photoDirL:after
{
	transform:rotate(-135deg);
}
#works .controler .photoDir.photoDirR:after
{
	transform:rotate(45deg);
}

#work_slide
{
	width: calc(100% - 5rem);
	overflow: hidden;
	padding-bottom: 1rem;
}

#works .bannerSlider .bannerChildren
{
	padding: 0 1em;
}

#works .bannerSlider .bannerChildren .photoWrapper
{
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

#works .textWrapper,
#works .textlink > div
{
	display: flex;
	justify-content:flex-start;
	align-items: flex-start;
}

#works .textlink
{
	color: rgb(0, 62, 52);
	padding: 1rem 2rem 0 0;
	background-color: rgb(230, 230, 230);
	max-width: calc(100% - min(10rem, 10vw));
	margin-top: -2rem;
}

body:not(.touch) #works .textlink:hover
{
	color:rgb(150, 150, 150);
}


#works .textWrapper h4
{
	font-size: clamp(.8rem, 2vh, 1rem);
}

#works .bannerSlideContainer .photoTrim
{
	margin-bottom: 0;
}

#works .bannerSlider .bannerChildren .photoWrapper > a
{
	width: 100%;
	aspect-ratio:3 / 2;
	height: auto;
}
#works .bannerSlider .bannerChildren .photoWrapper > a img
{
	-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) #works .bannerSlider .bannerChildren .photoWrapper > a:hover img
{
	transform: scale(1.1);
}

#works .bannerSlider .bannerChildren .photoWrapper .view
{
	position: absolute;
	bottom: -.5rem;
	right: 0rem;
	display: flex;
	align-items:center;
	justify-content: center;
	line-height: 1;
	color: rgb(255, 255, 255);
	background-color: rgb(0, 62, 52);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
}
#works .bannerSlider .bannerChildren .photoWrapper .view:before
{
	content:"View";
}

#works .bannerSlider .bannerChildren .dragger
{
	width: calc(100% - 2em);
	height: calc(100% - 1em);
}

#works .sumnailWrapper
{
	display: none;
}


/**********************************************************************/
/**************************** Contact Flow ******************************/
/**********************************************************************/

#flow
{
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	padding: max(5rem, 10vw) max(2rem, 4vw);
	background-image: url(../_img/flow_bg.jpg?20250901);
	background-size: cover;
	background-position: 50%;
	
	display: flex;
	justify-content: center;
	align-items:center;
}

#flow:before
{
	content:"";
	display:block;
	position:absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
}

#flow > div
{
	color: rgb(168, 27, 75);
	padding: 2em;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	background-color: rgba(255, 255, 255, .7);
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
}

#flow > div > p:nth-of-type(4)
{
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid;
}


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


@media screen and (max-width: 1500px)
{
	#top .catch > div._2
	{
		padding-right: clamp(1.1rem, 3vh, 2.5rem);
	}
	
	#top .catch > div._1
	{
		padding-left: clamp(1.1rem, 3vh, 2.5rem);
	}
	
	#top .catch h1
	{
		font-size: clamp(2rem, 6vh, 4rem);
	}
	
	#top .catch p
	{
		font-size: clamp(1.1rem, 3vh, 2.5rem);
	}
}

@media screen and (orientation: portrait)
{
	#top .catch h1
	{
		flex-direction: row;
		align-items: flex-end;
		font-size: clamp(1rem, 3.75vh, 4rem);
		margin: 1em 0 .5em;
	}
}

@media screen and (orientation: portrait) and (max-width: 1000px)
{
	#top .catch > div._2
	{
		padding-right: clamp(1.1rem, 1vh, 2.5rem);
	}
	
	#top .catch > div._1
	{
		padding-left: clamp(1.1rem, 1vh, 2.5rem);
	}
}

@media (max-aspect-ratio: 1000/1300)
{
	#top .anim
	{
		background-size: contain;
		background-repeat: repeat-y;
	}
}

@media screen and (max-width: 850px)
{
	#top .anim
	{
		width: 60%;
	}

	#top .catch_logo
	{
		width: 40%;
	}
	
	#statement .copy h2
	{
		flex-direction: row;
	}
	
	#statement .copy
	{
/*		font-size: clamp(2rem, 3vw, 3rem);*/
		width: clamp(6rem, 10vw, 10rem);
	}
	
	#statement div.statement
	{
		width: calc(100% - clamp(6rem, 10vw, 10rem));
	}

	
	#statement div.statement > div,
	#statement div.statement > div:nth-of-type(2n)
	{
		flex-direction: column;
	}
	#statement div.statement > div .text,
	#statement div.statement > div figure
	{
		width: 100%;
	}
	
	#statement div.statement > div figure
	{
		margin-top: max(4vw, 2rem);
	}
}

@media screen and (max-width: 650px)
{
	#top .anim
	{
		width: 50%;
		background-image: url(../_img/sc_sp.jpg?20250901);
		animation: movbg_sp 120s linear infinite;
		background-size: cover;
	}

	@keyframes movbg_sp
	{
		0%
		{
			background-position: 0% 0%;
		} 
		100%
		{
			background-position: 0% 6707px;
		} 
	}

	#top .catch_logo
	{
		width: 50%;
	}
	
	#news > div
	{
		flex-direction: column;
	}
	#news .cont
	{
		margin-top: 1rem;
		width: 100%;
	}
}

@media screen and (max-width: 500px)
{
	#top .logo
	{
		aspect-ratio:100 / 100;
		background-image: url(../_img/logo_top_sp.svg);
	}
	
	#statement .copy
	{
		line-height: 1;
/*		font-size: clamp(2rem, 3vw, 3rem);*/
		width: clamp(4rem, 10vw, 10rem);
	}
	
	#statement div.statement
	{
		width: calc(100% - clamp(4rem, 10vw, 10rem));
	}
	
	#works
	{
		flex-direction: column;
	}
	
	#works .title
	{
		display:flex;
		flex-direction:row;
		border-right-width: 0;
		margin-right: 0;
		padding-left: 2rem;
		align-items: center;
	}
	#works .title h2
	{
		writing-mode: lr;
	}
	#work_slide
	{
		width: 100%;
		margin-top: 1rem;
	}
}

@media screen and (max-width: 850px) and (max-height: 800px)
{
	#statement .copy
	{
		font-size: 3.5vh;
	}
}