@charset "UTF-8";

:root {
    --main-font: "Shippori Mincho", serif;
    --sub-font: "Josefin Slab", serif;
    --bg-color: #e4e1dd;
    --bg-color2: #d1d5cd;
    --black: #1D1D1D;
    --white: #FFFFFF;
    --gray: #676865;
}

/*==========================================
    common
==========================================*/


html {
    font-size: 62.5%;
}

body {
    color: var(--black);
    font-family: var(--main-font);
    --cursor-dot: #fff;
    --cursor-circle: #fff;
    background-color: var(--bg-color);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h2 {
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

main {
    position: relative;
    overflow-x: hidden;
    flex: 1;
}

.title {
    text-align: center;
    font-family: var(--sub-font);
    font-size: 3rem;
    text-align: center;
    font-weight: 300;
}


.subtitle {
    font-family: var(--main-font);
    font-size: 1.4rem;
    font-weight: normal;
    display: block;
    letter-spacing: 0.2rem;
}

.h2 {
    font-weight: 300;
}

.btnarrow5 {
    position: relative;
    border: 1px solid var(--white);
    border-radius: 8px;
    padding: 6px 32px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: var(--gray);
    font-size: 1.8rem;
    font-family: var(--sub-font);
    font-weight: 300;
    letter-spacing: 0.09rem;
    outline: none;
    transition: all .2s linear;
}

.btnarrow5:hover {
    background: var(--bg-color);
    color: var(--gray);
    border: 1px solid var(--white);
}

.btnarrow5::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -26px;
    width: 40px;
    height: 1px;
    background: var(--white);
    transition: all .2s linear;
}

.btnarrow5::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -21px;
    width: 1px;
    height: 12px;
    background: var(--white);
    transform: skewX(45deg);
    transition: all .2s linear;
}

.btnarrow5:hover::before {
    right: -30px;
}

.btnarrow5:hover::after {
    right: -25px;
}

.pc-only {
    display: none;
}

.sp-only {
    display: block;
}

@media screen and (min-width: 768px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }
}

/*==================
#loading
==================*/

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleY(0);
    background-color: var(--bg-color2);
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes PageAnime {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: bottom;
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

#container {
    opacity: 0;
}

body.appear #container {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/*==========================================
    header
==========================================*/

header.nav {
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 995;
    background-color: rgba(255, 255, 255, 0);
    padding: 24px;
}


.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    mix-blend-mode: difference;
    /* filter: invert(70%); */
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Josefin Slab", serif;

    letter-spacing: 0.2rem;
}

.logo {
    width: 40px;
    height: auto;
}

.open {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    cursor: pointer;
}

.menu {
    background-color: var(--gray);
    color: var(--white);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: -100%;
    z-index: 999;
}

.close {
    position: absolute;
    top: 4rem;
    right: 3.5vw;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    font-family: var(--sub-font);
    cursor: pointer;
    z-index: 999;

}

.menu-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    height: 100%;
    position: relative;
    /* align-items: center; */
    /* font-size: 30px; */
}

.menu_logo {
    position: absolute;
    top: 2.5em;
    left: 2.5em;
}

.nav-list {
    position: absolute;
    top: 8em;
    left: 0.5em;
}

.nav-link {
    font-size: 3rem;
    letter-spacing: 0.3rem;
    line-height: 5.5rem;
}

.nav-link-number {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    padding-left: 1rem;
}

.menu_reserve a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    position: absolute;
    bottom: 112px;
    right: 40px;
    color: var(--black);
    font-family: var(--main-font);
    font-size: 1.7rem;
    transition: all 0.3s;
    z-index: 1;
}

.menu_reserve::before {
    position: absolute;
    content: "";
    right: 16px;
    bottom: 88px;
    width: 115px;
    height: 115px;
    background-image: url(img/circle_01.webp);
    background-size: contain;
    animation: rotateCircle 18s linear infinite;
    z-index: -2;

}

@media screen and (min-width:768px) {

    /*=====min-width:768px=====*/
    .menu_reserve a {
        bottom: 48px;
        right: 48px;
    }

    .menu_reserve::before {
        bottom: 24px;
        right: 24px;
    }
}

