@import url('//fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
@charset "UTF-8";

/* Contents Menu
-------------------------------------------------------------------------------------
【PC/SP】
	**:normalize
	**:icon
	**:reset
	**:base contents
		header/gnav/mv/contents/footer/
	**:indent
	**:size
	**:wide
	**:section
	**:compo parts
		btn/box/list/head/table/float/column/topcontrol/roBtn/
	**:pager
	**:form
-------------------------------------------------------------------------------------*/



/* normalize
-------------------*/

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}h1{font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,html input[type="button"],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}



/* reset
-------------------*/

html {
	background-color:#FFF;
	font-size: 62.5%; /* sets the base font to 10px for easier math */
}
body,h1,h2,h3,h4,h5,h6,pre,ul,ol,li,dl,dt,dd,p,img {
	margin: 0;
	padding: 0;
}
body {
background: #fff;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	color:#000000;
	font-size: 16px;
	font-size: 1.6rem; /* sets the default sizing to make sure nothing is actually 10px */
	line-height: 1;
	letter-spacing: 0;
/*	min-width:1000px;*/
}
body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#fancybox-wrap,
#fancybox-wrap *,
#fancybox-tmp,
#fancybox-loading {
	-webkit-box-sizing: content-box!important;
	-moz-box-sizing: content-box!important;
	-o-box-sizing: content-box!important;
	-ms-box-sizing: content-box!important;
	box-sizing: content-box!important;
}
a,a:link,a:hover,a:focus {
	color: #333;
	text-decoration: none;
	cursor: pointer;
	outline: none;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover {
	text-decoration: underline;
}
ul,ol {
	list-style-type: none;
}
::selection {
	background-color: #888;
	color: #FFF; /* Safari */
}
::-moz-selection {
	background-color: #888;
	color: #FFF; /* Firefox */
}
#contents p{
	line-height: 1.7;
}
hr.ancHr{
	font-size: 0 !important;
    line-height: 0 !important;
    visibility: hidden !important;
	margin: 0;
	padding: 0;
}



/* base contents
-------------------*/

/*header*/

#header {
position: absolute;
left: 0;
top: 0;
width: 100%;
text-align: center;
z-index: 10;
padding: 15px 0;
opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

#header.active {
opacity: 1;
}

#header .logo img{
	height: 80px;
	width: auto;
}
#header ul{
	overflow: hidden;
	zoom: 1;
	position: absolute;
	right: 55px;
	top: 16px;
}
#header li{
	float: left;
	margin: 0 5px;
	text-align: center;
}
#header li a{
	color: #FFF;
	font-size:2.6rem;
	line-height: 1;
}
#header li a i{
}
.Menu{
	cursor: pointer;
	display: block;
	height: 80px;
	width: 80px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1010;
    	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.Menu.change span{
background-color: #000;
}


.Menu span {
	background-color: #FFF;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	zoom: 1; /* Fix for IE7 */
	*display: inline; /* Fix for IE7 */
    height: 2px;
    width: 50px;
    position: absolute;
  left: 50%;
  transform:translateX(-50%);
  -webkit- transform:translateX(-50%);
	-webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}


.Menu span:nth-of-type(1) { top: 22px; }
.Menu span:nth-of-type(2) { top: 37px; }
.Menu span:nth-of-type(3) { top: 52px; }
.Menu.active{
	height: 80px;
	width: 80px;
    right: 15px;
    background:none;
}
.Menu.active span{
	background-color: #000;
}
.Menu.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.Menu.active span:nth-of-type(2) {
	opacity: 0;
}
.Menu.active span:nth-of-type(3) {
	-webkit-transform: translateY(-20px) rotate(45deg);
	transform: translateY(-20px) rotate(45deg);
}
.Menu.active small{
	color: #000;
}


/*spNav*/
#Nav{
	height: 100%;
	display: block;
	transition: all 550ms ease 0.25s;
	visibility: hidden;
	padding-top: 59px;
	width: 100%;
    position: fixed;
	right: -100%;
    top: 0;
	z-index: 990;
}
#Nav.active{
	visibility: visible;
	right: 0;
}
#Nav #Bg{
/*	background: rgba(0,0,0,0.5);*/
    height: 100%;
    width: 500%;
    position: fixed;
	right: -50%;
    top: 0;
    z-index: -1;
    opacity: 0;
	transition: all 550ms ease 0.25s;
	pointer-events: none;
}
#Nav.active #Bg{
	right: 0;
    opacity: 1;
	pointer-events: auto;
}
#Nav::after {
	background: rgba(255,255,255,0.8);
	background-color: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
#Nav::before,
#Nav::after {
    opacity: 0;
	transition: all 550ms ease 0.25s;
}
#Nav.active::before,
#Nav.active::after {
    opacity: 1;
}
#Nav .closeBtn{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 15px 3%;
	text-align: right;
}


#Nav nav {
padding-top: 5%;
}

#Nav nav ul {
width: 80%;
margin: 0 auto;
}
#Nav nav ul li a{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #000;
    font-size: 14px;
    font-size: 1.4rem;
	font-weight: bold;
	text-align: right;
	display: block;
	padding: 20px 0;
}
#Nav nav ul li a span{
font-family: 'Oswald', sans-serif;
display: block;
font-size: 40px;
font-size: 4.8rem;
padding-bottom: 10px;
}

#Nav nav ul li a:hover{
	color: #0483c6;
	text-decoration: none;
}
#Nav nav ul li a:hover::before{
	color: #FFF;
}


