/*****  HEADER *****/

header.nodam_hd {
    background: #000;
    position: relative;
    z-index: 100;
}

header.nodam_hd .hd_wrap {
    height: 211px;
    width: 100%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header.nodam_hd .hd_wrap .hd_year {
    display: flex;
    gap: 7px;
}

header.nodam_hd .hd_wrap .hd_year li {
    width: 95px;
    height: 40px;
}

header.nodam_hd .hd_wrap .hd_year li a {
    font-size: 1.6rem;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
    font-size: 2.4rem;
    font-weight: 700;
}

header.nodam_hd .hd_wrap .hd_icon {
    display: flex;
    gap: 10px;
}

header.nodam_hd .hd_wrap .hd_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

header.nodam_hd .hd_wrap .hd_logo a {
    position: relative;
    display: block;
    width: 260px;
    height: 140px;
}

header.nodam_hd .hd_wrap .hd_logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .7s cubic-bezier(.7, 0, .3, 1);
    backface-visibility: hidden;
    will-change: transform;
}

header.nodam_hd .hd_wrap .hd_logo img.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

header.nodam_hd .hd_wrap .hd_logo img.prev {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

header.nodam_hd nav.hd_menu {
    height: 52px;
    display: flex;
    align-items: center;
    background: #000;
    border-top: 1px solid #454545;
}

header.nodam_hd nav.hd_menu .hd_ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header.nodam_hd nav.hd_menu .hd_ul>li {
    position: relative;
    width: 400px;
    text-align: center;
    position: relative;
}

header.nodam_hd nav.hd_menu .hd_ul>li:after {
    content: "";
    position: absolute;
    height: 16px;
    width: 1px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #999;
}

header.nodam_hd nav.hd_menu .hd_ul>li:last-child:after {
    display: none;
}

header.nodam_hd nav.hd_menu .hd_ul>li>a {
    font-size: 2.4rem;
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    white-space: nowrap;
}

header.nodam_hd nav.hd_menu .hd_ul>li.active>a {
    font-weight: 900;
}

header.nodam_hd nav.hd_menu .hd_ul li>ul {
    display: none;
    width: 100%;
    max-width: 400px;
    position: absolute;
    z-index: 999;
    top: 44px;
    background: #000;
    border-top: 0
}

header.nodam_hd nav.hd_menu .hd_ul li>ul li {
    width: 100%;
    padding: 15px 0;
}


header.nodam_hd nav.hd_menu .hd_ul li>ul li a {
    font-size: 2rem;
    padding: 15px 0;
    color: #fff;
}

header.nodam_hd nav.hd_menu .hd_ul li>ul li a:hover {
    color: var(--now-cr);
}

header.nodam_hd nav.hd_menu .hd_ul li:hover ul {
    display: block;
}

header.nodam_hd nav.hd_menu .hd_ul li ul:hover {
    display: block;
}

/***** FOOTER *****/

footer.nodam_ft {
    width: 100%;
    height: 160px;
    background: #000;
    position: relative;
    margin-top: auto;
}

footer.nodam_ft .ft_wrap {
    height: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}

footer.nodam_ft .ft_txt {
    color: #fff;
    font-size: 1.4rem;
    line-height: 20px;
    font-weight: 300;
    text-align: right;
    opacity: 30%;
}

@media screen and (max-width: 1500px) {
    header.nodam_hd .hd_wrap {
        padding: 0 30px;
    }

    header.nodam_hd .hd_wrap .hd_year li {
        width: 90px;
    }

    header.nodam_hd .hd_wrap .hd_logo a {
        position: relative;
        display: block;
        width: 240px;
        height: 120px;
    }

    header.nodam_hd .hd_wrap .hd_logo a img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 800px) {
    header.nodam_hd .hd_wrap {
        height: 25vw;
        padding: 0 6.25vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    header.nodam_hd .hd_wrap .hd_logo a {
        width: 28vw;
        height: 17vw;
    }

    header.nodam_hd .hd_wrap .hd_icon {
        height: 6vw;
        gap: 1.25vw;
        width: 100%;
    }


    header.nodam_hd .hd_wrap .hd_icon li {
        height: 6vw;
    }

    header.nodam_hd .hd_wrap .hd_icon li:last-child {
        margin-left: auto;
    }

    header.nodam_hd .hd_wrap .hd_icon li a {
        height: 100%;
        max-width: 6vw;
        display: inline-block;
    }

    header.nodam_hd .hd_wrap .hd_icon li:last-child a {
        max-width: 22vw;
    }

    header.nodam_hd .hd_wrap .hd_icon li a img {
        display: inline-block;
        width: 100%;
        height: 100%;
    }

    header.nodam_hd .hd_wrap .hd_logo img {
        height: 18.75vw;
    }

    header.nodam_hd nav.hd_menu {
        height: 14vw;
    }

    header.nodam_hd nav.hd_menu .nav_wrap,
    header.nodam_hd nav.hd_menu .hd_ul {
        height: 100%;
    }

    header.nodam_hd nav.hd_menu .hd_ul>li {
        width: 33.3333%;
        height: 100%;
    }

    header.nodam_hd nav.hd_menu .hd_ul li>ul {
        max-width: initial;
        top: 13.5vw;
    }

    header.nodam_hd nav.hd_menu .hd_ul li>ul li {
        padding: 0;
        height: 12vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header.nodam_hd nav.hd_menu .hd_ul li>ul li a {
        font-size: 3.75vw;
        padding: 0;
        color: #fff;
    }

    header.nodam_hd nav.hd_menu .hd_ul>li>a {
        font-size: 3.75vw;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header.nodam_hd nav.hd_menu .hd_ul>li:after {
        height: 5.75vw;
    }

    footer.nodam_ft {
        height: auto;
        position: absolute;
        z-index: 20;
    }

    footer.nodam_ft .ft_wrap {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .ft_logo img {
        height: 6.38vw;
        margin-top: 5.5vw;
    }

    footer.nodam_ft .ft_txt {
        font-size: 3vw;
        text-align: center;
        line-height: 4vw;
        margin: 3.75vw 0;
    }
}

/*****  header / footer END *****/


/***** section nav *****/

.wrap.now .now_nav {
    background: var(--now-cr);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0px 1.25vw 1.25vw 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 1.25vw 1.25vw 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1.25vw 1.25vw 0px rgba(0, 0, 0, 0.2);
}

.wrap.now .now_nav .now_nav_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap.now .now_nav .now_nav_inner .now_nav_li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrap.now .now_nav .now_nav_inner .now_nav_li li {
    color: #cc8c02;
    padding: 26px 80px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    box-sizing: border-box;
    white-space: nowrap;
}

.wrap.now .now_nav .now_nav_inner .now_nav_li li:hover {
    color: var(--now-cr);
    background: #fff;
}

@media screen and (max-width: 800px) {
    .wrap.now .now_nav {
        box-shadow: 0px 1.25vw 1.25vw 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0px 1.25vw 1.25vw 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 1.25vw 1.25vw 0px rgba(0, 0, 0, 0.2);
    }

    .wrap.now .now_nav .now_nav_inner .now_nav_li {
        width: 100%;
    }

    .wrap.now .now_nav .now_nav_inner .now_nav_li li {
        padding: 3vw 0;
        font-size: 3.25vw;
        width: 33.3333%;
        text-align: center;
    }
}

/***** section nav END *****/

/***** now common *****/

.now_sec {
    padding: 180px 0;
}

.now_tit {
    font-size: 6.8rem;
    font-weight: 800;
    margin-bottom: var(--gap-80);
    text-align: center;
}

.now_tit span {
    color: var(--now-cr);
}

.now_btn {
    color: #fff;
    background: var(--now-cr) url(../images/now/btn_arrow.png) no-repeat calc(100% - 8px) / 80px 80px;
    font-size: 4.5rem;
    font-weight: 700;
    padding: 19px 115px 19px 45px;
    border-radius: 50px;
    display: block;
    white-space: nowrap;
}

.wrap.now .label {
    font-size: 2.2rem;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    width: 100%;
    display: inline-block;
    margin-bottom: 50px;
}

@media screen and (max-width: 800px) {
    .now_sec {
        padding: 100px 0;
    }

    .now_tit {
        font-size: clamp(3rem, 7vw, 5rem);
        margin-bottom: 30px;
    }

    .now_btn {
        color: #fff;
        background: var(--now-cr) url(../images/now/btn_arrow.png) no-repeat calc(100% - 4px) / 52px 52px;
        font-size: 2.4rem;
        font-weight: 700;
        padding: 16px 85px 16px 40px;
        border-radius: 50px;
        display: block;
        white-space: nowrap;
    }

    .wrap.now .label {
        font-size: clamp(1.6rem, 3.6vw, 3rem);
        font-weight: 700;
        border-bottom: 2px solid #000;
        padding-bottom: 5px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .now_sec {
        padding: 60px 0;
    }
}

/***** now common END *****/

/***** now section1 *****/

#nowSec01 .sec_01_inner {
    position: relative;
    height: 666px;
    overflow: hidden;
    padding: 100px 240px;
}


/* 배경 슬라이드 */
#nowSec01 .kv_slider {
    position: absolute;
    inset: 0;
}

#nowSec01 .kv_slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .7s cubic-bezier(.7, 0, .3, 1);
}

#nowSec01 .kv_slider .slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

#nowSec01 .kv_slider .slide.prev {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

#nowSec01 .kv_slider .bg,
#nowSec01 .kv_slider .bg img {
    width: 100%;
    min-width: 1920px;
}

#nowSec01 .kv_slider .bg img {
    object-fit: cover;
}

#nowSec01 .kv_cont {
    position: relative;
    z-index: 10;
    color: #fff;
}

