@charset "UTF-8";

.grecaptcha-badge { visibility: hidden; }

.f-icons
{
	font-family: f-icons;
	font-weight: 400;
}

.rr
{
	font-family: 'R-R';
	font-weight: 400;
}

.rb
{
	font-family: 'R-B';
	font-weight: 700;
}

h1, h2, .strong
{
	font-family: 'R-B', 'GG-B', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 700;
}
h3, h4, h5
{
	font-family: 'R-B', 'GG-B', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 700;
}

a.mail
{
	display:block;
	width: 250px;
	background-size:cover;
}
a.mail:before
{
	content:"";
	width: 100%;
	padding-top: 10%;
	display:block;
}

a.mail
{
	background-image:url(../_img/mail.svg);
}

a:link,
a:active,
a:visited
{
	color: rgb(227, 0, 127);
	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(227, 0, 127);
	text-decoration: none;
	border-bottom: 1px dotted rgb(227, 0, 127);
	-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:not([class]):hover
{
	color: rgba(227, 0, 127, .5);
}

a.direction
{
	cursor:pointer;
	font-size:1.1rem;
	font-family: 'R-B', 'GG-B', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 700;
	text-align: center;
	color: rgb(227, 0, 127);
	display: inline-block;
	line-height: 1;
}

body
{
	-webkit-text-size-adjust: 100%; 
	color:rgb(227, 0, 127);
/*	text-align:center;*/
	line-height:1.75;
	font-size: 1rem;
	letter-spacing:0.025em;
	font-family: 'R-R', 'GG-R', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight:400;
	background-color: rgb(245, 245, 240);
	word-wrap: break-word;
	position: relative;
}

#allWrapper
{
/*	overflow-x: hidden;*/
	width: 100%;
}

.max_page_width
{
	margin: 0 auto;
	padding: 2rem 1rem;
	max-width: 1120px;
}


/**********************************************************************/
/***************************** 共通フレーム *****************************/
/**********************************************************************/

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

/*#loader:after
{
	content: ""; 
	display: block;
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	box-sizing:border-box;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 5px solid rgb(0, 0, 0);
	border-right-color: transparent;
	
	top: 50%;
	left: 50%;
	margin-top:-1.25rem;
	margin-left:-1.25rem; 

	animation: circle-spin 1s linear infinite;
}*/

/* くるくるローダー */
.loader
{
	position:absolute;
	height:100%;
	width:100%;
	top: 0px;
	left:0px;
}

.loader:after
{
	content: ""; 
	display: block;

	box-sizing:border-box;
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid rgb(227, 0, 127);
	border-right-color: transparent;
	
	top: 50%;
	left: 50%;
	margin-top:-1.25rem;
	margin-left:-1.25rem; 

	animation: circle-spin 1s linear infinite; /*1秒毎にくるくる回転するアニメーション*/
}

@keyframes circle-spin
{
	0%
	{
		transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		filter:alpha(opacity=20);
		-moz-opacity: .2;
		opacity: .2;
	} /*0%の時は20％の透明度*/
	50%
	{
		transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	} /*50%の時は透明度なし*/
	100%
	{
		transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		filter:alpha(opacity=20);
		-moz-opacity: .2;
		opacity: .2;
	} /*100%の時に20％の透明度に戻る*/
}


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

#selector
{
	pointer-events: none;
/*	text-transform: uppercase;*/
/*	text-transform: capitalize;*/
	position: fixed;
	top: 0;
	padding: 1rem 1rem;
	width: 100%;
	z-index: 9900;
	background-color: rgba(255, 255, 255, 0);

	-webkit-justify-content: space-between;
	justify-content: space-between;
	
	-webkit-align-items: center;
	align-items: center;
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.modal #selector
{
	display: none;
}


/**********************************************************/
/******************* Hamburger Menu **********************/
/**********************************************************/

.hamburger
{
	display: block;
}

/*##############################
########## Touch Screen #########
##############################*/


body.touch #selector
{
	background-color: white;
}

#selector #selectorBts{display:none;}

#selector > a
{
	pointer-events: auto;
	font-size:1.2rem;
}
#selector > a > p + p
{
	margin-left: 1em;
}

body.sc:not(.hamburgerOpen) #selector > a
{
	transform:translateY(-5rem);
}


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

.hamburgerWrapper
{
	pointer-events: auto;
	cursor: pointer;
	-webkit-align-items: center;
	align-items: center;
}

.hamburgerWrapper > span
{
	color:rgb(255, 255, 255);
	font-size: .8rem;
	margin-right: 1em;
	font-family: 'R-R', 'GG-M', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 500;
}

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

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

body._w .hamburger span
{
	background: rgb(255, 255, 255);
}

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

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

.hamburger.open .top
{
	transform: rotate(-45deg) translateY(0rem);
	background: rgb(227, 0, 127);
}

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

.hamburger.open .bottom
{
	transform: rotate(45deg) translateY(0rem);
	background: rgb(227, 0, 127);
}

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

#menuList
{
/*	text-transform: uppercase;*/
	position:fixed; 
	top: 0rem;
	margin: 0;
	width:100%;
	height:100vh;
	z-index: 9800;
	background-color: rgb(245, 245, 240);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#menuList > .flex
{
	width:100%;
	display:block;
}

#menuList .linksWrapper > div
{
	margin:2rem;
}

#menuList .linksWrapper a
{
	display:inline-block;
	border-bottom-width:0;
}

#menuList .linksWrapper a.lang
{
	font-size: .8em;
}

#menuList .linksWrapper a.direction + a.lang
{
	margin-left: 1em;
}

#menuList .linksWrapper a.direction + a.lang + span
{
	margin: 0 .25rem;
}

#menuList .linksWrapper a:after
{
	content:"";
	position:absolute;
	display:block;
	width:0;
	height:2px;
	background-color:rgb(227, 0, 127);
	bottom: -.5em;
	left: 0;
	transition: all .5s ease;
}

body:not(.touch) #menuList .linksWrapper a:hover:after
{
	width:100%;
}

#menuList .menuWrapper
{
	display:flex;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	height: 100%;
	margin: 0 auto;
	padding: 4rem;
}

#menuList .linksWrapper
{
	margin: 4rem -2rem;
	
	display:flex;
	flex-wrap:wrap;
	-webkit-justify-content: center;
	justify-content: center;
}

#menuList .linksWrapper > .flex
{
	flex-direction: column;
	margin: 3rem 0;
}


/**********************************************************/
/*********************** Go Top Bt *************************/
/**********************************************************/

#goTopBt
{
	position: absolute;
	z-index:9800;
	cursor:pointer;
	
	display:flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
	
	top: 2.7rem;
	right: 1rem;
	
	width:1.5rem;
	height:1.5rem;
	border:1px solid;
	border-radius:50%;
	color:rgb(227, 0, 127);
}

#goTopBt:before
{
	content:"";
	display:block;
	width:.6rem;
	height:.6rem;
	background-repeat:no-repeat;
	background-size:cover;
	transform:rotate(-90deg);
}

.pageContainer
{
	position: relative;
	box-sizing: border-box;
	margin: 0rem auto;
	z-index:1;
	
	-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
{
	position: relative;
	box-sizing: border-box;
	
	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
{
	position: relative;
	box-sizing: border-box;
	
	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
{
	position: relative;
	box-sizing: border-box;
	
	transform: translateX(2rem);
	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 .transXR
{
	transform: translateX(0rem);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .transXR
{
	position: relative;
	box-sizing: border-box;
	
	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
{
	position: relative;
	box-sizing: border-box;
	
	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);
}

/**********************************************************/
/************************** Parts **************************/
/**********************************************************/
a.linkBt, a.linkBt:link, a.linkBt:active, a.linkBt:visited,
a.pdfLink, a.pdfLink:link, a.pdfLink:active, a.pdfLink:visited,
a.linkBtL, a.linkBtL:link, a.linkBtL:active, a.linkBtL:visited,
a.linkBtM, a.linkBtM:link, a.linkBtM:active, a.linkBtM:visited
{
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	text-decoration: none;
/*	text-transform: uppercase;*/
	color: inherit;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(227, 0, 127);
	
	background-color: rgb(245, 245, 240);
	color: rgb(227, 0, 127);
	
	line-height: 1.2;
	padding: 0rem .3rem;
	font-size: .8rem;
	margin: 0 1em;
	letter-spacing: 0;
	transform:translateY(-2px);
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

a.linkBt._g, a.linkBt._g:link, a.linkBt._g:active, a.linkBt._g:visited,
a.pdfLink._g, a.pdfLink._g:link, a.pdfLink._g:active, a.pdfLink._g:visited,
a.linkBtL._g, a.linkBtL._g:link, a.linkBtL._g:active, a.linkBtL._g:visited,
a.linkBtM._g, a.linkBtM._g:link, a.linkBtM._g:active, a.linkBtM._g:visited
{
	border-color: rgb(120, 120, 120);
	background-color: rgba(120, 120, 120, 1);
}

.linkBt{font-size: .8em; margin-left: .5em;}
.pdfLink{font-size: .9em; display:block; margin-top: 1em;}
.linkBtL{font-size: .9em; margin: 0 0 1rem 0; padding: .75em 2em;}
.linkBtM{font-size: .9em; padding: .5em 1em;}
.linkBtM p, .linkBtL p{display: inline-block; position: relative;}
.linkBtL p:not([class]){padding-right: 3em; padding-left: 3em;}

body:not(.touch) .linkBt:hover, 
body:not(.touch) .pdfLink:hover, 
body:not(.touch) .linkBtL:hover
{
	background-color: rgba(227, 0, 127, 1);
	color:rgb(245, 245, 240);
}

body:not(.touch) .linkBt._g:hover, 
body:not(.touch) .pdfLink._g:hover, 
body:not(.touch) .linkBtL._g:hover
{
	background-color: rgb(255, 255, 255);
	color: rgb(120, 120, 120);
}

.italic{font-style: italic;}
.smallerText{font-size:.9em;}
.biggerText{font-size:1.2em;}
.strongText
{
/*	font-family: 'Midashi Min MA31', 'YuMin-Extrabold', serif;
	font-weight: 700;*/
	color: rgb(25,25,25);
}
.subHead
{
/*	font-family: Roboto-B, GG-B, sans-serif;
	font-weight: 700;*/
	font-size:1em;
	margin-bottom: 1em;
}

.sectionTitle
{
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-direction: column;
}

.sectionTitle  h1,
.sectionTitle > h2
{
	color: rgb(227, 0, 127);
	display: inline-block;
	font-size: clamp(2rem, 3.5vw, 5rem);
	line-height: 1;
	margin-bottom: 1em;
	text-align:left;
}
.sectionTitle h1 > span.en,
.sectionTitle > h2 > span.en
{
/*	line-height: 1.5;*/
	margin: .25em 0;
}
.sectionTitle h1 > span.jp,
.sectionTitle > h2 > span.jp
{
	white-space:nowrap;
	font-size: clamp(1rem, .75vw, 2rem);
}

.sectionTitle h1 a:link,
.sectionTitle h1 a:active,
.sectionTitle h1 a:visited,
.sectionTitle h2 > a:link,
.sectionTitle h2 > a:active,
.sectionTitle h2 > a:visited
{
	color: rgb(227, 0, 127);
}

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

#footer
{
	width: 100%;
	padding: 2rem 2rem;
	color: rgb(255, 255, 255);
	background-color: rgb(227, 0, 127);
}

.credit
{
	font-size: .7rem;
	text-align:center;
}

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


.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: 100%;
	width: 100%;

	overflow: hidden;
/*	background: linear-gradient(to right, rgb(125, 204, 243) 0%, rgb(84, 144, 117) 100%);*/
	background: rgb(255, 255, 255);
}

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

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

.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);

	width: 100%;
	position: fixed;
	z-index: 9999;
	display: block;
	position: absolute;
	top: calc(50% + 4vw);
	right: 100%;
	height: 1px;
	background: rgb(227, 0, 127);
}

body.other .pace .pace-progress
{
	background-color: rgb(227, 0, 127);
}

.pace .logo_anim
{
	height: 100%;
	width: 100%;
	
	justify-content: center;
	-webkit-justify-content: center;
	
	-webkit-align-items: center;
	align-items: center;
}

.pace .logo_anim > div > svg
{
	top: 0vw;
	width: 8vw;
	min-width: 200px;
	height: 2vw;
	min-height: 50px;
	z-index: 10;
}

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

.pace .logo_anim .st0
{
	fill:rgb(227, 0, 127);
}

.pace .logo_anim .st1
{
	fill:rgb(227, 0, 127);
}

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

@media screen and (orientation: portrait)
{
	.pace .logo_anim > div > svg
	{
		top: -3vh;
	}
	.pace:after
	{
		top: calc(50% + 5vh);
	}
}


@media screen and (max-width: 1100px)
{

}