/*contents*/
#contents {
	margin: 40px auto 0;
	width:100%;
	overflow: hidden;
}
#contents.wInr{
	max-width: 1200px;
	width:97%;
}

/*footer*/
#footer {
	width:100%;
    color: #fff;
}
#footer .ftInr {
display: flex;
justify-content: space-between;
}
#footer .ftL,
#footer .ftR {
width: 50%;
padding: 60px 0;
}
#footer .ftL {
background: #0483c6;
}
#footer .ftR {
background: #0071ac;
}

#footer .ftInr .ftBox {
width: 70%;
margin: 0 auto;
max-width: 500px;
}

#footer .ftInr .ftBox h2 {
font-family: 'Oswald', sans-serif;
font-size: 48px;
font-size: 4.8rem;
margin-bottom: 30px;
}

#footer .ftBox table th {
font-size: 18px;
font-size: 1.8rem;

}

#footer .ftBox table th,
#footer .ftBox table td {
padding: 10px 8px;
text-align: left;
}

#footer .ftBox table td {
line-height: 1.5;
}
#footer .ftBox .contactBtn {
margin-bottom: 30px;
}
#footer .ftBox .contactBtn a {
display: block;
border-radius: 10px;
background: #003550;
padding: 30px 0;
font-weight: bold;
text-align: center;
color: #fff;
}
#footer .ftBox .contactBtn a:hover {
text-decoration: none;
background: #fdd100;
}
#footer .ftBox .tel {
font-size: 20px;
font-size: 2.0rem;
font-weight: bold;
}
#footer .ftBox .tel a{
font-family: 'Oswald', sans-serif;
font-size: 36px;
font-size: 3.6rem;
color: #fff;
display: inline-block;
margin-left: 10px;
font-weight: 500;
}


small#copyright {
font-family: 'Oswald', sans-serif;
	background-color:#000;
	color:#FFF;
	display:block;
    font-size: 12px;
	font-size:1.2rem;
	padding:40px 0;
	text-align:center;
	width:100%;
}



/* indent
-------------------*/
.center{text-align:center!important;}
.left{text-align:left!important;}
.right{text-align:right!important;}
.top0{margin-top:0 !important;}
.top5{margin-top:5px !important;}
.top10{margin-top:10px !important;}
.top15{margin-top:15px !important;}
.top20{margin-top:20px !important;}
.top25{margin-top:25px !important;}
.top30{margin-top:30px !important;}
.top35{margin-top:35px !important;}
.top40{margin-top:40px !important;}
.btm0{margin-bottom:0 !important;}
.btm5{margin-bottom:5px !important;}
.btm10{margin-bottom:10px !important;}
.btm15{margin-bottom:15px !important;}
.btm20{margin-bottom:20px !important;}
.btm25{margin-bottom:25px !important;}
.btm30{margin-bottom:30px !important;}
.btm35{margin-bottom:35px !important;}
.btm40{margin-bottom:40px !important;}
.btm45{margin-bottom:45px !important;}
.btm50{margin-bottom:50px !important;}
.btm55{margin-bottom:55px !important;}
.btm60{margin-bottom:60px !important;}
.btm65{margin-bottom:65px !important;}
.btm70{margin-bottom:70px !important;}
.btm75{margin-bottom:75px !important;}
.btm80{margin-bottom:80px !important;}
.btm85{margin-bottom:85px !important;}
.btm90{margin-bottom:90px !important;}
.btm95{margin-bottom:90px !important;}
.pT0{padding-top:0!important;}
.pT5{padding-top:5px!important;}
.pT10{padding-top:10px!important;}
.pT15{padding-top:15px!important;}
.pT20{padding-top:20px!important;}
.pT25{padding-top:25px!important;}
.pT30{padding-top:30px!important;}
.pT35{padding-top:35px!important;}
.pT40{padding-top:40px!important;}
.pT45{padding-top:45px!important;}
.pB0{padding-bottom:0!important;}
.pB5{padding-bottom:5px!important;}
.pB10{padding-bottom:10px!important;}
.pB15{padding-bottom:15px!important;}
.pB20{padding-bottom:20px!important;}
.lm5{margin-left:5px !important;}
.lm10{margin-left:10px !important;}
.lm15{margin-left:15px !important;}
.lm20{margin-left:20px !important;}
.lm50{margin-left:50px !important;}
.lm60{margin-left:60px !important;}
.lm70{margin-left:70px !important;}
.rm5{margin-right:5px !important;}
.rm10{margin-right:10px !important;}
.rm15{margin-right:15px !important;}
.rm20{margin-right:20px !important;}
.vAT { vertical-align:top!important;}
.vAM { vertical-align:middle!important;}
.vAB { vertical-align:bottom!important;}

.bold { font-weight: bold;}
.normal { font-weight: normal;}

.is-pc { display: block;}
.is-sp { display: none;}

.spTel{ pointer-events: none; }

