@charset "utf-8";

/* ==============================


scroll animation

=================================*/

[fade] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.scroll-in {
    opacity: 1;
    transform: translateY(0);
}



/* ==============================


bg-solid

=================================*/


.bg-solid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: -3;
}

/* sec01 */
.bg-01 {
    top: -20vw;
}

/* sec02 */
.bg-04 {
    top: -85vw;
}

.bg-02 {
    top: 53vw;
}

.bg-03 {
    top: -25vw;
}

/* sec03 */
.bg-05 {
    top: -40vw;
}

.bg-06 {
    top: 105vw;
}

.bg-07 {
    top: -1vw;
}

.bg-08 {
    top: 138vw;
}

.bg-09 {
    top: -183vw;
}


/* sec04 */
.bg-10 {
    top: -55vw;
}


.bg-11 {
    top: -10vw;
}

.bg-12 {
    top: 60vw;
}

/* sec05 */
.bg-13 {
    top: -47vw;
}


@media screen and (min-width: 768px) and (max-width: 1100px) {
    .bg-solid svg path {
        stroke-width: 13 !important;
    }
}

@media screen and (max-width: 767px) {
    .bg-solid {
        left: -5vw;
        width: 110vw;
    }

    .bg-solid svg path {
        stroke-width: 17 !important;
    }



    /* sec01 */
    .bg-01 {
        top: clamp(0px, 30vw, 112px);
    }

    /* sec02 */
    .bg-04 {
        top: clamp(-1556px, -415vw, 0px);
    }

    .bg-02 {
        top: clamp(-938px, -250vw, 0px);
    }

    .bg-03 {
        top: clamp(-1293px, -345vw, 0px);
    }

    /* sec03 */
    .bg-05 {
        top: clamp(-2400px, -640vw, 0px);
    }

    .bg-06 {
        top: clamp(-1556px, -415vw, 0px);
    }

    .bg-07 {
        top: clamp(-2006px, -535vw, 0px);
        left: 0;
    }

    .bg-08 {
        top: clamp(-1162px, -310vw, 0px);
    }

    .bg-09 {
        top: clamp(-750px, -200vw, 0px);
    }

    /* sec04 */
    .bg-10 {
        top: clamp(-1250px, -335vw, 0px);
    }

    .bg-11 {
        top: clamp(1162px, 310vw, 1162px);
    }

    .bg-12 {
        top: clamp(1537px, 410vw, 1537px);
    }

    /* sec05 */
    .bg-13 {
        top: clamp(0px, 20vw, 75px);
    }


    .bg-s-14 {
        top: clamp(0px, 240vw, 900px);
    }

    .bg-s-15 {
        top: clamp(-600px, -160vw, 0px);
    }

    .bg-s-16 {
        top: clamp(0px, 162.7vw, 610px);
    }

    .bg-s-17 {
        top: clamp(0px, 373.3vw, 1400px);
    }

    .bg-s-18 {
        top: clamp(0px, 386.7vw, 1450px);
    }

    .bg-s-19 {
        top: clamp(0px, 533.3vw, 2000px);
    }

    .bg-s-20 {
        top: clamp(-200px, -53.3vw, 0px);
    }

    .bg-s-21 {
        top: clamp(-1100px, -293.3vw, 0px);
    }

    .bg-s-22 {
        top: clamp(-50px, -13.3vw, 0px);
    }

    .bg-s-23 {
        top: clamp(-900px, -240vw, 0px);
    }




}


/* ==============================


modal


=================================*/

/* モーダル背景 */
.modal {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    font-size: 16px;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fff;
    padding: clamp(0px, 7vw, 80px) 5%;
    border-radius: 31px;
    max-width: 830px;
    width: 90%;
    position: relative;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.modal-img {
    margin-bottom: 20px;
}

.modal-content p:nth-of-type(1) {
    margin-bottom: 20px;
}

.modal-content p:nth-of-type(2) {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.4;

}

@media screen and (max-width: 767px) {

    /* モーダル背景 */
    .modal {
        font-size: clamp(10px, 3.7vw, 14px);
        letter-spacing: normal;
    }

    .modal-content {
        padding: 40px 10% 20px 10%;
        border-radius: 18px;
        max-width: 450px;
        width: 90%;
    }

    .close {
        top: clamp(0px, 2.7vw, 10px);
        right: clamp(0px, 2.7vw, 10px);
        width: clamp(0px, 9.3vw, 35px);
        height: clamp(0px, 9.3vw, 35px);
    }

    .modal-content p:nth-of-type(1),
    .modal-img {
        margin-bottom: clamp(0px, 2.7vw, 10px);
    }


}

/* --- modal sp switch -------------------------------- */

.switch-container {
    width: 100%;
    height: 40px;
    background: #F7F3F2;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    margin-bottom: 1em;
}

.switch-slider {
    width: 50%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.3s;

}


.switch-container.active .switch-slider {
    left: 50%;
}

.switch-labels {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    gap: 20%;
    padding: 0 10px;
    font-size: 14px;
    pointer-events: none;

}

.switch-container span {
    font-weight: bold;
    font-size: clamp(10px, 3.7vw, 14px);
}

.switch-container span:nth-of-type(1) {
    color: #fff;
}

.switch-container span:nth-of-type(2) {
    color: #000;
}

.switch-container.active span:nth-of-type(1) {
    color: #000;
}

.switch-container.active span:nth-of-type(2) {
    color: #fff;
}

.modal-img.sp_non img {
    display: none;
    max-width: 100%;
    height: auto;
}

.modal-img.sp_non img.active {
    display: block;
}

/* ==============================


header


=================================*/

.header {
    position: fixed;
    top: -80px;
    left: 2%;
    width: 96%;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: top 0.4s ease;
    z-index: 1000;
}

.header>a {
    max-width: 280px;
    width: 30%;
    background-color: #E62113;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(10px, 1.4vw, 14px);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: normal;
    position: relative;
    padding-right: 2%;
    box-shadow: 0px 0px 8px 0px rgba(144, 125, 102, 0.16);
}

.header>a:hover {
    background-color: #000;
    color: #fff;
}

.header>a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 4%;
    width: clamp(0px, 3.6vw, 36px);
    height: clamp(0px, 0.6vw, 6px);
    background: url(/lp/new_stores/takanawa/imgs/btn-arrow-w.png) no-repeat center center/contain;
}


