  .fontplus-trial-banner{
    display: none;
}

html{ background: #fff;
	width: 100vw;
	overflow-x: hidden;
}

body{
	color: #000;
	
	background: #FFF;
    font-family: 'YakuHanJP','Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size:15px;
	line-height: 2.4;
	margin: 0px;
	padding: 0px;
	position:relative;
	width: 100vw;
	/* overflow-x: hidden; */
	letter-spacing: 1px;

}

img {
	max-width: 100%;
	height: auto;
	vertical-align:bottom;
	backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

a:focus, *:focus { outline:none; }

a,a:visited{
    text-decoration: none;
	color: #000;
}
a:hover{
    text-decoration:none;
	color: inherit;
}

::selection {
    background: #000;
    color: #fff;
}

::-moz-selection {
    background: #000;
    color: #fff;
}



.en{
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
}

.font_UD80_R{
    /* font-family: 'YakuHanJP',"FOT-UD角ゴC80 Pro L"; */
}

.font_UD80_M{
    /* font-family: 'YakuHanJP',"FOT-UD角ゴC80 Pro M"; */
}

.font_R{
    /* font-family: 'YakuHanJP',"FOT-UD角ゴ_スモール Pr6N R"; */
}

.font_M{
    /* font-family: 'YakuHanJP',"FOT-UD角ゴ_スモール Pr6N M"; */
}

.dummy_color{
    background-color: darksalmon;
}

.color_gradation{
    background: -webkit-linear-gradient( 90deg, rgb(53, 181, 151) 20%, rgb(0, 160, 233) 80% );
    background: linear-gradient( 90deg, rgb(53, 181, 151) 20%, rgb(0, 160, 233) 80% );
    
    -webkit-background-clip: text;
    
    color: transparent;
}

p{
	text-align:justify;
	text-justify:distribute;
}

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

@media screen and (max-width: 1000px) {
	body{
        font-size: 14px;
        line-height: 2.2
	}
}

@media screen and (max-width: 480px) {
    body{
        line-height: 2
	}
}


@media screen and (max-width: 380px) {
	body{
        font-size: 13px;
	}
}


/* 
.menu_nav > li .sub li aside::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-color: #00559a;
    width: 0%;
    height: 100%;
    top: 0px;
    left: 0px;
} */

a.text_hover{
    transition: all 500ms 0s ease;
    color: #009933;
    text-decoration: underline;
}

a.text_hover:hover{
    color: #0050c0;
    text-decoration: underline;
 }


/* loading */


#loading{
   position: fixed;
   z-index: 10000000000000000;
   width: 100vw;
   height: 100vh;
   left: 0;
   top: 0;
   background-color: rgba(255, 255, 255, 1);
   backdrop-filter: blur(20px);
}

#loading article{
    /* width: 245px; */
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* background: linear-gradient( 90deg, #35b597 20%, #00a0e9 80% ); */
}

#loading .logo{
    display: flex;
}

#loading .logo span{
    display: block;
    width: 120px;
}

#loading p{
    white-space: nowrap;
    padding-top: 8px;
    padding-left: 15px;
}

.loader{
    position: relative;
    width: 100%;
    margin: 20px auto 0px;
    text-align: center;
    line-height: 1;
}

.loader::before,
.loader::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient( 90deg, #35b597 20%, #00a0e9 80% );
    top: 0px;
    left: 0px;
}

.loader::after{
    top: auto;
    bottom: 0px;
}

.loader span{
    display: block;
    padding: 10px;
}

.loader span i{
    display: inline-block;
    padding: 0px .5px;
}

.loader span i:nth-child(1){
    color: #35b597;
    animation: bound 1s infinite linear 0s;
}

.loader span i:nth-child(2){
    color: #24aeb2;
    animation: bound 1s infinite linear .1s;
}

.loader span i:nth-child(3){
    color: #1aaac2;
    animation: bound 1s infinite linear .2s;
}

.loader span i:nth-child(4){
    color: #15a8ca;
    animation: bound 1s infinite linear .3s;
}

.loader span i:nth-child(5){
    color: #12a7ce;
    animation: bound 1s infinite linear .4s;
}

.loader span i:nth-child(6){
    color: #0ea5d4;
    animation: bound 1s infinite linear .5s;
}