.mincho{
	font-family:"Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}



/* size
-------------------*/
.size10 { font-size:1.0rem!important; }
.size11 { font-size:1.1rem!important; }
.size12 { font-size:1.2rem!important; }
.size13 { font-size:1.3rem!important; }
.size14 { font-size:1.4rem!important; }
.size15 { font-size:1.5rem!important; }
.size16 { font-size:1.6rem!important; }
.size17 { font-size:1.7rem!important; }
.size18 { font-size:1.8rem!important; }
.size19 { font-size:1.9rem!important; }
.size20 { font-size:2.0rem!important; }
.size21 { font-size:2.1rem!important; }
.size22 { font-size:2.2rem!important; }
.size23 { font-size:2.3rem!important; }
.size24 { font-size:2.4rem!important; }



/* wide
-------------------*/
.w5 {width:5%!important;}
.w10 {width:10%!important;}
.w15 {width:15%!important;}
.w18 {width:18%!important;}
.w20 {width:20%!important;}
.w25 {width:25%!important;}
.w30 {width:30%!important;}
.w35 {width:35%!important;}
.w40 {width:40%!important;}
.w45 {width:45%!important;}
.w50 {width:50%!important;}
.w55 {width:55%!important;}
.w60 {width:60%!important;}
.w65 {width:65%!important;}
.w70 {width:70%!important;}
.w75 {width:75%!important;}
.w80 {width:80%!important;}
.w85 {width:85%!important;}
.w90 {width:90%!important;}
.w95 {width:95%!important;}
.wFull {width:100%!important;}



/* section
-------------------*/
section {
	clear:both;
}
.scInr{
	margin: 0 auto;
	max-width: 1200px;
	width: 97%;
}
.scInrS{
	margin: 0 auto;
	max-width: 1000px;
	width: 97%;
}
.scInrW{
	margin: 0 auto;
	max-width: 1400px;
	width: 97%;
}
.aural span,
span.aural {
	display:none;
	visibility:hidden;
}



/* compo parts
-------------------*/

/*btn*/
.bscBtn01 a {
	background-color:#448CBC;
	border:1px solid #448CBC;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	color:#FFF;
	display: inline-block;
	vertical-align: top;
	zoom: 1; /* Fix for IE7 */
	*display: inline; /* Fix for IE7 */
	padding:13px 50px 10px;
	line-height:140%;
	text-decoration:none;
}
.bscBtn01 a:hover {
	background-color:#FFF;
	color:#448CBC;
}
.bscBtn01 a i{
	margin-left: 0.5em;
}



/*list*/
.indList,
.indListS {
	margin-bottom:15px;
}
.indList li,
.indListS li {
	line-height:170%;
	text-indent:-1em;
	padding-left:1em;
	margin-bottom:5px;
}
.indListS li {
	font-size: 1.1rem !important;
	line-height:130%;
}
.indList li::before,
.indListS li::before {
	content: '・';
	font-size: 50%;
	margin-right: 5px;
	vertical-align: middle;
}
.numList,
.numListS {
	margin-bottom:15px;
	padding-left:1.6em;
}
.numList li,
.numListS li {
	line-height:150%;
	list-style: decimal outside none;
	margin-bottom: 5px;
}
.numListS li {
	font-size: 1.1rem !important;
	line-height: 130%;
}

/*head*/
.imgHead {
	font-size:0;
	line-height:0;
}
.head01{
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 30px;
}
.head01::after{
	content: attr(data-text);
	font-size: 1.8rem;
	display: block;
}
.head02{
	border-left: 4px solid #448cbc;
	font-size: 2.0rem;
	margin-bottom: 20px;
	padding-left: 10px;
}
.head03{
	font-size: 1.7rem;
	margin-bottom: 20px;
}
.head03::before{
	content: '■';
	font-size: 1.3rem;
	margin-right: 5px;
}

/*table*/
.bscTbl01 table{
	border-collapse:collapse;
	border-left:1px solid #fff;
	border-top:1px solid #fff;
	width:100%;
}
.bscTbl01 table th,
.bscTbl01 table td{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	line-height:1.4;
	padding:20px 0 17px;
    text-align: center;
}

.bscTbl01 table td.smallTd{
font-size: 14px;
font-size: 1.4rem;
}

.bscTbl01 table th{
	background-color:#DDD;
}
.bscTbl01 table tr.head th{
	background-color:#006ca5;
	color:#FFF;
}
.tblScroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.tblScroll table {
	-webkit-overflow-scrolling: touch;
	margin-bottom: 0;
	width: 1000px!important;
}


/*topcontrol*/
#topcontrol{
	z-index: 900;
}
#topcontrol a {
	background:url(../cmn_img/scrollup.png) center center no-repeat #000;
	background : url(../cmn_img/scrollup.gif) center center no-repeat\9 #000; /* IE8 */
	*background : url(../cmn_img/scrollup.gif) center center no-repeat #000; /* IE7 */
	_background : url(../cmn_img/scrollup.gif) center center no-repeat #000; /* IE6 */
	display:block;
	height:60px;
	width:60px;
	filter: alpha(opacity=70) !important;
	opacity:0.7 !important;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#topcontrol a:hover {
	filter: alpha(opacity=10) !important;
	opacity:1 !important;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
 	-ms-transform: scale(1.2);
 	-o-transform: scale(1.2);
 	transform: scale(1.2);
}


/* top contents
-------------------*/
/*mv*/
#mv {
width: 100%;
height: 100vh;
  position: relative;
  z-index: 1;
	background: linear-gradient(-45deg, #64c5e0, #0584c6, #64c5e0, #0071ac);
	background-size: 400% 400%;
	animation: Gradient 5s ease infinite;
}
@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}




#mv::before{
width: 30%;
height: 150%;
    transform: skewX(-45deg);
    content: ""; 
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 0;
    z-index: 2;
    background-color:#fdd100;
    transition: .8s;
    opacity: 0;
}


#mv.slideIn:before{
    left: -5%;
    opacity: 1;
}



