.section_top {
    position: relative;
    width: 100%;
    height: 920px;
    overflow: hidden;
    background-color: #6f0027;
}

.section_top:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.section_top .wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
    width: 100%;
    justify-content: space-between;
}
.section_top .wrap .wrap_p {
    z-index: 10;
    width: 75%;
}
.section_top .wrap .wrap_p .red {
    font-size: 70px;
    color: #f6b100;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section_top .wrap_p img {
    width: 28px;
    height: 18px;
    margin-bottom: 24px;
}

.section_top .wrap_p p {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
}

.section_top .wrap_p p.show {
    display: block;
    opacity: 1;
}
/*
.section_top .wrap_p p:nth-of-type(1) {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    color: #ffffff;
}

.section_top .wrap_p p:nth-of-type(2) span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1em;
    font-size: inherit;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.section_top .wrap_p p:nth-of-type(2) span span {
    position: absolute;
    transition: transform 0.5s ease;
}

.section_top .wrap_p p:nth-of-type(2) {
    text-align: center;
    font-size: 150px;
    color: #fff;
    margin-top: 24px;
    word-break: keep-all;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
}

.section_top .wrap_p p:nth-of-type(2) span {
    width: 50px;
    font-size: 80px;
    color: #fff;
    margin-top: -4px;
} */

.section_top .wrap_p p {
    font-size: 70px;
    color: #ffffff;
}

.section_top .wrap .wrap_i {
    padding-top: -60px;
    position: relative;
    width: 10px;
    height: 100%;
    z-index: 9;
}

.section_top .wrap .wrap_i img {
    right: 0;
    bottom: 0;
    position: absolute;
    max-height: 860px;
}

/* .section_top .wrap_p p:nth-of-type(3) { text-align: center; line-height: 100%; font-size: 96px; color: #fff; margin-top: 24px; word-break: keep-all;} */
.section_top .wrap_p button {
    height: 124px;
    border-radius: 230px;
    background-color: #d5e3fe;
    color: #1e2637;
    font-size: 40px;
    margin-top: 24px;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px 0px 50px;
}

.section_top .wrap_p a {
    width: 260px;
    height: 60px;
    border-radius: 99px;
    background-color: #ffffff;
    color: #1e2637;
    font-size: 24px;
    margin-top: 24px;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#count-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-right: 100px;
}

#count-container span {
    position: absolute;
    transition: transform 0.5s ease;
}

/* section00 */
.section00 {
    width: 100%;
    background-color: #6f0027;
}

.section00 .wrap {
    padding: 120px 0px;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

.section00 .wrap .wrap_t {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section00 .wrap .wrap_t .title {
    font-size: 96px;
    color: white;
}

.section00 .wrap .wrap_t .title_org {
    font-size: 96px;
    color: #f6b100;
}

.section00 .wrap .wrap_t .title_border {
    font-size: 64px;
    color: white;
    border-bottom: 1px solid white;
    display: flex;
}

.section00 .wrap .content {
    display: flex;
    justify-content: center;
}

.section00 .wrap .wrap_c {
    max-width: 588px;
    padding-top: 64px;
}

.section00 .wrap .card {
    display: flex;
    flex-direction: column;
    width: calc((100% - 24px) / 2);
    gap: 24px;
}

.section00 .wrap .card .wrap_i {
    display: flex;
    flex-direction: column;
}

.section00 .wrap .card .wrap_i img {
    width: 100%;
    height: 100%;
    aspect-ratio: 282 / 399;
    object-fit: cover;
}

.section00 .slick-slide {
    margin: 0 calc(25px / 2);
}

.section00 .slick-list {
    margin: 0 calc(-25px / 2);
}

/* 도트 스타일 */
.slick-dots {
    position: absolute;
    bottom: -50px; /* 하단 위치 조정 */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 0;
    list-style: none;
}

/* 도트 버튼 스타일 */
.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    background-color: rgb(160 60 60 / 50%); /* 도트 색상 */
    border-radius: 50%; /* 원형 도트 */
    width: 10px; /* 도트 크기 */
    height: 10px; /* 도트 크기 */
    padding: 0;
    border: none;
    outline: none;
    position: relative;
}

/* 도트 활성화 색상 */
.slick-dots li.slick-active button {
    background-color: rgb(196 60 60); /* 활성화된 도트 색상 */
}

/* 숫자 숨기기 */
.slick-dots li button:before {
    content: none; /* 숫자 표시 제거 */
}

/* section01 */
.section01 {
    height: 1020px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section01 .wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    align-self: flex-end;
}

.section01 .title {
    font-size: 58px;
    line-height: 100%;
    color: #1e2637;
    font-weight: bold;
    text-align: center;
}

.section01 .content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-self: self-end;
}

