  

/* hanmenu **/


header .hanmenu{
    transition: all 500ms 0s ease;
    position: absolute;
    width: 60px;
    height: 60px;
    border: #e9e9e9 solid 1px;
    border-radius: 50%;
    background-color: #FFF;
    right: 10px;
    top: 8px;
    cursor: pointer;
}

.pc header .hanmenu:hover{
    background-color: #e9e9e9;
}

header .hanmenu.active{
    background-color: #f5f5f5;
}


header .hanmenu::before{
    position: absolute;
    display: inline-block;
    content: "MENU";
    font-family: 'Manrope', sans-serif;
	font-weight: 600;
    font-size: 9px;
    letter-spacing: 0;
    line-height: 1;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}


header .hanmenu .panel_btn span{
    transition: all 500ms 0s ease;
    position: absolute;
    height: 1px;
    background-color: #000;
}

header .hanmenu .panel_btn span:nth-child(-n+3){
    width: 26px;
}

header .hanmenu .panel_btn span:nth-child(1){
    left: 16px;
    top: 17px;
}

header .hanmenu .panel_btn span:nth-child(2){
    right: 16px;
    top: 24px;
}

header .hanmenu .panel_btn span:nth-child(3){
    left: 16px;
    top: 31px;
}

header .hanmenu .panel_btn span:nth-child(n+4){
    width: 30px;
    top: 40%;
    transform-origin: center;
}

header .hanmenu .panel_btn span:nth-child(4){
    left: 50%;
    transform: translateX(-50%) rotate(45deg) ;
    width: 0px;
}

header .hanmenu .panel_btn span:nth-child(5){
    right: 50%;
    transform: translateX(50%) rotate(-45deg) ;
    width: 0px;
}

header .hanmenu.active .panel_btn span:nth-child(-n+3){
    width: 0px;
}

header .hanmenu.active .panel_btn span:nth-child(n+4){
    width: 26px;
}




@media screen and (max-width: 767px) {
    header .hanmenu{
        width: 50px;
        height: 50px;
        right: 8px;
        top: 8px;
    }

    header .hanmenu::before{
        font-size: 8px;
        bottom: 8px;
    }

    header .hanmenu .panel_btn span:nth-child(-n+3){
        width: 22px;
    }
    
    header .hanmenu .panel_btn span:nth-child(1){
        left: 13px;
        top: 12px;
    }
    
    header .hanmenu .panel_btn span:nth-child(2){
        right: 13px;
        top: 19px;
    }
    
    header .hanmenu .panel_btn span:nth-child(3){
        left: 13px;
        top: 25px;
    }
    
    header .hanmenu .panel_btn span:nth-child(n+4){
        width: 30px;
        top: 40%;
        transform-origin: center;
    }

    header .hanmenu .panel_btn span:nth-child(4){
        left: 50%;
        transform: translateX(-50%) rotate(45deg) ;
        width: 0px;
    }
    
    header .hanmenu .panel_btn span:nth-child(5){
        right: 50%;
        transform: translateX(50%) rotate(-45deg) ;
        width: 0px;
    }
    
    header .hanmenu.active .panel_btn span:nth-child(-n+3){
        width: 0px;
    }

    header .hanmenu.active .panel_btn span:nth-child(n+4){
        width: 22px;
    }
}

/* hanmenu **/




/* ENTRY MY PAGE INTERNSHIP **/

.header #header_entryarea p{
    display: none;
}

.header .button_footer{
    display: none;
}

.header .button_header{
    position: absolute;
    width: 205px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: visible;
    right: 76px;
    top: 8px;
}


.header .button_header div.bt_header{
    transition: all 300ms 0s ease;
    position: relative;
    display: block;
    width: 100%;
    height: 28px;
    background-color: #000;
    color: #FFF;
    font-size: 13px;
    border-radius: 14px;
    text-align: center;
    margin-top: 15px;
    overflow: hidden;
}

.pc .header .button_header div.bt_header:hover,
.sp .header .button_header div.bt_header.active{
    margin-top: 0px;
}

.header .button_header div.bt_header span{
    display: block;
}

.header .button_header div.bt_header a{
    transition: all 500ms 0s ease;
    pointer-events: none;
    display: block;
    opacity: 0;
}

