@charset "utf-8";

/*====================
header
====================*/
.header {
    padding: 30px 8% 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-black);
    z-index: 100;
    /* transform: translateY(-110%); */
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.4s;
    width: 100%;
}

.header.blur {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
}

.header__topic,
.nav__topic {
    color: var(--primary-white);
    font-family: "Cormorant Garamond";
    font-size: 2rem;
    line-height: 1;
}

/* nav初期表示 */
.nav {
    background-color: var(--primary-black);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    display: none;
}

.nav__header {
    padding: 30px 8% 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav__list {
    margin-top: 50px;
    text-align: center;
}

.nav__item {
    color: var(--primary-white);
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 30px;
    position: relative;
}

.nav__item a {
    position: relative;
    z-index: 2;
}

.nav__item::before {
    content: '';
    display: block;
    width: 75px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-grayLow);
    filter: blur(10px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* nav active */

.nav.active {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 769px) {
    .header {
        margin: 0 auto;
        padding: 40px 6.9% 20px;
        justify-content: space-between;
        width: 100%;
    }

    .header__topic,
    .nav__topic {
        color: var(--primary-white);
        font-family: "Cormorant Garamond";
        font-size: 3.2rem;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
        opacity: 1;
        transition: none;
        display: block;
    }

    .nav__list {
        margin-top: 0;
        display: flex;
    }

    .nav__item {
        font-family: "Cormorant Garamond";
        line-height: 1;
        margin-top: 0;
        position: static;
        margin-left: 70px;
    }

    .nav__item::before {
        display: none;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }
}
/*====================
main
====================*/
.article--main {
    padding: 94px 0 0 9.6%;
    background-color: var(--primary-black);
}

.article__header {
    display: flex;
    justify-content: space-between;
}

.article__header p {
    flex: 1;
}

.main__topic {
    color: var(--white, #F5F5F5);
    font-family: Inter;
    font-size: 1.4rem;
    line-height: 1;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main__img {
    display: block;
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.main__topic::after {
    content: '';
    display: block;
    width: 1px;
    height: 170px;
    background-color: var(--primary-white);
    margin: 16px 2px 0 0;
}

@media screen and (min-width: 769px){
    .article--main {
        padding: 223px 0 165px 8.9%;
        height: 100vh;
    }

    .main__topic {
        font-size: 2rem;
        margin-right: 50px;
    }

    .main__img {
        display: block;
        height: 503px;
        width: auto;
        object-fit: cover;
    }

    .main__topic::after {
        height: calc(100vh - 280px);
    }
}

/*====================
menu
====================*/
.section--main {
    background-color: var(--primary-gray);
}

.menu__content {
    padding: 50px 0 0 0;
    width: 91.5%;
    max-width: 500px;
    margin: 0 auto;
}

.menu__content:first-of-type {
    padding: 0;
}

.gallery__link {
    display: block;
    margin: 50px auto 0;
}

.menu__content::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100vw;
    height: 1px;
    background-color: var(--primary-black);
    margin-top: 50px;
}

.nail__topic {
    margin: 50px auto 30px;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 2.4rem;
    line-height: 1;
}

.menu__item,
.menu__plice {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 2;
}

.menu__plice {
    text-align: right;
}

.syokai {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 2;
}

.menu__list {
    display: flex;
    justify-content: space-between;
}

.policy__txt {
    margin-top: 30px;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 50px;
}

.menu__content2 {
    margin-top: 40px;
}

@media screen and (min-width: 769px){
    .menu__primary {
        display: flex;
        justify-content: center;
        gap: 100px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .gallery__link {
        display: block;
        margin: 50px auto 0;
    }

    .menu__content {
        padding: 100px 0 0 0;
        max-width: none;
    }

    .menu__content:first-of-type {
        padding: 100px 0 0 0;
    }

    .menu__content::after {
        margin-top: 100px;
    }

    .nail__topic {
        font-size: 3.6rem;
    }

    .menu__item,
    .menu__plice {
        font-size: 1.6rem;
    }

    .syokai {
        font-size: 1.6rem;
    }

    .menu__primaryLine {
        flex: 1;
        position: relative;
    }

    .menu__primaryLine::after {
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        background-color: var(--primary-black);
        position: absolute;
        top: 0;
        right: -50px;
    }

    .menu__content2 {
        flex: 1;
    }

    .menu__content2 {
        margin-top: 0;
    }

    .menu__list--option {
        width: 65%;
        margin:  0 auto;
    }

    .menu__list--policy {
        width: 65%;
        margin: 0 auto;
    }

    .policy__txt {
        margin-top: 50px;
        font-size: 1.6rem;
        text-align: center;
    }
}