@charset "utf-8";

@font-face {
    font-family: 'tommy_black';
    src: url(../font/MADE_TOMMY_Black.otf) format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'tommy_bold';
    src: url(../font/MADE_TOMMY_Bold.otf) format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'tommy_medi';
    src: url(../font/MADE_TOMMY_Medium.otf) format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'tommy_reg';
    src: url(../font/MADE_TOMMY_Regular.otf) format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'tommy_light';
    src: url(../font/MADE_TOMMY_Light.otf) format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'tommy_thin';
    src: url(../font/MADE_TOMMY_Thin.otf) format('woff2');
    font-weight: 100;
    font-style: normal;
}

.noto-sans-kr {
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}


:root {
    --tommy: 'tommy_reg';
    --noto: "Noto Sans KR";
    --header: 125px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    scroll-behavior: smooth;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
}

ul,
li {
    list-style: none;
    color: inherit;
    text-decoration: none;
}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    vertical-align: top;
    max-width: 100%;
}

button {
    border: none;
    color: inherit;
    cursor: pointer;
}

main {
    overflow: hidden;
}

/* 공통 클래스 */

.semi {
    font-weight: 600;
}

.flex {
    display: flex;
}

/* 공통 E */

header {
    /* padding-inline: 160px; */
    width: 100%;
    position: fixed;
    background-color: #fff;
    /* padding-top: 4rem; */
    z-index: 999;
    padding: 2% 160px;
}

