@charset "UTF-08";

@font-face {
    font-family: 'medium';
    src: url('../폰트/프리텐다드/Pretendard-Medium.eot');
    src: url('../폰트/프리텐다드/Pretendard-Medium.eot?#iefix') format('embedded-opentype'),
        url('../폰트/프리텐다드/Pretendard-Medium.woff2') format('woff2'),
        url('../폰트/프리텐다드/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'regular';
    src: url('../폰트/프리텐다드/Pretendard-Regular.eot');
    src: url('../폰트/프리텐다드/Pretendard-Regular.eot?#iefix') format('embedded-opentype'),
        url('../폰트/프리텐다드/Pretendard-Regular.woff2') format('woff2'),
        url('../폰트/프리텐다드/Pretendard-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'semibold';
    src: url('../폰트/프리텐다드/Pretendard-SemiBold.eot');
    src: url('../폰트/프리텐다드/Pretendard-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../폰트/프리텐다드/Pretendard-SemiBold.woff2') format('woff2'),
        url('../폰트/프리텐다드/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'bold';
    src: url('../폰트/프리텐다드/Pretendard-Bold.eot');
    src: url('../폰트/프리텐다드/Pretendard-Bold.eot?#iefix') format('embedded-opentype'),
        url('../폰트/프리텐다드/Pretendard-Bold.woff2') format('woff2'),
        url('../폰트/프리텐다드/Pretendard-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;
}
body {
    line-height: 1;
    color: #000;
    position: relative;
}
.bg.on {
    display: block;
    z-index: 7;
}
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.bg span {
    position: absolute;
    left: -999999999px;
}
.up_btn {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 8;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
}
/* body.on::after{
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6;
} */

body.on {
    overflow: hidden;
}
.img2 {
    display: none;
}
.open_close {
    display: block;
    width: 22px;
    position: relative;
    z-index: 10;
}
.open_close img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header {
    max-width: 1920px;
    width: 100%;
    height: 105px;
    display: flex;
    justify-content: space-between;
    border: 2px solid #E4002B;
    background-color: #fff;
    border-left: 0;
    border-right: 0;
    position: fixed;
    top: 0;
    z-index: 8;
    transition: 0.5s;
   
}
.header.on {
    transform: translateY(-100%);
}
.header .logo {
    width: 191px;
    height: 103px;
}
.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header .nav {
    display: flex;
    align-items: center;
}
.header .nav .gnb {
    display: flex;
    height: 100%;
}
.header .nav .gnb > li .depth01 {
    font-family: 'semibold';
    font-size: 18px;
    line-height: 101px;
    padding: 0 45px;
}
.header .nav .gnb > li:hover .depth01 {
    color: #E4002B;
}
.header .nav .gnb .depth02 {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
}
.header .nav .gnb .depth02 li {
    font-family: 'medium';
    padding: 15px 0;
}
.header .nav .gnb > li:hover .depth02 {
    display: block;
    border: 2px solid #E4002B;
}
.header .nav .gnb > li:hover .depth02 li:hover {
    background-color: #E4002B;
    color: #fff;
    font-weight: bold;

}
/* .header.off {
    position: static;
} */
.header .icon {
    display: flex;
    align-items: center;
}
.header .icon .icon_wrap {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-right: 35px;
}
.header .mobile_nav {
    width: 40%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    z-index: 9;
    /* border-top: 2px solid #E4002B; */
}
.header .mobile_nav > .gnb {
    width: 80%;
    margin: 15% auto;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    justify-content: space-between;
}
.header .mobile_nav > .gnb > li {
    border-top: 2px solid #E4002B;
    /* border-bottom: 2px solid #E4002B; */
}
.header .mobile_nav > .gnb > li .depth01 {
    font-family: 'semibold';
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin: 1% 0px;
}
.header .mobile_nav > .gnb > li:hover .depth01 {
    color: #E4002B;
}
.header .mobile_nav > .gnb > li .depth02 {
    display: none;
}
.header .mobile_nav > .gnb > li .depth02 > li a {
    font-family: 'medium';
    display: block;
    padding: 10px 0;
}
.header .mobile_nav > .gnb > li .depth02 > li:hover a {
    background-color: #E4002B;
    color: #fff;
    font-weight: bold;
}
.header .mobile_nav > .gnb > li .depth02 > li.on {
    background-color: #E4002B;
    color: #fff;
    font-weight: bold;
}


.main_visual {
    margin-top: 100px;
    max-height: 820px;
    height: 57.74vw;
    border-bottom: 2px solid #E4002B;
    position: relative;
    z-index: 0;
}
.main_visual .spot {
    height: 100%;
}
.spot .swiper-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spot .swiper-wrapper video {
    width: 1920px;
    height: 820px;
    object-fit: cover;
}

.section01 {
    max-width: 1280px;
    margin: 120px auto;
}
.section01 .wrap {
    display: flex;

}
.section01 .wrap .box {
    width: 516px;
    height: 700px;
    border: 2px solid #E4002B;
    position: relative;
    overflow: hidden;
    /* box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4); */
}
.section01 .wrap .box:nth-child(2) {
    width: 336px;
    height: 700px;
    margin: 0 24px;
}
.section01 .wrap .box > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.section01 .wrap .box:hover {
    border: none;
}
.section01 .wrap .box:hover a img {
    transform: scale(0.96);
}
.section01 .wrap .box p {
    font-family: 'semibold';
    /* background-color: rgba(0, 0, 0, 0.4); */
    background: linear-gradient(360deg, rgb(0, 0, 0) 0%,rgba(0, 0, 0, 0.6) 40%, rgba(51,51,51,0) 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 1s;
}
.section01 .wrap .box p img {
    margin-left: 10px;
}
.section01 .wrap .box:hover p {
    opacity: 1;
}
.img_box01 {
    background: url('../Diesel/01_Module_LP_campaing_runway_D.jpg')center center/ cover no-repeat fixed;
    margin: 120px 0;
    /* width: 100%; */
    height: 600px;
    border: 2px solid #E4002B;
    border-left: 0;
    border-right: 0;
}
.img_box01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
    top: 35%;
    color: #E4002B;
}

/* .new_slide2.on {
    display: block;
} */
.first_slide.on {
    display: block;
}
.first_slide {
    display: none;
}

.second_slide.on {
    display: block;
}
.second_slide {
    display: none;
}

 .new_slide, .new_slide2, .new_slide3, .new_slide4{
    max-width: 1770px;
    width: calc(100% - 30px);
    margin: 120px auto;
}
.new_slide .title, .new_slide2 .title, .new_slide3 .title, .new_slide4 .title {
    margin-bottom: 30px;
}
.new_slide .title h2, .new_slide2 .title h2, .new_slide3 .title h2, .new_slide4 .title h2 {
    font-family: 'bold';
    font-size: 30px;
    margin-bottom: 15px;
}
.new_slide .title p, .new_slide2 .title p, .new_slide3 .title p, .new_slide4 .title p {
    font-family: 'semibold';
    font-size: 18px;
}
.new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box,
.new_slide3 .new .swiper-slide .box, .new_slide4 .new .swiper-slide .box {
    width: 336px;
    position: relative;
    border: 2px solid #E4002B;
    overflow: hidden;
}
.new_slide .new .swiper-slide .box > figure, .new_slide2 .new .swiper-slide .box > figure,
.new_slide3 .new .swiper-slide .box > figure, .new_slide4 .new .swiper-slide .box > figure {
    height: 322px;
}
.new_slide .new .swiper-slide .box > figure img, .new_slide2 .new .swiper-slide .box > figure img,
.new_slide3 .new .swiper-slide .box > figure img, .new_slide4 .new .swiper-slide .box > figure img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    vertical-align: middle;
    border-bottom: 2px solid #E4002B;
}

.new_slide .new .swiper-slide .box .text, .new_slide2 .new .swiper-slide .box .text,
.new_slide3 .new .swiper-slide .box .text, .new_slide4 .new .swiper-slide .box .text {
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 15px;
}
.new_slide .new .swiper-slide .box .text span, .new_slide2 .new .swiper-slide .box .text span,
.new_slide3 .new .swiper-slide .box .text span, .new_slide4 .new .swiper-slide .box .text span {
    font-family: 'bold';
    font-size: 20px;
}
.new_slide .new .swiper-slide .box .text P, .new_slide2 .new .swiper-slide .box .text P,
.new_slide3 .new .swiper-slide .box .text P, .new_slide4 .new .swiper-slide .box .text P {
    font-family: 'semibold';
    font-size: 18px;
}

.new_slide .new .swiper-slide .box .box_wrap .icon, .new_slide2 .new .swiper-slide .box .box_wrap .icon,
.new_slide3 .new .swiper-slide .box .box_wrap .icon, .new_slide4 .new .swiper-slide .box .box_wrap .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 225px;
    flex-direction: column;
    cursor: pointer;
}
/* .new_slide .new .swiper-slide .box .box_wrap:hover .plus {
    transform: translateY(-100%); 세로로 이동
    transition: 0.3s;
    opacity: 1;
} */
.new_slide .new .swiper-slide .box .box_wrap .plus, .new_slide2 .new .swiper-slide .box .box_wrap .plus,
.new_slide3 .new .swiper-slide .box .box_wrap .plus, .new_slide4 .new .swiper-slide .box .box_wrap .plus {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 2px solid #E4002B;
    background-color: #fff;
    /* opacity: 0;
    transition: 0.3s; */
    display: none;
    cursor: pointer;
}
.new_slide .new .swiper-slide .box .box_wrap .plus > p, .new_slide2 .new .swiper-slide .box .box_wrap .plus > p,
.new_slide3 .new .swiper-slide .box .box_wrap .plus > p ,.new_slide4 .new .swiper-slide .box .box_wrap .plus > p  {
    font-family: 'semibold';
    padding: 15px;
    padding-bottom: 20px;
}
.new_slide .new .swiper-slide .box .box_wrap .plus > span, .new_slide2 .new .swiper-slide .box .box_wrap .plus > span
,.new_slide3 .new .swiper-slide .box .box_wrap .plus > span, .new_slide4 .new .swiper-slide .box .box_wrap .plus > span {
    font-family: 'bold';
    display: inline-block;
    padding: 0 15px 25px 15px;
    font-size: 20px;
    font-weight: normal;
    padding: 0 15px;

}
.new_slide .new .swiper-slide .box .box_wrap .plus .op, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op,
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op, .new_slide4 .new .swiper-slide .box .box_wrap .plus .op {
    padding: 15px;
    padding-top: 25px;
}
.new_slide .new .swiper-slide .box .box_wrap .plus .op p, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op p,
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op p , .new_slide4 .new .swiper-slide .box .box_wrap .plus .op p{
    font-family: 'medium';
}
.new_slide .new .swiper-slide .box .box_wrap .plus .op p:nth-child(1), .new_slide2 .new .swiper-slide .box .box_wrap .plus .op p:nth-child(1),
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op p:nth-child(1), .new_slide4 .new .swiper-slide .box .box_wrap .plus .op p:nth-child(1) {
    margin-bottom: 12px;
}
/* .new_slide .new .swiper-slide .box .box_wrap .plus .op p:nth-child(2)::after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #E4002B;
    border-radius: 50%;
    position: absolute;
    top: 59%;
    left: 18%;
} */
.new_slide .new .swiper-slide .box .box_wrap .plus .op p span:hover, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op p span:hover,
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op p span:hover, .new_slide4 .new .swiper-slide .box .box_wrap .plus .op p span:hover {
    background-color: #E4002B;
    color: #fff;
}
.new_slide .new .swiper-slide .box .box_wrap .plus .op p span.on, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op p span.on,
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op p span.on, .new_slide4 .new .swiper-slide .box .box_wrap .plus .op p span.on {
    background-color: #E4002B;
    color: #fff;
}
.new_slide .new .swiper-slide .box .box_wrap .plus .op span, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op span,
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op span, .new_slide4 .new .swiper-slide .box .box_wrap .plus .op span {
    padding: 0 5px;
    margin-right: 5px;
    display: inline-block;
}
.new_slide .new .swiper-slide .box .box_wrap .plus .op p > div, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op p > div,
.new_slide3 .new .swiper-slide .box .box_wrap .plus .op p > div, .new_slide4 .new .swiper-slide .box .box_wrap .plus .op p > div {
    padding: 0;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    margin-right: 1rem;
    background-repeat: no-repeat;
    border: .1rem solid #fff;
    box-shadow: 0 0 .1rem .2rem #dfdfdf;
    overflow: hidden;
    min-width: auto;
}
.new_slide .new .swiper-slide .box .box_wrap .plus a, .new_slide2 .new .swiper-slide .box .box_wrap .plus a,
.new_slide3 .new .swiper-slide .box .box_wrap .plus a, .new_slide4 .new .swiper-slide .box .box_wrap .plus a {
    display: inline-block;
    font-family: 'semibold';
    width: 100%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    background-color: #E4002B;
}
.new_slide .new .swiper-slide .box .box_wrap .plus a:hover, .new_slide2 .new .swiper-slide .box .box_wrap .plus a:hover,
.new_slide3 .new .swiper-slide .box .box_wrap .plus a:hover, .new_slide4 .new .swiper-slide .box .box_wrap .plus a:hover {
    border-top: 2px solid #E4002B;
    color: #333;
    background-color: #fff;
    transition: background-color 0.5s;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 4px 4px;
}
.img_box02 {
    background: url('../Diesel/01_Module_SS24_Sale_D_2.webp') center center/ cover no-repeat fixed;
    margin: 120px 0;
    width: 100%;
    height: 600px;
    border: 2px solid #E4002B;
    border-left: 0;
    border-right: 0;
}
.img_box02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new .button, .new .button02 {
    font-family: 'medium';
    display: flex;
    justify-content: center;
    margin-top: 24px;
    cursor: pointer;
}
.new .button p, .new .button02 p {
    width: 168px;
    height: 40px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #E4002B;
    font-size: 15px;
}
.new .button p.on,
.new .button02 p.on {
    background-color: #E4002B;
    color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 4px 4px;
}
.new .button p:nth-child(2), .new .button02 p:nth-child(2) {
    border-left: 2px;
}
.new .button p:hover, .new .button02 p:hover {
    /* background-color: #E4002B; */
    /* color: #E4002B; */
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 4px 4px;
    transform: scale(0.98);
    transition: 0.3s;
}
.high {
    width: 100%;
    margin: 120px auto;
    margin-bottom: 0;
}
.high .inner {
    width: 100%;
    background-color: #E4002B;
}
.high .title {
    text-align: center;
}
.high h2 {
    font-family: 'bold';
    color: #fff;
    font-size: 30px;
    margin: 25px auto;
    margin-top: 70px;
    display: inline-block;
}
.high .high_inner {
    max-width: 1420px;
    width: calc(100% - 30px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    column-gap: 24px;
    padding-bottom: 70px;
}
.high .high_inner > .item {
    width: 49.01%;
    max-height: 774px;
    height: 54.57vw;
    overflow: hidden;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
}
.high .high_inner > .item figure {
    width: 100%;
    height: 100%;
}
.high .high_inner > .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.high .high_inner .item_wrap {
    width: 49.01%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 24px;
}
.high .high_inner .item_wrap .item {
    width: 48.27%;
    max-height: 375px;
    height: 26.40vw;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);

}
.high .high_inner .item_wrap .item figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.high .high_inner .item_wrap .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.high .high_inner .item {
    position: relative;
    overflow: hidden;
}
.high .high_inner .item:hover p {
    opacity: 1;
    transition: 1s;

}
.high .high_inner > .item:hover figure img {
    transform: scale(1.03);
    transition: 0.6s;
}
.high .high_inner .item_wrap .item:hover figure img {
    transform: scale(1.03);
    transition: 0.6s;
}
.high .high_inner p{
    font-family: 'medium';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    background: linear-gradient(360deg, rgb(0, 0, 0) 0%,rgba(0, 0, 0, 0.6) 60%, rgba(51,51,51,0) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.sns {
    max-width: 1420px;
    width: calc(100% - 30px);
    margin: 70px auto;
}
.sns .item_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}
.sns .item_wrap a figure img {
    width: 35px;
    object-fit: cover;
}
.footer {
    width: 100%;
    height: 214px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid #E4002B;
    border-left: 0;
    border-right: 0;
}
.footer .logo img {
    width: 300px;
    height: 214px;
    /* object-fit: cover; */
}
.footer .letter {
    width: 33.33%;
    height: 100%;
    position: relative;
}
.footer .letter figure {
    width: 100%;
    height: 100%;
}
.footer .letter figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer .letter .text {
    word-break: keep-all;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    column-gap: 45px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}
.footer .letter:hover .text {
    opacity: 1;
    padding: 10px;
}
.footer .letter .text .item01 p{
    font-family: 'semibold';
    font-size: 22px;
    margin-bottom: 10px;
}
.footer .letter .text .item01 span {
    font-family: 'regular';
    display: inline-block;
    font-size: 18px;
    margin-bottom: 30px;
}
.footer .letter .text .item01 legend {
    position: absolute;
    left: -9999999999px;
}
.footer .letter .text .item01 fieldset {
    border: none;
}
input[type="email"] {
    font-family: 'medium';
    width: 60%;
    height: 20px;
    margin-bottom: 20px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
}
input::placeholder {
    color: #fff;
}
input[type='radio'] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
input[type="radio"]+label {
    font-family: 'regular';
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}
input[type="radio"]+label:before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 14px;
    height: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid #cacece;
    border-radius: 100%;
    box-shadow: none;
}
input[type="radio"]:checked+label:before {
    background: #fff;
    border-color: #E4002B;
} 
input[type="radio"]:checked+label:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 14px;
    height: 14px;
    background: #E4002B;
    border-radius: 100%;
    box-shadow: none;
}
.footer .letter .text .item01 fieldset div:nth-child(3) label {
 margin-right: 20px;
}
.footer .letter .text .item02 {
    width: 125px;
    height: 156px;
    text-align: center;
    line-height: 156px;
    border: 2px solid #E4002B;
    background-color: #fff;
    color: #E4002B;
    transition: 0.3s;
    cursor: pointer;
}
.footer .letter .text .item02 p {
    font-family: 'medium';
    font-size: 18px;
}
.footer .letter .text .item02:hover {
    background-color: #E4002B;
    color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 4px 4px;
}
.footer .link {
    width: 39%;
    height: 100%;
}
.footer .link .ad {
    margin: 10px 0;
    display: flex;
    column-gap: 100px;
    margin-bottom: 50px;
}
.footer .link .ad span {
    font-family: 'medium';
    word-break: keep-all;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 15px;
    cursor: default;
}
.footer .link .ad .text {
    font-family: 'regular';
    display: flex;
    row-gap: 10px;
    flex-direction: column;
    color: #868686;
    cursor: pointer;
}
.footer .link > span {
    word-break: keep-all;
    font-family: 'regular';
    display: inline-block;
    margin-bottom: 7px;
}
@media screen and (max-width:1720px) {
    .footer .link .ad {
        margin-bottom: 25px;
    }
}
@media screen and (max-width:1440px) {
    .footer .link .ad {
        margin-bottom: 5px;
    }
    .spot .swiper-wrapper video {
        width: 1440px;
    }
    .footer .letter .text {
        column-gap:10px
    }
}
@media screen and (max-width:1390px) {
    /* .footer .link > span {
        display: none;
    } */
    .footer .link .ad {
        column-gap: 40px;
    }
}
@media screen and (max-width:1280px) {
    .header {
        max-width: 1280px;
    }
    .spot .swiper-wrapper video {
        width: 1280px;
        height: 57.74vw;
    }
    .section01{
        max-width: 1280px;
        width: calc(100% - 30px);
    }
    /* .footer .letter {
        display: none;
    } */
    .header .nav .gnb > li .depth01 {
        padding: 0 35px;
    }
    .footer .link > span {
        font-size: 14px;
    }
}
@media screen and (max-width:1080px) {
    .footer .logo img {
        width: 360px;
    }
}
@media screen and (max-width:1024px) {
    .header .nav .gnb > li .depth01 {
        padding: 0 15px;
    }
    .spot .swiper-wrapper video {
        width: 1024px;
        height: 590px;
    }
    .header .icon .icon_wrap {
        column-gap: 25px;
        margin-right: 15px;
    }
    .new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box,
    .new_slide3 .new .swiper-slide .box, .new_slide4 .new .swiper-slide .box{
        width: 310px;
    }
    .footer {
        height: 170px;
    }
    .footer .logo img {
        width: 285px;
        height: 169px;
    }
    .footer .link .ad {
        column-gap: 15px;
    }
    .header .mobile_nav > .gnb {
        margin: 20% auto;
    }
}
@media screen and (max-width:1010px) {
    .footer .letter .text .item01 p {
        font-size: 20px
    }
    .footer .letter .text .item01 span {
        font-size: 16px;
    }
    .footer .link > span {
        display: none;
    }
}
@media screen and (max-width:960px) {
    .header .icon .icon_wrap {
        column-gap: 35px;
    }
    .footer .link .ad {
        justify-content: space-between;
    }
    .footer .link {
        width: 60%;
    }
    .header .mobile_nav {
        width: 60%;
    }
    .header .mobile_nav > .gnb {
        margin-top: 80px;
    }
    .up_btn {
        bottom: 65px;
    }
    .img_box01 {
        background: url('../Diesel/18_Module_w07_denim_M.jpg') center center/ cover no-repeat fixed;
    }
    .img_box02 {
        background: url('../Diesel/18_Module_w07_denim_W.jpg') center center/ cover no-repeat fixed;
    }
    .header {
        height: 84px;
    }
    .main_visual {
        margin-top: 84px;
    }
    .header .logo {
        width: 170px;
        height: 80px;
    }
    .header .nav {
        display: none;
    }
    .section01 {
        margin: 100px auto;
        margin-bottom: 90px;
    }
    .section01 .wrap .box:nth-child(2) {
        display: none;
    }
    .section01 .wrap {
        gap: 24px;
    }
    .section01 .wrap .box p {
        opacity: 1;
        background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.7));
    }
    .section01 .wrap .box {
        width: 57.33%;
        max-height: 560px;
        height: 58.33vw;
    }
    .img_box01 {
        height: 480px;
        margin: 90px 0;
    }
    .img_box02 {
        height: 480px;
        margin: 90px 0;
    }
    .new_slide, .new_slide2, .new_slide3, .new_slide4 {
        margin: 90px auto;
    }
    .new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box ,
    .new_slide3 .new .swiper-slide .box, .new_slide4 .new .swiper-slide .box {
        width: 294px;
    }
    .high h2 {
        margin-top: 40px;
    }
    .high .high_inner {
        padding-bottom: 40px;
    }
    .high .high_inner p {
        opacity: 1;
    }
    .high .high_inner .item_wrap .item:nth-child(2) ~ .item {
        display: none;
    }
    .high .high_inner .item_wrap .item {
        width: 100%;
        height: 24vw;
    }
    .high .high_inner > .item {
        height: 50.57vw;
    }
    .new_slide .new .swiper-slide .box .box_wrap:hover .plus, .new_slide2 .new .swiper-slide .box .box_wrap:hover .plus
    ,.new_slide3 .new .swiper-slide .box .box_wrap:hover .plus, .new_slide4 .new .swiper-slide .box .box_wrap:hover .plus{
        display: none;
    }
    .new_slide .new .swiper-slide .box .box_wrap .icon figure:nth-child(2), .new_slide2 .new .swiper-slide .box .box_wrap .icon figure:nth-child(2),
    .new_slide3 .new .swiper-slide .box .box_wrap .icon figure:nth-child(2), .new_slide4 .new .swiper-slide .box .box_wrap .icon figure:nth-child(2){
        display: none;
    }
    .footer .letter {
        display: none;
    }
    .high {
        margin: 90px auto;
    }
}
@media screen and (max-width:895px) {
    .spot .swiper-wrapper video {
        width: 895px;
        height: 57.74vw;
    }
    .footer .link {
        width: 100%;
    }
}
@media screen and (max-width:768px) {
    .footer {
        height: 112px;
        gap: 0;
    }
    .spot .swiper-wrapper video {
        width: 768px;
        height: 440px;
    }
    .footer .logo img {
        width: 215px;
        height: 110px;
    }
    .footer .link > span {
        display: none;
    }
    .footer .link .ad {
        column-gap:35px;
    }
    .footer .link .ad span {
        font-size: 16px;
    }
    .footer .link .ad .text {
        font-size: 14px;
        row-gap: 10px;
    }
    .footer .link {
        width: 60%;
        margin: 15px auto;
    }
    .footer {
        height: auto;
    }
    .footer .logo img {
        display: none;
    }
    .section01 .wrap .box p, .high .high_inner p {
        font-size: 20px;
    }
    .new_slide .title h2, .new_slide2 .title h2, .new_slide3 .title h2, .new_slide4 .title h2,.high h2 {
        font-size: 25px;
    }
    .new_slide .title p, .new_slide2 .title p, .new_slide3 .title p, .new_slide4 .title p {
        font-size: 16px;
    }
}
@media screen and (max-width: 680px) {
    .spot .swiper-wrapper video {
        width: 680px;
    }
}
@media screen and (max-width:640px) {
    .up_btn {
        bottom: 30px;
        right: 20px;
    }
    .section01 .wrap .box p {
        font-size: 18px;
    }
    .header .mobile_nav > .gnb {
        width: 60%;
        margin: 25% auto;
    }
    .spot .swiper-wrapper video {
        width: 640px;
        height: 57.74vw;
    }
    .new_slide .title h2, .new_slide2 .title h2, .new_slide3 .title h2, .new_slide4 .title h2{
        font-size: 24px;
    }
    .high .high_inner p {
        font-size: 18px;
    }
    .high h2 {
        font-size: 24px;
    }
    .new_slide .new .swiper-slide .box .text P, .new_slide2 .new .swiper-slide .box .text P, .new_slide3 .new .swiper-slide .box .text P, .new_slide4 .new .swiper-slide .box .text P {
        font-size: 16px;
    }
    .new_slide .new .swiper-slide .box .text span, .new_slide2 .new .swiper-slide .box .text span, .new_slide3 .new .swiper-slide .box .text span, .new_slide4 .new .swiper-slide .box .text span {
        font-size: 18px;

    }
    .new_slide .title h2, .new_slide2 .title h2, .new_slide3 .title h2, .new_slide4 .title h2 {
        margin-bottom: 10px;
    }
    .header .mobile_nav > .gnb > li .depth01 {
        font-size: 18px;
    }
    .header .mobile_nav > .gnb > li .depth02 > li a {
        font-size: 16px;
    }
}
@media screen and (max-width:590px) {
    .new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box, 
    .new_slide3 .new .swiper-slide .box, .new_slide4 .new .swiper-slide .box{
        width: 267px;
    }
    .spot .swiper-wrapper video {
        width: 590px;
        height: 57.74vw;
    }
}
@media screen and (max-width:535px) {
    .up_btn {
        width: 40px;
        height: 40px;
        bottom: 70px;
        right: 25px;
    }
    .up_btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .img1 {
        display: none;
    }
    .img2 {
        display: block;
    }
    .new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box ,
    .new_slide3 .new .swiper-slide .box, .new_slide4 .new .swiper-slide .box {
        width: 167px;
    }
    .spot .swiper-wrapper video {
        width: 535px;
        height: 57.74vw;
    }
    .section01 .wrap .box a img {
        object-fit: cover;
    }
    .new_slide .new .swiper-slide .box .text P, .new_slide2 .new .swiper-slide .box .text P,
    .new_slide3 .new .swiper-slide .box .text P, .new_slide4 .new .swiper-slide .box .text P {
        font-size: 14px;
    }
    .new_slide .new .swiper-slide .box .box_wrap .plus > span, .new_slide2 .new .swiper-slide .box .box_wrap .plus > span,
    .new_slide3 .new .swiper-slide .box .box_wrap .plus > span, .new_slide4 .new .swiper-slide .box .box_wrap .plus > span {
        font-size: 18px;
    }
    .footer {
        justify-content: center;
    }
    .high .high_inner {
        display: block;
    }
    .high .high_inner > .item  {
        height: 24vw;
        margin-bottom: 16px;
    }
    .high .high_inner .item_wrap {
        width: 100%;
        row-gap: 16px;
    }
    .high .high_inner > .item {
        width: 100%;
    }
    .header {
        height: 67px;
    }
    .main_visual {
        margin-top: 67px;
    }
    .header .logo {
        width: 135px;
        height: 65px;
    }
    .section01 .wrap {
        display: block;
    }
    .section01 .wrap .box {
        width: 100%;
        height: 33.33vw;
    }
    .section01 .wrap .box:nth-child(1) {
        margin-bottom: 16px;
    }
    .img_box01, .img_box02 {
        height: 245px;
        margin: 50px 0;
    }
    .section01 {
        margin: 50px auto;
    }
    .new .button p,
    .new .button02 p {
        width: 120px;
        font-size: 14px;
    }
    .new_slide .new .swiper-slide .box .box_wrap .icon, .new_slide2 .new .swiper-slide .box .box_wrap .icon,
    .new_slide3 .new .swiper-slide .box .box_wrap .icon, .new_slide4 .new .swiper-slide .box .box_wrap .icon {
        right: 5px;
    }
    .new_slide .new .swiper-slide .box .box_wrap .plus .op span, .new_slide2 .new .swiper-slide .box .box_wrap .plus .op span,
    .new_slide3 .new .swiper-slide .box .box_wrap .plus .op span, .new_slide4 .new .swiper-slide .box .box_wrap .plus .op span {
        font-size: 14px;
        margin-right: 0;
    }
    .new_slide .new .swiper-slide .box > figure, .new_slide2 .new .swiper-slide .box > figure,
    .new_slide3 .new .swiper-slide .box > figure, .new_slide4 .new .swiper-slide .box > figure {
        height: 235px;
    }
    .sns .item_wrap a figure img {
        width: 30px;
    }
    .footer .link {
        width: 80%;
    }
    .header .icon .icon_wrap {
        column-gap: 23px;
    }
}
@media screen and (max-width: 470px) {
    .spot .swiper-wrapper video {
        width: 470px;
    }
}
@media screen and (max-width:418px) {
    .new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box, .new_slide3 .new .swiper-slide .box,
    .new_slide4 .new .swiper-slide .box {
        width: 155px;
    }
    .spot .swiper-wrapper video {
        width: 418px;
        height: 57.74vw;
    }
    .header .icon .icon_wrap > li, .open_close{
        width: 20px;
        object-fit: cover;
    }
    .header .icon .icon_wrap > li img {
        width: 100%;
        height: 100%;
    }
 
    .new_slide .new .swiper-slide .box .text P, .new_slide2 .new .swiper-slide .box .text P,
    .new_slide3 .new .swiper-slide .box .text P, .new_slide4 .new .swiper-slide .box .text P {
        font-size: 12px;
    }
    .new_slide .new .swiper-slide .box .text span, .new_slide2 .new .swiper-slide .box .text span,
    .new_slide3 .new .swiper-slide .box .text span, .new_slide4 .new .swiper-slide .box .text span{
        font-size: 18px;
    }
    .header .mobile_nav > .gnb > li .depth01 {
    font-size: 16px;
    }
    .header .mobile_nav > .gnb > li .depth02 {
        font-size: 14px;
    }
    .new_slide .new .swiper-slide .box > figure img, .new_slide2 .new .swiper-slide .box > figure img, .new_slide3 .new .swiper-slide .box > figure img, .new_slide4 .new .swiper-slide .box > figure img {
        object-fit: cover;
    }
    .header .mobile_nav > .gnb > li .depth02 > li a {
        font-size: 14px;
    }
    .header .mobile_nav > .gnb > li .depth02 > li a {
        padding: 7px 0;
    }
}
@media screen and (max-width:390px) {
    .header .logo {
        width: 110px;
    }
    .sns .item_wrap {
        column-gap: 30px;
    }
    .high {
        margin: 50px auto;
    }
    .high h2 {
        margin-top: 20px;
        font-size: 20px;
    }
    .spot .swiper-wrapper video {
        width: 390px;
        height: 57.74vw;
    }
    .section01 .wrap .box p {
        font-size: 16px;
    }
    .new_slide, .new_slide2, .new_slide3, .new_slide4 {
        margin: 50px auto;
    }
    .new_slide .title, .new_slide2 .title, .new_slide3 .title, .new_slide4 .title {
        margin-bottom: 20px;
    }
    .new_slide .title h2, .new_slide2 .title h2, .new_slide3 .title h2, .new_slide4 .title h2 {
        font-size: 20px;
    }
    .new_slide .new .swiper-slide .box, .new_slide2 .new .swiper-slide .box,
    .new_slide3 .new .swiper-slide .box, .new_slide4 .new .swiper-slide .box{
        width: 133px;
    }
    .new_slide .new .swiper-slide .box .text span, .new_slide2 .new .swiper-slide .box .text span,
    .new_slide3 .new .swiper-slide .box .text span, .new_slide4 .new .swiper-slide .box .text span{
        font-size: 16px;
    }
    /* .header .icon .icon_wrap > li{
        width: 15px;
        height: 15px;
    } */
    .header .icon .icon_wrap > li img {
        width: 100%;
        height: 100%;
    }
    .footer .link .ad span {
        font-size: 12px;
    }
    .footer .link .ad .text {
        font-size: 11px;
    }
    /* .header .icon .icon_wrap {
        gap: 15px;
    } */
    .high .high_inner p {
        font-size: 16px;
    }
    .sns {
        margin: 50px auto;
    }
}
@media screen and (max-width: 360px) {
    .spot .swiper-wrapper video {
        width: 360px;
    }
}