.loader span i:nth-child(7){
    color: #0aa4da;
    animation: bound 1s infinite linear .6s;
}

.loader span i:nth-child(7){
    color: #00a0e9;
    animation: bound 1s infinite linear .7s;
}
   

@keyframes bound {
    0% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(-5px);
	}
    40% {
		transform: translateY(2.5px);
	}
    60% {
		transform: translateY(0px);
	}
}


.load #loading article{
    animation: alpha_0 .6s forwards cubic-bezier(.63,.28,.36,.82) 0s;
}

.load #loading{
    animation: bgcolor_0 1s forwards cubic-bezier(.63,.28,.36,.82) 1s;
}

.load.switching #loading article{
    display: none;
}

.load.switching #loading{
	animation: bgcolor_100  .5s ease-in-out forwards 0s;
}


@keyframes bgcolor_0 {

    0% {
		background-color: rgba(255, 255, 255, 1);
	}
    40%{
        backdrop-filter: blur(20px);
    }
	100% {
		background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(0px);
	}

}

@keyframes bgcolor_100 {

    0% {
		background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(0px);
	}
    60%{
        backdrop-filter: blur(20px);
    }
	100% {
		background-color: rgba(255, 255, 255, 1);
        
	}

}

/* loading */

/* HTML: <div class="loader"><span class="en split">LOADING</span></div> */

  
/* HTML: <div class="loader"><span class="en split">LOADING</span></div> */


/* header **/


header{
	transition: all 500ms 0s ease;
	position: fixed;
	width: 100%;
	z-index: 100000;
	height: 85px;
	top: 0;
	font-size: 14px;
}

header.active{
    height: 100vh;
}

header::before{
	transition: all 350ms 0s ease;
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 0%;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
	z-index: 50;
}

header.nodisplay{
	top: -100px;
}

header.bg_w::before{
    height: 100%;
}
header.active::before{
	height: 100%;
    background-color: rgba(255, 255, 255, 1);
}

header .main_nav{
    position: relative;
    z-index: 1000;
}

.logo a{
    display: block;
}

header .header .logo .logo_c,
header .header .logo .logo_b,
header .header .logo .logo_w{
	display: none;
}

.hc header .header .logo .logo_c,
.hb header .header .logo .logo_b,
.hw header .header .logo .logo_w{
	display: inline-block;
}

.hb header.bg_w:not(.nodisplay_logo) .header .logo .logo_b,
.hw header.bg_w:not(.nodisplay_logo) .header .logo .logo_w,
.hb header.active:not(.nodisplay_logo) .header .logo .logo_b,
.hw header.active:not(.nodisplay_logo) .header .logo .logo_w{
    display: none;
}

.hb header.bg_w:not(.nodisplay_logo) .header .logo .logo_c,
.hw header.bg_w:not(.nodisplay_logo) .header .logo .logo_c,
.hb header.active:not(.nodisplay_logo) .header .logo .logo_c,
.hw header.active:not(.nodisplay_logo) .header .logo .logo_c{
    display: inline-block;
}

header .header .logo_area{
    position: absolute;
    width: 280px;
    left: 18px;
    top: 18px;
}

header .header .logo_area .logo{
    width: 148px;
}

header .header .logo_area p{
    width: 132px;
    display: flex;
    align-items: flex-end;
    justify-content: right;

    font-size: 12px;
    line-height: 1;
    padding-bottom: 5px;
}

header .header .logo_area p a{
    color: #000;
}

.hw header .header .logo_area p a{
    color: #FFF;
}


.hw header.bg_w:not(.nodisplay_logo) .header .logo_area p a,
.hw header.active:not(.nodisplay_logo) .header .logo_area p a{
    color: #000;
}



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

    header .header .logo_area .logo{
        width: 130px;
    }


    header .header .logo_area{
        position: absolute;
        width: 115px;
        left: 15px;
        top: 11px;
        padding-right: 5px;
    }

    header .header .logo_area.flex{
        display: block;
    }

    header .header .logo_area p{
        width: 130px;
        display: block;
        
        font-size: 13px;
        line-height: 1;
        padding-bottom: 5px;
        padding-top:5px;
        letter-spacing: 1.3px;
        padding-left: 4px;
    }

}