#nowSec01 .kv_txt {
    font-size: 4.5rem;
    font-weight: 700;
}


#nowSec01 .kv_desc {
    font-size: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 46px;
    line-height: 1.4;
}

#nowSec01 .kv_desc span {
    color: var(--now-cr);
    font-weight: 700;
}

#nowSec01 .kv_desc b {
    font-weight: 700;
}

#nowSec01 .logo_slider {
    position: relative;
    width: 680px;
    height: 104px;
    overflow: hidden;
    margin-top: 10px;
}

#nowSec01 .logo_slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .7s cubic-bezier(.7, 0, .3, 1);
}

#nowSec01 .logo_slider img.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

#nowSec01 .logo_slider img.prev {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

#nowSec01 #modal_view_now {
    margin-top: 70px;
}

@media screen and (max-width: 800px) {
    #nowSec01 .sec_01_inner {
        height: auto;
        padding: 80px 40px;
        height: 164vw;
        text-align: center;
    }

    #nowSec01 .kv_cont {
        height: 100%;
    }

    #nowSec01 .kv_slider {
        width: 100%;
        min-height: initial;
    }

    #nowSec01 .kv_slider .bg,
    #nowSec01 .kv_slider .bg img {
        width: 100%;
        height: 100%;
        min-width: initial;
        object-fit: cover;
        object-position: center;
    }

    #nowSec01 .kv_txt {
        font-size: clamp(2rem, 6vw, 3.6rem);
    }

    #nowSec01 .logo_slider {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    #nowSec01 .kv_desc {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    #nowSec01 #modal_view_now {
        margin: 40px auto;
    }
}