.pc .header .button_header div.bt_header:hover a,
.sp .header .button_header div.bt_header.active a{
    pointer-events: all;
    display: inline-block;
    width: 70%;
    opacity: 1;
    color: #FFF;
    font-size: 15px;
    padding-top: 3px;
}



.pc .header .button_header div.bt_header a:hover{
    opacity: .7;
}

.header .button_header div.bt_header a span{
    position: relative;
    z-index: 10;
}


.pc .header .button_header div.bt_header a:hover::before{
    top: 0%;
}

.header .button_area .bt_internship{
    position: absolute;
    width: 130px;
    height: 30px;
    right: 390px;
    top: 21px;
}

.header .button_area .bt_internship a{
    transition: all 300ms 0s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: 100%;
    height: 100%;
    border: #ccc solid 1px;
    background-color: #FFF;
    color: #000;
    font-size: 13px;
    line-height: 1;
    
    border-radius: 14px;
    
}

.header .button_area .bt_internship a span{
    font-weight: 700;
}

.pc .header .button_area .bt_internship a:hover{
    opacity: .7;
}

.header .button_area .bt_icon{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: visible;
    width: 80px;
    height: 60px;
    right: 295px;
}



/* 

.pc .bt_search:hover{
    background-color: #e9e9e9;
} */


.bt_search span{
    display: block;
    line-height: 1;
    padding-top: 18px;
}

.bt_movie span{
    display: block;
    line-height: 1;
    padding-top: 19px;
}

.i_icon{
    transition: all 500ms 0s ease;
    width: 36px;
    margin: 0 auto;
}

.i_icon:hover{
    opacity: .7;
}

/*  type_1  */

.pc .header .type_1 .button_header div.bt_header:hover,
.sp .header .type_1 .button_header div.bt_header.active{
    height: 44px;
    margin-top: 8px;
}



.header .type_1 .button_header div{
    width: 100px;
    display: block;
    line-height: 1;
}

.header .type_1 .button_header div.bt_entry{
    padding-top: 7px;
}

.header .type_1 .button_header div.bt_mypage{
    padding-top: 7px;
}

/* .header .type_1.button_header div.bt_internship{
    display: none;
} */

.header .type_1 .bt_search{
    right: 262px;
}

/*  type_1  */


/*  type_2  */

.pc .header .type_2 .button_header div.bt_header:hover,
.sp .header .type_2 .button_header div.bt_header.active{
    height: 60px;
    margin-top: 0px;
}



.header .type_2 .button_header div{
    width: 100px;
    display: block;
    line-height: 1;
}

.header .type_2 .button_header div.bt_entry{
    padding-top: 7px;
}

.header .type_2 .button_header div.bt_mypage{
    padding-top: 7px;
}

/* .header .type_2 .button_header div.bt_internship{
    display: none;
} */

.header .type_2 .bt_search{
    right: 262px;
}

/*  type_2  */


/*  type_3  */

.header .type_3 .button_header div{
    position: absolute;
    width: 118px;
    display: block;
    line-height: 1;
}

.header .type_3 .button_header div.bt_entry{
    right: 122px;
    margin-bottom: 4px;
}

.header .type_3 .button_header div.bt_mypage{
    right: 0;
    margin-bottom: 4px;
}
/* 
.header .type_3 .button_header div.bt_internship{
    right: 0;
    top: 32px;
    width: 240px;
} */

.header .type_3 .bt_search{
    right: 322px;
}


