.main-page {
	margin-top: 105px;
}
.wrap-inner {
    margin: 0 auto;
}
.visual-area {
	position: relative;
    padding: 83px 0;
    background: #E9EEF2;
    background-image: url(/images/main/main-visual-gradient.png);
    background-repeat: no-repeat;
    background-position: center -20%;
    background-size: 80%;
    overflow: hidden;
}

.visual-area .wrap-inner {
    max-width: 1378px;
}

.main-box__list {
	position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    height: 450px;
}

.main-box__item {
    position: relative;
    display: flex;
    width: 230px;
    border-radius: 20px;
    overflow: hidden;
    transition: width 0.3s;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.main-box__item .text-wrapper {
    padding: 6%;
    display: none;
}
.main-box__item .title {
    position: absolute;
    top: 9%;
    width: 100%;
    padding: 0 10%;
    font-size: 24px;
    color: #ffffff;
}
.main-box__item .title strong {
    font-weight: 700 ;
}
.main-box__item .text {
    word-break: keep-all;
    width: 239px;
    margin-top: 35px;
    line-height: 1.5;
    color: rgba(0,0,0,.7);
}

.main-box__item .btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
}
.main-box__item .btn {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 5px;
    background: #0078C3;
    color: #ffffff;
    font-size: 18px;
}
.main-box__item .btn-group .btn {
    margin-top: 0;
}

.main-box__item .btn img {
    max-width: 27px;
    margin-right: 8px;
    vertical-align: middle;
}

.main-box__item .img-wrapper {
    position: relative;
    width: 100%;
}
.main-box__item .img-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
}
.main-box__item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10%;
    overflow: hidden;
    transition: 0.5s;
}

.map-image-item {
    background: url("/images/main-visual-map.png") no-repeat 90% 77% / 30%;
}

/* on */
.main-box__item.on {
    width: 50%;
    flex-shrink: 0;
    background: #ffffff;
    cursor: unset;
}

.main-box__item.on .text-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
}

.main-box__item.on .title {
    position: initial;
    top: 0;
    padding: 0;
    font-size: 32px;
    color: #231F20;
}
.main-box__item.on .title strong {
    font-weight: 700 ;
}

.main-box__item.on .img-wrapper {
    width: 63%;
}

.main-box__item.on .img-wrapper::before {
    display: none;
}

.main-box__item.on .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10%;
}

.main-box__item.on .img-wrapper .title {
    display: none;
}

.only-focus:focus {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 2px dashed #000000;
    border-radius: 26px;
}



/* 메인 하단 */
.notice-area {
    padding: 34px 0 68px;
}

.notice-area .wrap-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
}

.notice-area .faq-area {
    width: 64%;
    position:relative;
}

.notice-slide-area {
    width: 31%;
}

.notice-area .title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}
.notice-area .title {
    font-size: 30px;
    font-weight: 700;
}

