@charset "UTF-8";

a.tel{
    pointer-events: all;
}

/*-----------------------------------------------
__Header
-----------------------------------------------*/
#top-head > div {
    position: fixed;
	width: 100%;
    height: 100vh;
    top: 0;
    
    color: #efefef;
    transition: all ease .3s;
    border-bottom: none;

    background-image: linear-gradient(to top, #3c51bc 0%, #a18cd1 50%, #f5efc8 85%, #fff 100%);
    
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
}
#top-head.fixed > div {
    border-color: #6477d4;
    height: 100vh;
    animation: none;
}
#top-head.open > div.fl_box {
    opacity: 1;
    pointer-events: all;
}



#top-head.fixed.none > div {
    opacity: 0;
    z-index: -1;
}
header h1{
    top: 16px;
    bottom: auto;
    padding: 20px;
    background: #fff;
    border-color: #fff;
    
    left: 50%;
    transform: translateX(-50%);
}
#top-head.fixed h1{
    height: 180px;
    padding: 20px;
    bottom: 0;
    animation: none;
    border-bottom: 1px solid #fff;
}
#top-head.fixed h1 img{
    height: 150px;
    width: auto;
}
#top-head.fixed h1{
    opacity: 0;
}
#top-head.open h1,
#top-head.fixed.open h1{
    opacity: 1;
    background: none;
}

/*-----------------------------------------------
__Nav
-----------------------------------------------*/
header nav#gl_nv a{
    display: block;
    
    color: #fff;
    padding: 30px;
}
header nav#gl_nv ul{
    width: 100%;
    flex-direction: column;
    padding-right: 0;
}
header nav#gl_nv,
header nav#gl_nv ul > li{
    width: 100%;
    text-align: center;
}
header nav#gl_nv ul > li::after{
    display: none;
}

header nav#gl_nv a:hover{
    transform: translateY(0);
}
header nav#gl_nv a:not(.tel){
    font-size: 120%;
}
header nav#gl_nv a.tel{
    display: table;
    color: #333;
    margin: 30px auto 0 auto;
    pointer-events: none;
}
header#top-head.open nav#gl_nv a.tel{
    pointer-events: all;
}

#language{
    position: fixed;
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateY(0) translateX(50%);
    transition: all ease .5s;

    opacity: 0;
    pointer-events: none;
}
#top-head.open #language{
    opacity: 1;
    pointer-events: all;
}
#language ul{
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
#language li a{
    width: 120px;
    background:#6477d4;
}
#language li a.current{
    background:#fff;
    color: #3c51bc;
}

.btn {
    position: fixed;
    top: 16px;
    right: 16px;

    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 100;
  
    background:#6477d4;
  }
  .btn-line {
    width: 80%;
    height: 3px;

    background-color: #fff;
    position: relative;
    transition: .2s;
  }
  .btn-line::before,
  .btn-line::after {
    content: "";

    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: .5s;
    left: 0;
  }
  .btn-line::before {
    transform: translateY(-10px);
  }
  .btn-line::after {
    transform: translateY(10px);
  }

  .btn-line.open {
    background-color: transparent;
  }
  
  .btn-line.open::before,
  .btn-line.open::after {
    content: "";
    transition: .2s;
  }
  .btn-line.open::before {
    transform: rotate(45deg);
  }
  .btn-line.open::after {
    transform: rotate(-45deg);
  }


.fullpage h2{
    white-space: nowrap;
    font-size: 2.2em;
    padding-bottom: 1em;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
    left: 0 !important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    right: 0 !important;
}

.fullpage::before,.fullpage::after{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.fullpage::before{
    content: "SCROLL";
    color: #fff;
    bottom: 60px;

    font-size: 110%;
    font-weight: bold;
}
.fullpage::after{
    content: "";
    width: 3px;
    height: 1px;
    background: #fff;
    bottom: 60px;
    animation: headLong 2s infinite ;
}
@keyframes headLong {
    0% {
        height: 1px;
        bottom: 60px;
    }
    50% {
        height: 50px;
        bottom: 0px;
    }
    100% {
        height: 1px;
        bottom: 0px;
    }
}

#greeting article.fl_box,
#greeting dl{
	flex-direction: column;
}
#greeting article.fl_box > article{
	width: 100%;
	padding-bottom: 1em;
}
#greeting dl::before{
	content: "message from";
	border:none;
	left: -0.2em;
	top: -0.8em;
	font-size: 150%;
	white-space: nowrap;
}
#greeting dl{
	padding:50px 30px 30px 30px;
	align-items: center;
}
#greeting dt{
	padding-right: 0;
	margin-bottom: 1em;
}
#greeting dl.en dd{
	padding-left: 0;
}

#company ul.fl_box dl,
#company td .fl_box{
    align-items: flex-start;
    flex-direction: column;
}
#company ul.fl_box dd,
#company dd a{
    margin-top: 1em;
    white-space: nowrap;
}
#company ul.fl_box{
    flex-direction: column;
}
#company ul.fl_box > li{
    padding: 5%;
    width: 100%;
    border: 4px solid #f7f8fd;
    margin-bottom: 20px;
}
#company ul.fl_box > li:last-of-type dd{
    line-height: 1.95;
}


#contact .wrap{
    flex-direction: column;
    align-items: center;
}
#contact h2{
    text-align: center;
}
#contact article,
#contact ul.fl_box{
    width: 100%;
}

footer div.fl_box{
    flex-wrap: wrap;
    justify-content: center;
}
footer dl.fl_box{
    width: 100%;
    justify-content: center;
    flex-direction: column;
}
footer dl.fl_box dt{
    margin: 0 auto 1em auto;
    max-width: 200px;
}
footer dl.fl_box dd{
    text-align: center;
    margin-left: 0;
}

footer a dd{
    opacity: 1;
}


