@charset "UTF-8";
.hide{
    display: none;
}
/*-----------------------------------------------
__Common
-----------------------------------------------*/
#loading{
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s linear;
    animation: loading_start 3s forwards 0s ;
}
@keyframes loading_start{
    0%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
#loading img{
    max-width: 400px;
    opacity: 0;
    transition: all ease .3s;
    animation: loading_img 0.7s forwards 0s ;
}
@keyframes loading_img{
	0%{
		transform: scale(0.95);
		opacity: 0;
	}
	100%{
		transform: scale(1.0);
		opacity: 1;
	}
}

.pc_no{
    display: none;
}

.btn a{
    text-decoration: none;
    min-width: 240px;
    padding: 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background-color: var(--main);
    color: var(--white);
    transition: all ease .5s;
}
.btn a:hover{
    background-color: var(--font);
}
.btn .material-icons{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 24px;
    color: var(--white);
    margin-right: 0;
    transition: all ease .3s;
}
.btn a:hover .material-icons{
    animation: arrow-r 0.6s forwards ease-in-out 0s;
}
@keyframes arrow-r{
    0%{
        opacity: 1;
        transform: translateX(0);
    }
    50%{
        opacity: 0;
        transform: translateX(60%);
    }
    51%{
        opacity: 0;
        transform: translateX(-60%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.btn em{
    font-size: 1.15rem;
    padding-left: 16px;
}

.s_btn{
    margin:24px 0;
}
.s_btn a{
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
    color: var(--font);
    text-decoration: none;
}
.s_btn a:hover{
    color: var(--main);
}
.s_btn .bg_bl{
    background: var(--main);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 32px;
    height: 32px;
}
.s_btn .material-icons{
    color: var(--white);
    font-size: 20px;
    margin-right: 0;
    transition: all ease .3s;
}
.s_btn a:hover .material-icons{
    animation: arrow-r 0.5s forwards ease-in-out 0s;
}

.bg_wh{
    background-color: var(--white);
}
.bg_sky{
    background-color: var(--sky);
}
.bg_bl{
    background-color: var(--main);
    color: var(--white);
}
.bl{
    color: var(--main);
}

h2{
    display: flex;
    flex-direction: column;
    font-size: 2.8rem;
    margin-bottom: 2em;
    letter-spacing: 0.05em;
}
h2 small{
    font-size: 1.2rem;
    font-weight: 700;
}
h2 em{
    font-size: 3.4rem;
    letter-spacing: 0.005em;
}
h2.inview{
    transition: all ease .3s;
    opacity: 0;
}
h2.show{
    animation : inText 1s forwards;
}
@keyframes inText{
      0%{
        opacity: 0;
         transform: translateX( -200px );
      
      }
      100%{
        opacity: 1;
          transform: translateX( 0 );
      }
}
h2 .textanimation span{
     display: inline-block;
     padding-bottom: 2px;
}
h2 .textanimation > span{
      overflow: hidden;
}
h2.show .textanimation > span > span{
    animation: showText 0.5s backwards;
}

h3{
    font-size: 1.8rem;
    margin-bottom: 1em;
}
h3 .material-icons,
h3 .material-icons-outlined{
    font-size: 36px;
}

.box_fixed{
    justify-content: space-between;
}
.l_box{
    width: 30%;
    position: relative;
}
.l_box > section{
    position: sticky;
    top: 50px;
}
.l_box > section h2{
    margin-bottom: 0;
}
.r_box{
    width: 65%;
}

.video_wrap{
    width: 100%;
    aspect-ratio: 16 / 9;
}

ol {
    counter-reset: num ;
}
ol > li{
    position: relative;
    margin-bottom: 1em;
    counter-increment: num;
    padding-left: 24px;
}
ol > li::before{
    position: absolute;
    left: 0;
    top: 0;
    content: counter(num) ".";
}

.accordion{
    background: var(--white);
}
.accordion > dt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    transition: all ease .3s;
}
.accordion > dt:hover{
    color: var(--main);
}
.accordion > dt .material-icons{
    color: var(--gray);
    transition: all ease .3s;
    margin-right: 0;
}
.accordion > dt:hover .material-icons{
    color: var(--main);
}
.accordion > dt.open .material-icons{
    transform: rotate(180deg);
}
.accordion > dd{
    position: relative;
    padding: 24px;
}
.accordion > dd::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: calc(100% - 48px);
    height: 1px;
    border-top: 1px solid var(--gray);
    transition: all ease .3s;
}
.accordion > dd p:last-of-type{
    margin-bottom: 0;
}

.fadein{
	opacity: 0;
}
.fadein.show{
	animation: fadein 0.5s forwards 0s;
}
@keyframes fadein{
	0%{
		translate : 0 20px;
		opacity: 0;
	}
	100%{
		translate: 0 0;
		opacity: 1;
	}
}

/*-----------------------------------------------
__Contents
-----------------------------------------------*/
header{
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    padding: 50px 5%;
}
header #logo img{
    max-height: 60px;
    width: auto;
}
#logo a:hover img{
    opacity: 0.5;
}
#h_entry{
    position: fixed;
    z-index: 100;
    top: 50px;
    right: 5%;
}