/*  type_3  */


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

    .header .button_area .bt_internship{
        position: absolute;
        width: 105px;
        height: 28px;
        right: 160px;
        top: 21px;
    }


    .header .button_area .bt_internship a{
        transition: all 300ms 0s ease;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        overflow: visible;
        width: 100%;
        height: 100%;
        border: #ccc solid 1px;
        background-color: #FFF;
        color: #000;
        font-size: 12px;
        line-height: 1;
        
        border-radius: 13px;
        
    }


    .header .button_area .bt_icon{
        right: 70px;
        top: -2px;
    }
    

    .header .button_header{
        display: none;
    }

    .header .button_footer{
        position: fixed;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, .4);
        backdrop-filter: blur(20px);

        width: 100%;
        height: 55px;
        z-index: 3000000000000000;

        padding: 5px 1%;

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

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

    .header .button_footer .bt_embox a{
        width: 49%;
        background-color: #999;
        color: #FFF;
        line-height: 1;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        padding-top: 7px;
        border-radius: 7px;
    }
    
    .header .button_footer .bt_embox a span{
        display: block;
    }

    .header .button_footer .bt_c1 a{
        background-color: rgb(53, 181, 151);
    }

    .header .button_footer .bt_c2 a{
        background-color:  rgb(0, 160, 233)
    }
   


    .header .button_header div.bt_header a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 40px;
        background-color: #000;
        color: #FFF;
        font-size: 14px;
        border-radius: 8px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 2px;
    }

    /*  type_1  */

    .header .button_footer .bt_embox a{
        width: 49.5%;
    }

    .header .type_1 .button_footer .bt_embox{
        width: 100%;
    }


    .header .type_1 .button_header div.bt_header a{
        font-size: 14px;
    }

    .header .type_1 .button_header div{
        position: absolute;
        width: 48%;
        display: block;
        line-height: 1;
    }

    .header .type_1 .button_header div.bt_entry{
        left: 2%;
        top: 5px;
        margin-bottom: 0px;
    }

    .header .type_1 .button_header div.bt_mypage{
        right: 2%;
        top: 5px;
        margin-bottom: 0px;
    }

    .header .type_1 .bt_search{
        right: 66px;
    }

    /*  type_1  */

    /*  type_2  */

    .header .type_2 .button_footer .bt_embox{
        width: 49%;
    }


    .header .type_2 .button_header div.bt_header a{
        font-size: 14px;
    }

    .header .type_2 .button_header div{
        position: absolute;
        width: 47%;
        display: block;
        line-height: 1;
    }

    .header .type_2 .button_header div.bt_entry{
        left: 2%;
        top: 5px;
        margin-bottom: 0px;
    }

    .header .type_2 .button_header div.bt_mypage{
        right: 2%;
        top: 5px;
        margin-bottom: 0px;
    }

    .header .type_2 .bt_search{
        right: 66px;
    }

    /*  type_2  */

    
    /*  type_3  */

    .header .type_3 .button_header div.bt_header a{
        font-size: 14px;
    }

    .header .type_3 .button_header div{
        position: absolute;
        width: 28%;
        display: block;
        line-height: 1;
    }

    .header .type_3 .button_header div.bt_entry{
        right: auto;
        left: 40%;
        top: 5px;
        margin-bottom: 0px;
    }

    .header .type_3 .button_header div.bt_mypage{
        right: 2%;
        top: 5px;
        margin-bottom: 0px;
    }

    /* .header .type_3 .button_header div.bt_internship{
        left: 2%;
        top: 5px;
        width: 36%;
    } */

    .header .type_3 .bt_search{
        right: 66px;
    }


    /*  type_3  */


}

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


    /*  type_3  */

    .type_3 .button_header div.bt_header a{
        font-size: 13px;
    }

    .type_3 .button_header div i{
        display: block;
        width: 100%;
        height: 1px;
    }


    /*  type_3  */

}

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

    .header .button_footer .bt_embox a{
        font-size: 13px;
        padding-top: 9px;
    }
    

}



/* ENTRY MY PAGE INTERNSHIP **/



/* main menu **/


.main_nav section{
    position: fixed;
    overflow-y: scroll;
    width: 100vw;
    height: calc(100% - 90px);
    top: 90px;
    left: 0px;
    z-index: 100;
    display: none;
} 

header.active .main_nav section{
    display: block;
}


#menu_inner{
    padding: 50px 7% 65px;
    line-height: 1;
}

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

    #menu_inner {
        padding: 25px 7% 100px;
    }

}

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

    #menu_inner {
        padding: 15px 7% 100px;
    }

}


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

.menu_header::after{
    content: "";
    position: absolute;
    display: block;
    width: 0%;
    height: 1px;
    background-color: #000;
    bottom: 0;
    left: 0;
}

