@charset "UTF-8";

.grecaptcha-badge { visibility: hidden; }

a:link,
a:active,
a:visited
{
	color: rgb(0, 0, 0);
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:not([class]):link,
a:not([class]):active,
a:not([class]):visited,
a:not([class]):hover
{
	color: rgb(0, 0, 0);
	text-decoration: none;
	border-bottom: 1px dotted;
	font-family:  'R-M', 'GG-M', 'YU Gothic UI', 'Hiragino Sans', sans-serif;
	font-weight: 500;
}

a:not([class]):link:after,
a:not([class]):active:after,
a:not([class]):visited:after
{
	margin-left: .25em;
	content: "\f061";
	font-family: "awesome";
	display:inline-block;
	transform: rotate(-45deg);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

/*a:not([class]):link > span:nth-of-type(1),
a:not([class]):active > span:nth-of-type(1),
a:not([class]):visited > span:nth-of-type(1)
{
	margin-right: .25em;
}*/

body:not(.touch) a:not([class]):hover
{
	color: #0000EE;
}

body:not(.touch) a:not([class]):hover:after
{
	transform: rotate(0deg);
}

a.box
{
	font-family:  'R-G', "GG-B", serif;
	font-weight: 700;
	font-size: clamp(1.1rem, 2vw, 1.2rem);
	padding: 1em 2em;
	line-height: 1;
	color: rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
	border-color: rgb(0, 0, 0);
	border-style: solid;
	border-width: 1px;
	border-radius: 2em;

	display:flex;
	align-items:center;
	justify-content:center;
	
	overflow: hidden;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a.box:after
{
	margin-left: .25em;
	content: "\f061";
	font-family: "awesome";
	display:inline-block;
	transform: rotate(-45deg);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body:not(.touch) a.box:hover:after
{
	transform: rotate(0deg);
}

a.box._w
{
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
	border-color: rgb(255, 255, 255);
}

a.box._b
{
	font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}

body:not(.touch) a.box:hover
{
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
}

body:not(.touch) a.box._w:hover
{
	color: rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
}


h1, h2, h3, h4, h5, b, strong
{
	font-family:  'R-B', "GG-B", serif;
	font-weight: 700;
}

.sec_title
{
	width: 100%;
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.sec_title h1,
.sec_title h2
{
	font-family:  'R-B', 'GG-B', serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 10vw, 3rem);
	line-height: 1.5;
	padding: .5em .25em .1em;
}

.max_page_width
{
	margin: 0 auto;
	padding: 0 2rem;
	width:100%;
/*	max-width: 1120px;*/
	max-width: 920px;
}


/*//////////////////////////////////////////////////////////////////////////////////
///=///////////////////////////////// Loadign //////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

/* ボーダーローダー */
#loader
{
	position:fixed;
	height:100%;
	width:100%;
	top: 0px;
	left: 0px;
	background-color: rgb(255, 255, 255);
	z-index:9998;
}

.pace
{
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	z-index: 9999;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	width: 100%;
	background: rgba(50, 50, 50, .2);
	overflow: hidden;
}

.pace:after
{
	content: attr(data-progress-text);

	display: inline-block;
	
	position: fixed;
	top: calc(50% + 1.5em);
	left: 0;
	width: 100vw;
	text-align: center;
	font-size: 1rem;
	color: rgb(0, 0, 0);
}

.pace .pace-progress
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	max-width: 100%;
	position: fixed;
	z-index: 9999;
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	background: rgb(50, 50, 50);
}

.pace.pace-inactive, .loaded .pace
{
	display: none;
}


/*//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////// Contact /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

#contact .cont
{
	padding: clamp(2rem, 5vw, 4rem) 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;s
}

#contact .cont > .text
{
	margin-bottom: 1rem;
}

#contact._b
{
	color: rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
}

#contact._b a.box
{
	color: rgb(50, 50, 50);
	background-color: rgb(255, 255, 255);
	border-color: rgb(255, 255, 255);
	white-space: nowrap;
}

body:not(.touch) #contact._b a.box:hover
{
	color: rgb(255, 255, 255);
}

#contact._b a.box:before
{
	background-color: rgb(0, 0, 0);
}


/*//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////// Footer /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

#footer
{
	width:100%;
	padding: max(5rem, 5vw) 2rem max(5rem, 5vw);
	background-color: rgb(245, 245, 245);
}

#footer:before
{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width:0;
	height: max(50%, 5rem);
	background-image: url(../_img/project_bg_w.svg);
	background-repeat: repeat-x;
	background-size: contain;
	
	transition: width 1s ease 0s;
}

#footer.end:before
{
	width: 100%;
}

#footer .logo
{
	display: block;
	background-image: url(../_img/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: clamp(150px, 15vw, 15rem);
	aspect-ratio: 200 / 75;
}

#footer .links_wrapper
{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}

#footer .menu
{
	display: flex;
	flex-direction: column;
	margin-left: 1em;
}

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

#footer .credit
{
	margin-top:.5em;
	font-size: .8em;
}


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

body
{
	-webkit-text-size-adjust: 100%; 
	text-align:left;
	line-height:1.7;
	font-size: 1rem;
	letter-spacing:0.025em;
	font-family:  'R-R', "GG-R", serif;
	font-weight: 400;
	word-wrap: break-word;
	position: relative;
	
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
}

#allWrapper:before,
#allWrapper:after
{
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    z-index: -1;
}
#allWrapper:before
{
    top: -50vh;
	background-color: rgb(255, 255, 255);
}
#allWrapper:after
{
    bottom: -50vh;
	background-color: rgb(245, 245, 245);
}

#allWrapper
{
	position: relative;
	width: 100%;
	min-height: calc(100vh - 5rem);
	background-color: rgb(255, 255, 255);
}

.pageContainer
{
	-webkit-transition: width .7s ease;
	-moz-transition: width .7s ease;
	-ms-transition: width .7s ease;
	-o-transition: width .7s ease;
	transition: width .7s ease;
}
/*.pageContainer:not(#titleWrapper){overflow-x: hidden;}*/

.pageContainer .transY
{
	transform: translateY(5rem);
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-transition: transform .7s ease, opacity .7s ease;
	-moz-transition: transform .7s ease, opacity .7s ease;
	-ms-transition: transform .7s ease, opacity .7s ease;
	-o-transition: transform .7s ease, opacity .7s ease;
	transition: transform .7s ease, opacity .7s ease;
}
.pageContainer.end .transY
{
	transform: translateY(0rem);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .marginY
{
	margin-top: 5rem;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-transition: margin-top .7s ease, opacity .7s ease;
	-moz-transition: margin-top .7s ease, opacity .7s ease;
	-ms-transition: margin-top .7s ease, opacity .7s ease;
	-o-transition: margin-top .7s ease, opacity .7s ease;
	transition: margin-top .7s ease, opacity .7s ease;
}
.pageContainer.end .marginY
{
	margin-top: 0rem;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .transX
{
	transform: translateX(5rem);
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-transition: transform .7s ease, opacity .7s ease;
	-moz-transition: transform .7s ease, opacity .7s ease;
	-ms-transition: transform .7s ease, opacity .7s ease;
	-o-transition: transform .7s ease, opacity .7s ease;
	transition: transform .7s ease, opacity .7s ease;
}
.pageContainer.end .transX
{
	transform: translateX(0rem);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .transBlur
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-filter: blur(10px);
	filter: blur(10px);
	
	-webkit-transition: -webkit-filter .7s ease, opacity .7s ease;
	-moz-transition: -moz-filter .7s ease, -moz-opacity .7s ease;
	-ms-transition: -ms-filter .7s ease, opacity .7s ease;
	-o-transition: -o-filter .7s ease, opacity .7s ease;
	transition: filter .7s ease, opacity .7s ease;
}
.pageContainer.end .transBlur
{
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	
	-webkit-filter: blur(0px);
	filter: blur(0px);
}


#goTopBt
{
	position:fixed;
	bottom: 5.5rem;
	right: .0;
	z-index:7000;
	display:none;
	cursor:pointer;
	width: 2rem;
	height: 2rem;
	background-color: rgb(0, 0, 0);

	-webkit-transition:bottom .3s ease;
	-moz-transition:bottom .3s ease;
	-ms-transition:bottom .3s ease;
	-o-transition:bottom .3s ease;
	transition:bottom .3s ease;
}

body:not(.touch) #goTopBt:hover
{
	bottom: 6rem;
}

#goTopBt:after
{
	content:"";
	display: block;
	position: absolute;
	top: .5rem;
	left: .5rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 .5rem 0.866rem .5rem;
	border-color: transparent transparent #ffffff transparent;
}


/*//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// Selector ////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

#selectorBts
{
	display: none;
}

#selector
{
	padding: clamp(.5rem, 1vw, 1rem) 2rem;
	z-index: 9990;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
/*	pointer-events: none;*/
	background-color: rgb(255, 255, 255);
}

#selector > div
{
	display:flex;
	justify-content: space-between;
	align-items: center;
	
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

#selector .logo
{
	pointer-events: auto;
	width: clamp(50px, 15vw, 5rem);
	display: block;
	
	aspect-ratio: 200 / 75;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	background-image: url(../_img/logo.svg);
}

.sc #selector .logo
{
	width: clamp(35px, 10vw, 3rem);
}

#selector #selectorBts{display:none;}

#selector .other_links,
#selector .links
{
	display: flex;
	align-items: center;
}

#selector .links a
{
	margin: 0 .5em;
	border-bottom-width: 0px;
}

.hamburgerOpen #selector
{

}

.hamburgerOpen #selector > div
{
	max-width: 100%;
	justify-content: flex-end;
}

.hamburgerOpen #selector .logo,
.hamburgerOpen #selector .sns
{
	display: none;
}

/*##############################
############ Menu Bt ###########
##############################*/

.hamburgerWrapper
{
	pointer-events: auto;
	padding-left: 2rem;
	
	cursor: pointer;
	display:flex;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}

.hamburgerWrapper > span
{
	font-size: .7rem;
}

.hamburgerOpen .hamburgerWrapper > span
{
	transform:scale(0, 0);
}

.hamburger
{
	cursor: pointer;
	height: 1.5rem;
	width: 2rem;
}
.hamburger span
{
	top: .5rem;
	width: 3rem;
	left: calc(50% - 1.5rem);
	height: 2px;
	display: block;
	position: absolute;
	background-color: rgb(50, 50, 50);
	
	-webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
	-ms-transition: transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
}

.hamburger p.text
{
	white-space: nowrap;
	font-size: .6em;
	text-align: center;
	position: absolute;
	bottom: .5em;
	width: 100%;
}

.hamburger .top
{
	transform: translateY(.5rem);
}
.hamburger .middle
{
	transform: translateY(0);
}
.hamburger .bottom
{
	transform: translateY(0rem);
}

body:not(.hamburgerOpen):not(.touch) .hamburgerWrapper:hover .hamburger .top
{
	transform: translateY(.55rem);
}
body:not(.hamburgerOpen):not(.touch) .hamburgerWrapper:hover .hamburger .bottom
{
	transform: translateY(-.2rem);
}

.hamburger.open .top
{
	transform: rotate(-30deg) translateX(-.15rem) translateY(.15rem);
}

.hamburger.open .middle
{
	transform: rotate(0deg) scale(0);
}

.hamburger.open .bottom
{
	transform: rotate(30deg) translateX(.15rem) translateY(.15rem);
}


/*##############################
########### MENU LiIST #########
##############################*/

#menuList
{
	position:fixed; 
	justify-content: center;
	top: 0rem;
	margin: 0;
	width:100%;
	height:100vh;
	z-index: 9800;
	background-color: rgb(245, 245, 245);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#menuList .menuWrapper
{
	margin: 0 auto; 
	width: 100%;
	max-width: 1020px;
	padding: max(5vw, 4rem) clamp(1rem, 5vw, 2rem);
}

#menuList .menu
{
	display:flex;
	flex-direction:column;
	
	align-items: center;
	justify-content: center;
	
	min-height: 100%;
}

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

#menuList .linksWrapper .links,
#menuList .linksWrapper .other_links
{
	width: 100%;
	font-size: clamp(1.1rem, 5vw, 1.5rem);
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	flex-grow: 1;
	justify-content: flex-end;
	margin-bottom: max(2vw, 2rem);
}

#menuList .linksWrapper .other_links
{
	align-items:center;
}

#menuList a
{
	font-size: clamp(1rem, 2.5vw, 2rem);
	justify-content: space-between;
}

#menuList .menuWrapper a + a
{
	margin-top: 1em;
}

#menuList .logo
{
	display: block;
	background-image: url(../_img/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: min(150px, 100%);
	aspect-ratio: 200 / 75;
	margin-top: 2em;
	margin-bottom: 2em;
}

a.sns
{
	display: block;
	width: clamp(1.25rem, 2vw, 2rem);
	aspect-ratio: 1 / 1;
	background-size:cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

body:not(.touch) a.sns:hover
{
	filter:alpha(opacity=50);
	-moz-opacity: .5;
	opacity: .5;
}

a.sns._1
{
	background-image:url(../_img/sns_1.svg);
}

a.sns._w._1
{
	background-image:url(../_img/sns_1_w.svg);
}


/**********************************************************/
/************************** Parts **************************/
/**********************************************************/

.moreBt
{
	font-family:  'R-R', "GG-R", serif;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap:wrap;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	border-style: solid;
	border-width: 0px;
	border-bottom-width: 0;
	
	line-height: 1.25;
	margin: 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;
}

.moreBt._w
{
	color: rgb(255, 255, 255);
}

.moreBt > span.text,
.moreBt > p
{
/*	text-transform: uppercase;*/
	padding-right: 1em;
}

.moreBt > span.dir
{
	display:flex;
	align-items: center;
}

.moreBt._box span.dir
{
	width: 3em;
}
.moreBt._box > span.text,
.moreBt._box > p
{
	width: calc(100% - 3em);
}

.moreBt span.dir:before
{
	content:"";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: .5em;
	height: .5em;
	border-style: solid;
	border-width: 0 0px 1px 1px;
	transform: rotate(-135deg) translate(calc(.18em + 1px), calc(.18em - 1px));
}

body:not(.touch) .moreBt span.dir:after,
body:not(.touch) .moreBt span.dir:before
{
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}
body:not(.touch) .moreBt:hover span.dir:after
{
	width: calc(5em + 1em);
}

body:not(.touch) .moreBt._box:hover span.dir:after
{
	width: calc(3em + 1em);
}

body:not(.touch) .moreBt:hover span.dir:before
{
	right: -.25em;
}

/*body:not(.touch) .linkBt:hover, 
body:not(.touch) .pdfLink:hover, 
body:not(.touch) .linkBtL:hover
{
	color: rgb(255, 255, 255);
}

body:not(.touch) .linkBtM:hover
{
	color: rgb(160, 160, 160);
}*/


/*.secTitle
{
	font-size: 1.5rem;
	font-family: serif, "A1 Mincho", 'YuMin_36pKn-Medium';
	font-weight: 400;
	color: rgb(0, 0, 0);
}*/

.photoCredit
{
	transform:scale(.7);
}

* + .photoCredit
{
	margin-left: 1em;
}

.photoCredit:before
{
	content:"©︎ ";
	margin-left: 0em;
	font-size: 1em;
}

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

@media screen and (min-width: 900px)
{
	.hamburgerWrapper,
	#menuList
	{
		display: none;
	}
}

@media screen and (max-width: 900px)
{
	#selector .links
	{
		display: none;
	}
}