/* web font
*/

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

* {
    box-sizing: border-box;
    color: #231815;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
/* header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.lp1 .header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
}
.lp2 .header {
    background: #F8E23A;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    padding-left: 45px;
    width: 100%;
}
.header-left {
    width: 280px;
}
.header-right {
    height: 100%;
    width: calc(100% - 280px);
}
.logo {
    display: block;
    line-height: 0;
}
.header-nav,
.header-nav__inner {
    height: 100%;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.header-nav__list li {
    height: 100%;
    width: 180px;
}
.header-nav__list li:not(:last-child) {}
.header-nav__list li a {
    border-radius: 0 0 20px 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    filter: drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
    height: 100%;
    text-align: center;
    width: 100%;
}
.lp1 .header-nav__list li:first-child a {
    background: #FF6600;
}
.lp1 .header-nav__list li:last-child a {
    background: #009BC2;
}
.lp2 .header-nav__list li:first-child a {
    background: #FF8B3D;
}
.lp2 .header-nav__list li:last-child a {
    background: #39BDE0;
}
@media screen and (max-width: 768px) {
    .header {
        height: 70px;
    }
    .header-inner {
        padding-left: 10px;
    }
    .header-left {
        width: 120px;
    }
    .header-right {
        width: calc(100% - 120px);
    }
    .header-nav__list li {
        width: 120px;
    }
    .header-nav__list li a {
        font-size: 15px;
    }
}
@media screen and (max-width: 398px) {
    .header-left {
        width: 120px;
    }
    .header-right {
        width: calc(100% - 120px);
    }
    .header-nav__list li {
        width: 90px;
    }
    .header-nav__list li a {
        font-size: 14px;
    }
}

/* footer */
.footer {
    margin-top: auto;
    padding: 35px 0;
}
.lp1 .footer {
    background: #009BC2;
}
.lp2 .footer {
    background: #fff;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}
.footer-flex {
    border-bottom: 1px solid #009BC2;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 0 25px;
    padding: 0 0 25px;
}
.footer-left {
    width: 280px;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: calc(100% - 280px);
}
.footer-info p,
.copyright p {
    font-size: 20px;
    font-weight: 500;
}
.lp1 .footer-info p,
.lp1 .copyright p {
    color: #fff;
}
.lp2 .footer-info p,
.lp2 .copyright p {
    color: #009BC2;
}
.copyright {
    text-align: center;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }
    .footer-flex {
        margin: 0 0 15px;
        padding: 0 0 15px;
    }
    .footer-left {
        width: 100%;
    }
    .lp1 .footer-left {
        margin: 0 0 10px;
        width: 100%;
        max-width: 250px;
    }
    .lp2 .footer-left {
        margin: 0 0 20px;
        width: 100%;
        max-width: 200px;
    }
    .footer-right {
        justify-content: flex-start;
        width: 100%;
    }
    .footer-info p,
    .copyright p {
        font-size: 16px;
    }
}