/* cursor */

#cursor {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
}

#cursor .cur_cir {
    width: 32px;
    height: 32px;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#cursor span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    color: #38bfda;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.045em;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-family: 'Montserrat';
    opacity: 0;
    transition-duration: 0.2s;
}

#cursor span .icons {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

#cursor span .icons img {
    animation: opc linear infinite alternate-reverse 0.6s;
}

#cursor span .icons img:nth-of-type(2) {
    animation-delay: 0.2s;
}

#cursor span .icons img:nth-of-type(3) {
    animation-delay: 0.4s;
}

#cursor.pointer span {
    opacity: 1;
}

#cursor.pointer .cur_cir {
    width: 104px;
    height: 104px;
    border: none;
    transform: rotate(0) scale(1) translate(50%, 50%) !important;
    position: relative;
}

#cursor.pointer .cur_cir::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(/asset/img/main/mouse_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: circleRotate 5s linear infinite;
}

@keyframes circleRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



._m {
    background-image: url(/asset/img/main/bottombg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 1921px) {
    ._m {
        background-size: 100%;
    }
}

._grdtxt {
    overflow: hidden;
    background: linear-gradient(to right, #00aae3, #97e2ca);
    display: inline-block;
    color: transparent;
    -webkit-background-clip: text;
}


/* se01(visual) */
._m .se01 {
    width: 100%;
    overflow: hidden;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

._m .se01 .vis_sw {
    width: 100%;
    height: 100%;
    z-index: 0;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

._m .se01 .vis_sw .mainvis {
    width: 100%;
    height: 100%;
    position: relative;
}

._m .se01 .vis_sw .mainvis .swiper-slide {
    overflow: hidden;
}

._m .se01 .vis_sw .mainvis .swiper-slide .imgbg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ._m .se01 .vis_sw .mainvis .swiper-slide:nth-child(1) .imgbg {
    background-image: url(/asset/img/main/vis_2.png);
}

._m .se01 .vis_sw .mainvis .swiper-slide:nth-child(2) .imgbg {
    background-image: url(/asset/img/main/vis_3.png);
}

._m .se01 .vis_sw .mainvis .swiper-slide:nth-child(3) .imgbg {
    background-image: url(/asset/img/main/vis_4.png);
} */

._m .se01 .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    transition-duration: 0.4s;
}

._m .se01 .maintitle {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

._m .se01 .maintitle dt {
    font-size: 40px;
    letter-spacing: -0.045em;
    font-weight: 500;
}

._m .se01 .maintitle dd {
    font-size: 20px;
    letter-spacing: -0.045em;
    font-weight: 300;
    margin-top: 15px;
}

._m .se01 .wrap .sw_navi {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

._m .se01 .wrap .sw_navi>div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    letter-spacing: -0.045em;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

._m .se01 .wrap .sw_navi>div::after {
    background: linear-gradient(-45deg, #97e2ca, #00aae3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    transition-duration: 0.2s;
    transform: translateX(-100%);
    border-radius: 0;
    z-index: 0;
}

._m .se01 .wrap .sw_navi>div span {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 821px) {
    ._m .se01 .wrap .sw_navi>div:hover::after {
        transform: translateX(0);
        border-radius: 50%;
    }
}

._m .se01 .sw_pagi {
    position: absolute;
    bottom: 55px;
    left: calc(85 / 1920 * 100%);
    display: flex;
    align-items: center;
}

._m .se01 .sw_pagi .num_ {
    font-size: 12px;
    letter-spacing: 0.015em;
    font-weight: 300;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

._m .se01 .sw_pagi .line {
    width: 100%;
    margin: 0 10px;
    display: flex;
}

._m .se01 .sw_pagi .line span {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.11);
    display: block;
    margin: 0 1px;
    transition-duration: 0.2s;
}

._m .se01 .sw_pagi .line span.swiper-pagination-bullet-active {
    background-color: #fff;
}


._m .se01 .scrollWrap {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

._m .se01 .scrollWrap .bordbx {
    width: 16px;
    height: 28px;
    border-radius: 8.5px;
    border: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    position: relative;
    justify-content: center;
    padding: 7px 0;
    overflow: hidden;
}

._m .se01 .scrollWrap .bordbx span {
    display: block;
    width: 2px;
    height: 6px;
    background-color: #fff;
    animation: scroll 1.4s infinite linear;
}

@keyframes scroll {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(150%);
        opacity: 0;
    }
}

._m .se01 .scrollWrap>p {
    font-size: 14px;
    letter-spacing: -0.025em;
    font-family: 'Inter';
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* ._m .se01.hide .sw_pagi{ opacity: 0; }
._m .se01.hide .wrap{ opacity: 0; }
._m .se01.hide .scrollWrap{ opacity: 0; } */


@media screen and (max-width: 1440px) {
    ._m .se01 .maintitle {
        padding: 0 100px;
    }

    ._m .se01 .maintitle dt {
        font-size: 34px;
    }

    ._m .se01 .maintitle dd {
        font-size: 18px;
    }
}

@media screen and (max-width: 904px) {
    ._m .se01 .maintitle dd{line-height: 1.3;}
}

@media screen and (max-width: 820px) {
    ._m .se01 .maintitle {
        /* padding: 0 80px; */
        word-break: keep-all;
    }

    ._m .se01 .maintitle dt {
        font-size: 28px;
        line-height: 1.3;
    }

    ._m .se01 .maintitle dd {
        font-size: 16px;
    }

    ._m .se01 .wrap .sw_navi>div {
        width: 50px;
        height: 50px;
        font-size: 13px;
    }

    ._m .se01 .scrollWrap {
        left: auto;
        right: 5%;
        transform: translateX(0);
    }
}

@media screen and (max-width: 768px) {
    ._m .se01 .vis_sw .mainvis .swiper-slide:nth-child(1) .imgbg {
        background-image: url(/asset/img/main/vis_2_m.png?ver=1) !important;
    }

    ._m .se01 .vis_sw .mainvis .swiper-slide:nth-child(2) .imgbg {
        background-image: url(/asset/img/main/vis_3_m.png?ver=1) !important;
    }

    ._m .se01 .vis_sw .mainvis .swiper-slide:nth-child(3) .imgbg {
        background-image: url(/asset/img/main/vis_4_m.png?ver=1) !important;
    }
}

@media screen and (max-width: 500px) {
    ._m .se01 .maintitle {
        padding: 0 5%;
    }

    ._m .se01 .maintitle dt {
        font-size: 24px;
    }

    ._m .se01 .maintitle dd {
        font-size: 14px;
        margin-top: 10px;
    }

    ._m .se01 .wrap .sw_navi {
        display: none;
    }

    ._m .se01 .scrollWrap {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
    }
}


/* se02 */
._m .se02 {
    background-image: url(/asset/img/main/se02_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    padding-top: 220px;
    padding-bottom: 120px;
    box-sizing: border-box;
}

._m .se02 .title02 {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

._m .se02 .title02 dt {
    font-size: 80px;
    letter-spacing: -0.045em;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #00475e;
    display: flex;
    align-items: center;
    justify-content: center;
}

._m .se02 .title02 dt span {
    margin-right: 20px;
}

._m .se02 .title02 dd {
    font-size: 16px;
    letter-spacing: -0.025em;
    color: #00aae3;
    font-weight: 700;
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid #00aae3;
    box-sizing: border-box;
    margin-top: 15px;
}

._m .se02 .center_sw {
    width: 100%;
    padding-top: 65px;
    overflow: hidden;
    position: relative;
}

._m .se02 .center_sw .se02sw {
    width: 100%;
    overflow: unset;
}

._m .se02 .center_sw .se02sw .swiper-slide {
    color: #fff;
    height: 403px;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(391 / 450 * 100%);
    height: calc(264 / 403 * 100%);
    box-sizing: border-box;
    text-align: center;
    z-index: -1;
    border-radius: 50px;
    overflow: hidden;
    transition-duration: 0.4s;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .bg {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    height: 100%;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .bg .blur {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts {
    z-index: 3;
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl {
    text-align: center;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl dt {
    font-size: 18px;
    letter-spacing: -0.025em;
    font-weight: 500;
    line-height: 1.3;
    transition-duration: 0.4s;
    transform: translateY(1em);
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl dd {
    font-size: 16px;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.46);
    margin-top: 5px;
    transform: translateY(1em);
    opacity: 0;
    transition-duration: 0.4s;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>a {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 15px;
    transition-duration: 0.2s;
    overflow: hidden;
    position: relative;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>a::before {
    background: linear-gradient(-45deg, #97e2ca, #00aae3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    transition-duration: 0.2s;
    transform: translateX(-100%);
    border-radius: 0;
    z-index: 0;
}

._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>a span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active {
    z-index: 3;
}

._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx {
    width: calc(733 / 450 * 100%);
    height: 100%;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
}

._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .bg .blur {
    opacity: 0;
}

._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>dl dt {
    font-size: 20px;
    transform: translateY(0);
}

._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>dl dd {
    transform: translateY(0);
    opacity: 1;
}

._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>a {
    width: 49px;
    height: 49px;
}

@media screen and (min-width: 821px) {
    ._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>a:hover {
        border-color: rgba(255, 255, 255, 0);
    }

    ._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>a:hover::before {
        transform: translateX(0);
        border-radius: 50%;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>a:hover span {
        filter: brightness(200%);
    }
}

.center_pagi {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center_pagi .btn {
    cursor: pointer;
    padding: 10px 0;
}

.center_pagi .btn.next img {
    transform: rotate(180deg);
}

.center_pagi .paging {
    margin: 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center_pagi .paging span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition-duration: 0.2s;
    position: relative;
    margin: 2px;
    border: 1px solid #00aae3;
    cursor: pointer;
}

.center_pagi .paging span::after {
    content: '';
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    background-color: #c5c5c5;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
}

.center_pagi .paging span.swiper-pagination-bullet-active::after {
    background-color: #00aae3;
}

.center_pagi .paging span:not(.swiper-pagination-bullet-active) {
    border-color: rgba(255, 255, 255, 0);
}


._m .se02 .center_sw .note {
    position: absolute;
    right: 35px;
    top: 90px;
    display: flex;
    align-items: center;
}

._m .se02 .center_sw .note span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00aae3;
    margin-right: 10px;
}

._m .se02 .center_sw .note p {
    font-size: 14px;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #00475e;
    margin-right: 5px;
}

._m .se02 .center_sw .note .icon {
    display: flex;
    align-items: center;
}

._m .se02 .center_sw .note .icon img {
    animation: opc linear infinite alternate-reverse 0.6s;
}

._m .se02 .center_sw .note .icon img:nth-of-type(2) {
    animation-delay: 0.2s;
}

._m .se02 .center_sw .note .icon img:nth-of-type(3) {
    animation-delay: 0.4s;
}

@keyframes opc {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 1280px) {
    ._m .se02 {
        padding: 120px 0;
    }

    ._m .se02 .title02 dt {
        font-size: 60px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide {
        height: 340px;
    }

    ._m .se02 .center_sw .note {
        top: 70px;
    }

}

@media screen and (max-width: 820px) {
    ._m .se02 {
        padding: 70px 0;
    }

    ._m .se02 .title02 dt {
        font-size: 40px;
    }

    ._m .se02 .title02 dt span {
        margin-right: 10px;
    }

    ._m .se02 .title02 dd {
        font-size: 14px;
    }

    ._m .se02 .wrap._2 {
        width: 100%;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide {
        height: 300px;
    }

    ._m .se02 .center_sw .note {
        top: 30px;
        right: 10px;
    }

    .center_pagi .paging {
        margin: 0 30px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide .bx {
        border-radius: 30px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl dt {
        font-size: 16px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl dd {
        font-size: 14px;
    }

}

@media screen and (max-width: 500px) {
    ._m .se02 .title02 dt {
        font-size: 36px;
        flex-direction: column;
    }

    ._m .se02 .title02 dt span {
        margin-right: 5px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide {
        height: 250px;
    }

    .center_pagi .paging {
        margin: 0 15px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide .bx {
        border-radius: 20px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl dt {
        font-size: 14px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide .bx .conts>dl dd {
        font-size: 12px;
    }

    ._m .se02 .center_sw .se02sw .swiper-slide.swiper-slide-active .bx .conts>dl dt {
        font-size: 18px;
    }

    .center_pagi {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
    }
}



/* se03 */
._m .se03 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 120px;
    box-sizing: border-box;
    cursor: none;
    background-color: #fff;
}

._m .se03 .inner {
    display: flex;
}

._m .se03 .inner .docList {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 60px;
}

._m .se03 .inner .docList>li {
    width: 1532px;
    position: relative;
    display: flex;
    align-items: flex-start;
    /* align-items: center; */
}

._m .se03 .inner .docList>li .lbx {
    width: calc(680 / 1532 * 100%);
}

._m .se03 .inner .docList>li .lbx .top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

._m .se03 .inner .docList>li .lbx .top span {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #adadad;
}

._m .se03 .inner .docList>li .lbx .top>a {
    display: flex;
    align-items: center;
}

._m .se03 .inner .docList>li .lbx .top>a em {
    font-size: 18px;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #606264;
    margin-right: 10px;
    transition-duration: 0.2s;
}

._m .se03 .inner .docList>li .lbx .top>a b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(to right, #38bfda, #97e2ca);
    border-radius: 50%;
    box-sizing: border-box;
}

._m .se03 .inner .docList>li .lbx .top>a b img {
    transition-duration: 0.4s;
}

@media screen and (min-width: 821px) {
    ._m .se03 .inner .docList>li .lbx .top>a:hover em {
        color: #00aae3;
    }

    ._m .se03 .inner .docList>li .lbx .top>a:hover b img {
        transform: rotateY(180deg);
    }
}

._m .se03 .inner .docList>li .lbx .imgbx {
    margin-top: 5px;
    width: 100%;
    overflow: hidden;
}

._m .se03 .inner .docList>li .lbx .imgbx .max_ {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

._m .se03 .inner .docList>li .lbx .imgbx .max_::after {
    content: '';
    display: block;
    padding-bottom: calc(703 / 681 * 100%);
}

._m .se03 .inner .docList>li .rbx {
    width: calc(852 / 1532 * 100%);
    padding-left: 70px;
    padding-right: 15px;
    padding-top: 100px;
    z-index: 22;
}

._m .se03 .inner .docList>li .rbx>dl dt {
    font-size: 16px;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #606264;
    line-height: 1.3;
}

._m .se03 .inner .docList>li .rbx>dl dd {
    font-size: 40px;
    letter-spacing: -0.025em;
    color: #4d5762;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
}

._m .se03 .inner .docList>li .rbx .infos {
    margin-top: 60px;
}

._m .se03 .inner .docList>li .rbx .infos>h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

._m .se03 .inner .docList>li .rbx .infos .inbx {
    margin-top: 30px;
    display: flex;
}

._m .se03 .inner .docList>li .rbx .infos .inbx>ul:first-of-type {
    /* width: calc(320 / 852 * 100%); */
    width: calc(320 / 700 * 100%);
}

._m .se03 .inner .docList>li .rbx .infos .inbx>ul:last-of-type {
    /* width: calc(320 / 852 * 100%); */
    width: calc(320 / 700 * 100%);
}


._m .se03 .inner .docList>li .rbx .infos .inbx>ul li {
    font-size: 14px;
    letter-spacing: -0.025em;
    line-height: calc(25 / 16);
    font-weight: 500;
    color: rgba(26, 24, 24, 0.65);
}

._m .se03 .inner .docList>li>h1 {
    position: absolute;
    bottom: -0.4em;
    font-size: 150px;
    letter-spacing: -0.045em;
    font-family: 'Montserrat';
    color: #faf6e9;
    font-weight: 700;
    left: 0;
    width: 100%;
    text-align: center;
}


._m .se03 .inmob {
    z-index: -3;
    opacity: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

._m .se03 .inmob dl dt {
    font-size: 16px;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #606264;
    line-height: 1.3;
}

._m .se03 .inmob dl dd {
    font-size: 40px;
    letter-spacing: -0.025em;
    color: #4d5762;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
}

._m .se03 .inmob dl dd br.mob {
    display: none;
}

._m .se03 .inmob .se03mob {
    width: 100%;
    margin-top: 30px;
}

._m .se03 .inmob .se03mob .swiper-slide {
    position: relative;
}

._m .se03 .inmob .se03mob .swiper-slide .imgbx {
    margin-top: 5px;
    width: 100%;
    overflow: hidden;
}

._m .se03 .inmob .se03mob .swiper-slide .imgbx .max_ {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

._m .se03 .inmob .se03mob .swiper-slide .imgbx .max_::after {
    content: '';
    display: block;
    padding-bottom: calc(703 / 681 * 100%);
}

._m .se03 .inmob .se03mob .swiper-slide .infos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
}

._m .se03 .inmob .se03mob .swiper-slide .infos>h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: right;
}

._m .se03 .inmob .se03mob .swiper-slide .infos>a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

._m .se03 .inmob .se03mob .swiper-slide .infos>a em {
    font-size: 16px;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #606264;
    margin-right: 10px;
}

._m .se03 .inmob .se03mob .swiper-slide .infos>a b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(to right, #38bfda, #97e2ca);
    border-radius: 50%;
    box-sizing: border-box;
}

@media screen and (max-width: 1280px) {
    ._m .se03 {
        padding-top: 30px;
        display: flex;
        align-items: center;
    }

    ._m .se03 .inner .docList>li {
        width: 1200px;
    }

    ._m .se03 .inner .docList>li>h1 {
        font-size: 110px;
        bottom: -0.7em;
    }

    ._m .se03 .inner .docList>li .rbx {
        padding-left: 50px;
    }

    ._m .se03 .inner .docList>li .rbx>dl dd{
        display: block;
    }

    ._m .se03 .inner .docList>li .rbx .infos .inbx>ul {
        padding-right: 20px;
        box-sizing: border-box;
        word-break: keep-all;
    }

    ._m .se03 .inner .docList>li .rbx .infos .inbx>ul li{
        font-size: 12px;
    }

    ._m .se03 .inner .docList>li .rbx .infos .inbx>ul:first-of-type {
        width: 50%;
    }

    ._m .se03 .inner .docList>li .rbx .infos .inbx>ul:last-of-type {
        width: 50%;
    }
}

@media screen and (max-width: 820px) {
    ._m .se03 {
        height: unset;
        padding: 70px 0;
    }

    ._m .se03 .inmob {
        z-index: 0;
        opacity: 1;
    }

    ._m .se03 .inner {
        display: none;
    }

    ._m .se03 .inmob dl dt {
        font-size: 14px;
    }

    ._m .se03 .inmob dl dd {
        font-size: 30px;
    }
}

@media screen and (max-width: 625px) {
    ._m .se03 .inmob dl dd{
        display: block;
    }
}

@media screen and (max-width: 500px) {
    ._m .se03 .inmob dl dd {
        font-size: 24px;
    }

    ._m .se03 .inmob .se03mob {
        margin-top: 20px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos {
        padding: 15px 25px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos>h2 {
        font-size: 20px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos>a {
        margin-top: 5px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos>a em {
        font-size: 14px;
    }
}

@media screen and (max-width: 350px) {
    ._m .se03 .inmob dl dd {
        font-size: 20px;
        display: block;
        word-break: keep-all;
    }

    ._m .se03 .inmob dl dd span {
        display: inline;
    }

    ._m .se03 .inmob .se03mob {
        margin-top: 10px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos {
        padding: 15px 25px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos>h2 {
        font-size: 20px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos>a {
        margin-top: 5px;
    }

    ._m .se03 .inmob .se03mob .swiper-slide .infos>a em {
        font-size: 14px;
    }
}



/* se04 */
._m .se04 {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

._m .se04 .lbx {
    width: 50%;
    overflow: hidden;
}

._m .se04 .lbx .imgbx {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

._m .se04 .lbx .imgbx::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

._m .se04 .rbx {
    width: 50%;
    padding-top: 130px;
    box-sizing: border-box;
    padding-left: 70px;
    word-break: keep-all;
}

._m .se04 .rbx>dl dt {
    font-size: 40px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 500;
}

._m .se04 .rbx>dl dd {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: -0.045em;
    color: #00475e;
    margin-top: 25px;
}

._m .se04 .rbx>dl dd span {
    display: inline-block;
    background: linear-gradient(to right, #00aae3, #97e2ca);
    font-weight: 700;
    color: #fff;
    padding: 5px 10px;
}

._m .se04 .rbx .triple {
    width: 100%;
    max-width: 605px;
    margin-top: 100px;
}

._m .se04 .rbx .triple li {
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding: 40px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

._m .se04 .rbx .triple li span {
    flex-shrink: 0;
    margin-right: 30px;
    font-size: 16px;
    letter-spacing: -0.045em;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat';
    font-style: italic;
}

._m .se04 .rbx .triple li strong {
    font-size: 40px;
    letter-spacing: -0.045em;
    font-weight: 600;
    font-family: 'Montserrat';
    width: 150px;
    flex-shrink: 0;
}

._m .se04 .rbx .triple li p {
    font-size: 20px;
    letter-spacing: -0.045em;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

._m .se04 .rbx .goto_ {
    margin-top: 120px;
}

._m .se04 .rbx .goto_>a {
    display: inline-flex;
    align-items: center;
}

._m .se04 .rbx .goto_>a p {
    font-size: 18px;
    letter-spacing: -0.025em;
    color: #00475e;
    font-weight: 600;
    margin-right: 10px;
    transition-duration: 0.2s;
}

._m .se04 .rbx .goto_>a span {
    display: flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #00475e;
    transition-duration: 0.2s;
}

._m .se04 .rbx .goto_>a span img {
    transition-duration: 0.4s;
}

@media screen and (min-width: 821px) {
    ._m .se04 .rbx .goto_>a:hover p {
        color: #00aae3;
    }

    ._m .se04 .rbx .goto_>a:hover span {
        background-color: #00aae3;
    }

    ._m .se04 .rbx .goto_>a:hover span img {
        transform: rotateY(180deg);
    }
}

@media screen and (max-width: 1440px) {
    ._m .se04 .rbx {
        padding: 0 50px;
    }

    ._m .se04 .rbx>dl dt {
        font-size: 32px;
    }

    ._m .se04 .rbx>dl dd {
        font-size: 50px;
        margin-top: 15px;
    }

    ._m .se04 .rbx .triple {
        margin-top: 40px;
    }

    ._m .se04 .rbx .triple li {
        padding: 30px 10px;
    }

    ._m .se04 .rbx .triple li strong {
        font-size: 34px;
        width: 120px;
    }

    ._m .se04 .rbx .triple li p {
        font-size: 18px;
    }

    ._m .se04 .rbx .goto_ {
        margin-top: 90px;
    }
}

@media screen and (max-width: 1280px) {
    ._m .se04 .rbx {
        padding: 0 30px;
    }

    ._m .se04 .rbx>dl dt {
        font-size: 24px;
    }

    ._m .se04 .rbx>dl dd {
        font-size: 36px;
        margin-top: 10px;
    }

    ._m .se04 .rbx .triple {
        margin-top: 30px;
    }

    ._m .se04 .rbx .triple li {
        padding: 20px 10px;
    }

    ._m .se04 .rbx .triple li span {
        font-size: 14px;
        margin-right: 15px;
    }

    ._m .se04 .rbx .triple li strong {
        font-size: 24px;
        width: 90px;
    }

    ._m .se04 .rbx .triple li p {
        font-size: 16px;
    }

    ._m .se04 .rbx .goto_ {
        margin-top: 50px;
    }

    ._m .se04 .rbx .goto_>a p {
        font-size: 16px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se04 {
        flex-direction: column;
    }

    ._m .se04 .lbx {
        width: 100%;
    }

    ._m .se04 .rbx {
        padding: 0;
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    ._m .se04 .rbx>dl dt {
        font-size: 20px;
    }

    ._m .se04 .rbx>dl dd {
        font-size: 28px;
        margin-top: 7px;
    }

    ._m .se04 .rbx .triple {
        margin-top: 20px;
    }

    ._m .se04 .rbx .triple li {
        padding: 15px 10px;
    }

    ._m .se04 .rbx .triple li span {
        margin-right: 10px;
    }

    ._m .se04 .rbx .triple li strong {
        font-size: 20px;
        width: 80px;
    }

    ._m .se04 .rbx .triple li p {
        font-size: 14px;
    }

    ._m .se04 .rbx .goto_ {
        margin-top: 30px;
    }

    ._m .se04 .rbx .goto_>a p {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se04 .rbx>dl dt {
        font-size: 16px;
    }

    ._m .se04 .rbx>dl dd {
        font-size: 24px;
    }

    ._m .se04 .rbx .triple li {
        padding: 10px;
    }

    ._m .se04 .rbx .triple li strong {
        font-size: 18px;
        width: 65px;
    }

    ._m .se04 .rbx .triple li p {
        font-size: 12px;
    }
}


/* se05 */
._m .se05 {
    padding-top: 170px;
    background-color: #fff;
}

._m .se05 dl {
    text-align: center;
}

._m .se05 dl dt {
    display: flex;
    align-items: center;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #00475e;
    justify-content: center;
}

._m .se05 dl dt span {
    background: linear-gradient(to right, #00aae3, #97e2ca);
    color: #fff;
    margin-left: 8px;
}

._m .se05 dl dt br.mob {
    display: none;
}

._m .se05 dl dt ._grdtxt{
    padding-bottom: 8px;
    margin-bottom: -8px;
}

._m .se05 dl dd {
    font-size: 20px;
    font-weight: 500;
    color: #00475e;
    line-height: calc(32 / 20);
    margin-top: 20px;
}

._m .se05 dl dd strong {
    font-weight: 700;
}

._m .se05 .banner {
    margin-top: 60px;
    width: 100%;
    display: flex;
    overflow: hidden;
}

._m .se05 .banner .bx {
    margin-left: -9.6%;
    position: relative;
}

._m .se05 .banner .bx:first-of-type {
    margin-left: 0;
    z-index: 3;
}

._m .se05 .banner .bx:nth-of-type(2) {
    z-index: 2;
}

._m .se05 .banner .bx:nth-of-type(3) {
    z-index: 1;
}

._m .se05 .banner .bx:nth-of-type(4) {
    z-index: 0;
}

@media screen and (max-width: 1280px) {
    ._m .se05 {
        padding-top: 120px;
    }

    ._m .se05 dl dt {
        font-size: 35px;
    }

    ._m .se05 dl dd {
        font-size: 18px;
    }
}

@media screen and (max-width: 855px) {
    ._m .se05 dl dt {
        display: block;
        font-size: 28px;
        line-height: 1.3;
    }

    ._m .se05 dl dt ._grdtxt{
        padding-bottom: 0;
        margin-bottom: -6px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se05 {
        padding: 100px 0;
    }

    /* ._m .se05 dl dt {
        font-size: 28px;
    } */

    ._m .se05 dl dd {
        font-size: 16px;
    }

    ._m .se05 .banner {
        margin-top: 40px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se05 dl dt {
        font-size: 24px;
        display: block;
        line-height: 1.3;
    }

    ._m .se05 dl dt ._grdtxt {
        display: inline;
    }

    ._m .se05 dl dt br.mob {
        display: block;
    }

    ._m .se05 dl dd {
        font-size: 14px;
    }
}



/* se06 */
._m .se06 {
    width: 100%;
    height: 101vh;
    position: relative;
    text-align: center;
    overflow: hidden;
}

._m .se06 .inn {
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
}

._m .se06 .inn .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

._m .se06 .inn .wrap {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

._m .se06 .inn .wrap dl {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: calc(83 / 60);
}

._m .se06 .inn .wrap>p {
    font-size: 24px;
    letter-spacing: -0.025em;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 20px;
}

._m .se06 .inn .wrap>a {
    display: inline-block;
    padding: 15px 35px;
    box-sizing: border-box;
    border-radius: 24px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.025em;
    font-weight: 700;
    text-align: center;
    background-color: #00475e;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

._m .se06 .inn .wrap>a>span {
    position: relative;
    z-index: 2;
}

._m .se06 .inn .wrap>a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00aae3, #97e2ca);
    border-radius: 0;
    transition-duration: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 0;
}

._m .se06 .inn .wrap>a.on::after {
    transform: translateX(0);
    border-radius: 24px;
}


._m .se06 .inn._1 {
    background-color: #fff;
}

._m .se06 .inn._1 .wrap dl dt {
    color: #00475e;
}

._m .se06 .inn._1 .wrap dl dd {
    overflow: unset;
}

._m .se06 .inn._1 .wrap>p {
    color: #00475e;
}


._m .se06 .inn._2 {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(0%);
}

._m .se06 .inn._2 .wrap>a {
    background: linear-gradient(to right, #00aae3, #97e2ca);
}

._m .se06 .inn._2 .wrap>a::after {
    background: none;
    background-color: #00aae3;
}

@media screen and (max-width: 1280px) {
    ._m .se06 .inn .wrap dl {
        font-size: 50px;
    }

    ._m .se06 .inn .wrap>p {
        font-size: 20px;
    }

    ._m .se06 .inn .wrap>a {
        font-size: 16px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se06 .inn .wrap dl {
        font-size: 28px;
    }

    ._m .se06 .inn .wrap dl dt img {
        width: 25px;
    }

    ._m .se06 .inn .wrap>p {
        font-size: 16px;
    }

    ._m .se06 .inn .wrap>a {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se06 .inn .wrap dl {
        font-size: 5.5vw;
    }

    ._m .se06 .inn .wrap dl dt img {
        width: 20px;
        margin-top: -10px;
    }

    ._m .se06 .inn .wrap>p {
        font-size: 14px;
    }

    ._m .se06 .inn .wrap>a {
        font-size: 13px;
        padding: 10px 25px;
    }
}



/* se07 */
._m .se07 {
    width: 100%;
    position: relative;
    background-image: url(/asset/img/main/se07_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 70px 0;
    display: flex;
    align-items: center;
    margin-top: -1px;
}

._m .se07 .play {
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    top: calc(270 / 970 * 100%);
    left: 0;
    z-index: 0;
}

._m .se07 .play>h1 {
    white-space: nowrap;
    font-size: 12.9167vw;
    font-family: 'Montserrat';
    letter-spacing: -0.045em;
    color: rgba(255, 255, 255, 0.07);
    font-weight: 700;
    animation: play 15s infinite linear;
    padding-right: calc(50 / 1920 * 100%);
}

@keyframes play {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

._m .se07 .wrap {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
}

._m .se07 .wrap .eq_sw {
    width: calc(620 / 1350 * 100%);
    display: flex;
    align-items: center;
    position: relative;
}

._m .se07 .wrap .eq_sw .fake {
    width: calc(445 / 620 * 100%);
    border-radius: 50%;
    background-color: #a1dcf0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

._m .se07 .wrap .eq_sw .fake::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

._m .se07 .wrap .eq_sw .btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    box-sizing: border-box;
    cursor: pointer;
    transition-duration: 0.2s;
    z-index: 10;
    position: relative;
}

._m .se07 .wrap .eq_sw .btn.swiper-button-next img {
    transform: rotate(180deg);
}

@media screen and (min-width: 821px) {
    ._m .se07 .wrap .eq_sw .btn:hover {
        background-color: #00aae3;
        border-color: #00aae3;
    }
}

._m .se07 .wrap .eq_sw .equips {
    width: 100%;
    padding: 70px 0;
}

._m .se07 .wrap .eq_sw .equips .swiper-slide .inner {
    width: 100%;
    position: relative;
    height: 100%;
}

._m .se07 .wrap .eq_sw .equips .swiper-slide .inner .prod_img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

._m .se07 .wrap .eq_sw .equips .swiper-slide .inner .prod_img::after {
    content: '';
    display: block;
    padding-bottom: calc(446 / 513 * 100%);
}

._m .se07 .wrap .eq_sw .equips .swiper-slide .inner>span {
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    border: 2px solid #99d4e8;
    box-sizing: border-box;
    display: inline-block;
    padding: 5px 8px;
    font-size: 24px;
    letter-spacing: -0.025em;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}


._m .se07 .wrap .r_con {
    width: calc(730 / 1350 * 100%);
    padding-left: calc(140 / 1350 * 100%);
    padding-top: 7%;
    color: #fff;
    word-break: keep-all;
}

._m .se07 .wrap .r_con dl dt {
    font-size: 50px;
    letter-spacing: -0.045em;
    font-weight: 700;
}

._m .se07 .wrap .r_con dl dt span {
    display: inline-block;
    border: 2px solid #99d4e8;
    box-sizing: border-box;
    padding: 0 5px 15px 5px;
    margin-top: 20px;
    white-space: nowrap;
}

._m .se07 .wrap .r_con dl dd {
    margin-top: 25px;
    font-size: 16px;
    letter-spacing: -0.045em;
    line-height: 1.3;
    font-weight: 500;
}

._m .se07 .wrap .r_con .swpagi {
    display: flex;
    align-items: center;
    margin-top: 45px;
}

._m .se07 .wrap .r_con .swpagi span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition-duration: 0.2s;
    position: relative;
    margin: 2px;
    border: 1px solid #fff;
    cursor: pointer;
}

._m .se07 .wrap .r_con .swpagi span::after {
    content: '';
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    background-color: #2298bf;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
}

._m .se07 .wrap .r_con .swpagi span.swiper-pagination-bullet-active::after {
    background-color: #fff;
}

._m .se07 .wrap .r_con .swpagi span:not(.swiper-pagination-bullet-active) {
    border-color: rgba(255, 255, 255, 0);
}

._m .se07 .wrap .r_con>a {
    display: inline-flex;
    align-items: center;
    margin-top: 75px;
}

._m .se07 .wrap .r_con>a p {
    font-size: 18px;
    letter-spacing: -0.025em;
    color: #00475e;
    font-weight: 600;
    transition-duration: 0.2s;
}

._m .se07 .wrap .r_con>a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #00475e;
    margin-left: 15px;
    transition-duration: 0.2s;
}

@media screen and (min-width: 821px) {
    ._m .se07 .wrap .r_con>a:hover p {
        color: #fff;
    }

    ._m .se07 .wrap .r_con>a:hover span {
        background-color: #a1dcf0;
    }
}

@media screen and (max-width: 1280px) {
    ._m .se07 .wrap .eq_sw .equips .swiper-slide .inner>span {
        font-size: 20px;
    }

    ._m .se07 .wrap .r_con {
        padding: 0 70px;
        padding-top: 5%;
    }

    ._m .se07 .wrap .r_con dl dt {
        font-size: 38px;
    }

    ._m .se07 .wrap .r_con dl dt span {
        margin-top: 10px;
        padding: 0 5px 10px 5px;
    }

    ._m .se07 .wrap .r_con>a p {
        font-size: 16px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se07 .wrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    ._m .se07 .wrap .eq_sw {
        width: 100%;
    }

    ._m .se07 .wrap .eq_sw .equips .swiper-slide .inner>span {
        font-size: 16px;
    }

    ._m .se07 .wrap .r_con {
        width: 100%;
        text-align: center;
    }

    ._m .se07 .wrap .r_con .swpagi {
        justify-content: center;
        margin-top: 20px;
    }

    ._m .se07 .wrap .r_con dl dt {
        font-size: 28px;
    }

    ._m .se07 .wrap .r_con dl dd {
        font-size: 14px;
    }

    ._m .se07 .wrap .r_con>a {
        margin-top: 40px;
    }

    ._m .se07 .wrap .r_con>a p {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se07 .wrap .eq_sw .btn {
        width: 40px;
        height: 40px;
    }

    ._m .se07 .wrap .eq_sw .equips .swiper-slide .inner>span {
        font-size: 14px;
    }

    ._m .se07 .wrap .r_con dl dt {
        font-size: 24px;
    }

    ._m .se07 .wrap .r_con dl dd {
        font-size: 13px;
    }

    ._m .se07 .wrap .r_con>a {
        margin-top: 30px;
    }

    ._m .se07 .wrap .r_con>a p {
        font-size: 13px;
    }
}



/* se08 */
._m .se08 {
    width: 100%;
    overflow: hidden;
    padding: 145px 0;
}

._m .se08 .grids {
    display: flex;
    flex-wrap: wrap;
}

._m .se08 .grids li {
    width: calc(435 / 1350 * 100%);
    margin-right: calc(20 / 1350 * 100%);
    margin-bottom: 15px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 10px 10px 10px rgba(206, 214, 210, 0.15);
}

._m .se08 .grids li:first-of-type {
    border-radius: 0;
    box-shadow: none;
    padding-top: 60px;
}

._m .se08 .grids li:nth-of-type(3n) {
    margin-right: 0;
}

._m .se08 .grids li>dl dt {
    font-size: 40px;
    letter-spacing: -0.045em;
    font-weight: 700;
    line-height: calc(64 / 46);
    color: #00475e;
}

._m .se08 .grids li>dl dd {
    font-size: 16px;
    letter-spacing: -0.045em;
    color: #00475e;
    margin-top: 10px;
}

._m .se08 .grids li:nth-of-type(2) {
    background-color: #97e2ca;
}

._m .se08 .grids li:nth-of-type(3) {
    background-color: #81cde7;
}

._m .se08 .grids li:nth-of-type(4) {
    background-color: #97e2ca;
}

._m .se08 .grids li:nth-of-type(5) {
    background-color: #81cde7;
}

._m .se08 .grids li:nth-of-type(6) {
    background-color: #73a8ba;
}

._m .se08 .grids li:nth-of-type(2) .bx .cov h3 {
    background-color: #d0ebe2;
}

._m .se08 .grids li:nth-of-type(3) .bx .cov h3 {
    background-color: #99d4e8;
}

._m .se08 .grids li:nth-of-type(4) .bx .cov h3 {
    background-color: #d0ebe2;
}

._m .se08 .grids li:nth-of-type(5) .bx .cov h3 {
    background-color: #99d4e8;
}

._m .se08 .grids li:nth-of-type(6) .bx .cov h3 {
    background-color: #73a8ba;
}

._m .se08 .grids li .bx {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 20% center;
    position: relative;
    height: 100%;
    padding: 12px;
    box-sizing: border-box;
    min-height: 360px;
    transition-duration: 0.4s;
    display: block;
}

._m .se08 .grids li .bx .cov {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition-duration: 0.4s;
}

._m .se08 .grids li .bx .cov h3 {
    font-size: 29px;
    letter-spacing: -0.045em;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    padding: 7px 12px;
    box-sizing: border-box;
    border-radius: 21px;
    transition-duration: 0.4s;
}

._m .se08 .grids li .bx .cov p {
    font-size: 16px;
    letter-spacing: -0.045em;
    color: rgba(40, 39, 39, 0.6);
    font-weight: 700;
    margin-top: 25px;
    transition-duration: 0.4s;
}

._m .se08 .grids li .bx .cov p.mob {
    display: none;
}

._m .se08 .grids li .bx .cov .overicon {
    position: relative;
    margin-top: 20px;
    transition-duration: 0.4s;
}

._m .se08 .grids li .bx .cov .overicon span {
    display: block;
}

._m .se08 .grids li .bx .cov .overicon span:nth-of-type(1) {
    border-radius: 50%;
    background-color: #29b3e1;
    width: 14px;
    height: 14px;
}

._m .se08 .grids li .bx .cov .overicon span:nth-of-type(2),
._m .se08 .grids li .bx .cov .overicon span:nth-of-type(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #29b3e1;
    box-sizing: border-box;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    animation: blink 1.6s cubic-bezier(0.22, 0.61, 0.36, 0.5) infinite;
}

._m .se08 .grids li .bx .cov .overicon span:nth-of-type(3) {
    animation-delay: 0.6s;
}

@keyframes blink {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}


._m .se08 .grids li .bx .inn {
    border-radius: 40px;
    border: 1px solid #fff;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    color: #fff;
}

._m .se08 .grids li .bx .inn .half {
    width: 50%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: flex-start;
    word-break: keep-all;
    padding-right: 20px;
    box-sizing: border-box;
}

._m .se08 .grids li .bx .inn .half span {
    display: inline-block;
    border-radius: 11.5px;
    background-color: #fff;
    padding: 4px 7px;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 700;
    text-align: center;
}

._m .se08 .grids li .bx .inn .half h2 {
    font-size: 26px;
    letter-spacing: -0.045em;
    line-height: calc(40 / 26);
    margin-top: 25px;
    font-weight: 700;
}

._m .se08 .grids li .bx .inn .half p {
    font-size: 16px;
    letter-spacing: -0.045em;
    line-height: 1.5;
    margin-top: 25px;
}


@media screen and (min-width: 821px) {
    ._m .se08 .grids li:hover .bx .cov {
        opacity: 0;
    }

    ._m .se08 .grids li:hover .bx .cov h3 {
        transform: translateY(20px);
    }

    ._m .se08 .grids li:hover .bx .cov p {
        transform: translateY(20px);
    }

    ._m .se08 .grids li:hover .bx .cov .overicon {
        transform: translateY(20px);
    }

}

@media screen and (max-width: 1280px) {
    ._m .se08 {
        padding: 100px 0;
    }

    ._m .se08 .grids li>dl dt {
        font-size: 34px;
    }

    ._m .se08 .grids li .bx {
        min-height: 300px;
    }

    ._m .se08 .grids li .bx .cov h3 {
        font-size: 24px;
    }

    ._m .se08 .grids li .bx .cov p {
        font-size: 14px;
        margin-top: 15px;
        text-align: center;
    }

    ._m .se08 .grids li .bx .inn .half span {
        font-size: 12px;
    }

    ._m .se08 .grids li .bx .inn .half h2 {
        font-size: 22px;
        margin-top: 15px;
    }

    ._m .se08 .grids li .bx .inn .half p {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 1115px) {
    ._m .se08 .grids li>dl dt{
        font-size: 25px;
    }
}

@media screen and (max-width: 1050px) {
    ._m .se08 .grids li .bx .cov h3{
        font-size: 18px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se08 .grids {
        justify-content: space-between;
    }

    ._m .se08 .grids li {
        width: 49%;
        margin-right: 0;
    }

    ._m .se08 .grids li:first-of-type {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    ._m .se08 .grids li:nth-of-type(2) {
        background-color: #81cde7;
    }

    ._m .se08 .grids li:nth-of-type(5) {
        background-color: #97e2ca;
    }

    ._m .se08 .grids li>dl dt {
        font-size: 28px;
    }

    ._m .se08 .grids li .bx {
        min-height: 240px;
    }

    ._m .se08 .grids li .bx .cov {
        display: none;
    }

    ._m .se08 .grids li .bx .inn .half h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    ._m .se08 .grids li .bx .inn .half p {
        margin-top: 10px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se08 .grids li {
        width: 100%;
    }

    ._m .se08 .grids li:first-of-type {
        padding-bottom: 30px;
    }

    ._m .se08 .grids li:nth-of-type(2) {
        background-color: #97e2ca;
    }

    ._m .se08 .grids li:nth-of-type(5) {
        background-color: #81cde7;
    }

    ._m .se08 .grids li>dl dt {
        font-size: 24px;
    }

    ._m .se08 .grids li>dl dd {
        font-size: 14px;
    }

    ._m .se08 .grids li .bx .inn .half span {
        font-size: 13px;
    }

    ._m .se08 .grids li .bx .inn .half h2 {
        font-size: 18px;
    }

}

@media screen and (max-width: 345px) {
    ._m .se08 .grids li .bx .inn .half span{
        font-size: 9px;
    }
}

/* se08_01 */

/* ._m .se08_01{
    display: none;
} */

._m .se08_01 {
    width: 100%;
    overflow: hidden;
    padding-bottom: 100px;
}

._m .se08_01 dl {
    text-align: center;
}

._m .se08_01 dl dt {
    font-size: 46px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

._m .se08_01 dl dd {
    font-size: 16px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 500;
    margin-top: 25px;
}

._m .se08_01 .blue_video{
    width: 90%;
    margin: 50px auto 0;
    border-radius: 20px;
    overflow: hidden;
}

._m .se08_01 .blue_video video{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1280px) {
    ._m .se08_01 dl dt {
        font-size: 40px;
    }

    ._m .se08_01 dl dd {
        margin-top: 20px;
    }

    ._m .se08_01 .commu li>a {
        padding: 25px 30px;
    }

    ._m .se08_01 .commu li>a h4 {
        font-size: 24px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se08_01 dl dt {
        font-size: 30px;
    }

    ._m .se08_01 dl dd {
        margin-top: 10px;
        font-size: 14px;
    }

    ._m .se08_01 .commu {
        margin-top: 40px;
    }

    ._m .se08_01 .commu li {
        border-radius: 15px;
    }

    ._m .se08_01 .commu li>a {
        padding: 20px 15px;
    }

    ._m .se08_01 .commu li>a h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se08_01 dl dt {
        font-size: 24px;
    }
}

@media screen and (max-width: 439px) {
    ._m .se08_01 dl dt{
        display: block;
    }
}


/* se09 */
._m .se09 {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 35px 0;
    box-sizing: border-box;
}

._m .se09 dl {
    text-align: center;
}

._m .se09 dl dt {
    font-size: 46px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

._m .se09 dl dd {
    font-size: 16px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 500;
    margin-top: 25px;
}

._m .se09 .commu {
    display: flex;
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    margin-top: 65px;
}

._m .se09 .commu li {
    width: calc(323 / 1030 * 100%);
    margin-right: calc(30 / 1030 * 100%);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(105, 112, 108, 0.15);
}

._m .se09 .commu li::after {
    content: '';
    display: block;
    padding-bottom: calc(450 / 323 * 100%);
}

._m .se09 .commu li:nth-of-type(3n) {
    margin-right: 0;
}

._m .se09 .commu li .bg {
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 0;
    transition-duration: 0.8s;
}

._m .se09 .commu li>a {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 30px 35px;
    box-sizing: border-box;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
}

._m .se09 .commu li>a h4 {
    font-size: 28px;
    letter-spacing: -0.045em;
    color: #fff;
    font-weight: 700;
    display: inline-block;
}

._m .se09 .commu li>a .btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20%);
    opacity: 0;
    transition-duration: 0.2s;
}

@media screen and (min-width: 821px) {
    ._m .se09 .commu li:hover .bg {
        transform: scale(1.05);
    }

    ._m .se09 .commu li:hover>a .btn {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 1280px) {
    ._m .se09 dl dt {
        font-size: 40px;
    }

    ._m .se09 dl dd {
        margin-top: 20px;
    }

    ._m .se09 .commu li>a {
        padding: 25px 30px;
    }

    ._m .se09 .commu li>a h4 {
        font-size: 24px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se09 dl dt {
        font-size: 30px;
    }

    ._m .se09 dl dd {
        margin-top: 10px;
        font-size: 14px;
    }

    ._m .se09 .commu {
        margin-top: 40px;
    }

    ._m .se09 .commu li {
        border-radius: 15px;
    }

    ._m .se09 .commu li>a {
        padding: 20px 15px;
    }

    ._m .se09 .commu li>a h4 {
        font-size: 18px;
    }

    ._m .se09 .commu li>a .btn {
        opacity: 1;
        transform: translateY(0);
        width: 24px;
        height: 24px;
        padding: 8px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 500px) {
    ._m .se09 dl dt {
        font-size: 24px;
    }

    ._m .se09 .commu {
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    ._m .se09 .commu li {
        width: 48%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    ._m .se09 .commu li::after {
        padding-bottom: 100px;
    }

    ._m .se09 .commu li:first-of-type {
        width: 100%;
    }

    ._m .se09 .commu li>a {
        padding: 15px 10px;
    }

    ._m .se09 .commu li>a h4 {
        font-size: 16px;
    }

    ._m .se09 .commu li>a .btn {
        width: 18px;
        height: 18px;
        padding: 6px;
        box-sizing: border-box;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 439px) {
    ._m .se09 dl dt{
        display: block;
    }
}


/* se10 */
._m .se10 {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

._m .se10 .inquiry {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

._m .se10 .inquiry .lbx {
    width: calc(605 / 1350 * 100%);
    padding-right: 10px;
    box-sizing: border-box;
}

._m .se10 .inquiry .lbx dl dt {
    font-size: 16px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 500;
    padding-top: 10px;
}

._m .se10 .inquiry .lbx dl dd {
    font-size: 30px;
    letter-spacing: -0.045em;
    font-weight: 700;
    color: #00475e;
    line-height: calc(58 / 36);
    margin-top: 40px;
    word-break: keep-all;
}

._m .se10 .inquiry .lbx dl dd ._grdtxt {
    display: inline;
}

._m .se10 .inquiry .lbx .submit {
    text-align: left;
}

._m .se10 .inquiry .lbx .submit>a {
    display: inline-block;
    padding: 14px 55px;
    box-sizing: border-box;
    border-radius: 24px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.025em;
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #00aae3, #97e2ca);
}

._m .se10 .inquiry .lbx .submit>input[type="submit"] {
    display: inline-block;
    padding: 14px 55px;
    box-sizing: border-box;
    border-radius: 24px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.025em;
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #00aae3, #97e2ca);
    border: none;
    cursor: pointer;
}

._m .se10 .inquiry .lbx .submit>a>span {
    position: relative;
    z-index: 2;
}

._m .se10 .inquiry .lbx .submit>a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #29b3e1;
    border-radius: 0;
    transition-duration: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 0;
}

@media screen and (min-width: 821px) {
    ._m .se10 .inquiry .lbx .submit>a:hover::after {
        transform: translateX(0);
        border-radius: 24px;
    }
}

._m .se10 .inquiry .rbx {
    width: calc(745 / 1350 * 100%);
}

._m .se10 .inquiry .rbx .form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

._m .se10 .inquiry .rbx .form>li {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}

._m .se10 .inquiry .rbx .form>li.half {
    width: calc(365 / 745 * 100%);
}

._m .se10 .inquiry .rbx .form>li.sel>input {
    background-image: url(/asset/img/main/se10_arrow.png);
    background-position: right 15px center;
    background-repeat: no-repeat;
    cursor: pointer;
}

._m .se10 .inquiry .rbx .form>li.sel .select {
    width: 100%;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    padding: 5px 0;
    border-radius: 10px;
    box-sizing: border-box;
    border: 1px solid #d3dad7;
    z-index: 2;
    background-color: #f6fffc;
    display: none;
}

._m .se10 .inquiry .rbx .form>li.sel .select li {
    width: 100%;
    padding: 7px;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: -0.045em;
    color: #757575;
    cursor: pointer;
}

@media screen and (min-width: 821px) {
    ._m .se10 .inquiry .rbx .form>li.sel .select li:hover {
        background-color: #eef7f4;
    }
}

._m .se10 .inquiry .rbx .form>li>label {
    font-size: 16px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 300;
    padding: 8px 10px;
    box-sizing: border-box;
    display: inline-block;
    cursor: pointer;
}

._m .se10 .inquiry .rbx .form>li input {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3dad7;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: -0.045em;
    padding: 0 10px;
    height: 48px;
    color: #757575;
    background-color: #f6fffc;
}

._m .se10 .inquiry .rbx .form>li textarea {
    display: block;
    height: 165px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3dad7;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: -0.045em;
    padding: 10px;
    color: #757575;
    resize: none;
    background-color: #f6fffc;
    line-height: 1.3;
}

._m .se10 .inquiry .rbx .form>li textarea::-webkit-scrollbar {
    width: 8px;
}

._m .se10 .inquiry .rbx .form>li textarea::-webkit-scrollbar-thumb {
    width: 8px;
    border-radius: 10px;
    background-color: #606264;
}

._m .se10 .banner {
    display: flex;
    justify-content: space-between;
    margin-top: 110px;
}

._m .se10 .banner .bx {
    width: calc(668 / 1350 * 100%);
    border-radius: 20px;
    overflow: hidden;
    background-color: #FFF;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    padding: 20px 35px;
    box-sizing: border-box;
    align-items: center;
    min-height: 140px;
    word-break: keep-all;
}

._m .se10 .banner .bx strong {
    font-size: 30px;
    letter-spacing: -0.045em;
    color: #00475e;
    font-weight: 700;
}

._m .se10 .banner .bx>p {
    font-size: 18px;
    letter-spacing: -0.045em;
    color: #747474;
    line-height: calc(31 / 18);
    font-weight: 500;
}

._m .se10 .banner .bx .schd {
    flex-shrink: 0;
}

._m .se10 .banner .bx .schd li {
    display: flex;
    align-items: center;
    font-size: 18px;
    letter-spacing: -0.045em;
    font-weight: 500;
    padding: 6px 0;
    box-sizing: border-box;
}

._m .se10 .banner .bx .schd li span {
    display: block;
    flex-shrink: 0;
    width: 125px;
    text-align: right;
    font-weight: 600;
    color: #00475e;
}

._m .se10 .banner .bx .schd li p {
    display: block;
    padding-left: 20px;
    box-sizing: border-box;
    color: #747474;
}

._m .se10 input:autofill,
._m .se10 input:autofill:hover,
._m .se10 input:autofill:focus,
._m .se10 input:autofill:active {
    -webkit-text-fill-color: #757575;
    -webkit-box-shadow: 0 0 0px 1000px #f6fffc inset;
    transition: background-color 5000s ease-in-out 0s;
    color: #757575;
    caret-color: #757575;
    font-family: 'Pretendard';
    letter-spacing: -0.025em;
}


@media screen and (max-width: 1280px) {
    ._m .se10 {
        padding-top: 130px;
    }

    ._m .se10 .inquiry .lbx dl dd {
        font-size: 25px;
        margin-top: 20px;
    }

    ._m .se10 .inquiry .lbx .submit>a {
        font-size: 16px;
    }

    ._m .se10 .inquiry .rbx .form>li label {
        font-size: 14px;
    }

    ._m .se10 .inquiry .rbx .form>li input {
        height: 45px;
        font-size: 14px;
    }

    ._m .se10 .inquiry .rbx .form>li textarea {
        font-size: 14px;
    }

    ._m .se10 .inquiry .rbx .form>li.sel .select li {
        font-size: 14px;
    }

    ._m .se10 .banner {
        margin-top: 70px;
    }

    ._m .se10 .banner .bx {
        padding: 15px 25px;
    }

    ._m .se10 .banner .bx strong {
        font-size: 24px;
    }

    ._m .se10 .banner .bx>p {
        font-size: 16px;
    }

    ._m .se10 .banner .bx .schd li {
        font-size: 16px;
    }
}

@media screen and (max-width: 820px) {
    ._m .se10 .inquiry {
        flex-direction: column;
    }

    ._m .se10 .inquiry .lbx {
        width: 100%;
    }

    ._m .se10 .inquiry .lbx dl dd {
        font-size: 20px;
    }

    ._m .se10 .inquiry .lbx .submit>a {
        margin-top: 30px;
    }

    ._m .se10 .inquiry .rbx {
        width: 100%;
        margin-top: 20px;
    }

    ._m .se10 .inquiry .rbx .form>li input {
        height: 40px;
    }

    ._m .se10 .banner .bx {
        flex-direction: column;
        align-items: flex-start;
    }

    ._m .se10 .banner .bx strong {
        font-size: 20px;
    }

    ._m .se10 .banner .bx .schd li span {
        width: auto;
        min-width: 40px;
        text-align: left;
    }

    ._m .se10 .banner .bx>p {
        font-size: 14px;
    }

    ._m .se10 .banner .bx .schd li {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    ._m .se10 .inquiry .lbx dl dt {
        font-size: 14px;
    }

    ._m .se10 .inquiry .lbx dl dd {
        font-size: 18px;
    }

    ._m .se10 .inquiry .lbx .submit>a {
        font-size: 14px;
        padding: 10px 40px;
        margin-top: 20px;
    }

    ._m .se10 .inquiry .rbx .form>li.half {
        width: 100%;
    }

    ._m .se10 .banner {
        flex-direction: column;
        margin-top: 30px;
    }

    ._m .se10 .banner .bx {
        width: 100%;
        min-height: unset;
        height: auto;
    }

    ._m .se10 .banner .bx strong {
        margin-bottom: 20px;
    }
}