@media screen and (max-width: 480px) {
    #nowSec01 .sec_01_inner {
        padding: 60px 20px;
    }

    #nowSec01 .logo_slider {
        height: 60px;
    }

    #nowSec01 .kv_desc {
        font-size: 1.8rem;
        margin-top: 24px;
        gap: 10px;
    }
}

/***** now section1 END *****/

/***** now section2 *****/

#nowSec02 {
    background: #fff5d8;
}

#nowSec02 .now_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1200px;
    margin: 0 auto;
}

#nowSec02 .guide {
    padding: 27px 0;
    font-size: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

#nowSec02 .guide span {
    font-weight: 700;
}

#nowSec02 .guide#guide01 {
    background: #000;
    color: #fff;
}

#nowSec02 .guide#guide01 span {
    color: var(--now-cr);
}

#nowSec02 .options {
    display: flex;
    background: #fff;
    padding-bottom: 50px;
    position: relative;
}

#nowSec02 .options small {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    color: #808080;
}

#nowSec02 .options::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
}

#nowSec02 .options li {
    padding: 52px 50px;
}

#nowSec02 .options h4 {
    font-size: 4rem;
    font-weight: 700;
}

#nowSec02 .options h4 span {
    color: var(--now-cr);
}

#nowSec02 .options p {
    font-size: 2rem;
    line-height: 1.4;
    margin-top: 25px;
}

#nowSec02 .options p b {
    font-weight: 700;
}

#nowSec02 .options img {
    margin-top: 50px;
}

#nowSec02 .copy {
    background: #e7e7e7;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 50px;
}

#nowSec02 .copy .sub_tit {
    font-size: 2.6rem;
    font-weight: 600;
}

#nowSec02 .copy h4 {
    font-size: 4rem;
    font-weight: 700;
}

#nowSec02 .copy .copy_btn {
    background: #000 url(../images/now/btn_copy.png) no-repeat 88% / 26px 31px;
    color: #fff;
    padding: 14px 60px 14px 35px;
    font-size: 3.2rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 28px;
}

#nowSec02 .guide#guide02 {
    background: var(--now-cr);
    color: #fff;
}

@media screen and (max-width: 800px) {
    #nowSec02 .sec_02_inner {
        padding: 0 40px;
    }

    #nowSec02 .now_cont {
        width: initial;
    }

    #nowSec02 .guide {
        font-size: clamp(2rem, 4.8vw, 4rem);
        text-align: center;
        padding: 15px 0;
    }

    #nowSec02 .options {
        flex-direction: column;
        width: 100%;
        padding-bottom: 80px;
    }

    #nowSec02 .options h4 {
        font-size: clamp(2.2rem, 5.8vw, 4rem);
    }

    #nowSec02 .options li {
        padding: 36px;
    }


    #nowSec02 .options p {
        font-size: clamp(1.4rem, 3.6vw, 2.6rem);
        line-height: 1.4;
        margin-top: 20px;
    }

    #nowSec02 .options small {
        text-align: center;
        bottom: 30px;
        white-space: nowrap;
    }

    #nowSec02 .copy .sub_tit {
        font-size: clamp(1.6rem, 4.2vw, 2.6rem);
        font-weight: 600;
    }

    #nowSec02 .copy h4 {
        font-size: clamp(2.2rem, 6vw, 4rem);
        font-weight: 700;
        text-align: center;
        line-height: 1.4;
    }

    #nowSec02 .copy .copy_btn {
        background: #000 url(../images/now/btn_copy.png) no-repeat 88% / 18px 24px;
        padding: 8px 42px 8px 20px;
        font-size: clamp(1.8rem, 3.8vw, 3.2rem);
        margin-top: 20px;
    }

}

@media screen and (max-width: 480px) {
    #nowSec02 .sec_02_inner {
        padding: 0 20px;
    }

    #nowSec02 .options li {
        padding: 20px;
    }
}


/***** now section2 END *****/

/***** now section3 *****/

#nowSec03 {
    background: #ffffff;
}

#nowSec03 .period_wrap,
#nowSec03 .giveaway_wrap {
    width: 1200px;
    margin: 0 auto;
    margin-bottom: var(--gap-150);
}

#nowSec03 .period_list {
    display: flex;
    width: 100%;
    background: #f5f5f5;
}

#nowSec03 .period_list li {
    padding: 50px;
    width: 50%;
}

#nowSec03 .period_list li h4 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--now-cr);
}

#nowSec03 .period_list li p {
    font-size: 2rem;
    line-height: 1.4;
    margin-top: 25px;
}

#nowSec03 .period_list li p img {
    vertical-align: -2px;
    padding: 0 1px;
    width: 18px;
    height: 18px;
}

#nowSec03 .period_list li p b {
    font-weight: 700;
}

#nowSec03 .giveaway_list {
    display: flex;
    gap: 15px;
    width: 100%;
}

#nowSec03 .giveaway_list li {
    width: calc((100% - 30px) / 3);
}

#nowSec03 .giveaway_list li .gift_wrap {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nowSec03 .giveaway_list li .gift_wrap span {
    display: block;
    width: 204px;
    padding: 12px 0;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    background: var(--now-cr);
    color: #fff;
    border-radius: 0 0 20px 20px;
    margin-bottom: 70px;
}

