:root {
    --blue: #00b9ff;
    --red: #ff4e00
}

body {
    font-family: "Noto Sans JP", serif !important;
    width: 100%;
    max-width: 768px;
    margin: 0 auto !important;
    padding: 0;
}

@media screen and (min-width: 768px) {
    body {
        padding: 0;
        height: 100vh;
        overflow-x: hidden;
        position: relative;
        background: url(./img/main_bg.webp) no-repeat;
        background-position: top;
        background-attachment: fixed;
        background-size: cover;
    }
}



a {
    text-decoration: none !important;
    color: #fff !important;
}


@media screen and (min-width: 768px) {
    .sp {
        display: none;
    }

}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 店舗メニュー 編集不可 */
header {
    height: auto;
    background-color: #fff;
    width: 100%;
    position: fixed;
    z-index: 1000;
}

header .brandLogo {
    width: 20vw;
}

header .logo {
    width: 35vw;
}

header .headerBanner {
    background-color: #0f3675;
    color: #fff;
    font-size: min(3vw, 20px);
    letter-spacing: min(.5vw, .5px);
    height: fit-content;
    font-weight: 600;
    width: 35%;
    text-align: center;
}

header .bannerImg {
    position: fixed;
    top: 17vw;
    right: 0;
    width: 40%;
    cursor: pointer;
}

header .closeButton {
    position: fixed;
    top: 14vw;
    border-radius: 5vw;
    padding: 1vw 2vw;
    right: 0;
    font-size: 4vw;
    color: #000;
    background-color: #fff;
    width: fit-content;
    z-index: 100;
    cursor: pointer;
}

@keyframes fluffy {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.03);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.fixedLogo,
.fixedBanner {
    display: none;
}

@media screen and (min-width:768px) {
    header {
        display: none !important;
    }

    .fixedLogo {
        display: block;
        position: fixed;
        width: 150px;
        top: 50px;
        left: 50px;
    }

    .fixedBanner {
        display: block;
        position: fixed;
        width: 250px;
        bottom: 50px;
        right: 50px;
    }
}


.secHero {
    background: url(./img/fv_bg_sp.webp) no-repeat;
    background-size: cover;
    height: 150vw;
}

.secHero .img {
    width: 65%;
    margin: 0 auto;
    padding-top: 20vw;
}

@media screen and (min-width:768px) {
    .secHero {
        background: url(./img/fv_bg_pc.webp) no-repeat;
        background-size: cover;
        height: 768px;
    }

    .secHero .img {
        width: 530px;
        margin-left: 80px;
        padding-top: 75px;
    }
}

.secDeck {
    background: url(./img/deck_bg_sp.webp)no-repeat;
    background-size: cover;
    height: 150vw;
}

.secDeck .ttl {
    font-size: 7vw;
    font-weight: 700;
    letter-spacing: 1.5vw;
    text-align: center;
    padding-top: 17vw;
}

.secDeck .ttl .blue {
    color: var(--blue);
}

.secDeck .ttl .red {
    color: var(--red);
}

.secDeck .txt {
    text-align: center;
    font-size: 3.7vw;
    font-weight: 600;
    letter-spacing: .2vw;
    padding-top: 10vw;
}

.secDeck .img {
    width: 95%;
    margin: 0 auto;
    padding-top: 10vw;
}

@media screen and (min-width:768px) {
    .secDeck {
        background: url(./img/deck_bg_pc.webp)no-repeat;
        background-size: cover;
        height: 768px;
    }

    .secDeck .ttl {
        font-size: 45px;
        font-weight: 700;
        letter-spacing: 13px;
        padding-top: 50px;
    }

    .secDeck .txt {
        text-align: center;
        font-size: 18px;
        letter-spacing: 2px;
        padding-top: 30px;
        line-height: 50px;
    }

    .secDeck .img {
        width: 568px;
        margin: 0 auto;
        padding-top: 50px;
    }
}


.secReason {
    background: url(./img/reason_bg_sp.webp)no-repeat;
    background-size: cover;
    padding-bottom: 10vw;
}

.secReason .ttl {
    width: 80%;
    margin-left: 20%;
    padding-top: 10vw;
}

.secReason .txt {
    width: 90%;
    margin: 0 auto;
}

.secReason .txt .img {
    width: 30%;
}

