@charset "UTF-8";
/*------------------------------------------
  基本設定
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    letter-spacing: .05em;
    font-weight: 400;
    background: #faf8f2;
    color: #2f2f2f;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #f0813b;
    transition: opacity .4s ease;
}
a:hover {
    opacity: .6;
}
a.ico-link:after {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: .5em;
    background: url(../images/common/ico-link-og.svg) no-repeat center;
    background-size: 100%;
}

.is-tab {
    display: none;
}

.is-sp {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .is-tab {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 1.4em;
    }
    a:hover {
        opacity: 1;
    }
    a.ico-link:after {
        width: 12px;
        height: 12px;
    }
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.l-wrapper {
    overflow: hidden;
}

.l-inner {
    width: 92%;
    margin: auto;
    position: relative;
}
.l-inner--s {
    width: 82%;
}

@media only screen and (max-width: 767px) {
    .l-inner {
        width: 100%;
        padding: 0 24px;
    }
}

.l-pagehead {
    padding-top: 155px;
    height: 260px;
    margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    .l-pagehead {
        padding-top: 116px;
        height: 185px;
        margin-bottom: 48px;
    }
}

.l-pagefoot {
    margin-top: 64px;
    padding-bottom: 140px;
}
.l-pagefoot .foot-link {
    margin-top: 80px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .l-pagefoot {
        margin-top: 40px;
        padding-bottom: 120px;
    }
    .l-pagefoot__inner {
        padding: 0 32px;
    }
    .l-pagefoot .foot-link {
        margin-top: 64px;
    }
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== ttl ========== */
.c-ttl01 {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 0;
}
.c-ttl01 span {
    display: block;
    position: relative;
    line-height: 1.1;
}
.c-ttl01 .en {
    padding-right: 24px;
}
.c-ttl01 .en--megrus img {
    width: 175px;
}
.c-ttl01 .ja {
    font-size: 2.2rem;
    letter-spacing: .08em;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    padding-left: 56px;
}
.c-ttl01 .ja:before {
    content: "";
    width: 40px;
    height: 1px;
    background: #2f2f2f;
    position: absolute;
    left: 0;
    top: 50%;
}
.c-ttl01.only-ja .ja {
    font-size: 3.2rem;
    padding-left: 0;
}
.c-ttl01.only-ja .ja:before {
    content: none;
}

a.c-ttl01 {
    color: #2f2f2f;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .c-ttl01 {
        gap: 12px 0;
    }
    .c-ttl01 .en {
        padding-right: 16px;
    }
    .c-ttl01 .en--storelist img {
        width: 164px;
    }
    .c-ttl01 .en--purchase img {
        width: 160px;
    }
    .c-ttl01 .en--event img {
        width: 110px;
    }
    .c-ttl01 .en--megrus img {
        width: 122px;
    }
    .c-ttl01 .en--faq img {
        width: 61px;
    }
    .c-ttl01 .ja {
        font-size: 1.5rem;
        padding-left: 44px;
    }
    .c-ttl01 .ja:before {
        width: 28px;
    }
    .c-ttl01 .ja.sp-s {
        padding-left: 27px;
    }
    .c-ttl01 .ja.sp-s:before {
        width: 11px;
    }
    .c-ttl01.only-ja .ja {
        font-size: 2.2rem;
    }
}

/* ========== btn ========== */
.c-btn01 {
    display: block;
    text-align: center;
    font-weight: 500;
    background: #2f2f2f;
    color: #fff;
    padding: .7em 0 .8em;
    border-radius: 24px;
    transition: background .3s;
    text-decoration: none;
}
.c-btn01:hover {
    opacity: 1;
    background: #f0813b;
}

@media only screen and (max-width: 767px) {
    .c-btn01 {
        padding: 1em 0;
        font-size: 1.1rem;
    }
    .c-btn01:hover {
        background: #2f2f2f;
    }
}

.c-btn02 {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #2f2f2f;
    width: 252px;
    max-width: 100%;
    text-align: center;
    padding-bottom: 1em;
}
.c-btn02 .txt {
    overflow: hidden;
    display: block;
}
.c-btn02 .txt span {
    display: inline-block;
}
.c-btn02:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #2f2f2f;
    position: absolute;
    left: 0;
    bottom: 0;
}
.c-btn02 .arrow {
    overflow: hidden;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
}
.c-btn02 .arrow:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/common/arrow-l01.svg) no-repeat center;
    background-size: 100%;
}
.c-btn02:hover {
    opacity: 1;
}
.c-btn02:hover .txt span {
    -webkit-animation: textHoverUp .5s forwards ease-in-out;
            animation: textHoverUp .5s forwards ease-in-out;
}
.c-btn02:hover:before {
    -webkit-animation: underlineHover .5s forwards ease-in-out;
            animation: underlineHover .5s forwards ease-in-out;
}
.c-btn02:hover .arrow:after {
    -webkit-animation: arrowHoverLeft .5s .125s forwards ease-in-out;
            animation: arrowHoverLeft .5s .125s forwards ease-in-out;
}