@media screen and (max-width: 767px) {
	
    header{
        height: 70px;
        font-size: 13px;
    }

    header .header .logo_area .logo{
        width: 110px;
    }


    header .header .logo_area{
        position: absolute;
    
        width: 115px;
        left: 12px;
        top: 9px;
        padding-right: 5px;
    }

    header .header .logo_area.flex{
        display: block;
    }

    header .header .logo_area p{
        width: 115px;
        display: block;
        
        font-size: 11px;
        line-height: 1;
        padding-bottom: 5px;
        padding-top: 5px;
        letter-spacing: 1.3px;
        padding-left: 3px;
    }

}







/* header **/






/* content **/


.wrapper{
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    min-width: 1000px;
    margin: 0 auto;
}



/* type1 */

#contents_type1{
    position: relative;
    padding-top: 85px;
    top: 0;
}

#contents_type1::before{
    content: "";
    position: absolute;
    display: block;
    background-color: #FFF;
    height: 90px;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

#contents_type1 #contents_header{
    padding-bottom: 30px;
}

#contents_type1 #contents_header .title{
    padding-top: 105px;
    padding-bottom: 75px;
    font-size: 40px;

    line-height: 1;
}

#contents_type1 #contents_header p{
    padding-bottom: 20px;
    line-height: 1.6;
}


/* type1 */



/* type2 */


#contents_type2{
    position: relative;
    z-index: 5;
}

#contents_type2 #contents_header{
    position: relative;
}

#contents_type2 #contents_header article{
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 20;
    height: 450px;
}

#contents_type2 #contents_header article div{
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 20;
}

#contents_type2 #contents_header article div:nth-of-type(1){
    z-index: 25;
}

#contents_type2 #contents_header article div .title{
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
    padding: 10px 30px 10px 0px;
}


#contents_type2 #contents_header article div .title span{
    position: relative;
    z-index: 5;
}

#contents_type2 #contents_header article div:nth-of-type(2){
    /* opacity: 0; */
    filter: blur(2px);
}

.astart #contents_type2 #contents_header article div:nth-of-type(2){
    /* animation: alpha_100 1s forwards cubic-bezier(.63,.28,.36,.82) 1.2s; */
}

#contents_type2 #contents_header article div:nth-of-type(2) .title span i{
    color: #FFF;
    text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}



#contents_type2 #contents_header p{
    background-color: #FFF;
    text-align: center;
    padding: 50px 0px 50px 0px;

    font-weight: 600;
}

.astart #contents_header .inview_anime_slide_in_on span{
    display: block;
    transform: translateX(20px);
	animation: inview_side_animetion_r 1s forwards cubic-bezier(.63,.28,.36,.82) .4s;
}


#contents_type2 .first{
    padding-top: 150px;
}



/* type2 */



/* type3 */



#contents_type3{
    position: relative;
    z-index: 5;
}

#contents_type3 #contents_header{
    position: relative;
}

#contents_type3 #contents_header figure{
    position: absolute;

    height: 750px;
    width: calc(50% + 250px) ;
    top: 0;
    right: 0;
    z-index: 10;
}

#contents_type3 #contents_header article{
    position: relative;
    width: 74%;
    margin: 0 auto;
    max-width: 1200px;
    min-width: 1000px;
    z-index: 20;
    height: 750px;
}

#contents_type3 #contents_header article div{
    position: absolute;
    width: 580px;
    max-width: auto;
    bottom: 0;
}

#contents_type3 #contents_header article div .title{
    position: relative;
    display: inline-block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 100px;
    padding: 10px 30px 10px 0px;
}

#contents_type3 #contents_header article div .title::before{
    transition: all 500ms .2s ease;
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 0%;
    height: 100%;
    background-color: #FFF;
    top: 0;
    left: 0;
}

#contents_type3 #contents_header article div .title span{
    position: relative;
    z-index: 5;
}

#contents_type3 #contents_header article div p{
    background-color: #FFF;
    padding: 25px 25px 25px 0px;
    font-size: 28px;
    letter-spacing: -.5px;
    line-height: 1.8;
}

#contents_type3 #contents_header article div p small{
    display: block;
    line-height: 1;
    font-size: 16px;
    padding: 55px 0px 8px;
}

#contents_type3 #contents_header article div p strong{
    display: block;
    line-height: 1;
    font-size: 24px;
    padding-bottom: 20px;
}