.header.show {
    top: 15px;
}

.header-link {
    box-shadow: 0px 0px 8px 0px rgba(144, 125, 102, 0.16);
    background-color: #fff;
    border-radius: 50px;
    max-width: 740px;
    width: 65%;
    padding: 0 3%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.header-link>a {
    width: clamp(0px, 12vw, 120px);
    margin-right: 20px;
}

.header-link>ul {
    display: flex;
    justify-content: space-around;
    width: 70%;
    gap: 5px;
}

.header-link>ul li a {
    color: #24292D;
    font-weight: 600;
    font-size: clamp(10px, 1.6vw, 16px);
    text-decoration: none;
    letter-spacing: 0.04em;
    position: relative;
}



.header-link>ul li a.active::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #E60001;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {

    .header {
        height: 50px;
        gap: 15px;
        background-color: #fff;
        padding: 0 6%;
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        box-shadow: 0px 0px 8px 0px rgba(144, 125, 102, 0.16);
    }

    .header>a {
        width: clamp(0px, 32vw, 150px);
        font-size: clamp(9px, 2.9vw, 11px);
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: normal;
        position: relative;
        padding-right: 0;
        box-shadow: none;
        margin-left: auto;
    }


    .header>a::before {
        display: none;
    }

    .header-link {
        box-shadow: 0px 0px 0px 0px rgba(144, 125, 102, 0.16);
        width: fit-content;
        padding: 0;
    }

    .header-link>a {
        width: 95px;
        margin-right: 0px;
    }

    /* --- menu -------------------------------- */

    .header-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 18px;
        height: 14px;
    }

    .header-menu span {
        background-color: #5A5A5A;
        width: 100%;
        height: 2px;
    }


    /* モバイルメニュー（初期は非表示） */
    .mobile-nav {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background-color: rgba(0, 0, 0, 0.2);
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    .mobile-nav>div {
        background-color: #fff;
        padding: 40px 5%;
        text-align: center;
        position: relative;
    }

    .mobile-nav .nav-logo {
        display: inline-block;
        margin-bottom: 30px;
        max-width: 120px;
    }

    .mobile-nav ul {
        margin-bottom: 30px;
    }

    .mobile-nav li:not(:nth-last-of-type(1)) {
        margin-bottom: 25px;
    }

    .mobile-nav li a {
        color: #24292D;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
    }

    .nav-btn {
        max-width: 280px;
    }

    .nav-close {
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .nav-close::before {
        content: "";
        display: inline-block;
        width: 36px;
        height: 36px;
        background: url(/lp/new_stores/takanawa/imgs/mol__close-btn-wh_sp.png) no-repeat center center/contain;
    }

    /* メニュー開閉時のスタイル */
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

}


/* ==============================


header


=================================*/

.modal-link>p {
    text-align: center;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}


.popup-buttons button {
    height: 60px;
    max-width: 405px;
    width: 45%;
    background-color: #E60001;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    position: relative;
}

.popup-buttons button:hover {
    background-color: #000;
}

.popup-buttons button.go-btn::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 36px;
    height: 6px;
    background: url(/lp/new_stores/takanawa/imgs/btn-arrow-w.png) no-repeat center center/contain;
}

.popup-buttons .close {
    top: 0;
    right: 0;
    background-color: #A8A8A8;

}


@media screen and (max-width: 767px) {

    .modal-link>p {
        font-size: 16px;
    }

    .popup-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .popup-buttons button {
        height: 60px;
        max-width: 405px;
        width: 100%;
        background-color: #E60001;
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
        position: relative;
    }


    .modal-content.modal-link .popup-buttons button:hover {
        background-color: #000;
    }

    .popup-buttons button.go-btn::before {
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        width: 36px;
        height: 6px;
        background: url(/lp/new_stores/takanawa/imgs/btn-arrow-w.png) no-repeat center center/contain;
    }

    .popup-buttons .close {
        top: 0;
        right: 0;
        background-color: #A8A8A8;

    }

}