@media only screen and (max-width: 767px) {
    .c-btn02 {
        width: 232px;
    }
    .c-btn02 .arrow {
        width: 22px;
        height: 22px;
    }
    .c-btn02:hover .txt span {
        -webkit-animation: none;
                animation: none;
    }
    .c-btn02:hover:before {
        -webkit-animation: none;
                animation: none;
    }
    .c-btn02:hover .arrow:after {
        -webkit-animation: none;
                animation: none;
    }
}

.c-btn03 {
    display: flex;
    height: clamp(32px, 6.07613vw, 64px);
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: #2f2f2f;
    color: #fff;
    font-size: clamp(1rem, 1.90337vw, 2rem);
    letter-spacing: .08em;
    border-radius: 100px;
    text-decoration: none;
    transition: background .3s;
}
.c-btn03:hover {
    opacity: 1;
    background: #f0813b;
}

@media only screen and (max-width: 767px) {
    .c-btn03 {
        height: 48px;
        font-size: 1.4rem;
    }
    .c-btn03:hover {
        background: #2f2f2f;
    }
}

.c-btn04 {
    display: flex;
    height: 56px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: #f0813b;
    color: #fff;
    letter-spacing: .08em;
    border-radius: 54px;
    text-decoration: none;
    transition: background .3s;
}
.c-btn04 span {
    display: inline-block;
    padding-right: 36px;
    background-repeat: no-repeat;
    background-position: right center;
}
.c-btn04 .link {
    background-image: url(../images/common/ico-link-wh.svg);
    background-size: 13px;
}
.c-btn04 .tel {
    background-image: url(../images/common/ico-tel-wh.svg);
    background-size: 15px;
}
.c-btn04:hover {
    opacity: 1;
    background: #2f2f2f;
}

@media only screen and (max-width: 767px) {
    .c-btn04 {
        letter-spacing: 0;
    }
    .c-btn04 span {
        display: block;
        width: 100%;
        text-align: center;
        padding-right: 0;
        background-position: right 28px center;
    }
    .c-btn04 .tel {
        padding-right: 1.5em;
    }
    .c-btn04:hover {
        opacity: 1;
        background: #f0813b;
    }
}

.c-btn05 {
    color: #2f2f2f;
    text-decoration: none;
    display: inline-block;
    background: #f6ebd8;
    border-radius: 24px;
    font-size: clamp(11px, 1.02489vw, 14px);
    font-weight: 500;
    padding: 1em clamp(20px, 2.34261vw, 32px);
    position: relative;
    width: 324px;
    max-width: 100%;
    text-align: left;
}
.c-btn05 .plus {
    position: absolute;
    width: clamp(12px, 1.1713vw, 16px);
    height: clamp(12px, 1.1713vw, 16px);
    top: 50%;
    transform: translateY(-50%);
    right: clamp(17px, 1.75695vw, 24px);
}
.c-btn05 .plus:before, .c-btn05 .plus:after {
    content: "";
    position: absolute;
    background: #2f2f2f;
}
.c-btn05 .plus:before {
    width: 2px;
    height: 100%;
    left: 50%;
    margin-left: -1px;
    top: 0;
}
.c-btn05 .plus:after {
    height: 2px;
    width: 100%;
    top: 50%;
    margin-top: -1px;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .c-btn05 {
        border-radius: 24px;
        font-size: 12px;
        font-weight: 700;
        padding: 1.1em 24px;
        width: 250px;
    }
    .c-btn05 .plus {
        width: 12px;
        height: 12px;
        right: 24px;
    }
}

.c-btn06 {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #2f2f2f;
    width: 320px;
    max-width: 100%;
    text-align: left;
    padding-bottom: 1em;
}
.c-btn06 .txt {
    overflow: hidden;
    display: block;
}
.c-btn06 .txt span {
    display: inline-block;
}
.c-btn06:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #2f2f2f;
    position: absolute;
    left: 0;
    bottom: 0;
}
.c-btn06 .arrow {
    overflow: hidden;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.c-btn06 .arrow:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/common/arrow-r01.svg) no-repeat center;
    background-size: 100%;
}
.c-btn06:hover {
    opacity: 1;
}
.c-btn06:hover .txt span {
    -webkit-animation: textHoverUp .5s forwards ease-in-out;
            animation: textHoverUp .5s forwards ease-in-out;
}
.c-btn06:hover:before {
    -webkit-animation: underlineHover .5s forwards ease-in-out;
            animation: underlineHover .5s forwards ease-in-out;
}
.c-btn06:hover .arrow:after {
    -webkit-animation: arrowHoverRight .5s .125s forwards ease-in-out;
            animation: arrowHoverRight .5s .125s forwards ease-in-out;
}