.secReason .txt .copy {
    width: 70%;
    font-size: 2.7vw;
    font-weight: 500;
    color: #fff;
    letter-spacing: .3vw;
    text-align: justify;
    padding: 4vw 2vw;
}

.secReason .txt .copy span {
    font-size: 3.4vw;
    letter-spacing: .8vw;
    line-height: 7vw;
}

@media screen and (min-width: 768px) {
    .secReason {
        background: url(./img/reason_bg_pc.webp)no-repeat;
        background-size: cover;
        padding-bottom: 80px;
    }

    .secReason .ttl {
        width: 600px;
        margin-left: 168px;
        padding-top: 70px;
    }

    .secReason .txt {
        margin-top: -80px;
    }

    .secReason .txt .img {
        width: 23%;
        margin-left: 4%;
        margin-right: 2%;
    }

    .secReason .txt .copy {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 40px 20px;
        line-height: 30px;
    }

    .secReason .txt .copy span {
        font-size: 24px;
        letter-spacing: 3px;
        line-height: 44px;
    }
}

.secArea .txt {
    background-size: cover;
    height: 145vw;
    position: relative;
}

.secArea .txt.plan {
    background: url(./img/area_Img2_sp.webp)no-repeat;
}

.secArea .txt.design {
    background: url(./img/area_Img3_sp.webp)no-repeat;
}

.secArea .txt.interior {
    background: url(./img/area_Img4_sp.webp)no-repeat;
}

.secArea .txt .copy {
    color: #fff;
    position: absolute;
    bottom: 11vw;
    font-size: 2.5vw;
    letter-spacing: .2vw;
    font-weight: 500;
    line-height: 5vw;
    text-align: justify;
    width: 90%;
    left: 5%;
}

.secArea .txt.plan .copy {
    bottom: 16vw;
}

.secArea .txt.design .copy {
    color: #fff;
    position: absolute;
    bottom: 4vw;
}

.secArea .txt .copy span {
    font-size: 4.6vw;
    line-height: 9vw;
    font-weight: 700;
}

@media screen and (min-width:768px) {
    .secArea .txt.plan {
        background: url(./img/area_Img2_pc.webp)no-repeat;
        background-size: cover;
        height: 768px;
        position: relative;
    }

    .secArea .txt.design {
        background: url(./img/area_Img3_pc.webp)no-repeat;
        background-size: cover;
        height: 768px;
        position: relative;
    }

    .secArea .txt.interior {
        background: url(./img/area_Img4_pc.webp)no-repeat;
        background-size: cover;
        height: 768px;
        position: relative;
    }

    .secArea .txt .copy {
        bottom: 40px;
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 500;
        line-height: 40px;
        width: 600px;
        left: 64px;
    }

    .secArea .txt .copy span {
        font-size: 25px;
        line-height: 46px;
    }


    .secArea .txt.plan .copy {
        bottom: 60px;
    }

    .secArea .txt.design .copy {
        color: #fff;
        position: absolute;
        bottom: 40px;
    }
}


.secBasic {
    background: url(./img/basic_bg_pc.webp);
    padding-bottom: 10vw;
}

.secBasic .ttl {
    width: 80%;
    margin-left: 20%;
    padding-top: 10vw;
}

.secBasic .txt {
    position: relative;
}

.secBasic .txt .copy {
    position: absolute;
    bottom: 10vw;
    font-size: 2.7vw;
    font-weight: 500;
    letter-spacing: .2vw;
    width: 72%;
    left: 16%;
    line-height: 6vw;
    text-align: center;
}

.secBasic .txt .copy span {
    font-size: 4.5vw;
    letter-spacing: .7vw;
    line-height: 10vw;
    font-weight: 700;
}

@media screen and (min-width: 768px) {

    .secBasic {
        background: url(./img/basic_bg_pc.webp);
        padding-bottom: 60px;
    }

    .secBasic .ttl {
        width: 80%;
        margin-left: 20%;
        padding-top: 60px;
    }

    .secBasic .txt .copy {
        position: absolute;
        bottom: 50px;
        font-size: 12px;
        letter-spacing: 1px;
        line-height: 30px;
    }

    .secBasic .txt .copy span {
        font-size: 20px;
        letter-spacing: 2px;
        line-height: 30px;
    }
}