@charset 'UTF-8';

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New&display=swap');

:root{
    /* COLOR PALLET */
    --color-base:#251e1c;
    --color-blue:#3e6eb3;
    --color-red:#cb522a;
    --color-green:#2d8175;
    --color-orange:#d69518;


    /* STYLING */
    --header-height:100px;

    --border-width:2.8px;


    /* TRANSITION */
    --transition:all .3s ease;
}

/* RESET */
*,
*::before,
*::after{
    box-sizing:border-box;
}
a,
a:hover{
    color:var(--color-blue);
    transition:var(--transition);
}
.page{
    margin:0;
}
h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ul,ol,li{
    margin:0;
    line-height:1.6;
    letter-spacing:0.025em;
    font-weight:200;
}


/* FONT SET */

body{
    color:var(--color-base);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
}

.font-midashi{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight:900;
}

.font-en {
  font-family: "Montserrat", sans-serif;
  font-weight:700;
  letter-spacing:-0.025em;
  line-height:1.2;
  font-optical-sizing: auto;
}

.font-num {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}




/* SYSTEM COMMON */
.page-inner{
    width:100%;
    max-width:1560px;
    padding: 0 20px;
    margin:0 auto;
}
@media only screen and (min-width:1025px){
    .page-inner{
        padding:0 40px;
    }
}


.common-megatextsliderwrapper{
    display:flex;
    align-items: stretch;
    overflow:hidden;
}

.common-megatextsliderwrap{
    width:40px;
    overflow:hidden;
    position:relative;
    flex-shrink:0;
}
.common-megatextslider__cont{
    width:calc(100% - 80px);
    border-left:var(--border-width) solid var(--color-base);
    border-right:var(--border-width) solid var(--color-base);
}
@media only screen and (min-width:1025px){
    .common-megatextsliderwrap{
        width:60px;
    }
    .common-megatextslider__cont{
        width:calc(100% - 120px);
    }
}
@media only screen and (min-width:1600px){
    .common-megatextsliderwrap{
        width:100px;
    }
    .common-megatextslider__cont{
        width:calc(100% - 200px);
    }
}

.common-megatextslider__mask{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.common-megatextslider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    display:flex;
    flex-direction:column;
}

.common-megatextslide{
    flex-shrink:0;
}

.common-megatextslide img{
    display:block;
    width:100%;
    height:auto;
}



.commonlink a{
    color:#FFF;
    background:var(--color-base);

    display:inline-flex;
    gap:0 34px;
    align-items:center;
    justify-content:space-between;
    border:1px solid var(--color-base);
    border-radius:100vh;
    padding:18px 24px;

    text-decoration:none;
}
.commonlink.center{
    text-align:center;
}
.commonlink__text{
    font-size:17px;
    font-weight:bold;
}
.commonlink__icon{
    width:18px;
    transition:var(--transition);
}
.commonlink a:hover{
    color:var(--color-base);
    background:#FFF;
}
.commonlink a:hover .commonlink__icon{
    filter:brightness(0);
}




/* SWIPER */
.swiper-wrapper,
.swiper-slide{
    transition-timing-function: linear !important;
}


/* HEADER */
.main-header{
    width:100%;
    height:var(--header-height);

    position:fixed;

    z-index:99;

    top:0;
    left:0;
}
.main-header__inner{
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
}

.sitelogo img{
    width:315px;
}

.main-header__menu{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:40px;
}

.main-header__menu__btn a{
    display:flex;
    justify-content:center;
    align-items:center;
    color:#FFF;
    background:var(--color-base);
    border:1px solid var(--color-base);
    width:195px;
    height:38px;
    border-radius:100vh;
    text-decoration:none;
    font-size:27px;
    font-weight:900;
}
@media only screen and (min-width:1025px){
    .main-header__menu__btn a:hover{
        color:var(--color-base);
        background:#FFF;
    }
}

a.toggler{
    position:relative;
    display:block;
    width:40px;
    height:40px;
    cursor:pointer;
}
a.toggler span{
    display:block;
    position:absolute;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-base);
    border-radius:100vh;

    transition:var(--transition);
}
a.toggler span:nth-of-type(1){
    top:calc(50% - 10.5px);
}
a.toggler span:nth-of-type(2){
    top:calc(50% - 1.5px);
}
a.toggler span:nth-of-type(3){
    top:calc(50% + 8.5px);
}
a.toggler.open span:nth-of-type(1){
    top:calc(50% - 1.5px);
    transform:rotate(-45deg);
}
a.toggler.open span:nth-of-type(2){
    opacity:0;
}
a.toggler.open span:nth-of-type(3){
    top:calc(50% - 1.5px);
    transform:rotate(45deg);
}



/* DRAWER */

.main-drawer{
    position:fixed;
    z-index:98;
    background:#FFF;
    top:0;
    right:0;
    width:100%;
    height:100%;
    padding:var(--header-height) 40px 40px;

    transition:var(--transition);
    transform:translateY(-101%);
}
.main-drawer.open{
    transform:translateY(0);
}

