@charset "UTF-8";

@import url("reset.css");

@font-face {
    font-family: "Pretendard";
    src: url("../font/pre/Pretendard-SemiBold.eot");
    src:
        url("../font/pre/Pretendard-SemiBold.eot?#iefix") format("embedded-opentype"),
        url("../font/pre/Pretendard-SemiBold.woff2") format("woff2"),
        url("../font/pre/Pretendard-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../font/pre/Pretendard-Medium.eot");
    src:
        url("../font/pre/Pretendard-Medium.eot?#iefix") format("embedded-opentype"),
        url("../font/pre/Pretendard-Medium.woff2") format("woff2"),
        url("../font/pre/Pretendard-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../font/pre/Pretendard-Bold.eot");
    src:
        url("../font/pre/Pretendard-Bold.eot?#iefix") format("embedded-opentype"),
        url("../font/pre/Pretendard-Bold.woff2") format("woff2"),
        url("../font/pre/Pretendard-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../font/pre/Pretendard-Regular.eot");
    src:
        url("../font/pre/Pretendard-Regular.eot?#iefix") format("embedded-opentype"),
        url("../font/pre/Pretendard-Regular.woff2") format("woff2"),
        url("../font/pre/Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
html,
body,
header,
button,
a {
    font-family: "Pretendard";
}
body {
    overflow-x: hidden;
    font-weight: 500;
}
/* 모바일 메뉴 열렸을 때 body 스크롤 차단 */
body.no-scroll {
    overflow: hidden;
    touch-action: none;
}

.plus {
    display: none;
}
.header {
    width: 100%;
    background-color: #e60012;
}
.header .inner {
    max-width: 1280px;
    width: calc(100% - 30px);
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.header .inner .pc .gnb {
    display: flex;
    /* column-gap: 40px; */
    position: relative;
}
.header .inner .pc .gnb > li {
    padding: 0 28px;
    position: relative;
}
.header .inner .pc .gnb > li .depth01 {
    font-weight: 600;
    line-height: 85px;
    padding: 10px 0;
    font-size: 17px;
    color: #fff;
}
.header .inner .pc .gnb > li .depth02 {
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 25px 10px;
    display: none;
    flex-direction: column;
    row-gap: 20px;
    background-color: rgba(255, 255, 255, 0.9);
}
.header .inner .pc .gnb > li:hover .depth02 {
    display: flex;
}
.header .inner .util {
    display: flex;
    column-gap: 35px;
}
.header .inner .util button {
    cursor: pointer;
    width: 32px;
    background-color: transparent;
    border: none;
}
.header .inner .pc .gnb > li .depth02 li {
    font-weight: 500;
    line-height: 1.3;
    transition: 0.3s;
    text-align: center;
}
.header .inner .pc .gnb > li .depth02 li:hover {
    font-weight: bold;
    color: #e60012;
}
/* header mob 추가 20260107 */
.header .mob.nav {
    width: 40vw;
    min-width: 280px;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

/* 활성화 */
.header .mob.nav.on {
    right: 0;
}

/* 메뉴 구조 */
.header .mob.nav > ul {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.header .mob.nav > ul > li {
    padding: 15px 35px;
    border-bottom: 1px solid #ccc;
}
.header .mob.nav > ul > li.on > a {
    color: #cf0010;
}
.header .mob.nav > ul > li > a {
    color: #333;
    font-weight: 600;
    font-size: 20px;
    display: block;
    cursor: pointer;
}

/* 아코디언 서브메뉴 */
.header .mob.nav > ul > li > ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.header .mob.nav > ul > li.on > ul {
    max-height: 500px;
    margin-top: 15px;
}

.header .mob.nav > ul > li > ul > li {
    padding: 10px 0;
}
.header .mob.nav > ul > li > ul > li:hover > a {
    color: #cf0010;
}
.header .mob.nav > ul > li > ul > li > a {
    font-size: 16px;
    color: #333;
    /* border-bottom: 1px solid #ccc; */
}

/* 닫기 버튼 */
.header .mob.nav .close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    color: #cf0010;
}
.header .mob.nav .close img {
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
}
/* 배경 */
.bg_black {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.bg_black.on {
    opacity: 1;
    visibility: visible;
}

.main_visual {
    width: 100%;
    /* height: 800px; */
    background-color: #e60012;
}
.main_visual .main .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 800px;
}
.main_visual .main .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section01 {
    width: 100%;
    background-color: #0064c8;
}
.section01 .inner {
    max-width: 1280px;
    width: calc(100% - 30px);
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
}
/* .section01 .inner .item {
    height: 60vh;
    position: relative;
    color: #fff;
} */
/* .section01 .inner .item.left {
    width: 49%;
    display: flex;
    background: url("../img/box01.png") center center no-repeat;
} */
.section01 .box01,
.section01 .box02 {
    width: 100%;
    position: relative;
    bottom: -8px;
    z-index: 0;
}
.section01 .inner > div {
    width: calc(100% / 2 - 20px);
}
.section01 .inner .item.left {
    color: #fff;
    height: 525px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.section01 .inner .item.left .text {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
}
.section01 .inner .item.left .text h3 {
    cursor: default;
    font-weight: 600;
    font-size: 45px;
    text-align: end;
}
.section01 .inner .item.left .text button {
    font-weight: 500;
    cursor: pointer;
    background: url("../img/left_btn.png") center center no-repeat;
    background-color: transparent;
    background-size: contain;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.section01 .inner .item.left .text button img {
    margin-left: 40px;
}
.section01 .inner .item.left span {
    cursor: default;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 15px;
    position: relative;
    left: 110px;
}
.section01 .inner .item.right {
    color: #fff;
    height: 525px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.section01 .inner .item.right span {
    cursor: default;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 15px;
    position: relative;
    right: 110px;
}
.section01 .inner .item.right .text h3 {
    cursor: default;
    font-weight: bold;
    font-size: 45px;
    text-align: start;
}
.section01 .inner .item.right .text {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 15px;
}
.section01 .inner .item.right .text button {
    font-weight: 400;
    cursor: pointer;
    background: url("../img/right_btn.png") center center no-repeat;
    background-color: transparent;
    background-size: contain;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
/* 공통 묶기 20260107 */
#main .section01 .inner .item .text {
    z-index: 1;
}
#main .section01 .inner .item .text button {
    width: 230px;
    height: 60px;
    color: #fff;
    font-size: 20px;
}

.section01 .inner .item.right .text button img {
    margin-left: 40px;
}

.section01 .inner .item.left .text button:hover,
.section01 .inner .item.right .text button:hover {
    transform: scale(0.94);
}

.section02,
.section04 {
    width: 100%;
}
.section02 .inner,
.section04 .inner {
    max-width: 1440px;
    width: calc(100% - 30px);
    margin: 100px auto;
    position: relative;
}
.section02 .inner h3,
.section04 .inner h3,
.section06 .inner h3 {
    cursor: default;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.section02 .inner > p,
.section04 .inner > p,
.section06 .inner > p {
    cursor: default;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    margin-bottom: 35px;
}

.section02 .inner .section02_slide .swiper-slide,
.section04 .inner .section04_slide .swiper-slide,
.section06 .inner .section06_slide .swiper-slide {
    padding: 20px 20px 20px 0;
}
.section02 .inner .section02_slide .swiper-slide .slide_wrap,
.section04 .inner .section04_slide .swiper-slide .slide_wrap,
.section06 .inner .section06_slide .swiper-slide .slide_wrap {
    width: 300px;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}
.section02 .inner .section02_slide .swiper-slide .slide_wrap > img,
.section04 .inner .section04_slide .swiper-slide .slide_wrap > img,
.section06 .inner .section06_slide .swiper-slide .slide_wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.section02 .inner .section02_slide .swiper-slide .slide_wrap:hover > img,
.section04 .inner .section04_slide .swiper-slide .slide_wrap:hover > img {
    transform: scale(1.03);
}
.section02 .inner .section02_slide .swiper-slide .slide_wrap:hover,
.section04 .inner .section04_slide .swiper-slide .slide_wrap:hover {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.6);
}
.section02 .inner .section02_slide .swiper-slide .item,
.section04 .inner .section04_slide .swiper-slide .item {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(51, 51, 51, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(15%);
}
.section02 .inner .section02_slide .swiper-slide .item:hover,
.section04 .inner .section04_slide .swiper-slide .item:hover {
    opacity: 1;
    transform: translateY(0);
}
.section02 .inner .section02_slide .swiper-slide .item .top,
.section04 .inner .section04_slide .swiper-slide .item .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    margin-top: 230px;
}
.section02 .inner .section02_slide .swiper-slide .item .top .left,
.section04 .inner .section04_slide .swiper-slide .item .top .left {
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}
.section02 .inner .section02_slide .swiper-slide .item .top .left strong,
.section04 .inner .section04_slide .swiper-slide .item .top .left strong {
    cursor: default;
    font-weight: 400;
    font-weight: normal;
}
.section02 .inner .section02_slide .swiper-slide .item .top .left span,
.section04 .inner .section04_slide .swiper-slide .item .top .left span {
    cursor: default;
    font-size: 18px;
    font-weight: 500;
}
.section02 .inner .section02_slide .swiper-slide .item button,
.section04 .inner .section04_slide .swiper-slide .item button {
    cursor: pointer;
    margin: 20px 25px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #fff;
    width: 245px;
    height: 55px;
    border-radius: 15px;
    background-color: #e60012;
    border: none;
    transition: 0.4s;
}
.section02 .inner .section02_slide .swiper-slide .item button:hover,
.section04 .inner .section04_slide .swiper-slide .item button:hover {
    transform: scale(0.95);
}

.section03 {
    width: 100%;
    height: 800px;
    margin: 120px auto;
    position: relative;
}
.section03 .sec03_main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section03 .sec03_logo {
    position: absolute;
    top: 19%;
    left: 15%;
}
.section03 .button {
    position: absolute;
    z-index: 2;
    top: 46%;
    left: 21%;
    display: flex;
    column-gap: 30px;
}
.section03 .button button,
.section05 .button button {
    font-weight: 500;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 40px;
    border: none;
    transition: 0.4s;
    cursor: pointer;
}
.section03 .button button:hover,
.section05 .button button:hover {
    transform: scale(0.95);
}
.section03 .button button:first-child {
    background-color: #e60012;
    color: #fff;
}
.section03 .button button:last-child {
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #e60012;
    color: #e60012;
}
.section03 .button button:last-child:hover {
    background-color: #e60012;
    color: #fff;
}

.section05 {
    width: 100%;
    background-color: #e60012;
    display: grid;
    position: relative;
}
.section05 .inner {
    max-width: 1280px;
    width: calc(100% - 30px);
    margin: 120px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section05 .inner .text {
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}
.section05 .inner .text h3 {
    cursor: default;
    font-weight: bold;
    font-size: 45px;
    margin-bottom: 15px;
    color: #fafafa;
}
.section05 .inner .text p {
    cursor: default;
    font-weight: 400;
    font-size: 24px;
    color: #eee;
}
.section05 .inner .text .button {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    margin-top: 40px;
}
.section05 .button button:first-child {
    background-color: #cf0010;
    color: #fff;
}
.section05 .button button:last-child {
    background-color: #fafafa;
}
.section05 .inner .small {
    position: absolute;
    bottom: 5%;
    left: 16%;
}
.section06 {
    width: 100%;
}
.section06 .inner {
    max-width: 1280px;
    width: calc(100% - 30px);
    margin: 120px auto;
    position: relative;
}
.section06 .inner > a {
    color: #999;
    font-weight: 400;
    font-size: 15px;
    position: absolute;
    right: 5px;
    top: 50px;
}
.section06 .inner > a img {
    width: 7px;
    margin-left: 6px;
}
.section06 .inner .section06_slide .swiper-slide .slide_wrap .top {
    cursor: default;
    width: 90%;
    color: #fff;
    font-weight: 600;
    /* text-align: center; */
    font-size: 20px;
    line-height: 1.3;
    word-break: keep-all;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.section06 .inner .section06_slide .swiper-slide .slide_wrap .btm {
    cursor: default;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 20px;
}
.section06 .inner .section06_slide .swiper-slide:nth-child(4) .slide_wrap .top,
.section06 .inner .section06_slide .swiper-slide:nth-child(5) .slide_wrap .top {
    color: #000;
}
.footer {
    width: 100%;
}
.footer .bg {
    width: 100%;
    height: 80px;
    background-color: #e60012;
    margin-top: 120px;
}
.footer .bg .line {
    max-width: 1280px;
    width: calc(100% - 30px);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.footer .bg .line .sns {
    display: flex;
    column-gap: 40px;
}
.footer .bg .line .sns a img {
    width: 35px;
}
.footer .inner {
    max-width: 1280px;
    width: calc(100% - 30px);
    margin: 0 auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}
.footer .inner .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.footer .inner .top .item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 23px;
    cursor: default;
}
.footer .inner .top .item p {
    font-weight: 400;
    margin-bottom: 15px;
}
.footer .inner .btm {
    display: flex;
    flex-direction: column;
}
.footer .inner .btm p {
    font-weight: 400;
    margin-bottom: 7px;
}
.footer .inner .btm p span {
    margin-right: 15px;
}
.footer .inner .btm .call span {
    font-weight: 400;
    color: #999;
}
.footer .inner .btm .call {
    display: flex;
    column-gap: 35px;
    margin-top: 10px;
}
.footer .inner .btm .tag {
    font-weight: 600;
    margin-bottom: 10px;
}
.footer .inner .btm .tag a {
    margin-right: 15px;
}

/* 반응형 20260107 */
@media screen and (max-width: 1520px) {
    .section05 .inner .small {
        left: 10%;
    }
    .plus {
        display: block;
    }
    .normal {
        display: none;
    }
}
@media screen and (max-width: 1280px) {
    .section03 .button {
        left: 25%;
    }
    #main .section01 .inner .item .text button {
        width: auto;
        height: auto;
        padding: 12px 25px;
    }
    .section01 .inner .item.right .text button img,
    .section01 .inner .item.left .text button img {
        margin-left: 25px;
    }
}
@media screen and (max-width: 1200px) {
    .section01 .inner .item.right .text button,
    .section01 .inner .item.left .text button {
        width: 180px;
        font-size: 18px;
    }
    .section01 .inner .item.right .text button img,
    .section01 .inner .item.left .text button img {
        margin-left: 15px;
    }
    #main .section01 .inner .item .text {
        top: 15px;
    }
    .section05 .inner .big {
        width: 80%;
    }
    .section05 .inner .small {
        width: 30%;
    }
    .header .inner .pc .gnb > li {
        padding: 0 22px;
    }
}
@media screen and (max-width: 1090px) {
    .section01 .inner .item.right .text button,
    .section01 .inner .item.left .text button {
        width: 150px;
    }
    .section01 .inner .item.right .text button,
    .section01 .inner .item.left .text button {
        background: none;
        background-color: #e60012;
        border-radius: 40px;
        padding: 12px 24px;
        height: 100%;
    }
    .section01 .inner .item.right .text button img,
    .section01 .inner .item.left .text button img {
        display: none;
    }
    /* .section01 .inner .item.right .text {
        right: 40px;
        row-gap: 25px;
    }
    .section01 .inner .item.left .text {
        row-gap: 25px;
        left: 30px;
    } */
    #main .section01 .inner .item .text {
        top: 0;
    }
    .section01 .box01,
    .section01 .box02 {
        bottom: 0;
    }
}
@media all and (max-width: 1024px) {
    .header {
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
    }
    .header .inner .pc .gnb {
        display: none;
    }
    .main_visual .main .swiper-wrapper .swiper-slide {
        height: auto;
    }
    .main_visual {
        height: 100vh;
        margin-top: 35px;
    }
    .swiper.main {
        height: 100%;
    }
    .section01 .inner .item.right .text button,
    .section01 .inner .item.left .text button {
        padding: 9px 5px;
    }
    .section02 .inner .section02_slide .swiper-slide .slide_wrap,
    .section04 .inner .section04_slide .swiper-slide .slide_wrap,
    .section06 .inner .section06_slide .swiper-slide .slide_wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1.37;
    }
    .section02 .inner .section02_slide .swiper-slide .item,
    .section04 .inner .section04_slide .swiper-slide .item {
        display: flex;
        flex-direction: column;
    }
    .section02 .inner .section02_slide .swiper-slide .item .top,
    .section04 .inner .section04_slide .swiper-slide .item .top {
        margin-top: auto;
    }
    .section02 .inner .section02_slide .swiper-slide .item button,
    .section04 .inner .section04_slide .swiper-slide .item button {
        width: 100%;
        margin: 0;
        margin-top: 20px;
        border-radius: 0;
    }
}
@media all and (max-width: 960px) {
    .section01 .inner {
        flex-direction: column;
        row-gap: 120px;
    }
    .section01 .inner .item.left,
    .section01 .inner .item.right {
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }
    #main .section01 .inner .item .text {
        width: 320px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        backdrop-filter: blur(2px);
        border-radius: 50%;
        padding: 45px;
        aspect-ratio: 1/1;
        background-color: #6666669e;
        align-items: center;
        justify-content: center;
    }
    #main .section01 .inner .item .text button {
        padding: 9px 25px;
        font-size: 18px;
    }
    #main .section01 .inner .item span,
    .section01 .inner .item span {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 1px;
        left: unset;
        right: unset;
    }
    .section01 .box01,
    .section01 .box02 {
        width: 95%;
        height: auto;
        aspect-ratio: 1/0.5;
        object-fit: contain;
    }
    .section01 .inner .item.left .text,
    .section01 .inner .item.right .text {
        top: 35px;
    }
    .section01 .inner .item.right .text button,
    .section01 .inner .item.left .text button {
        width: 100%;
    }
    .section03 .button {
        left: 50%;
        transform: translateX(-50%);
        top: unset;
        bottom: 220px;
    }
    .section03 .button button,
    .section05 .button button {
        font-size: 16px;
        padding: 9px 24px;
    }
    .section03 .sec03_logo {
        width: 80%;
        top: 60px;
        left: 90px;
    }
    .section03 {
        height: 500px;
    }
    .section03 .button {
        bottom: 110px;
    }
}
@media all and (max-width: 750px) {
    .section01 .box01,
    .section01 .box02 {
        aspect-ratio: unset;
        width: 100%;
    }
    #main .section01 .inner .item .text {
        row-gap: 0;
    }
    #main .section01 .inner .item .text h3 {
        font-size: 40px;
        margin: 5px 0 15px;
    }
    .section02 .inner h3,
    .section04 .inner h3,
    .section06 .inner h3 {
        font-size: 28px;
    }
    .section05 .inner .big {
        width: 85%;
    }
    .section05 .inner .small {
        left: 185px;
        bottom: 30px;
    }
    .section03 .button {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .header .inner .util button {
        width: 25px;
        height: auto;
        aspect-ratio: 1/1;
    }
    .section05 .inner .text h3 {
        font-size: 32px;
    }
    .section05 .inner .text p {
        font-size: 18px;
    }
    .section05 .inner .text {
        width: 100%;
    }
    .section05 .inner .text .button {
        width: 100%;
        margin-top: 30px;
        column-gap: 25px;
    }
    .section05 .inner .text {
        margin-bottom: 60px;
    }
    .section05 .inner {
        margin: 60px auto;
    }
    .section02 .inner .section02_slide .swiper-slide .item .top img,
    .section04 .inner .section04_slide .swiper-slide .item .top img {
        width: 35px;
    }
}
@media all and (max-width: 650px) {
    .footer .inner .top {
        flex-wrap: wrap;
        gap: 25px 30px;
    }
    .footer .inner .top > div {
        width: calc(100% / 2 - 15px);
    }
    .footer .inner .btm .call {
        flex-direction: column;
    }
    .footer .bg .line .sns a img {
        width: 28px;
    }
    .section06 .inner .section06_slide .swiper-slide .slide_wrap .top {
        font-size: 15px;
    }
    .section02 .inner .section02_slide .swiper-slide .item button,
    .section04 .inner .section04_slide .swiper-slide .item button {
        font-size: 16px;
    }
    .section02 .inner .section02_slide .swiper-slide,
    .section04 .inner .section04_slide .swiper-slide,
    .section06 .inner .section06_slide .swiper-slide {
        padding: 10px;
    }
    .section02 .inner .section02_slide .swiper-slide .slide_wrap,
    .section04 .inner .section04_slide .swiper-slide .slide_wrap,
    .section06 .inner .section06_slide .swiper-slide .slide_wrap {
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    }
    .section02 .inner,
    .section04 .inner,
    .section03,
    .section06 .inner {
        margin: 60px auto;
    }
    .section03 .sec03_logo {
        width: 90%;
        left: 30px;
        top: 60px;
    }
}
@media all and (max-width: 400px) {
    .footer {
        font-size: 15px;
    }
    .footer .bg {
        height: 60px;
        margin-top: 0;
    }
    .footer .inner {
        row-gap: 30px;
    }
    .footer .inner .top {
        margin-top: 20px;
    }
    .footer .inner .btm p {
        display: flex;
        flex-direction: column;
        row-gap: 5px;
    }
    .footer .bg .line .sns {
        display: none;
    }
    .main_visual {
        height: auto;
        aspect-ratio: 1/1.4;
        margin-top: 80px;
    }
    #main .section01 .inner .item .text {
        width: 280px;
        backdrop-filter: blur(1px);
    }
    #main .section01 .inner .item .text h3 {
        font-size: 32px;
    }
    #main .section01 .inner .item .text button {
        font-size: 15px;
    }
    .header .inner .util button:nth-child(2),
    .header .inner .util button:nth-child(3) {
        display: none;
    }
    .section03 .button {
        flex-direction: column;
        row-gap: 12px;
    }
    .section03 .button button {
        width: calc(100% - 30px);
    }
    .section05 .button button {
        width: calc(100% / 2);
    }
}