.astart #contents_header .inview_anime_slide_in_on small{
    display: block;
    transform: translateX(20px);
	animation: inview_side_animetion_r .8s forwards cubic-bezier(.63,.28,.36,.82) .6s;
}

.astart #contents_header .inview_anime_slide_in_on strong{
    display: block;
    transform: translateX(20px);
	animation: inview_side_animetion_r .8s forwards cubic-bezier(.63,.28,.36,.82) .7s;
}



#contents_type3 .first{
    padding-top: 200px;
}

/* type3 */


#contents_area{
    padding: 0px 0px 200px;
}

#contents_area_second{
    padding: 150px 0px 200px;
}

#contents_area article.whitebox,
#contents_area_second article.whitebox{
    background-color: #FFF;
    margin-bottom: 90px;
    border-radius: 15px;
    padding: 60px;
    overflow: hidden;
}

#contents_area article.whitebox_m,
#contents_area_second article.whitebox_m{
    background-color: #FFF;
    border-radius: 15px;
    padding: 50px;
    padding-bottom: 0px;
    margin-bottom: 50px;
    overflow: hidden;
}

#contents_area article.whitebox_inner,
#contents_area_second article.whitebox_inner{
    background-color: #FFF;
    margin-bottom: 90px;
    border-radius: 15px;
    overflow: hidden;
}

