@charset "UTF-8";
/* @import "_vars.scss"; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");

html {
    box-sizing: border-box;
    font-size: 62.5%;
    /* フォントサイズ 10px */
}

body {
    font-family: "Crimson Text", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho,
        "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-style: normal;
    font-weight: 400;
    max-width: 1920px;
    width: 100%;
    margin: 0px auto;
}

* {
    padding: 0;
    margin: 0;
}

*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit;
}

a:link,
a:visited,
a:hover {
    color: inherit;
    text-decoration: none;
}

.wrapper {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .2);
}

/* タイトルセクション */
.ttl-area {
    background: #fff url("../img/facial-mv.jpg") no-repeat 50% 50% / cover;
    height: calc(800 / 1920* 100vw);
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.ttl-head {
    text-align: center;
    display: block;
    font-size: 4.5rem;
    font-weight: normal;
    line-height: 1;
    padding: 0 1rem;
    font-family: "Noto Serif JP";
    letter-spacing: 0.2rem;
    font-style: italic;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(50, 50, 50, 0.5);
}

.ttl-secondary {
    color: #f7f7f7;
    display: block;
    font-size: 2.2rem;
    padding-top: .8rem;
}

/* 縁取り
.outline-text {
    color: #318b32;
    text-shadow: -1px -1px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff;
    font-size: 48px;
    font-weight: bold;
    font-size: 5rem;
    font-family: "Noto Serif JP";
    font-style: italic;
    letter-spacing: .5rem;
}
*/

.main-ctr {
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 1rem;
}

.main-ctr::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/marble_bg.jpg) top center / cover;
    opacity: .4;
    z-index: -1;
}

/* ナビゲーション */
.nav-list {
    display: flex;
    justify-content: center;
    margin: 5rem auto 3rem;
    width: 95%;
    max-width: 1000px;
}

.nav-item {
    background-color: #4caf50;
    border-radius: 3px;
    margin: 0 .8rem 1rem;
    width: calc(100% / 3);
    text-align: center;
}

.nav-link {
    color: #fff;
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    padding: 1rem;
}

.nav-link:link {
    color: #fff;
}

.nav-link:hover {
    background: #18872e;
    text-decoration: underline;
    text-underline-offset: .5rem;
}

.nav-link:visited {
    color: #fff;
}

/* 確認用 */

/*========= 1文字ずつ出現させるためのCSS ===============*/

.eachTextAnime span {
    opacity: 0;
}

.eachTextAnime.appeartext span {
    animation: text_anime_on 1s ease-out forwards;
}

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

    100% {
        opacity: 1;
    }
}

.menu-box {
    margin: 7rem 0;
    border-bottom: 1px solid #333;
    position: relative;
}

.menu-box::before {
    content: "";
    background: url(../img/decoration01.svg) no-repeat 50% 50% / contain;
    position: absolute;
    width: 65%;
    height: calc(10rem * 0.5);
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.content-box {
    align-items: center;
    display: flex;
    max-width: 1400px;
    justify-content: space-between;
    margin: 13rem auto 10rem;
    width: 90%;
}

.content-wrapper {
    transition: opacity 1.5s ease-out;
    width: 60%;
}

.fade-in .content-wrapper {
    opacity: 0;
}

.fade-in.is-visible .content-wrapper {
    opacity: 1;
}

.content-img {
    text-align: center;
    width: 38%;
}

.fade-in .content-img {
    opacity: 0;
    filter: blur(8px) brightness(1.5);
    transition: opacity 2s ease-out, filter 2s ease-out;
}

.fade-in.is-visible .content-img {
    opacity: 1;
    filter: blur(0) brightness(1);
}

.content-txt {
    align-items: center;
    display: flex;
    font-size: 2.2rem;
}

.content-txt::after {
    content: "";
    border-top: 1px solid #333;
    display: inline-block;
    margin-left: .5rem;
    width: 15rem;
}

.content-hd3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0;
}

.content-price-list {
    padding: 1rem 0;
    align-items: center;
    display: flex;
    font-size: 2.4rem;
}

.content-price-list>dt {
    display: contents;
}