#nowSec03 .giveaway_list li .gift_wrap .gift_img {
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nowSec03 .giveaway_list li .gift_wrap p {
    font-size: 3rem;
    color: var(--now-cr);
    font-weight: 700;
    padding: 50px 0;
}

#nowSec03 .giveaway_list li em {
    background: #000;
    width: 100%;
    color: #fff;
    display: inline-block;
    padding: 26px;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}

#nowSec03 #modal_view_now {
    margin: 0 auto;
}

@media screen and (max-width: 800px) {
    #nowSec03 .sec_03_inner {
        padding: 0 40px;
    }

    #nowSec03 .period_wrap,
    #nowSec03 .giveaway_wrap {
        width: 100%;
        margin-bottom: 60px;
    }

    #nowSec03 .period_list {
        flex-direction: column;
    }

    #nowSec03 .period_list li {
        width: 100%;
        padding: 36px;
    }

    #nowSec03 .period_list li h4 {
        font-size: clamp(2.2rem, 5.8vw, 4rem);
    }

    #nowSec03 .period_list li p {
        font-size: clamp(1.4rem, 3.6vw, 2.6rem);
        margin-top: 20px;
    }

    #nowSec03 .period_list li p img {
        width: 18px;
        height: 18px;
    }

    #nowSec03 .giveaway_list {
        flex-direction: column;
    }

    #nowSec03 .giveaway_list li {
        width: 100%;
        display: flex;
    }

    #nowSec03 .giveaway_list li .gift_wrap {
        flex-direction: row;
        width: 88%;
        padding: 20px 0;
    }

    #nowSec03 .giveaway_list li .gift_wrap span {
        width: 30px;
        font-size: clamp(1.4rem, 2.6vw, 2.4rem);
        padding: 40px 5px;
        border-radius: 0 10px 10px 0;
        margin-bottom: 0;
        margin-right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #nowSec03 .giveaway_list li .gift_wrap .gift_img {
        width: calc((100% - 38px) / 100 * 50);
        height: auto;
        flex-shrink: 0;
    }

    #nowSec03 .giveaway_list li .gift_wrap p {
        font-size: clamp(1.4rem, 3.8vw, 2.6rem);
        width: calc((100% - 38px) / 100 * 50);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-shrink: 1;
    }

    #nowSec03 .giveaway_list li em {
        padding: 0 20px;
        width: 12%;
        font-size: clamp(1.6rem, 3.6vw, 3rem);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

}

@media screen and (max-width: 480px) {
    #nowSec03 .sec_03_inner {
        padding: 0 20px;
    }

    #nowSec03 .period_list li {
        width: 100%;
        padding: 20px;
    }

    #nowSec03 .giveaway_list li .gift_wrap span {
        width: 25px;
        padding: 36px 5px;
        margin-right: 10px;
    }

    #nowSec03 .period_list li p img {
        width: 14px;
        height: 14px;
    }

    #nowSec03 .giveaway_list li .gift_wrap {
        flex-direction: row;
        width: 86%;
    }

    #nowSec03 .giveaway_list li .gift_wrap .gift_img {
        width: calc((100% - 38px) / 100 * 52);
    }

    #nowSec03 .giveaway_list li .gift_wrap p {
        width: calc((100% - 38px) / 100 * 48);
    }


    #nowSec03 .giveaway_list li em {
        width: 14%;
    }

}

/***** now section3 END *****/

/***** now section4 *****/

#nowSec04 {
    background: #fcb628;
}

#nowSec04 .now_tit_snmall {
    text-align: center;
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--gap-80);
}

#nowSec04 .now_tit_snmall p img {
    width: 34px;
    height: 32px;
    vertical-align: -2px;
    padding: 0 1px;
}

#nowSec04 .ex_wrap {
    width: 1920px;
}

.ex_wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.now-instagram-swiper {
    padding: 60px 0;
}

.now-instagram-swiper .swiper-slide {
    width: 250px;
    transition: all 0.4s ease;
    transform: scale(0.85);
    display: flex;
    justify-content: center;
    align-items: center;
}

.now-instagram-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.now-instagram-swiper .swiper-slide-active {
    transform: scale(1.05);
    z-index: 10;
}

.phone-frame-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 290px;
    height: 580px;
    background: url('../images/now/phone.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 20;
}

@media screen and (max-width: 800px) {
    #nowSec04 .sec_04_inner {
        padding: 0;
    }

    #nowSec04 .now_tit_snmall {
        font-size: clamp(1.8rem, 3.8vw, 3rem);
        line-height: 1.4;
        margin-bottom: var(--gap-40);
    }

    #nowSec04 .now_tit_snmall p img {
        width: 22px;
        height: 22px;
    }

    #nowSec04 .ex_wrap {
        width: 100%;
    }

    .now-instagram-swiper {
        padding: 30px 0;
    }

    .phone-frame-mockup {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 28vw;
        height: 49vw;
        background: url('../images/now/phone.png') no-repeat center center;
        background-size: contain;
        pointer-events: none;
        z-index: 20;
    }
}

@media screen and (max-width: 480px) {
    #nowSec04 .now_tit_snmall p img {
        width: 18px;
        height: 18px;
    }
}

/***** now section4 END *****/

/***** now section5 *****/

#nowSec05 {
    background: #ffffff;
}

#nowSec05 .sec_05_inner {
    display: flex;
    flex-direction: column;
    gap: var(--gap-150);
}