#contents_area article.whitebox_inner .inner,
#contents_area_second article.whitebox_inner .inner{
    padding: 60px;
}



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

    /* type3 */


    #contents_type3 #contents_header figure{
        position: absolute;
    
        height: 50vw;
        width: calc(50% + 250px) ;
        top: 0;
        right: 0;
        z-index: 10;
    }

    #contents_type3 #contents_header article{
        position: relative;
        width: 74%;
        margin: 0 auto;
        z-index: 20;
        height: 50vw;
    }

    #contents_type3 #contents_header article div{
        width: 52%;
    }
    

    #contents_type3 #contents_header article div .title{
        position: relative;
        display: inline-block;
        font-size: 2.4vw;
        line-height: 1;
        margin-bottom: 4vw;
        padding: 10px 30px 10px 0px;
    }
    

    #contents_type3 #contents_header article div p{
        background-color: #FFF;
        padding: 15px 15px 15px 0px;
        font-size: 1.87vw;
        letter-spacing: 0px;
        line-height: 1.8;
    }

    #contents_type3 #contents_header article div p small{
        font-size: 1.066667vw;
        padding: 3.666667vw 0px 8px;
    }
    
    #contents_type3 #contents_header article div p strong{
        font-size: 1.6vw;
        padding-bottom: 1.3vw;
    }

    /* type3 */
}



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

    .wrapper{
        width: 90%;
        min-width: auto;
    }

    #contents_area article.whitebox,
    #contents_area_second article.whitebox{
        margin-bottom: 7.5vw;
        padding: 5vw;
    }
    
    #contents_area article.whitebox_inner,
    #contents_area_second article.whitebox_inner{
        margin-bottom: 7.5vw;
    }

    #contents_area article.whitebox_inner .inner,
    #contents_area_second article.whitebox_inner .inner{
        padding: 5vw;
    }


    #contents_type2 .first{
        padding-top: 160px;
    }

    #contents_type3 .first{
        padding-top: 160px;
    }


    #contents_type3 #contents_header article{
        width: 84%;
        min-width: auto;
    }

    #contents_type3 #contents_header article div{
        width: 48%;
    }
}


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

    #contents_type2 .first{
        padding-top: 12vw;
    }

    #contents_area article.whitebox_m,
    #contents_area_second article.whitebox_m{
        padding: 5vw;
        padding-bottom: 0px;
        margin-bottom: 40px;
    }

    #contents_type2 #contents_header p{
        padding: 35px 0px 35px 0px;
    }

    /* type3 */

    #contents_type3 .first{
        padding-top: 16vw;
    }

    #contents_type3 #contents_header figure{
        position: absolute;
    
        height: 500px;
        width: calc(50% + 250px) ;
        top: 0;
        right: 0;
        z-index: 10;
    }

   

    #contents_type3 #contents_header article{
        height: 500px;
    }

    #contents_type3 #contents_header article div{
        width: 410px;
    }

    #contents_type3 #contents_header article div .title{
        position: relative;
        display: inline-block;
        font-size: 27px;
        line-height: 1;
        margin-bottom: 4vw;
        padding: 10px 30px 10px 0px;
    }

    #contents_type3 #contents_header article div p{
        background-color: #FFF;
        padding: 15px 15px 15px 0px;
        font-size: 20px;
        letter-spacing: 0px;
        line-height: 1.8;
    }

    #contents_type3 #contents_header article div p small{
        font-size: 13px;
        padding: 3.666667vw 0px 8px;
    }
    
    #contents_type3 #contents_header article div p strong{
        font-size: 18px;
        padding-bottom: 1.3vw;
    }

   

    /* type3 */

}


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

    #contents_type3 #contents_header figure{
        width: calc(100% - 180px) ;
    }

}



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

    .wrapper{
        width: 88%;
    }

    /* type1 */

    #contents_type1{
        position: relative;
        padding-top: 75px;
        top: 0;
    }

    #contents_type1::before{
        height: 75px;
    }

    #contents_type1 #contents_header{
        padding-bottom: 15px;
    }

    #contents_type1 #contents_header .title{
        padding-top: 80px;
        padding-bottom: 55px;
        font-size: 30px;
    }

    /* type1 */

    /* type2 */


    #contents_type2 #contents_header article{
        width: 100%;
        height: 280px;
    }

    #contents_type2 #contents_header article div .title{
        font-size: 30px;
        margin-bottom: 0px;
        padding: 20px 10px 10px 10px;
    }

    #contents_type2 #contents_header p{
        text-align:justify;
        text-justify:distribute;
        padding: 20px 0px 20px 0px;
    }

    /* type2 */


    /* type3 */

   

    #contents_type3 #contents_header figure{
        width: calc(100% - 150px) ;
    }

    #contents_type3 #contents_header article{
        height: auto;
    }

    #contents_type3 #contents_header article div{
        position: relative;
        width: 100%;
        min-width: auto;
        padding-top: 470px;
    }

    #contents_type3 #contents_header article div .title{
        font-size: 30px;
        margin-bottom: 10px;
        padding: 10px 20px 10px 0vw;
    }

    #contents_type3 #contents_header article div p{
        background-color: #FFF;
        padding: 15px 15px 15px 0vw;
    }

    .astart #contents_type3 #contents_header  article div .title.inview_anime_moji_up_on::before{
        width: 100%;
    }
   

    /* type3 */


    #contents_area{
        padding: 0px 0px 26vw;
    }

    #contents_area_second{
        padding: 20vw 0px 26vw;
    }

    #contents_area article.whitebox,
    #contents_area_second article.whitebox{
        border-radius: 10px;
        padding: 30px;
    }

    #contents_area article.whitebox_inner,
    #contents_area_second article.whitebox_inner{
        border-radius: 10px;
    }
    
    #contents_area article.whitebox_inner .inner,
    #contents_area_second article.whitebox_inner .inner{
        padding: 30px;
    }
    
}




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

    .wrapper{
        width: 86%;
    }


    /* type1 */

    #contents_type1 #contents_header{
        padding-bottom: 12px;
    }


    #contents_type1 #contents_header .title{
        padding-top: 60px;
        padding-bottom: 42px;
        font-size: 6.5vw;
    }

    /* type1 */


    /* type2 */

    

    

    #contents_type2 #contents_header article div{
       
    }

    /* #contents_type2 #contents_header article div .title{
       
        font-size: 8vw;
        margin-bottom: 10px;
        padding: 30px 10px 10px 6vw;
        
    } */

    #contents_type2 #contents_header article div p{
        background-color: #FFF;
        padding: 15px 15px 15px 6vw;
    }
        
    #contents_type2 .first{
        padding-top: 15vw;
    }

    /* type2 */



    /* type3 */


    #contents_type3 #contents_header figure{
        
        width: calc(100% - 140px) ;
        height: 420px;

    }

    #contents_type3 #contents_header article div{
        padding-top: 390px;
    }

    #contents_type3 #contents_header article div .title{
        font-size: 26px;
        line-height: 1.2;
    }

    #contents_type3 #contents_header article div p{
        font-size: 18px;
    }

    #contents_type3 #contents_header article div p small {
        font-size: 13px;
        padding: 25px 0px 8px;
    }

    #contents_type3 #contents_header article div p strong {
        font-size: 18px;
        padding-bottom: 20px;
    }
   
    #contents_type3 .first{
        padding-top: 15vw;
    }


    /* type3 */


    #contents_area{
        padding: 0% 0px 22%;
    }

    #contents_area_second{
        padding: 18vw 0px 22vw;
    }

    #contents_area article.whitebox,
    #contents_area_second article.whitebox{
        margin-bottom: 40px;
        padding: 25px;
    }

    #contents_area article.whitebox_inner,
    #contents_area_second article.whitebox_inner{
        margin-bottom: 40px;
    }

    #contents_area article.whitebox_inner .inner,
    #contents_area_second article.whitebox_inner .inner{
        padding: 25px;
    }
}






