@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    font-size: 0.875rem;
    color: #FFFFFF;
    background-color: #030303;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

.container {
    max-width: 1200px;
    padding-inline: 10px;
    margin-inline: auto;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
}

.logo a img {
    width: 200px;
    height: 80px;
    object-fit: cover;
}

.header-container .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.background .header-container {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #030303;
    z-index: 2;
}

.menu ul {
    display: flex;
}

.menu ul li {
    margin-left: 30px;
}

.menu ul li a {
    font-size: 1rem;
    font-weight: bolder;
    transition: all 0.3s;
}

.menu ul li a:hover {
    opacity: 0.7;
}

.hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    display: none;
}

.hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    width: 70%;
    margin-inline: auto;
    background-color: #030303;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) {
    top: 30px;
}

.hamburger span:nth-child(2) {
    top: 40px;
}

.hamburger span:nth-child(3) {
    top: 50px;
}

header.open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

header.open .hamburger span:nth-child(2) {
    opacity: 0;
}

header.open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

.to-top {
    position: fixed;
    z-index: 2;
    right: 5px;
    bottom: -100px;
    width: 100px;
    height: 20px;
    transition: all 0.3s;
}

.to-top span {
    position: relative;
    color: #FFFFFF;
    font-weight: 1.3rem;
    writing-mode: vertical-rl;
}

.to-top span::after {
    content: "";
    position: absolute;
    left: 25%;
    top: 110%;
    height: 30px;
    width: 1px;
    background-color: #FFFFFF;
}

header.background .to-top {
    bottom: 70px;
}

.to-top.hide {
    display: none;
}

.main-visuals {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-bottom: 150px;
}

.main-visuals img {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    animation: move 12s infinite linear;
    opacity: 0;
}

.main-visuals img:nth-child(1) {
    left: 0;
    animation-delay: 0s;
}

.main-visuals img:nth-child(2) {
    right: 0;
    animation-delay: 0s;
}

.main-visuals img:nth-child(3) {
    left: 0;
    animation-delay: 4s;
}

.main-visuals img:nth-child(4) {
    right: 0;
    animation-delay: 4s;
}

.main-visuals img:nth-child(5) {
    left: 0;
    animation-delay: 8s;
}

.main-visuals img:nth-child(6) {
    right: 0;
    animation-delay: 8s;
}

@keyframes move {

    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.subtitle {
    margin-bottom: 50px;
    font-size: 2.3rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
}

#about {
    margin-bottom: 100px;
}

.about-contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.about-contents:nth-of-type(2) {
    flex-direction: row-reverse;
}

.about-item {
    width: 45%;
}

.about-contents:nth-of-type(2) .about-item {
    margin-top: 110px;
}

.about-contents:nth-of-type(1) img {
    margin-top: 110px;
}

.about-item h3 {
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.about-item p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-contents img {
    width: 45%;
    height: 300px;
    object-fit: cover;
}

#product {
    margin-bottom: 80px;
}

.product-contents {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.product-contents li {
    background-color: #746937;
    width: 95%;
    margin-bottom: 30px;
    padding: 10px;
}

.product-contents li img {
    width: 100%;
    object-fit: cover;
    padding-bottom: 10px;
}

.price {
    text-align: right;
}

#news {
    margin-bottom: 80px;
}

.news-contents {
    width: 80%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
}

.news-item {
    width: 50%;
    text-align: center;
}

.news-item img {
    margin-inline: auto;
    width: 70%;
    object-fit: cover;
    margin-bottom: 20px;
}

.shop-contents {
    margin-inline: auto;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.shop-image {
    width: 500px;
}

.shop-info {
    padding-inline: 20px;
}

.shop-info li {
    font-size: 1rem;
}

.sns-menu {
    display: flex;
    justify-content: space-between;
}

.sns-menu img {
    width: 150px;
    margin-right: 50px;
}

.sns-menu ul {
    display: flex;
    align-items: center;
}

.sns-menu ul li {
    margin-left: 20px;
}

.google-map {
    width: 100%;
    height: 300px;
    margin-bottom: 100px;
}

#contact {
    margin-top: 100px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-form input[type="text"] {
    background-color: #FFFFFF;
    height: 30px;
    margin-bottom: 30px;
}

.contact-form textarea {
    background-color: #FFFFFF;
    height: 90px;
    margin-bottom: 30px;
}

.contact-form input[type="submit"] {
    background-color: #FFFFFF;
    width: 80px;
    height: 30px;
    transition: all 0.1s;
}

.contact-form input[type="submit"]:active {
    transform: translateY(2px);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.copy-right {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.7rem;
}

@media screen and (max-width: 820px) {

    .menu {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -300px;
        transition: all 0.3s;
        background-color: #FFFFFF;
        z-index: 2;
    }

    header.open .menu {
        left: 0;
        width: 100%;
    }

    .menu ul {
        flex-direction: column;
        margin-top: 50px;
    }

    .menu ul li {
        width: 50%;
        margin-bottom: 20px;
    }

    .menu ul li a {
        font-size: 1.2rem;
        color: #030303;
    }
    
    .hamburger {
        display: inline;
    }
    
    .main-visuals {
        margin-bottom: 100px;
    }

    .main-visuals img {
        width: 100%;
    }

    .about-contents, .about-contents:nth-of-type(2) {
        flex-direction: column;
    }

    .about-item {
        width: 100%;
    }

    .about-contents img {
        width: 100%;
    }

    .about-contents:nth-of-type(2) .about-item {
        margin-top: 0;
    }

    .about-contents:nth-of-type(1) img {
        margin-top: 0;
    }

    .about-item {
        margin-bottom: 20px;
    }

    .news-contents {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .news-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .shop-contents {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-image {
        width: 100%;
        margin-right: 0;
    }

    .shop-info {
        padding-inline: 0;
    }

    .sns-menu {
        width: 100vw;
        margin-inline: auto;
        flex-direction: column;
    }

    .sns-menu img {
        margin-inline: auto;
    }

    .sns-menu ul {
        max-width: 500px;
        justify-content: center;
    }

    .sns-menu ul li {
        margin-inline: auto;
    }

}