/* web font
*/

:root {
    --main-theme-color: #D4161A;
    --main-text-color: #395D78;
    --accent-text-color: #2A84CE;
    --highlight: #FCFF46;
    --ft-ra: "Rajdhani", sans-serif;
    --ft-zen: "Zen Kaku Gothic New", sans-serif;
    --ft-mon: "Montserrat", sans-serif;
    --grad1: linear-gradient(90deg,rgba(0, 160, 225, 1) 1%, rgba(20, 106, 198, 1) 100%);
}

* {
    box-sizing: border-box;
    color: var(--main-text-color);
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img {
    opacity: .8;
}
img {
    height: auto;
    width: 100%;
    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: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header.fixed {}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
}
.header-left .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header-left .logo .logo-img {
    width: 106px;
}
.header-left .logo p {
    font-family: var(--ft-zen);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
    margin-left: 5px;
} 
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list li a {
    background: #06C755;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 6px 0 #05A547);
    font-size: 16px;
    font-weight: 700;
    height: 56px;
    width: 262px;
}
.header-nav__list li a::before {
    background: url(../images/icon-line.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 24px;
    margin-right: 5px;
    width: 24px;
}
@media screen and (max-width: 768px) {
    .header-right {
        display: none;
    }
    .header-left .logo .logo-img {
        width: 65px;
    }
    .header-left .logo p {
        font-size: 10px;
    }
}
@media screen and (max-width: 368px) {
    .header-left .logo p {
        font-size: 10px;
    }
}

/* footer */
.footer {
    background: var(--main-text-color);
    padding: 25px 0;
}
.footer-links {
    margin: 0 0 15px;
}
.footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links ul li:not(:last-child) {
    border-right: 1px solid #fff;
    margin-right: 10px;
    padding-right: 15px;
}
.footer-links ul li a {
    color: #fff;
    display: block;
    font-family: var(--ft-zen);
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
}
.copyright p {
    color: #fff;
    font-family: var(--ft-ra);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}