.bg{
    background: rgb(234,247,244);
    background: linear-gradient(90deg, rgba(234,247,244,1) 0%, rgba(229,245,253,1) 100%); 
}
/* 
#company .bg{
    background-color: #e9efda;
}

#person.member_index .bg,
#person.member_index #contents_type2 #contents_header::before,
#person.job .bg,
#person.job #contents_type2 #contents_header::before{
    background-color: #e2e7e7;;
}

#workstyle .bg,
#workstyle #contents_type2 #contents_header::before,
#workstyle #contents_type3 #contents_header::before{
    background-color: #eeeee1;
}

#project .bg{
    background-color: #d9ebef;
} */
















/* 
.inview_anime_moji_view span{
    display: inline-block;
}

.inview_anime_moji_view span i{
    position: relative;
    display: inline-block;
	font-style: normal;
	padding-right: 1px;
    transform: translateY(-1.5px);
}

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

    .inview_anime_moji_view span:nth-of-type(2){
        transform: translateY(2px);
    }
} */



.inview_anime_moji_up span{
    display: inline-block;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 3px;
}


.astart .inview_anime_moji_up_on span{
    opacity: 1;
}



.inview_anime_moji_up span i{
	position: relative;
    display: inline-block;
	font-style: normal;
	padding-right: 1px;
	transform: translateY(115%);
}