.header_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_wrap .header_menu {
    flex-basis: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_wrap .header_menu .navi {

    font-family: var(--tommy);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_wrap .navi .depth1 {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

.header_wrap .navi .depth1>li {
    position: relative;
}

.header_wrap .navi .depth1>li:hover .depth2 li {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.header_wrap .navi .depth1>li:hover .depth2 {
    pointer-events: auto;
}

.header_wrap .navi .depth2 li:hover {
    font-weight: 500;
    background-color: rgba(167, 191, 89, 0.5);
}

.header_wrap .navi .depth1>li>a {
    font-size: 20px;
    padding: 2rem 2.5rem;
    font-family: var(--tommy);
}

.header_wrap .navi .depth2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    width: 100%;
    padding-top: 1rem;
    pointer-events: none;
    gap: 0.5rem;
}

.header_wrap .navi .depth2 li {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    background-color: rgba(167, 191, 89, 0.7);
    border-radius: 2rem;
}

.header_wrap .navi .depth2 li a {
    font-size: 16px;
    display: inline-flex;
    padding: 0.75rem 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header_wrap .link_depth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header_wrap .link_depth .shop {
    display: inline-flex;
    padding-inline: 1.5rem;
    padding-block: 0.5rem;
    font-size: 1.125rem;
    font-family: 'tommy_light';
    background-color: #a7bf59;
    color: #fff;
    border-radius: 2rem;
}

.header_wrap .link_depth details {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #000;
    padding-inline: 1.5rem;
    border-radius: 2rem;
    text-anchor: end;
    min-width: 95px;
    padding-block: 0.5rem;

    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style-type: none;
}

summary p {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* line-height: 2; */
}

.header_wrap .link_depth details:hover .lang_depth {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.header_wrap .link_depth .lang_depth {
    position: absolute;
    left: 50%;
    top: calc(100% + 1rem);
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.header_wrap .link_depth .lang_depth li {
    border: 1px solid #000;
    border-radius: 2rem;
    min-width: 95px;
    padding-block: 0.5rem;
}

.header_wrap .ham {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 99;
    display: none;
}

.header_wrap .ham span {
    width: 2rem;
    height: 1px;
    background-color: #a7bf59;
}

/* header e */
.ham.ham_cross span {
    background-color: #fff;
}

.noscroll {
    height: 100dvh;
    overflow: hidden;
}

.ham_cross span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
    transition: 0.3s;
}

.ham_cross span:nth-child(2) {
    opacity: 0;
    transition: 0.3s;
}

.ham_cross span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
    transition: 0.3s;
}

/* @media screen and (max-width : 900px) {
    .ham {
        display: block;
    }
} */

/* gnb start */
.gnb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.gnbopen {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.gnb .inner {
    width: 100%;
    height: 100%;
    padding-inline: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gnb .inner .img_wrap {
    width: 55%;
}

.gnb .inner .menu_wrap {
    width: 100%;
}

.gnb .inner .menu_wrap>ul {
    display: flex;
    gap: 2vw;
}

.gnb .inner .menu_wrap ul .gnb_depth1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.gnb .inner .menu_wrap ul .gnb_depth1::before {
    width: 1px;
    height: 100%;
    background-color: #d6d6d6;
    content: '';
    display: inline-block;
    position: absolute;
    left: -1rem;
    top: 0;
}

.gnb .inner .menu_wrap ul .gnb_depth1>a {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    width: 100%;
    text-align: center;
}

.gnb .inner .menu_wrap ul .gnb_depth1 ul {
    text-align: left;
}

.gnb .inner .menu_wrap ul .gnb_depth1 ul li {
    padding: 1rem;
}

.gnb .inner .menu_wrap ul .gnb_depth1 ul li a {
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.gnb .inner .menu_wrap ul .gnb_depth1 ul.open {
    display: block;
}

/* gnb end */

.m1 {
    width: 100%;
    height: 87vh;
    margin-top: 6.7vw;
}

.m1 .m1_inner {
    transition: all 0.7s 0.5s;
    clip-path: inset(0px 160px 0 160px round 30px);
    height: 100%;
}

.m1 .m1_inner.active {
    clip-path: inset(0 0 0 0 round 30px);
}

.m1 .m1_swiper {
    height: 100%;
}

.m1 .m1_swiper .swiper-slide {
    position: relative;
    z-index: -1;
}

.m1 .m1_swiper .swiper-slide .imgbox img {
    position: relative;
    z-index: -1;
    width: 100%;
}

.m1 .m1_swiper .swiper-slide .txtbox {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.m1 .m1_swiper .txtbox h3 {
    font-size: 55px;
    color: #fff;
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.8px;
    line-height: 1.35;
}

.m1 .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
}

.m1 .swiper-pagination-bullet {
    background-color: #fff;
}

.m1 .m1_swiper .swiper-slide .imgbox img {
    animation: floatDown 7s ease-in-out infinite;
}

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

    100% {
        transform: translateX(10px);
    }
}




/* m2 */
.m2 {
    margin-top: 250px;
    /* padding-inline: 160px 0; */
    height: 140dvh;
    background: url(../1x/m2_bg.jpg) bottom no-repeat;
    background-size: contain;
}




.tit p {
    font-size: 30px;
    color: #a7bf59;
}

.tit h3 {
    font-weight: 600;
    font-size: 48px;
    letter-spacing: -0.8px;
    line-height: 1.3;
    margin-block: 1.5rem;
}

.tit h5 {
    font-size: 26px;
    font-weight: 300;
}

.m2 .m2_box {
    display: flex;
    gap: 3rem;
    flex-direction: column;
}

.m2 .tit {
    padding-inline: 160px 0;
    /* min-width: 22%; */
}


/* .m2 .container::before {
    position: absolute;
    top: 0;
    left: -8%;
    height: 100%;
    width: 16%;
    content: '';
    z-index: 1;
    background: linear-gradient(to right, transparent, white, transparent);
}

.m2 .card_top ul,
.m2 .card_bot ul {
    display: flex;
    gap: 10rem;
    width: max-content;
    position: relative;
}

.card_bot {
    transform: translateX(5rem);
}

.m2 .card_bot ul {
    margin-top: -10rem;
}

.m2 .card:nth-child(2n) {
    margin-top: 15rem;
}


.m2 .card p {
    font-size: 1.625rem;
    line-height: 1.3;
    margin-top: 1rem;
}

.m2 .card p span {
    font-weight: 600;
}

.top_ul li {
    width: calc((100% - 50rem) / 6);
}

.m2 .card_wrap {
    animation: slideLeft 60s linear infinite;
    width: max-content;
} */

.m2 .container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.m2 .swiper p {
    font-size: 1.375rem;
    line-height: 1.3;
    margin-top: 1rem;
}

.m2 .swiper p span {
    font-weight: 600;
}


.m2 .swiper-slide:nth-child(2n) {
    /* margin-top: 10rem; */
    margin-top: 4rem;
}

.m2 .m2_swiper02 {
    /* margin-top: -7rem; */
}

.m2 .m2_swiper02 .swiper-wrapper {
    margin-left: 4rem;
}

.m2 .swiper .swiper-wrapper {
    animation: slideLeft 50s linear infinite;
    width: max-content;
    padding-block: 1rem;
}

.m2 .m2_swiper02 .swiper-wrapper {
    animation: slideRight 50s linear infinite;
    width: max-content;
}

.m2 .swiper-slide:hover {
    transform: scale(1.03);
    transition: all 0.3s;
}

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

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

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }

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






/* m3 */
.m3 {
    /* padding-inline: 160px 0; */
    position: relative;
    /* padding-top: 160px; */
    padding-top: 100px;
    padding-bottom: 15vh;
}


.m3::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #a7bf59;
    border-radius: 70px;
    content: '';
    z-index: -1;
}

/* 
.m3 .m3_box {
    max-width: 1600px;
    margin: 0 auto;
} */

.m3 .tit {
    max-width: 1600px;
    margin: 0 auto;
}

.m3 .tit p {
    color: black;
}

.m3 .tit h3 {
    font-size: 46px;
    margin-block: 1rem;
    color: #fff;
    font-weight: 400;
}

.m3 .tit h3 span {
    font-weight: 600;
}

.m3 .btn_box ul {
    display: flex;
    gap: 1rem;
}



.m3 .btn_box .btn {
    min-width: 240px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    padding-block: 2rem 5rem;
    padding-left: 2rem;
}



.m3 .btn_box .btn span {
    color: #999;
    font-size: 1.125rem;
}

.m3 .btn_box .btn p {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.m3 .btn_box .btn img {
    position: absolute;
    right: 9%;
    bottom: 5%;
    max-width: 70px;
    max-height: 70px;
}

.m3 .m3_swiper .swiper-wrapper {
    display: flex;
    width: max-content;
    /* gap: 1rem; */

    /* animation: m3slide 90s linear infinite;
    width: max-content; */
}

/* @keyframes m3slide {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
} */

.m3 .m3_swiper .swiper-slide {
    position: relative;
    cursor: grab;

    /* width: auto !important; */
}

.m3 .m3_swiper .swiper-slide:hover {
    transform: scale(1.03);
    transition: all 0.3s;
}

.m3 .m3_swiper .swiper-slide.slide02,
.m3 .m3_swiper .swiper-slide.slide04,
.m3 .m3_swiper .swiper-slide.slide06,
.m3 .m3_swiper .swiper-slide.slide08 {
    margin-top: 3rem;
}

.m3 .m3_swiper .swiper-slide::before {
    content: '';
    width: 120%;
    height: 100%;
    top: 26%;
    left: -8%;
    background: url(../1x/m2_shadow.png) no-repeat bottom;
    background-size: cover;
    position: absolute;
    z-index: -1;
}


.m3 .btn_box {
    margin-block: 5rem;
}

.m3 .content_wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.m3 .content_wrap .content {
    /* display: flex; */
    /* width: 100%;
    height: 745px; */
    display: none;
    /* height: 740px; */
    height: 400px;
}

.m3 .content_wrap .content.on {
    display: block;
    display: flex;
    width: 100%;
    gap: 2rem;
}

.m3 .content_wrap .content .item {
    flex: 1;
    transition: all 0.5s;
    overflow: hidden;
    position: relative;
}

.m3 .content_wrap .content .item.active img {
    transform: scale(1.05);
    transition: all 0.5s;
}

/* .m3 .content_wrap .content .item::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
   
} */

.m3 .content_wrap .content .item::after {
    content: '';
    width: 100%;
    height: 80%;
    left: 0;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.3s;
    bottom: 0;
    display: none;
}

/* .m3 .content_wrap .content .item.active::before {
    display: none;
} */

.m3 .content_wrap .content .item.active::after {
    opacity: 1;
    visibility: visible;
    display: block;
}




.m3 .content_wrap .content .item>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m3 .content_wrap .content .item .txt_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 6%;
    left: 5%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    width: 88%;
    color: #fff;
    z-index: 2;
}

.m3 .content_wrap .content .item .txt_box h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.m3 .content_wrap .content .item .txt_box p {
    font-size: 1.5rem;
}

.m3 .content_wrap .content .item.active .txt_box {
    opacity: 1;
    visibility: visible;

}

.m3 .txt_box a {
    max-width: 60px;
}

.m3 .txt_box .arr {
    width: initial !important;
}


/* m4 */
.m4 {
    background: url(../1x/m4_bg.png) no-repeat bottom;
    background-size: contain;
    height: 100vh;
}

.m4 .m4_box {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    grid-template-rows: 1fr 1fr;

}

.m4 .tit h3 {
    margin-block: 2rem 0;
    font-weight: 400;
}

.m4 .tit h3 span {
    font-weight: 600;
}

.m4 .m4_top {
    display: contents;
}

.m4 .txt_box {
    grid-column: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m4 .txt_box .flex_wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: fit-content;
    gap: 5rem;
}

.m4 .txt_box .flex_wrap a {
    padding-bottom: 0.5rem;
}

.m4 .t_right {
    grid-column: 3 / 5;
    display: contents;
}



.m4 .m4_bot {
    display: contents;
}

.m4 .m4_bot .b_left {
    grid-column: 1 / 4;
    align-items: center;
}

.m4 .t_right .come {
    background: url(../1x/m4_r01.png) no-repeat center;
    background-size: cover;
}

.m4 .t_right .brochure {
    background: url(../1x/m4_r02.png) no-repeat center;
    background-size: cover;
}

.m4 .t_right a {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    filter: brightness(0.7);
    transition: all 0.3s;
    position: relative;
}

.m4 .t_right a:hover {
    filter: brightness(1);
}


.m4 .t_right a p {
    color: #fff;
    font-size: 1.875rem;
}

.m4 .b_left {
    border-radius: 20px;
    background-color: #000;
    flex-basis: 76%;
    display: flex;
    color: #fff;
    padding-inline: 4rem;
    padding-block: 4.5rem;
    gap: 1.5rem;
}

.m4 .b_left .left01 {
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    font-size: 30px;
}

.m4 .b_left .left02 {
    flex-basis: 59%;
}

.m4 .b_left .left02 ul li {
    background-color: #fff;
    border-radius: 10px;
    height: 123px;
    padding: 1rem;
}

.m4 .b_left .left02 ul li input {
    height: 100%;
    width: 100%;
    border: 0;
}

.m4 .b_left .left02 ul li input:focus {
    outline: none;
}

.m4 .b_left .left02 ul:first-child {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.m4 .b_left .left02 ul:first-child li {
    height: 62px;
    width: 100%;
}

.m4 .b_left .left03 {
    flex-basis: 23%;
    border-radius: 10px;
    background-color: #A7BF59;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 1.3rem;
    align-content: end;
    align-self: end;
    font-size: 1.5rem;

}


.m4 .b_right {
    border-radius: 20px;
    background-color: #A7BF59;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 23.75%;
    color: #fff;
    gap: 1rem;
    font-size: 1.875rem;
    color: #ffff;
    transition: all 0.3s;
}

.m4 .b_right:hover {
    background-color: #B7CE6A;
}

.m4 .b_left .left02 ul.cont li {
    padding-bottom: 5rem;
}



/* footer */
.footer {
    background-color: #000;
    padding-block: 8.5rem;
}

.footer .footer_inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.footer .f_left {
    flex-basis: 24%;
    color: #fff;
}

.footer .f_left span {
    font-weight: 500;
}

.footer .f_left p {
    font-weight: 700;
    font-size: 30px;
}

.footer .f_center {
    flex-basis: 55%;
    color: #fff;
}

.footer .f_center p {
    display: inline-block;
    font-size: 1.125rem;
    margin-right: 2.5rem;
}

.footer .f_center p span:first-child {
    font-weight: 600;
    margin-right: 3px;
}

.footer .f_center div {
    margin-bottom: 0.8rem
}

.footer .f_right {
    flex-basis: 20%;
    color: #fff;
    text-align: right;
}

.footer .f_right ul {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer .f_right ul li {
    font-size: 1.125rem;
    font-family: var(--tommy);
}

.footer .f_right p {
    font-weight: 300;
    color: #A6A6A6;
    font-size: 0.875rem;
}

.footer .gotop {
    position: absolute;
    top: -11rem;
    right: 0;
    z-index: 1;
    cursor: pointer;
}

/* sub1_1 */
.mw {
    max-width: 1600px;
    margin: 0 auto;
}

.sub {
    padding-top: calc(var(--header) + 4vw);
}

.sub1_1 {
    padding-top: 8rem;
}

.s_txt {
    justify-content: space-between;
    align-items: end;
    margin-bottom: 5rem;
}

.s_txt .txt_l>span {
    font-size: 30px;
    color: #A7BF59;
    font-family: var(--tommy);
    margin-bottom: 1.5rem;
    display: block;
}

.s_txt h2 {
    font-size: 58px;
    font-weight: 400;
}

.s_txt h2 span {
    font-weight: 600;
}

.s_txt .txt_r {
    gap: 2rem 3rem;
}

.s_txt .txt_r p {
    font-size: 28px;
}

.s_txt .txt_r p:first-child {
    color: #d9d9d9;
}

.s_txt .txt_r p.active {
    color: #A7BF59;
    font-weight: 500;
    border-bottom: 1px solid #A7BF59;
}

.s1_1_2 {
    padding-top: 10rem;
}

.s1_1_2 .flex {
    justify-content: space-between;
    align-items: center;
}

.s1_1_2 .flex02 {
    flex-direction: row-reverse;
    margin-top: 12rem;
    justify-content: start;
    gap: 8rem;
}

.s1_1_2 .flex_l h5 {
    margin-bottom: 2rem;
    line-height: 1.4;
    font-size: 40px;
    font-weight: 600;

    letter-spacing: -0.4px;
}

.s1_1_2 .flex_l p {
    font-size: 24px;
    line-height: 1.5;
}

.s1_1_2 .flex02 .flex_r {
    gap: 1rem;
}

.s1_1_3 {
    height: 900px;
    /* width: 100%; */
    background: url(../1x/s1/s1_1_banner02.png) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 10rem;
    background-attachment: fixed;
}

.s1_1_3 p {
    font-size: 50px;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

.s1_1_3 p span {
    font-weight: 600;
}

.s1_1_4 .flex {
    align-items: center;
    gap: 10rem;
}

.s1_1_4 p {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
}

.s1_1_4 p:first-child {
    margin-bottom: 2rem;
}

.s1_1_5 {
    background-color: #f5f5f5;
    margin-top: 14rem;
    padding-block: 14rem
}

.s1_1_5 .top span {
    font-size: 30px;
    font-family: var(--tommy);
    color: #A7BF59;
    text-align: center;
    display: block;

}

.s1_1_5 .top h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-block: 1.5rem 6.5rem;
    line-height: 1.3;
}

.s1_1_5 ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.s1_1_5 ul .txt {
    margin-top: 4rem;
}

.s1_1_5 ul .txt span {
    font-size: 34px;
    font-weight: 600;
    color: #A7BF59;
}

.s1_1_5 ul .txt p {
    font-weight: 300;
    font-size: 24px;
    margin-top: 1.5rem;
    line-height: 1.5;
}



/* sub2 */


/* sub3 */
.s3_1 {
    background-color: #333333;
    padding-block: 3rem 0rem;
    border-radius: 70px 70px 0 0;
    position: relative;
    margin-top: -12rem;
}

.sub_txt span {
    font-size: 30px;
    color: #A7BF59;
    text-align: center;
    font-family: var(--tommy);
    display: block;
}

.sub_txt h2 {
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    margin-top: 2rem;
    display: block;
    color: #fff;
    letter-spacing: -0.4px;
}

.s3_1 .s3_swiper {
    padding-block: 4rem;
}

.s3_1 .s3_swiper .swiper-slide.swiper-slide-active {
    transform: scale(1.1);
    margin-inline: 50px;
}

.s3_1 .s3_swiper .swiper-slide.swiper-slide-prev,
.s3_1 .s3_swiper .swiper-slide.swiper-slide-next {
    transform: scale(1);
}


.s3_1 .s3_swiper .swiper-slide {
    transition: all 0.3s;
    transform: scale(0.85);
}

.s3_1 .s3_swiper .swiper-slide img {
    max-width: 95%;
}

.s3_1 .s3_swiper p {
    text-align: center;
    color: #fff;
    font-size: 22px;
    margin-top: -1rem;
}

.s3_2 {
    padding-block: 10rem;
}

.s3_2 .sub_txt h2 {
    color: #000;
    line-height: 1.3;
}

.s3_2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1220px;
    margin: 0 auto;
    justify-content: center;
    margin-top: 4.5rem;
}

.s3_2 ul li:hover img {
    scale: 1.05;
    transition: all 0.4s;
}

.s3_2 ul p {
    font-size: 20px;
    text-align: center;
    margin-top: 0.5rem;
}

.s3_2 ul li {
    width: 19%;
}

.s3_3 {
    background-color: #A7BF59;
    padding-block: 7rem;
}

.s3_3 p {
    color: #fff;
    font-size: 36px;
    text-align: center;
    line-height: 1.4;
}

.s3_3 p span {
    font-weight: 600;
}

.s3_4 {
    margin-block: 8rem 20rem;
}

.s3_4 ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9rem 6.5rem;
}

.s3_4 ul li {
    border-top: 1px solid black;
    padding-top: 3.5rem;
    align-items: start;
}

.s3_4 ul li span {
    font-size: 32px;
    font-weight: 600;
}

.s3_4 ul li .img_box {
    flex-basis: 33%;
}

.s3_4 ul li p {
    font-size: 24px;
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.4;
}


/* sub4_1 */
.sub .txt_box>img {
    width: 100%;
}

.s4_1 {
    position: relative;
}

.s4_1 .box_txt {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}


.s4_1 .box_txt p {
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 3rem;
}

.s4_1 .box_txt ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.s4_1 .box_txt ul li {
    border-radius: 50%;
    color: #fff;
    font-family: var(--noto);
    width: 230px;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.125rem;
}

.s4_1 .box_txt ul li:nth-of-type(1) {
    background-color: #d2e84f;
}

.s4_1 .box_txt ul li:nth-of-type(2) {
    background-color: #b5d337;
}

.s4_1 .box_txt ul li:nth-of-type(3) {
    background-color: #a7bf59;
}

.s4_1 .flex {
    max-width: 1670px;
    margin: 0 auto;
    align-items: center;
    gap: 10rem;
}

.s4_1 .flex01 img {
    padding-top: 18rem;
}

.s4_1 .flex01 .flex_txt {
    position: relative;
    padding-top: 13rem;
}

.s4_1 .flex .flex_txt h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;

}

.s4_1 .flex .flex_txt p {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
}

.s4_1 .flex01 .flex_txt p:nth-of-type(1) {
    margin-block: 3rem;
}

.s4_1 .flex ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem 5rem;
    padding-top: 7rem;
}

.s4_1 .flex ul li span {
    color: #fff;
    font-size: 30px;
    font-family: var(--tommy);
}

.s4_1 .flex02 .flex_txt h2 {
    margin-block: 1.5rem;

}

.s4_1 .flex01 {
    position: relative;
    padding-bottom: 7rem;
}

.s4_1 .flex01::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    background-color: #f5f5f5;
    z-index: -1;
}

.s4_1 .flex02::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    background-color: #a7bf59;
    z-index: -1;
}


.s4_1 .flex02 {
    position: relative;
    padding-bottom: 10rem;
}