header #logo,
#h_entry{
    transition: all ease .3s;
	opacity: 0;
}
header #logo,
#h_entry{
	animation: header_in 0.8s forwards 3s ;
}
@keyframes header_in{
	0%{
		transform: translateY(-100px);
		opacity: 0;
	}
	100%{
		transform: translateY(0px);
		opacity: 1;
	}
}

#visual{
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    min-height: 728px;
    background-color: var(--main);
}
#visual::after{
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: rgba(var(--main-rgb), 0.3);
    background: linear-gradient(0deg, rgba(var(--main-rgb), 0.3) 0%, rgba(var(--white-rgb), 0) 100%);
}

.v_video{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.v_hl{
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    color: var(--white);
    width: 100%;
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.v_en{
    display: flex;
    flex-direction: column;
    line-height: 1;
    opacity: 0;
}
.loaded .v_en{
    animation: v_en_fadein 1s forwards 0s;
}
@keyframes v_en_fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.v_en .textanimation{
    font-size: 10vh;
    font-weight: 700;
}
.v_en .textanimation span{
     display: inline-block;
}
.v_en .textanimation > span{
      overflow: hidden;
}
.loaded .v_en .textanimation > span > span{
    animation: showText 0.5s backwards;
}
@keyframes showText{
      0%{
         transform: translateX( -100% );
      
      }
      100%{
          transform: translateX( 0 );
      }
}
.v_sub{
    width: 25%;
    min-width: 400px;
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    transition: all ease .3s;
	opacity: 0;
}
.v_sub{
	animation: header_in 1s forwards 3.5s ;
}
.v_sub dl{
    border-left: 1px solid var(--white);
    padding-left: 20px;
}
.v_scroll{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--white);
}
.v_scroll .material-icons{
    margin-right: 0;
    color: var(--white);
    font-size: 24px;
    animation: arrow-b 2.4s forwards ease-in-out 0s infinite;
}
@keyframes arrow-b{
    0%{
        opacity: 1;
        transform: translateY(0);
    }
    20%{
        opacity: 0;
        transform: translateY(60%);
    }
    21%{
        opacity: 0;
        transform: translateY(-60%);
    }
    41%{
        opacity: 1;
        transform: translateY(0);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

#intro{
    position: relative;
    z-index: 0;
    overflow: hidden;
    font-weight: 700;
}
#intro::before{
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 200px;
    background-color: var(--main);
    opacity: 0.2;
    filter: blur(100px);
    transform: rotate(-45deg) translateY(-25%);
}
#intro section{
    position: relative;
    z-index: 1;
}
#intro dl{
    justify-content: center;
    align-items: center;
    margin: 2em auto;
    padding: 20px 30px;
    border-radius: 6px;
    font-size: 1.2rem;
}
#intro dt{
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid var(--gray);
    font-size: 1.1rem;
}
#intro .btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
#intro .btn a{
    min-width: 320px;
}

#news section{
    padding-left: 20%;
}
#news ul{
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray);
    font-size: 1rem;
}
#news li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0 20px;
    padding: 30px 20px;
    border-bottom: 1px solid var(--gray);
}
#news li dl{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
#news li dt{
    width: 110px;
}
#news li dd{
    width: calc(100% - 130px);
}
#news li .material-icons{
    color: var(--gray);
    transition: all ease .3s;
}
#news li a:hover .material-icons{
    color: var(--main);
    transform: translateX(5px);
}

.s_date{
    gap: 0 40px;
    color: var(--font);
    text-align: center;
}
.s_date article{
    flex: 1;
    position: relative;
}
.s_date article::before{
    position: absolute;
    color: var(--main);
    left: 16px;
    top: 16px;
    z-index: 1;
    font-size: 1.4rem;
}
.s_date h3{
    padding: 40px;
    margin-bottom: 0;
    display: flex;
    gap: 0 10px;
    align-items: center;
    justify-content: center;
}
.s_date h3 em{
    font-size: 3rem;
}
.s_date h3 small{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    letter-spacing: 0;
    color: var(--main);
    border: 1px solid var(--main);
    border-radius: 50%;
}
.s_date dl{
    align-items: center;
    justify-content: center;
    padding :40px 20px;
    border-top: 1px solid var(--gray);
    font-size: 1.2rem;
}
.s_date dt{
    width: 30%;
}
.s_date dd{
    width: 70%;
}
.s_date dt .bl{
    padding-right: 1em;
}

