@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-size: 62.5%;
    box-sizing: border-box;
    background: #fff;
    margin-top: 0 !important;
    width: 100%;
    overflow-x: hidden;
}
body{
    margin: 0;
    padding: 0;
    font-family:'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6rem;
    text-decoration-line: none;
    text-decoration: none;
    color: var(--basic);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a{
    color: var(--basic);
}
a, a:hover, a:active {
    text-decoration-line: none;
    text-decoration: none;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
img {
    height: auto;
    width: 100%;
    transition: opacity 0.3s ease;
}
li > ul, li > ol{
    margin-left: 0;
}
li {
    list-style:none;
}
@media (min-width: 1024px){
    .sp{
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1023px){
    .sp{
        display: none;
    }
}
@media (max-width: 767px){
    .pc{
        display: none;
    }
}
/* ----------------------------------------------------------
色指定
---------------------------------------------------------- */
:root {
    --basic: #122950;
    --blue: #2d66c1;
    --gray: #ebf0f4;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */
.footer-info {
    background: var(--gray);
    padding: 60px 0 50px;
}
.footer_logo {
    max-width: 245px;
}
.footer-info .footer-info__inner {
    display: flex;
    justify-content: center;
    max-width: 900px;
    gap: 50px;
    margin: 0 auto;
}
.footer-info .footer-info__inner .footer-info__txt {
    max-width: 560px;
    font-size: 13px;
    font-weight: 400;
}
.footer-info .footer-info__inner .footer-info__txt .contact{
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid var(--basic);
    padding: 10px 0;
    color: var(--basic);
    margin-top: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-info .footer-info__inner .footer-info__txt .contact:hover{
    background-color: var(--basic);
    color: #fff; 
}
.footer-copyright{
    color: #fff;
    background-color: var(--basic);
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
}
@media (max-width: 767px){
    .footer-info{
        padding: 20px 15px;
    }
    .footer_logo{
        max-width: 170px;
    }
    .footer-info .footer-info__inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        gap: 15px;
    }
    .footer-info .footer-info__inner .footer-info__txt{
        font-size: 11px;
        text-align: center;
    }
    .footer-copyright{
        font-size: 10px;
    }
}