.s4_1 .flex02 img {
    padding-top: 7rem;
}

/* sub4_2 */
.sub4_2 .img_box {
    position: relative;
}

.sub4_2 .img_box div {
    position: absolute;

    left: 50%;
    top: 0;
    background-color: rgba(167, 191, 89, 0.9);
    width: 50%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 6rem;
    flex-direction: column;
    justify-content: center;
}

.sub4_2 .s4_2_txt h2 {
    font-family: var(--tommy);
    font-size: 64px;
    width: 100%;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
}

.sub4_2 .s4_2_txt p {
    font-weight: 300;
    font-size: 24px;
    margin-top: 4rem;
    width: 100%;
    line-height: 1.4;
}

.sub4_2 .mw {
    max-width: 1650px;
    gap: 11rem;
    align-items: center;
}

.sub4_2 .txt_box .mw {
    max-width: 1600px;
    align-items: end;
}




.s4_2_1 {
    margin-block: 11rem;
}

.s4_2_1 div h2 {
    font-family: var(--tommy);
    font-size: 80px;
    width: 100%;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;

}

.s4_2_1 div h2 span {
    color: #A7BF59;
}

.s4_2_2 {
    position: relative;
}

.s4_2_2 .s4_2_txt {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translateY(-50%);
    color: #fff;
}

.s4_2_2 .s4_2_txt h2 {
    font-size: 50px;
}

.s4_2_2 .s4_2_txt p {
    margin-top: 2rem;
}

.s4_2_3 ul {
    width: 100%;
}

.s4_2_3 ul li {
    padding-block: 11.5rem 3rem;
    position: relative;
}

.s4_2_3 ul li p {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
}

.s4_2_3 ul li::before {
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -13%;
    content: '';
    background-color: #A7BF59;
    z-index: -1;
}

.s4_2_3 ul .list02::before {
    opacity: 0.9;
}

.s4_2_3 ul .list03::before {
    opacity: 0.8;
}

.s4_2_3 ul li::after {
    width: auto;
    height: auto;
    position: absolute;
    bottom: -12%;
    right: -20%;
    color: rgba(255, 255, 255, 0.15);
    font-size: 9.375rem;
    font-weight: 800;
    font-family: var(--tommy);
}

.s4_2_3 ul .list01::after {
    content: '01';
}

.s4_2_3 ul .list02::after {
    content: '02';
}

.s4_2_3 ul .list03::after {
    content: '03';
}

.s4_2_4 {
    padding-block: 13rem;
    background-color: #f5f5f5;
}

.s4_2_4 h2 {
    font-size: 40px;
    color: #A7BF59;
    font-weight: 600;
}

.s4_2_4 p {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.8px;
}

.s4_2_4 .left ul {
    gap: 2rem 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}



.s4_2_4 .mw {
    gap: 16rem;
}

.s4_2_4 .left ul li {
    display: flex;
    gap: 2.3vw;
    align-items: center;
    font-size: 24px;
    justify-content: center;
}


.s4_2_4 .right h2 {
    margin-bottom: 1rem;
}

.s4_2_4 .left>img {
    margin-block: 2rem;
}

.s4_2_4 .right div {
    margin-block: 2.5rem 2rem;
    display: flex;
    justify-content: center;
}

.s4_2_4 .right img {
    display: inline-block;
    margin-right: 0.5rem;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
}



/* sub5 */
.s5_1_1 {
    background-color: #f5f5f5;
    padding-block: 7.5rem;
}

.s5_1_1 .mw {
    max-width: 1500px;
}

.s5_1_1 ul {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
}

.s5_1_1 ul li {
    display: flex;
    width: 50%;
    align-items: center;
    margin-bottom: 2rem;
}

.s5_1_1 ul li.content {
    width: 100%;
    align-items: start;
}

.s5_1_1 ul li.content textarea {
    width: 100%;
    height: 200px;
    border-radius: 13px;
    border: 0;
    padding: 2rem;
}

.s5_1_1 ul li.content>p {
    padding-top: 1.8rem;
}

.s5_1_1 ul li p {
    font-weight: 500;
    min-width: 105px;
    font-size: 1.25rem;
}

.s5_1_1 ul li input {
    border: 0;
    background-color: #fff;
    border-radius: 13px;
    width: 100%;
    padding: 1rem;
}

.s5_1_1 ul li p span {
    color: #A7BF59;
}

.s5_1_1 ul li.company p span {
    color: #41b76b;
}

.s5_1_1 ul li.reference .chk_box {
    display: flex;
    gap: 3rem;
}

.s5_1_1 ul li.reference .chk_box div {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.s5_1_1 ul li.email div {
    width: 100%;
}

.s5_1_1 ul li.email input {
    width: 50%;
    margin-right: 1.5rem;
}

.s5_1_1 ul li.email select {
    border: 0;
    height: 100%;
    border-radius: 13px;
    width: 44%;
    padding-inline: 1rem;
    padding-block: 1rem;
}



.s5_1_1 ul li.file {
    align-items: start;
}

.s5_1_1 ul li.file>p {
    padding-top: 1.5rem;
}

.s5_1_1 ul li.file .file_txt {
    margin-top: 1rem;
}

.s5_1_1 ul li.file .file_txt p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.s5_1_1 ul li.file input[type="file"] {
    display: none;
}

.s5_1_1 ul li.file div {
    position: relative;
    width: 90%;
}

.s5_1_1 ul li.file div .plus {
    position: absolute;
    top: -10%;
    left: 4%;
    color: #A7BF59;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
}

.s5_1_1 ul li.file div .upload_label {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #000;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0.9rem 3.3rem;
    cursor: pointer;
}

.s5_1_1 ul li.file input {
    pointer-events: none;
}

.s5_1_1 input[type='radio'],
.s5_1_1 input[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border: 1px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.s5_1_1 input[type='radio']:checked,
.s5_1_1 input[type='checkbox']:checked {
    background-color: #A7BF59;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #A7BF59;
}

.s5_1_1 .info_box .txt_wrap,
.s5_1_1 .info_box .icon_up {
    display: none;
}

.s5_1_1 .info_box .chk_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding-block: 1rem;
}

.s5_1_1 .info_box .chk_wrap .chk_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.s5_1_1 .info_box .txt_wrap {
    padding: 2rem 1rem;
    border-bottom: 1px solid #ccc;
}

.s5_1_1 .info_box .txt_wrap p {
    margin-bottom: 1rem;
}


.s5_2_1 .iframe_box {
    position: relative;
}

.s5_2_1 .iframe_box .about {
    position: absolute;
    background-color: #A7BF59;
    border-radius: 20px;
    color: #fff;
    gap: 6rem;
    width: fit-content;
    padding: 4rem 8rem;
    bottom: -26%;
    right: -3%;
}


.s5_2_1 .iframe_box .about .left span {
    font-weight: 800;
    font-size: 14px;
}

.s5_2_1 .iframe_box .about .left h2 {
    font-size: 30px;
}

.s5_2_1 .iframe_box .about .right h2 {
    font-weight: 700;
    font-size: 34px;
    min-width: 155px;
}

.s5_2_1 .iframe_box .about .right p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.s5_2_1 .iframe_box .about .right div {
    padding-inline: 1rem;
}

.s5_2_1 .iframe_box .about .right div:first-of-type {
    padding-bottom: 2rem;
    border-bottom: 1px solid #fff;
    margin-bottom: 2.5rem;
}

.s5_2_1 {
    padding-block: 10rem;
}

.sub5_2 {
    padding-bottom: 25%;
}


/* sub2 */
.s2_1 {
    padding-block: 8rem;
}

.s2_1 h2 {
    text-align: center;
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 4rem;
}

.s2_1 .btn_wrap {
    margin: 0 auto;
    display: flex;
    width: fit-content;
    gap: 3rem;
    margin-block: 5rem 8rem;
}

.s2_1 .btn_wrap .btn {
    font-size: 1.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    padding-bottom: 0.2rem;
    padding-inline: 0.5rem;
}

.s2_1 .btn_wrap .btn.active {
    color: #A7BF59;
    font-weight: 500;
    border-bottom: 1px solid #A7BF59;
}

.s2_1 .content_wrap .content ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3rem;
}

.s2_1 .mw {
    max-width: 1640px;
    padding-inline: 20px;
}

.s2_1 .content_wrap .content {
    display: none;
}

.s2_1 .content_wrap .content.active {
    display: block;
}

.s2_1 ul li div {
    padding: 3vw;
    background-color: #f7f7f7;
    border-radius: 20px;
    margin-bottom: 2rem;
    aspect-ratio: 1 / 1;
    display: flex;
}

.s2_1 ul li div img {
    margin: 0 auto;
}

.s2_1 ul li p {
    text-align: center;
    font-size: 24px;
}

.sub2 .s_txt .txt_r {
    flex-wrap: wrap;
    width: 30%;
    justify-content: end;
}

/* 상세페이지 */
.detail .arr_box {
    position: relative;
    /* padding-bottom: 2.3rem; */
}

.detail .arr_box .arr {
    position: absolute;
    bottom: -9%;
    left: 8%;
    z-index: 2;
}

.detail_1 .img_box {
    position: relative;
}

.detail_1 .img_box .content_box .content {
    display: none;
}

.detail_1 .img_box .content_box .content.active,
.detail_1 .img_box .btn_box .btn.active {
    display: block;
}

.detail_1 .img_box .btn_box {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.detail_1 .img_box .btn_box .btn {
    max-width: 80px;
    aspect-ratio: 1 / 1;
    border: 3px solid transparent;
    cursor: pointer;
}

.detail_1 .img_box .btn_box .btn img {
    border-radius: 10px;
}

.detail_1 .img_box .btn_box .btn.active {
    border: 3px solid #A7BF59;
    border-radius: 14px;
}

.detail_1 .img_box {
    padding: 5rem 3rem;
    width: 50%;
}

.detail_1 .txt_box {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding-block: 13rem 5rem;
    padding-inline: 6.5rem;
    width: 50%;
}

.detail .detail_txt>span {
    font-size: 24px;
    color: #A7BF59;
}

.detail .content_box {
    display: flex;
    justify-content: center;
}

.detail .detail_txt h2 {
    font-size: 40px;
    font-weight: 600;
    margin-block: 1rem 1.5rem;
}

.detail .detail_txt h2 span {
    color: #000;
}

.detail .detail_txt p {
    font-size: 24px;
    line-height: 1.5;
}

.detail_1 .detail_txt p {
    font-size: 28px;
}

.detail .detail_txt p span {
    font-weight: 600;
    color: #000;
}

.detail_1 ul {
    margin-block: 6rem 13.5rem;
}

.detail_1 ul li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-weight: 300;
    font-size: 22px;
}

.detail_1 ul li span {
    display: inline-block;
    padding: 0.08vw;
    border-radius: 50%;
    background-color: #A7BF59;
}

.detail_1 .shop {
    width: 100%;
    padding-block: 2rem;
    background-color: #A7BF59;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.detail_1 .shop p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--tommy);
    margin-right: 7px;
}


.detail_2 .detail_txt>span,
.detail_2 .detail_txt h2,
.detail_2 .detail_txt p,
.detail_3 .detail_txt>span,
.detail_3 .detail_txt h2,
.detail_3 .detail_txt p {
    text-align: center;
    display: block;
}

.detail_2 .detail_txt h2,
.detail_3 .detail_txt h2 {
    font-weight: 400;
    line-height: 1.3;
}

.detail_2 .detail_txt h2 span,
.detail_3 .detail_txt h2 span {
    font-weight: 600;
}

.detail_2 {
    margin-block: 18rem 11rem;
}

.detail_2 .detail_txt,
.detail_3 .detail_txt {
    margin-bottom: 5rem;
}

.detail_3 ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.detail_3 ul li {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;

}

.detail_3 ul li h2 {
    font-size: 32px;
    font-weight: 600;
    color: #A7BF59;
    margin-bottom: 2rem;
}

.detail_3 ul li p {
    font-size: 24px;
    line-height: 1.4;
}

