/* web font
*/

:root {
    --main-theme-color: #AC8F5E;
    --ft-zen: "Zen Kaku Gothic New", sans-serif;
    --ft-out: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
    color: #26221D;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none !important;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
@media screen and (max-width: 968px) {
    .container {
        padding-bottom: 70px;
    }
}
/* header */
.header {
    background: rgb(255 255 255 / 40%);
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header.fixed {}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
    max-width: 1720px;
}
.header-left {
    width: 674px;
}
.header-right {
    width: calc(100% - 700px);
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}
.header-nav__list li a {
    font-size: 18px;
    font-weight: 500;
}
.header-btns {
    display: none;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0 0;
}
.header-btn {
    height: 75px;
    width: calc((100% - (15px * 1)) / 2);
}
.header-btn a {
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.header-btn.tel a {
    background: var(--main-theme-color);
    font-family: var(--ft-out);
    font-size: 24px;
    font-weight: 600;
}
.header-btn.reservation a {
    background: #E3797B;
    font-size: 16px;
    font-weight: 700;
}
.header-btn a::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    margin-right: 10px;
}
.header-btn.tel a::before {
    background-image: url(../../images/new/icon-tel.svg);
    height: 29px;
    width: 29px;
}
.header-btn.reservation a::before {
    background-image: url(../../images/new/icon-line.svg);
    height: 40px;
    width: 40px;
}
@media screen and (max-width: 1468px) {
    .header-left {
        width: 400px;
    }
    .header-right {
        width: calc(100% - 420px);
    }
}
@media screen and (max-width: 1268px) {
    .header-left {
        width: 320px;
    }
    .header-right {
        width: calc(100% - 340px);
    }
    .header-nav__list {
        gap: 30px;
    }
    .header-nav__list li a {
        font-size: 16px;
    }
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 968px) {
    .header {
        height: 76px;
    }
    .header-left {
        position: relative;
        width: 248px;
        z-index: 9999;
    }
    .header-right {
        width: 50px;
    }
    .header-nav {
        background: #fff;
        height: 100%;
        overflow-y: auto;
        padding: 100px 0 0;
        position: fixed;
        top: -100%;
        right: 0;
        left: 0;
        transition-duration: .3s;
        width: 100%;
        z-index: 999;
    }
    .header-nav.open {
        top: 0;
    }
    .header-nav__inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: stretch;
        height: 100%;
        margin: 0 auto;
        width: 92%;
    }
    .header-nav__list {
        display: block;
        text-align: center;
        width: 100%;
    }
    .header-nav__list li {
        border-bottom: 1px dashed #C2BFBB;
        margin: 0;
    }
    .header-nav__list li a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 24px 0;
        text-align: center;
    }
    .header-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 30px 0 0;
        width: 100%;
    }
    .header-btn {
        height: 66px;
        margin: 0 auto;
        width: 100%;
        max-width: 251px;
    }
    .header-btn.tel a,
    .header-btn.reservation a {
        font-size: 18px;
    }
    .header-btn.tel a::before {
        height: 22px;
        width: 22px;
    }
    .header-btn.reservation a::before {
        height: 30px;
        width: 30px;
    }

    /* hamberger */
    .header-menu {
        background: var(--main-theme-color);
        border-radius: 13px;
        display: block;
        height: 44px;
        margin: 0 0 0 auto;
        position: relative;
        text-align: center;
        width: 44px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        margin: auto;
        position: absolute;
        left: 0;
        right: 0;
        width: 22px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 14px;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 21px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: 14px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: 1px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: 2px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
}
@media screen and (max-width: 768px) {}

