@charset "utf-8";

/* ===============================
common
=============================== */
html {
    font-size: 62.5%;
}

body {
    font-family:
        "Rubik",
        "Murecho",
        sans-serif;
    font-style: normal;
    color: #4F342C;
    font-size: 1.6rem;
    line-height: 250%;
    background-image: url(../img/sp/background_sp.png);
    background-repeat: repeat;
    background-size: 100% auto;
    background-position: top center;
}

.parts__sp {
    display: block;
}

.parts__pc {
    display: none;
}

.header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* ハンバーガーメニュー */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 55px;
    position: fixed;
    right: 26px;
    top: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
}

.menu {
    font-size: 1.0rem;
    line-height: 1;
    display: block;
    text-align: center;
}

.line {
    display: block;
    height: 4px;
    border-radius: 4px;
    background: black;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: center;
}

/* 初期状態 */

.line1 {
    width: 60%;
    align-self: flex-start;
}

.line2 {
    width: 100%;
}

.line3 {
    width: 60%;
    align-self: flex-end;
}

/* クリック後 */

.hamburger.active .line1 {
    width: 50%;
    transform-origin: 100%;
    transform: translateY(12px) rotate(45deg);
}

.hamburger.active .line2 {
    transform: rotate(-45deg);
}

.hamburger.active .line3 {
    width: 50%;
    transform-origin: 0%;
    transform: translateY(-12px) rotate(45deg);
}

.reservationBtn__main {
    border: 2px solid #4F342C;
    position: fixed;
    top: 20px;
    right: 75px;
    z-index: 10;
    border-radius: 47px;
    font-size: 1.0rem;
    line-height: 1;
    padding: 8px 10px;
}

    .telop {
    position: absolute;
    width: 100%;
    bottom: 12%;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.telop__top,.telop__bottom {
    overflow: hidden;
    white-space: nowrap;
}

.telop p {
    display: inline-block;
    font-family: "Murecho",sans-serif;
    font-weight: bold;
    font-size: clamp(1.6rem, 10vw, 9.6rem);
    color: rgba(255, 255, 255, 0.1);
    /* color: transparent; */
    -webkit-text-stroke: 1px rgba(255,255,255,.8);
    white-space: nowrap;
    width: max-content;
}

.telop__top p {
    animation: telop-left 35s linear infinite;
}

/* テロップ */
@keyframes telop-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.telop__bottom p {
    color: transparent;
    -webkit-text-stroke: 1px rgb(255, 255, 255, 0.45);
    transform: rotate(180deg);
    animation: telop-right 35s linear infinite;
}

@keyframes telop-right {
    from {
        transform: translateX(-50%) rotate(180deg);
    }
    to {
        transform: translateX(0) rotate(180deg);
    }
}

.telop.telop__menu {
    top: 81dvh;
}

/* ローディング画面 */
#loading {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    position: fixed;
    opacity: 1;
    background-image: url(../img/sp/background_sp.png);
}

#loading.loaded {
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.star__set {
    height: 133px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.star__set::after {
    content: "";
    position: absolute;
    background-image: url(../img/common/cleaning_ghost_working.gif);
    background-size: contain;
    width: 154px;
    height: 100%;
    right: -93px;
    top: -26px;
    background-repeat: no-repeat;
}

.star {
    margin-right: 20px;
    width: 47px;
}

.star:last-of-type {
    margin-right: 0;
}

@media screen and (min-width: 769px) {
    #loading {
        background-image: url(../img/pc/background_pc.png);
    }
}

