/* BYD Campaign Page Styles */

.text-center{
    text-align: center;
}
.contents {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    --colorRed: #D70C19;
}

.contents img {
    max-width: 100%;
    width: 100%;
    height: auto
}

.contents .c-kv {
    position: relative
}

@media screen and (min-width: 768px) {
    .contents .c-kv {
        padding-top:0;
    }
}

@media screen and (max-width: 767px) {
    .contents .c-kv {
        padding-top:0;
    }
}

.pcShow { display: block; }
.spShow { display: none; }
@media (max-width: 768px) {
	.pcShow { display: none; }
	.spShow { display: block; }
}


/* CTA Section */
.cta-section {
    background-color: white;
    padding: 80px 16px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
}
.cta-section .ctp-top{
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 50px;
}
.cta-section .ctp-top .highlight{
    color: #D70C19;
    font-size: 1.5rem;
}
.cta-annotation{
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .cta-section .ctp-top{
        margin-bottom: 16px;
        font-size: 1.0625rem;
        line-height: normal;
    }
    .cta-annotation{
        font-size: 1.125rem;
        margin-top: 24px;
    }

}
@media screen and (max-width: 767px) {
    .cta-section {
        padding: 48px 0 64px;
    }
}

.cta-section dl {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.cta-section dl dt {
    border: solid 1px var(--colorRed);
    padding: 5px 10px;
    color: var(--colorRed);
}
@media screen and (max-width: 767px) {
    .cta-section dl {
        font-size: 15px;
        margin-top: 24px;
    }
}

.cta-section .m-notes {
    margin-top: 16px;
    font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
    .cta-section .m-notes {
        font-size: 0.875rem;
        margin-top: 24px;
    }
}

.cta-section .m-button-normal.-size-md {
    width: 100%;
    max-width: 446px;
    height: 70px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 21px;
}
@media screen and (max-width: 767px) {
    .cta-section .m-button-normal.-size-md {
        width: 311px;
        height: 54px;
        font-size: 15px;
    }
}



.title-section-label .label{
    margin: auto;
    font-size: 2rem;
    line-height: 1.375;
    margin-bottom: 16px;
    
}
@media screen and (max-width: 767px) {
    .title-section-label .label{
        font-size: 1.25rem;
        margin-bottom: 24px;
        line-height: 1.35;
        
    }

}

.title-section-g {
    margin-bottom: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}
.title-section-g .big {
    font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
    .title-section-g {
        margin-bottom: 10px;
        font-size: 1rem;
    }
    .title-section-g .big {
        font-size: 1.25rem;
    }
}

.title-section-wrap {
    text-align: center;
    margin-top: 100px;
}

.title-section {
    position: relative;
    margin: auto;
    display: inline-block;
    min-width: 420px;
    padding: 0 52px;
    font-family: "Noto Sans JP", sans-serif;
    color: #342412;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.title-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    display: inline-block;
    width: 3px;
    height: 56px;
    background-color: var(--colorRed);
    border-radius: 25px;
    transform: rotate(-30deg);
}
.title-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    display: inline-block;
    width: 3px;
    height: 56px;
    background-color: var(--colorRed);
    border-radius: 25px;
    transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
    .title-section-wrap {
        margin-top: 100px;
    }
    .title-section {
        font-size: 1.375rem;
        min-width: 280px;
    }
    .title-section::before {
        bottom: -6px;
        height: 34px;
    }
    .title-section::after {
        bottom: -6px;
        height: 34px;
    }
}







.c-cars {
    padding: 80px 16px;
}
@media screen and (max-width: 767px) {
    .c-cars {
        padding: 0 16px;
    }
}

/* .contents .c-cars .m-list {
    margin: 40px auto 0;
    max-width: 1427px;
    display: flex;
    list-style: none
} */
/** display:gridにして配下のm-list_itemが均等の幅になるように修正 */
.contents .c-cars .m-list {
    margin: 50px auto 0;

}
.contents .c-cars .m-list:not(.before-update) {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 32px 32px;
    margin: 40px auto 0;
    max-width: 1427px;
    list-style: none;
}

