/* web font
font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", sans-serif;
font-family: "Josefin Sans", serif;
*/

:root {
    --main-theme-color: #337BD9;
    --ft-w4: 400;
    --ft-w5: 500;
    --ft-w6: 600;
    --ft-w7: 700;
    --ft-w8: 800;
    --ft-josef: "Josefin Sans", serif;
    --ft-m: "M PLUS Rounded 1c", serif;
}

* {
    box-sizing: border-box;
    color: #383838;
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", 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;
}
.sp-inline {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .sp-inline {
        display: inline;
    }
}
@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 {
    margin: 0 auto 50px;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.header-left {
    background: var(--main-theme-color);
    border-radius: 0 0 13px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 0 25px 35px;
    width: calc(100% - 346px);
}
.header-left p {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-left: 25px;
}
.header-right {
    width: 346px;
}
.header-contact {
    margin: 0 auto;
    width: 90%;
    max-width: 266px;
}
@media screen and (max-width: 968px) {
    .header-left {
        display: block;
        padding: 10px 0 10px 15px;
        width: calc(100% - 200px);
    }
    .header-left p {
        font-size: 3vw;
        margin-left: 0px;
    }
    .header-right {
        width: 200px;
    }
    .header-contact {
        width: 90%;
        max-width: 180px;
    }
}
@media screen and (max-width: 768px) {
    .logo {
        display: block;
        max-width: 180px;
    }
}
@media screen and (max-width: 468px) {
    .logo {
        max-width: 120px;
    }
    .header-left {
        display: block;
        padding: 10px 0 10px 15px;
        width: calc(100% - 150px);
    }
    .header-right {
        width: 150px;
    }
    .header-contact {
        width: 85%;
        max-width: 140px;
    }
}
/* main */
.main {
    min-height: 80%;
}
/* footer */
.footer {
    background: #383838;
    margin-top: auto;
    padding: 25px 0;
    position: relative;
}
.footer-logo {
    position: absolute;
    left: 5%;
    top: 20px;
}
.footer-links {
    margin: 0 0 50px;
}
.footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links li:not(:last-child) {
    border-right: 1px solid #fff;
    margin-right: 25px;
    padding-right: 25px;
}
.footer-links li a {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.copyright {
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}
@media screen and (max-width: 968px) {
    .footer-logo {
        margin: 0 auto 45px;
        position: static;
        text-align: center;
    }
    .footer-links li a {
        font-size: 14px;
    }
    .copyright p {
        font-size: 12px;
    }
}
@media screen and (max-width: 768px) {}