@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
====================*/
#salon  > :not(.salon__top) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

#salon > .animated {
    opacity: 1;
    transform: translateY(0);
}


.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);
    }
}


/*====================
salon
====================*/
.section--salon {
    background-color: var(--primary-black);
    text-align: center;
}

.salon__top {
    display: flex;
    align-items: center;
    gap: 5%;
}

.salon__nailImg {
    width: 40%;
}

.salon__title {
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    letter-spacing: 0.2rem; 
}

.salon__txt {
    display: inline-block;
    margin: 80px 23px;
    text-align: center;
    color: var(--primary-white);
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    line-height: 3;
    letter-spacing: 0.1rem;
}

.salon__middleImg {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

@media screen and (min-width: 769px){
    .salon__top {
        gap: 10%;
    }

    .salon__nailImg {
        width: 40%;
    }

    .salon__title {
        font-size: 2rem;
        letter-spacing: 1.2rem; 
    }

    .salon__txt {
        margin: 134px 30px;
        text-align: center;
        font-size: 1.6rem;
        letter-spacing: 1.2rem;
    }

    .brSp {
        display: none;
    }

    .salon__middleImg {
        height: 314px;
    }
}

/*====================
artist
====================*/
.section--artist {
    padding: 50px 4%;
    background-color: var(--primary-gray);
}

.artist__img {
    margin: 30px auto 0;
}

.artist__list {
    margin-top: 20px;
}

.artist__txt {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 2;
}

.artist__txt a::after {
    content: url(../images/linkimg.svg);
    display: inline-block;
    margin-left: 5px;
}

/* artist pc */
@media screen and (min-width: 769px) {
    .section--artist {
        padding: 100px 6.9%;
    }

    .artist__content {
        display: flex;
        margin-top: 100px;
        justify-content: center;
        gap: 20px;
    }

    .artist__img {
        margin: 0;
        width: 50%;
        max-width: 610px;
        object-fit: cover;
    }

    .artist__txt {
        font-size: 1.6rem;
    }
}