#access .fl_box{
    align-items: center;
}
#access figure{
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
#access .caution{
    border: 2px solid var(--red);
    padding: 24px;
}

.p_list{
    display: flex;
    flex-direction: column;
    gap: 88px 0;
    counter-reset: p_num ;
}
.p_list dl{
    counter-increment: p_num;
}
.p_list dl[data-program="4"] p em{
    border-bottom: 2px solid var(--font);
}
.p_list dt{
    display: flex;
    align-items: flex-start;
    gap: 0 16px;
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 32px 0;
}
.p_list article[data-p_list="1"] dd{
    padding-left: 2em;
}
.p_list article[data-p_list="1"] dt::before{
    content: counter(p_num , decimal-leading-zero);
    color: var(--main);
    font-size: 1rem;
    letter-spacing: 0;
}
.p_past{
    border-top: 1px solid var(--font);
    padding-top: 68px;
}
.p_past .fl_box{
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.p_past .fl_box > div{
    width: calc(50% - 12px);
}
.p_past figure{
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    filter: drop-shadow(0 10px 20px rgba(var(--main-rgb),0.2));
}

.course{
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 20px;
}
.course .bg_wh{
    padding: 40px;
}
.course p em{
    border-bottom: none !important;
}
.course p{
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}
.course ul{
    display: flex;
    flex-direction: column;
    gap: 5px 0;
}
.course ul > li{
    position: relative;
	padding-left: 1.75em;
}
.course ul > li::before{
	content: "";
	top: 0.7em;
	left: 0.65em;
    position: absolute;
	
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background: var(--font);
}


#interview{
    background-color: #16407E;
    color: var(--white);
}
.i_list{
    display: flex;
    flex-direction: column;
    gap: 88px 0;
    counter-reset: i_num ;
}
.i_list .video_wrap{
	aspect-ratio: 4 / 3;
    filter: drop-shadow(0 0 20px rgba(var(--font-rgb),0.25));
}
.i_list .video_wrap video{
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
}
.i_list dl{
    margin-top: 20px;
    counter-increment: i_num;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0 40px ;
}
.i_list dt{
    display: flex;
    align-items: center;
    gap: 0 16px;
    padding: 2px 0;
    width: 164px;
}
.i_list dt::before{
    content: counter(i_num , decimal-leading-zero);
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0;
}
.i_list dt span::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
    width: 24px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}
.i_list dd{
    width: calc(100% - 224px);
}
.i_list dd span{
    display:block;
    font-size: 1.4rem;
}
.i_list dd small{
    display: block;
    margin-top: 10px;
    line-height: 1.4;
}

#message{
    margin-top: 80px;
}
.i_telemail{
    width: 100%;
}
.i_telemail a{
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(var(--white-rgb),0.2));
}
.i_telemail a:hover{
    filter: drop-shadow(0 0 50px rgba(var(--white-rgb),0.3));
    transform: translateY(-10px);
}


#attention section[data-att="notice"]{
    margin-bottom: 88px;
}
.at_list{
    display: flex;
    flex-direction: column;
    gap: 24px 0;
}

#f_entry{
    padding: 180px 0;
}
#f_entry dl{
    font-size: 2rem;
}
#f_entry .btn a{
    background-color: var(--white);
    color: var(--main);
    padding: 32px 24px;
    gap: 0 24px;
}
#f_entry .btn a:hover{
    background-color: var(--font);
    color: var(--white);
}
#f_entry .btn .material-icons{
    width: 40px;
    height: 40px;
    font-size: 32px;
    color: var(--main);
}
#f_entry .btn a:hover .material-icons{
    color: var(--white);
}
#f_entry .btn em{
    font-size: 1.6rem;
}

#info .bg_wh{
    padding: 32px ;
}
#info h3{
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray);
}
#info .tel a{
    font-size: 1.4rem;
    color: var(--font);
    pointer-events: none;
}
#info p a{
    color: var(--main);
    text-decoration: underline;
}
#info p a:hover{
    text-decoration: none;
}

footer aside{
    background: #16407E;
    color: var(--white);
    text-align: center;
    padding: 24px;
}
footer aside small{
    opacity: 0.7;
    font-weight: 400;
    font-size: 0.8rem;
}