/* menuタブ表示 */
.menu__tab {
    background-image: url(../img/sp/menu__background_sp.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    opacity: 0;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 200;
    transition: all 0.8s ease;
}

.menu__tab.active {
    top: 0;
    opacity: 1;
    overflow: scroll;
}


.menu__logo {
    width: 67px;
    margin: 0 auto;
    margin-top: 30px;
}

.display__title {
    font-size: 2rem;
    text-align: center;
    margin-top: 3px;
}

.menu__nav {
    padding: 0px 5px 0px 60px;
    position: relative;
    z-index: 2;
}

.nav__txt {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

/* main以降 */
.inner {
    /* 左右26% */
    padding-inline: calc(26/375*100%);
}

.title_brown {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 30px;
}

.title_white {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    padding-bottom: 30px;
}

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

.reservationBtn {
    color: #4F342C;
    font-weight: bold;
    line-height: 1.8;
    padding: 5px 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 324px;
    min-width: 200px;
    margin-inline: auto;
    background-image: url(../img/common/btn_backgroound.png);
    background-size: cover;
    border-radius: 33px;
    text-decoration: none;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.reservationBtn.reservationBtn__menu {
    position: relative;
    z-index: 2;
}

.reservationBtn:hover {
    box-shadow: unset;
    transform: translate(4px, 4px);
}

.icon__insta {
    width: 20px;
    height: 20px;
}

.logo__img {
    width: 240px;
    height: auto;
    display: block;
    margin-inline: auto;
}

.fontcolor__red {
    color: #C1272D;
    font-weight: bold;
}


/* footer */
.footer {
    position: relative;
}

.footer__contents {
    background-color: #45B46B;
    color: #ffffff;
    padding-inline: calc(40/375*100%);
    padding-top: 80px;
    padding-bottom: 50px;
    position: relative;
}

.footer__contents::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 49px;
    background-image: url(../img/sp/footer_deco_sp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    top: -48px;
    left: 0;
}

.footer__contents address {
    font-size: 2.4rem;
    margin-top: 40px;
}

.footer__address {
    margin-bottom: 30px;
}

.footer__nav {
    font-size: 2.4rem;
}


.nav__item {
    margin-bottom: 50px;
}

.copy {
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 40px;
}

/* pc common*/
@media screen and (min-width: 769px) {
    body {
        font-size: 2.4rem;
        background-image: url(../img/pc/background_pc.png);
    }

    .parts__sp {
        display: none;
    }

    .parts__pc {
        display: block;
    }

    .sp__br {
        display: none;
    }



    /* ハンバーガーメニュー */
    .hamburger {
        width: 55px;
        height: 79px;
    }

    /* クリック後 */
    .hamburger.active .line1 {
        transform: translateY(19px) rotate(45deg);
    }

    .hamburger.active .line3 {
        transform: translateY(-18px) rotate(45deg);
    }

    .menu {
        font-size: 1.6rem;
    }

    .menu__tab {
        background-image: none;
        background-position: top left;
        background-repeat: no-repeat;
        background-color: #FFD7DA;
    }

    .menu__tab::before {
        z-index: 2;
        content: "";
        width: 440px;
        height: 100%;
        background-image: url(../img/pc/menu_background_pc.png);
        background-size: cover;
        position: absolute;
        left: 0;
        top: 0;
    }

    .menu__logo img {
        width: 67px;
    }

    .menu__logo_sp {
        display: none;
    }

    .menu__display {
        width: 70vw;
    }

    .menu__logo {
        position: relative;
        left: 0%;
        top: 40px;
        width: 440px;
        text-align: center;
        margin: 30px 0 0;
        z-index: 10;
    }

    .menu__display {
        margin-left: 470px;
    }

    .display__title {
        text-align: left;
    }

    .reservationBtn__main {
        border: 2px solid #4F342C;
        top: 20px;
        right: 100px;
        font-size: 2.4rem;
        padding: 12px 10px;
    }

    .reservationBtn.reservationBtn__menu {
        display: inline-block;
        left: 17px;
        position: absolute;
    }

    .telop.telop__menu {
    top: auto;
    bottom: 5%;
}

    /* 仮想メニュー（PC） */


    .line {
        display: block;
        height: 4px;
        border-radius: 4px;
        background: black;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        transform-origin: center;
    }

    /* main以降 */
    .inner {
        /* 左右26% */
        padding-inline: calc(100/1440*100%);
    }

    .title_brown {
        font-size: 4.8rem;
    }

    .title_white {
        font-size: 4.8rem;
    }

    .reservationBtn {
        line-height: 3.5;
        padding: 0;
        max-width: 500px;
        min-width: 400px;
        border-radius: 33px;
        position: absolute;
        margin: 0;
        display: inline-block;
    }

    .logo {
        width: 50%;
    }

    .footer__nav {
        width: 50%;
    }

    .footer__address {
    margin-bottom: 0px;
    }

    .footer__contentsPC {
        display: flex;
        gap: 250px;
    }

    .footer__contents::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 200px;
        background-image: url(../img/pc/footer\ _mountain_pc.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        top: -200px;
        left: 0;
    }
}