/* font family
font-family: "Noto Sans JP", sans-serif;
*/

:root {
    --ft-serif: "Noto Serif JP", serif;
}

* {
    box-sizing: border-box;
    color: #373737;
    font-family: 'Noto Sans JP', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
html,
body {
    background-color: #0E3E89;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.pc-contents {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(50vw - (466px / 2));
}
.pc-main {
    text-align: center;
    width: 70%;
    max-width: 300px;
}
.pc-main .reserve-main__btn a {
    font-size: 18px;
}
.pc-logo {
    margin: 25px 0 0;
}
.pc-btn .pc-txt {
    display: block;
    line-height: 0;
    margin: 0 0 15px;
    width: 100%;
    max-width: 324px;
}

.container {
    background: url(../images/bg.webp) no-repeat;
    background-position: right top;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}
.header,
.main,
.footer {
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    max-width: 466px;
}
@media screen and (max-width: 1023px) {
    .header,
    .main,
    .footer {
        max-width: none;
    }
    .pc-contents {
        display: none;
    }
}
/* header */
.header {
    background: #fff;
    filter: drop-shadow(0 4px 4px rgba(0 0 0 / 15%));
    margin: auto;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 95%;
}
.header-left {
    line-height: 0;
    width: 104px;
}
.header-left a {
    display: block;
    line-height: 0;
    max-width: 180px;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 104px);
}
.header-right a {
    display: block;
    line-height: 0;
    max-width: 180px;
}
@media (min-width: 1000px) {
}
/* footer */
.footer {
    background: #fff;
    padding: 20px 0 25px;
}
.footer-inner {
    margin: 0 auto;
    text-align: center;
}
.footer-logo {
    margin: 10px auto 25px;
    text-align: center;
    width: 104px;
}
.footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links ul li {
    line-height: 1em;
    padding: 0 10px;
    position: relative;
}
.footer-links ul li:not(:last-child)::after {
    background: #000;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}
.copyright {
    margin: 25px 0 0;
    text-align: center;
}
.copyright p {
    font-size: 3vw;
    font-weight: 400;
}
@media (min-width: 768px) {
    .copyright p {
        font-size: 10px;
    }
}