.contents .c-cars .m-list_item {
    min-width: 0; /* 子要素幅が溢れないように */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 768px以上1200px未満で2段（1段目2個、2段目3個） */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .contents .c-cars .m-list:not(.before-update) {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-flow: row dense;
    }
    /* 1段目：1つ目と2つ目（各2カラム、中央に配置） */
    .contents .c-cars .m-list:not(.before-update) .m-list_item:nth-of-type(1) {
        grid-row: 1;
        grid-column: 2 / 4; /* 2から4まで（2カラム幅） */
    }
    .contents .c-cars .m-list:not(.before-update) .m-list_item:nth-of-type(2) {
        grid-row: 1;
        grid-column: 4 / 6; /* 4から6まで（2カラム幅） */
    }
    /* 2段目：3つ目、4つ目、5つ目（各2カラム） */
    .contents .c-cars .m-list:not(.before-update) .m-list_item:nth-of-type(3) {
        grid-row: 2;
        grid-column: 1 / 3; /* 1から3まで（2カラム） */
    }
    .contents .c-cars .m-list:not(.before-update) .m-list_item:nth-of-type(4) {
        grid-row: 2;
        grid-column: 3 / 5; /* 3から5まで（2カラム） */
    }
    .contents .c-cars .m-list:not(.before-update) .m-list_item:nth-of-type(5) {
        grid-row: 2;
        grid-column: 5 / 7; /* 5から7まで（2カラム） */
    }
}

/* 1200px以上で1行に全て均等に並ぶ（5カラム） */
@media screen and (min-width: 1200px) {
    .contents .c-cars .m-list {
        grid-template-columns: repeat(5, 1fr);
    }
    .contents .c-cars .m-list.before-update{
        grid-template-columns: repeat(4, 1fr);

    }
    .contents .c-cars .m-list .m-list_item:nth-of-type(1),
    .contents .c-cars .m-list .m-list_item:nth-of-type(2),
    .contents .c-cars .m-list .m-list_item:nth-of-type(3),
    .contents .c-cars .m-list .m-list_item:nth-of-type(4),
    .contents .c-cars .m-list .m-list_item:nth-of-type(5) {
        grid-row: auto;
        grid-column: auto;
    }
}
@media screen and (min-width: 768px){
    .contents .c-cars .m-list {
        margin: 60px auto 0;
        max-width: 1427px;
    
    }
}

