:root {
    --main-font-color: #111010;
    --back-color: #ebe9e9;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}



body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    background-color: var(--back-color);
    margin: 0 20px;

}


.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.container {
    max-width: 100vw;

}

.breadcrumb {
    font-size: 12px;
    margin-top: 100px;
    padding: 1em;
}

.breadcrumb__listgroup {
    display: flex;
}

.breadcrumb__item-link[href]:hover {
    opacity: 0.5;
}

.breadcrumb__listgroup>*+* {
    margin-left: 0.5em;
}

.breadcrumb__listgroup>*+*::before {
    content: ">";
    margin-left: 0.75em;
    margin-right: 0.75em;
}

.header {
    font-size: clamp(13px, 1.6vw, 2.5rem);
    font-weight: 600;
    height: 70px;
    background-color: var(--back-color);
    position: fixed;
    top: 0;
    z-index: 5;
    color: var(--main-font-color);
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    margin-right: auto;
    margin-left: auto;
}


.nav__list {
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 900px) {

    .nav__list {

        gap: 50px;
    }
}

@media (max-width: 600px) {
    .header {

        padding: 0px;
    }

    .nav__list {

        gap: 20px;
    }
}


.nav__item a {
    position: relative;
    transition: all 0.1s ease;
}

.nav__item a::before {
    content: '・';
    position: absolute;
    left: -20%;
    opacity: 0;
    transition: all 0.2s ease;
}

.nav__item a:hover::before {
    opacity: 1;
    left: -20%;
}

/* top */

.top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 5%;
}


.top__text-left {
    font-size: clamp(9px, 1.8vw, 2.5rem);
    margin-top: 4%;



}

.top__title-left {

    font-weight: 800;
    line-height: 1.6em;

}



.top__text-cover {
    position: relative;
    transform: translate3d(0, 0, 0);
}

.top__text-cover::before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: #0c0c0c;
    -webkit-animation: passing-bar 1.1s ease 0s 1 normal forwards;
    animation: passing-bar 1.1s ease 0s 1 normal forwards;
}

.top__title {
    font-family: "Red Rose", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    top: 10%;
    color: var(--main-font-color);
    font-size: clamp(3rem, 23vw, 30rem);
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
    animation: passing-txt 0s ease .5s 1 normal forwards;
}




.main-image {
    position: relative;
    background-color: var(--back-color);
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
}

.main-image__left {
    width: 85%;
    position: relative;


}

.main-image img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-image__right {
    margin-left: 20px;
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.main-image__right-text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: sideways;
    text-orientation: sideways;
    text-align: center;
    font-weight: 600;
    font-size: clamp(10px, 8.2vw, 2rem);
    margin-bottom: 5px;
}


.main-image__arrow {
    position: absolute;
    top: 100px;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.main-image__arrow img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    bottom: 0;
    margin-right: 8px;
}

@media screen and (max-width: 400px) {
    .main-image__arrow {
        top: 22%;
    }

}

.main-image__texts {
    font-size: 1.5rem;
    color: var(--back-color);
    position: absolute;
    top: 60%;
    z-index: 1;
    display: flex;
    right: 0;
    margin-right: 20px;
    flex-direction: column;
    align-items: flex-end;

}

.texts {
    display: inline-block;
    position: relative;
    transform: translate3d(0, 0, 0);
    margin-bottom: 1em;
    text-align: right;
}

.main-image__text {
    line-height: 2.5rem;
    display: inline;
    padding-left: 0.5rem;
    padding-bottom: 0.2em;
    background: linear-gradient(transparent 0%, #0c0c0cea 0%);
    opacity: 0;
    transform: translate3d(0, 0, 0);
}

.texts::before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #0c0c0c;
}


.is_active .texts::before {
    -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
    animation: passing-bar 1s ease 0s 1 normal forwards;
}

.is_active .main-image__text {
    -webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
    animation: passing-txt 0s ease .5s 1 normal forwards;

}

@-webkit-keyframes passing-bar {
    0% {
        left: 0;
        width: 0;
        opacity: 0;

    }

    50% {
        left: 0;
        width: 100%;
        opacity: 1;

    }

    51% {
        left: 0;
        width: 100%;
        opacity: 1;

    }

    100% {
        left: 100%;
        width: 0;
        opacity: 1;

    }
}

@keyframes passing-bar {
    0% {
        left: 0;
        width: 0;
        opacity: 0;

    }

    50% {
        left: 0;
        width: 100%;
        opacity: 1;

    }

    51% {
        left: 0;
        width: 100%;
        opacity: 1;

    }

    100% {
        left: 100%;
        width: 0;
        opacity: 1;

    }
}