.detail_3 ul li p span {
    font-weight: 600;
}

.detail_3 {
    padding-bottom: 15rem;
}

/* 반응형 */
@media screen and (max-width: 1441px) {
    .tit h3 {
        font-size: 2.75rem;
    }

    .tit h5 {
        font-size: 1.625rem;
    }


    /*  */
    /* header {
        padding: 2% 4vw;
    } */

    /* .m2 {
        padding-inline: 4vw 0;
    }

    .m3 {
        padding-inline: 4vw;
    } */

    /*  */
    header {
        padding: 2% 4vw;
    }

    .header_wrap .link_depth {
        gap: 1rem;
    }

    .header_wrap .logo h1 {
        max-width: 84%;
    }

    .header_wrap .header_menu {
        gap: 1vw;
    }

    .m2 {
        padding-inline: 4vw 0;
    }

    .tit p {
        font-size: 1.125rem;
    }

    .tit h3 {
        font-size: 2.5rem;
        margin-block: 1.5rem;
    }

    .tit h5 {
        font-size: 1.25rem;
    }

    .m2 .card p {
        font-size: 1.25rem;
    }

    .m2 .card_wrap .card {
        width: 100%;
    }

    .m2 .card_wrap .card img {
        max-width: 80%;
    }

    .m2 .card_top ul,
    .m2 .card_bot ul {
        gap: 6rem;
    }

    .m2 .card p {
        width: fit-content;
    }

    /* m3 */
    .m3 {
        padding-inline: 4vw;
    }

    .m3 .tit h3 {
        font-size: 2.5rem;
    }

    .m3 .btn_box .btn span {
        color: #999;
        font-size: 1.125rem;
    }

    .m3 .btn_box .btn p {
        font-size: 1.375rem;
    }

    .m3 .btn_box .btn img {
        max-width: 33%;
        max-height: 40%;
    }

    .m3 .btn_box .btn {
        min-width: initial;
    }

    .m3 .btn_box {
        padding-right: 9vw;
    }

    .m3 .content_wrap .content {
        height: 60vh;
    }

    .m3 .content_wrap .content .item .txt_box h2 {
        font-size: 2rem;
    }

    .m3 .content_wrap .content .item .txt_box p {
        font-size: 1.5rem;
    }

    .m3 .txt_box .arr {
        max-width: 85%;
    }

    .m4 {
        padding-inline: 4vw;
    }

    .m4 .b_left {
        padding-block: 2.5rem;
    }

    .m4 img {
        max-width: 85%;
        max-height: 14%;
    }

    .m4 .t_right a p {
        font-size: 1.25rem;
    }

    .m4 .b_right {
        font-size: 1.25rem;
    }

    .m4 .b_left .left01 img {
        max-width: 21%;
    }

    .m4 .b_left .left01 {
        font-size: 1.25rem;
    }

    .m4 .b_left .left03 {

        font-size: 1.125rem;
    }

    .m4 .txt_box {
        padding-inline: 0;
    }


    /* sub1_1 */
    .txt_box,
    .s1_1_2,
    .s1_1_2,
    .s1_1_4 {
        padding-inline: 4vw;
    }

    .s_txt .txt_l>span {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;

    }

    .s_txt h2 {
        font-size: 2.5rem;
    }

    .s_txt .txt_r p {
        font-size: 1.5rem;
    }

    .sub .txt_box>img {
        min-height: 300px;
        object-fit: cover;
    }

    .s1_1_2 .flex img {
        max-width: 45%;
    }

    .s1_1_2 .flex_l h5 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }

    .s1_1_2 .flex_l h5 br {
        display: none;
    }

    .s1_1_2 .flex_l p {
        font-size: 1.25rem;
        word-break: keep-all;
    }

    .s1_1_2 .flex01 .flex_l p {
        max-width: 87%;
    }


    .s1_1_2 .flex02 .flex_r {
        justify-content: start;
        gap: 1.5vw;
        width: 100%;
    }

    .s1_1_2 .flex02 .flex_l {
        width: 100%;
    }

    .s1_1_2 .flex02 {
        gap: 2vw;
    }

    .s1_1_2 .flex_l p br {
        display: none;
    }

    .s1_1_3 {
        height: 60vh;
    }

    .s1_1_3 p {
        font-size: 2rem;
        line-height: 1.5;
    }

    .s1_1_4 img {
        max-width: 53%;
    }

    .s1_1_4 p {
        font-size: 1.25rem;
        word-break: keep-all;
        max-width: 95%;
    }

    .s1_1_4 p br {
        display: none;
    }

    .s1_1_4 .flex {
        gap: 5vw;
    }

    .s1_1_5 .top span {
        font-size: 1.25rem;
    }

    .s1_1_5 .top h2 {
        font-size: 2rem;
        margin-block: 1.5rem 4.5rem;
    }

    .s1_1_5 ul {
        padding-inline: 4vw;
        gap: 2vw;
    }

    .s1_1_5 ul .txt span {
        font-size: 1.5rem;
    }

    .s1_1_5 ul .txt p {
        font-size: 1.125rem;
        margin-top: 1rem;
    }

    .s1_1_5 ul .txt {
        margin-top: 2rem;
    }

    /* sub2 */
    .sub2 .s_txt .txt_r {
        width: 35%;
        gap: 1rem 3rem;
    }

    .s2_1 .mw {
        padding-inline: 4vw;
    }

    .s2_1 ul li p {
        font-size: 1.25rem;
    }

    .detail_1 .img_box {
        height: fit-content;
        padding: 7rem 3rem;
    }

    .detail_1 .img_box .btn_box .btn {
        max-width: 65px;
    }

    .detail_1 .img_box .btn_box {
        bottom: 16%;
    }

    .detail .arr_box .arr {
        bottom: -15%;
    }

    .detail .detail_txt>span {
        font-size: 1.125rem;
    }

    .detail .detail_txt h2 {
        font-size: 2rem;
    }

    .detail_1 .detail_txt p {
        font-size: 1.25rem;
    }

    .detail_1 ul li {
        font-size: 1.25rem;
    }

    .detail_1 ul {
        margin-block: 6rem;
    }

    .detail_1 .shop p {
        font-size: 1.25rem;
    }

    .detail_1 .txt_box {
        padding-block: 9.5rem 5rem;
        padding-inline: 3rem;
    }

    .detail .detail_txt p {
        font-size: 1.25rem;
    }

    .detail_2 {
        padding-inline: 4vw;
        margin-block: 13rem;
    }

    .detail_3 {
        padding-inline: 4vw;
    }

    .detail_3 ul li p {
        font-size: 1.125rem;
        word-break: keep-all;
    }

    .detail_3 ul li p br {
        display: none;
    }


    .detail_3 ul li h2 {
        font-size: 1.5rem;
    }

    /* sub3_1 */
    .s3_1 {
        padding-block: 7rem 8rem;
        margin-top: -5rem;
    }

    .sub_txt span {
        font-size: 1.125rem;
    }

    .sub_txt h2 {
        font-size: 2rem;
        margin-top: 1.2rem;
    }

    .s3_1 .s3_swiper p {
        font-size: 1.125rem;
        margin-top: -1rem;
    }

    .s3_1 .s3_swiper {
        padding-block: 7rem 2rem;
    }

    .s3_2 ul p {
        font-size: 1.25rem;
    }

    .s3_2 ul li {
        margin: 0 auto;
    }

    .s3_2 ul li img {
        max-width: 90%;
        margin: 0 auto;
    }

    .s3_2 ul {
        gap: 5rem 2rem;
    }

    .s3_3 p {
        font-size: 2rem;
        line-height: 1.5;
    }

    .s3_4 {
        padding-inline: 4vw;
    }

    .s3_4 ul li span {
        font-size: 1.5rem;
    }

    .s3_4 ul li p {
        font-size: 1.125rem;
    }

    .s3_4 ul li {
        gap: 2.5vw;
    }

    .s3_4 ul li .img_box {
        flex-basis: 17%;
    }

    .s3_4 ul {
        gap: 4rem 6.5rem;
    }

    /* sub4_1 */
    .s4_1 .box_txt {
        top: -9%;
    }

    .s4_1 .box_txt p {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .s4_1 .box_txt ul li {
        width: 150px;
        height: 150px;
        font-size: 1.25rem;
        aspect-ratio: 1 / 1;
    }

    .s4_1 {
        padding-inline: 4vw;
    }

    .s4_1 img {
        max-width: 50%;
        padding-right: 4vw;
    }

    .s4_1 .flex {
        gap: 4vw;
    }

    .s4_1 .flex .flex_txt h2 {
        font-size: 1.5rem;
        max-width: 90%;
    }

    .s4_1 .flex .flex_txt h2 br {
        display: none;
    }

    .s4_1 .flex .flex_txt p {
        font-size: 1.125rem;
    }

    .s4_1 .flex01 .flex_txt p:nth-of-type(1) {
        margin-block: 2.2rem 1rem;
    }

    .s4_1 .flex ul {
        width: 100%;
        gap: 5rem 3rem;
    }

    .s4_1 .flex01 img {
        padding-top: 15rem;
    }

    /* sub4_2 */
    .sub4_2 .img_box img {
        height: 400px;
        object-fit: cover;
        width: 100%;
    }

    .sub4_2 .s4_2_txt h2 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: initial;
    }

    .sub4_2 .s4_2_txt p {
        font-size: 1.125rem;
        margin-top: 2rem;
        line-height: 1.5;
    }



    .sub4_2 .img_box div {
        padding-left: 3rem;
        align-items: start;
    }

    .s4_2_1 {
        padding-inline: 4vw;
    }


    .s4_2_1 img,
    .s4_2_3 img {
        max-width: 45%;
    }

    .sub4_2 .mw {
        justify-content: center;
        gap: 4vw;
    }

    .sub4_2 .s4_2_txt p {
        max-width: 90%;
        word-break: keep-all;
    }

    .sub4_2 .s4_2_txt p br {
        display: none;
    }

    .s4_2_3 {
        padding-inline: 4vw;
    }



    .s4_2_3 ul li::before {
        left: 0%;
    }

    .s4_2_3 ul li {
        padding-left: 4vw;
        padding-block: 9rem 3rem;
    }

    .s4_2_3 ul li p {
        font-size: 1.125rem;
    }

    .s4_2_3 ul li::after {
        right: -9%;
        font-size: 8rem;
    }

    .s4_2_4 h2 {
        font-size: 1.75rem;
    }

    .s4_2_4 img {
        max-width: 90%;
    }

    .s4_2_4 p {
        font-size: 1.125rem;
    }

    .s4_2_4 .left ul li {
        gap: 2.5vw;
    }

    .s4_2_4 .left ul {
        width: 88%;
    }

    .s4_2_4 .mw {
        padding-inline: 4vw;
        align-items: start;
    }

    .s4_2_4 .mw .left,
    .s4_2_4 .mw .right {
        flex: 1;
    }

    .sub4_2 .txt_box .mw {
        justify-content: space-between;
    }


    .s4_2_4 .mw .right p:first-of-type {
        font-size: 1.25rem;
    }

    .s4_2_4 .right div {
        justify-content: start;
    }

    /* sub5_1 */
    .s5_1_1 {
        padding-inline: 4vw;
    }

    .s5_1_1 ul li p {
        font-size: 1.125rem;
        min-width: 125px;
    }

    .s5_1_1 ul li.file .file_txt p {
        font-size: 1rem;
    }

    .s5_1_1 ul li.file .file_txt {
        width: 100%;
    }

    .s5_1_1 .info_box .txt_wrap .txt_box {
        padding-inline: initial;
    }

    .s5_1_1 ul li.email select {
        width: 43%;
    }

    /* sub5_2 */
    .s5_2_1 .iframe_box {
        padding-inline: 4vw;
    }

    .s5_2_1 .iframe_box iframe {
        height: 500px;
    }



    .s5_2_1 .iframe_box .about {
        gap: 6rem;
        padding: 3rem 4rem;
        right: 2%;
    }

    .s5_2_1 .iframe_box .about .right h2 {
        font-size: 1.5rem;
        min-width: 112px;
    }

    .s5_2_1 .iframe_box .about .right p {
        font-size: 1.125rem;
    }

    /* footer */
    .footer {
        padding-inline: 4vw;
    }

    .footer .f_center p {
        font-size: 1rem;
        margin-right: 1rem;
    }

    .footer .f_right ul {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer .f_left {
        flex-basis: 23%;
    }

    .footer .f_center {
        flex-basis: 43%;
    }


}