/* スマホ用レスポンシブ */
@media screen and (max-width: 767px) {
    .contents .c-cars .m-list {
        grid-template-columns: 1fr;
        gap: 16.908vw 0;
        margin-bottom: 8.695vw;
    }
    .contents .c-cars .m-list_item {
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .contents .c-cars .m-list {
        justify-content:center;
        gap: 0 24px;
        margin-bottom: 28px
    }

    .contents .c-cars .m-list_item{
        padding-top: 0!important;

    }

    .contents .c-cars .m-list_item .image {
        margin-bottom: 29px
    }

    .contents .c-cars .m-list_item .m-button-normal.-size-md {
        margin-top: auto;
        width: 197px;
        height: 47px;
        font-size: 14px
    }
}

@media screen and (max-width: 767px) {
    .contents .c-cars .m-list {
        flex-direction:column;
        gap: 16.9082125604vw;
        margin-bottom: 8.6956521739vw
    }

    .contents .c-cars .m-list_item {
        width: 100%;
        text-align: center
    }

    .contents .c-cars .m-list_item .image {
        margin-bottom: 6.038647343vw;

    }

    .contents .c-cars .m-list_item .m-button-normal.-size-md {
        height: 14.4927536232vw;
        font-size: 3.8647342995vw
    }
}

@media screen and (min-width: 768px) {
    .contents .c-cars .m-notes {
        margin-bottom:41px
    }
}

@media screen and (max-width: 767px) {
    .contents .c-cars .m-notes {
        margin-bottom:8.9371980676vw
    }
}











.campaign-overview_txt {
    margin-top: 40px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: calc(36/20);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .campaign-overview_txt {
        margin-top: 24px;
        text-align: left;
        padding: 0 14px;
    }
}
.campaign-information{
    /* padding: 64px 16px 0; */
    background-color: #FFF;
}
.campaign-information h2{
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .campaign-information{
        padding: 32px 20px 0;
    }
}
.annotation{
    font-size: 0.875rem;
    font-weight: 400;
}
.m-notes.annotation{
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.m-notes.annotation:before{
    content : "※"
}
@media screen and (max-width: 767px) {
    .m-notes.annotation{
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
}
.campaign-detail{
    margin-top: 80px;
}
.campaign-detail .campaign-detail__head{
    text-align: center;
}
.campaign-detail .campaign-detail__head .title-section-g{
    font-size: 1.25rem;
}
.campaign-detail .campaign-detail__head .annotation{
    margin-top: 8px;
}
@media screen and (max-width: 767px) {
    .campaign-detail{
        margin-top: 48px;
    }
    .campaign-detail .campaign-detail__head .title-section-g{
        font-size: 1rem;
    }
    .campaign-detail .campaign-detail__head .title-section{
        padding: 0 20px;
    }
}

.flex{
    display: flex;
}
.flex-column{
    flex-direction: column;
}
@media screen and (max-width: 767px) {
    .flex-sp-column{
        flex-direction: column;
    }
}
.content-title{
    font-size : 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .content-title{
        font-size: 1.375rem;
    }
}
.bg-gray{
    background-color: #F5F5F5;
}
.bg-white{
    background-color: #ffffff;
}
.section-inner{
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;


}
.contents-inner{
    max-width: 996px;
    margin: auto;
    padding: 0 16px;

}
@media screen and (max-width: 767px) {
    .contents-inner{
        padding: 0;
    }
}
.c-join{
    margin-top: 80px;
    padding-bottom: 120px;
}
.c-join .join-flex{
    gap: 0 24px;
}
.c-join .join-flex .join-flex-box{
    width: 33.3333%;
}
@media screen and (max-width: 767px) {
    .c-join{
        margin-top: 0;
    }
    .c-join .join-flex{
        gap: 32px 0;
    }
    .c-join .join-flex .join-flex-box{
        width: 100%;
    }
}
.c-campaign-goods{
    padding: 80px 0;
}
@media screen and (max-width: 768px) {
    .c-campaign-goods{
        padding: 48px 0;
    }
}
.label{
    background-color: #D70C19;
    color: #ffffff;
    width: fit-content;
    height: fit-content;
    padding: 0 6px;
}
.goods-box{
    border-radius: 14px;
    margin-top: 40px;
    padding: 32px 68px 54px;
}
.goods-box .goods{
    gap: 0 16px;
}
.goods-box .goods picture{
    flex: 1;
}
.goods-box .goods-information{
    margin-top: 40px;
    font-weight: 600;
}
.goods-box .goods-information .information-main{
    margin: 40px 0;
    font-size: 1.25rem;
}
.goods-box .goods-information .annotation{
    font-size: 1.0625rem;
    font-weight: 600;
    align-items: flex-start;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .goods-box{
        margin-top: 24px;
        padding: 8px 0;
    }
    .goods-box .goods{
        flex-direction: column;
        gap: 8px 0;
        padding-right: 14px;
    }
    .goods-box .goods-information{
        padding: 0 14px 40px;
        margin-top: 0;
        text-align: left;
    }
    .goods-box .goods-information .annotation{
        font-size: 0.875rem;
    }
    .goods-box .goods-information .information-main{
        margin: 24px 0 8px;

    }
}
.flex-box{
    border-radius: 14px;
    padding: 40px 0;
    margin-top: 24px;
}
.flex-box .col-left{
    width: 251px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #000000;
    color: #D70C19;
}
.flex-box .col-right{
    padding: 0 40px;
    flex: 1;
}
.flex-box .col-right .heading{
    font-size: 1.75rem;
    font-weight: 600;
}
.flex-box .col-right .heading .highlight{
    color: #D70C19;
}
.flex-box .col-right .heading .emphasize{
    font-size: 2.5rem;
}
.flex-box .col-right .information{
    margin-top: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 2;
}
.col-annotation{
    font-size: 0.875rem;
    line-height: calc(36/14);
    margin-top: 16px;
}
.col-annotation a{
    text-decoration: none;
}
.col-annotation span{
    color: #3730FF;
}
@media screen and (max-width: 767px) {
    .flex-box{
        padding: 0 15px 40px;
    }
    .flex-box .col-left{
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #000000;
        height: 91px;
        font-size: 1.125rem;
    }
    .flex-box .col-right{
        padding-left: 0;
        padding-right: 0;
        padding-top: 24px;
        font-size: 1.125rem;
        line-height: calc(36/18);
    }
    .flex-box .col-right .heading{
        text-align: center;
        font-size: 1.375rem;
        line-height: calc(36/22);
    }
    .flex-box .col-right .heading .emphasize{
        font-size: 1.375rem;
    }
    .flex-box .col-right .annotation{
        text-align: center;
    }
    .flex-box .col-right .information{
        font-size: 1.125rem;
        line-height: calc(36/18);
    }
    .col-annotation{
        line-height: calc(24/16);
    }
}
.campaign-term{
    display: flex;
    align-items: center;
    max-width: 872px;
    border: 2px solid var(--colorRed);
    height: 65px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.campaign-term .term-title{
    background-color: var(--colorRed);
    color: #FFF;
    width: 224px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.campaign-term .term{
    flex : 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--colorRed);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .campaign-term{
        flex-direction: column;
        height: auto;
        font-size: 1rem;
        margin: 0 0 40px;
    }
    .campaign-term .term-title{
        width: 100%;
        line-height: 30px;
    }
    .campaign-term .term{
        padding: 6px 0;
    }
}
.information-annotation{
    width: 87%;
    margin: auto;
}
@media screen and (max-width: 767px) {
    .information-annotation{
        width: 100%;
    }
}
.award-head{
    text-align: center;
    font-size: 2.5rem;
    font-weight: semibold;
}
.award-head .highlight{
    color: #D70C19;
}
.award-description{
    text-align: center;
    font-size: 1.25rem;
    line-height: calc(36/20);
    margin: 40px auto;
}
.award-description.width-limit{
    width: 87%;

}
.c-award{
    padding-top: 112px;
    
}
@media screen and (max-width: 768px) {

    .award-head{
        font-size: 1.375rem;
    }
    .award-description{
        font-size: 1rem;
        text-align: left;
        margin: 24px auto;
    }
    .c-award {
        padding-top: 64px;
    }
}
.hyblid-model{
    margin-top: 80px;
}
.about-sealion{
    position: relative;
}
.about-sealion__link{
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 300px;
    margin: auto;
}
@media screen and (max-width: 768px) {
    .hyblid-model{
        margin-top: 64px;
    }
    .about-sealion{
        margin-bottom: 157px;
    }
    .about-sealion__link{
        bottom: 24px;
        right: 0;
        left: 0;
        width: 85%;
    }

}
#bg-1{
    position: relative;
    background-color: #ffffff;
    padding-top: 80px;
    .bg-left-top{
        position: absolute;
    }
    .bg-right-bottom{
        position: absolute;
        
    }
    .section-inner, .contents-inner{
        position: relative;
        z-index: 1;
    }
}
#bg-2{
    position: relative;
    .bg-left-top{
        position: absolute;
    }
    .bg-right-bottom{
        position: absolute;
        
    }
    .section-inner{
        position: relative;
        z-index: 1;
    }
}
#bg-3{
    position: relative;
    .bg-left-top{
        position: absolute;
    }
    .bg-right-bottom{
        position: absolute;
        
    }
    /* .section-inner{
        position: relative;
        z-index: 1;
    } */
}
#bg-4{
    position: relative;
    .bg-left-top{
        position: absolute;
    }
    .bg-right-bottom{
        position: absolute;
        
    }
    .section-inner{
        position: relative;
        z-index: 1;
    }
}
#bg-5{
    position: relative;
    padding-bottom: 200px;
    .bg-left-top{
        position: absolute;
    }
    .bg-right-bottom{
        position: absolute;
        
    }
    .section-inner{
        position: relative;
        z-index: 1;
    }
}
@media screen and (min-width: 769px) {
    #bg-1{
        .bg-left-top{
            width: calc((410/1920) * 100%);
            max-width: 410px;
            top: -10px;
            left: 0;
        }
        .bg-right-bottom{
            width: calc((436/1920) * 100%);
            max-width: 436px;
            bottom: -145px;
            right: 0;
        }
    }
    #bg-2{
        .bg-left-top{
            width: calc((410/1920) * 100%);
            max-width: 410px;
            bottom: -72px;
            left: 0;
        }
        .bg-right-bottom{
            width: calc((436/1920) * 100%);
            max-width: 436px;
            top: 0;
            right: 0;
        }
    }
    #bg-3{
        .bg-left-top{
            width: calc((410/1920) * 100%);
            max-width: 410px;
            top: -100px;
            left: 0;
        }
        .bg-right-bottom{
            width: calc((436/1920) * 100%);
            max-width: 436px;
            top: 118px;
            right: 0;
        }
    }
    #bg-4{
        .bg-left-top{
            width: calc((473/1920) * 100%);
            bottom: -80px;
            left: 83px;
        }
        .bg-right-bottom{
            width: calc((511/1920) * 100%);
            top: 30px;
            right: 87px;
        }
    }
    #bg-5{
        .bg-left-top{
            width: calc((473/1920) * 100%);
            bottom: 22px;
            left: 83px;
        }
        .bg-right-bottom{
            width: calc((511/1920) * 100%);
            top: 30px;
            right: 87px;
        }
    }
}
@media screen and (max-width: 768px) {
    #bg-1{
        padding-top: 40px;
        .bg-left-top{
            width: calc((89/375) * 100%);
            top: -52px;
            left: -20px;
        }
        .bg-right-bottom{
            width: calc((91/375) * 100%);
            bottom: -93px;
            right: -20px;
        }
    }
    #bg-2{
        padding-top: 120px;
        padding-bottom: 238px;
        .bg-left-top{
            width: 100%;
            top : 0;
            left: 0;
        }
        .bg-right-bottom{
            width: 100%;
            bottom: 33px;
            right: 0;
        }
    }
    #bg-3{
        .bg-left-top{
            width: calc((89/375) * 100%);
            top: -45px;
            left: 0;
        }
        .bg-right-bottom{
            width: calc((91/375) * 100%);
            bottom: -37px;
            right: 0;
        }
    }
    #bg-4{
        padding-bottom: 232px;
        .bg-left-top{
            width: 100%;
            top : -115px;
            left: 0;
        }
        .bg-right-bottom{
            width: 100%;
            bottom: 27px;
            right: 0;
        }
    }
    #bg-5{
        padding-top: 150px;
        padding-bottom: 244px;
        .bg-left-top{
            width: 100%;
            top: 40px;
            left: 0;

        }
        .bg-right-bottom{
            right: 0;
            bottom: 40px;
        }
    }
}
.models-inner{
    max-width: 1018px;
    margin: 100px auto;

    padding: 0 16px;
    .model{
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .models-inner{
        gap: 24px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        margin: 76px auto 76px;

    }
}
@media screen and (min-width: 769px) {
    .models-inner{
        gap: 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
    }
}
.fair-information{
    margin: 96px auto 64px;
    .fair-head{
        margin-bottom: 24px;
    }
}
@media screen and (min-width: 769px) {
    .fair-information{
        margin: 100px auto 80px;
    }

}
.wrap-present-image{
    margin-top: 28px;
}
@media screen and (min-width: 769px) {
    .wrap-present-image{
        margin-top: 64px;
    }

}