#mv .mvInr {
width: 90%;
max-width: 1200px;
margin: 0 auto;
position: relative;
height: 100vh;
z-index: 3;
}
#mv .mvTxt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform:translateY(-50%);
  left: 0;
  z-index: 4;
}




#mv .mvTxt .en {
font-family: 'Oswald', sans-serif;
font-size: 143px;
font-size: 14.3rem;
color: #fff;
font-weight: 700;
font-style: italic;
	-webkit-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
 opacity: 0;
 left: -40%;
 position: relative;
}
#mv .mvTxt .en.slideIn{
    left: 0;
    opacity: 1;
}

#mv .mvTxt h1 {
font-size: 44px;
font-size: 4.4rem;
color: #fff;
line-height: 1.3;
padding-top: 5%;
}
#mv .mvTxt h1 small {
font-size: 38px;
font-size: 3.8rem;
}

.mvImg {
position: absolute;
right: -5%;
bottom: -30px;
width: 55%;
  z-index: 5;
}

/*about us*/
#aboutSec {
padding: 100px 0;
}

#aboutSec .asInr {
width: 90%;
max-width: 1500px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
flex-direction: row-reverse;
}

#aboutSec .asInr:before {
content: "ABOUT US";
  position: absolute;
  left: 50%;
  transform:translateX(-50%);
  -webkit- transform:translateX(-50%);
  font-size: 17vw;
  color: #f3f3f3;
  top: 3%;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  z-index: 0;
  width: 100%;
  text-align: center;
}


#aboutSec .asImg {
width: 48%;
position: relative;
    z-index: 1;
}


#aboutSec .asInfo {
width: 50%;
}
#aboutSec .asInfo h2 {
font-size: 24px;
font-size: 2.4rem;
margin-bottom: 30px;
}


#aboutSec .asInfo h3 {
font-size: 48px;
font-size: 4.8rem;
margin-bottom: 40px;
line-height: 1.3;
}
#aboutSec .asInfo h3 small{
font-size: 32px;
font-size: 3.2rem;
display: block;
}
#aboutSec .asInfo p {
font-size: 18px;
font-size: 1.8rem;
font-weight: bold;
line-height: 2;
}


/*what we do*/
#whatSec {

}

#whatSec .titleArea {
position: relative;
}

#whatSec .titleArea::before{
width: 40%;
height: 100%;
transform: skewX(-45deg);
content: "";
position: absolute;
top: 0;
bottom: 0;
left: -22%;
right: 0;
z-index: 1;
background-color: #0483c6;
}

#whatSec .title {
width: 90%;
max-width: 1500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}

#whatSec .title h2 {
color: #fff;

  font-size: 24px;
  font-size: 2.4rem;
}

#whatSec .title h2 .en {
font-family: 'Oswald', sans-serif;
font-size: 110px;
font-size: 11.0rem;
display: block;
padding-bottom: 15px;
}

.wwdList {
width: 90%;
max-width: 1200px;
margin: -5% auto 0;
position: relative;
z-index: 10;
}

.wwdList ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.wwdList ul li {
width: 49%;
max-width: 580px;
position: relative;
padding-bottom: 20px;
margin-bottom: 60px;
}
.wwdList ul li .en {
color: #f3f3f3;
font-family: 'Oswald', sans-serif;
text-align: right;
position: absolute;
right: 0;
bottom: 0;
z-index: -1;
font-size: 72px;
font-size: 7.2rem;
line-height: 1.1!important;
width: 100%;
font-weight: 600;
}
.wwdList ul li dl {
position: relative;
z-index: 1;
}

.wwdList ul li dl dt {
padding-top: 10px;
}
.wwdList ul li dl dt span {
display: block;
font-size: 26px;
font-size: 2.6rem;
font-weight: bold;
padding: 15px 0 25px;
}

.wwdList ul li dl dt small {
background: #0483c6;
color: #fff;
padding: 3px 8px;
font-size: 18px;
font-size: 1.8rem;
font-weight: bold;
}

.wwdList ul li dl dd {
line-height: 1.7;
}

/*athlete*/
#athleteSec{
background: url("../../images/bg_01.jpg") center center no-repeat;
background-size: cover;
position: relative;
padding: 80px 0 120px;
}

#athleteSec:before {
content: "ATHLETE";
font-family: 'Oswald', sans-serif;
color: #fff;
width: 100%;
font-size: 20vw;
font-weight: 500;
opacity: 0.1;
text-align: center;
position: absolute;
left: 0;
top: 0;
line-height: 0.7;
}

#athleteSec h2 {
text-align: center;
font-size: 30px;
font-size: 3.0rem;
color: #fff;
margin-bottom: 30px;
}

#athleteSec h2 span {
border-bottom: 1px solid #fff;
}

.slideArea {
width: 90%;
max-width: 1500px;
margin: 0 auto;
}
.slideArea .slide {
position: relative;
}

.slideArea .name{
position: absolute;
z-index: 2;
color: #fff;
font-size: 18px;
font-weight: bold;
left: 5%;
bottom: 10px;
line-height: 1.3!important;
}
.slideArea .name span {
font-family: 'Oswald', sans-serif;
font-size: 40px;
font-size: 4.0rem;
font-weight: 500;
display: block;
}

/*athlete detail*/


#adSec{
background: #0483c6;
padding: 80px 0;
}

#adSec .adInr {
width: 90%;
max-width: 1500px;
margin: 0 auto;
}

