@charset "UTF-8";

/* Footer */
.l-footer {
    padding-block: 93px 15px;
    position: relative;
    background-color: #FFFFFF;
    width: 100%;
    z-index: 2;
    overflow: hidden;
}
.l-footer::before {
    content: "";
    position: absolute;
    background: #D9D9D9;
    width: 100%;
    height: 1px;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 46px;
}
.footer__inner {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer__information {
    display: flex;
    justify-content: space-between;
    width: 1140px;
    padding-bottom: 100px;
}

.footer__corporate {
    display: flex;
    flex-direction: column;
    gap: 29px;
    width: 450px;
}
.footer__logo-box {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.footer__logo {
    width: 200px;
    height: 59px;
    flex-shrink: 0;
}
.footer__logo-link {
    width: 100%;
    height: 100%;
    display: flex;
}
.footer__logo-link:hover {
    opacity: 1;
}
.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__corporate-box {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer__corporate-name {
    color: #40331F;
    font-family: "Zen Kaku Gothic New";
    font-size: 24px;
    font-weight: 500;
    line-height: 145%;
    letter-spacing: 0.96px;
}
.footer__corporate-address {
    color: #92846D;
    font-family: "Zen Kaku Gothic New";
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.56px;
}
.footer__btn-list {
    display: flex;
    gap: 10px;
}
.footer__btn-item {
    width: 220px;
    height: 50px;
}
[class*="footer__btn-link--"] {
    display: flex;
    width: 100%;
    height: 100%;
    color: #FFF;
    font-family: "Zen Kaku Gothic New";
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.64px;
    border-radius: 9999px;
    position: relative;
    align-items: center;
}
.footer__btn-link--reservation {
    background: #E88A4F;
    padding-left: 85px;
}
.footer__btn-link--contact {
    background: #DE1F4B;
    padding-left: 69px;
}
[class*="footer__btn-link--"]::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 12px;
}
.footer__btn-link--reservation::before {
    background: url(/images/top/reservation__icon.svg) no-repeat center / cover;
    left: 51px;
}
.footer__btn-link--contact::before {
    background: url(/images/top/contact__icon.svg) no-repeat center / cover;
    left: 34px;
}
[class*="footer__btn-link--"]::after {
    content: "";
    position: absolute;
    background: url(/images/top/contact__arrow.svg) no-repeat center / cover;
    width: 17px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
}
.footer__btn-link--reservation:hover {
    color: #E88A4F;
    background: #FFF;
    border: 1px solid #E88A4F;
    opacity: 1;
}
.footer__btn-link--reservation:hover::after {
    background: url(/images/top/contents__arrow02.svg) no-repeat center / cover;
}
.footer__btn-link--contact:hover {
    color: #DE1F4B;
    background: #FFF;
    border: 1px solid #DE1F4B;
    opacity: 1;
}
.footer__btn-link--contact:hover::after {
    background: url(/images/top/contents__arrow.svg) no-repeat center / cover;
}
.footer__btn-link--reservation:hover::before {
    background: url(/images/top/reservation__icon-on.svg) no-repeat center / cover;
}
.footer__btn-link--contact:hover::before {
    background: url(/images/top/contact__icon-on.svg) no-repeat center / cover;
}
.footer__links {
    display: flex;
    gap: 60px;
}
.footer__box {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.footer__outline {
    color: #40331F;
    font-family: "Zen Kaku Gothic New";
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.8px;
}
.footer__links-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__link {
    color: #40331F;
    font-family: "Zen Kaku Gothic New";
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.56px;
    position: relative;
    width: fit-content;
}
.footer__link::after {
    content: "";
    position: absolute;
    background: #DE1F4B;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.footer__link:hover {
    opacity: 1;
}
.footer__link:hover::after {
    transform: scale(1, 1);
    transition: transform .3s;
}
.footer__copyright {
    color: #40331F;
    font-family: "Zen Kaku Gothic New";
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.48px;
}