/* footer */
.footer {
    background: #E9DBC2;
    padding: 110px 0 65px;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1520px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-left {
    width: 616px;
}
.footer-right {
    width: calc(100% - 650px);
}
.footer-logo {
    margin: 0 0 25px;
    width: 100%;
    max-width: 485px;
}
.footer-info {
    font-size: 18px;
    font-weight: 500;
    line-height: 2em;
    margin: 0 0 15px;
}
.footer-map__link {
    color: #948E87;
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    font-family: var(--ft-out);
    font-size: 16px;
    font-weight: 400;
}
.footer-map__link::after {
    background: url(../../images/new/icon-arrow-link.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 11px;
    margin-left: 10px;
    width: 10px;
}
.footer-btns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0 0;
}
.footer-btn {
    height: 75px;
    width: calc((100% - (15px * 1)) / 2);
}
.footer-btn a {
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.footer-btn.tel a {
    background: var(--main-theme-color);
    font-family: var(--ft-out);
    font-size: 24px;
    font-weight: 600;
}
.footer-btn.reservation a {
    background: #E3797B;
    font-size: 16px;
    font-weight: 700;
}
.footer-btn a::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    margin-right: 10px;
}
.footer-btn.tel a::before {
    background-image: url(../../images/new/icon-tel.svg);
    height: 29px;
    width: 29px;
}
.footer-btn.reservation a::before {
    background-image: url(../../images/new/icon-line.svg);
    height: 40px;
    width: 40px;
}
.footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 55px;
    width: 100%;
}
.footer-links li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links li::before {
    background: url(../../images/new/icon-triangel-r-g.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 7px;
    margin-right: 10px;
    width: 7px;
}
.footer-links li a {
    font-size: 18px;
    font-weight: 500;
}
.footer-schedule {
    margin: 0 0 0 auto;
    width: 90%;
}
.footer-left .footer-schedule {
    display: none;
}
.footer-schedule picture {
    display: block;
    line-height: 0;
}
.copyright {
    margin: 50px 0 0;
    text-align: center;
}
.copyright p {
    color: #948E87;
    font-family: var(--ft-out);
    font-size: 16px;
    font-weight: 400;
}
@media screen and (max-width: 1568px) {
    .footer-left {
        width: 500px;
    }
    .footer-right {
        width: calc(100% - 550px);
        max-width: 730px;
    }
}
@media screen and (max-width: 1468px) {
    .footer-links {
        gap: 35px;
    }
    .footer-links li a {
        font-size: 16px;
    }
    .footer-btn.tel a,
    .footer-btn.reservation a {
        font-size: 18px;
    }
    .footer-btn.tel a::before {
        height: 22px;
        width: 22px;
    }
    .footer-btn.reservation a::before {
        height: 30px;
        width: 30px;
    }
}
@media screen and (max-width: 1268px) {
    .footer-left {
        width: 450px;
    }
    .footer-right {
        width: calc(100% - 475px);
        max-width: 730px;
    }
    .footer-links {
        gap: 25px;
    }
}
@media screen and (max-width: 1168px) {
    .footer {
        padding: 100px 0 25px;
    }
    .footer-left {
        border-bottom: 1px solid #948E87;
        margin: 0 0 55px;
        padding: 0 0 50px;
        width: 100%;
    }
    .footer-right {
        width: 100%;
        max-width: 100%;
    }
    .footer-btns {
        flex-direction: column;
        gap: 8px;
        margin: 30px 0 0;
    }
    .footer-btn {
        height: 66px;
        margin: 0 auto;
        width: 100%;
        max-width: 251px;
    }
    .footer-right .footer-schedule {
        display: none;
    }
    .footer-left .footer-schedule {
        display: block;
        margin: 20px auto 0;
        text-align: center;
        width: 100%;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 0;
        row-gap: 20px;
    }
    .footer-links li {
        justify-content: flex-start;
        width: 50%;
    }
    .footer-links li a {
        font-size: 18px;
    }
    .copyright {
        margin: 75px 0 0;
    }
    .copyright p {
        font-size: 16px;
    }
}


/* フェードインアップ */
.js-fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}
.js-fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
}
/* --------------------------
 左からイン（伸びる）
-------------------------- */
.js-leftAnime {
	opacity: 0;
}
.slideAnimeLeftRight {
	clip-path: inset(0 100% 0 0); /* 右100%で隠す */
	transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1),
				opacity 0.3s ease;
	opacity: 0;
}

/* 表示領域に入ってクラスが付与された時 */
.js-leftAnime.is-show {
	opacity: 1;
}
.js-leftAnime.is-show .slideAnimeLeftRight {
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

/* --------------------------
 右からイン（伸びる）
-------------------------- */
.js-rightAnime {
	opacity: 0;
}
.slideAnimeRightLeft {
	clip-path: inset(0 0 0 100%); /* 左100%で隠す */
	transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1),
				opacity 0.3s ease;
	opacity: 0;
}

/* 表示領域に入ってクラスが付与された時 */
.js-rightAnime.is-show {
	opacity: 1;
}
.js-rightAnime.is-show .slideAnimeRightLeft {
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

/* floating */
.floating {
    background: #E3797B;
    border-radius: 30px 0 0 30px;
    display: none;
    height: 288px;
    padding-right: 20px;
    position: fixed;
    bottom: 25%;
    right: 0;
    width: 136px;
    z-index: 99;
}
.floating a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.3em;
    height: 100%;
    writing-mode: vertical-rl;
    width: 100%;
}
.floating a::before {
    background-image: url(../../images/new/icon-line.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 38px;
    margin-bottom: 15px;
    width: 40px;
}
@media screen and (max-width: 968px) {
    .floating {
        border-radius: 30px 30px 0 0;
        height: 70px;
        bottom: 0;
        top: inherit;
        left: 0;
        right: inherit;
        width: 100%;
    }
    .floating a {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        font-size: 16px;
        height: 100%;
        writing-mode: lr-tb;
        width: 100%;
    }
    .floating a::before {
        height: 32px;
        margin: 0 15px 0 0;
        width: 32px;
    }
}