@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 show */
.header.show {
    transform: translateY(0);
    width: 100%;
    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;
}

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

.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 {
    /* transform: translateX(0) */
    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;
        visibility: visible;
    }

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

/*====================
article header
====================*/
.mainVisual img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
}

.mainVisual::after {
    content: 'evony.';
    color: var(--primary-white);
    font-family: "Cormorant Garamond";
    font-size: 2rem;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* positionの位置 */
.main__nav {
    position: absolute;
    bottom: 0px;
    left: 26px;
    /* transform: translate(0, 50px); */
}

.mainNav__list {
    z-index: 999;
    display: flex;
    align-items: end;
    position: relative;
}

.mainNav__list::before {
    content: '';
    display: block;
    background-color: var(--primary-white);
    width: 1px;
    height: 500px;
    margin-right: 30px;
}

/* スクロールダウン */
.scroll-dot {
    position: absolute;
    top: 0;
    left: 0.5px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #c39000;
    border-radius: 50%;
    opacity: 0;
    animation: scrollDown 3s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        top: 490px;
        opacity: 1;
    }
    100% {
        top: 500px;
        opacity: 0;
    }
}
/* fin */

.mainNav__item {
    margin-top: 50px;
    color: var(--primary-white);
    font-family: Inter;
    font-size: 1.4rem;
}

.mainNav__item:last-of-type {
    margin-bottom: 100px;
}