header.active .menu_header::after{
    animation: width_100 .5s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

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

header .main_nav section .menu_header .logo{
    display: none;
}

header .main_nav section .menu_header .logo,
header .main_nav section .menu_header .button_area .bt_internship,
header .main_nav section .menu_header .button_area .bt_icon,
header .main_nav section .menu_header .button_area .button_header,
header .main_nav section .menu_header .button_area .button_footer{
    display: none;
}

header .main_nav section .menu_header p{
    font-size: 26px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
}

header.active .main_nav section .menu_header p{
    animation: menu_header_move .5s forwards cubic-bezier(.2,.44,.35,1) .3s;
}

header .main_nav section .menu_header p a{
    transition: all 500ms 0s ease;
    display: inline-block;
}

.pc header .main_nav section .menu_header p a:hover{
    color: #999;
    transform: translateX(10px);
}


.menu_area nav ul{
    width: 100%;
}

.menu_area nav ul li{
    padding: 50px 0px 50px;
    width: 38%;
}

.menu_area nav ul li:nth-child(3n-1){
    width: 33%;
}

.menu_area nav ul li:nth-child(3n){
    width: 29%;
}

header .main_nav .menu_area nav ul li h2 {
    position: relative;
    display: inline-block;
    font-size: 24px;
    margin-bottom: 20px;
    overflow: hidden;
}


header .main_nav .menu_area nav ul li h2 span{
    position: relative;
    display: inline-block;
   
    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;
    z-index: 1;

    opacity: 0;
    transform: translateY(40px);
}


header.active .main_nav .menu_area nav ul li h2 span{
	opacity: 0;
    transform: translateY(40px);
    animation: inview_animetion .5s forwards cubic-bezier(.07,.68,.41,1) .1s;
}


/*
header .main_nav .menu_area nav ul li h2 span i{
	position: relative;
    display: inline-block;
	padding-right: 1px;
	transform: translateY(100%);
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(1){
	transform: translateY(100%);
	-webkit-animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .75s;
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .75s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(2){
	transform: translateY(100%);
	-webkit-animation: moji_move .9s forwards cubic-bezier(.2,.44,.35,1) .2s;
	animation: moji_move .9s forwards cubic-bezier(.2,.44,.35,1) .2s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(3){
	transform: translateY(100%);
	animation: moji_move .3s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(4){
	transform: translateY(100%);
	animation: moji_move .5s forwards cubic-bezier(.2,.44,.35,1) .7s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(5){
	transform: translateY(100%);
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .55s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(6){
	transform: translateY(100%);
	animation: moji_move .8s forwards cubic-bezier(.2,.44,.35,1) 1s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(7){
	transform: translateY(100%);
	animation: moji_move 1.2s forwards cubic-bezier(.2,.44,.35,1) .6s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(8){
	transform: translateY(100%);
	animation: moji_move .4s forwards cubic-bezier(.2,.44,.35,1) .4s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(9){
	transform: translateY(100%);
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .1s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(10){
	transform: translateY(100%);
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .65s;
}

header.active .main_nav .menu_area nav ul li h2 span i:nth-child(11){
	transform: translateY(100%);
	animation: moji_move .6s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

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

*/


.main_nav .menu_area nav ul li article div{
    transition: all 500ms 0s ease;
    margin-left: 20px;
	opacity: 0;
    margin: 1px 0px;
}

header.active .main_nav .menu_area nav ul li article div:nth-child(1){
	animation: m_li .5s forwards cubic-bezier(.2,.44,.35,1) .5s;
}

header.active .main_nav .menu_area nav ul li article div:nth-child(2){
	animation: m_li .5s forwards cubic-bezier(.2,.44,.35,1) .7s;
}

header.active .main_nav .menu_area nav ul li article div:nth-child(3){
	animation: m_li .5s forwards cubic-bezier(.2,.44,.35,1) .8s;
}

header.active .main_nav .menu_area nav ul li article div:nth-child(4){
	animation: m_li .5s forwards cubic-bezier(.2,.44,.35,1) .88s;
}

header.active .main_nav .menu_area nav ul li article div:nth-child(5){
	animation: m_li .5s forwards cubic-bezier(.2,.44,.35,1) .95s;
}

header.active .main_nav .menu_area nav ul li article div:nth-child(6){
	animation: m_li .8s forwards cubic-bezier(.2,.44,.35,1) 1s;
}





@keyframes m_li{
	0% {
		opacity: 0;
		margin-left: 20px;
	}
	100% {
		opacity: 1;
		margin-left: 0px;
	}
}

.main_nav .menu_area nav ul li article div a{
    transition: all 500ms 0s ease;
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding: 7px 10px 7px 20px;
}

.main_nav .menu_area nav ul li article div a aside{
    position: relative;
    z-index: 10;
    line-height: 1.2;
}

.main_nav .menu_area nav ul li article div a.line::before{
    transition: all 500ms 0s ease;
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 1px;
    background-color: #000;
    left: 4px;
    top: 15px;
    z-index: 4;
}

.main_nav .menu_area nav ul li article div a.i_window svg{
    transition: all 500ms 0s ease;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 3px;
    top: 10px;
    z-index: 4;
}

.main_nav .menu_area nav ul li article div a::after{
    transition: all 300ms 0s ease;
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0;
    background: linear-gradient( 90deg, rgb(53, 181, 151) 20%, rgb(0, 160, 233) 80% );
    border-radius: 3px;
    clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
}

.pc .main_nav .menu_area nav ul li article div a:hover{
    transform: translateX(10px);
    color: #FFF;
}

.pc .main_nav .menu_area nav ul li article div a:hover::after{
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.pc .main_nav .menu_area nav ul li article div a.line:hover::before{
    background-color: #FFF;
}

.pc .main_nav .menu_area nav ul li article div a.i_window:hover svg{
    fill: #FFF;
}

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

    
    .menu_area nav ul li{
        padding: 50px 0px 50px;
        width: 55%;
    }
    
    .menu_area nav ul li:nth-child(3n),
    .menu_area nav ul li:nth-child(3n-1){
        width: auto;
    }

    .menu_area nav ul li:nth-child(2n-1){
        width: 55%;
    }

    .menu_area nav ul li:nth-child(2n){
        width: 45%;
    }

    .menu_area nav ul li:nth-child(-n+4){
        padding-bottom: 0px;
    }

}

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

    header .main_nav .menu_area nav ul li h2 {
        font-size: 20px;
    }

    /* header .main_nav section .menu_header .button_area{
        position: absolute;
        width: 80px;
        height: 40px;
        right: 0;
        top: 0;
    }

    header .main_nav section .menu_header .button_area .bt_icon{
        width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
        opacity: 0;
        transform: translateY(20px);
        animation: menu_header_move .5s forwards cubic-bezier(.2,.44,.35,1) .6s;
    }
    

    header .main_nav section .menu_header .button_area .bt_icon .bt_search span,
    header .main_nav section .menu_header .button_area .bt_icon .bt_movie span{
        padding-top: 0;
    } */

}

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

    .menu_area nav ul li{
        padding: 50px 0px 0px;
        width: 55%;
    }

    .menu_area nav ul li:nth-child(2n-1){
        width: 100%;
    }

    .menu_area nav ul li:nth-child(2n){
        width: 100%;
    }

    header .menu_area nav ul li:nth-child(-n+4){
        padding-bottom: 0px;
    }


}


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

    .header .button_area.ver_intern .bt_icon{
        display: none;
    }

    .header .button_area.ver_intern .bt_internship{
        right: 65px;
        top: 21px;
    }

    header .main_nav section .menu_header .button_area .bt_icon{
        display: flex;
        justify-content: space-between;
        position: absolute;
        right: 0;
        top: 0px;
        width: 80px;
        height: 30px;

        opacity: 0;
        transform: translateY(20px);
    }

    header.active .main_nav section .menu_header .button_area .bt_icon{
        animation: menu_header_move .5s forwards cubic-bezier(.2,.44,.35,1) .5s;
    }

    

    header.active .main_nav section .menu_header .button_area .bt_icon a span{
        padding-top: 0;
    }

   

}


