@charset "utf-8";

/* フォント指定 */
@font-face {
    font-family: 'BirchStd';
    src: url('./fonts/BirchStd.otf') format('opentype');
}

body {
    overflow-x: hidden;
}

/* 共通項目設定 */
* {
    font-family: 'BirchStd', sans-serif;
    margin: 0;
    transition: all .8s;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    list-style: none;
    text-decoration: none;
}

section {
    height: 100%;
}

a {
    color: #c0ab92;
    cursor: pointer;
}


.out-btn {
    margin-bottom: 18px;
    margin-right: 100px;
    margin-left: auto;
    display: block;
    line-height: 1.5;
    width: 20%;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 1.8px;
    border-radius: 30px;
    color: black;
    padding: 8px 0 4px 0;
    background-color: #7f7f7f;
}

.in-btn {
    padding: 10px 5px 4px 5px;
    background-color: #7f7f7f;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    text-align: center;
    font-size: 2rem;
    margin: 18px auto;
    border-radius: 30px;
}

/* header */
header {
    background-color: black;
    display: flex;
    justify-content: space-between;
    height: 90px;
    padding: 8px;

    .company-logo {
        display: block;
        width: 30%;
        height: 100%;
        display: flex;
        padding: 8px;

        img {
            object-fit: cover;
            display: block;
            margin: 0 8px;
        }
    }

    nav {
        width: 50%;
        display: block;

        ul {
            display: flex;
            width: 100%;
            height: 100%;

            li {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;

                a {
                    font-size: 2rem;
                    width: 100%;
                    height: 100%;
                    text-align: center;
                    line-height: 2.6;
                }

                a:hover {
                    background-color: #7f7f7f;
                }

            }

            img {
                width: 20%;
            }

            img:hover {
                cursor: pointer;
            }
        }
    }

    .lang-options {
        transform: translateY();
    }
}

/* 言語選択 */
.lang-options {
    position: absolute;
    top: 90px;
    right: 0;
    background-color: black;
    width: 20%;
    display: none;
    transform: translateY(-10px);
    opacity: 0;
    z-index: 1000;
}

.lang-options.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.lang-options a {
    display: block;
    padding: 15px 20px;
    color: #c0ab92;
    text-align: center;
}

.lang-options a:hover {
    background-color: #333;
}



/* main (img) */
section article:nth-child(1) {
    position: relative;

    img {
        width: 100%;
        object-fit: cover;
    }

    h1 {
        font-size: 8rem;
        text-shadow: 3px 3px #c0ab9269;
        letter-spacing: 6px;
        font-size: 12rem;
        width: 90%;
        color: white;
        position: absolute;
        top: 50%;
        left: 60%;
        transform: translate(-50%, -50%);
    }
}

/* main (about) */
section article:nth-child(2) {
    text-align: right;
    position: relative;

    h2,
    p {
        font-weight: bold;
        padding: 18px 0;
        margin-right: 100px;
    }

    h2 {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        padding: 58px 0px 38px 0;
    }

    h1 {
        position: absolute;
        top: 0%;
        left: 10%;
        text-align: left;
        letter-spacing: 8px;
        font-size: 13rem;
    }

    p {
        line-height: 2.5;
    }

    .about-image {
        width: 100%;
        object-fit: cover;
        opacity: .8;
    }
}

/* main (service) */
section article:nth-child(3) {
    height: 130vh;

    h1 {
        font-size: 4rem;
        text-align: center;
        padding: 120px 0 18px 0;
        letter-spacing: 6px;
    }



    .items {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        padding: 18px;



        .item {
            width: calc((100% - 48px) / 3);
            border: 2px solid black;
            text-align: center;
            margin: 68px 0;
            padding: 30px 0;

            h2,
            p {
                padding: 30px 0;
            }

            h2 {
                font-size: 3rem;
                padding-bottom: 0;
                letter-spacing: 4px;
            }

            img {
                margin: 28px 0;
                height: 150px;
                object-fit: cover;
            }
        }
    }
}

/* store(shopItem) */
#shop {
    color: white;
    background-color: black;

    h1 {
        font-size: 4rem;
        text-align: center;
        padding: 120px 0 18px 0;
        letter-spacing: 6px;
    }

    article {
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        padding: 38px;

        .store {
            width: calc((100% - 8px) / 2);
            text-align: left;

            a {
               
                color: rgb(255, 255, 255);

            }

            /* オンラインストアの右写真親要素 */
            div {
                display: flex;
                background-color: #7f7f7f;
                height: 50vh;
            }

            .in-btn {
                width: 90%;
            }

            .store-image {
                width: 50%;
                display: block;
                margin: 0px auto;
                object-fit: cover;
            }

            /* オンラインの左側の単体の写真 */
            .online-image {
                width: 100%;
                margin: 0px auto;
                object-fit: cover;
            }

            h2 {
                padding: 18px 24px;
                font-size: 2rem;
                font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            }

            address {
                padding: 0px 28px;
                display: flex;

                p {
                    margin: 0;
                    padding: 0;
                    font-weight: normal;
                    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
                }

                p:nth-child(1) {
                    width: 20%;
                }

                p:nth-child(2) {
                    width: 80%;
                }

            }
        }
    }
}