#nowSec05 .contact_wrap,
#nowSec05 .tvc_wrap {
    width: 1440px;
    margin: 0 auto;
    text-align: center;
}

#nowSec05 .deco_txt {
    display: flex;
    justify-content: center;
    gap: 70px;
    font-size: 5.2rem;
}

#nowSec05 .deco_txt .yellow {
    color: var(--now-cr);
}

#nowSec05 .deco_txt .blue {
    color: var(--now-cr2);
}

#nowSec05 .deco_txt .purple {
    color: var(--now-cr3);
}

#nowSec05 .deco_txt span {
    position: relative;
}

#nowSec05 .deco_txt span::after {
    content: "";
    height: 34px;
    width: 2px;
    background: #d9d9d9;
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
}

#nowSec05 .deco_txt span:last-child::after {
    display: none;
}

#nowSec05 .contact_wrap h3 {
    font-size: 10rem;
    font-weight: 800;
    margin-top: 10px;
}

#nowSec05 .contact_wrap p {
    font-size: 5.2rem;
    margin-top: 20px;
}

#nowSec05 .contact_wrap p b {
    font-weight: 700;
}

#nowSec05 #contactBtn {
    width: fit-content;
    margin: 0 auto;
    margin-top: 60px;
}

#nowSec05 .tvc_wrap {
    background: #f2f2f2;
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-80);
    align-items: center;
}

#nowSec05 .tvc_wrap h4 {
    font-size: 5.2rem;
    font-weight: 700;
    position: relative;
    width: fit-content;
}

#nowSec05 .tvc_wrap h4::before,
#nowSec05 .tvc_wrap h4::after {
    content: "";
    width: 320px;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
}

#nowSec05 .tvc_wrap h4::before {
    left: -336px;
}

#nowSec05 .tvc_wrap h4::after {
    right: -336px;
}

#nowSec05 .tvc_wrap .media_list {
    display: flex;
    gap: 3px;
}

#nowSec05 .tvc_wrap .media_list .media_item {
    background: var(--now-cr);
    /*border: 2px solid var(--now-cr);*/
}

#nowSec05 .tvc_wrap .media_list .media_item span {
    font-size: 2.6rem;
    padding: 10px 0;
    display: inline-block;
}

#nowSec05 .tvc_wrap .media_list .media_item iframe {
    height: 222px;
    width: 394px;
}

@media screen and (max-width: 800px) {
    #nowSec05 .sec_05_inner {
        gap: 60px;
    }

    #nowSec05 .contact_wrap,
    #nowSec05 .tvc_wrap {
        width: 100%;
    }

    #nowSec05 .deco_txt {
        gap: 60px;
        font-size: clamp(1.8rem, 4.8vw, 4rem);
    }

    #nowSec05 .deco_txt span::after {
        height: 16px;
    }

    #nowSec05 .contact_wrap h3 {
        font-size: clamp(3.2rem, 9vw, 6rem);
    }

    #nowSec05 .contact_wrap p {
        font-size: clamp(1.8rem, 4.8vw, 4rem);
    }

    #nowSec05 #contactBtn {
        font-size: 2.2rem;
        padding: 6px 75px 6px 30px;
        margin-top: 40px;
    }

    #nowSec05 .tvc_wrap {
        padding: 30px 20px;
        gap: 30px;
    }

    #nowSec05 .tvc_wrap h4 {
        font-size: clamp(1.8rem, 4.8vw, 4rem);
    }

    #nowSec05 .tvc_wrap h4::before,
    #nowSec05 .tvc_wrap h4::after {
        width: 80px;
    }

    #nowSec05 .tvc_wrap h4::before {
        left: -90px;
    }

    #nowSec05 .tvc_wrap h4::after {
        right: -90px;
    }

    #nowSec05 .tvc_wrap .media_list {
        flex-direction: column;
        gap: 18px;
        padding: 0 20px;
    }

    #nowSec05 .tvc_wrap .media_list .media_item {
        border: 2px solid var(--now-cr);
    }

    #nowSec05 .tvc_wrap .media_list .media_item iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
    }

    #nowSec05 .tvc_wrap .media_list .media_item span {
        font-size: clamp(1.6rem, 3.6vw, 3rem);
    }
}

@media screen and (max-width: 480px) {

    #nowSec05 .deco_txt {
        gap: 40px;
    }

    #nowSec05 .deco_txt span::after {
        right: -20px;
    }
}


/***** now section5 END *****/

/***** now section6 *****/

#nowSec06 {
    background: #333;
    padding: 90px 0;
}

#nowSec06 .caution_wrap {
    font-size: 1.6rem;
    color: #fff;
    opacity: 0.4;
}

#nowSec06 .caution_wrap h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

#nowSec06 .caution_wrap .caution_cont {
    margin-bottom: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

#nowSec06 .caution_wrap .caution_cont .caution_li {
    margin-left: 20px;
}

#nowSec06 .caution_wrap .caution_cont .caution_li li {
    position: relative;
    font-weight: lighter;
    line-height: 2rem;
}

#nowSec06 .caution_wrap .caution_cont .caution_li li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: -12px;
    width: 5px;
    height: 2px;
    background: #fff;
}

#nowSec06 .unfold_btn_area {
    display: none;
}