.notice-area .more-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: url("/images/ic-plus-thin.svg") no-repeat center / 80%;
}
.notice-area .round-box {
    border-radius: 24px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.notice-area .faq__list {
    padding: 16px 5%;
    font-size: 18px;
}
.notice-area .faq__list li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #E6E6E6;
}
.notice-area .faq__list li:last-child {
    border: 0;
}
/* .notice-area .faq__list li::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 2%;
    flex-shrink: 0;
    background: url("/images/ic-q.svg") no-repeat center / 100%;
} */
.notice-area .faq__list a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
}
.notice-area .faq__list a:hover {
    font-weight: 500;
    color: #0078C3;
}
.notice-area .notice-slide-area {
    position: relative;
}
.notice-slide-area .slide-control-group {
    display: flex;
    align-items: center;
    gap: 5px;
}
.notice-slide-area .swiper-pagination {
    position: inherit;
    font-size: 20px;
}
.notice-slide-area .swiper-button-prev,
.notice-slide-area .swiper-button-next {
    position: inherit;
}
.notice-slide-area .swiper-button-prev,
.notice-slide-area .swiper-button-next {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    flex-shrink: 0;
    background: url("/images/ic-main-arrow.svg") no-repeat center / 100%;
}
.notice-slide-area .swiper-button-prev {
    transform: rotate(180deg);
}
.notice-slide-area .swiper-button-prev::after,
.notice-slide-area .swiper-button-next::after {
    display: none;
}
.notice-slide-area .control-btn {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.notice-slide-area .button-play[aria-pressed='false'] {
    background-image: url('/images/ic-pause-btn.svg');
}
.notice-slide-area .button-play[aria-pressed='true'] {
    background-image: url('/images/ic-play-btn.svg');
}
.notice-slide-area .swiper-container {
    overflow: hidden;
}

.notice-slide-area .swiper-container .swiper-notification {
	display: none;
}
.notice-slide-area .swiper-slide {
    background: #ffffff;
    border-radius: 20px;
}
.notice-slide-area .swiper-slide a{
    display: block;
    padding: 29px 9%;
}

.notice-slide-area .content-title {
	min-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
}

.notice-slide-area .swiper-slide .date {
    margin-top: 47px;
    padding-top: 10px;
    text-align: right;
    border-top: 1px solid #DBDBDB;
    font-size: 16px;
    color: #757575;
}

.notice-slide-area .swiper-slide a:focus-visible {
	    outline-offset: -4px;
}

@media screen and (max-width: 1400px) {
    .wrap-inner {
        padding: 0 20px;
    }

    .main-box__list {
        height: 350px;
        gap: 14px;
    }

    .main-box__item .text-wrapper {
        padding: 7% 5%;
    }

    .main-box__item .btn {
        padding: 7px 11px;
        font-size: 15px;
    }

    .main-box__item .btn img {
        max-width: 18px;
    }

    .main-box__item .title {
        font-size: 20px;
    }

    .main-box__item.on .title {
        font-size: 26px;
    }

    .main-box__item .text {
        margin-top: 25px;
    }

    .main-box__item.on .img-wrapper {
        width: 78%;
    }

    .notice-area .title {
        font-size: 26px;
    }
    
}

@media all and (max-width: 991px) {
		.main-page {
		margin-top: 55px;
	}
}

@media all and (max-width: 768px) {
    .visual-area {
        padding: 20px 0;
        background-position: center 125%;
    }
    .main-box__list {
        height: auto;
        flex-direction: column;
    }

    .main-box__item {
        width: 100%;
        height: 108px;
        flex-direction: column;
        justify-content: space-between;
        border: 16px;
        transition: height 0.3s;
    }

    .main-box__item.on {
        width: 100%;
        height: 200px;
    }

    .main-box__item:not(.on) .title {
        top: 50%;
        transform: translateY(-50%);
        padding: 0 20px;
    }

    .main-box__item.on .title {
        font-size: 22px;
    }

    .main-box__item .img-wrapper {
        height: 100%;
    }

    .main-box__item .img-wrapper::before {
        height: 100%;
    }

    .main-box__item .text {
        display: none;
    }

    .main-box__item.on .img-wrapper {
        width: 100%;
        height: 70px;
    }

    .main-box__item.on .text-wrapper {
        height: 100%;
        padding: 20px 18px 14px;
    }

    .main-box__item .btn {
        font-size: 13px;
    }

    .pc-br {
        display: none;
    }

    .notice-area .wrap-inner {
        flex-direction: column;
        gap: 40px;
    }

    .notice-area .faq-area {
        width: 100%;
    }
    .notice-slide-area {
        width: 100%;
    }

    .notice-area .title-wrapper {
        margin-bottom: 15px;
    }

    .notice-area .title {
        font-size: 24px;
    }

    .notice-area .faq__list {
        font-size: 16px;
    }

    .notice-slide-area .swiper-slide a {
        padding: 20px;
        border-radius:20px;
    }

    .notice-slide-area .content-title {
        font-size: 18px;
    }

    .notice-slide-area .swiper-slide .date {
        margin-top: 22px;
    }

    .notice-slide-area .swiper-pagination {
        font-size: 15px;
    }
    
}