
* {
    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 {
    background: #FFA0A2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}
.header,
.main,
.footer {
    background: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 466px;
}
@media screen and (max-width: 1023px) {
    .header,
    .main,
    .footer {
        max-width: none;
    }
    .pc-contents {
        display: none;
    }
}
.footer {
    margin-top: auto;
}

.header {
    padding: 10px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
}
.header-left {
    display: inline-block;
    width: 120px;
}
.reserve-btn {
    background: #fd7978;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 4vw;
    padding: 10px 45px 10px 15px;
    position: relative;
}
.reserve-btn::after {
    background: url(../images/icon-triangle.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 20px;
    margin: auto;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 20px;
}
@media screen and (min-width: 768px) {
    .reserve-btn {
        font-size: 24px;
    }
}


.footer {
    background: #fd7978;
    padding: 50px 0 20px;
}
.footer-inner {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.footer-logo,
.footer-reserve {
    margin: 0 auto 25px;
    width: 82%;
}
.footer-tel {
    margin: 0 auto 45px;
    width: 82%;
}
.policy {
    border-bottom: 1px solid #fff;
    display: block;
    margin: 0 auto 25px;
    padding: 0 0 25px;
    text-align: center;
    width: 92%;
}
.policy a {
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
}
.copyright {
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: 3.2vw;
    font-weight: 500;
}
@media (min-width: 768px) {
    .policy a {
        font-size: 20px;
    }
    .copyright p {
        font-size: 18px;
    }
}