.section01 .wrap_c {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.section01 .wrap_c .card {
    background-color: #d5e3fe;
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    width: calc((100% - 24px) / 2);
    height: 340px;
    justify-content: space-between;
}

.section01 .wrap_c .card img {
    width: 20px;
    height: 26px;
    margin-bottom: 40px;
}

.section01 .wrap_c .card .card_title {
    color: #1e2637;
    font-size: 32px;
}

.section01 .wrap_c .card .card_title_red {
    color: #9f003a;
    font-size: 32px;
}

.section01 .wrap_c .card .card_desc {
    color: #6d7fa2;
    font-size: 20px;
    font-weight: 400;
    height: 60px;
    letter-spacing: -1px;
    line-height: 100%;
}

.section01 .wrap_b {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.section01 .wrap_b button {
    background-color: #5590f7;
    color: white;
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 24px;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
}

/* seciton03 */
.section03 {
    /* height: 1126px; */
    width: 100%;
    background-color: #e8e3d6;
}

.section03 .wrap {
    padding: 120px 0px;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

.section03 .wrap .wrap_i {
    width: 100%;
    height: 100%;
    display: flex;
}

.section03 .wrap .wrap_i img {
    width: 100%;
}

.section03 .wrap .title_list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section03 .wrap .title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    padding-top: 30px;
    background-color: black;
    color: white;
    font-size: 60px;
    margin-left: 24px;
    border-radius: 16px;
}

.section03 .wrap .title:nth-of-type(1) {
    margin-left: 0px;
}

.section03 .wrap .desc {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9b0035;
    font-size: 38px;
    text-align: center;
    margin-top: 36px;
}

/* seciton04 */
.section04 {
    height: 1176px;
    width: 100%;
    background-color: #e8e3d6;
}

.section04 .wrap {
    padding: 120px 0px;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

.section04 .wrap .sub_title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    font-family: 'Pretendard';
}

.section04 .wrap .sub_title button {
    display: flex;
    color: #223350;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    font-family: 'Pretendard';
    justify-content: center;
    align-items: center;
}

.section04 .wrap .sub_title button .wrap_i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}

.section04 .wrap .sub_title button .wrap_i img {
    width: auto;
    max-height: 100%;
}

.section04 .wrap .card_list_type1 {
    margin-bottom: 80px;
}

.section04 .wrap .card_type1 {
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.section04 .wrap .card_list_type1 .card {
    display: flex;
    flex-direction: column;
    width: calc((100% - 72px) / 4);
    aspect-ratio: 257 / 277;
    border-radius: 8px;
    background-color: #eeeeee;
    height: 300px;
}

.section04 .wrap .card_list_type1 .card .card_header {
    height: 132px;
    border-radius: 8px 8px 0 0;
    background-color: #9e2021;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    width: 100%;
}

.section04 .wrap .card_list_type1 .card .card_content {
    padding: 16px;
}

.section04 .wrap .card_list_type1 .card .card_title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Pretendard';
    color: white;
    letter-spacing: -3px;
    text-align: center;
}

.section04 .wrap .card_list_type1 .card .card_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.section04 .wrap .card_list_type1 .card .card_desc {
    font-size: 16px;
    font-family: 'Pretendard';
    max-height: 90px;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.section04 .wrap .card_list_type1 .card .name {
    font-size: 16px;
    color: #888888;
    font-family: 'Pretendard';
    text-align: end;
}

.section04 .wrap .card_list_type2 {
    /* display: flex;
    gap: 24px; */
    margin-bottom: 80px;
}

.section04 .wrap .card_list_type2 .card {
    display: flex;
    flex-direction: column;
    width: calc((100% - 72px) / 4);
    border-radius: 16px;
}

.section04 .wrap .card_list_type2 .shorts_container {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
}

.section04 .wrap .card_list_type2 .shorts_container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.section04 .slick-slide {
    margin: 0 calc(25px / 2);
}
.section04 .slick-list {
    margin: 0 calc(-25px / 2);
}

/* section05 */
.section05 {
    width: 100%;
    background-color: #e8e3d6;
}

.section05 .wrap {
    padding: 120px 0px;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

.section05 .wrap .wrap_t {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section05 .wrap .wrap_t .title {
    font-size: 64px;
    font-weight: 700;
    padding: 0px 20px;
    border-bottom: 1px solid black;
    font-family: 'Pretendard';
}
.section05 .wrap .wrap_t .wrap_i {
    width: 490px;
    margin-top: -15px;
}

.section05 .wrap .wrap_t .wrap_i img {
    width: 100%;
}

.section05 .wrap .wrap_c {
    margin-top: 8px;
}

.section05 .wrap .wrap_c .content .card_type1 {
    width: 100%;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.section05 .wrap .wrap_c .content .card_type1 .card {
    width: calc((100% - 24px) / 2);
    aspect-ratio: 137 / 208;
    max-width: 482px;
    position: relative;
    border-radius: 16px 16px 0px 0px;
    background-color: #eaecf2;
    overflow: hidden;
}

.section05 .wrap .wrap_c .content .card_type1 .card img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    object-fit: contain;
}

.section05 .wrap .wrap_c .content .card_type1 .card .info {
    position: absolute;
    bottom: 0;
    padding: 32px 40px;
    background-color: #000;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.section05 .wrap .wrap_c .content .card_type1 .card .info .desc {
    font-size: 12px;
    font-family: 'Pretendard';
    color: #b9b9b9;
    font-weight: 700;
    min-height: 28px;
}

.section05 .wrap .wrap_c .content .card_type1 .card .info .wrap_n {
    display: flex;
    align-items: flex-end;
}

.section05 .wrap .wrap_c .content .card_type1 .card .info .wrap_n .name {
    font-size: 24px;
    font-family: 'Pretendard';
    color: white;
    font-weight: 700;
}

.section05 .wrap .wrap_c .content .card_type1 .card .info .wrap_n .position {
    margin-left: 8px;
    font-size: 14px;
    font-family: 'Pretendard';
    color: #deba6a;
    font-weight: 700;
}

.section05 .wrap .wrap_c .content .card_type2 {
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.section05 .wrap .wrap_c .content .card_type2 .card {
    width: calc((100% - 72px) / 4);
    /* margin-right: 25px; */
    aspect-ratio: 282 / 468;
    max-width: 282px;
    position: relative;
    border-radius: 16px;
    background-color: #eaecf2;
    overflow: hidden;
}

.section05 .slick-slide {
    margin: 0 calc(25px / 2);
}
.section05 .slick-list {
    margin: 0 calc(-25px / 2);
}

.section05 .wrap .wrap_c .content .card_type2 .card img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    object-fit: contain;
}

.section05 .wrap .wrap_c .content .card_type2 .card .info {
    position: absolute;
    bottom: 0;
    padding: 20px 32px;
    background-color: #000;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 107px;
}

.section05 .wrap .wrap_c .content .card_type2 .card .info .desc {
    font-size: 12px;
    font-family: 'Pretendard';
    color: #b9b9b9;
    font-weight: 700;
}

.section05 .wrap .wrap_c .content .card_type2 .card .info .wrap_n {
    display: flex;
    align-items: flex-end;
}

.section05 .wrap .wrap_c .content .card_type2 .card .info .wrap_n .name {
    font-size: 24px;
    font-family: 'Pretendard';
    color: white;
    font-weight: 700;
}

.section05 .wrap .wrap_c .content .card_type2 .card .info .wrap_n .position {
    margin-left: 8px;
    font-size: 14px;
    font-family: 'Pretendard';
    color: #deba6a;
    font-weight: 700;
}

/* section06 */
.section06 {
    width: 100%;
    background-color: #6f0027;
}

.section06 .wrap {
    padding: 120px 0px;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

.section06 .wrap .wrap_t {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.section06 .wrap .wrap_t .title {
    font-size: 150px;
    color: white;
}
.section06 .wrap .map_title {
    color: white;
}
.section06 .wrap .wrap_c {
    display: flex;
    gap: 24px;
}

.section06 .wrap .wrap_c .content {
    display: flex;
    flex-direction: column;
    width: calc((100% - 24px) / 2);
    gap: 24px;
}

.section06 .wrap .wrap_c .content .info {
    border-radius: 12px;
    background-color: white;
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.section06 .wrap .wrap_c .content .info .title {
    font-size: 44px;
    font-weight: 700;
    font-family: 'Pretendard';
    letter-spacing: -2px;
}

.section06 .wrap .wrap_c .content .info .sub_title {
    margin-top: 18px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Pretendard';
    background-color: white;
    border: 2px solid #9e2021;
    color: #9e2021;
    border-radius: 8px;
    padding: 8px 16px;
    letter-spacing: -2px;
    margin-bottom: 48px;
}
.section06 .wrap .wrap_c .content .info .sub_title .type01 {
    display: flex;
    align-items: center;
}

.section06 .wrap .wrap_c .content .info .sub_title .type01 img {
    margin-right: 5px;
}

.section06 .wrap .wrap_c .content .info .sub_title #clock {
    font-size: 28px;
    font-weight: 500;
    font-family: 'Pretendard';
    color: #9e2021;
    /* letter-spacing: -2px; */
}

.colon {
    display: inline-block;
    width: 7px;
    text-align: center;
}

.section06 .wrap .wrap_c .content .info .sub_title .type02 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Pretendard';
    color: #9e2021;
    letter-spacing: -2px;
}

.section06 .wrap .wrap_c .content .info .contact_info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 99px;
    border: 1px solid #5590f7;
    background-color: #d5e3fe;
    padding: 8px;
    margin-bottom: 16px;
    cursor: pointer;
}

.section06 .wrap .wrap_c .content .info .contact_info:nth-of-type(6) {
    margin-bottom: 0px;
}

.section06 .wrap .wrap_c .content .info .contact_info .contact {
    font-family: 'Pretendard';
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
}

.section06 .wrap .wrap_c .content .info .wrap_i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.section06 .wrap .wrap_c .content .info .wrap_i img {
    width: 70%;
    height: 70%;
}

.section06 .wrap .wrap_c .content button {
    width: 100%;
    background-color: #5590f7;
    color: white;
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    padding: 18px 0px;
    border-radius: 12px;
}

.section06 .wrap .map_box {
    border-radius: 12px;
    cursor: pointer;
}

.section06 .wrap .wrap_c .content .time_info {
    margin-top: 40px;
}

.section06 .wrap .wrap_c .content .time_info p {
    font-size: 24px;
}

.section06 .wrap .wrap_b {
    margin-top: 24px;
    display: flex;
    gap: 24px;
}

.section06 .wrap .wrap_b button {
    width: calc((100% - 48px) / 3);
    color: #1e2637;
    background-color: #d5e3fe;
    border-radius: 12px;
    font-size: 26px;
    padding: 14px;
}

@keyframes underline {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes arrow-ani {
    0% {
        stroke-dashoffset: 400;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes rotateClock {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

img.rotate {
    animation: rotateClock 5s linear infinite;
}

.map_popup {
    position: absolute;
    top: 55%;
    left: 50%;
    display: none;
}

@keyframes animateDashed1 {
    to {
        width: 85px;
    }
}

@keyframes animateDashed2 {
    to {
        width: 160px;
    }
}

br.mo {
    display: contents;
}

@media screen and (max-width: 1600px) {
    .section07 {
        zoom: 0.8;
        padding: 0;
    }

    .section05 > p:nth-of-type(1) {
        font-size: 34px;
    }

    .section05 > p:nth-of-type(2) {
        font-size: 24px;
    }
}

@media screen and (max-width: 1400px) {
    .section04 .flexbox .item span:nth-of-type(1) {
        padding: 10px 20px;
    }

    .section04 .flexbox .item span:nth-of-type(2) {
        font-size: 18px;
    }

    .section04 .flexbox .item {
        padding: 50px 50px 30px;
    }

    .section07 {
        zoom: 0.65;
    }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
    /* .section_top {
        height: 100vh;
    }

    .section_top .wrap_p {
        width: 100%;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section_top .wrap_p img {
        margin-bottom: 80px;
    }

    .section_top .wrap_p p:nth-of-type(1) {
        font-size: 20px;
    }

    .section_top .wrap_p p:nth-of-type(2) {
        font-size: 64px;
        justify-content: center;
    }

    .section_top .wrap_p p:nth-of-type(3) {
        font-size: 24px;
    } */
    .section_top {
        height: calc(100vh + 60px);
        padding-top: 60px;
    }

    .section_top .wrap {
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
    }

    .section_top .wrap_p {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 450%;
    }
    .section_top .wrap_p a {
        position: absolute;
        bottom: 8px;
        padding-top: 0px;
    }
    .section_top .wrap .wrap_p .red {
        font-size: 32px;
    }

    .section_top .wrap_p p:nth-of-type(1) {
        font-size: 32px;
    }

    .section_top .wrap_p p:nth-of-type(2) {
        font-size: 32px;
        justify-content: center;
    }

    .section_top .wrap_p p:nth-of-type(3) {
        font-size: 32px;
    }
    .section_top .wrap_p a {
        margin-top: 100%;
    }
    .section_top .wrap .wrap_p {
        width: 100%;
    }
    .section_top .wrap .wrap_i {
        padding-top: 0px;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 9;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 120px;
    }

    .section_top .wrap .wrap_i img {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 55vh;
    }
    /* section00 */
    .section00 .wrap {
        padding: 40px 0px;
    }

    .section00 .wrap .wrap_t {
        align-items: center;
    }

    .section00 .wrap .wrap_t .title {
        font-size: 32px;
    }

    .section00 .wrap .wrap_t .title_org {
        font-size: 32px;
    }

    .section00 .wrap .wrap_t .title_border {
        font-size: 24px;
    }

    .section00 .wrap .wrap_c {
        max-width: none;
        padding-top: 24px;
    }

    .section00 .wrap .wrap_c .wrap_i {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #section00_swiper_wrapper {
        display: flex;
    }

    .section00 .swiper0 {
        /* width: 100vw; */
        width: calc((100vw - 20px));
    }

    /* section01 */
    .section01 {
        margin: 0 auto;
        height: auto;
    }
    .section01 .wrap {
        display: block;
    }

    .section01 .wrap .wrap_i {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
    }
    .section01 .wrap .wrap_i img {
        height: 100%;
        max-width: 767px;
    }

    .section01 .wrap .content {
        margin-bottom: 24px;
        max-width: none;
    }

    .section01 .wrap .content .wrap_p {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .section01 .wrap .content .wrap_p p {
        font-size: 32px;
    }

    .section01 .wrap_m {
        /* display: flex; */
    }

    .section01 .swiper_m {
        display: flex;
    }

    .section01 .wrap_m .card {
        background-color: #d5e3fe;
        padding: 24px 14px;
        width: 278px;
        /* aspect-ratio: 257 / 277; */
        min-height: 340px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .section01 .wrap_m .card img {
        width: 20px;
        height: 26px;
        margin-bottom: 40px;
    }

    .section01 .wrap_m .card .card_title {
        color: #1e2637;
        font-size: 28px;
        word-break: auto-phrase;
    }

    .section01 .wrap_m .card .card_title_red {
        color: #9f003a;
        font-size: 28px;
        word-break: auto-phrase;
    }

    .section01 .wrap_m .card .card_desc {
        color: #6d7fa2;
        font-size: 20px;
        font-weight: 400;
        height: 60px;
        letter-spacing: -1px;
        line-height: 100%;
    }

    .section01 .wrap_b {
        padding: 0px 64px;
        margin-bottom: 40px;
    }

    /* section03 */
    .section03 {
        height: auto;
        background-color: #eeeeee;
    }
    .section03 .wrap {
        padding: 24px 0px;
    }

    .section03 .wrap .title_list {
        gap: 12px;
        margin-top: 20px;
    }

    .section03 .wrap .title {
        padding: 12px;
        font-size: 20px;
        margin-left: 0px;
    }

    .section03 .wrap .desc {
        margin-top: 12px;
        font-size: 16px;
    }

    /* section04 */
    .section04 {
        height: auto;
        background-color: white;
    }

    .section04 .wrap {
        padding: 40px 16px;
    }

    .section04 .wrap .sub_title {
        font-size: 20px;
    }

    .section04 .wrap .sub_title button .wrap_i {
        width: 20px;
        height: 20px;
    }

    .section04 .wrap .sub_title button {
        font-size: 20px;
    }

    .section04 .wrap .card_list_type2 .card {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .section04 .wrap .card_list_type1 .card .card_sub_title {
        font-size: 20px;
    }

    .section04 .wrap .card_type1 {
        gap: 0px;
    }

    /* section05 */
    .section05 {
        background-color: #e7e9dc;
    }

    .section05 .wrap {
        padding: 40px 16px;
    }

    .section05 .wrap .wrap_t .title {
        font-size: 24px;
        border: none;
        margin-bottom: 20px;
    }

    .section05 .wrap .wrap_c .content .card_type1 {
        gap: 16px;
    }

    .section05 .wrap .wrap_c .content .card_type1 .card .info {
        padding: 16px;
    }

    .section05 .wrap .wrap_c .content .card_type1 .card .info .desc {
        font-size: 8px;
    }

    .section05 .wrap .wrap_c .content .card_type1 .card .info .wrap_n .name {
        font-size: 16px;
    }

    .section05 .wrap .wrap_c .content .card_type1 .card .info .wrap_n .position {
        font-size: 12px;
    }

    .section05 .wrap .wrap_c .content .card_type2 {
        display: block;
        margin-top: 16px;
    }

    .section05 .wrap .wrap_c .content .card_type2 .card {
        max-width: none;
    }

    .section05 .wrap .wrap_c .content .card_type2 .card .info {
        padding: 8px;
        min-height: 67px;
    }

    .section05 .wrap .wrap_c .content .card_type2 .card .info .wrap_n {
        display: block;
    }

    .section05 .wrap .wrap_c .content .card_type2 .card .info .desc {
        font-size: 8px;
    }

    .section05 .wrap .wrap_c .content .card_type2 .card .info .wrap_n .name {
        font-size: 16px;
    }

    .section05 .wrap .wrap_c .content .card_type2 .card .info .wrap_n .position {
        font-size: 12px;
        margin-left: 0px;
        margin-top: 8px;
    }

    .section05 .slick-dots {
        bottom: -30px;
    }

    /* section06 */
    .section06 .wrap {
        padding: 40px 16px;
    }

    .section06 .wrap .wrap_t {
        margin-bottom: 20px;
    }

    .section06 .wrap .wrap_t .title {
        font-size: 24px;
    }
    .section06 .wrap .map_title {
        font-size: 24px;
        border: none;
        margin: 20px auto 0;
        text-align: center;
    }
    .section06 .wrap .wrap_c {
        display: block;
    }

    .section06 .wrap .wrap_c .content {
        width: 100%;
    }

    .section06 .wrap .wrap_c .content .info .wrap_s {
        display: flex;
        justify-content: center;
    }

    .section06 .wrap .wrap_c .content .info .title {
        font-size: 28px;
        text-align: center;
    }

    .section06 .wrap .wrap_c .content .info .sub_title {
        margin: 40px 0px;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section06 .wrap .wrap_c .content .info .sub_title #clock {
        font-size: 16px;
        letter-spacing: 0px;
    }

    .section06 .wrap .wrap_c .content .info .sub_title .type02 {
        font-size: 16px;
    }

    .section06 .wrap .wrap_c .content .info .contact_info {
        margin-bottom: 8px;
    }

    .section06 .wrap .wrap_c .content .info .contact_info .contact {
        font-size: 20px;
    }

    .section06 .wrap .wrap_c .content .time_info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section06 .wrap .wrap_c .content .time_info p {
        font-size: 16px;
        font-weight: 400;
    }

    .section06 .wrap .map_box {
        margin-top: 20px;
    }

    .section06 .wrap .wrap_c .mobile_flex.wrap_b {
        display: flex;
        gap: 8px;
    }

    .section06 .wrap .wrap_c .mobile_flex.wrap_b button {
        width: calc((100% - 24px) / 4);
        color: white;
        background-color: #5590f7;
        border-radius: 12px;
        font-size: 16px;
        padding: 4px;
        letter-spacing: -1px;
        line-height: 150%;
    }

    .section06 .wrap .wrap_b.type02 {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        gap: 12px;
    }

    .section06 .wrap .wrap_b.type02 button {
        width: 100%;
        font-size: 16px;
    }

    .slick-prev img {
        width: 24px;
        height: 24px;
    }
    .slick-next img {
        width: 24px;
        height: 24px;
    }

    .slick-prev {
        margin-left: 16px;
        margin-right: 24px;
    }

    .slick-next {
        margin-left: 24px;
        margin-right: 16px;
    }

    .section04 .slick-prev {
        margin-left: 0px;
        margin-right: 24px;
    }

    .section04 .slick-next {
        margin-left: 24px;
        margin-right: 0px;
    }

    .section05 .slick-slide,
    .section01 .slick-slide,
    .slick-slide {
        margin: 0 calc(16px / 2);
    }
    .section05 .slick-list,
    .section01 .slick-list,
    .slick-list {
        margin: 0 calc(-16px / 2);
    }
}
@media screen and (max-width: 900px) {
    br.mo {
        display: inline;
    }

    .section07 {
        zoom: 0.4;
    }
}
@media screen and (max-width: 800px) {
    .section07 {
        zoom: 0.35;
    }
}

@media screen and (max-width: 700px) {
    .section07 {
        zoom: 0.34;
    }
}

@media screen and (max-width: 600px) {
    .section07 {
        zoom: 0.32;
    }
}

@media screen and (max-width: 550px) {
    .section07 {
        zoom: 0.29;
    }
}

@media screen and (max-width: 500px) {
    .section07 {
        zoom: 0.265;
    }

    .section05 .wrap_p br.br500 {
        display: block;
    }
}

@media screen and (max-width: 450px) {
    .section07 {
        zoom: 0.24;
    }
}

@media screen and (max-width: 400px) {
    .section07 {
        zoom: 0.22;
    }
    .section01 .wrap_p p:nth-of-type(2) {
        font-size: 18px;
    }
}

@media screen and (max-width: 350px) {
    .section07 {
        zoom: 0.2;
    }
}