@media screen and (max-width: 800px) {
    #nowSec06 {
        background: #333;
        padding: 15vw 6.25vw;
        position: relative;
    }

    #nowSec06 .sec_06_inner {
        height: 200px;
        overflow: hidden;
        transition: height 0.4s ease;
    }

    #nowSec06 .caution_wrap {
        font-size: 3vw;
    }

    #nowSec06 .caution_wrap h3 {
        font-size: 3.25vw;
        margin-bottom: 2.5vw;
    }

    #nowSec06 .caution_wrap .caution_cont {
        margin-bottom: 5vw;
    }

    #nowSec06 .caution_wrap .caution_cont h4 {
        font-weight: 700;
        margin-bottom: 1.75vw;
    }

    #nowSec06 .caution_wrap .caution_cont .caution_li {
        margin-left: 2vw;
    }

    #nowSec06 .caution_wrap .caution_cont .caution_li li {
        line-height: 4.8vw;
    }

    #nowSec06 .caution_wrap .caution_cont .caution_li li::before {
        content: "";
        position: absolute;
        top: 2vw;
        left: -2vw;
        width: 1vw;
    }

    #nowSec06 .unfold_btn_area {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to bottom,
            rgba(51, 51, 51, 0) 0%,
            rgba(51, 51, 51, 0.8) 50%,
            rgba(51, 51, 51, 1) 100%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 25px;
        z-index: 10;
    }

    #nowSec06 .btn_unfold {
        padding: 12px 30px;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        border: 3px solid #fff;
        border-radius: 50px;
        cursor: pointer;
    }

    #nowSec06.is_open .unfold_btn_area {
        display: none;
    }

    #nowSec06.is_open .sec_06_inner {
        height: auto;
        max-height: 5000px;
    }
}



/***** now section6 END *****/

/***** INTRODUCE *****/

.wrap.introduce {
    text-align: center;
}

.wrap.introduce #introduceSec01 {
    background: #fff;
    position: relative;
    padding-bottom: var(--gap-180);
}

.wrap.introduce #introduceSec01 .introduce_tit {
    padding-top: var(--gap-80);
    margin-bottom: var(--gap-80);
}

.wrap.introduce #introduceSec01 .introduce_tit span {
    color: var(--now-cr2);
    font-size: 3.5rem;
    background: url(../images/introduce/tit_label01.png) no-repeat center / 200px 70px;
    padding: 7px 60px 26px;
    display: flex;
    margin: 10px auto;
    width: fit-content;
}

.wrap.introduce #introduceSec01 .introduce_tit h3 {
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-now-point);
}

.wrap.introduce #introduceSec01 .introduce_tit h3 em {
    color: #fff;
    background: var(--now-cr2);
    line-height: 1;
    display: inline-block;
    padding: 1px 2px;
}

.wrap.introduce #introduceSec01 .introduce_cont {
    font-family: var(--font-now-point);
    margin-top: var(--gap-60);
}

.wrap.introduce #introduceSec01 .introduce_cont strong {
    font-weight: 700;
    font-size: 4rem;
}

.wrap.introduce #introduceSec01 .introduce_cont strong span {
    background: var(--now-cr2);
    line-height: 1.2;
    display: inline-block;
    color: #fff;
    padding: 1px 2px;
}

.wrap.introduce #introduceSec01 .introduce_cont p {
    margin-top: 90px;
    font-size: 2.5rem;
    font-weight: 400;
}

.wrap.introduce #introduceSec01 .introduce_cont p span {
    color: var(--now-cr2);
    font-weight: 700;
}

.wrap.introduce #introduceSec01 .introduce_kv {
    margin-bottom: 58px;
}

.wrap.introduce #introduceSec01 .introduce_kv img {
    display: block;
    margin: 0 auto;
}

.wrap.introduce #introduceSec02 {
    background: var(--now-cr2);
    position: relative;
    padding: var(--gap-180) 0;
}

.wrap.introduce #introduceSec02 .slo_group_tit span {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.9;
    background: url(../images/introduce/tit_label02.png) no-repeat center / 570px 85px;
    padding: 7px 30px 26px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
    white-space: nowrap;
}

.wrap.introduce #introduceSec02 .slo_group_tit h3 {
    font-size: 8rem;
    font-weight: 700;
    font-family: var(--font-now-point);
    color: #fff;
}

.wrap.introduce #introduceSec02 .slo_group_cont {
    display: flex;
    justify-content: center;
    margin-top: var(--gap-80);
    font-family: var(--font-now-point);
}

.slo_group_list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    box-sizing: border-box;
}

.slo_group_list::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 230px;
    width: 2px;
    height: 105%;
    background: #fff;
    z-index: 1;
}

.slo_group_list li {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.slo_group_list li>span {
    width: 200px;
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    text-align: right;
    padding-right: 25px;
    box-sizing: border-box;
    display: inline-block;
    letter-spacing: -0.03em;
}

.slo_group_list li>span.big {
    font-size: 8rem;
    font-weight: 900;
    font-style: italic;
    padding-right: 25px;
}

.slo_group_list li::after {
    content: "";
    position: absolute;
    left: 231px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
}

.slo_group_list li:has(span.big)::after {
    width: 14px;
    height: 14px;
}


.slo_group_list li .slo_group_box {
    flex: 1;
    margin-left: 90px;
    z-index: 1;
    background: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    box-sizing: border-box;
}

.slo_group_list li>.slo_group_box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrap.introduce #introduceSec03 {
    background: #fff;
    position: relative;
    padding: var(--gap-180) 0;
}

.wrap.introduce #introduceSec03 .slo_tit h3 {
    font-size: 8rem;
    font-weight: 700;
    font-family: var(--font-now-point);
    color: var(--now-cr2);
}

.wrap.introduce #introduceSec03 .slo_cont .slogans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-top: var(--gap-80);
    font-family: var(--font-now-point);
}