.menu_reserve a:hover {
    background: rgba(209, 213, 205, 0.8);
}

.nav_link_04 {
    margin-bottom: 0.5em;
}

.menu_info {
    display: inline-block;
    border-top: 0.5px solid var(--white);
}

.menu_info_info {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    padding-top: 1em;
    padding-left: 1em;
    line-height: 2.3rem;
}

.menu_sns {
    display: flex;
    column-gap: 0.6em;
    margin: 16px 0 0 16px;
}

.menu_sns img {
    width: 20px;
    height: 20px;
}

.yoyaku {
    display: flex;
    justify-content: space-evenly;
}

.modal_inner span {
    padding: 4px 0 8px;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
}

.modal_inner p {
    font-size: 1.4rem;
    letter-spacing: 0.03rem;
    font-weight: 400;
    margin-bottom: 24px;
}

/*==========================================
    title
==========================================*/

.concept_page_title {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 45vw;
    margin-inline: auto;
}

.concept_page_title_inner {
    padding-inline: 30px;
    position: relative;
    height: 15vw;
}

video {
    display: block;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.page_title {
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 50px;
    position: absolute;
    top: 10em;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    margin: auto;
    text-align: center;

}

.page_title h2 {
    font-size: 2.3rem;
    letter-spacing: 0.5rem;
    padding-bottom: 8px;
}

.page_title span {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;

}

@media screen and (min-width: 450px) {
    .concept_page_title {
        height: 35vw;
    }
}

@media screen and (min-width: 650px) {
    .concept_page_title {
        height: 30vw;
    }

    .page_title h2 {
        font-size: 3rem;
    }

    .page_title span {
        font-size: 2rem;
    }
}

@media screen and (min-width: 960px) {
    .page_title {
        top: 5em;
    }

    .concept_page_title {
        height: 20vw;
    }

    .page_title h2 {
        font-size: 3.2rem;
    }
}

/*==========================================
    explan
==========================================*/
.explan {
    width: 100%;
    height: auto;
    margin-inline: auto;
    background-color: var(--bg-color2);
    padding: 5em 0 5em;
}

.explan_subtitle {
    font-family: var(--main-font);
    font-size: 1.8rem;
    font-weight: normal;
    display: block;
    letter-spacing: 0.2rem;
}

@media screen and (min-width:450px) {
    .explan_subtitle {
        font-size: 2.4rem;

    }

    /*=====min-width:450px=====*/
}

.explan_inner {
    padding: 16px 64px;
    margin-inline: auto;
}

.explan h2 {
    padding-bottom: 2em;
}

.explan_text p {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 2.5rem;
    padding-top: 1em;
}

.heading {
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 4px
}

.heading span {
    font-size: 1.3rem;
    padding-right: 0.5em;
}

.wrap {
    margin: 0 auto 13em;
}

.wrap:last-of-type {
    margin-bottom: 0;
}

.image {
    padding-bottom: 3em;
}

.wrap img {
    display: block;
    height: auto;
    border-radius: 50px 10px 50px 10px/ 50px 10px 50px 10px;
    box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);

}

.hd_01,
.hd_02,
.hd_03 {
    display: flex;
    align-items: baseline;
    position: relative;
}

.line_01,
.line_02,
.line_03 {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background-color: var(--gray);
    transition: 1.3s linear;
    transform: scaleX(0);
    /*X方向0、Y方向1*/
    transform-origin: left;
}

.line_01.show,
.line_02.show,
.line_03.show {
    transform: scaleX(1);
    /*X方向にスケール拡大*/
}


.concept_a {
    text-align: center;
    padding: 3em 0;
}


@media screen and (min-width:768px) {
    .wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1000px;
        column-gap: 1em;
    }

    .wrap:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .image {
        width: 45%;
    }

    .explan_text {
        padding: 0 30px;
        width: 55%;
    }

    .concept_a {
        text-align: right;
        padding: 3em 0;
    }

}

/*==========================================
    nailist
==========================================*/
#nailist {
    width: 100%;
    height: auto;
    margin-inline: auto;
    background-color: var(--bg-color);
    padding: 4em 0 5em;
}

.nailist_inner {
    padding: 16px 30px;
    margin-inline: auto;
}

