/* web font
*/

:root {
    --main-theme-color: #1C429F;
    --main-column: 1100px;
    --sub-column: 1000px;
}

* {
    box-sizing: border-box;
    color: #000;
    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 {
    background: #fff;
    margin: 0 auto;
    padding: 15px 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 90%;
}
.header-left {
    line-height: 0;
    width: 355px;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 365px);
}
.header-tel {
    line-height: 0;
    width: 100%;
    max-width: 480px;
}
@media screen and (max-width: 968px) {
    .header-left {
        width: 200px;
    }
    .header-right {
        width: calc(100% - 215px);
    }
    .header-tel {
        max-width: 250px;
    }
}
@media screen and (max-width: 568px) {
    .header-left {
        width: 140px;
    }
    .header-right {
        width: calc(100% - 150px);
    }
    .header-tel {
        max-width: 150px;
    }
}
@media screen and (max-width: 368px) {
    .header-left {
        width: 120px;
    }
    .header-right {
        width: calc(100% - 130px);
    }
    .header-tel {
        max-width: 120px;
    }
}

/* footer */
.footer {
    background: var(--main-theme-color);
    padding: 45px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 90%;
    max-width: var(--sub-column);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-left {
    width: 285px;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 300px);
}
.footer-logo {
    margin: 0 0 20px;
    width: 100%;
    max-width: 285px;
}
.footer-text p,
.footer-text p a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8em;
}
.footer-links li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .footer-left {
        width: 100%;
    }
    .footer-right {
        justify-content: flex-start;
        margin: 25px 0 0;
        width: 100%;
    }
}