.content-price-list>dt::after {
    background: radial-gradient(#aaa 20%, transparent 0) center center / 1.5rem 1.5rem;
    content: "";
    display: flex;
    flex: .8;
    height: 1rem;
    margin: 0 .5em;
    width: 100%;
}

.content-box-price-list>dd {}

.summary-txt {
    font-size: 1.8rem;
}

/* アニメーション対象のセクション */
.content-animate {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 1rem auto 0;
    position: relative;
    overflow: hidden;
}

/* テキストのコンテナ */
.animate-box {
    position: relative;
    display: inline-block;
    padding: 1rem 5rem;
    font-size: 1.4rem;
    overflow: hidden;
    width: fit-content;
    /*text-align: center;*/
    text-align: left;
    margin: 0 auto 0 0;
}

/* 背景のアニメーション */
.animate-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* テキスト要素 */
.animate-txt {
    position: relative;
    display: inline-block;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    text-indent: -1em;
    padding-left: 1em;
}

/* 背景色が表示されるアニメーション */
.content-animate.active .animate-box::before {
    transform: scaleY(1);
}

/* 背景色アニメーション完了後にテキストが下から徐々に表示 */
.content-animate.active .animate-txt.show-text {
    clip-path: inset(0 0 0 0);
}

.note-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin: .5rem 0 0;
    padding: .5rem 1rem;
    width: fit-content;
}

/* 背景の幕 */
.note-block::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
    transform: translate(0, 100%);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    content: '';
}

/* 幕が上がるアニメーション */
.is-visible.note-block::before {
    transform: translate(0, 0);
}

.note-block-txt {
    font-size: 1.5rem;
    opacity: 0;
    text-align: center;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity linear 0.7s;
}

.note-block-txt:first-child {
    transform: translate(0, 40px);
    transition-delay: 0.25s;
}

.title span {
    display: block;
    opacity: 0;
}

.title span:first-child {
    transform: translate(0, 40px);
    font-size: 20px;
    transition-delay: 0.25s;
}

.title span:last-child {
    margin-top: 18px;
    transform: translate(0, 30px);
    font-size: 48px;
    transition-delay: 0.45s;
}

/* スクロール時にアニメーション発火 */
.is-visible.note-block .note-block-txt {
    opacity: 1;
    transform: translate(0, 0);
}

/* フェードイン */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.is-visible.fade-in {
    opacity: 1;
}

/* スライドアップ */
.slide-up {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.is-visible.slide-up {
    transform: translateY(0);
    opacity: 1;
}

/* メリツト */
.merit-section {
    max-width: 1000px;
    width: 90%;
    margin: 5rem auto;
    box-sizing: border-box;
    position: relative;
}

.merit-hd4 {
    align-items: center;
    /*color: #8ab18d;*/
    color: #0009;
    display: flex;
    font-size: 2.5rem;
    font-weight: 700;
    justify-content: center;
}

.merit-hd4:before,
.merit-hd4:after {
    content: "";
    display: inline-block;
    margin: 0 1.5rem;
    width: 12.5rem;
    /*border-top: 1px solid #8ab18d;*/
    border-top: 1px solid #333;
}

.merit-list {
    margin: 6rem auto;
}

.merit-item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.merit-img {
    margin-right: 2rem;
    width: 40%;
}

.merit-txt-area {
    box-sizing: border-box;
    margin: 0 .7rem 2rem;
    width: 60%;
}

.merit-hd5 {
    color: #ba7552;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.merit-txt {
    color: #333;
    font-size: 1.6rem;
}

/* コンタクト */
.contact-contents {
    background-color: #666;
    padding: 10px 0;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    text-align: center;
    background: #fff;
    max-width: 1400px;
    width: 90%;
    margin: auto;
    box-sizing: border-box;
    justify-content: space-between;
}

.contact-txt-box {
    box-sizing: border-box;
    margin: 5rem auto;
}

.contact-hd2 {
    font-size: 4.5rem;
    letter-spacing: .4rem;
}

.contact-hd2-secondary {
    display: block;
    font-size: 1.6rem;
    letter-spacing: -.1rem;
}

.contact-hd2::after {
    border-bottom: 3px solid #666;
    content: "";
    display: block;
    width: 55%;
    margin: 1.8rem auto 4rem;
}

.contact-txt {
    font-size: 1.6rem;
    padding-bottom: 2rem;
}

.contact-txt:first-of-type {
    border-bottom: 1px solid #ccc;
}

.contact-txt:last-of-type {
    padding-top: 2rem;
}

.map_box {
    height: 45rem;
    width: 50%;
}


.sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
}

.line-img {
    width: 6.5rem;
    height: auto;
    max-width: 100%;
}