#adSec .adInr .adBox h2 {
color: #fff;
text-align: center;
font-size: 28px;
font-size: 2.8rem;
margin-bottom: 40px;
}

#adSec .adInr .adBox h2 span {
font-family: 'Oswald', sans-serif;
font-size: 120px;
font-size: 12.0rem;
font-weight: 500;
display: block;
padding-bottom: 20px;
}

#adSec .adInfo {
display: flex;
justify-content: space-between;
}

#adSec .adInfo .adHalf {
width: 49%;
color: #fff;
}

#adSec .adInfo .adHalf .adImg {
margin-bottom: 30px;
}

#adSec .adInfo .adHalf h3 {
font-family: 'Oswald', sans-serif;
font-size: 24px;
font-size: 2.4rem;
font-weight: 500;
display: block;
padding-bottom: 15px;
color: #fdd100;
}

#adSec .adInfo .adHalf .pdInfo{
display: flex;
justify-content: space-between;
margin-bottom: 30px;
}

#adSec .adInfo .adHalf .pdInfo ul {
width: 48%;
}

#adSec .adInfo .adHalf .pdInfo ul li {
border-bottom: 1px solid #40a1d4;
padding: 20px 0;
}

#adSec .adInfo .adHalf .pdInfo ul li dl {
display: flex;
justify-content: flex-start;
}
#adSec .adInfo .adHalf .pdInfo ul li dl dt {
width: 20%;
font-size: 18px;
font-size: 1.8rem;
font-weight: bold;
}
#adSec .adInfo .adHalf .positionTxt span {
display: inline-block;
}

#adSec .adInfo .adHalf .halfBox{
display: flex;
justify-content: space-between;
}
#adSec .adInfo .adHalf .halfBox .bioList,
#adSec .adInfo .adHalf .halfBox .careerList{
width: 49%;
}
#adSec .adInfo .adHalf .halfBox ul {
padding-top: 30px;
}
#adSec .adInfo .adHalf .halfBox ul li dl dt{
font-size: 26px;
font-size: 2.6rem;
margin-bottom: 25px;
line-height: 0;
font-family: 'Oswald', sans-serif;
}
#adSec .adInfo .adHalf .halfBox ul li {
position: relative;
padding-left: 7px;
}

#adSec .adInfo .adHalf .halfBox ul li dl{
padding-left: 33px;
padding-bottom: 40px;
border-left: 1px solid #fff;
}

#adSec .adInfo .adHalf .halfBox ul li:last-child dl{
border-left:none;
}
#adSec .adInfo .adHalf .halfBox ul li dl dt:before{
content: "●";
font-size: 20px;
font-size: 2.0rem;
color: #fdd100;
position: absolute;
left: -2px;
top: 0;
}

#adSec .adInfo .adHalf .halfBox ul li dl dd{
line-height: 1.3;
}

/*message*/
#messageSec {
background: #f1f1f1;
position: relative;
}

#messageSec::before{
width: 40%;
height: 100%;
transform: skewX(-45deg);
content: "";
position: absolute;
top: 0;
bottom: 0;
left: -30%;
right: 0;
z-index: 1;
background-color: #fdd100;
}

#messageSec .msInr {
width: 90%;
max-width: 1500px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 2;
padding-top: 60px;
padding-bottom: 60px;
}

#messageSec .msInr:before{
content: "MESSAGE";
  position: absolute;
  left: 50%;
  transform:translateX(-50%);
  -webkit- transform:translateX(-50%);
  font-size: 16vw;
  color: #e9e9e9;
  top: 8%;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  z-index: -1;
  width: 100%;
  text-align: right;
}

#messageSec .msImg {
width: 50%;
line-height: 0;
text-align: right;
}
#messageSec .msInfo {
width: 100%;
}
#messageSec .msInfo h2 {
font-size: 24px;
font-size: 2.4rem;
margin-bottom: 30px;
}


#messageSec .msInfo h3 {
font-size: 38px;
font-size: 3.8rem;
margin-bottom: 40px;
line-height: 1.3;
}

#messageSec .msInfo p {
font-size: 18px;
font-size: 1.8rem;
font-weight: bold;
line-height: 2;
}
#messageSec .msInfo p.name {
text-align: right;
font-size: 36px;
font-size: 3.6rem;
}
#messageSec .msInfo p.name small {
font-size: 20px;
font-size: 2.0rem;
margin-right: 10px;
}

/*biography*/

#bioSec {
background: #e9e9e9;
padding: 100px 0 80px;
position: relative;
}

#bioSec h3 {
font-size: 80px;
font-size: 8.0rem;
text-align: center;
position: absolute;
width: 100%;
text-align: center;
left: 0;
top: -40px;
color: #fdd100;
font-family: 'Oswald', sans-serif;
z-index: 2;
}

#bioSec .bioInr {
width: 90%;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
#bioSec .bioInr ul {
width: 48%;
}
#bioSec .bioInr ul li {
padding: 20px 0;
border-bottom: 1px solid #d3d3d3;
}

#bioSec .bioInr ul li dl {
display: flex;
justify-content:flex-start;
}
#bioSec .bioInr ul li dl dt {
width: 20%;
font-family: 'Oswald', sans-serif;
font-size: 20px;
font-size: 2.0rem;
font-weight: 600;
}

#bioSec .bioInr ul li dl dd {
line-height: 1.5;
width: 80%;
}

/*our logo*/