@media only screen and (max-width: 767px) {
    .c-btn06 {
        width: 220px;
    }
    .c-btn06 .arrow {
        width: 22px;
        height: 22px;
    }
    .c-btn06:hover .txt span {
        -webkit-animation: none;
                animation: none;
    }
    .c-btn06:hover:before {
        -webkit-animation: none;
                animation: none;
    }
    .c-btn06:hover .arrow:after {
        -webkit-animation: none;
                animation: none;
    }
}

/* ========== list ========== */
.c-list01 {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 32px 5%;
}
.c-list01__item {
    width: 30%;
    color: #2f2f2f;
    text-decoration: none;
}
.c-list01 .item-ttl {
    margin-top: 12px;
}
.c-list01 .item-date {
    font-size: 1.4rem;
    margin-top: 8px;
}

@media only screen and (max-width: 767px) {
    .c-list01 {
        gap: 24px 0;
    }
    .c-list01__item {
        width: 100%;
    }
    .c-list01 .item-ttl {
        font-size: 1.6rem;
        margin-top: 12px;
    }
    .c-list01 .item-date {
        font-size: 1.4rem;
        margin-top: 8px;
    }
}

/* ========== block ========== */
.c-block01 {
    text-align: center;
    padding: 64px;
    border-radius: 20px;
    background: url(../images/shop-kaitori/reservation-bg.webp) no-repeat center;
    background-size: cover;
}
.c-block01 .block-ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.c-block01 .block-lead {
    font-size: 18px;
    line-height: 1.75;
}
.c-block01 .block-txt {
    font-size: 12px;
    margin-top: 8px;
}
.c-block01 .block-btn {
    margin-top: 16px;
}
.c-block01 .block-btn a {
    max-width: 423px;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    .c-block01 {
        padding: 40px 24px;
    }
    .c-block01 .block-ttl {
        font-size: 2rem;
        margin-bottom: 16px;
        font-weight: 600;
    }
    .c-block01 .block-lead {
        font-size: 14px;
    }
    .c-block01 .block-btn {
        margin-top: 24px;
    }
    .c-block01 .block-btn a {
        max-width: 100%;
    }
}

.c-block02 .block-ttl {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 32px;
}

.c-block02 .block-txt {
    line-height: 2;
}
.c-block02 .block-txt.col-2 {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
}
.c-block02 .block-txt.col-2 p {
    width: 48%;
}

.c-block02 .block-caution {
    font-size: 12px;
    margin-top: 32px;
}

@media only screen and (max-width: 767px) {
    .c-block02 .block-ttl {
        font-size: 16px;
        margin-bottom: 1em;
    }
    .c-block02 .block-txt {
        line-height: 1.75;
    }
    .c-block02 .block-txt.col-2 p {
        width: 100%;
    }
    .c-block02 .block-caution {
        margin-top: 16px;
    }
}

.c-block03 {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    margin-bottom: 200px;
}
.c-block03:last-child {
    margin-bottom: 0;
}
.c-block03 .block-img {
    width: 48%;
}
.c-block03 .block-txt {
    width: 42%;
    margin-left: auto;
    letter-spacing: .08em;
}
.c-block03 .block-txt__num {
    margin-bottom: 40px;
}
.c-block03 .block-txt__num img {
    width: auto;
    height: 46px;
}
.c-block03 .block-txt__ttl {
    font-size: 3.2rem;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 24px;
}
.c-block03 .block-txt__txt .caution {
    font-size: 12px;
    margin-top: 8px;
}

