@charset "utf-8";

/* ==================================================================

    admission.css

=================================================================== */

/* --------------------------------
■共通
-------------------------------- */

/* ◇ accent
-------------------------------- */
.contents .accent{
    background-image: url("../../images/admission/accent.jpg");
}

/* ◇ hours
-------------------------------- */
.hours .pseudoTable dt{
    padding-right: 12px;
}

.hours .pseudoTable dt span{
    display: inline-block;
    border: 1px solid #1F1F1F;
    width: 4em;
    text-align: center;
}
.hours .pseudoTable dd{
    font-size: var(--font-size-l);
}


/* ◇ license
-------------------------------- */
.license{
    border-top: 1px solid #BFBFBF;
}

.license > li{
    border-bottom: 1px solid #BFBFBF;
    padding: 40px 0;
}
    .license > li > dl > dt,
    .license > li > dl > dd{
        position: relative;
        padding-left: 50px;
    }
    .license > li > dl > dt{
        cursor: pointer;
    }
    .license > li > dl > dt::before{
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        content: "";
        background: 0 0 no-repeat;
        background-size: 100% auto;
        width: 39px;
        height: 26px;
        vertical-align: middle;
    }

    .license > li.ok > dl > dt::before{
        background-image: url("../../images/common/icon/license_ok.svg");
    }
    .license > li.ng > dl > dt::before{
        background-image: url("../../images/common/icon/license_ng.svg");
    }

    .license > li > dl > dd{
        margin-top: 34px;
    }

        .license .toggle {
            display: inline-block;
            width: 20px;
            height: 20px;
            position: absolute;
            right: 20px;
            top: 0px;
        }
        .license .toggle::before,
        .license .toggle::after {
            content: "";
            width: 100%;
            height: 2px;
            background: #1F1F1F;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transition: .2s;
        }
        .license .toggle::before {
            transform: translate(-50%, -50%) rotate(90deg);
            -webkit-transform: translate(-50%, -50%) rotate(90deg);
            -ms-transform: translate(-50%, -50%) rotate(90deg);
        }
        .license .open .toggle::before {
            transform: translate(-50%, -50%) rotate(0deg);
            -webkit-transform: translate(-50%, -50%) rotate(0deg);
            -ms-transform: translate(-50%, -50%) rotate(0deg);
        }

    .license > li.ok > dl > dt + dd{
        display: none;
    }
    .license > li.ok > dl > dt.open + dd{
        display: block;
    }

/* --------------------------------
■ sp
-------------------------------- */ 
@media only screen and
(max-width : 767px) {

    .license > li{
        padding: 5vw 0;
    }
    
    .license > li > dl > dd{
        margin-top: 5vw;
    }
    
        .license > li > dl > dd{
            padding-left: 3vw;
        }
}



/* ◇ #movie
-------------------------------- */
#movie{
    overflow: hidden;
    padding-top: 76px;
    position: relative;
}
#movie::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 50%;
    background: url("../../images/common/background.jpg") 0 0 repeat;
    background-size: cover;
}

#movie * + .buttonStyle.more{
    margin-top: 60px;
}

/* --------------------------------
■ sp
-------------------------------- */ 
@media only screen and
(max-width : 767px) {

    #movie * + .buttonStyle.more{
        margin-top: 5vw;
    }

}


/* ◇ #flow
-------------------------------- */
#flow .title._lv2 + * {
    margin-top: 46px;
}

#flow .stepBox{
    position: relative;
    display: flex;
    align-items:stretch;
    justify-content: space-around;
    gap:29px;
    padding-bottom: 60px;
}

    #flow .stepBox::before{
        content: "";
        position: absolute;
        top: 92px;
        left: 39px;
        width: 1px;
        height: calc(100% - 92px - 13px);
        background: #8A8A8A;
    }

    #flow .stepBox:last-of-type{
        padding-bottom: 0;
    }
    #flow .stepBox:last-of-type::before{
        display: none;
    }

    #flow .stepBox > .step{
        flex-shrink: 0;
    }
    #flow .stepBox .explain{
        flex-grow: 1;
    }
        #flow .stepBox .explain .title{
            font-size: 2.0rem;
        }
        #flow .stepBox .explain .title + *{
            margin-top: 16px;
        }
        #flow .stepBox .explain p{
            line-height: 1.75;
        }

#flow .closing{
    margin-top: 80px;
}
#flow .closing p.text{
    text-align: center;
    margin-bottom: 26px;
}

/* --------------------------------
■ sp
-------------------------------- */ 
@media only screen and
(max-width : 767px) {

    #flow .title._lv2 + * {
        margin-top: 6vw;
    }

    #flow .stepBox{
        gap:16px;
        padding-bottom: 60px;
    }

        #flow .stepBox .explain .title{
            font-size: 1.8rem;
        }
        #flow .stepBox .explain .title + *{
            margin-top: 2vw;
        }

    #flow .closing{
        margin-top: 10vw;
    }
    #flow .closing p.text{
        text-align: center;
        margin-bottom: 4vw;
    }

}