/* new-arrival */
.arrival {
    background: black;
    width: 100%;
    padding: 80px 0;

    h1 {
        color: white;
        font-size: 4rem;
        text-align: center;
        padding: 120px 0 18px 0;
        letter-spacing: 6px;
    }

    a {
        color: white;
        background-color: rgba(197, 197, 197, 0.3);
    }
}



.Container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.Box-Container {
    display: flex;
    width: fit-content;
    transition: transform 2s ease;
    transform: translateX(0);
}

.Box {
    flex-shrink: 0;
    width: 500px;
    height: 600px;
    margin-right: 10px;
    border-radius: 10px;
    text-align: center;

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

    h3 {
        color: white;
    }

    p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 1.5rem;
    }
}

.Arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-color: rgba(197, 197, 197, 0.3);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.Arrow.left {
    left: 0;
}

.Arrow.right {
    right: 0;
}

.Hide {
    display: none;
}

/* company */
.comoany {
    width: 100%;
    background-image: url("/images/logo-footer.webp");
    background-size: cover;

    h1 {
        font-size: 4rem;
        text-align: center;
        padding: 38px 0;
    }

    .info {
        display: flex;
        border-top: 1px solid black;
        width: 50%;
        margin: 0 auto;
        padding: 18px 0;

        p {
            padding: 8px 0;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        p:nth-child(1) {
            width: 20%;
        }

        p:nth-child(2) {
            width: 80%;
        }
    }

    a {
        text-align: center;
        color: black;
        font-size: 10px;
        display: block;
        width: 50%;
        margin: 0 auto;
    }
}

/* footer */
footer {
    overflow: hidden;
    width: 100%;
    padding: 10% 0 0 0;

    label {
        display: flex;
        align-items: center;
        width: 30%;
        margin: 30px auto;
        padding: 18px 0;

        div {
            width: 40%;
            text-align: center;
        }

        img {
            width: 25%;
        }

        p {
            width: 70%;
            display: flex;
            align-items: center;
            font-weight: bold;
            letter-spacing: 1.5px;
        }


        .callnumber {
            font-size: 3rem;
        }


    }

    .in-btn {
        color: white;
    }

    .sns {
        width: 50%;
        padding: 28px 0;
        display: flex;
        justify-content: space-around;
        margin: 0 auto;

        a {
            width: 10%;

            img {
                width: 100%;
            }
        }
    }

    /* ラスト画像 */
    .footer-logo {
        background-color: black;
        margin-top: 120px;
        padding: 18px 0;

        .image-items {
            width: 10%;
            margin: 0 auto;
            display: flex;

            img {
                padding: 0 8px;
                height: 30px;
            }
        }
    }
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #c0ab92;
    margin: 5px 0;
    transition: all 0.3s;
}






















/* モバイルナビゲーション */
@media (max-width: 1200px) {
    section article:nth-child(1) {
        h1 {
            left: 50%;
        }
    }
}

@media (max-width: 900px) {

    /* ハンバーガー */
    .hamburger-menu {
        display: block;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: black;
        transition: all 0.3s;
        z-index: 999;
    }

    header nav.active {
        right: 0;
    }

    header nav ul {
        flex-direction: column;
        padding-top: 90px;
    }

    header nav ul li {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    header nav ul li a {
        font-size: 1.5rem;
    }

    header nav ul li img {
        max-width: 40px;
    }

    /* ハンバーガーメニューのアニメーション */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* header */
    header {
        .company-logo {
            width: 80%;
        }
    }

    .lang-options {
        max-width: 50%;
    }

    /* main */

    section article:nth-child(1) {
        h1 {
            text-align: center;
            font-size: 6rem;
        }
    }

    section article:nth-child(2) {
        h1 {
            font-size: 6rem;
            left: 5%
        }

        h2,
        p {
            margin-right: 20px;
        }

    }

    .out-btn {
        width: 20%;
        font-size: 1rem;
    }


    /* footer */
    footer {
        .image-items {
            width: 50%;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }
    }
}

@media (max-width: 800px) {
    section article:nth-child(1) {
        h1 {
            text-align: center;
            font-size: 4rem;
        }
    }

    section article:nth-child(2) {
        h1 {
            font-size: 4rem;
            left: 5%;
            line-height: 2;
        }

        h2 {
            font-size: 1.5rem;
        }

        p {
            font-size: 1rem;
            margin-right: 20px;
        }

    }


    .in-btn {
        width: 30%;
    }

    .Container {
        width: 100%;

        .Box {
            width: 400px;
            height: 500px;
        }
    }

    .comoany {
        .info {
            width: 90%;
        }
    }

    footer {
        label {
            width: 50%;

            p {
                width: 50%;
            }
        }
    }
}

@media (max-width: 500px) {
    section article:nth-child(2) {
        h1 {
            font-size: 2.5rem;
            left: 2%;
            line-height: 1.8;
            top: 40%;
        }

        h2 {
            font-size: 1.2rem;
            padding: 12px 0;
        }

        p {
            font-size: 0.9rem;
            margin-right: 20px;
            line-height: 1.8;
        }
    }

    .in-btn {
        width: 60%;
        font-size: 1.2rem;
    }

    section article:nth-child(3) {
        .items {
            flex-direction: column;
            padding: 10px;

            .item {
                width: 100%;
                margin: 10px 0;
                padding: 15px 0;

                h2 {
                    font-size: 1.8rem;
                }

                p {
                    font-size: 0.9rem;
                }
            }
        }
    }

    /* store(shopItem) */
    #shop {
        article {
            .store {
                h1 {
                    padding: 0;
                    font-size: 2rem;
                }

                h2 {
                    font-size: 1.2rem;
                    text-align: center;
                    padding: 12px 0;
                }

                address {
                    padding: 12px 10px;
                    flex-direction: column;

                    p {
                        width: 100%;
                        font-size: 0.9rem;
                        margin: 5px 0;
                    }

                    p:nth-child(1) {
                        margin-right: 0;
                    }
                }
            }
        }
    }

    footer {
        label {
            width: 90%;
            margin: 20px auto;

            .callnumber {
                font-size: 1rem;
            }
        }
    }
}

@media (max-width: 450px) {
    header {
        height: 70px;
        padding: 5px;

        .company-logo {
            width: 60%;

            img {
                padding: 3px 0;
            }
        }
    }

    .lang-options {
        width: 40%;
    }

    section article:nth-child(1) {
        h1 {
            font-size: 2rem;
            width: 100%;
            text-align: center;
            padding: 0 15px;
            letter-spacing: 3px;
        }
    }

    section article:nth-child(2) {
        position: relative;

        h1 {
            font-size: 2.5rem;
            position: absolute;
            top: 50%;
            left: 30%;
            transform: translateX(-50%);
            line-height: 1.4;
            letter-spacing: 4px;
            width: 100%;
            text-align: center;
            padding: 20px 0;
        }

        h2 {
            font-size: 1.1rem;
            padding: 10px 0;
            margin-top: 20px;
        }

        p {
            font-size: 0.85rem;
            margin-right: 15px;
            line-height: 1.6;
        }

        .about-image {
            margin-top: 20px;
        }
    }



    .out-btn {
        width: 30%;
        padding: 8px 5px 4px 5px;
        font-size: 1.1rem;
        margin-right: 15px;
        margin-bottom: 12px;
    }

    section article:nth-child(3) {
        height: auto;
        padding: 20px 0;

        h1 {
            font-size: 1.8rem;
            padding: 60px 0 12px 0;
            letter-spacing: 3px;
        }

        .items {
            padding: 8px;

            .item {
                margin: 8px 0;
                padding: 12px 0;

                h2 {
                    font-size: 1.5rem;
                    padding: 15px 0;
                }

                p {
                    font-size: 0.85rem;
                    padding: 10px 0;
                }

                img {
                    height: 120px;
                    margin: 15px 0;
                }
            }
        }
    }

    #shop {
        h1 {
            font-size: 1.8rem;
            padding: 60px 0 12px 0;
            letter-spacing: 3px;
        }

        article {
            padding: 20px;

            .store {
                width: 100%;
                margin-bottom: 20px;

                h2 {
                    font-size: 1.1rem;
                    padding: 10px 0;
                }

                address {
                    padding: 8px 10px;

                    p {
                        font-size: 0.85rem;
                        margin: 3px 0;
                    }
                }

                .in-btn {
                    width: 80%;
                    padding: 8px 5px 4px 5px;
                }
            }
        }
    }

    .Container {
        width: 100%;
        padding: 0 8px;

        .Box {
            width: 260px;
            height: 350px;
            margin-right: 8px;
            padding: 0 5px;

            h3 {
                font-size: 1.1rem;
                margin: 8px 0;
            }

            p {
                font-size: 0.85rem;
                padding: 0 5px;
                margin: 0;
                line-height: 1.4;
                height: auto;
                overflow: visible;
            }
        }
    }

    .Arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    footer {
        padding: 5% 0 0 0;

        label {
            width: 85%;
            margin: 15px auto;
            padding: 12px 0;

            .callnumber {
                width: 100%;
            }

            p {
                font-size: 0.85rem;
                width: 100%;
            }
        }

        .sns {
            width: 70%;
            padding: 20px 0;

            a {
                width: 15%;
            }
        }

        .footer-logo {
            margin-top: 60px;
            padding: 12px 0;

            .image-items {
                width: 60%;

                img {
                    height: 25px;
                }
            }
        }
    }
}


/* アニメーション */

.animate {
    opacity: 0;
    transition: all 0.9s;
}

.animate.appear {
    opacity: 1;
}