/* ---------------
common
------------------*/
main{
    margin-top: 80px;
}
body,p,a{
    font-family: noto-sans-cjk-jp, sans-serif;
    line-height: 1.5;
    color: #333333;
}
ul{
    padding: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333333;
}
.sp-only{
    display: none;
}
.pc-only{
    display: block;
}
@media screen and (max-width:768px){
    main{
        margin-top: 64px;
    }
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
}

/* btn */
.download-btn,.contact-btn{
    transition: .3s;
}
.download-btn:hover,
.contact-btn:hover{
    transform: translateY(-5px);
}

/* ---------------
header
------------------*/
.site-title{
    width: 28%;
    max-width: 332px;
}
header{
    height: 80px;
    /* position: relative; */
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 10000;
    top: 0;
}
.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    height: 100%;
}
.header-nav__wrap{
    display: flex;
    align-items: stretch;
}
.header-nav{
    margin-right: 30px;
    padding: 15px 0;
}
.nav-top{
    padding-bottom: 10px;
}
.nav-top ul{
    display: flex;
    gap: 20px;
    margin: 0;
    justify-content: end;
}
.nav-main ul{
    display: flex;
    gap: 40px;
    margin: 0;
}
.nav-top li{
    font-size: 12px;
}
.nav-main li a{
    position: relative;
}
.nav-main li a::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: #B3B3B3;
    display: inline-block;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}
.nav-main li:last-of-type a::after{
    display: none;
}
.nav-top li a:hover,
.nav-main li a:hover{
    color: #016FBE;
}
.nav-contact{
    background-color: #016FBE;
    text-align: center;
}
.nav-contact span.material-icons-outlined{
    color: #fff;
    font-size: 31px;
    transition: .3s;
}
.nav-contact p{
    color: #fff;
}
.nav-contact a{
    color: #fff;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    font-size: 10px;
}
.nav-contact:hover .material-icons-outlined{
    transform: translateY(-3px);
}

.sp-menu-toggle,
.sp-menu{
    display: none;
}

@media screen and (max-width:880px) {
    .nav-main li a{
        font-size: 14px;
    }
    .nav-main ul{
        gap: 30px;
    }
}
@media screen and (max-width:768px) {
    header{
        height: 64px;
    }
    .header-inner{
        padding: 0 15px;
    }
    /* body.open{
        overflow: hidden;
    } */
    .header-nav__wrap{
        display: none;
    }
    .site-title{
        width: 270px;
    }
    /* .menu-sp{
        display: block;
    } */
    .sp-menu-toggle{
        display: block;
        width: 30px;
        height: 22px;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }
    .sp-menu-toggle span{
        width: 100%;
        height: 2px;
        background-color: #016FBE;
        position: absolute;
        transition: all 0.3s ease;
    }
    .sp-menu-toggle span:first-of-type{
        top: 0;
    }
    .sp-menu-toggle span:nth-of-type(2){
        top: 50%;
        transform: translateY(-50%);
    }
    .sp-menu-toggle span:last-of-type{
        bottom: 0;
        width: 20px;
        right: 0;
    }
   /* 開いたときのバッテン */
    .sp-menu-toggle.open span:first-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .sp-menu-toggle.open span:nth-of-type(2) {
        opacity: 0;
    }

    .sp-menu-toggle.open span:last-of-type {
        bottom: auto; /* 下固定を解除 */
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 100%;
    }
    .sp-menu.open{
        display: block;
        position: absolute;
        z-index: 100;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        height: 100vh;
        padding: 0 15px;
        border: 1px solid #D2D2D2;
        overflow: scroll;
        padding-bottom: 60px;
    }
    .sp-menu li{
        border-bottom: 1px solid #D2D2D2;
    }
    .sp-menu li:last-of-type{
        margin-bottom: 30px;
    }
    .sp-menu li a{
        position: relative;
        width: 100%;
        display: block;
        padding: 15px;
    }
    .sp-menu li a::after {
        font-family: "Material Icons Outlined";
        content: attr(data-icon); /* ← data-iconの値を表示 */
        font-size: 22px;
        color: #016FBE;
        vertical-align: middle;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    #menu-header_sp{
        margin: 0;
    }

    .sp-menu .contact-btn{
        height: 60px;
    }
    .sp-menu .download-btn{
        height: 46px;
    }
    .sp-menu .download-btn,
    .sp-menu .contact-btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 220px;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
    }
    .sp-menu .download-btn span,
    .sp-menu .contact-btn span{
        margin-right: 7px;
        vertical-align: middle;
    }
    .sp-menu .download-btn{
        background-color: #003E88;
    }
    .sp-menu .contact-btn{
        background: linear-gradient(to right, #0495D5 20%, #003E89 100%);
    }

}
.breadcrumbs-wrap{
    padding: 0 50px;
}
.breadcrumbs{
    /* width: 91%;
    margin: auto; */
    padding: 8px 0;
}
.breadcrumbs i,.breadcrumbs span{
    vertical-align: middle;
    font-size: 10px;
}
.breadcrumbs a:hover{
    opacity: 0.7;
}

@media screen and (max-width:1000px) {
    .breadcrumbs-wrap{
        padding: 0 20px;
    }
}