@-webkit-keyframes passing-txt {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes passing-txt {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .main-image__texts {
        font-size: 1rem;
        top: 70%;
    }

    .main-image__text {
        line-height: 2rem;
    }
}

@media (max-width: 630px) {
    .main-image__texts {
        font-size: 12px;
        font-weight: 600;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        text-align: start;
        top: 5%;
        color: var(--main-font-color);
        margin-right: 10px;
        align-items: flex-start;
    }

    .texts {
        text-align: start;
        margin-bottom: 0.5em;
    }

    .main-image__text {
        line-height: 1.5rem;
        padding-left: 0;
        padding-right: 1px;
        padding-bottom: 0;
        padding-top: 3px;
        background: linear-gradient(transparent 0%, #d5bbadab 0%);
    }


}


/* items */

.content {
    padding-top: 50px;
}

.item-container {
    margin-bottom: 30px;
    padding-top: 50px;
    margin-top: -50px;
}

.item-container__title {
    font-size: 1.2rem;
    margin-left: 10px;
    z-index: 3;
    color: #ffffff;
}




.title__set {
    display: grid;
    grid-template-columns: 0px auto;
    align-items: center;
    height: 100px;
    margin-bottom: 5px;

}

.item-container__video {
    height: 60px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.item-container__video video {
    width: 100%;
    height: 100%;
    transform-origin: center;
    object-fit: cover;

}




.item-container__set {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    justify-items: center;
}

.items img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;

}


.items {
    text-align: center;

}

.item-title {
    margin: 5px 0;
}


@media (max-width: 1200px) {
    .item-container__set {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 900px) {
    .item-container__set {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .item-container__set {
        grid-template-columns: 1fr;
    }
}

footer {
    border-top: 1px solid var(--main-font-color);
    height: 300px;
    font-size: 1rem;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
}

.footer__li {
    margin-bottom: 10px;

}

.icon img {
    width: 20px;
}


/* shoppingページ */
.shopping {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 60px;
    padding: 120px 20px;

}

.shopping-img {
    max-width: 30%;
    height: auto;
}

.shopping-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.shopping-details span,
.shopping-details form {
    margin-top: 30px;
}

.shopping-title {
    font-size: 2rem;
    font-weight: 600;
}

.shopping-price {
    font-size: 2rem;
    font-weight: 600;
}

.shopping-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    background: var(--main-font-color);
    color: var(--back-color);
    border-radius: 100vh;
    transition: 0.2s;
}

.shopping-btn:hover {
    background: #676772;
}





.message {
    font-size: 1.4rem;
    font-weight: 600;
    position: absolute;
    top: 200px;
    text-align: center;
    background: #ffffff;
    padding: 10px 120px;
    border: 2px solid #161616;
    border-radius: 10px;
    display: none;
    z-index: 10;
}

@media (max-width: 600px) {
    .shopping {
        flex-direction: column;
        gap: 30px;
    }

    .shopping-img {
        max-width: 60%;
        height: auto;
    }

    .message {
        font-size: 1rem;
        padding: 10px 20px;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%)
    }

    .shopping-title {
        font-size: 1.5rem;
    }

    .shopping-price {
        font-size: 1.5rem;
    }

    .shopping-details span,
    .shopping-details form {
        margin-top: 20px;
    }
}

/* cartページ */
.cart {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cart-empty {
    margin-top: 20%;
    margin-bottom: 100px;
    font-size: 1.2rem;
}




.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: var(--main-font-color) 1px solid;
    gap: 10px;
    padding: 20px;
    line-height: 2rem;
}

.cart-img {
    max-width: 20%;
    height: auto;
}

.total {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 40px;
    padding-top: 40px;
}

.cart-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    padding: 1rem 4rem;
    font-weight: bold;
    background: var(--main-font-color);
    color: var(--back-color);
    border-radius: 100vh;
    transition: 0.2s;
}

.cart-btn:hover {
    background: #676772;
}

.commission {
    line-height: 18px;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 400;
}

@media (max-width: 900px) {
    .cart {
        grid-template-columns: 1fr;
    }

    .total {
        border-top: var(--main-font-color) 1px solid;
    }


}

@media (max-width: 500px) {
    .cart-item {

        flex-direction: column;
        text-align: end;
    }

    .cart-img {
        max-width: 50%;
        height: auto;
    }

    .quantity {

        margin-right: 10px;
    }

    .cart-subtotal {
        border-top: var(--main-font-color) 1px solid;
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }

    .cart {
        grid-template-columns: 1fr;
    }

    .total {
        border-top: var(--main-font-color) 1px solid;
    }
}



input[type=number] {
    background-color: #ffffff;
    text-align: center;
}




input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}





/* .purchaseページ */

.purchase {
    margin-top: 30px;
}

.purchase-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}


.purchase-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
}

.form-group select {
    padding: 10px 15px;
}

.purchase-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 1rem 4rem;
    font-weight: bold;
    background: var(--main-font-color);
    color: var(--back-color);
    border-radius: 100vh;
    transition: 0.2s;
}

.purchase-btn:hover {
    background: #676772;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}



/* footer */
footer {
    display: flex;
    flex-direction: column;

}

.footer__ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 60px;

}

.footer__li {
    margin-bottom: 10px;
    padding: 5px;
}

.footer__li a {
    color: var(--main-font-color);
    transition: all 0.1s ease;
}

.footer__li.icon img {
    width: 24px;
    height: 24px;
}

.footer__p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    padding-top: 60px;
    padding-bottom: 30px;
}

/* legal */
.legal,
.privacy,
.terms_of_service {
    margin-top: 200px;
    margin-bottom: 60px;
}

.legal__title,
.privacy__title,
.terms_of_service__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.privacy__description,
.terms_of_service__description {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4rem;
    margin-bottom: 3rem;
}

.legal__section h2,
.privacy__section h2,
.terms_of_service h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;

}

.legal__section p,
.privacy__section p,
.terms_of_service p {
    margin-top: 0.4rem;
    font-size: 1rem;
    line-height: 1.4rem;
}

.legal__section li,
.privacy__section li,
.terms_of_service li {
    font-size: 1rem;
    margin-top: 0.4rem;
    line-height: 1.4rem;
}

/* terms_of_service */


.terms_of_service__link {
    text-decoration: underline;
    text-underline-position: above;
}

.notice {
    padding-top: 20px;
}