#logoSec{
padding: 120px 0;
}
.lsInr {
width: 90%;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

.lsImg {
width: 50%;
}

.lsInfo {
width: 50%;
}

.lsInfo h2 {
font-size: 24px;
font-size: 2.4rem;
padding-bottom: 30px;
}

.lsInfo h2 span {
display: block;
font-family: 'Oswald', sans-serif;
font-size: 48px;
font-size: 4.8rem;
padding-bottom: 30px;
}

.lsInfo p {
line-height: 2!important;
}
.language {
position: absolute;
top: 30px;
right: 90px;
z-index: 11;
}

.language a {
font-family: 'Oswald', sans-serif;
color: #fff;
padding: 0 10px;
}

.language a:first-child {
border-right: 1px solid #fff;
}


/* Adjustment
-------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1600px) {
#mv .mvTxt .en {
    font-size: 130px;
    font-size: 13.0rem;
}
#aboutSec .asImg {
    width: 43%;
}
#aboutSec .asInfo {
    width: 55%;
}
#aboutSec .asInfo h3 {
    font-size: 40px;
    font-size: 4.0rem;
}
#messageSec .msInfo h3 {
    font-size: 30px;
    font-size: 3.0rem;
}
#messageSec .msInfo p.name small {
    font-size: 18px;
    font-size: 1.8rem;
}
#messageSec .msInfo p.name {
    text-align: right;
    font-size: 28px;
    font-size: 2.8rem;
    padding-top: 40px;
}
}

@media only screen and (max-width: 1300px) {
#mv .mvTxt .en {
    font-size: 120px;
    font-size: 12.0rem;
    padding-top: 5%;
}
#adSec .adInr .adBox h2 span {
    font-size: 100px;
    font-size: 10.0rem;
}
#adSec .adInr .adBox h2 {
    font-size: 22px;
    font-size: 2.2rem;
}
#adSec .adInfo .adHalf .halfBox ul li dl dd {
    font-size: 14px;
    font-size: 1.4rem;
}
#adSec .adInfo .adHalf.ahL {
width: 40%;
}
#adSec .adInfo .adHalf.ahR {
width: 58%;
}
#adSec .adInfo .adHalf .halfBox ul li dl {
    padding-bottom: 30px;
}

#messageSec .msInr {
align-items: flex-end;
}
#messageSec .msImg {
    width: 40%;
}
#messageSec .msInfo {
    width: 100%;
    padding-bottom: 40px;
}
.slideArea .name span {
    font-size: 32px;
    font-size: 3.2rem;
}
.slideArea .name {
    font-size: 16px;
    font-size: 1.6rem;
}
#footer .ftInr .ftBox {
width: 80%;
}

}

@media only screen and (max-width: 1200px) {
#mv .mvTxt .en {
    font-size: 100px;
    font-size: 10.0rem;
}
#mv .mvTxt h1 small {
    font-size: 32px;
    font-size: 3.2rem;
}
#mv .mvTxt h1 {
    font-size: 40px;
    font-size: 4.0rem;
}
#aboutSec .asInfo p {
    font-size: 16px;
    font-size: 1.6rem;
}
#messageSec .msInfo p {
    font-size: 16px;
    font-size: 1.6rem;
}
#messageSec .msImg img{
    width: 90%;
}
#aboutSec .asInfo h3 {
    font-size: 30px;
    font-size: 3.0rem;
}
#aboutSec .asInfo h3 small {
    font-size:24px;
    font-size: 2.4rem;
}
#aboutSec .asInfo h2 {
    font-size: 20px;
    font-size: 2.0rem;
}
#whatSec .title h2 .en {
    font-size: 80px;
    font-size: 8.0rem;
}
#whatSec .title h2 {
    font-size: 20px;
    font-size: 2.0rem;
}
#messageSec .msInfo h2 {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 30px;
}
.lsInfo h2 {
    font-size: 20px;
    font-size: 2.0rem;
}

}
@media only screen and (max-width: 1080px) {
#mv .mvTxt h1 small {
    font-size: 28px;
    font-size: 2.8rem;
}
#mv .mvTxt h1 {
    font-size: 36px;
    font-size: 3.6rem;
}
.slideArea .name span {
    font-size: 28px;
    font-size: 2.8rem;
}
.slideArea .name {
    font-size: 14px;
    font-size: 1.4rem;
}
#adSec .adInfo {
display: block;
}
#adSec .adInfo .adHalf.ahL {
    width: 100%;
    margin-bottom: 40px;
}


#adSec .adInfo .adHalf.ahR {
   width: 100%;
}
#messageSec .msInfo p {
    font-size: 15px;
    font-size: 1.5rem;
}
#footer .ftBox table th {
    font-size: 16px;
    font-size: 1.6rem;
}
#footer .ftBox table td {
    font-size: 14px;
    font-size: 1.4rem;
}
#footer .ftBox .tel {
    font-size: 16px;
    font-size: 1.6rem;
}

}


@media only screen and (max-width: 1024px) {
#mv .mvTxt .en {
    font-size: 90px;
    font-size: 9.0rem;
}
.wwdList ul li dl dt small {
    font-size: 16px;
    font-size: 1.6rem;
}
.wwdList ul li dl dt span {
    font-size: 22px;
    font-size: 2.2rem;
}
#adSec .adInr .adBox h2 span {
    font-size: 80px;
    font-size: 8.0rem;
}
#messageSec .msInfo h3 {
    font-size: 26px;
    font-size: 2.6rem;
}
#messageSec .msInfo p.name {
    font-size: 24px;
    font-size: 2.4rem;
}
#messageSec .msInfo p.name small {
    font-size: 14px;
    font-size: 1.4rem;
}
}


@media only screen and (max-width: 900px) {
#mv .mvTxt .en {
    font-size: 60px;
    font-size: 6.0rem;
}
#mv .mvTxt h1 {
    font-size: 30px;
    font-size: 3.0rem;
}

#aboutSec .asInr {
display: block;
}
#aboutSec .asInfo {
    width: 100%;
}
#aboutSec {
 padding: 80px 0 100px;
}
#aboutSec .asImg {
    position: absolute;
    right: 0;
    bottom: -15%;
    z-index: -1;
    opacity: 0.3;
}
.wwdList ul li .en {
    font-size: 52px;
    font-size: 5.2rem;
}
#messageSec .msInr {
display: block;
padding-top: 20px;
padding-bottom: 80px;
}
#messageSec .msInfo {
    width: 100%;
    padding-top: 10%;
}
#messageSec .msImg img {
    width: 40%;
}
#messageSec .msImg {
    width: 100%;
    text-align: right;
    position: relative;
    z-index: -1;
}
#messageSec .msInr:before {
    top: 12%;
    font-size: 17vw;
}

#messageSec::before {
    width: 80%;
    left: -61%;
}
/*
#messageSec .msInfo {
    width: 100%;
    background: #fff;
    padding: 40px;
    margin-top: -10%;
}
*/
#logoSec {
    padding: 80px 0;
}