@media screen and (max-width: 1281px) {
    .gnb .inner .img_wrap {
        display: none;
    }

    .gnb .inner .menu_wrap {
        width: 100%;
    }

    .m1 {
        margin-top: 7.7vw;
    }

    .m1 .m1_swiper .txtbox h3 {
        font-size: 3rem;
    }

    .m1 .m1_inner {
        clip-path: inset(0px 160px 0 160px);
    }

    .m1 .m1_inner.active {
        clip-path: inset(0 0 0 0);
    }


    header {
        padding: 2% 4vw;
    }

    .header_wrap .link_depth {
        gap: 1rem;
    }

    .header_wrap .logo h1 {
        max-width: 84%;
    }

    .header_wrap .header_menu {
        gap: 1vw;
    }

    .m2 {
        padding-inline: 4vw 0;
    }

    .tit p {
        font-size: 1.125rem;
    }

    .tit h3 {
        font-size: 2.5rem;
        margin-block: 1.5rem;
    }

    .tit h5 {
        font-size: 1.25rem;
    }

    .m2 .swiper-slide p {
        font-size: 1.25rem;
    }

    .m2 .m2_swiper02 .swiper-wrapper {
        margin-left: 5rem;
    }

    /* .m2 .card_wrap .card {
        width: 100%;
    }

    .m2 .card_wrap .card img {
        max-width: 80%;
    }

    .m2 .card_top ul,
    .m2 .card_bot ul {
        gap: 6rem;
    }

    .m2 .card p {
        width: fit-content;
    } */

    /* m3 */
    .m3 {
        padding-inline: 4vw;
    }

    .m3 .tit h3 {
        font-size: 2.5rem;
    }

    .m3 .btn_box .btn span {
        color: #999;
        font-size: 1.125rem;
    }

    .m3 .btn_box .btn p {
        font-size: 1.375rem;
    }

    .m3 .btn_box .btn img {
        max-width: 33%;
        max-height: 40%;
    }

    .m3 .btn_box .btn {
        min-width: initial;
    }

    .m3 .btn_box {
        padding-right: 9vw;
    }

    .m3 .content_wrap .content {
        height: 60vh;
    }

    .m3 .content_wrap .content .item .txt_box h2 {
        font-size: 2rem;
    }

    .m3 .content_wrap .content .item .txt_box p {
        font-size: 1.5rem;
    }

    .m3 .txt_box .arr {
        max-width: 85%;
    }

    .m4 {
        padding-inline: 4vw;
    }

    .m4 .b_left {
        padding-block: 2.5rem;
    }

    .m4 img {
        max-width: 85%;
        max-height: 14%;
    }

    .m4 .t_right a p {
        font-size: 1.25rem;
    }

    .m4 .b_right {
        font-size: 1.25rem;
    }

    .m4 .b_left .left01 img {
        max-width: 21%;
    }

    .m4 .b_left .left01 {
        font-size: 1.25rem;
    }

    .m4 .b_left .left03 {

        font-size: 1.125rem;
    }

    .m4 .txt_box {
        padding-inline: 0;
    }


    /* sub1_1 */
    .txt_box,
    .s1_1_2,
    .s1_1_2,
    .s1_1_4 {
        padding-inline: 4vw;
    }

    .s_txt .txt_l>span {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;

    }

    .s_txt h2 {
        font-size: 2.5rem;
    }

    .s_txt .txt_r p {
        font-size: 1.5rem;
    }

    .sub .txt_box>img {
        min-height: 300px;
        object-fit: cover;
    }

    .s1_1_2 .flex img {
        max-width: 45%;
    }

    .s1_1_2 .flex_l h5 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .s1_1_2 .flex_l h5 br {
        display: none;
    }

    .s1_1_2 .flex_l p {
        font-size: 1.25rem;
    }

    .s1_1_2 .flex01 .flex_l p {
        max-width: 87%;
    }


    .s1_1_2 .flex02 .flex_r {
        justify-content: start;
        gap: 1.5vw;
        width: 100%;
    }

    .s1_1_2 .flex02 .flex_l {
        width: 100%;
    }

    .s1_1_2 .flex02 {
        gap: 2vw;
    }

    .s1_1_2 .flex_l p br {
        display: none;
    }

    .s1_1_3 {
        height: 60vh;
    }

    .s1_1_3 p {
        font-size: 2rem;
        line-height: 1.5;
    }

    .s1_1_4 img {
        max-width: 53%;
    }

    .s1_1_4 p {
        font-size: 1.25rem;
        word-break: keep-all;
        max-width: 95%;
    }

    .s1_1_4 p br {
        display: none;
    }

    .s1_1_4 .flex {
        gap: 5vw;
    }

    .s1_1_5 .top span {
        font-size: 1.25rem;
    }

    .s1_1_5 .top h2 {
        font-size: 2rem;
        margin-block: 1.5rem 4.5rem;
    }

    .s1_1_5 ul {
        padding-inline: 4vw;
        gap: 2vw;
    }

    .s1_1_5 ul .txt span {
        font-size: 1.5rem;
    }

    .s1_1_5 ul .txt p {
        font-size: 1.125rem;
        margin-top: 1rem;
    }

    .s1_1_5 ul .txt {
        margin-top: 2rem;
    }

    /* sub2 */
    .sub2 .s_txt .txt_r {
        width: 35%;
        gap: 1rem 3rem;
    }

    .s2_1 .mw {
        padding-inline: 4vw;
    }

    .s2_1 ul li p {
        font-size: 1.25rem;
    }

    .detail_1 .img_box {
        height: fit-content;
        padding: 7rem 3rem;
    }

    .detail_1 .img_box .btn_box .btn {
        max-width: 65px;
    }

    .detail_1 .img_box .btn_box {
        bottom: 16%;
    }

    .detail .arr_box .arr {
        bottom: -15%;
    }

    .detail .detail_txt>span {
        font-size: 1.125rem;
    }

    .detail .detail_txt h2 {
        font-size: 2rem;
    }

    .detail_1 .detail_txt p {
        font-size: 1.25rem;
    }

    .detail_1 ul li {
        font-size: 1.25rem;
    }

    .detail_1 ul {
        margin-block: 6rem;
    }

    .detail_1 .shop p {
        font-size: 1.25rem;
    }

    .detail_1 .txt_box {
        padding-block: 9.5rem 5rem;
        padding-inline: 3rem;
    }

    .detail .detail_txt p {
        font-size: 1.25rem;
    }

    .detail_2 {
        padding-inline: 4vw;
        margin-block: 13rem;
    }

    .detail_3 {
        padding-inline: 4vw;
    }

    .detail_3 ul li p {
        font-size: 1.125rem;
        word-break: keep-all;
    }

    .detail_3 ul li p br {
        display: none;
    }


    .detail_3 ul li h2 {
        font-size: 1.5rem;
    }

    /* sub3_1 */
    .s3_1 {
        padding-block: 7rem 8rem;
        margin-top: -5rem;
    }

    .sub_txt span {
        font-size: 1.125rem;
    }

    .sub_txt h2 {
        font-size: 2rem;
        margin-top: 1.2rem;
    }

    .s3_1 .s3_swiper p {
        font-size: 1.125rem;
        margin-top: -1rem;
    }

    .s3_1 .s3_swiper {
        padding-block: 7rem 2rem;
    }

    .s3_2 ul p {
        font-size: 1.25rem;
    }

    .s3_2 ul li {
        margin: 0 auto;
    }

    .s3_2 ul li img {
        max-width: 90%;
        margin: 0 auto;
    }

    .s3_2 ul {
        gap: 5rem 2rem;
    }

    .s3_3 p {
        font-size: 2rem;
        line-height: 1.5;
    }

    .s3_4 {
        padding-inline: 4vw;
    }

    .s3_4 ul li span {
        font-size: 1.5rem;
    }

    .s3_4 ul li p {
        font-size: 1.125rem;
    }

    .s3_4 ul li {
        gap: 2.5vw;
    }

    .s3_4 ul li .img_box {
        flex-basis: 17%;
    }

    .s3_4 ul {
        gap: 4rem 6.5rem;
    }

    /* sub4_1 */
    .s4_1 .box_txt {
        top: -9%;
    }

    .s4_1 .box_txt p {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .s4_1 .box_txt ul li {
        width: 150px;
        height: 150px;
        font-size: 1.25rem;
        aspect-ratio: 1 / 1;
    }

    .s4_1 {
        padding-inline: 4vw;
    }

    .s4_1 img {
        max-width: 50%;
        padding-right: 4vw;
    }

    .s4_1 .flex {
        gap: 4vw;
    }

    .s4_1 .flex .flex_txt h2 {
        font-size: 1.5rem;
        max-width: 90%;
    }

    .s4_1 .flex .flex_txt h2 br {
        display: none;
    }

    .s4_1 .flex .flex_txt p {
        font-size: 1.125rem;
    }

    .s4_1 .flex01 .flex_txt p:nth-of-type(1) {
        margin-block: 2.2rem 1rem;
    }

    .s4_1 .flex ul {
        width: 100%;
        gap: 5rem 3rem;
    }

    .s4_1 .flex01 img {
        padding-top: 15rem;
    }

    /* sub4_2 */
    .sub4_2 .img_box img {
        height: 400px;
        object-fit: cover;
        width: 100%;
    }

    .sub4_2 .s4_2_txt h2 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: initial;
    }

    .sub4_2 .s4_2_txt p {
        font-size: 1.125rem;
        margin-top: 2rem;
        line-height: 1.5;
    }

    .s4_2_1 {
        padding-inline: 4vw;
    }


    .s4_2_1 img,
    .s4_2_3 img {
        max-width: 45%;
    }

    .sub4_2 .mw {
        justify-content: center;
        gap: 4vw;
    }

    .sub4_2 .s4_2_txt p {
        max-width: 90%;
        word-break: keep-all;
    }

    .sub4_2 .s4_2_txt p br {
        display: none;
    }

    .s4_2_3 {
        padding-inline: 4vw;
    }



    .s4_2_3 ul li::before {
        left: 0%;
    }

    .s4_2_3 ul li {
        padding-left: 4vw;
        padding-block: 9rem 3rem;
    }

    .s4_2_3 ul li p {
        font-size: 1.125rem;
    }

    .s4_2_3 ul li::after {
        right: -9%;
        font-size: 8rem;
    }

    .s4_2_4 h2 {
        font-size: 1.75rem;
    }

    .s4_2_4 img {
        max-width: 90%;
    }

    .s4_2_4 p {
        font-size: 1.125rem;
    }

    .s4_2_4 .left ul li {
        gap: 2.5vw;
    }

    .s4_2_4 .left ul {
        width: 88%;
    }

    .s4_2_4 .mw {
        padding-inline: 4vw;
        align-items: start;
    }

    .s4_2_4 .mw .left,
    .s4_2_4 .mw .right {
        flex: 1;
    }

    .sub4_2 .txt_box .mw {
        justify-content: space-between;
    }


    .s4_2_4 .mw .right p:first-of-type {
        font-size: 1.25rem;
    }

    .s4_2_4 .right div {
        justify-content: start;
    }

    /* sub5_1 */
    .s5_1_1 {
        padding-inline: 4vw;
    }

    .s5_1_1 ul li p {
        font-size: 1.125rem;
        min-width: 125px;
    }

    .s5_1_1 ul li.file .file_txt p {
        font-size: 1rem;
    }

    .s5_1_1 ul li.file .file_txt {
        width: 100%;
    }

    .s5_1_1 .info_box .txt_wrap .txt_box {
        padding-inline: initial;
    }

    .s5_1_1 ul li.email select {
        width: 43%;
    }

    /* sub5_2 */
    .s5_2_1 .iframe_box {
        padding-inline: 4vw;
    }

    .s5_2_1 .iframe_box iframe {
        height: 500px;
    }



    .s5_2_1 .iframe_box .about {
        gap: 6rem;
        padding: 3rem 4rem;
        right: 2%;
    }

    .s5_2_1 .iframe_box .about .right h2 {
        font-size: 1.5rem;
        min-width: 112px;
    }

    .s5_2_1 .iframe_box .about .right p {
        font-size: 1.125rem;
    }

    /* footer */
    .footer {
        padding-inline: 4vw;
    }

    .footer .f_center p {
        font-size: 1rem;
        margin-right: 1rem;
    }

    .footer .f_right ul {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer .f_left {
        flex-basis: 23%;
    }

    .footer .f_center {
        flex-basis: 43%;
    }

    .s4_2_4 .left>img {
        margin-block: 3.5rem;
    }

}

@media screen and (max-width: 1200px) {

    .header_wrap .navi .depth1 {
        display: none;
    }

    .header_wrap .ham {
        display: flex;
    }

    .gnb .inner {
        padding-inline: 20px;
        padding-top: 6rem;
        align-items: start;
    }

    .gnb .inner .menu_wrap>ul {
        flex-direction: column;
        gap: 2rem;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1 {
        transition: 0.3s;
        border-left: 2px solid transparent;
        padding-left: 1rem;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1:hover {
        border-left: 2px solid #a7bf59;
        transition: 0.3s;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1>a {
        text-align: left;
        cursor: auto;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1::before {
        content: none;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1 ul {
        display: none;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1 ul li a {
        text-align: left;
    }

    .header_wrap .header_menu {
        gap: 3vw;
        justify-content: end;
    }


    /* main */
    .m1 {
        margin-top: 10vw;
        height: 100dvh;
    }

    .m1 .m1_swiper .swiper-slide .imgbox {
        width: 100%;
        height: 100%;
    }

    .m1 .m1_swiper .swiper-slide .imgbox img {
        height: 100%;
        object-fit: cover;
    }

    .m1 .m1_swiper .swiper-slide .txtbox {
        width: 100%;
        bottom: 20%;
    }

    .m1 .m1_swiper .txtbox h3 {
        font-size: 2.5rem;
    }

    /* m2 */
    header {
        padding: 2% 20px;
    }

    .m2 {
        margin-top: 25vw;
        padding-inline: 0;
        /* height: 120dvh; */
        height: 100%;
        padding-bottom: 8rem;
    }

    .m2 .tit {
        padding-inline: 20px 0;
    }

    .tit h3 {
        font-size: 1.75rem;
        margin-block: 0.5rem 1rem;
    }

    .m2 .m2_box {
        flex-direction: column;
    }

    .tit h3 br {
        display: none;
    }

    .tit h5 br {
        display: none;
    }

    .m2 .swiper-slide:nth-child(2n) {
        margin-top: 0;
    }

    .m2 .m2_swiper02 {
        margin-top: 8vw;
    }

    /* .m2 .card_wrap .card img {
        max-width: 65%;
    } */
    .m2 .m2_swiper02 .swiper-wrapper {
        margin-left: 0;
    }

    .m3::before {
        border-radius: 0;
        height: 100%;
    }

    .m3 .tit h3 {
        font-size: 1.75rem;
    }

    .m3 .content_wrap .content {
        height: 100%;
        flex-direction: column;
    }

    .m3 .content_wrap .content .item .txt_box h2 {
        font-size: 1.25rem;
    }

    .m3 .content_wrap .content .item .txt_box p {
        font-size: 1rem;
    }

    .m3 .content_wrap .content .item .txt_box {
        width: 100%;
        left: 2%;
    }

    .m3 .txt_box .arr {
        max-width: 70%;
    }

    .m3 {
        padding-bottom: 8rem;
    }

    .m4 .txt_box {
        grid-column: 1 / 5;
        justify-content: end;
        margin-bottom: 5vw;
    }

    .m4 .m4_box {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }


    .m4 .txt_box .flex_wrap {
        gap: 0;
        width: 100%;
    }

    .m4 .b_right {
        grid-column: 1 / 5;
        grid-row: 3;
    }

    .m4 .m4_bot .b_left {
        grid-column: 1 / 5;
    }

    .txt_box,
    .s1_1_2,
    .s1_1_2,
    .s1_1_4 {
        padding-inline: 20px;
    }

    .m4 {
        padding-inline: 20px;
        height: 100%;
        padding-bottom: 8rem;
    }

    .m4 .m4_box {
        gap: 1rem 0;
    }



    .m4 .txt_box {
        padding-inline: 0;
    }

    .m4 .t_right {
        grid-column: 1 / 5;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }


    /* sub1_1 */
    .s_txt h2 {
        font-size: 2rem;
    }

    .s_txt .txt_r p {
        font-size: 1.25rem;
    }

    .s1_1_2 .flex_l p {
        font-size: 1.125rem;
        max-width: 90%;
    }

    .s1_1_2 .flex_l h5 {
        font-size: 1.5rem;
        max-width: 90%;
        margin-bottom: 1rem;
    }

    .s1_1_2 .flex {
        flex-direction: column;
        gap: 4vw;
    }

    .s1_1_2 .flex img {
        max-width: 100%;
    }

    .s1_1_2 .flex02 .flex_r {
        flex-direction: row;
    }

    .s1_1_2 .flex02 img {
        max-width: 49%;
    }

    .s1_1_3 {
        height: 45vh;
    }

    .s1_1_4 .flex {
        flex-direction: column;
    }

    .s1_1_4 img {
        max-width: 100%;
    }

    .s1_1_4 p {
        font-size: 1.125rem;
    }

    .s_txt .txt_l>span {
        font-size: 1.125rem;
    }

    .s1_1_5 .top h2 {
        font-size: 1.5rem;
        margin-block: 1rem 3rem;
    }

    .s1_1_5 {
        background-color: #f5f5f5;
        margin-top: 10rem;
        padding-block: 10rem;
    }

    .s1_1_5 ul {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
    }

    .s1_1_5 ul li img {
        width: 100%;
        object-fit: cover;
    }

    .s1_1_5 ul .txt {
        margin-top: 1.5rem;
        text-align: center;
    }

    .s1_1_5 ul .txt span {
        font-size: 1.25rem;
    }

    .s1_1_5 ul .txt p {
        font-size: 1rem;
    }

    /* sub2 */
    .sub2 .s_txt {
        margin-bottom: 3rem;
    }

    .s_txt {
        align-items: start;
        margin-bottom: 5rem;
        flex-direction: column;
        gap: 5vw;
    }

    .s_txt h2 br {
        display: none;
    }

    .sub2 .s_txt .txt_r {
        width: 100%;
        gap: 4vw;
        justify-content: start;
    }

    .s2_1 ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .s2_1 ul li p {
        font-size: 1.125rem;
    }

    .s2_1 ul li div {
        margin-bottom: 1.5rem;
        padding: 5vw;
    }

    .sub .txt_box>img {
        min-height: 250px;
    }

    .detail .arr_box>img {
        min-height: 250px;
        object-fit: cover;
    }

    .detail_1 {
        flex-direction: column;
        align-items: center;
    }

    .detail_1 .img_box {
        padding: 5rem 3rem;
        width: 100%;
    }

    .detail_1 .img_box .btn_box .btn {
        max-width: 90px
    }

    .detail_1 .img_box .btn_box {
        justify-content: center;
        bottom: 13%;
    }


    .detail_1 .txt_box {

        width: 100%;
        text-align: center;
    }

    .detail_1 ul li {
        justify-content: center;
        font-size: 1.125rem;
    }

    .detail_1 ul {
        margin-block: 3.5rem
    }

    .detail .detail_txt h2 {
        margin-block: 0.5rem 1rem;
    }


    .detail .detail_txt h2 {
        font-size: 1.75rem;
        margin-block: 1rem 1.3rem;
    }

    .detail_1 .txt_box {
        padding-block: 7rem;
        padding-inline: 20px;
    }

    .detail_2 {
        padding-inline: 20px;
        margin-block: 10rem;
    }

    .detail_2 .detail_txt,
    .detail_3 .detail_txt {
        margin-bottom: 4rem;
    }

    .detail_3 ul {
        grid-template-columns: 1fr;
    }

    .detail_3 ul li {
        padding: 5rem 10vw;
    }

    .detail_3 ul li h2 {
        font-size: 1.375rem;
    }


    .detail_1 .shop {
        width: 75%;
        margin: 0 auto;
    }


    /* sub3 */
    .sub3 .s_txt h2 {
        max-width: 76%;
    }

    .s3_1 {
        margin-top: 5rem;
        border-radius: 0;
    }

    .sub_txt h2 {
        font-size: 1.75rem;
        margin-top: 1rem;
    }

    .s3_1 .s3_swiper {
        padding-block: 5rem 2rem;
    }

    .s3_1 .s3_swiper p {
        margin-top: 0;
    }

    .s3_2 .sub_txt h2 {
        font-size: 1.5rem;
    }

    .s3_2 ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 20px;
    }

    .s3_2 ul p {
        font-size: 1.125rem;
    }

    .s3_2 ul li {
        width: initial;
    }

    .s3_2 ul li img {
        max-width: 100%;
    }

    .s3_3 p {
        font-size: 1.5rem;
    }

    .s3_3 {
        padding-block: 5rem;
    }

    .s3_4 ul {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .s3_4 ul li {
        gap: 4.5vw;
        padding-inline: 20px;
        align-items: center;
    }

    /* sub4 */



    .s4_1 .box_txt {
        position: initial;
        margin: 0 auto;
        transform: translateX(0);
        margin-block: 10rem 5rem;
    }

    .s4_1 .box_txt ul li {
        width: 120px;
        height: 120px;
        font-size: 1.125rem;
    }

    .s4_1 .box_txt p {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #000;
    }

    .s4_1 img {
        padding-right: 0;
        max-width: 100%;
    }

    .s4_1 .flex01::before {
        left: 0;
    }


    .s4_1 .flex02::before {
        left: 0;
    }

    .s4_1 .flex {
        flex-direction: column;
    }

    .s4_1 .flex01 img {
        padding-top: 0;
    }

    .s4_1 .flex01 .flex_txt {
        padding-top: 2vw;
        padding-inline: 20px;
    }

    .s4_1 .flex02 img {
        padding-top: 0;
    }

    .s4_1 .flex01 {
        padding-bottom: 5rem;
        margin-bottom: 5rem;
    }

    .s4_1 .flex ul {
        padding-top: 2vw;
        padding-inline: 20px;
    }

    .s4_1 .flex02 {
        padding-bottom: 5rem;
    }

    .s4_1 {
        padding-inline: 20px;
        margin-bottom: 10rem;
    }

    /* sub4_2 */
    .sub4_2 .txt_box .mw {
        align-items: start;
        gap: 6vw;
    }

    .sub4_2 .img_box div {
        position: initial;
        width: 100%;
        padding-left: 20px;
        padding-block: 2rem;
        align-items: start;
    }

    .sub4_2 .s4_2_txt p {
        max-width: 95%;
    }

    .sub4_2 .s4_2_txt h2 br {
        display: none;
    }

    .sub4_2 .s4_2_txt h2 {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .sub4_2 .mw {
        flex-direction: column;
    }

    .s4_2_1 img,
    .s4_2_3 img {
        max-width: 100%;
    }

    .s4_2_2 .s4_2_txt {
        position: initial;
        width: 100%;
        left: 0;
        top: 100%;
        transform: translateY(0);
        color: #000;
        padding-block: 4vw;
        padding-inline: 20px;
    }



    .sub4_2 .s4_2_txt p {
        margin-top: 1.5rem;
    }

    .sub4_2 .s4_2_2 .s4_2_txt p:last-of-type {
        margin-top: 0.5rem;
    }

    .s4_2_3 {
        padding-inline: 20px;
    }

    .s4_2_1 {
        margin-block: 8rem;
    }

    .s4_2_3 {
        padding-inline: 20px;
        margin-top: 8rem;
    }

    .s4_2_3 .mw {
        gap: 0;
    }

    .s4_2_3 ul li::after {
        right: 0%;
        font-size: 8rem;
    }

    .s4_2_3 ul li::before {
        width: 100%;
    }

    .s4_2_3 ul li::after {
        right: 20px;
        font-size: 5rem;
    }

    .s4_2_3 ul li {
        padding-left: 20px;
        padding-block: 5rem 3rem;
    }

    .s4_2_4 {
        padding-block: 8rem;
        background-color: #f5f5f5;
    }

    .s4_2_4 h2 {
        font-size: 1.5rem;
    }

    .s4_2_4 img {
        max-width: 100%;
    }

    .s4_2_4 .mw {
        padding-inline: 20px;
    }

    .s4_2_4 .left ul li {
        gap: 6.5vw;
    }

    .s4_2_4 .left ul {
        width: 100%;
    }



    .s4_2_4 .mw {
        gap: 8rem;
    }

    .s4_2_4 .right p br {
        display: none;
    }

    .s4_2_3 ul li p br {
        display: none;
    }

    .s4_2_3 ul li p {
        max-width: 78%;
    }

    .s4_2_4 .right>img {
        margin: 0;
        margin-block: 2.5rem 2rem;
    }

    .s4_2_4 .mw .left,
    .s4_2_4 .mw .right {
        width: 100%;
    }

    .s4_2_4 .left>img {
        width: 100%;
    }

    .s4_2_4 .right img {
        width: 40%;
        margin-right: 1.5rem;
    }

    /* sub5 */
    .s5_1_1 {
        padding-inline: 20px;
        margin-block: 8rem;
    }

    .s5_1_1 ul {
        flex-direction: column;
        gap: 0;
    }

    .s5_1_1 ul li {
        width: 100%;
    }

    .s5_1_1 ul li p {
        min-width: 105px;
    }



    .s5_1_1 ul li.file div {
        width: 100%;
    }

    .s5_1_1 ul li.email select {
        width: 45%;
    }

    .s5_1_1 {
        padding-inline: 20px;
        margin-block: 8rem 0;
        padding-block: 8rem 15rem;
    }

    .s5_1_1 ul li.email select option {
        font-size: 1rem;
    }

    /* sub5_2 */

    .s5_2_1 .iframe_box iframe {
        height: 400px;
        display: block;
    }

    .s5_2_1 .iframe_box .about {
        width: 100%;
        border-radius: 0;
        position: initial;
    }




    /* footer */
    .footer {
        padding-inline: 20px;
        padding-block: 5rem;
    }

    .footer .footer_inner {
        flex-direction: column;
        gap: 4vw;
    }

    .footer .f_center p {
        margin-right: 1rem;
    }

    .footer .f_right {
        text-align: left;
    }

    .footer .gotop {
        top: -7rem;
    }

    .header_wrap .link_depth .shop {
        padding-block: 0.2rem;
    }

    .header_wrap .link_depth details {
        padding-block: 0.2rem;
    }

    .header_wrap .link_depth .lang_depth li {
        padding-block: 0.2rem;
    }
}

@media screen and (max-width: 500px) {


    header {
        padding: 4% 20px;
    }

    .m1 {
        margin-top: 20vw;
    }



    .m1 .m1_swiper .txtbox h3 {
        font-size: 1.375rem;
    }

    .tit p {
        font-size: 0.875rem;
    }

    .tit h3 {
        font-size: 1.25rem;
        margin-block: 0.5rem 0.7rem;
    }

    .tit h5 {
        font-size: 1rem;
    }

    .m2 .tit h3 {
        max-width: 70%;
        word-break: keep-all;
    }

    .m2 .swiper-slide p {
        font-size: 0.875rem;
        word-break: keep-all;
        text-align: center;
        margin: 0 auto;
        margin-top: 0.5rem;
        padding-inline: 0.5rem;
    }

    .m2 .swiper-slide p br {
        display: none;
    }

    .m2 .swiper-slide.slide01 p br {
        display: block;
    }

    /* .m2 .card_wrap .card img {
        max-width: 100%;
    } */

    /* .m2 .card_top ul,
    .m2 .card_bot ul {
        gap: 3rem;
    }

    .m2 .card_wrap .card {
        width: 3%;
    } */

    /* .m2 .card p {
        font-size: 0.875rem;
        margin: 0 auto;
        word-break: keep-all;
        text-align: center;
        margin-top: 0.5rem;
    } */

    .m3 .btn_box {
        padding-right: 7.5rem;
    }

    .m3 .content_wrap .content {
        height: fit-content;
        flex-direction: column;
        gap: 1rem;
    }


    .m3 .btn_box .btn span {
        color: #999;
        font-size: 0.875rem;
    }

    .m3 .btn_box .btn p {
        font-size: 1.125rem;
    }

    .m3 .btn_box .btn {
        padding-block: 1.5rem 4.5rem;
        padding-left: 1.5rem;
    }

    .m3 .tit h3 {
        font-size: 1.25rem;
        margin-block: 0.5rem;
    }

    .m3 .btn_box {
        margin-block: 2rem;
    }

    .m3 .btn_box .btn img {
        max-width: 20%;
        max-height: 31%;
    }

    .m3 {
        padding-inline: 20px;
        padding-block: 7rem;
    }

    .m3::before {
        height: 100%;
    }

    .m3 .content_wrap .content .item .txt_box h2 {
        font-size: 1.125rem;
        word-break: keep-all;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }

    .m3 .content_wrap .content .item .txt_box p {
        font-size: 0.875rem;
    }

    .m3 .txt_box .arr {
        max-width: 60%;
        margin: 0 auto;
    }

    .m3 .content_wrap .content .item .txt_box {
        gap: 3rem;
    }

    .m4 .tit h3 {
        margin-block: 0.5rem 0;
        max-width: 57%;
    }

    .m4 .flex_wrap img {
        max-width: 55%;
        margin: 0 auto;
    }


    .m4 .t_right a {
        aspect-ratio: 1 / 1;
    }



    .m4 .b_right {
        padding-block: 2rem;
        font-size: 0.875rem;
    }

    .m4 .b_right img {
        max-height: 34%;
    }

    .m4 .m4_box {
        grid-template-rows: auto;
    }

    .m4 {
        height: fit-content;
        margin-top: 7rem;
        background: none;
    }

    .m4 .m4_bot .b_left {
        flex-direction: column;
        padding-inline: 20px;
    }

    .m4 .b_left .left02 ul:first-child {
        flex-direction: column;
    }

    .m4 .b_left .left02 ul:first-child li {
        height: 45px;
    }

    .m4 .b_left .left02 {
        flex-basis: initial;
        width: 100%;
    }

    .m4 .b_left .left02 ul li {
        padding: 0.5rem 1rem;
    }

    .m4 .b_left .left01 {
        flex-direction: row;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .m4 .b_left .left01 img {
        max-height: 62%;
    }

    .m4 .t_right a p {
        font-size: 0.875rem;
    }

    .m4 .b_left .left01 img {
        max-height: 100%;
        max-width: 25%;
    }

    .m4 .b_left .left03 {
        flex-basis: initial;
        width: 100%;
        font-size: 0.875rem;
    }

    .m4 .b_left .left02 ul li input::placeholder {
        font-size: 12px;
    }

    .footer .f_center p {
        font-size: 0.75rem;
    }

    .footer .f_right p {
        font-size: 0.75rem;
    }

    .footer .f_right ul {
        flex-wrap: wrap;
        width: 100%;
        justify-content: start;
        gap: 1rem 3rem;
    }

    .footer .footer_inner {
        gap: 0;
    }

    .footer .f_center {
        margin-block: 3rem 2rem;
    }

    .footer .f_right ul li {
        font-size: 0.875rem;
    }

    .footer .f_left span {
        font-size: 12px;
    }

    .footer .f_left p {
        font-size: 1.25rem;
    }

    .footer .f_center div {
        margin-bottom: 0.3rem;
    }

    .footer .gotop img {
        max-width: 70%;
        margin: 0 auto;
    }

    .footer .gotop {
        top: -5rem;
    }

    .footer {
        padding-block: 3.5rem;
    }

    .header_wrap .link_depth .shop {
        padding-inline: 1rem;
        font-size: 13px;
        padding-block: 0.25rem;
    }

    .header_wrap .link_depth details {
        font-size: 13px;
        padding-block: 0.2rem;
        min-width: 65px;
        padding-inline: initial;
    }

    .header_wrap .link_depth .lang_depth li {
        min-width: 65px;
        padding-block: 0.2rem;
    }


    .header_wrap .link_depth {
        gap: 0.5rem;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1>a {
        font-size: 1.25rem;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1 ul li a {
        font-size: 1rem;
    }

    .gnb .inner {
        padding-top: 5rem;
    }

    .gnb .inner .menu_wrap ul .gnb_depth1 ul li {
        padding: 0.7rem;
    }

    .gnb .inner .menu_wrap>ul {
        gap: 1.5rem;
    }

    .s_txt .txt_l>span {
        font-size: 0.875rem;
        margin-bottom: 0.7rem;
    }

    .s_txt h2 {
        font-size: 1.25rem;
    }

    .s_txt .txt_r p {
        font-size: 1.125rem;
    }

    .sub2 .s_txt .txt_r p {
        font-size: 1rem;
    }

    .s_txt .txt_r {
        gap: 2rem;
    }

    .s_txt {
        margin-bottom: 3rem;
        gap: 4rem;
    }

    .sub .txt_box>img {
        min-height: 150px;
    }

    .s1_1_2 .flex_l h5 {
        font-size: 1rem;
        max-width: 86%;
    }

    .s1_1_2 .flex_l p {
        font-size: 0.875rem;
    }

    .s1_1_2 .flex01 .flex_l p {
        max-width: 94%;
        word-break: keep-all;
    }

    .sub {
        padding-top: calc(var(--header) + 0vw);
    }

    .s1_1_2 {
        padding-top: 5rem;
    }

    .s1_1_2 .flex02 {
        margin-top: 5rem;
    }

    .s1_1_2 .flex_l p {
        word-break: keep-all;
    }

    .s1_1_2 .flex02 img {
        max-width: 100%;
    }

    .s1_1_2 .flex02 .flex_r {
        flex-direction: column;
        gap: 1rem;
    }

    .s1_1_3 {
        margin-block: 5rem;
        height: 30vh;
    }

    .s1_1_3 p {
        font-size: 1.125rem;
    }

    .s1_1_4 p {
        font-size: 0.875rem;
        max-width: 93%;
    }

    .s1_1_4 p:first-child {
        margin-bottom: 1rem;
    }

    .s1_1_5 {
        margin-top: 5rem;
        padding-block: 5rem;
    }

    .s1_1_5 .top span {
        font-size: 0.875rem;
    }

    .s1_1_5 .top h2 {
        font-size: 1rem;
        max-width: 73%;
        margin: 0 auto;
        margin-block: 0.5rem 1.5rem;
    }

    .s1_1_5 ul .txt span {
        font-size: 1rem;
    }

    .s1_1_5 ul .txt p {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .s1_1_5 ul .txt {
        margin-top: 1rem;
    }

    /* sub2 */
    .sub2 .s_txt h2 {
        max-width: 67%;
        word-break: keep-all;
    }

    .sub2 .s_txt h2 span {
        line-height: 1.3;
    }

    .sub2 .s_txt .txt_r {
        /* width: 70%; */
        gap: 1rem 9vw;
    }

    .s2_1 h2 {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .s2_1 {
        padding-block: 5rem;
    }

    .s2_1 ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .s2_1 ul li div img {
        max-width: 60%;
    }

    .s2_1 ul li div {
        aspect-ratio: 1 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .s2_1 ul li p {
        font-size: 0.875rem;
    }

    .s2_1 ul {
        gap: 4.5rem;
    }

    /* 상세페이지 */
    .detail .arr_box a img {
        max-width: 60%;
    }

    .detail .arr_box .arr {
        bottom: -9%;
    }

    .detail_1 .img_box {
        padding: 5rem 20px;
    }

    .detail_1 .img_box .btn_box {
        bottom: 18%;
    }

    .detail_1 .txt_box {
        padding-block: 5rem;
    }

    .detail .detail_txt>span {
        font-size: 0.875rem;
    }

    .detail .detail_txt h2 {
        font-size: 1.125rem;
        margin-block: 0.5rem 0.7rem;
    }

    .detail .detail_txt p {
        font-size: 1rem;
    }

    .detail_1 ul li {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .detail_1 ul {
        margin-block: 2rem;
    }

    .detail_1 ul li span {
        padding: 0.5vw;
    }

    .detail_1 .shop p {
        font-size: 0.875rem;
    }

    .detail_1 .shop img {
        max-width: 12px;
    }

    .detail_1 .shop {
        padding-block: 1rem;
    }

    .detail .detail_txt p {
        font-size: 0.875rem;
        max-width: 80%;
        margin: 0 auto;
    }

    .detail_2 .detail_txt,
    .detail_3 .detail_txt {
        margin-bottom: 2rem;
    }

    .detail_2 {
        margin-block: 7rem;
    }

    .detail_3 ul li h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .detail_3 ul li p {
        font-size: 0.875rem;
    }

    .detail_3 ul li {
        padding: 3rem 10vw;
    }

    .detail_3 {
        padding-bottom: 10rem;
    }

    /* sub3 */
    .sub3 .s_txt h2 {
        max-width: 87%;
        word-break: keep-all;
    }

    .sub_txt span {
        font-size: 0.875rem;
    }

    .sub_txt h2 {
        font-size: 1.125rem;
        margin-top: 0.5rem;
    }

    .s3_1 .s3_swiper p {
        font-size: 0.875rem;
        margin-top: -1rem;
    }

    .s3_1 .s3_swiper {
        padding-block: 4rem rem;
    }

    .s3_1 {
        padding-block: 4rem;
    }

    .s3_2 {
        padding-block: 8rem;
    }

    .s3_2 .sub_txt h2 {
        font-size: 1rem;
    }

    .s3_2 ul p {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .s3_2 ul {
        gap: 4rem 2rem;
        margin-top: 2.5rem;
    }

    .s3_3 p {
        /* font-size: 0.875rem; */
        font-size: 1rem;
    }

    .s3_3 {
        padding-block: 3.5rem;
    }

    .s3_4 ul li p {
        font-size: 0.875rem;
        margin: 0 auto;
        margin-top: 0.5rem;
        word-break: keep-all;
        max-width: 90%;
    }

    .s3_4 ul li p br {
        display: none;
    }

    .s3_4 ul li span {
        font-size: 1rem;
    }

    .s3_4 ul li {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .s3_4 ul li .img_box img {
        max-width: 45%;
        margin: 0 auto;
    }

    .s3_4 ul {
        gap: 2rem;
    }

    .s3_4 {
        margin-block: 8rem 10rem;
    }


    /* sub4 */
    .sub4_1 .s_txt h2 {
        max-width: 95%;
        word-break: keep-all;
    }

    .s4_1 .box_txt p {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: #000;
    }

    .s4_1 .box_txt ul {
        flex-direction: column;
    }

    .s4_1 .box_txt ul>img {
        transform: rotate(90deg);
        max-height: 15px;
    }

    .s4_1 .box_txt ul li {
        width: 100px;
        height: 100px;
        font-size: 0.875rem;
    }

    .s4_1 .flex .flex_txt h2 {
        font-size: 1.125rem;
        max-width: 93%;
    }

    .s4_1 .flex01 .flex_txt h2 {
        font-size: 1rem;
    }

    .s4_1 .flex .flex_txt p {
        font-size: 0.875rem;
        max-width: 93%;
        word-break: keep-all;
    }

    .s4_1 .flex .flex_txt p br {
        display: none;
    }

    .s4_1 .flex01 .flex_txt p:nth-of-type(1) {
        margin-block: 1rem 0.5rem;
    }

    .s4_1 .flex01 {
        padding-bottom: 2rem;
    }

    .s4_1 .flex02 .flex_txt h2 {
        margin-block: 0.5rem;
    }

    .s4_1 .flex ul li span {
        font-size: 1.25rem;
    }

    .s4_1 .flex ul {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .s4_1 .box_txt {
        margin-block: 5rem;
    }


    /* sub4_2 */
    .sub4_2 .s4_2_txt h2 {
        font-size: 1.125rem;
        max-width: 90%;
        line-height: 1.3;
    }

    .sub4_2 .s4_2_txt p {
        margin-top: 1rem;
        font-size: 0.875rem;
    }

    .sub4_2 .s4_2_txt p {
        max-width: 90%;
    }

    .s4_2_1 {
        margin-block: 5rem;
    }

    .s4_2_2 .s4_2_txt h2 {
        font-size: 1rem;
    }

    .s4_2_2 .s4_2_txt p:first-of-type {
        max-width: 75%;
    }


    .s4_2_3 {
        margin-top: 5rem;
    }

    .s4_2_3 ul li p {
        font-size: 0.875rem;
    }

    .s4_2_3 ul li {
        padding-block: 3rem 2rem;
    }

    .s4_2_3 ul li::after {
        right: 0;
        font-size: 3rem;
        bottom: -7%;
    }

    .s4_2_4 h2 {
        font-size: 1.125rem;
    }

    .s4_2_4 p {
        font-size: 0.875rem;
        min-width: 45px;
    }

    .s4_2_4 .left ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem 0.5rem;
    }

    .s4_2_4 .left ul li {
        gap: 3vw;
        justify-content: center;
    }

    .s4_2_4 .left ul li:last-of-type {
        justify-content: start;
        padding-left: 2vw;
    }

    .s4_2_4 .mw .right p:first-of-type {
        font-size: 1rem;
    }

    .s4_2_4 p {
        font-size: 0.875rem;
        min-width: 45px;
    }

    .sub4_2 .s_txt h2 {
        max-width: 95%;
        line-height: 1.4;
        word-break: keep-all;
    }

    .s4_2_4 .right>img {
        margin-block: 2rem;
    }

    .s4_2_4 .right p:last-of-type {
        line-height: 1.5;
        max-width: 94%;
    }

    .s4_2_4 .mw {
        gap: 5rem;
    }

    .s4_2_4 {
        padding-block: 5rem 8rem;
    }


    /* sub5 */
    .sub5_1 .s_txt h2 {
        max-width: 80%;
        word-break: keep-all;
    }

    .s5_1_1 {
        margin-block: 5rem 0;
        padding-block: 5rem 10rem;
    }

    .s5_1_1 ul li p {
        min-width: 90px;
        font-size: 0.875rem;
    }

    .s5_1_1 ul li input {
        padding: 1rem;
        margin-top: 1rem;
    }

    .s5_1_1 ul li input::placeholder {
        font-size: 12px;
    }

    .s5_1_1 ul li {
        width: 100%;
        flex-direction: column;
        align-items: start;
        margin-bottom: 2.5rem;
    }

    .s5_1_1 ul li.email input {
        margin-right: 0.5rem;
    }

    .s5_1_1 ul li.email select {
        padding-block: 1rem;
        color: #666;
        font-size: 12px;
    }

    .s5_1_1 ul li.reference p br {
        display: none;
    }

    .s5_1_1 input[type='radio'],
    .s5_1_1 input[type='checkbox'] {
        margin-top: 0;
        width: 22px;
        height: 22px;
    }

    .s5_1_1 ul li.reference .chk_box {
        margin-top: 1rem;
    }

    .s5_1_1 ul li.reference .chk_box div label {
        font-size: 0.875rem;
    }

    .s5_1_1 ul li.content textarea {
        margin-top: 1rem;
        padding: 1rem;
    }

    .s5_1_1 ul li.content textarea::placeholder {
        font-size: 12px;
    }

    .s5_1_1 ul li.content>p {
        padding-top: 0;
    }

    .s5_1_1 ul li.file>p {
        padding-top: 0;
    }

    .s5_1_1 ul li.file div .plus {
        top: 29%;
        font-size: 2rem;
    }

    .s5_1_1 ul li.file div .upload_label {
        top: 1rem;
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }

    .s5_1_1 ul li.file .file_txt p {
        font-size: 0.875rem;
        max-width: 90%;
        line-height: 1.5;
    }

    .s5_1_1 .info_box .chk_wrap label {
        font-size: 0.875rem;
    }

    .s5_1_1 .info_box .chk_wrap .toggle_btn img {
        max-width: 80%;
        margin: 0 auto;
    }

    .s5_1_1 .info_box .txt_wrap .txt_box p {
        font-size: 12px;
        max-width: 95%;
    }

    /* sub5_2 */
    .s5_2_1 .iframe_box iframe {
        height: 250px;
    }

    .s5_2_1 .iframe_box .about {
        flex-direction: column;
        padding: 3rem 20px;
        gap: 3rem;
    }

    .s5_2_1 .iframe_box .about .left h2 {
        font-size: 1.25rem;
    }

    .s5_2_1 .iframe_box .about .right div {
        padding-inline: 0;
        flex-direction: column;
        gap: 0.7rem;
    }

    .s5_2_1 .iframe_box .about .right h2 {
        font-size: 1.125rem;
    }

    .s5_2_1 .iframe_box .about .right p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .s5_2_1 .iframe_box .about .right div:first-of-type p br {
        display: none;
    }

    .m1 .m1_swiper .swiper-slide .imgbox img {
        filter: brightness(0.8);
    }

    .m1 .m1_swiper .swiper-slide .txtbox {
        bottom: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    .m1 .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        display: none;
    }

    .m2 .card_wrap {
        animation: slideLeft 150s linear infinite;
    }

    .c_inner .c_board_name>div p:nth-child(2) {
        width: 20%;
    }

    .bo_tit_ul2 li:nth-child(2) {
        width: 20%;
    }

    #bo_list .td_num2 {
        width: 75px;
        text-align: center;
    }
}

@media screen and (max-width: 391px) {
    .m4 .tit h3 {
        max-width: 60%;
    }

    .s1_1_2 .flex_l h5 {
        max-width: 83%;
    }

    .s1_1_2 .flex01 .flex_l p {
        max-width: 96%;
    }

    .detail .detail_txt p {
        max-width: 87%;
    }

    .s4_1 .flex .flex_txt h2 {
        max-width: 85%;
    }

    .s4_1 .flex02 .flex_txt p {
        max-width: 88%;
    }

    .sub3 .s_txt h2 {
        max-width: 78%;
    }
}

@media screen and (max-width: 361px) {
    .s1_1_2 .flex_l h5 {
        max-width: 92%;
    }

    .s1_1_4 p {
        max-width: 93%;
    }

    .s1_1_5 .top h2 {
        max-width: 70%;
    }

    .detail .detail_txt p {
        max-width: 82%;
    }

    .s4_1 .flex .flex_txt h2 {
        max-width: 94%;
    }

    .s4_2_2 .s4_2_txt p:first-of-type {
        max-width: 83%;
    }

    .s4_2_3 ul li p {
        max-width: 76%;
    }

    .s4_2_4 .right p:last-of-type {
        max-width: 84%;
    }
}

@media screen and (max-width: 321px) {
    .m2 {
        height: 160dvh;
    }

    .m3 .tit h3 {
        max-width: 79%;
    }

    .m4 .tit h3 {
        max-width: 71%;
    }

    .s1_1_2 .flex_l h5 {
        max-width: 87%;
    }

    .s4_1 .flex .flex_txt h2 {
        max-width: 89%;
        word-break: keep-all;
    }
}