.wrap.introduce #introduceSec03 .slo_cont .slogans li {
    background: #f5f5f5;
}

.wrap.introduce #introduceSec03 .slo_cont .slogans .slogan_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 242px;
    height: 204px;
}

.wrap.introduce #introduceSec03 .slo_cont .slogans li img {
    display: block;
    margin: auto;
}

.wrap.introduce #introduceSec03 .slo_cont .slogans li P {
    background: #d3d3d3;
    color: #000;
    font-size: 2.6rem;
    font-weight: bold;
    padding: 22px 0;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .wrap.introduce #introduceSec01 {
        padding-bottom: var(--gap-120);
    }

    .wrap.introduce #introduceSec01 .introduce_tit {
        padding-top: var(--gap-120);
        margin-bottom: var(--gap-60);
    }

    .wrap.introduce #introduceSec01 .introduce_tit span {
        font-size: clamp(1.8rem, 4.6vw, 2.4rem);
        background: url(../images/introduce/tit_label01.png) no-repeat center / 152px 52px;
        padding: 7px 60px 21px;
    }

    .wrap.introduce #introduceSec01 .introduce_tit h3 {
        font-size: clamp(4.8rem, 12vw, 9.8rem);
    }

    .wrap.introduce #introduceSec01 .introduce_cont {
        margin-top: var(--gap-40);
    }

    .wrap.introduce #introduceSec01 .introduce_cont strong {
        font-size: clamp(2.4rem, 5.8vw, 4rem);
    }

    .wrap.introduce #introduceSec01 .introduce_cont p {
        margin-top: var(--gap-60);
        font-size: clamp(1.3rem, 3.6vw, 2.8rem);
        line-height: 1.6;
    }

    .wrap.introduce #introduceSec02 {
        padding: var(--gap-120) 0;
    }

    .wrap.introduce #introduceSec02 .slo_group_tit span {
        font-size: clamp(1.8rem, 4.6vw, 2.4rem);
        background: url(../images/introduce/tit_label02.png) no-repeat center / 410px 68px;
        padding: 7px 30px 26px;
    }

    .wrap.introduce #introduceSec02 .slo_group_tit h3,
    .wrap.introduce #introduceSec03 .slo_tit h3 {
        font-size: clamp(4.2rem, 10vw, 8rem);
    }

    .wrap.introduce #introduceSec02 .slo_group_cont {
        margin-top: var(--gap-60);
        font-family: var(--font-now-point);
    }

    .slo_group_list {
        gap: 10px;
        padding: 0 16px;
    }

    .slo_group_list::before {
        content: "";
        left: 123px;
        top: 66px;
        height: 113%;
    }

    .slo_group_list li>span {
        width: 84px;
        font-size: clamp(1.6rem, 3.4vw, 2rem);
        padding-right: 15px;
    }

    .slo_group_list li>span.big {
        font-size: clamp(2.8rem, 7.4vw, 3.2rem);
        padding-right: 15px;
        line-height: 1;
    }

    .slo_group_list li::after {
        left: 108px;
        width: 8px;
        height: 8px;
    }

    .slo_group_list li:has(span.big)::after {
        width: 10px;
        height: 10px;
    }

    .slo_group_list li>.slo_group_box {
        margin-left: 50px;
        border-radius: 30px;
        height: 140px;
    }

    .slo_group_list li>.slo_group_box img {
        max-width: 85%;
        max-height: 72px;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .wrap.introduce #introduceSec03 {
        padding: var(--gap-120) 0;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans {
        gap: 1.5vw;
        margin-top: var(--gap-60);
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li.dp_mob {
        flex-basis: 100%;
        height: 0;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans .slogan_wrap {
        width: 28.38vw;
        height: 25.5vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(1) img {
        height: 10.5vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(2) img {
        height: 7.25vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(4) img {
        height: 10vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(5) img {
        height: 8.13vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(6) img {
        height: 11.88vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(1) img {
        height: 10.5vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(2) img {
        height: 7.25vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(3) img {
        height: 10vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(4) img {
        height: 8.13vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(5) img {
        height: 11.88vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li:nth-child(6) img {
        height: 7.2vw;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li img {
        display: block;
        margin: auto;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans li P {
        font-size: 4vw;
        padding: 2.5vw 0;
    }
}

@media screen and (max-width: 480px) {
    .wrap.introduce #introduceSec01 {
        padding-bottom: var(--gap-80);
    }

    .wrap.introduce #introduceSec01 .introduce_tit {
        padding-top: var(--gap-80);
        margin-bottom: var(--gap-40);
    }

    .wrap.introduce #introduceSec01 .introduce_tit span {
        background: url(../images/introduce/tit_label01.png) no-repeat center / 130px 46px;
        padding: 6px 44px 21px;
    }

    .wrap.introduce #introduceSec01 .introduce_cont p {
        margin-top: var(--gap-40);
    }

    .wrap.introduce #introduceSec02 {
        padding: var(--gap-80) 0;
    }

    .wrap.introduce #introduceSec02 .slo_group_cont {
        margin-top: var(--gap-40);
    }

    .wrap.introduce #introduceSec02 .slo_group_tit span {
        font-size: 1.7rem;
        background: url(../images/introduce/tit_label02.png) no-repeat center / 310px 54px;
        padding: 13px 30px 26px;
    }

    .slo_group_list::before {
        left: 109px;
        top: 56px;
    }

    .slo_group_list li::after {
        left: 94px;
    }

    .slo_group_list li>.slo_group_box {
        margin-left: 30px;
        height: 105px;
    }

    .slo_group_list li>.slo_group_box img {
        max-height: 60px;
    }

    .wrap.introduce #introduceSec03 {
        padding: var(--gap-80) 0;
    }

    .wrap.introduce #introduceSec03 .slo_cont .slogans {
        margin-top: var(--gap-40);
    }

}

/***** INTRODUCE END *****/

/***** SUPPORT *****/

.wrap.support #supportSec01 {
    background: url(../images/support/support_kv.png) no-repeat center 99%;
    font-family: var(--font-now-point);
    min-height: 886px;
    position: relative;
    padding: var(--gap-180) 0;
    text-align: center;
}

.wrap.support #supportSec01 .support_tit h3 {
    margin-bottom: var(--gap-80);
    font-size: 10rem;
    font-weight: 900;
    margin: 0 auto;
}

.wrap.support #supportSec01 .support_tit span {
    position: relative;
}

.wrap.support #supportSec01 .support_tit span::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background: var(--now-cr);
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
}

.wrap.support #supportSec01 p {
    font-size: 4rem;
    margin-top: 50px;
}

.wrap.support #supportSec01 p b {
    font-weight: 700;
}