.lsInr {
    display: block;
}
.lsImg {
    width: 100%;
    text-align: center;
}
.lsImg img{
    width: 50%;
}
.lsInfo h2 {
text-align: center;
padding: 40px 0;
}
.lsInfo {
    width: 100%;
}
#footer .ftInr {
    display: block;
}
#footer .ftL, #footer .ftR {
    width: 100%;
    padding: 40px 0;
}
#footer .ftInr .ftBox {
    width: 90%;
    max-width: 90%;
}

#footer .ftInr .ftBox h2 {
text-align: center;
}
#footer .ftBox .tel {
text-align: center;
}
small#copyright {
    padding: 24px 0 60px;
}

#contents {
margin: 0 auto;
}

#header .logo img {
    height: 60px;
}
.language {
    top: 30px;
    right: inherit;
    left: 10px;
}

}



/* for SP
-------------------------------------------------------------------------------------*/

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

body {
font-size: 14px;
font-size: 1.4rem;
}
/* indent
-------------------*/
.is-sp{ display: block!important;}
.is-pc{ display: none!important;}
.spImg{ max-width: 100%;}
a.spTel{
	pointer-events: auto;
}

/* compo parts
-------------------*/

/*btn*/
.bscBtn01 a {
	display: block;
	padding: 20px 5%;
	margin-bottom: 10px;
	text-align: center;
	width: 100%;
}

/*topcontrol*/
#topcontrol{
	left: 0!important;
	bottom: 0!important;
	height: 40px;
	width: 100%;
}
#topcontrol a{
	display: block;
	height: 100%;
	padding: 10px 0;
	width: 100%;
}
#mv .mvTxt .en {
    font-size: 40px;
    font-size: 4.0rem;
    line-height: 1.1;
    padding-top: 0;
}
#mv .mvTxt h1 small {
    font-size: 18px;
    font-size: 1.8rem;
}
#mv .mvTxt h1 {
    font-size: 20px;
    font-size: 2.0rem;
}
#mv .mvTxt {
position: inherit;
top: inherit;
    transform: none;
    -webkit- transform: none;
}
.mvImg {
    position: inherit;
    right: inherit;
    bottom: inherit;
    width: 100%;
    z-index: 5;
    text-align: right;
}
.mvImg img {
width: 80%;
}

#mv {
padding-top: 20%;
background:linear-gradient(#64c5e0, #0684c6);
       background-size: 100% 100%;
       animation: none;
       height: 90vh;
}


#mv::before{
    left: -200%;
}

#mv.slideIn:before {
    width: 100%;
    height: 150%;
    left: -134%;
}

#mv .mvInr {
height: 100%;
}


#mv .mvTxt h1 small {
display: inline-block;
}
#header .logo img {
    height: 43px;
}
#aboutSec {
    padding: 40px 0 60px;
}
#aboutSec .asInfo h3 small {
    font-size: 18px;
    font-size: 1.8rem;
}
#aboutSec .asInfo h3 {
    font-size: 22px;
    font-size: 2.2rem;
}