.main-drawer__inner{
    display:flex;
    height:100%;
    align-items:center;
    justify-content:center;
    overflow-y:scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.main-drawer__inner::-webkit-scrollbar{
    display:none;
}

.main-drawer__menus{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:1fr;
    max-width:940px;
}
@media only screen and (min-width:768px){
    .main-drawer__menus{
        grid-template-columns:repeat(2,1fr);
    }
}
@media only screen and (min-width:1025px){
    .main-drawer__menus{
        grid-template-columns:repeat(3,1fr);
    }
}
/*
.main-drawer__menu{
    border-bottom:1px solid var(--color-base);
}
*/
.main-drawer__menu a{
    display:block;
    color:var(--color-base);
    text-decoration:none;
    font-size:22px;
    padding:20px 10px;
    overflow:hidden;
    position:relative;
    z-index:2;
}
/*
.main-drawer__menu a::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:var(--color-base);
    z-index:-1;
    transition:var(--transition);
    transform:translateX(-101%);
}
.main-drawer__menu a:hover{
    color:#FFF;
}
.main-drawer__menu a:hover::before{
    transform:translateX(0);
}
*/
.main-drawer__menu__jp{
    display:block;
    font-size:15px;
    font-weight:bold;
    font-family:"Noto Sans JP", sans-serif;
}
.main-drawer__menu__en{
    display:inline;
    font-size:22px;
    font-weight:700;
    line-height:1.2;

    background:linear-gradient(transparent 70%, var(--color-red) 0%);
}
@media only screen and (min-width:768px){
    .main-drawer__menu__jp{
        font-size:16px;
    }
    .main-drawer__menu__en{
        font-size:30px;
    }
}
.main-drawer__menu:nth-of-type(4n+1) .main-drawer__menu__en{
    background:linear-gradient(transparent 70%, var(--color-blue) 0%);
}
.main-drawer__menu:nth-of-type(4n+2) .main-drawer__menu__en{
    background:linear-gradient(transparent 70%, var(--color-red) 0%);
}
.main-drawer__menu:nth-of-type(4n+3) .main-drawer__menu__en{
    background:linear-gradient(transparent 70%, var(--color-orange) 0%);
}
.main-drawer__menu:nth-of-type(4n) .main-drawer__menu__en{
    background:linear-gradient(transparent 70%, var(--color-green) 0%);
}



/* FOOTER */
.footer-entrywrapper{
    border-top:var(--border-width) solid var(--color-base);
    overflow:visible;
}
.footer-entrysection{
    padding:50px 0;
    background:repeat-y top center/100% url('./img/common/bg-entry.webp');
}

.footer-entrysection__mainflex{
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    justify-content:space-between;
}

.footer-entrysection__title{
    font-size:42px;
    margin-bottom:0.8em;
}
.footer-entrysection__text{
    font-size:20px;
    line-height:2.2;
}
.footer-entrysection__text span{
    display: inline;
    padding: 0 4px 2px 4px;
    background: linear-gradient(transparent 0%, var(--color-orange) 0%);
}

.footer-entrysection__linksec{
    position:relative;
    width:500px;

    display:flex;
    flex-wrap:wrap;
    align-items:center;
    margin:0 auto;
}
.footer-entrysection__hv{
    width:250px;
    margin:0 auto 30px;
}
@media only screen and (min-width:1439px){
    .footer-entrysection__hv{
        margin:0;
        position:absolute;
        top:-140px;
        left:50%;
        transform:translateX(-50%);
    }
}
.footer-entrybtn{
    width:100%;
}
@media only screen and (min-width:1439px){
    .footer-entrybtn{
        padding-top:80px;
    }
}
.footer-entrybtn a{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#FFF;
    background:var(--color-base);
    text-decoration:none;
    height:100px;
    border:1px solid var(--color-base);
    border-radius:100vh;
}
.footer-entrybtn__text{
    font-size:70px;
    font-weight:900;
}
.footer-entrybtn__icon{
    position:absolute;
    width:36px;
    right:30px;
    top:calc(50% - 10px);
    transition:var(--transition);
}
.footer-entrybtn a:hover{
    color:var(--color-base);
    background:#FFF;
}
.footer-entrybtn a:hover .footer-entrybtn__icon{
    filter:brightness(0);
}

.footer-entrysection__bottomflex{
    margin-top:20px;

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

    gap:30px;
}
@media only screen and (min-width:1439px){
    .footer-entrysection__bottomflex{
        justify-content:space-between;
    }
}
.footer-entrysection__bottomtitle{
    font-size:72px;
}
@media only screen and (min-width:1601px){
    .footer-entrysection__bottomtitle{
        font-size:84px;
    }
}


.main-footer{
    border-top:var(--border-width) solid var(--color-base);
    padding:35px 0 20px;
}
.footer-logo{
    text-align:center;
    margin-bottom:12px;
}
.footer-logo img{
    width:100%;
    max-width:462px;
}
.main-footer__copyright{
    text-align:right;
    padding-right:20px;
    font-size:12px;
}






/* TOP */

.top-movie{
    line-height:1;
}
.top-movie video{
    width:100%;
}

.top-mv{
    position:relative;
}
.top-mv__bg{
    line-height:1;
    height:800px;
}
.top-mv__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.top-mv__title{
    position:absolute;
    z-index:2;
    width:153px;
    top:50%;
    right: 8%;
    transform:translateY(-50%);
}

.top-concept{
    background:repeat-y center/contain url('./img/top/bg-concept.webp'); 
    padding-top:80px;
    padding-bottom:130px;
}
.top-concept__head__flex{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;

    margin-bottom:100px;
}
.top-concept__head__flex__title{
    width:550px;
}
.top-concept__head__title{
    transform:translateY(-150px);
}
.top-concept__head__flex__content{
    max-width:calc(100% - 600px);
}
.top-concept__content__title{
    font-size:40px;
    margin-bottom:1em;
}
.top-concept__content__text{
    font-size:18px;
    line-height:2;
}
@media only screen and (min-width:1601px){
    .top-concept__content__title{
        font-size:44px;
    }
    .top-concept__content__text{
        font-size:20px;
    }
}

.top-concept__grids{
    background:var(--color-base);
    display:grid;
    grid-template-columns:1fr;
    gap:3px;
    padding:3px;
    line-height:1;
}
@media only screen and (min-width:768px){
    .top-concept__grids{
        grid-template-columns:repeat(2,1fr);
    }
}
@media only screen and (min-width:1601px){
    .top-concept__grids{
        grid-template-columns:repeat(2,1fr);
    }
}
.top-concept__grid,
.top-concept__grid picture{
    display:block;
    line-height:1;
}
.top-concept__grid{
    margin-bottom:-1px;
}



.top-inf{
    background:repeat-y center/cover url('./img/top/bg-inf.webp');
    padding:90px 0 160px;
    border-top:var(--border-width) solid var(--color-base);
    border-bottom:var(--border-width) solid var(--color-base);
}

.top-commontitle__en{
    color:var(--color-blue);
    font-size:76px;
    margin-bottom:20px;
}
.top-commontitle__jp{
    font-size:23px;
}

.top-commonsubtitle{
    margin-bottom:40px;
}
.top-commonsubtitle__en{
    line-height:1;
    color:var(--color-blue);
    font-size:56px;
    margin-bottom:10px;
}
.top-commonsubtitle__jp{
    font-size:23px;
}

.top-inf__hv01{
    text-align:right;
}
.top-inf__hv01 img{
    max-width:340px;
    margin:-150px auto -80px;
}

.top-inf__title{
    text-align:center;
    margin-bottom:50px;
}
.top-inf__title__en,
.top-inf__title__jp{
    display:block;
    font-style:normal;
}
.top-inf__title__en{
    color:var(--color-blue);
    font-size:56px;
    margin-bottom:20px;
}
.top-inf__title__jp{
    font-size:23px;
}

.top-inf__main__text{
    text-align:right;
    margin-top:20px;
    font-size:14px;
}

.top-inf__hv02{
    margin-top:120px;
}
.top-inf__hv02 img{
    max-width:337px;
    margin-bottom:-80px;
}

.top-inf__benefits{
    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
}
.top-inf__benefit{
    background:#FFF;
    border:2px solid var(--color-base);
    border-radius:14px;
    padding:30px 40px;
    font-size:23px;
}
.top-inf__benefit small{
    font-size:18px;
}
@media only screen and (min-width:1601px){
    .top-inf__benefit{
        font-size:30px;
    }
    .top-inf__benefit small{
        font-size:22px;
    }
}

.top-inf__benefit--other{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
}
.top-inf__benefit--other__text{
    font-size:22px;
}


.top-service{
    background:repeat-y center/contain url('./img/top/bg-concept.webp'); 
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:stretch;
}
.top-service__sidetitle{
    position:relative;
    width:120px;
    overflow:hidden;
}
.top-service__sidetitle img{
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    width:100%;
    height:auto;
    object-fit:cover;
    object-position:center;
}
.top-service__wrapper{
    max-width:1460px;
    width:100%;
    margin:0 auto;
    padding: 0 20px;
}

.top-service__flex{
    padding-top:86px;

    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-end;
}

.top-service__flex__content{
    padding:40px 0 90px;
    width:calc(875 / 1420 * 100%);
}
.top-service__flex__megaimg{
    width:calc(100% - (875 / 1420 * 100%));
    line-height:1;
}
.top-service__flex__megaimg img{
    position:relative;
    left:-20%;
    max-width:unset;
    width:120%;
}

.top-service__content__flex{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-end;
}

.top-service__images{
    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;

    margin-top:-80px;

    width:160px;
}
.top-service__title{
    font-size:42px;
}
.top-service__text{
    margin-top:20px;
    margin-bottom:20px;
    font-size:22px;
    line-height:2;
    width:calc(100% - 180px);
}
@media only screen and (min-width:768px){
    .top-service__title{
        font-size:32px;
    }
    .top-service__text{
        font-size:18px;
    }
}
@media only screen and (min-width:1025px){
    .top-service__flex{
        padding-top:20px;
    }
    .top-service__images{
        margin-top:0px;
        grid-template-columns:repeat(3,1fr);
        width:100%;
    }
    .top-service__title{
        font-size:28px;
    }
    .top-service__text{
        width:100%;
        font-size:16px;
    }
}
@media only screen and (min-width:1440px){
    .top-service__flex{
        padding-top:86px;
    }
    .top-service__images{
        margin-top:-80px;
        grid-template-columns:1fr;
        width:160px;
    }
    .top-service__title{
        font-size:35px;
    }
    .top-service__text{
        width:calc(100% - 180px);
        font-size:19px;
    }
}
@media only screen and (min-width:1601px){
    .top-service__title{
        font-size:42px;
    }
    .top-service__text{
        width:calc(100% - 180px);
        font-size:22px;
    }
}


.top-interview{
    border-top:var(--border-width) solid var(--color-base);
    position:relative;

    padding:calc(200 / 1920 * 100vw) 0 calc(300 / 1920 * 100vw);
}

.top-interview__corner{
    position:absolute;
    z-index:3;
    mix-blend-mode:multiply;
    pointer-events: none;
    line-height:1;
}
.top-interview__corner.corner01{
    top:0;
    left:0;
    width:calc(1245 / 1920 * 100vw);
    max-height:100%;
    overflow:hidden;
}
.top-interview__corner.corner02{
    bottom:0;
    right:0;
    width:calc(1592 / 1920 * 100vw);
    max-height:100%;
    overflow:hidden;
}

.top-interview__wrapper{
    width:100%;
    max-width:calc(760 / 1920 * 100vw);
    margin:0 auto;
    padding:0 20px;
    padding-right:calc(160 / 1920 * 100vw);

    position:relative;
    z-index:6;
}

.top-inteview__title img{
    max-width:unset;
    width:110%;
    position:relative;
    left:-12%;
}
.top-interview__content{
    margin-top:60px;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    gap:30px;
}
.top-interview__subtitle{
    margin:0 auto;
    width:124px;
}

.top-interview__links{
    margin:0 auto;
    padding:0;
    list-style:none;
    width:400px;
}
.top-interview__links li:not(:last-child){
    margin-bottom:10px;
}
.top-interview__link{
    height:53px;
    border-radius:100vh;
    display:flex;
    align-items:center;
    padding:0 24px;

    text-decoration:none;
    color:#FFF;
    background:var(--color-red);
    border:1px solid var(--color-red);
}
.top-interview__link.link02{
    background:var(--color-green);
    border-color:var(--color-green);
}
.top-interview__link.link03{
    background:var(--color-orange);
    border-color:var(--color-orange);
}
.top-interview__link__flex{
    display:flex;
    align-items: center;
}
.top-interview__link:hover{
    color:var(--color-red);
    background:#FFF;
}
.top-interview__link.link02:hover{
    color:var(--color-green);
}
.top-interview__link.link03:hover{
    color:var(--color-orange);
}

.top-interview__link__text{
    font-size:17px;
    font-weight:bold;
    width:11em;
}
.top-interview__link__btn{
    display:flex;
    align-items:center;
    gap:12px;
}
.top-interview__link__btn .text{
    font-size:12px;
    font-weight:bold;
}
.top-interview__link__btn .icon{
    width:18px;
}

.top-interview__hv{
    position:absolute;
}
.top-interview__hv__text{
    position:absolute;
    z-index:4;
    width:calc(138 / 1920 * 100vw);
    line-height:1;
}
.top-inteview__hv__mainimg{
    line-height:1;
}

.top-interview__hv.hv01{
    top:0;
    right:calc(80 / 1920 * 100vw);

    width:calc(671 / 1920 * 100vw);
}
.top-interview__hv.hv01 .top-inteview__hv__mainimg{
    width:calc(599 / 1920 * 100vw);
    margin:0 auto;
}
.top-interview__hv__text.hv01-text01{
    top:20%;
    left:0;
}
.top-interview__hv__text.hv01-text02{
    bottom:-10%;
    right:2%;
}

.top-interview__hv.hv02{
    top:calc(115 / 1920 * 100vw);
    left:calc(40 / 1920 * 100vw);

    width:calc(507 / 1920 * 100vw);
}
.top-interview__hv.hv02 .top-inteview__hv__mainimg{
    width:calc(444 / 1920 * 100vw);
}
.top-interview__hv__text.hv02-text01{
    top:34%;
    right:0;
}
.top-interview__hv__text.hv02-text02{
    bottom:10%;
    left:12%;
}

.top-interview__hv.hv03{
    bottom:0;
    right:calc(160 / 1920 * 100vw);

    width:calc(552 / 1920 * 100vw);
}
.top-interview__hv.hv03 .top-inteview__hv__mainimg{
    width:100%;
}
.top-interview__hv__text.hv03-text01{
    top:44%;
    left:3%;
}


.top-career{
    padding:125px 0 160px;
    border-top:var(--border-width) solid var(--color-base);
    border-bottom:var(--border-width) solid var(--color-base);
    background:repeat-y top center/cover url('./img/top/bg-career.webp');
}

.top-career__mainflex{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-end;
}
.top-career__mainflex__content{
    width:calc(424 / 1600 * 100%);
}
.top-career__mainflex__images{
    width:calc(1040 / 1600 * 100%);
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-end;
}
.top-career__mainflex__images__main{
    width:calc(685 / 1034 * 100%);
}
.top-career__mainflex__images__hv{
    width:calc(342 / 1034 * 100%);
}
.top-career__mainflex__images__hv__text{
    width:101px;
}
.top-career__mainflex__images__hv__image{
    width:283px;
    margin-left:auto;
}

.top-career__system{
    margin-top:160px;
}


.top-jobinfo{
    padding:93px 0 133px;
}

.top-jobinfo__main{
    margin-top:80px;
}

.top-jobinfo__togglers{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    margin:0;
    padding:0;
}
.top-jobinfo__toggler{
    cursor:pointer;
    width:25%;
    max-width:340px;
    color:#FFF;
    background:#b4b4b4;
    border-top-left-radius:24px;
    border-top-right-radius:24px;

    padding:16px 10px 40px;

    text-align:center;
    font-size:20px;

    transition:var(--transition);
}
@media only screen and (min-width:1601px){
    .top-jobinfo__toggler{
        font-size:24px;
    }
}
.top-jobinfo__toggler.current,
.top-jobinfo__toggler:hover{
    background:var(--color-blue);
}
.top-jobinfo__toggler.current{
    pointer-events:none;
}
.top-jobinfo__tabs{
    position:relative;
    z-index:2;
    background:#FFF;
    border:var(--border-width) solid var(--color-base);
    border-radius:24px;
    margin-top:-24px;
    padding:40px 60px;
}

.top-jobinfo__dls>dl{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    border-bottom:1px solid var(--color-base);
    padding:18px 0;
}
.top-jobinfo__dls>dl>dt{
    font-size:20px;
    width:240px;
}
.top-jobinfo__dls>dl>dd{
    font-size:20px;
    width:calc(100% - 350px);
}
@media only screen and (min-width:1601px){
    .top-jobinfo__dls>dl>dt{
        font-size:24px;
    }
    .top-jobinfo__dls>dl>dd{
        font-size:24px;
    }
}

.top-jobinfo__dls__subdl>dt::before{
    content:'■';
}
.top-jobinfo__dls__subdl>dd{
    margin-left:1em;
}






/* INTERVIEWS */

.interview-mv{
    position:relative;
    margin-top:120px;
    height:680px;
}

.interview-mv__corner{
    position:absolute;
    z-index:7;
    left:0;
    width:100%;
    pointer-events:none;
    mix-blend-mode:multiply;
    line-height:1;
}
.interview-mv__corner.corner01{
    top:0;
}
.interview-mv__corner.corner02{
    bottom:0;
}

.interview-mv__title{
    position:absolute;
    top:250px;
    left:calc(685 / 1920 * 100%);
    width:calc(545 / 1920 * 100%);
    z-index:8;
}

.interview-mv__hv{
    position:absolute;
    /*z-index:6;*/
}

.interview-mv__hv__main{
    position:relative;
    z-index:1;
}
.interview-mv__hv__text{
    position:absolute;
    z-index:9;
    width:138px;
}

.interview-mv__hv.hv01{
    right:calc(60 / 1920 * 100%);
    width:calc(677 / 1920 * 100%);
    top:-6%;
}
.interview-mv__hv__text.text01-01{
    top:33%;
    left:-4%;
}
.interview-mv__hv__text.text01-02{
    top:14%;
    left:42%;
}

.interview-mv__hv.hv02{
    left:calc(60 / 1920 * 100%);
    width:calc(458 / 1920 * 100%);
    top:27%;
}
.interview-mv__hv__text.text02-01{
    top:-13%;
    right:-22%;
}
.interview-mv__hv__text.text02-02{
    top:45%;
    left:52%;
}

.interview-mv__hv.hv03{
    right:calc(212 / 1920 * 100%);
    width:calc(406 / 1920 * 100%);
    bottom:0;
}
.interview-mv__hv__text.text03-01{
    top:-13%;
    right:-22%;
}

.interview-menusecwrapper{
    border-top:var(--border-width) solid var(--color-base);
    border-bottom:var(--border-width) solid var(--color-base);
}

.interview-menusec{
    padding:95px 0 100px;
}

.interview-menusec__title{
    text-align:center;
    margin-bottom:56px;
}

.interview-menus{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px 50px;
}
.interview-menu__num{
    margin-bottom:14px;
}
.interview-menu__link a{
    display:block;
    position:relative;
    border-radius:100vh;
    padding:14px 18px;
    padding-right:80px;
    color:#FFF;
    text-decoration:none;
    border:1px solid var(--color-red);
}
.interview-menu__link a::after{
    content:'';
    width:20px;
    height:10px;
    position:absolute;
    top:calc(50% - 5px);
    right:15px;
    background:no-repeat center/contain url('./img/common/icon-angle-down-white.svg');
}
.interview-menu__link.menu01 a{
    background:var(--color-red);
    border-color:var(--color-red);
}
.interview-menu__link.menu02 a{
    background:var(--color-green);
    border-color:var(--color-green);
}
.interview-menu__link.menu03 a{
    background:var(--color-orange);
    border-color:var(--color-orange);
}
.interview-menu__link a:hover{
    background:#FFF;
}
.interview-menu__link.menu01 a:hover{
    color:var(--color-red);
}
.interview-menu__link.menu02 a:hover{
    color:var(--color-green);
}
.interview-menu__link.menu03 a:hover{
    color:var(--color-orange);
}

.interview-menu__text{
    display:flex;
    align-items:center;
}
.interview-menu__text span{
    line-height:1;
    display:block;
    font-weight:bold;
}
.interview-menu__text .name{
    font-size:21px;
}
.interview-menu__text .info{
    font-size:15px;
    padding-left:0.5em;
    border-left:1px solid #FFF;
    margin-left:0.5em;
}


.interview-section{
    background:repeat center/31px url('./img/interview/bg.webp');
    padding:150px 0 160px;
}
.interview-section:not(:last-child){
    border-bottom:var(--border-width) solid var(--color-base);
}


.interview-section__flex{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
}
.interview-head{
    width:calc(620 / 1520 * 100%);

    position:sticky;
    top:var(--header-height);
    left:0;
}
.interview-content{
    width:calc(746 / 1520 * 100%);
}
.interview-head__desc{
    position:absolute;
    z-index:3;
    left:0;
    top:calc(100% - 80px);
    padding:24px;
    color:#FFF;

    display:flex;
    justify-content:space-between;
    gap:38px;
}
.interview-head{
    padding-left:40px;
}
@media only screen and (min-width:1700px){
    .interview-head{
        padding-left:0;
    }
    .interview-head__desc{
        left:-80px;
    }
}
.interview-head__desc.main01{
    background:var(--color-red);
}
.interview-head__desc.main02{
    background:var(--color-green);
}
.interview-head__desc.main03{
    background:var(--color-orange);
}

.interview-head__desc__nums--text{
    font-size:13px;
    margin-bottom:1em;
}
.interview-head__desc__nums--num img{
    filter:brightness(0) invert(1);
}

.interview-head__mainimg{
    position:relative;
}
.interview-head__text{
    position:absolute;
    z-index:3;
    right:-40px;
    top:-70px;
}

.interview-head__desc__names p{
    font-weight:bold;
    font-size:16px;
}
.interview-head__desc__names--div{
    margin-bottom:0.3em;
}
.interview-head__desc__names .interview-head__desc__names--name{
    font-size:34px;
}
.interview-head__desc__names--year{
    margin-top:1.3em;
}

.interview-block:not(:last-child){
    margin-bottom:80px;
}
.interview-maintext{
    font-size:20px;
    line-height:2;
}
.interview-maintitle{
    font-size:26px;
    margin-bottom:16px;
    font-weight:400;
}
.interview-content.main01 .interview-maintitle{
    color:var(--color-red);
}
.interview-content.main02 .interview-maintitle{
    color:var(--color-green);
}
.interview-content.main03 .interview-maintitle{
    color:var(--color-orange);
}
.interview-mainimage{
    margin-top:30px;
}


.entry-title__en{
    display:block;
    font-size:22px;
}




/* PAGE */

.page-main{
    padding-top:calc(var(--header-height) + 80px);
    padding-bottom:250px;
}

.page-main .page-inner{
    max-width:1280px;
}

.page-header{
    padding-bottom:50px;
}
.page-header h1{
    font-size:32px;
}

.page-content>*{
    margin-bottom:40px;
}

.page-content>p{
    font-size:20px;
    line-height:2;
}

.page-content>h1{
    font-size:40px;
}
.page-content>h2{
    font-size:32px;
}
.page-content>h3{
    font-size:28px;
}
.page-content>h4{
    font-size:24px;
}
.page-content>h5{
    font-size:20px;
}
.page-content>h6{
    font-size:18px;
}




.form-dls dl{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    border-bottom:1px solid var(--color-base);
    padding:24px 0;
}
.form-dls dl dt,
.form-dls dl dd{
    font-size:18px;
}
.form-dls dl dt{
    position:relative;
    width:300px;
}
.form-dls dl dd{
    width:calc(100% - 380px);
}
.form-dls dl dt span.must{
    position:absolute;
    right:0;
    top:0;
    font-size:14px;
    color:#FFF;
    background:var(--color-red);
    display:block;
    padding:6px 8px;
}

.submit-btn-wrapper{
    padding-top:80px;
    text-align:center;
}

.form-dls input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.form-dls textarea{
    font-size:18px;
    padding:4px 12px;
    border:1px solid var(--color-base);
    border-radius:6px;
    width:100%;
}
.form-dls input[name="zipcode"]{
    width:12em !important;
    margin-bottom:0.5em;
    margin-left:0.3em;
}

.wpcf7-list-item:first-child{
    margin-left:0;
}

input[type="submit"]{
    background:#FFF;
    border:1px solid var(--color-base);
    padding:32px 80px;
    font-size:24px;
    cursor:pointer;
}
input[type="submit"]:hover{
    color:#FFF;
    background:var(--color-base);
}
.wpcf7 .wpcf7-submit:disabled{
    opacity:0.2;
}
.wpcf7-spinner{
    display:none !important;
}




/* COLUMNS */

.archive-posts{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}
@media only screen and (min-width:768px){
    .archive-posts{
        grid-template-columns:repeat(2,1fr);
        gap:40px 20px;
    }
}
@media only screen and (min-width:1025px){
    .archive-posts{
        grid-template-columns:repeat(4,1fr);
    }
}

.archive-post{
    padding:20px;
    background:#FFF;
    filter:drop-shadow(3px 3px 3px #EEE);
}
.archive-post__content{
    padding-top:20px;
}
.archive-post a{
    position:relative;
    display:block;
    height:100%;
    text-decoration:none;
    color:var(--color-base);
    padding-bottom:60px;
}
.archive-post__thumbnail{
    line-height:1;
    overflow:hidden;
}
.archive-post__thumbnail img{
    width:100%;
    height:auto;
    aspect-ratio:1;
    object-fit:cover;
    transition:var(--transition);
}
.archive-post a:hover .archive-post__thumbnail img{
    transform:scale(1.1);
}
.archive-post__title{
    font-size:18px;
}
.archive-post__date{
    font-size:14px;
    margin-top:10px;
}
.archive-post__link{
    position:absolute;
    bottom:0;
    right:0;
}
.archive-post__link span{
    display:flex;
    color:#FFF;
    border:1px solid var(--color-base);
    background:var(--color-base);
    border-radius:100vh;
    padding:6px 16px;
    font-size:14px;
    line-height:1;
    transition:var(--transition);
}
.archive-post a:hover .archive-post__link span{
    color:var(--color-base);
    background:#FFF;
}



.page-header__meta{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}
.page-meta__cat{
    display:block;
    font-size:12px;
    color:#FFF;
    background:var(--color-base);
    padding:4px 12px;
    border-radius:100vh;
    line-height:1;
}
.page-meta__date{
    font-size:12px;
}
@media only screen and (min-width:768px){
    .page-meta__cat{
        padding:8px 20px;
        font-size:14px;
    }
    .page-meta__date{
        font-size:14px;
    }
}

.page-thumbnail{
    text-align:center;
    margin-bottom:40px;
}






/* RESP 1280 - 1025 */

@media only screen and (max-width:1280px) and (min-width:1025px){

    body{
        min-width:1280px;
    }

}







/* RESP 1024 - 768 */

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

    :root{
        --header-height:80px;
    }


    /* HEADER */
    .main-header__inner{
        padding:8px 20px;
    }
    .sitelogo{
        line-height:1;
    }
    .sitelogo img{
        vertical-align:top;
        width:280px;
    }


    /* FOOTER */

    .footer-entrysection__title{
        font-size:32px;
    }
    .footer-entrysection__bottomflex{
        margin-top:50px;
    }
    .footer-entrysection__bottomtitle{
        font-size:42px;
    }



    /* TOP */
    .top-mv__bg{
        height:500px;
    }
    .top-mv__title{
        width:80px;
    }
    .top-mv__title img{
        filter:drop-shadow(0 0 2px #FFF);
    }

    .top-concept__head__flex{
        justify-content:center;
        gap:40px;
    }
    .top-concept__head__flex__title{
        width:100%;
        max-width:100%;
    }
    .top-concept__head__title{
        transform:none;
        text-align:center;
    }
    .top-concept__head__title img{
        max-width:400px;
    }
    .top-concept__head__flex__content{
        max-width:100%;
        width:100%;
    }
    .top-concept__content__title{
        font-size:32px;
    }

    .top-commontitle__en{
        font-size:52px;
    }

    .top-inf__title__en{
        font-size:42px;
    }
    .top-inf__hv01 img{
        margin:-80px 0 20px;
    }
    .top-inf__hv02 img{
        margin-bottom:20px;
    }
    .top-inf__benefits{
        gap:20px;
    }
    .top-inf__benefit{
        padding:18px 28px;
        font-size:22px;
    }
    .top-inf__benefit small{
        display:block;
        font-size:18px;
    }

    .top-service__flex__content,
    .top-service__flex__megaimg,
    .top-service__text,
    .top-service__images{
        width:100%;
    }
    .top-service__images{
        margin-top:40px;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }
    .top-service__flex__content{
        padding-top:0;
        padding-bottom:50px;
    }
    .top-service__sidetitle img{
        top:0;
        transform:translateY(0);
    }
    .top-service__flex__megaimg{
        text-align:center;
    }
    .top-service__flex__megaimg img{
        left:0;
        width:100%;
        max-width:400px;
    }

    .top-interview{
        overflow:hidden;
        padding-top:22%;
        padding-bottom:45%;
    }
    .top-interview__wrapper{
        max-width:100%;
        padding:0 8%;
        padding-left:16%;
    }
    .top-interview__content{
        margin-top:20px;
    }

    .top-interview__hv__text{
        width:90px;
    }
    .top-interview__hv.hv01{
        right:0;
        width:40%;
    }
    .top-interview__hv.hv02{
        left:0;
        width:36%;
        top:unset;
        bottom:0;
    }
    .top-interview__hv__text.hv02-text02{
        bottom:unset;
        top:20%;
        left:0;
    }
    .top-interview__hv.hv03{
        right:0;
        width:40%;
    }

    .top-career{
        padding:80px 0;
    }
    .top-career__mainflex__content,
    .top-career__mainflex__images{
        width:100%;
        gap:40px;
    }
    .top-career__mainflex__content{
        margin-top:80px;
    }
    .top-career__mainflex__images{
        justify-content:center;
        gap:30px;
    }
    .top-career__mainflex__images__main{
        width:100%;
    }

    .top-jobinfo{
        padding:80px 0;
    }
    .top-jobinfo__main{
        margin-top:50px;
    }
    .top-jobinfo__toggler{
        padding:12px 0 34px;
        font-size:16px;
        border-top-left-radius:14px;
        border-top-right-radius:14px;
    }
    .top-jobinfo__tabs{
        border-radius:14px;
        padding:40px 20px;
    }
    .top-jobinfo__dls>dl>dt,
    .top-jobinfo__dls>dl>dd{
        font-size:18px;
    }
    .top-jobinfo__dls>dl>dt{
        width:180px;
    }
    .top-jobinfo__dls>dl>dd{
        width:calc(100% - 200px);
    }




    /* INTERVIEW */

    .interview-mv{
        height:auto;
        overflow:hidden;
    }
    .interview-mv__title{
        position:relative;
        top:0;
        left:0;
        width:100%;
        padding:15% 10% 10%;
    }
    .interview-mv__hv.hv01,
    .interview-mv__hv.hv02,
    .interview-mv__hv.hv03{
        position:relative;
        width:100%;
        left:0;
        right:0;
        top:0;
        bottom:0;
    }
    .interview-mv__hv__text.text01-01{
        left:4%;
    }
    .interview-mv__hv__text.text03-01{
        top:0;
        right:4%;
    }
    .interview-mv__hv__main{
        line-height:1;
    }

    .interview-section__flex{
        gap:180px;
    }
    .interview-head,
    .interview-content{
        width:100%;
    }
    .interview-head{
        position:relative;
        top:0;
    }
    .interview-head__text{
        right:0;
    }



    /* PAGE */
    .page-main{
        padding-top:calc(var(--header-height) + 40px);
        padding-bottom:100px;
    }

    .page-header{
        padding-bottom:30px;
    }

    .form-dls dl dt{
        width:240px;
        padding-right:60px;
    }
    .form-dls dl dd{
        width:calc(100% - 280px);
    }



}




.sp_only{
    display:none;
}


/* RESP 767 - */

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

    :root{
        --header-height:50px;
    }

    .sp_only{
        display:block;
    }

    /* HEADER */

    .sitelogo img{
        width:186px;
    }
    .main-header__inner{
        padding:4px 10px;
        gap:10px;
    }
    .main-header__menu{
        gap:10px;
    }
    .main-header__menu__btn a{
        width:100px;
        height:28px;
        font-size:18px;
    }


    /* DRAWER */
    .main-drawer__menu a{
        padding:12px 10px;
        font-size:18px;
    }



    /* FOOTER */
    .footer-entrysection__title{
        font-size:18px;
    }
    .footer-entrysection__text{
        font-size:14px;
    }

    .footer-entrybtn a{
        height:70px;
    }
    .footer-entrybtn__text{
        font-size:40px;
    }

    .footer-entrysection__bottomtitle{
        font-size:28px;
        text-align:center;
    }



    /* COMMON */
    .common-megatextsliderwrap{
        display:none;
    }
    .common-megatextslider__cont{
        width:100%;
        border:0;
    }


    .commonlink a{
        padding:8px 20px;
    }
    .commonlink__text{
        font-size:15px;
    }


    /* TOP */

    .top-movie{
        margin-top:var(--header-height);
    }

    .top-mv__bg{
        height:380px;
    }

    .top-concept{
        padding:60px 0;
    }
    .top-concept__head__flex{
        gap:30px;
        margin-bottom:40px;
    }
    .top-concept__content__title{
        font-size:24px;
    }
    .top-concept__content__text{
        font-size:16px;
    }

    .top-commontitle__en{
        font-size:28px;
        margin-bottom:12px;
    }
    .top-commontitle__jp{
        font-size:20px;
    }

    .top-inf{
        padding:60px 0;
    }
    .top-inf__hv01 img{
        margin:40px 0;
    }
    .top-inf__title__en{
        font-size:28px;
    }
    .top-inf__title__jp{
        font-size:18px;
    }
    .top-inf__hv02{
        margin-top:50px;
    }
    .top-inf__hv02 img{
        margin-bottom:60px;
    }
    .top-inf__benefits{
        grid-template-columns:1fr;
        gap:10px;
    }
    .top-inf__benefit{
        padding:10px 12px;
        font-size:18px;
    }
    .top-inf__benefit small{
        font-size:14px;
    }
    .top-inf__benefit--other__text{
        font-size:16px;
    }

    .top-service__flex{
        padding-top:60px;
    }

    .top-service__sidetitle{
        width:50px;
    }
    .top-service__sidetitle img{
        top:60px;
    }
    .top-service__title{
        font-size:22px;
    }
    .top-service__text{
        font-size:14px;
    }
    .top-service__images{
        grid-template-columns:1fr;
    }
    
    .top-interview__hv{
        display:none;
    }
    .top-interview__wrapper{
        padding:0 20px;
    }
    .top-inteview__title img{
        width:100%;
        left:0;
    }
    .top-interview__link__text{
        font-size:14px;
    }
    .top-interview__link{
        padding:0 12px;
    }
    .top-interview__link__btn{
        gap:8px;
    }

    .top-career{
        padding:60px 0;
    }
    .top-career__mainflex{
        gap:40px;
    }
    .top-career__mainflex__content{
        margin-top:50px;
    }
    .top-commonsubtitle__en{
        font-size:28px;
    }
    .top-commonsubtitle__jp{
        font-size:18px;
    }
    .top-career__mainflex__images__hv__image{
        width:100%;
    }
    .top-career__mainflex__images__hv{
        width:100%;
    }
    .top-career__mainflex__images__hv__text{
        margin:0 auto 20px;
    }
    .top-career__system{
        margin-top:50px;
    }

    .top-jobinfo{
        padding:60px 0;
    }
    .top-jobinfo__toggler{
        font-size:14px;
    }

    .top-jobinfo__dls>dl{
        gap:10px;
    }
    .top-jobinfo__dls>dl>dt,
    .top-jobinfo__dls>dl>dd{
        width:100%;
        font-size:15px;
    }
    .top-jobinfo__dls>dl>dt{
        font-weight:bold;
    }


    /* INTERVIEW */
    .interview-mv{
        margin-top:var(--header-height);
    }
    .interview-mv__hv{
        display:none;
    }

    .interview-menusec{
        padding:60px 0;
    }
    .interview-menu__text{
        flex-wrap:wrap;
        gap:10px;
    }
    .interview-menu__text .name{
        width:100%;
        font-size:18px;
    }
    .interview-menu__text .info{
        font-size:12px;
    }

    .interview-section{
        padding:var(--header-height) 0 60px;
    }

    .interview-head{
        padding-left:0;
    }
    .interview-head__text{
        position:relative;
        top:0;
        text-align:center;
        margin-bottom:20px;
    }
    .interview-head__text img{
        width:80px;
    }
    .interview-head__desc{
        position:relative;
        top:0;
        width:100%;
        margin-bottom:20px;
    }
    .interview-head__desc__names .interview-head__desc__names--name{
        font-size:24px;
    }
    .interview-head__desc__names p{
        font-size:14px;
    }
    .interview-section__flex{
        gap:40px;
    }

    .interview-block:not(:last-child){
        margin-bottom:40px;
    }
    .interview-maintitle{
        font-size:18px;
    }
    .interview-maintext{
        font-size:14px;
    }



    /* PAGE */

    .page-header h1{
        font-size:28px;
    }

    .page-content>*{
        margin-bottom:30px;
    }

    .page-content>p{
        font-size:14px;
    }

    .page-content>h1{
        font-size:28px;
    }
    .page-content>h2{
        font-size:22px;
    }
    .page-content>h3{
        font-size:20px;
    }
    .page-content>h4{
        font-size:17px;
    }
    .page-content>h5{
        font-size:14px;
    }
    .page-content>h6{
        font-size:12px;
    }


    .form-dls dl{
        padding:14px 0;
        gap:12px;
    }
    .form-dls dl dt{
        width:100%;
        font-size:16px;
    }
    .form-dls dl dd{
        width:100%;
        font-size:16px;
    }
    .form-dls dl dt span.must{
        padding:3px 4px;
        font-size:12px;
    }

    .form-dls input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), .form-dls textarea{
        font-size:16px;
    }
    .submit-btn-wrapper{
        padding-top:50px;
    }
    input[type="submit"]{
        padding:20px 40px;
        font-size:20px;
    }


}















