@charset "utf-8";

/* ============================================
   Sidebar
============================================ */
.svisual {
    position: relative;
    height: 250px;
    /*background: no-repeat 50% 50%;*/
    animation: svisual 3s linear forwards;
    color: #fff;
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Plus Jakarta Sans", "Pretendard";
}
@keyframes svisual {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}
.svisual.g01 {
    background-image: url("/images/unicon/svisual01.jpg");
}
.svisual.g02 {
    background-image: url("/images/unicon/svisual02.jpg");
}
.svisual.g03 {
    background-image: url("/images/unicon/svisual03.jpg");
}
.svisual.g04 {
    background-image: url("/images/unicon/svisual04.jpg");
}
.svisual.g05 {
    background-image: url("/images/unicon/svisual05.jpg");
}
.svisual.g06 {
    background-image: url("/images/unicon/svisual06.jpg");
}
.svisual.g07 {
    background-image: url("/images/unicon/svisual01.jpg");
}
.svisual .tit {
    font-size: 50px;
    color: #fff;
    font-weight: 900;
    line-height: 68px;
}
.svisual .location {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}
.svisual .location i {
    width: 11px;
    height: 20px;
    background: url("/images/unicon/icon_home.svg") no-repeat 50% 50% / contain;
}
.svisual .location em {
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
}
.svisual .location strong {
    font-weight: 900;
}

.svisual.g05 .location span,
.svisual.g05 .location span + em,
.svisual.g06 .location span,
.svisual.g06 .location span + em {
    display: none;
}

.svisual.g05 .aside,
.svisual.g06 .aside {
    display: none;
}
.aside {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.07) 0 3px 10px;
    z-index: 30;
}
.aside dd {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 12px 60px;
}
.aside .g,
.aside .s dt {
    display: none;
}
.aside a {
    position: relative;
    font-size: 18px;
    color: #888;
    font-weight: 600;
    line-height: 36px;
}
.aside a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #004e96;
    transition: 0.2s linear;
}
.aside a.on {
    color: #004e96;
}
.aside a.on:after {
    left: 0;
    width: 100%;
}

.container {
    padding: 50px 0 160px 0;
    font-size: 20px;
    color: #222;
    line-height: 30px;
    min-height: calc(100vh - 697px);

    margin-bottom: 10px;
    overflow-x: auto;
}
.container .title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    margin-bottom: 70px;
}
.container .dtit {
    font-size: 36px;
    font-weight: 900;
    font-family: "Plus Jakarta Sans";
    line-height: 48px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}
/*.container .dtit:after {content:""; display:block; width:10px; height:10px; background:#006CD0; border-radius:50%;}*/
.glbox {
    border: #ebebeb 1px solid;
    border-radius: 5px;
    padding: 50px 65px;
}