/* main menu **/









/* footer **/

footer .menu_header{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .menu_header::after{
    width: 100%;
}

footer .menu_header .bt_top{
    display: flex;
}


footer .menu_header .bt_top p{
    display: flex;
    align-items: center;
    width: 56px;
    height: 50px;
}

footer .menu_header .bt_top p a{
    transition: all 500ms 0s ease;
}

footer .menu_header .button_area{
    display: flex;
    height: 50px;
}


footer .menu_header .bt_internship{
    padding: 4px 20px 6px;
    border-left: #000 solid 1px;
    width: 180px;
    height: 50px;

}

footer .menu_header .bt_internship a{
    transition: all 500ms 0s ease;
    border: #000 solid 2px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

footer .menu_header .bt_internship a span{
    font-weight: 700;
}


footer .menu_header .bt_icon{
    width: 120px;
    padding: 0 20px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-left: #000 solid 1px;
}

footer .menu_header .bt_icon .bt_search span,
footer .menu_header .bt_icon .bt_movie span{
    padding-top: 7px;
}

footer .menu_header .bt_top .bt_header{
    display: none;
}

footer .menu_header .bt_top .button_footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   
    border-left: #000 solid 1px;
    padding-left: 15px;
}

footer .menu_header .bt_top .button_footer .bt_embox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .menu_header .bt_top .button_footer .bt_embox a{
    transition: all 500ms 0s ease;
    width: 90px;
    height: 50px;
    margin-left: 5px;
    text-align: center;
    color: #FFF;
    border-radius: 7px;
    padding-top: 9px;
}

footer .menu_header .bt_top .button_footer .bt_embox a span{
    display: block;
}

footer .menu_header .bt_top .button_footer .bt_c1 a{
    background-color: rgb(53, 181, 151);
}

footer .menu_header .bt_top .button_footer .bt_c2 a{
    background-color:  rgb(0, 160, 233)
}

footer .menu_header .bt_top .button_footer .bt_embox a:hover{
    opacity: .7;
}






footer nav ul{
    border-bottom: #000 solid 1px;
    padding-top: 20px;
}

footer .menu_area nav ul li h2 {
    font-size: 20px;
    padding-bottom: 15px;
}


footer .menu_area nav ul li article div{
    padding-right: 40px;
}

footer .menu_area nav ul li article div a{
    transition: all 500ms 0s ease;
    display: block;
    font-size: 14px;
    position: relative;
    padding: 5px 0px 6px 18px;
}

.pc footer .menu_area nav ul li article div a:hover{
    transform: translateX(8px);
}

footer .menu_area nav ul li article div a.line::before{
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 1px;
    background-color: #000;
    left: 2px;
    top: 11px;
}

footer .menu_area nav ul li article div a.i_window svg{
    position: absolute;
    width: 12px;
    height: 12px;
    left: 1px;
    top: 7px;
}


footer #bt_footer ul li{
    display: inline-block;
    font-size: 12px;
    padding-left: 30px;
}