#nailist h2 {
    padding-bottom: 1em;
}

.profile {
    width: 100%;
    margin-inline: auto;
}

.prf_photo {
    padding: 16px 0 3em;
}

.prf_photo_01 {
    display: none;
}

.prf_keireki img {
    filter: blur(0.05px);
    border-radius: 50px 10px 50px 10px/ 50px 10px 50px 10px;
    box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);
}

.keireki {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    line-height: 2rem;
}

.keireki_bun {
    padding: 0 0 8px 8px;
}

.profile ul {
    padding: 2em 0;
}

.intro_item01 {
    display: inline-block;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 2em;
}

.nailist_intro p {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    line-height: 2.3rem;
}

.news_text {
    margin: 6em 0 1.5em;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.02rem;
    line-height: 3.2rem;
}

.news_text img {
    margin-inline: auto;
    width: 20px;
    padding-bottom: 0.6em;
}



@media screen and (min-width:600px) {
    .prf_photo {
        display: none;
    }

    .prf_photo_01 {
        display: block;
    }

    .profile {
        display: flex;
        max-width: 960px;
    }

    .nailist_intro {
        width: 80%;
        padding: 16px;
    }

    .prf_keireki {
        padding: 16px;
    }
}


/*==================================================
slider
===================================*/
.slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 20px;
    /*スライド左右の余白調整*/
}




/*==========================================
    Separator
==========================================*/

.separator {
    width: 100vw;
    height: auto;

}


.separator_01 {
    background-color: var(--bg-color2);
    width: 100%;
    height: 35vw;
}

@media screen and (min-width:684px) {
    .separator_01 {
        height: 20vw;
        transform: translateY(1px)
    }

}

.separator_02 {
    background-color: var(--bg-color);
    width: 100%;
    height: 35vw;
    transform: translateY(-1px)
}

@media screen and (min-width:684px) {
    .separator_02 {
        height: 20vw;
    }
}



/*==========================================
    footer
==========================================*/
.footer {
    width: 100%;
    height: auto;
    margin-inline: auto;
    background-color: var(--bg-color2);
    /* padding-bottom: 3em; */
}

.footer_inner {
    padding-inline: 30px;
    margin-inline: auto;
    text-align: center;
}

.footer_logo {
    margin-inline: auto;
    width: 35vw;
}

@media screen and (min-width:684px) {
    .footer_logo {
        width: 20vw;
    }
}


.footer_logo_sub {
    display: inline-block;
    border-bottom: solid 1px var(--gray);
    font-size: 1rem;
    letter-spacing: 0.25rem;
    margin-top: -5px;
    padding-bottom: 3em;
}

.footer_info {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    padding: 1em 0 1.5em;
    line-height: 2.3rem;
}

.footer_icon {
    display: flex;
    justify-content: center;
    column-gap: 3em;
    padding: 3em 0;
}

.logo_insta,
.logo_line {
    width: 25px;
}

.footer__copyright {
    display: inline-block;
    border-top: solid 1px var(--gray);
    text-align: center;
    padding: 2em;
}



/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    color: var(--black);
    font-family: var(--main-font);
    text-align: center;
    text-decoration: none;
    font-size: 1.7rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.5);
    mix-blend-mode: difference;
}

#page-top a:hover {
    background: rgba(0, 0, 0, 0.3);
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 30px;
    bottom: 8px;
    z-index: 5;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

.reserve p {
    position: relative;
}

.reserve p::after {
    position: absolute;
    content: "";
    right: -24px;
    bottom: -24px;
    width: 115px;
    height: 115px;
    background-image: url(img/circle.webp);
    background-size: contain;
    animation: rotateCircle 18s linear infinite;
    z-index: -1;
    mix-blend-mode: difference;

}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*==========================================
    cursor
==========================================*/
.cursor {
    display: none;
}

@media (any-pointer:fine) {
    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        pointer-events: none;
        z-index: 99999;
    }

    .cursor--1 .cursor__inner {
        fill: var(--cursor-dot);
    }

    .cursor--2 .cursor__inner {
        fill: none;
        stroke: var(--cursor-circle);
        stroke-width: 1px;
    }

    .no-js .cursor {
        display: none;
    }
}