/* ------------
footer
---------------*/
#contact{
    background: linear-gradient(to bottom,#F7F7F7 30%, #fff 100%);
    padding: 48px 0 30px;
    overflow: hidden;
}
.template-members #contact,
.template-manual #contact,
.template-achievements #contact,
.template-faq #contact{
    background: #fff;
}
.contact-inner{
    background-color: #016FBE;
    border-radius: 20px 0 0 20px;
    margin-left: 100px;
    padding: 64px 45px 64px 45px;
    position: relative;
}
.contact-content{
    max-width: 904px;
    margin: 0 auto 0 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.contact-btn__wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-btn__wrap .contact-btn{
    color: #016FBE;
    height: 66px;
    display: block;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    background-color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.contact-btn__wrap .contact-btn span{
    font-size: 32px;
    padding-right: 14px;
    vertical-align: middle;
}
.contact-btn__wrap .download-btn{
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #003E88;
    border-radius: 5px;
    color: #fff;
    width: 240px;
    font-weight: 700;
}
.contact-btn__wrap .download-btn span{
    font-size: 24px;
    padding-right: 12px;
    vertical-align: middle;
}
.contact-txt{
    color: #fff;
}
.contact-txt p{
    color: #fff;
}
.contact-txt>h2{
    font-size: 32px;
}
.contact-txt>h2>span{
    font-size: 14px;
    display: block;
}
.contact-txt p{
    padding-top: 14px;
}
.contact-bg-txt{
    position: absolute;
    font-size: 235px;
    color: rgba(255, 255, 255, 0.07);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    width: max-content;
    bottom: -52px;
    left: 0px;
    line-height: 1;
}
.contact-bg-txt span{
    font-size: 285px;
    vertical-align: sub;
    padding-left: 33px;
}

@media screen and (min-width:1201px) {
    .contact-content{
        max-width: 1200px;
        margin: auto;
    }
}


@media screen and (max-width:768px) {
    #contact{
        padding: 0;
    }
    .contact-inner{
        margin-left:0;
        border-radius: 0;
        padding: 60px 15px 74px;
    }
    .contact-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 54px;
    }
    .contact-btn__wrap .download-btn{
        font-size: 15px;
    }
    .contact-bg-txt{
        font-size: 112px;
        top: 66px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
    .contact-bg-txt span{
        display: block;
        font-size: 225px;
        text-align: right;
        padding-top: 14px;
        margin-right: -40px;
    }
    .contact-txt>h2{
        font-size: 24px;
    }
    .contact-txt p{
        font-size: 14px;
    }
}



.footer-banner{
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}
.footer-banner>div{
    max-width: 210px;
}
footer{
    background-color: #333333;
    padding: 45px 50px 25px;
}
.footer-content__wrap{
    padding-bottom: 30px;
    margin-bottom: 16px;
    border-bottom: 1px solid #707070;
}
.footer-content{
    display: flex;
    position: relative;
    justify-content: space-between;
}
/* .footer-content::after{
    content: "";
    background-color: #707070;
    width: 1px;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
} */
.footer-menu{
    flex-basis: 50%;
    border-right: 1px solid #707070;
}
.footer-menu a{
    transition: .3s;
}
.footer-menu a:hover{
    opacity: 0.8;
}
footer p,footer a{
    color: #fff;
}
.footer-contact__wrap{
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}
footer .download-btn,
footer .contact-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    border-radius: 5px;
    height: 56px;
    font-size: 18px;
    font-weight: 500;
}
footer .download-btn span,
footer .contact-btn span{
    margin-right: 7px;
    vertical-align: middle;
}
footer .download-btn{
    background-color: #003E88;
}
footer .contact-btn{
    background: linear-gradient(to right, #0495D5 20%, #003E89 100%);
}
.nav-footer ul{
    display: flex;
    gap: 15px;
    max-width: 320px;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: 40px;
}
.nav-footer ul a{
    font-size: 14px;
}
.nav-footer-bottom a{
    font-size: 11px;
    padding-right: 11px;
    border-right: 1px solid #fff;
}
.nav-footer-bottom a:last-of-type {
    padding-left: 11px;
    padding-right: 0;
    border-right: none;
}
.footer-info{
    flex-basis: 40%;
}
.footer-info p{
    padding-top: 10px;
    font-size: 13px;
}
.copyright{
    font-size: 11px;
    text-align: center;
    color: #BBBBBB;
}
@media screen and (max-width:980px) {
  .footer-contact__wrap{
    flex-direction: column;
  }
}
@media screen and (max-width:768px) {
    .footer-banner{
        flex-direction: column;
        padding: 40px 0;
        gap: 15px;
    }
    .footer-banner>div{
        width: 210px;
    }
    footer{
        padding: 0;
    }
    .footer-content{
        padding: 50px 22px 0;
    }
    .footer-contact__wrap{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-content{
        flex-direction: column;
    }
    .footer-menu{
        border-right: none;
        border-bottom: 1px solid #707070;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }
    .nav-footer ul{
        justify-content: center;
        margin: 0 auto 23px;
    }
    .nav-footer-bottom{
        text-align: center;
    }
    .footer-content__wrap{
        margin-bottom: 22px;
    }
    .footer-info{
        margin: auto;
    }
    .copyright{
        padding-bottom: 40px;
    }
}

/* TOPへ戻るボタン */
.to-top{
    position: fixed;
    bottom: 90px;
    right: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s;
    border: #016FBE 1px solid;
    width: 54px;
    height: 54px;
    border-radius: 100vh;
    justify-content: center;
    align-items: center;
    transition: .3s;
    background-color: rgb(255 255 255 / 50%);
}
.to-top.show{
    display: inline-flex;
}
.to-top span{
    font-size: 32px;
    color: #016FBE;
}
.to-top.show:hover{
    transform: translateY(-8px);
    background-color: #fff;
}