footer #bt_footer ul li a{
    transition: all 300ms 0s ease;
    position: relative;
    padding-bottom: 2px;
}

.pc footer #bt_footer ul li a::before{
    transition: all 300ms 0s ease;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFF;
    left: 0;
    bottom: -5px;
}

.pc footer #bt_footer ul li a:hover{
    opacity: .7;
}

.pc footer #bt_footer ul li a:hover::before {
    background-color: #000;
    bottom: 0px;
}






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

    footer .menu_header .bt_top{
        padding-top: 10px;
    }

    footer .menu_header .bt_top p{
        width: 46px;
        height: 40px;
    }


    footer .menu_header .button_area{
        height: 40px;
    }


    footer .menu_header .bt_internship{
        padding: 7px 10px 7px;
        border-left: #000 solid 1px;
        width: 130px;
        height: 40px;
        font-size: 13px;
    }
    
    footer .menu_header .bt_internship a{
        transition: all 500ms 0s ease;
        border: #000 solid 1px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
    }
    
    footer .menu_header .bt_icon{
        width: 100px;
        padding: 0 10px;
        height: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-left: #000 solid 1px;
    }

    footer .menu_header .bt_icon .bt_search span,
    footer .menu_header .bt_icon .bt_movie span{
        padding-top: 2px;
    }

    footer .menu_header .bt_top .button_footer{
        padding-left: 5px;
    }

    footer .menu_header .bt_top .button_footer .bt_embox a{
        transition: all 500ms 0s ease;
        width: 80px;
        height: 40px;
        text-align: center;
        color: #FFF;
        border-radius: 7px;
        padding-top: 6px;
        font-size: 13px;
    }



    footer #bt_footer ul{
        padding-bottom: 20px;
    }

    footer #bt_footer ul li{
        display: inline-block;
        font-size: 12px;
        padding-left: 0px;
        padding-right: 20px;
        padding-bottom: 10px;
    }

}

  /* ¥¤¥ó¥¿©`¥ó¥·¥Ã¥××·¼Ó¤Ç */
