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



html {
    font-size: 62.5%;
}

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

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


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


/*==========================================
    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: 104px;
    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: 80px;
    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: 32px;
    }

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

@media screen and (min-height:1000px) {

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

    .menu_reserve::before {
        right: 16px;
        bottom: 168px;
    }
}


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

/*==================================================
slider
===================================*/
.slider img {
    width: 100%;
    height: auto;
}

.slider .slick-slide {
    margin: 0 16px;
}

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


/*==========================================
    reserve
==========================================*/


#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: 12px;
    z-index: 5;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

.reserve p {
    position: relative;
}

.reserve p::after {
    position: absolute;
    content: "";
    right: -24px;
    bottom: -23px;
    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: 10000;
    }

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