@media screen and (min-width: 769px) {
    .mainVisual::after {
        font-size: 3.2rem;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .main__nav {
        position: absolute;
        bottom: 0px;
        left: 100px;
    }

    .mainNav__list::before {
        height: 600px;
        margin-right: 40px;
    }

    .scroll-dot {
        width: 10px;
        height: 10px;
    }

    @keyframes scrollDown {
        0% {
            top: 10px;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        80% {
            top: 590px;
            opacity: 1;
        }
        100% {
            top: 620px;
            opacity: 0;
        }
    }

    .mainNav__item {
        margin-top: 80px;
        font-size: 1.6rem;
    }
} 

/*====================
salon
====================*/
.section--salon {
    padding: 50px 5.3%;
    background-color: var(--primary-black);
}

.salon__top {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.salon__title {
    margin-right: 20px;
    color: var(--primary-white);
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
    writing-mode: vertical-rl;
    letter-spacing: 1.4rem;
}

.salon__nailImg {
    width: 80%;
    max-width: 350px;
    height: auto;
}

.salon__txt {
    margin-top: 50px;
    color: var(--primary-white);
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 1.2px;
}

.salon__btnSp {
    display: block;
    margin: 50px auto 0;
    height: 25px;
    width: 100px;
}

.salon__btnPc {
    display: none;
}

/* salon pc */
@media screen and (min-width: 769px) {
    .section--salon {
        padding: 100px 0;
        display: flex;
        align-items: flex-end;
    }

    .salon__top {
        flex-direction: row-reverse;
        margin: 0;
        width: 50%;
        align-items: start;
        justify-content: space-between;
    }

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

    .salon__nailImg {
        max-width: none;
        width: 85%;
        height: 443px;
        object-fit: cover;
    }

    .salon__txtbtn {
        width: 50%;
        display: inline-block;
        text-align: right;
        margin: 0 0 0 80px;
        padding-right: 3.5%;
    }

    .salon__txt {
        margin-top: 0;
        text-align: start;
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 1.6px;
    }

    .salon__txtbtn a {
        width: 132px;
        height: 33px;
    }

    .salon__btnPc {
        display: block;
        margin-top: 70px;
        margin-left: auto;
    }

    .btn__sp {
        display: none;
    }
}

/*====================
menu
====================*/
.section--menu {
    padding: 50px 4.2%;
    background-image: url(../images/menu_bg.jpg);
    background-size: cover;
}

.menu__list {
    margin: 30px auto;
}

.menu__item {
    position: relative;
}

.menu__bgImg {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.menu__course {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.menu__time {
    color: var(--primary-white);
    text-align: center;
    font-family: Inter;
    font-size: 1.6rem;
    line-height: 1;
}

.menu__price {
    color: var(--white, #F5F5F5);
    text-align: center;
    font-family: Inter;
    font-size: 1.2rem;
    line-height: 1;
}

.menu__price::before {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: var(--primary-white);
    margin: 20px auto;
}

.menu__btnSp {
    display: block;
    margin: 30px auto 0;
    height: 25px;
    width: 100px;
}

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

    .menu__list {
        margin: 100px auto;
        display: flex;
        justify-content: center;
    }

    .menu__bgImg {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .menu__time {
        font-size: 2rem;
    }

    .menu__price {
        font-size: 1.6rem;
    }

    .btn__sp {
        display: none;
    }

    .menu__btnPc {
        display: block;
        margin-top: 80px;
        margin-left: auto;
    }

}

/*====================
gallery
====================*/
.section--gallery {
    padding: 50px 0;
    background-color: var(--primary-black);
}

.topic--gallery {
    color: var(--primary-white);
}

.gallery__list {
    margin-top: 30px;
}

.gallery__menu {
    color: var(--white, #F5F5F5);
    font-family: Inter;
    font-size: 1.6rem;
    line-height: 2;
    margin-left: 5.3%;
}

/* スライダー */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.gallery__img {
    display: flex;
    animation-name: slide;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    flex-shrink: 0;
}

.gallery__img img {
    width: 50vw;
    height: 200px;
    object-fit: cover;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* fin */

.gallery__btnSp {
    display: block;
    margin: 30px auto 0;
    width: 100px;
    height: 25px;
}

/* .gallery__imgPc {
    display: none;
} */

@media screen and (min-width: 769px) {
    .gallery__imgPc {
        display: block;
    }

    .section--gallery {
        padding: 100px 0;
    }

    .gallery__list {
        margin-top: 90px;
    }

    .gallery__item {
        margin-top: 15px;
    }
    
    .gallery__menu {
        margin-left: 14.2%;
    }

    /* スライダー */
    .slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        display: flex;
    }

    .gallery__img {
        display: flex;
        animation: slide 15s linear infinite;
        animation-iteration-count: infinite;
        flex-shrink: 0;
    }

    .gallery__img img {
        width: 25vw;
        height: 250px;
        object-fit: cover;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    /* fin */

    .btn__sp {
        display: none;
    }

    .gallery__btnPc {
        display: block;
        margin: 40px 6.9% 0 0;
        margin-left: auto;
    }
}

/*====================
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;
    }
}

/*====================
insta
====================*/
.insta__btnPc {
    display: none;
}

.insta__content {
    position: relative;
}

.insta__imgBg {
    height: 200px;
    object-fit: cover;
}

.insta__btnSp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* insta pc */
@media screen and (min-width: 769px) {
    .insta__btnPc {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 204px;
        height: 50px;
        object-fit: cover;
    }

    .insta__btnSp {
        display: none;
    }

    .insta__imgBg {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
}

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

.access__list {
    margin-top: 30px;
}

.access__item {
    margin-top: 20px;
}

.access__title {
    margin-top: 10px;
    font-family: Inter;
    font-size: 1.6rem;
    line-height: 1;
}

.access__txt {
    margin-top: 10px;
    font-size: 1.2rem;
}

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

    .access__item {
        margin-top: 80px;
        display: flex;
        gap: 20px;
    }

    .access__item:first-of-type {
        margin-top: 100px;
    }

    .access__title {
        margin-top: 0;
        font-size: 2rem;
    }

    .access__txt {
        font-size: 1.6rem;
    }

    .address__imgPc,
    .hours__imgPc,
    .payment__imgPc {
        width: 50%;
        height: 212px;
        object-fit: cover;
    }
}