.wrap.support #supportSec01 p b span {
    font-weight: 700;
    color: #fff;
    background: var(--now-cr);
}

.wrap.support #supportBtn {
    width: fit-content;
    margin: 0 auto;
    margin-top: var(--gap-80);
}

.wrap.support #supportSec02 {
    background: url(../images/support/support_bg.png) no-repeat center;
    font-family: var(--font-now-point);
    min-height: 2016px;
    position: relative;
    padding: var(--gap-180) 0;
}

.wrap.support #supportSec02 .list_tit span {
    font-size: 5.5rem;
    background: url(../images/introduce/tit_label03.png) no-repeat center / 368px 140px;
    padding: 20px 90px 56px;
    display: flex;
    margin: 0 auto;
    width: fit-content;
    font-weight: 700;
}

.wrap.support #supportSec02 .support_list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-80);
    width: 1200px;
    margin: var(--gap-80) auto 0;
}

.wrap.support #supportSec02 .support_list li {
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.wrap.support #supportSec02 .support_list li a {
    width: fit-content;
}

.wrap.support #supportSec02 .support_list li .support_list_num {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: #000;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 55px;
    padding-bottom: 55px;
    box-sizing: border-box;
}

.wrap.support #supportSec02 .support_list li .support_item {
    padding: 40px;
    padding-right: 0;
    padding-bottom: 0;
}

.wrap.support #supportSec02 .support_list li p {
    color: var(--now-cr);
    font-size: 4rem;
}

.wrap.support #supportSec02 .support_list li h4 {
    font-size: 7rem;
    font-weight: 700;
    margin-top: 20px;
}

.wrap.support #supportSec02 .support_list li .support_list_link {
    align-self: flex-end;
}

@media screen and (max-width: 800px) {
    .wrap.support #supportSec01 {
        background: var(--now-cr) url(../images/support/support_kv_mob.png) no-repeat center bottom;
        background-size: cover;
        min-height: 105vw;
        padding: var(--gap-120) 0;
    }

    .wrap.support #supportSec01 .support_tit h3 {
        margin-bottom: var(--gap-40);
        font-size: clamp(4.8rem, 12vw, 9.8rem);
    }

    .wrap.support #supportSec01 .support_tit span::before {
        width: 8px;
        height: 8px;
        border-radius: 10px;
        top: -8px;
    }

    .wrap.support #supportSec01 p {
        font-size: clamp(1.8rem, 5.2vw, 3.4rem);
        line-height: 1.4;
    }

    .wrap.support #supportBtn {
        margin-top: var(--gap-60);
    }

    .wrap.support #supportSec02 {
        background: url(../images/support/support_bg.png) repeat center / 800px;
        min-height: 1200px;
        padding: var(--gap-120) 0;
    }

    .wrap.support #supportSec02 .list_tit span {
        font-size: clamp(2.4rem, 3.8vw, 4rem);
        background: url(../images/introduce/tit_label03.png) no-repeat center / 192px 68px;
        padding: 8px 60px 24px;
        line-height: 1.8;
    }

    .wrap.support #supportSec02 .support_list {
        gap: var(--gap-40);
        width: 90%;
        margin: 20px auto 0;
    }

    .wrap.support #supportSec02 .support_list li {
        padding: 25px;
        gap: 30px;
    }

    .wrap.support #supportSec02 .support_list li .support_list_num {
        width: 80px;
        height: 80px;
        clip-path: polygon(0 0, 100% 0, 0 100%);
        font-size: 2rem;
        padding-right: 36px;
        padding-bottom: 36px;
    }

    .wrap.support #supportSec02 .support_list li .support_item {
        padding: 20px;
        padding-right: 0;
        padding-bottom: 0;
    }

    .wrap.support #supportSec02 .support_list li p {
        font-size: clamp(1.6rem, 4.2vw, 2.8rem);
    }

    .wrap.support #supportSec02 .support_list li h4 {
        font-size: clamp(2.4rem, 6.4vw, 3.6rem);
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .wrap.support #supportSec02 .list_tit span {
        background: url(../images/introduce/tit_label03.png) no-repeat center / 156px 58px;
        padding: 8px 60px 24px;
        line-height: 1.8;
    }

    .wrap.support #supportSec01,
    .wrap.support #supportSec02 {
        padding: var(--gap-80) 0;
    }

    .wrap.support #supportSec02 {
        min-height: initial;
    }
}

/***** SUPPORT END *****/