@media screen and (max-width: 950px) {

    footer .menu_header .bt_top{
        width: 100%;
        padding-top: 20px;
    }

    footer .menu_header .bt_top .button_area.type_2{
        display: flex;
        width: calc(100% - 46px) ;
    }

    footer .menu_header .bt_top .button_footer{
        width: calc(100% - 230px) ;
    }

    footer .menu_header .bt_top .button_footer .bt_embox{
        width: 50%;
    }

    footer .menu_header .bt_top .button_footer .bt_embox a {
        width: calc(50% - 5px) ;
        height: 40px;
    }

}


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

    footer #menu_inner {
        padding: 40px 7% 40px;
    }

    footer .menu_header{
        padding-bottom: 10px;
    }


    footer .menu_header .bt_top{
        width: auto;
        padding-top: 5px;
    }

    footer .menu_header .bt_top .button_header{
        display: none;
    }

    footer .menu_header .bt_internship{
        padding: 5px 0px 7px 10px;
        border-left: #000 solid 1px;
        width: 100%;
        height: 40px;
        font-size: 13px;
        margin-left: 10px;
    }

    footer .menu_header .bt_internship a{
        transition: all 500ms 0s ease;
        border: #000 solid 1px;
        width: 120px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
    }


    footer .menu_header .bt_top p{
        width: auto;
        padding-bottom: 0px;
        height: 40px;
        font-size: 15px;
    }

    footer .menu_header .bt_icon{
        display: none;
        border: none;
        width: 70px;
        margin-left: 20px;
        padding: 0;
    }

    footer .menu_header .bt_icon img{
        width: 30px;
    }

    footer .menu_header .bt_top .button_footer{
        display: none;
    }

    footer nav ul{
        padding-top: 40px;
    }

    footer .menu_area nav ul li {
        padding: 0px 0px 20px;
    }

    footer .menu_area nav ul li:nth-child(-n+4) {
        padding-bottom: 20px;
    }

    footer .menu_area nav ul li:nth-child(2n),
    footer .menu_area nav ul li:nth-child(2n-1){
        width: 100%;
    }
   

    footer .menu_area nav ul li h2 {
        position: relative;
        display: block;
        font-size: 18px;
        padding-bottom: 15px;
        cursor: pointer;
    }

    footer .menu_area nav ul li h2::before,
    footer .menu_area nav ul li h2::after{
        transition: all 500ms 0s ease;
        content: "";
        position: absolute;
        display: block;
        width: 16px;
        height: 1px;
        background-color: #000;
    }

    footer .menu_area nav ul li h2::before{
        right: 0px;
        top: 8px;
    }

    footer .menu_area nav ul li h2::after{
        right: 0px;
        top: 8px;
        transform: rotate(90deg);
    }

    footer .menu_area nav ul li.active h2::before{
        transform: rotate(360deg);
    }

    footer .menu_area nav ul li.active h2::after{
        transform: rotate(360deg);
    }

    footer .menu_area nav ul li article{
        display: none;
    }

    footer .menu_area nav ul li article div a{
        display: block;
        font-size: 14px;
        padding-left: 18px;
    }

    footer .menu_area nav ul li article div a.line::before{
        top: 12px;
    }
    
    
    footer .menu_area nav ul li article div a.i_window svg{
        width: 10px;
        height: 10px;
        top: 6px;
    }


}



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

    footer .menu_header .bt_internship{
        padding: 5px 0px 7px 10px;
        border-left: none;
        width: 100%;
        height: 40px;
        font-size: 12px;
        margin-left: 0px;
    }

    footer .menu_header .bt_internship a{
        width: 100px;
    }

    footer .menu_area nav ul li article div a.i_window svg{
        width: 10px;
        height: 10px;
        top: 8px;
    }
}