/* ANIMATION */
.fadein {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeinr {
    opacity : 0.1;
    transform : translate(50px, 0);
    transition : all 800ms;
}
.fadeinb {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeint {
    opacity : 0.1;
    transform : translate(0, -50px);
    transition : all 800ms;
}
.fadeinl {
    opacity : 0.1;
    transform : translate(-50px, 0);
    transition : all 800ms;
}
.fadeino {
    opacity : 0.1;
    transition : all 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadeino.scrollin {
   opacity : 1;
}

@supports (-ms-ime-align:auto) {
.fadein {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinr {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinb {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeint {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinl {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeino {
    opacity : 1;
    transition : inherit;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : inherit;
}
.fadeino.scrollin {
   opacity : 1;
}
}/* @ supports end */

@media only screen and (max-width:1280px){
/* ANIMATION */
.fadein,
.fadeinr,
.fadeinl,
.fadeinb,
.fadeint{
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
}/* fade animation wrap over */



.clear_from_top.ef,
.inner-clear_from_top.ef>*{
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
	transition:all .8s ease;
}
.clear_from_bottom.ef,
.inner-clear_from_bottom.ef>*{
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
	transition:all .8s ease;
}
.clear_from_left.ef,
.inner-clear_from_left.ef>*{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition:all .8s ease;
}
.clear_from_right.ef,
.inner-clear_from_right.ef>*{
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	transition:all .8s ease;
}
.clear_from_lefttop.ef,
.inner-clear_from_lefttop.ef>*{
	-webkit-clip-path: inset(0 100% 100% 0);
	clip-path: inset(0 100% 100% 0);
	transition:all .8s ease;
}
.clear_from_righttop.ef,
.inner-clear_from_righttop.ef>*{
	-webkit-clip-path: inset(0 100% 0 100%);
	clip-path: inset(0 100% 0 100%);
	transition:all .8s ease;
}
.clear_from_leftbottom.ef,
.inner-clear_from_leftbottom.ef>*{
	-webkit-clip-path: inset(100% 100% 0 0);
	clip-path: inset(100% 100% 0 0);
	transition:all .8s ease;
}
.clear_from_rightbottom.ef,
.inner-clear_from_rightbottom.ef>*{
	-webkit-clip-path: inset(100% 0 0 100%);
	clip-path: inset(100% 0 0 100%);
	transition:all .8s ease;
}
.clear_from_top.ef.scrollin,
.clear_from_bottom.ef.scrollin,
.clear_from_left.ef.scrollin,
.clear_from_right.ef.scrollin,
.inner-clear_from_top.ef.scrollin>*,
.inner-clear_from_bottom.ef.scrollin>*,
.inner-clear_from_left.ef.scrollin>*,
.inner-clear_from_right.ef.scrollin>*,
.clear_from_lefttop.ef.scrollin,
.clear_from_righttop.ef.scrollin,
.clear_from_leftbottom.ef.scrollin,
.clear_from_rightbottom.ef.scrollin,
.inner-clear_from_lefttop.ef.scrollin>*,
.inner-clear_from_righttop.ef.scrollin>*,
.inner-clear_from_leftbottom.ef.scrollin>*,
.inner-clear_from_rightbottom.ef.scrollin>*{
	-webkit-clip-path: inset(0);
	clip-path:inset(0);
}