::selection {
    background-color: #000;
    color: #fff;
}

.contents-cover {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 100;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

a img {
    filter: brightness(1);
    transition: filter 0.3s;
}

a:hover img {
    filter: brightness(1.1);
    transition: filter 0.3s;
}

/* ----------------------------------------------------------------
Hero
----------------------------------------------------------------- */
#hero {
    width: 100%;
    position: relative;
}

#hero h1 {
    margin: 0;
    line-height: 0;
    /* 画像下の余白を除去 */
}

#hero h1 img {
    width: 100%;
    height: auto;
    display: block;
    /* インライン要素の余白を除去 */
}

#hero .logo-container {
    display: flex;
    flex-direction: column;
    /* transform: translateX(-50%) translateY(-50%); */
    position: absolute;
    bottom: 36%;
    left: 8%;
    width: 48%;
    margin: 0;

    .logo-1 {
        opacity: 0;
        transform: translateY(10px);
    }

    .logo-2 {
        width: 58%;
        margin-top: 8%;
        opacity: 0;
        transform: translateY(10px);
    }
}

#hero .hero-logo {
    position: absolute;
    bottom: 6%;
    left: 4%;
    width: 12%;
}

@media screen and (max-width: 768px) {
    #hero .logo-container {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 40%;
        left: 8%;
        width: 70%;
        margin: 0;

        .logo-1 {
            opacity: 0;
            transform: translateY(5px);
        }

        .logo-2 {
            width: 58%;
            margin-top: 8%;
            opacity: 0;
            transform: translateY(5px);
        }
    }

    #hero .hero-logo {
        position: absolute;
        bottom: 4%;
        left: 40%;
        width: 20%;
    }
}

.pc {
    display: block;
}

.sp {
    display: none;
}

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

    .sp {
        display: block;
    }
}


/* ----------------------------------------------------------------
Main Layout
----------------------------------------------------------------- */
#main {
    margin: 0 auto;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    #main {
        width: auto;
        max-width: 100%;
        overflow: hidden;
    }
}

@media screen and (min-width: 769px) {
    #main {
        width: 80%;
        max-width: 1000px;
    }
}

/* ----------------------------------------------------------------
Intro
----------------------------------------------------------------- */
.brand-intro {
    margin: 90px auto;
}

.intro-paragraph {
    display: block;
    text-align: center;
    font-size: 1rem;
    line-height: 2.4rem;
}

@media screen and (max-width: 768px) {
    .brand-intro {
        margin: 40px auto;
    }

    .intro-paragraph {
        font-size: 0.8rem;
        line-height: 1.6rem;
    }
}


/* ----------------------------------------------------------------
Look Items
----------------------------------------------------------------- */
.look-item {
    margin: 80px auto 240px auto;

    .photo-block {
        width: 60%;
        margin: 0 auto;

        h2 {
            font-weight: normal;
            font-size: 1.4rem;
            margin-top: 60px;
            margin-bottom: 20px;
        }

        p {
            font-size: 1rem;
        }
    }

    .item-block {
        display: flex;
        width: 100%;
        align-items: baseline;
        justify-content: center;
        gap: 40px;
        margin: 120px auto 0px auto;
        max-width: 1000px;

        .item {
            width: 280px;
            flex-shrink: 0;

            .photo {
                width: 100%;

                img {
                    width: 100%;
                    height: auto;
                }
            }

            .caption {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 40px;
                gap: 20px;
            }

            .click {
                font-size: 0.9rem;
                color: #fff;
                text-align: center;
                display: block;
                background: #000;
                width: 100px;
                margin: 40px auto 0 auto;
                padding: 4px 0;
                border: 1px solid #000;
                -webkit-tap-highlight-color: transparent;
                transition: background 0.3s ease;

                &:hover {
                    background: #fff;
                    color: #000;
                }
            }
        }
    }

    .col-2 {
        justify-content: space-evenly;
    }
}

@media screen and (max-width: 768px) {
    .look-item {
        margin: 40px auto 80px auto;

        .photo-block {
            width: 100%;
            margin: 0 auto;

            h2 {
                font-weight: normal;
                font-size: 0.95rem;
                width: 90%;
                margin: 30px auto 10px auto;
            }

            p {
                font-size: 0.7rem;
                width: 90%;
                margin: 0 auto;
            }
        }

        .item-block {
            width: 80%;
            gap: 10px;
            margin: 20px auto 0px auto;

            .item {
                width: 110px;
                flex-shrink: 0;

                .photo {
                    img {
                        width: 100%;
                        height: auto;
                    }
                }

                .caption {
                    font-size: 0.85rem;
                    display: block;
                    text-align: center;
                    margin-top: 5px;

                    .product {
                        line-height: 2;
                    }
                }

                .click {
                    max-width: 70px;
                    font-size: 0.7rem;
                    padding: 3px 0;
                    margin: 20px auto 0 auto;
                }
            }
        }
    }
}

/* ----------------------------------------------------------------
Recommend Items Grid
----------------------------------------------------------------- */
.recommend-items {
    margin: 80px auto;
    text-align: center;

    .recommend-title {
        font-size: 1.6rem;
        font-weight: normal;
        margin-bottom: 80px;
    }

    .recommend-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;

        .grid-item {
            display: block;
            /* transition: transform 0.3s ease; */

            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .recommend-items {
        .recommend-title {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .recommend-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 20px;
        }
    }
}

@media screen and (max-width: 480px) {
    .recommend-items {
        .recommend-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            padding: 0;
        }
    }
}

/* ----------------------------------------------------------------
Footer
----------------------------------------------------------------- */
#footer {
    width: 100%;
    margin: 160px auto;

    a:hover img {
        opacity: 0.5;
    }

    #footer-logo {
        margin: 0 auto 90px auto;

        h3 {
            width: 90px;
            margin: 0 auto 5px auto;

            img {
                width: 100%;
            }
        }

        p {
            font-size: 1.2rem;
            letter-spacing: 0.1rem;
        }
    }

    #footer-link {
        font-size: 0.8rem;
        letter-spacing: 0.1rem;
        margin: 0 auto 90px auto;
        text-align: center;

        a {
            display: block;
            margin: 0 auto 20px auto;
        }

        span {
            color: #aaa;
            margin: 0 25px;
            display: none;
        }
    }

    #footer-sns {
        margin: 0 auto 90px auto;

        p {
            font-size: 1rem;
            letter-spacing: 0.1rem;
            margin: 0 auto 40px auto;
            text-align: center;
            display: block;
        }

        img {
            width: 33px;
            margin: 0 15px;
        }

        a:nth-of-type(3) img {
            margin: 0 15px 0 8px;
        }
    }

    .footer-sns-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    #footer-copyright {
        width: 100%;
        text-align: center;
        margin: 0 auto 90px auto;

        p {
            font-size: 0.8rem;
            letter-spacing: 0.1rem;
        }
    }
}

@media screen and (max-width: 768px) {
    #footer {
        margin: 60px auto 60px auto;
    }
}