.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(1){
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .3s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(2){
	animation: moji_move .9s forwards cubic-bezier(.2,.44,.35,1) .1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(3){
	animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(4){
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .4s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(5){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .55s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(6){
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) .2s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(7){
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) .6s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(8){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .4s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(9){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(10){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .65s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(11){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(12){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(13){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(14){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .25s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(15){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .65s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(16){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .45s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(17){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .35s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(18){
	animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .7s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(19){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(1) i:nth-child(20){
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .6s;
}




.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(1){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(2){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(3){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .7s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(4){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1.1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(5){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .55s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(6){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .6s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(7){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1.15s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(8){
	animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(9){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .4s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(10){
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(11){
    animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) 1.1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(12){
    animation: moji_move .9s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(13){
    animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .6s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(14){
    animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(15){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) 1.25s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(16){
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) .7s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(17){
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) 1.2s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(18){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .4s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(19){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) 1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(2) i:nth-child(20){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .65s;
}





.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(1){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) 1.15s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(2){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) 1.7s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(3){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .9s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(4){
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) 1.2s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(5){
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) 1.7s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(6){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(7){
    animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) 1.1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(8){
    animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .6s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(9){
    animation: moji_move .9s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(10){
    animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) 1.1s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(11){
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) 1.2s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(12){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1.4s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(13){
	animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .9s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(14){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1.45s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(15){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .85s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(16){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .55s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(17){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1.4s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(18){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .7s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(19){
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) 1.2s;
}

.astart .inview_anime_moji_up_on span:nth-of-type(3) i:nth-child(20){
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) 1.5s;
}




@keyframes moji_move{
	0% {
		transform: translateY(115%);
	}
	100% {
		transform: translateY(0%);
	}
}






/* footer **/


footer{
    position: relative;
    background-color: #FFF;
    z-index: 90000;
}


#footer_inner{
    padding: 0px 7% 65px;
    line-height: 1;
}

footer .logo{
    width: 148px;
    padding-top: 5px;
}


footer #bt_footer{
    width: 100%;
    font-size: 14px;
	flex-direction: row-reverse;
}


@media screen and (max-width: 900px) {
    footer #bt_footer.flex{
        display: block;
    }
}


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

    footer{
        background-color: #FFF;
        padding-bottom: 50px;
    }

    footer .logo{
        width: 110px;
        padding-top: 5px;
    }    
    

    footer .menu_header {
        position: relative;
        padding-bottom: 0px;
    }

   
}


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

    address{
        font-size: 12px;
        line-height: 1.4;
    }

}
























/* footer **/

.only_1200,
.only_1000,
.only_900,
.only_800,
.only_767,
.only_640,
.only_540,
.only_480,
.only_360{
	display: none;
}

.no_1200,
.no_1000,
.no_900,
.no_800,
.no_767,
.no_640,
.no_540,
.no_480,
.no_360{
	display: inline-block;
}

@media screen and (max-width: 1200px) {
	.only_1200{display: inline-block;}
	.no_1200{display: none;}
}

@media screen and (max-width: 1000px) {
	.only_1000{display: inline-block;}
	.no_1000{display: none;}
}

@media screen and (max-width: 900px) {
	.only_900{display: inline-block;}
	.no_900{display: none;}
}

@media screen and (max-width: 800px) {
	.only_800{display: inline-block;}
	.no_800{display: none;}
}

@media screen and (max-width: 767px) {
	.only_767{display: inline-block;}
	.no_767{display: none;}
}

@media screen and (max-width: 640px) {
	.only_640{display: inline-block;}
	.no_640{display: none;}
}

@media screen and (max-width: 540px) {
	.only_540{display: inline-block;}
	.no_540{display: none;}
}

@media screen and (max-width: 480px) {
	.only_480{display: inline-block;}
	.no_480{display: none;}
}

@media screen and (max-width: 360px) {
	.only_360{display: inline-block;}
	.no_360{display: none;}
}



.inview_anime,
.inview_anime_fast{
	opacity: 0;
	transform: translateY(40px);
}

.astart .inview_anime_on{
	opacity: 0;
	transform: translateY(40px);
	animation: inview_animetion .7s forwards cubic-bezier(.07,.68,.41,1) .5s;
}

.astart .inview_anime_fast_on{
	opacity: 0;
	transform: translateY(40px);
	animation: inview_animetion .5s forwards cubic-bezier(.07,.68,.41,1) .1s;
}

.inview_anime_slow{
	opacity: 0;
	transform: translateY(20px);
}

.astart .inview_anime_slow_on{
	opacity: 0;
	transform: translateY(20px);
	animation: inview_animetion_slow .5s forwards cubic-bezier(.07,.68,.41,1) 1s;
}

.inview_anime_slide_l{
    opacity: 0;
	transform: translateX(-40px);
}

.astart .inview_anime_slide_l_on{
	opacity: 0;
	transform: translateX(-40px);
	animation: inview_side_animetion_l .7s forwards cubic-bezier(.63,.28,.36,.82) .2s;
}

.inview_anime_slide_in{
    opacity: 0;
    clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
}

.astart .inview_anime_slide_in_on{
    opacity: 1;
	clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
	animation: inview_side_animetion_in .7s forwards cubic-bezier(.63,.28,.36,.82) .2s
}

.inview_anime_alpha_100{
    opacity: 0;
}

.astart .inview_anime_alpha_100_on{
	opacity: 0;
	animation: alpha_100 .7s forwards cubic-bezier(.63,.28,.36,.82) .4s;
}


@keyframes inview_animetion {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);	
	}
}

@keyframes inview_animetion_slow {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);	
	}
}

@keyframes inview_side_animetion_in {
	0% {
		clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
	}
}

@keyframes inview_side_animetion_l {
	0% {
		opacity: 0;
		transform: translateX(-40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);	
	}
}

@keyframes inview_side_animetion_r {
	0% {
		transform: translateX(20px);
	}
	100% {
		transform: translateX(0px);	
	}
}



@keyframes y_idou_0{
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0%);
	}
}



@keyframes scale_small {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes scale_big{
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}


@keyframes width_100 {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@keyframes width_0 {
	0% {
		width: 100%;
	}
	100% {
		width: 0%;
	}
}

@keyframes height_100 {
	0% {
		height: 0%;
	}
	100% {
		height: 100%;
	}
}

@keyframes height_0 {
	0% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}

@keyframes alpha_100 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes alpha_0 {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