#aboutSec .asInr:before {
    top: -12%;
}
.koreanWrap #aboutSec .asInr:before {
    top: -14%;
}
#aboutSec .asInfo p {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}
#aboutSec .asImg {
width: 76%;
    right: -10%;
    bottom: -10%;
}
#aboutSec .asInfo h2 {
    font-size: 16px;
    font-size: 1.6rem;
}
#whatSec .title h2 .en {
    font-size: 40px;
    font-size: 4.0rem;
}
#whatSec .title h2 {
    font-size: 16px;
    font-size: 1.6rem;
}
#whatSec .titleArea img{
width: 130%;
}
#whatSec .titleArea::before {
    left: -30%;
}
.wwdList ul {
display: block;
}
.wwdList ul li {
width: 100%;
margin-bottom: 30px;
}
.wwdList ul li dl dd {
    font-size: 14px;
    font-size: 1.4rem;
}
.wwdList ul li dl dt span {
    font-size: 18px;
    font-size: 1.8rem;
}
.wwdList ul li dl dt small {
    font-size: 15px;
    font-size: 1.5rem;
}
#athleteSec:before {
    font-size: 28vw;
}
#athleteSec {
    padding: 40px 0 60px;
}
#athleteSec h2 {
    font-size: 20px;
    font-size: 2.0rem;
}
.slideArea .name span {
    font-size: 20px;
    font-size: 2.0rem;
}
.slideArea .name {
    font-size: 12px;
    font-size: 1.2rem;
}
.slideArea .name {
    left: 10%;
}
#adSec .adInr .adBox h2 span {
    font-size: 40px;
    font-size: 4.0rem;
    padding-bottom: 10px;
}
#adSec {
    padding: 40px 0;
}
#adSec .adInr .adBox h2 {
    font-size: 16px;
    font-size: 1.6rem;
}
#adSec .adInfo .adHalf .pdInfo {
display: block;
}
#adSec .adInfo .adHalf .pdInfo ul {
    width: 100%;
}
#adSec .adInfo .adHalf .halfBox ul li dl {
    padding-left: 18px;
}
#adSec .adInfo .adHalf .halfBox ul li dl dt:before {
    font-size: 16px;
    font-size: 1.6rem;
    left: 0;
}
#adSec .adInfo .adHalf .halfBox ul li dl dd {
    font-size: 12px;
    font-size: 1.2rem;
}
#adSec .adInfo .adHalf .pdInfo ul li dl dt {
    font-size: 14px;
    font-size: 1.4rem;
}

#messageSec::before {
    width: 100%;
    left: -110%;
}
#messageSec .msInr {
padding-bottom: 40px;
}
#messageSec .msInr:before {
    top: 5%;
}
#messageSec .msInfo h2 {
    font-size: 16px;
    font-size: 1.6rem;
}
#messageSec .msInfo {
padding-bottom: 0;
}
#messageSec .msInfo h3 {
    font-size: 20px;
    font-size: 2.0rem;
}
#messageSec .msInfo p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: normal;
}
#messageSec .msInfo p.name small {
    font-size: 12px;
    font-size: 1.2rem;
}
#messageSec .msInfo p.name {
    font-size: 20px;
    font-size: 2.0rem;
}
#bioSec h3 {
    font-size: 60px;
    font-size: 6.0rem;
}
#bioSec .bioInr {
display: block;
}
#bioSec .bioInr ul {
    width: 100%;
}
#bioSec {
    background: #e9e9e9;
    padding: 40px 0;
}
.lsInfo h2 {
    font-size: 16px;
    font-size: 1.6rem;
}

.lsInfo h2 span {
    padding-bottom: 10px;
    font-size: 30px;
    font-size: 3.0rem;
}
.lsImg img {
    width: 70%;
}
#logoSec {
    padding: 60px 0;
}
#footer .ftInr .ftBox h2 {
    font-size: 30px;
    font-size: 3.0rem;
}
#footer .ftBox table th {
width: 30%;
}
#footer .ftBox .tel a {
    padding-top: 10px;
}
small#copyright {
font-size: 10px;
font-size: 1.0rem;
}
#Nav nav ul li a span {
    font-size: 30px;
    font-size: 3.0rem;
}

.bscTbl01 {
overflow-x: scroll;
overflow-y: hidden;
}

.bscTbl01 table {
width: 600px!important;
}

.bscTbl01 table th, .bscTbl01 table td {
font-size: 12px;
font-size: 1.2rem;
}
.bscTbl01 table td.smallTd {
font-size: 12px;
font-size: 1.2rem;
}
.scrollTxt {
margin-bottom: 10px;
}
.scrollTxt span {
font-size: 12px;
font-size: 1.2rem;
background: #fff;
border-radius: 50px;
padding: 8px 20px;
display: inline-block;
color: #006ca5;
}


}
/*SP END*/



/* for ipad
-------------------------------------------------------------------------------------*/

.portrait.ipad #mv {
height: 50vh;
}

.portrait.ipad #mv .mvInr {
height: 50vh;
}

/* for iphoneX
-------------------------------------------------------------------------------------*/
@media screen and (min-height: 800px) {
.portrait.iphone #mv {
    height: 64vh;
}
}


/* animation
-------------------------------------------------------------------------------------*/

@-webkit-keyframes passingBar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passingBar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passingTxt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passingTxt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}

.passing .passingBar {
	position: relative;
	display: inline-block;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passingBar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #0071ac;
}
.passing .passingTxt {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
    
}
.passing.move .passingBar:before {
	-webkit-animation: passingBar 1s ease 0s 1 normal forwards;
	animation: passingBar 1s ease 0s 1 normal forwards;
}
.passing.move .passingTxt {
	-webkit-animation: passingTxt 0s ease .5s 1 normal forwards;
	animation:passingTxt 0s ease .5s 1 normal forwards;
}




.mvImg {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 2500ms;
	}

.mvImg.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}
    
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 1000ms;
	}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}
    

@media only screen and (min-width: 480px) { 
.wwdList ul li.fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}

.wwdList ul li.fadein:nth-of-type(4) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
}




/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #0684c6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading .ldInr {
position: relative;
  width: 100vw;
  height: 100vh;
}
#loading .ldBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

.loader {
  color: #ffffff;
  margin: 0 auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}


.loaded {
  opacity: 0;
  visibility: hidden;
}

