/* font family

font-family: 'Noto Sans JP', sans-serif;
font-family: 'Oswald', sans-serif;

*/

* {
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img {
    opacity: .8;
}
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: 0 0 25px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0 0 50px;
}
.header,
.main,
.footer {
    background: #fff;
    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;
    padding: 10px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}
.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 15px;
    width: 50%;
}
.header-left img {
    margin-right: 8px;
    width: 40vw;
    max-width: 245px;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    max-width: max-content;
}
.header-right::before,
.header-right::after {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 9vw;
    width: 2vw;
}
.header-right::before {
    background-image: url(../images/icon-kakko-l-b.png);
    margin-right: 2vw;
}
.header-right::after {
    background-image: url(../images/icon-kakko-r-b.png);
    margin-left: 2vw;
}
.header-txt {
    color: #000;
    font-size: 4vw;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
}
.header-txt span {
    color: #000;
    font-size: 2.5vw;
    font-weight: bold;
}
@media (min-width: 1000px) {
    .header-left img {
        width: 15vw;
        max-width: 200px;
    }
    .header-right::before,
    .header-right::after {
        height: 45px;
        width: 9px;
    }
    .header-right::before {
        margin-right: 10px;
    }
    .header-right::after {
        margin-left: 10px;
    }
    .header-txt {
        font-size: 20px;
    }
    .header-txt span {
        font-size: 13px;
    }
}
/* footer */
.footer {
    background: url(../images/footer-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}
.footer-inner {
    margin: 0 auto;
    text-align: center;
    width: 88%;
}
.footer-txt {
    color: #fff;
    font-size: 5vw;
    text-align: center;
}
.footer-logo {
    margin: 25px auto;
    width: 90%;
    max-width: 450px;
}
.copyright {
    margin: 25px 0 0;
}
.copyright p {
    color: #fff;
    font-size: 4vw;
    font-weight: 500;
}
.footer-link{
padding:25px 0 15px;
}
.footer-link a{
color:#ffffff;
padding:15px;
}
@media (min-width: 768px) {
    .footer-txt {
        font-size: 18px;
    }
    .copyright p {
        font-size: 16px;
    }
}