@media only screen and (max-width: 767px) {
    .c-block03 {
        margin-bottom: 64px;
    }
    .c-block03 .block-img {
        width: 100%;
        margin-bottom: 35px;
    }
    .c-block03 .block-txt {
        width: 100%;
    }
    .c-block03 .block-txt__num {
        margin-bottom: 24px;
    }
    .c-block03 .block-txt__ttl {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
}

.c-block04 {
    background: #f0ebe1;
    border-radius: 20px;
    text-align: center;
    padding: 64px 0;
}
.c-block04__txt {
    font-weight: 500;
    letter-spacing: .08em;
    margin-bottom: 30px;
}
.c-block04__btn {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: center;
}
.c-block04__btn.col-2 {
    gap: 24px 2.88%;
}
.c-block04__btn.col-2 a {
    width: 38%;
}
.c-block04__btn.col-3 {
    gap: 24px 2.16%;
}
.c-block04__btn.col-3 a {
    width: 28%;
}

@media only screen and (max-width: 1024px) {
    .c-block04__btn.col-2 {
        gap: 24px 4%;
    }
    .c-block04__btn.col-2 a {
        width: 40%;
    }
    .c-block04__btn.col-3 {
        gap: 24px 4%;
    }
    .c-block04__btn.col-3 a {
        width: 40%;
    }
}

@media only screen and (max-width: 767px) {
    .c-block04 {
        padding: 32px;
    }
    .c-block04__txt {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .c-block04__btn.col-2 {
        gap: 16px 0;
    }
    .c-block04__btn.col-2 a {
        width: 100%;
    }
    .c-block04__btn.col-3 {
        gap: 16px 0;
    }
    .c-block04__btn.col-3 a {
        width: 100%;
    }
}

.c-block05 {
    margin-bottom: 2em;
    line-height: 1.75;
}
.c-block05:last-child {
    margin-bottom: 0;
}
.c-block05 p {
    margin-bottom: .5em;
}
.c-block05 p:last-child {
    margin-bottom: 0;
}
.c-block05 ol {
    counter-reset: number 0;
}
.c-block05 ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: .5em;
}
.c-block05 ol li:last-child {
    margin-bottom: 0;
}
.c-block05 ol li:before {
    counter-increment: number 1;
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .c-block05 {
        margin-bottom: 2em;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .c-block05 ol li {
        padding-left: 20px;
    }
}

/* ========== shoplist ========== */
.c-shoplist__item {
    padding-bottom: 64px;
    margin-bottom: 64px;
    border-bottom: 1px solid #e2dcd0;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.c-shoplist__item:last-child {
    margin-bottom: 0;
}

.c-shoplist .item-img {
    width: 44%;
}

.c-shoplist .item-txt {
    width: 48%;
    margin-left: auto;
}

.c-shoplist .store-name {
    font-size: 2.8rem;
    margin-bottom: .7em;
}

.c-shoplist .store-info {
    width: 100%;
    margin-bottom: 1.5em;
}
.c-shoplist .store-info th, .c-shoplist .store-info td {
    padding-bottom: 1em;
    line-height: 1.66;
}
.c-shoplist .store-info th {
    text-align: left;
    width: 5em;
}
.c-shoplist .store-info td {
    padding-left: 1em;
}
.c-shoplist .store-info tr:last-child th, .c-shoplist .store-info tr:last-child td {
    padding-bottom: 0;
}

.c-shoplist .store-txt {
    font-size: 1.4rem;
    margin-bottom: 1.2em;
}

.c-shoplist .store-tel {
    margin-bottom: 12px;
    background: #f0ebe1;
    border-radius: 8px;
    font-weight: 500;
    padding: .8em 0;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 0 24px;
    align-items: center;
    justify-content: center;
}
.c-shoplist .store-tel__txt {
    font-size: 1.4rem;
}
.c-shoplist .store-tel__num {
    line-height: 1.1;
    font-size: 2.3rem;
    padding-left: 32px;
    background: url(../images/common/ico-tel.svg) no-repeat left center;
    background-size: 20px;
}

.c-shoplist .store-link__btn {
    margin-bottom: 12px;
}
.c-shoplist .store-link__btn:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .c-shoplist__item {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: none;
        position: relative;
    }
    .c-shoplist__item:before {
        content: "";
        width: calc(100% - 16px);
        height: 1px;
        background: #e2dcd0;
        position: absolute;
        bottom: 0;
        left: 8px;
    }
    .c-shoplist .item-img {
        width: 100%;
        margin-bottom: 24px;
    }
    .c-shoplist .item-txt {
        width: 100%;
        padding: 0 8px;
    }
    .c-shoplist .store-name {
        font-size: 2rem;
        line-height: 1.75;
        margin-bottom: .5em;
    }
    .c-shoplist .store-txt {
        margin-bottom: 24px;
    }
    .c-shoplist .store-tel {
        display: none;
    }
    .c-shoplist .store-link__btn {
        margin-bottom: 8px;
    }
}

/* ========== flow ========== */
.c-flowlist__item {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    background: #fff;
    border-radius: 40px;
    padding: 50px clamp(25px, 3.66032vw, 50px) 50px clamp(32px, 4.68521vw, 64px);
}
.c-flowlist__item:last-child {
    margin-bottom: 0;
}

.c-flowlist .flow-txt {
    width: 41%;
}
.c-flowlist .flow-txt__num {
    margin-bottom: 1em;
}
.c-flowlist .flow-txt__num img {
    width: auto;
    height: 28px;
}
.c-flowlist .flow-txt__ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.c-flowlist .flow-txt__txt {
    font-size: 18px;
    line-height: 1.75;
}
.c-flowlist .flow-txt__btn {
    margin-top: 24px;
}

.c-flowlist .flow-img {
    width: 46%;
    margin-left: auto;
}
.c-flowlist .flow-img img {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .c-flowlist__item {
        display: block;
        border-radius: 20px;
        padding: 32px;
    }
    .c-flowlist .flow-txt {
        width: 100%;
        margin-bottom: 24px;
    }
    .c-flowlist .flow-txt__ttl {
        font-size: 2rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
    .c-flowlist .flow-txt__txt {
        font-size: 14px;
    }
    .c-flowlist .flow-txt__btn {
        margin-top: 8px;
        text-align: center;
    }
    .c-flowlist .flow-img {
        width: 100%;
    }
}

/* ========== faq ========== */
.c-faqlist {
    position: relative;
    top: 0;
}
.c-faqlist__item {
    position: relative;
    top: 0;
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 24px 32px;
    background: #f0ebe1;
    letter-spacing: .08em;
}
.c-faqlist__item:last-child {
    margin-bottom: 0;
}
.c-faqlist__item .faq-question {
    position: relative;
    font-weight: 700;
    padding: 0 32px;
    transition: .3s;
}
.c-faqlist__item .faq-question:before {
    content: "";
    width: 17px;
    height: 21px;
    position: absolute;
    top: .2em;
    left: 0;
    background-image: url(../images/common/txt-q.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    transition: .3s;
}
.c-faqlist__item .faq-question .icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
    width: 16px;
    height: 16px;
}
.c-faqlist__item .faq-question .icon:before, .c-faqlist__item .faq-question .icon:after {
    content: "";
    position: absolute;
    background: #2f2f2f;
    transition: .3s;
}
.c-faqlist__item .faq-question .icon:before {
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
}
.c-faqlist__item .faq-question .icon:after {
    top: 50%;
    margin-top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
}
.c-faqlist__item .faq-question:hover {
    color: #f0813b;
}
.c-faqlist__item .faq-question:hover:before {
    background-image: url(../images/common/txt-q-og.svg);
}
.c-faqlist__item .faq-question:hover .icon:before, .c-faqlist__item .faq-question:hover .icon:after {
    background: #f0813b;
}
.c-faqlist__item .faq-question.is-active {
    color: #f0813b;
}
.c-faqlist__item .faq-question.is-active:before {
    background-image: url(../images/common/txt-q-og.svg);
}
.c-faqlist__item .faq-question.is-active .icon:before {
    opacity: 0;
}
.c-faqlist__item .faq-question.is-active .icon:after {
    background: #f0813b;
}
.c-faqlist__item .faq-answer {
    position: relative;
    margin-top: 16px;
    padding: 0 32px;
}
.c-faqlist__item .faq-answer:before {
    content: "";
    width: 17px;
    height: 19px;
    position: absolute;
    top: .3em;
    left: 0;
    background: url(../images/common/txt-a.svg) no-repeat center top;
    background-size: 100%;
}

@media only screen and (max-width: 767px) {
    .c-faqlist__item {
        margin-bottom: 8px;
        padding: 16px 24px;
    }
    .c-faqlist__item .faq-question {
        position: relative;
        padding: 0 38px 0 28px;
    }
    .c-faqlist__item .faq-question:hover {
        color: #2f2f2f;
    }
    .c-faqlist__item .faq-question:hover:before {
        background-image: url(../images/common/txt-q.svg);
    }
    .c-faqlist__item .faq-question:hover .icon:before, .c-faqlist__item .faq-question:hover .icon:after {
        background: #2f2f2f;
    }
    .c-faqlist__item .faq-answer {
        padding: 0 0 0 28px;
    }
}

/* ========== article ========== */
.c-article {
    padding-bottom: 56px;
}
.c-article__inner {
    display: flex;
}
.c-article .article-img {
    width: 44%;
    padding-top: 35px;
}
.c-article .article-img img {
    width: 100%;
}
.c-article .article-txt {
    width: 51%;
    margin-left: auto;
}
.c-article .article-txt__date {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.c-article .article-txt__ttl {
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.c-article .article-txt__lead {
    line-height: 1.75;
}
.c-article .article-txt__txt {
    margin-top: 2em;
    line-height: 1.75;
}
.c-article .article-txt__txt p {
    margin-bottom: 12px;
}
.c-article .article-txt__txt p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .c-article {
        padding-bottom: 24px;
    }
    .c-article__inner {
        display: block;
    }
    .c-article .article-img {
        width: 100%;
        padding-top: 0;
        margin-bottom: 24px;
    }
    .c-article .article-txt {
        width: 100%;
        padding: 0 8px;
    }
    .c-article .article-txt__date {
        margin-bottom: 12px;
    }
    .c-article .article-txt__ttl {
        font-size: 2rem;
        line-height: 1.75;
    }
    .c-article .article-txt__lead {
        margin-bottom: 2.2em;
    }
    .c-article .article-txt__txt {
        margin-top: 1.7em;
    }
}

/* ========== toggle ========== */
.c-toggle {
    cursor: pointer;
    width: 61px;
    height: 48px;
    background: #f6ebd8;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-toggle__icon {
    width: 24px;
    height: 10px;
    position: relative;
}
.c-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2f2f2f;
    transition: .3s;
}
.c-toggle span:nth-child(1) {
    top: 0;
}
.c-toggle span:nth-child(2) {
    bottom: 0;
}
.c-toggle.is-active span:nth-child(1) {
    transform: rotate(35deg);
    top: 50%;
    margin-top: -1px;
}
.c-toggle.is-active span:nth-child(2) {
    transform: rotate(-35deg);
    bottom: 50%;
    margin-bottom: -1px;
}

@media only screen and (max-width: 767px) {
    .c-toggle {
        width: 50px;
        height: 38px;
    }
    .c-toggle__icon {
        width: 20px;
        height: 8px;
    }
}

/* ========== hoge ========== */
/* ========== modal ========== */
.js-acTrigger {
    cursor: pointer;
}

.js-acHide {
    display: none;
}

/* ========== modal ========== */
.js-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(245, 160, 70, .9);
    z-index: 10000;
}
.js-modalOuter {
    display: table;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}
.js-modalIn {
    display: table-cell;
    vertical-align: middle;
    padding: 40px 32px;
}
.js-modalContent {
    position: relative;
    background: #fff;
    max-width: 580px;
    margin: auto;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 64px;
}
.js-modalOpen {
    cursor: pointer;
}
.js-modalClose {
    cursor: pointer;
}
.js-modalClose--btn01 {
    text-align: center;
    margin-top: 32px;
}
.js-modalClose--btn01 span {
    display: inline-block;
    background: #f6ebd8;
    width: 140px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    padding: .65em 0;
}
.js-modalClose--btn02 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

@media only screen and (max-width: 767px) {
    .js-modalContent {
        padding: 48px 32px;
    }
    .js-modalClose--btn01 {
        margin-top: 16px;
    }
}

/* ========== animation ========== */
@-webkit-keyframes textHoverUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-100%);
    }
    51% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes textHoverUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-100%);
    }
    51% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes underlineHover {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    50% {
        transform: scaleX(0);
        transform-origin: right;
    }
    51% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes underlineHover {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    50% {
        transform: scaleX(0);
        transform-origin: right;
    }
    51% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@-webkit-keyframes arrowHoverLeft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%);
    }
    51% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes arrowHoverLeft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%);
    }
    51% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@-webkit-keyframes arrowHoverRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    51% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes arrowHoverRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    51% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@-webkit-keyframes shakingSlide {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1.3deg);
    }
    50% {
        transform: rotate(-1.3deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes shakingSlide {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1.3deg);
    }
    50% {
        transform: rotate(-1.3deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes mvDots {
    0% {
        transform: rotateX(0);
    }
    100% {
        transform: rotateX(180deg);
    }
}

@keyframes mvDots {
    0% {
        transform: rotateX(0);
    }
    100% {
        transform: rotateX(180deg);
    }
}

@-webkit-keyframes mvScroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@keyframes mvScroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.fadeInUp {
    opacity: 0;
    transform: translateY(2em);
}
.fadeInUp.js-scr-active {
    opacity: 1;
    transform: translateY(0);
    transition: 1s;
}

/*------------------------------------------
  header
------------------------------------------*/
.l-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding-top: 25px;
    z-index: 100;
}
.l-header__inner {
    background: #faf8f2;
    border-radius: 24px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .05);
    display: flex;
    height: 74px;
    align-items: center;
    padding: 0 89px 0 clamp(20px, 2.92826vw, 40px);
}
.l-header a {
    display: block;
    text-decoration: none;
    font-weight: 500;
}
.l-header .header-nav {
    margin-left: auto;
    display: flex;
    gap: 0 2em;
    margin-right: 40px;
}
.l-header .header-nav li {
    overflow: hidden;
}
.l-header .header-nav a {
    font-size: clamp(10px, 1.1713vw, 1.4rem);
    color: #2f2f2f;
}
.l-header .header-nav a span {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
.l-header .header-nav a:hover {
    opacity: 1;
}
.l-header .header-nav a:hover span {
    -webkit-animation: textHoverUp .5s forwards ease-in-out;
            animation: textHoverUp .5s forwards ease-in-out;
}
.l-header .header-guide {
    width: 158px;
    position: relative;
    z-index: 101;
}
.l-header .header-toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1024px) {
    .l-header .header-nav {
        display: none;
    }
    .l-header .header-guide {
        margin-left: auto;
    }
}

@media only screen and (max-width: 767px) {
    .l-header {
        padding: 24px 14px 0;
    }
    .l-header__inner {
        border-radius: 16px;
        box-shadow: none;
        height: 60px;
        padding: 0 72px 0 24px;
    }
    .l-header .header-logo img {
        width: 90px;
    }
    .l-header .header-guide {
        width: 128px;
    }
    .l-header .header-toggle {
        right: 16px;
    }
}

.l-nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    background: url(../images/common/header-hide-bg.webp) no-repeat center;
    background-size: cover;
}
.l-nav:before {
    content: "";
    width: calc(100% - 602px);
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/common/header-hide-img.webp) no-repeat center;
    background-size: clamp(1000px, 120%, 120%);
}
.l-nav .nav-menu {
    width: 602px;
    height: 100vh;
    -ms-overflow-y: auto;
        overflow-y: auto;
    background: #faf8f2;
    margin-left: auto;
    position: relative;
    border-radius: 0 0 0 173px / 0 0 0 173px;
}
.l-nav .nav-menu__inner {
    max-width: 444px;
    margin: auto;
    padding: 52px 0;
    opacity: 0;
    transform: translateY(2em);
    transition: .8s .5s;
}
.l-nav .nav-menu .menu-head {
    margin-bottom: 60px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
}
.l-nav .nav-menu .menu-head__guide {
    width: 158px;
    margin-left: auto;
}
.l-nav .nav-menu .menu-head__toggle {
    margin-left: 8px;
}
.l-nav .nav-menu .menu-list {
    margin-bottom: 40px;
}
.l-nav .nav-menu .menu-list li {
    margin-bottom: 1.5em;
    overflow: hidden;
}
.l-nav .nav-menu .menu-list li:last-child {
    margin-bottom: 0;
}
.l-nav .nav-menu .menu-list a {
    color: #2f2f2f;
    font-weight: 700;
    text-decoration: none;
    display: block;
}
.l-nav .nav-menu .menu-list a span {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
.l-nav .nav-menu .menu-list a:hover {
    opacity: 1;
}
.l-nav .nav-menu .menu-list a:hover span {
    -webkit-animation: textHoverUp .5s forwards ease-in-out;
            animation: textHoverUp .5s forwards ease-in-out;
}
.l-nav .nav-menu .menu-copy {
    font-size: 1rem;
    margin-bottom: 40px;
    white-space: nowrap;
}
.l-nav .nav-menu .menu-line a {
    display: block;
    color: #fff;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
    padding: 12px 0;
    line-height: 1.3;
    font-size: 1.2rem;
    background-color: #4cc764;
    background-image: url(../images/common/ico-line.svg);
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 48px;
}
.l-nav .nav-menu .menu-line a strong {
    font-size: 1.8rem;
    font-weight: 500;
}
.l-nav.is-active .nav-menu__inner {
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 767px) {
    .l-nav {
        background: #faf8f2;
    }
    .l-nav:before {
        content: none;
    }
    .l-nav .nav-menu {
        width: 100%;
        border-radius: 0;
    }
    .l-nav .nav-menu__inner {
        width: 70%;
        max-width: 100%;
        padding: 35px 0;
    }
    .l-nav .nav-menu .menu-head__ttl img {
        width: 70px;
    }
    .l-nav .nav-menu .menu-head__guide {
        width: 128px;
        transform: translateX(30px);
    }
    .l-nav .nav-menu .menu-head__toggle {
        margin-left: 6px;
        transform: translateX(30px);
    }
    .l-nav .nav-menu .menu-list li {
        margin-bottom: 1.7em;
    }
    .l-nav .nav-menu .menu-list a:hover span {
        -webkit-animation: none;
                animation: none;
    }
    .l-nav .nav-menu .menu-copy {
        margin-bottom: 64px;
    }
    .l-nav .nav-menu .menu-line a {
        padding-left: 20px;
    }
}

/* 来店予約ボタンを非表示 */

/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
    padding: 118px 0 20.93704vw;
    position: relative;
    background: #2f2f2f;
    color: #f0ebe1;
}
.l-footer:before {
    content: "";
    width: 100%;
    height: 13.17716vw;
    position: absolute;
    left: 0;
    top: -10.10249vw;
    background: url(../images/common/footer-bg.svg) no-repeat center top;
    background-size: 100%;
}
.l-footer:after {
    content: "";
    width: 100%;
    height: 17.27672vw;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/common/sitelogo04.svg) no-repeat center top;
    background-size: auto 19.3265vw;
}
.l-footer a {
    color: #f0ebe1;
}
.l-footer__inner {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
}
.l-footer__contents {
    position: relative;
}
.l-footer__contents--left {
    width: calc(100% - 284px);
}
.l-footer__contents--right {
    text-align: right;
    width: 264px;
    padding-top: 1em;
}
.l-footer .footer-logo {
    margin-bottom: 76px;
}
.l-footer .footer-logo__txt {
    font-size: 1.2rem;
    margin-top: .5em;
}
.l-footer .footer-menu {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 1.5em 48px;
}
.l-footer .footer-menu__list li {
    margin-bottom: 1.5em;
}
.l-footer .footer-menu__list li:last-child {
    margin-bottom: 0;
}
.l-footer .footer-menu__list a {
    text-decoration: none;
}
.l-footer .footer-line a {
    display: inline-block;
    width: 264px;
    border-radius: 100px;
    text-align: left;
    text-decoration: none;
    padding: 12px 0 12px 77px;
    line-height: 1.3;
    font-size: 1.2rem;
    background-color: #4cc764;
    background-image: url(../images/common/ico-line.svg);
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 48px;
}
.l-footer .footer-line a strong {
    font-size: 1.8rem;
    font-weight: 500;
}
.l-footer .footer-copy {
    font-size: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .l-footer {
        padding: 145px 0 29.33333vw;
    }
    .l-footer:before {
        height: 13.33333vw;
        top: -10.66667vw;
        background: url(../images/common/footer-bg-sp.svg) no-repeat center top;
        background-size: 100%;
    }
    .l-footer:after {
        height: 18.93333vw;
        background-size: 100%;
    }
    .l-footer__inner {
        padding: 0 32px;
    }
    .l-footer__contents--left {
        width: 100%;
        margin-bottom: 48px;
    }
    .l-footer__contents--right {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .l-footer .footer-logo {
        margin-bottom: 40px;
    }
    .l-footer .footer-logo__img img {
        width: 228px;
    }
    .l-footer .footer-logo__txt {
        font-size: .9rem;
        margin-top: 1em;
    }
    .l-footer .footer-menu {
        gap: 16px 0;
    }
    .l-footer .footer-menu__list {
        width: 100%;
    }
    .l-footer .footer-menu__list li {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .l-footer .footer-menu__list:last-child {
        margin-bottom: 0;
    }
    .l-footer .footer-line img {
        width: 264px;
    }
    .l-footer .footer-copy {
        position: static;
        font-size: 1rem;
        margin-top: 3em;
    }
}

/*------------------------------------------
  contents
------------------------------------------*/
/* ========== common section ========== */
.p-sec {
    position: relative;
}
.p-sec .sec-head {
    margin-bottom: 64px;
}
.p-sec .sec-head .head-ttl {
    font-size: 2.8rem;
    letter-spacing: .08em;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
}
.p-sec .sec-head .head-lead {
    margin-top: 1em;
}

@media only screen and (max-width: 767px) {
    .p-sec .sec-head {
        margin-bottom: 40px;
    }
    .p-sec .sec-head .head-ttl {
        font-size: 2rem;
    }
    .p-sec .sec-head .head-lead {
        margin-top: 1em;
    }
}

.p-contact {
    background: #f0ebe1;
    padding-bottom: 13.17716vw;
}
.p-contact:before {
    content: "";
    width: 100%;
    height: 13.17716vw;
    position: absolute;
    left: 0;
    top: -10.10249vw;
    background: url(../images/common/contact-bg.svg) no-repeat center top;
    background-size: 100%;
}
.p-contact .p-sec__inner {
    padding-bottom: 95px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
}
.p-contact .sec-head {
    margin-bottom: 0;
    width: 46%;
}
.p-contact .sec-head .head-lead {
    font-size: 18px;
    line-height: 1.75;
    margin-top: 1.78em;
}
.p-contact .sec-head .head-link {
    margin-top: 85px;
}
.p-contact .sec-contents {
    width: 38%;
    margin-left: auto;
}
.p-contact .contact-btn li {
    margin-bottom: 16px;
}
.p-contact .contact-btn li:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .p-contact {
        padding-top: 90px;
        padding-bottom: 45.33333vw;
    }
    .p-contact:before {
        height: 13.33333vw;
        top: -10.66667vw;
        background: url(../images/common/contact-bg-sp.svg) no-repeat center top;
        background-size: 100%;
    }
    .p-contact .p-sec__inner {
        padding: 0 32px;
    }
    .p-contact .sec-head {
        width: 100%;
        margin-bottom: 40px;
    }
    .p-contact .sec-head .head-lead {
        font-size: 14px;
    }
    .p-contact .sec-contents {
        width: 100%;
    }
    .p-contact .contact-btn {
        margin-bottom: 64px;
    }
}