@media screen and (max-width: 999px) {
    .box_fixed{
        flex-direction: column;
        gap: 64px 0;
    }
    .l_box, .r_box{
        width: 100%;
    }

    #visual{
        display: flex;
        flex-direction: column-reverse;
    }
    #visual::after{
        display: none;
    }
    .v_video{
        height: auto;
    }
    .v_hl{
        position: static;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px 0;
    }
    .v_en .textanimation{
        font-size: 10vw;
    }
    .v_sub{
        width: auto;
    }
    #news section{
        padding-left: 0;
    }

    .s_date{
        gap: 0 24px;
    }
    .s_date dl{
        flex-direction: column;
    }
    .s_date dt,.s_date dd{
        width: 100%;
    }

    #access .box_fixed{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    #access figure{
        width: 35%;
    }
    #access .r_box{
        width: 60%;
    }

    .i_telemail{
        text-align: center;
    }

    #f_entry{
        padding: 104px 0;
    }
    #f_entry .fl_box{
        flex-direction: column;
        align-items: center;
        gap: 40px 0;
        text-align: center;
    }
    #info .tel a{
        pointer-events: all;
    }
}

@media screen and (min-width: 0px) and (max-width: 600px) {
    body{
        font-size: 1rem;
        line-height: 2;
    }
    p{
        margin-bottom: 2em;
    }
    .pc_no{
        display: block;
    }
    .sp_no{
        display: none;
    }
    .wrap,.s_wrap{
        width: 80%;
    }
    .fl_box.sm_bl{
        flex-direction: column;
    }
    .pd{
        padding: 104px 0;
    }
    #loading img{
        max-width: 70%;
    }
    h2{
        font-size: 2.2rem;
    }
    h2 em{
        font-size: 3rem;
    }
    .btn a{
        min-width: auto;
        gap: 0 4px;
    }
    .btn a em{
        padding-left: 0;
    }
    .btn .material-icons{
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .box_fixed{
        gap: 48px 0;
    }
    .accordion > dt{
        padding: 24px 16px 24px 24px;
        gap: 0 16px;
        line-height: 1.4;
        align-items: flex-end;
    }

    header{
        padding: 32px 5%;
    }
    header #logo img{
        max-height: 40px;
    }
    #h_entry{
        top: 18px;
        right: 5%;
    }
    #h_entry.btn a{
        padding: 12px 12px 12px 16px;
    }
    #h_entry.btn em{
        font-size: 1rem;
    }

    #visual{
        height: 100svh;
        min-height: 700px;
    }
    .v_hl{
        justify-content: space-between;
    }
    .v_en .textanimation{
        font-size: 13vw;
    }
    .v_sub{
        min-width: auto;
        width: 100%;
        align-items: flex-start;
        line-height: 1.4;
    }
    #intro section.ta_center p{
        text-align: justify;
    }
    #intro dl{
        width: 100%;
        font-size: 1.1rem;
        gap: 10px;
    }
    #intro dt{
        width: 100%;
    }
    #intro dd{
        padding: 15px 20px;
    }
    #intro .btn a{
        width: 90%;
        min-width: auto;
    }

    #news li a{
        padding: 24px 0;
    }
    #news li dl{
        flex-direction: column;
        gap: 8px 0;
    }
    #news li dt{
        width: auto;
        font-size: 0.8rem;
    }
    #news li dd{
        width: 100%;
        line-height: 1.4;
    }

    .s_date{
        gap: 24px 0;
    }
    .s_date dl{
        padding: 32px 16px;
    }

    #access .box_fixed{
        flex-direction: column;
        justify-content: flex-start;
    }
    #access figure,#access .r_box{
        width: 100%;
    }

    .p_list dt{
        font-size: 1.4rem;
        padding: 24px 0;
        gap: 0 8px;
    }
    .p_list article[data-p_list="1"] dt::before{
        font-size: 0.9rem;
    }
    .p_list article[data-p_list="1"] dd{
        padding-left: 1.6em;
    }
    .p_past .fl_box{
        gap: 16px;
    }
    .p_past .fl_box > div{
        width: 100%;
    }

    .course{
        line-height: 1.4;
    }
    .course .bg_wh{
        padding: 40px 8%;
    }
    .course ul{
        gap: 12px 0;
    }

    #interview .wrap{
        width: 90%;
    }
    .i_list{
        gap: 48px 0;
    }
    .i_list dl{
        padding: 8px 0 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .i_list dt{
        padding: 0;
        width: 100%;
    }
    .i_list dd{
        width: 100%;
    }

    #f_entry dl{
        font-size: 1.4rem;
        line-height: 1.4;
    }
    #f_entry .btn{
        width: 100%;
    }
    #f_entry .btn em{
        font-size: 1.4rem;
    }
    #info .tel a{
        line-height: 1;
        font-size: 1.2rem;
    }
}