.frog {
    transform-origin: center bottom;
    animation: yurayura 5s linear infinite;
}

@keyframes yurayura {

    0%,
    100% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }
}

.menu-link-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 8rem;
    max-width: 1200px;
    width: 100%;
}

.menu-link-btn {
    margin-right: 3rem;
    /* width: 33%;*/
    width: 40%;
}

.menu-link-btn:last-of-type {
    margin-right: 0;
}

.menu-link-txt {
    display: block;
    font-size: 1.4rem;
    margin-top: .5rem;
    text-align: center;
}

/* 記述ここまで */

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
        /* font-size: 1.25vw; */
    }

    .contact-wrapper {
        flex-wrap: wrap;
    }

    .map_box {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .ttl-area {
        min-height: 29rem;
    }

    .ttl-head {
        font-size: 3.3rem;
    }

    .ttl-secondary {
        font-size: 1.4rem;
    }

    .nav-list {
        width: 98%;
    }

    .nav-item {
        margin: 0 .3rem 1rem;
    }

    .nav-link {
        align-items: center;
        justify-content: center;
        display: flex;
        height: 100%;
        line-height: 1;
        padding: 1rem 1.6rem;
        width: 100%;
    }

    .content-box {
        flex-wrap: wrap;
        margin: 9rem auto 10rem;
        width: 100%;
    }

    .content-wrapper {
        order: 2;
        width: 100%;
    }

    .content-img {
        order: 1;
        margin: 2rem auto;
        width: 100%;
    }

    .animate-box {
        padding: 1rem 2rem;
        font-size: 1.6rem;
        text-align: left;
    }

    .content-animate {
        margin: 2rem auto 0;
    }

    .merit-section {
        opacity: 1;
    }

    .merit-section {
        width: 100%;
    }

    .merit-hd4 {
        font-size: 5.8vw;
    }

    .merit-hd4:before,
    .merit-hd4:after {
        content: unset;
    }

    .merit-item {
        flex-wrap: wrap;
    }

    .merit-img {
        width: 100%;
    }

    .merit-txt-area {
        margin: 2rem auto;
        width: 100%;
    }

    .menu-link-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-link-btn {
        margin: 2rem auto;
        width: 100%;
    }

    .menu-link-txt {
        font-size: 1.6rem;
    }
}


.scroll_var_sp {
    display: inline-block;
    position: fixed;
    /* left: 7px; */
    z-index: 2;
    padding: 10px 5px 110px;
    overflow: hidden;
    color: #21581a;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.4em;
    text-decoration: none;
    writing-mode: vertical-lr;
    top: 350px;
    font-weight: bold;
    z-index: 100;
    right: 25px;
}

.scroll_var_sp::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #21581a;
}

.scroll_var_sp::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.header_item_img img {
    height: 13%;
    width: 15%;
}

.scroll_var_sp::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #21581a;
}

.scroll_var_sp::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@media screen and (max-width: 480px) {

    .scroll_var_sp::after {
        content: "";
        position: absolute;
        left: 50%;
        width: 1px;
        height: 65px;
        background: #21581a;
        top: 88px;
    }
}

.header_tel .mail {
    background: #4aa140;
    font-size: 21px;
    border-radius: 10%;
    height: 44px;
    width: 55px;
    text-align: center;
    line-height: 46px;
    margin-top: 30px;
    border: 1.5px solid #ffffff;
}

.shop_menu_text {
    color: #385446;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 2px solid rgb(107 206 107 / 90%);
    /* width: 100px; */
    margin: auto;
    display: block;
    margin-top: -7px;
    text-align: center;
}

.header_tel .mail a {
    display: block;
    color: #fff;
}

.i_arrow {
    position: absolute;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    left: 278px;
    top: 34px;
    display: none;
}

.i_arrow::before,
.i_arrow::after {
    position: absolute;
    top: 247px;
    bottom: 0;
    left: 142px;
    margin: auto;
    content: "";
    vertical-align: middle;
    display: none;
}

.scroll_var {
    display: inline-block;
    position: fixed;
    /* left: 7px; */
    z-index: 2;
    padding: 10px 5px 110px;
    overflow: hidden;
    color: #21581a;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.4em;
    text-decoration: none;
    writing-mode: vertical-lr;
    top: 430px;
    font-weight: bold;
    z-index: 100;
    right: 34px;
}

.scroll_var::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #21581a;
}