/* footer **/






/* category_menu **/


#category_menu{
    position: relative;
    background-color: #f5f5f5;

    z-index: 100;
    /* clip-path: polygon(0 0, calc(100% - 80px) 0%, calc(100% - 80px) 100%, 0% 100%); */
    margin-top: -80px;

    padding: 100px 0px;
}

a.hoverimg {
    display: block;
}


a.hoverimg figure img{
    transition: all 500ms 0s ease;
    overflow: hidden;
}

.pc a.hoverimg:hover figure img{
    transform: scale(1.1);
    opacity: .85;
}

#category_menu.category_common h2{
    font-size: 22px;
    text-align: center;
    line-height: 1;
}

#category_menu.category_common ul {
    width: 80%;
    max-width: 930px;
    margin: 0 auto;
}

#category_menu.category_common ul li span{
    display: inline-block;
}

#category_menu.category_common ul.bt4box li {
    position: relative;
    width: 44%;
    max-width: 400px;
    padding-bottom: 25px;
    margin-top: 50px;
}


#category_menu.category_common ul.bt5box li {
    position: relative;
    width: 31%;
    max-width: 400px;
    padding-bottom: 25px;
    margin-top: 50px;
}

#category_menu.category_common ul.bt5box li:nth-child(4){
    margin-left: 17.25%;
}

#category_menu.category_common ul.bt5box li:nth-child(5){
    margin-right: 17.25%;
}

#category_menu.category_common ul li figure{
    overflow: hidden;
    border-radius: 10px;
}

#category_menu.category_common ul li figcaption{
    text-align: center;
    line-height: 1.2;
    letter-spacing: -.5px;
    padding-top: 12px;
    font-size: 17px;
}

#category_menu.category_common ul li figcaption svg{
    display: inline-block;
    width: 22px;
    height: 17px;
    padding-right: 5px;
    transform: translateY(2px);
}



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

    #category_menu{
        /* clip-path: polygon(0 0, 93% 0%, 93% 100%, 0% 100%); */
    }

}




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

    #category_menu.category_common ul {
        width: 80%;
    }

    #category_menu{
        margin-top: -8vw;
        padding: 10vw 0px;
    }
    
    #category_menu.category_common ul.bt4box li {
        position: relative;
        width: 44%;
        max-width: 400px;
        padding-bottom: 2.5vw;
        margin-top: 5vw;
    }

    #category_menu.category_common ul li figcaption{
        text-align: center;
        line-height: 1.2;
        padding-top: 15px;
        font-size: 15px;
    }

}


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

    #category_menu.category_common h2{
        font-size: 22px;
        text-align: left;
        line-height: 1;
        padding-left: 8%;
    }

    #category_menu.category_common ul{
        padding-top: 20px;
    }

    #category_menu.category_common ul.bt4box,
    #category_menu.category_common ul.bt5box{
        display: block;
        width: 84%;
        margin: 0 auto;
    }

    #category_menu.category_common ul.bt4box li,
    #category_menu.category_common ul.bt5box li{
        width: 90%;
        max-width: none;
        border-bottom: #ccc solid 1px;
        margin-top: 2.5vw;
        padding-bottom: 0px;
       
    }

    #category_menu.category_common ul.bt5box li:nth-child(4),
    #category_menu.category_common ul.bt5box li:nth-child(5){
        margin-left: 0%;;
        margin-right: 0%;
    }

    #category_menu.category_common ul li a{
        width: 100%;
        padding-bottom: 20px;
    }

    #category_menu.category_common ul li a figure{
        border-radius: 7px;
        width: 80px;
        display: none;
    }

    #category_menu.category_common ul li figcaption{
        width : 100%;
        text-align: left;
    }

}


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

    #category_menu{
        /* clip-path: polygon(0 0, 92vw 0%, 92vw 100%, 0% 100%); */
        margin-top: -8vw;
        padding: 15vw 0px;
    }


}






/* category_menu **/






.link_window{
    display: block;
}

.link_window a{
    position: relative;
    padding: 4px 10px 7px 16px;
    line-height: 1.4;
}

.link_window a svg{
    transition: all 500ms 0s ease;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 0px;
    top: 10px;
    z-index: 4;
}

























