.footer {
    background-color: var(--sub_color);
    padding: 1rem;
    border-top: 20px solid var(--main_color);
}

.footer_inner {
    max-width: var(--maxWh);
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer_block {
    width: calc(100% / 3);
}

@media screen and (max-width: 900px) {
    .footer_block {
        width: 100% !important;
    }
}

.footer a {
    color: unset;
    text-decoration: none;
}

.footer .copy {
    font-size: 0.75rem;
    text-align: center;
    padding: 0.3rem;
    padding-top: 1rem;
    color: var(--main_color);
}

.f_companylogo {
    max-width: 260px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.f_main-menu li {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--main_color);
}
.f_main-menu li::before {
    content: "";
    background-image: url("../img/arrow_bl.svg");
    width: 1rem;
    height: 1rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}

.f_main-menu .sub-menu li {
    font-weight: normal;
    margin-bottom: 0;
    margin-left: 0.2rem;
}

/* 予約ボタン */
.rsvp_info_contents {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 40px;
    padding: 1rem;
}

.rsvp_info_block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rsvp_info_title {
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.rsvp_info_title::after {
    content: "Contact";
    color: #c9e7fd;
    position: absolute;
    letter-spacing: 0.5rem;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-size: 4rem;
}

.rsvp_info_btn {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 0.5rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    box-sizing: border-box;
    line-height: 1.3;
    /* box-shadow: 0px 8px 0px 0px #cccccc; */
    transition: 0.5s;
}

.rsvp_info_btn_text {
    font-size: 2rem;
}

.rsvp_info_icon {
    margin-bottom: -3px;
}

.rsvp_info_btn a {
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    font-family:
        Noto Sans JP,
        sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.web_btn {
    background-color: var(--sub_color2);
    box-shadow: 0px 8px 0px 0px #d06f00;
}
.rsvp_info_btn.web_btn:hover {
    opacity: 100;
    text-decoration: none;
    box-shadow: 0px 3px 0px 0px #d06f00;
    transform: translateY(10px);
}

.tel_btn {
    background-color: var(--main_color);
    box-shadow: 0px 8px 0px 0px #1b5b91;
}
.rsvp_info_btn.tel_btn:hover {
    opacity: 100;
    text-decoration: none;
    box-shadow: 0px 3px 0px 0px #1b5b91;
    transform: translateY(10px);
}

.rsvp_info_Riha {
    text-align: center;
    margin-top: 1rem;
}
.rsvp_info_Riha h3::after {
    display: none;
}
.rsvp_info_Riha .tel_btn {
    background-color: var(--green);
    margin: auto;
    box-shadow: 0px 8px 0px 0px #00792b;
}

.rsvp_info_Riha .tel_btn:hover {
    opacity: 100;
    text-decoration: none;
    box-shadow: 0px 3px 0px 0px #00792b !important;
    transform: translateY(10px);
}

/* 下層ページバナー トップページで非表示 */
.page-id-5 .subpage_banner {
    display: none;
}
.subpage_banner {
    padding: 2rem 1rem;
    background-image: var(--gradation);
    margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
    .subpage_banner {
        margin-bottom: 2rem;
    }
}
.subpage_bar_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: var(--maxWh);
    margin: auto;
}

.subpage_banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 5;
}

@media screen and (max-width: 480px) {
    .rsvp_info_btn_text {
        font-size: 6vw;
    }
}

@media screen and (max-width: 768px) {
    .rsvp_info_title::after {
        font-size: 7vw;
    }

    .rsvp_info_block {
        flex-direction: column;
    }
    .subpage_bar_inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media screen and (max-width: 900px) {
    .footer_inner {
        gap: 2rem;
        flex-direction: column;
    }
}

/* サイドのオプション */
.side_option {
    position: fixed;
    bottom: 3%;
    right: 0;
    z-index: 999;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.side_option.hide {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.side_option_item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 3rem 0.5rem 2rem;
    margin-bottom: 0.4rem;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    transform: translateX(35px);
    transition: all 0.5s ease-out;
    color: #fff;
}
.side_option_web a {
    background-color: var(--sub_color2);
}

.side_option_tel a {
    background-color: var(--main_color);
}

.side_option_map a {
    background-color: var(--green);
}

.side_option_top a {
    background-color: var(--main_color);
}
/* トップボタン */
.side_option_item.side_option_top a {
    border-radius: 50%;
    transform: translateX(90px);
    padding: 12px 16px 23px 16px;
    display: inline-flex;
    line-height: 0;
    gap: 1rem;
}
.side_option_top img {
    transform: rotate(-90deg);
    width: 24px !important;
    height: 24px !important;
}

.side_option img {
    width: 100%;
    max-width: 30px;
    height: 30px;
    object-fit: contain;
}

.side_option_web a:hover,
.side_option_tel a:hover,
.side_option_map a:hover {
    transform: translateX(20px);
    opacity: 100;
}

/* サイドのオプションを下に */
@media screen and (max-width: 768px) {
    .footer {
        padding-bottom: 100px;
    }
    .side_option_top {
        position: fixed;
        bottom: 60px;
        right: 80px;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    .side_option_top a {
        padding: 1rem 1.25rem 1rem 1.25rem !important;
        gap: 0.75rem !important;
        font-size: 10px !important;
    }
    .side_option {
        bottom: 0%;
        width: 100%;
        background-color: #fff;
        border-top: solid 1px #fff;
    }
    .side_option span {
        font-size: 2vw;
    }
    .side_option_inner {
        display: flex;
        gap: 1rem;
        padding: 0;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0;
    }
    .side_option_item {
        flex: 1;
    }
    .side_option_item a {
        margin-bottom: 0;
        border-radius: 0px;
        transform: translateX(0px);
        font-size: 14px;
        text-align: center;
        padding: 0.5rem;
    }
    .side_option_web a:hover,
    .side_option_tel a:hover,
    .side_option_map a:hover {
        transform: translateX(0px);
        opacity: 0.8;
    }
    .side_option.hide {
        transform: translateY(100%);
    }
}

.f_payment p {
    padding-bottom: 0.5rem;
    font-weight: bold;
}

.f_payment img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding-bottom: 1rem;
}

.f_companylogo img {
    mix-blend-mode: multiply;
}
