@charset "UTF-8";
.mv_wrap {
    background: #E5F2FD;
    height: 223px;
    display: flex;
    align-items: center;
}
.mv-ttl {
    font-size: 36px;
    font-weight: bold;
    max-width: 1200px;
    width: calc(100% - 60px);
    margin: 0 auto;
    box-sizing: border-box;
}
.menuLst_wrap {
    max-width: 1200px;
    width: calc(100% - 60px);
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: center;
    gap: 22px 20px;
    box-sizing: border-box;
}
.menuLst_wrap li {
    width: calc((100% - 20px*2)/3);
    height: 50px;
}
.menuLst_wrap li a {
    font-size: 14px;
    font-weight: bold;
    color: #004DA0;
    background: #fff;
    padding: 0 20px 0 10px;
    border-radius: 4px;
    border: 1px solid #fff;
    position: relative;
}
.menuLst_wrap li a::before {
    content: "";
    position: absolute;
    background: url(../svg/anklnk_arrow_bl.svg) no-repeat center / 100% auto;
    width: 12px;
    height: 8px;
    top: 50%;
    right: 14px;
    margin-top: -4px;
    z-index: 9;
    transition: all 0.2s ease-out;
}
.blue_bg {
    background: #F4FAFF;
}
.faq_wrap {
    padding: 90px 0;
}
.faq_wrap .faqCnt_wrap:not(:last-of-type) {
    padding-bottom: 66px;
}
.menu-ttl {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.faqCnt_in {
    background: #fff;
    border: 1px solid #197FD9;
    padding: 80px 60px 60px;
}
#menu02 .faqCnt_in {
    padding: 50px 60px 60px;
}
.comp-txt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.faqCnt_in .c-compLogo_wrap:not(:last-of-type) {
    margin-bottom: 50px;
}
.faq .c-compLogo_in {
    padding: 25px 25px 44px 25px;
}
.faqCnt_img {
    width: 100%;
    height: 122px;
    margin-top: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.faqCnt_in .faqDl_wrap:not(:last-of-type) {
    margin-bottom: 50px;
}
.faq_q {
    font-size: 18px;
    font-weight: bold;
    color: #005BAC;
    background: #EDF7FD;
    padding: 16px 55px 16px 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-out;
}
.faq_q::before {
    content: "";
    position: absolute;
    background: url(../svg/faq_arrow.svg) no-repeat center / 100% auto;
    width: 22px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    right: 30px;
    transform: scale(1, -1);
}
.faq_q.is-open:before {
    transform: scale(1, 1);
}
.faq_a {
    display: none;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.025em;
    padding-left: 18px;
    margin-top: 30px;
}
.faq-btn {
    width: 355px;
    height: 70px;
    margin: 30px auto 0;
}
.faq-btn a {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #005BAC;
    border: 1px solid #005BAC;
    border-radius: 6px;
    box-sizing: border-box;
    position: relative;
}
.faq-btn a::before {
    content: "";
    position: absolute;
    background: url(../svg/smpl_arw_wh.svg) no-repeat center / 100% auto;
    width: 9px;
    height: 15px;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-out;
}
@media only screen and (min-width: 896px) and (max-width: 1100px) {
    .menuLst_wrap li {
        width: calc((100% - 20px*1)/2);
    }
}
@media only screen and (min-width: 896px) {
    .menuLst_wrap li a:hover {
        color: #fff;
        background: #004DA0;
    }
    .menuLst_wrap li a:hover::before {
        background: url(../svg/anklnk_arrow_wh.svg) no-repeat center / 100% auto;
    }
    .faq_q:hover {
        opacity: .8;
    }
    .faq-btn a:hover {
        color: #005BAC;
        background: #fff;
    }
    .faq-btn a:hover::before {
        background: url(../svg/smpl_arw_bl.svg) no-repeat center / 100% auto;
    }
}
@media only screen and (max-width: 896px) {
    .mv_wrap {
        height: 130px;
    }
    .mv-ttl {
        font-size: 24px;
        width: 100%;
        padding-left: 10vw;
        line-height: 1.4;
    }
    .menuLst_wrap {
        padding: 0 10px;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    .menuLst_wrap li {
        width: calc(50% - 5px);
        height: auto;
    }
    .menuLst_wrap li a {
        font-size: 12px;
        line-height: 1.5;
        padding: 10px 5px;
    }
    .menuLst_wrap li a::before {
        display: none;
    }
    .faq_wrap {
        padding: 60px 20px;
    }
    .faq_wrap .faqCnt_wrap:not(:last-of-type) {
        padding-bottom: 50px;
    }
    .menu-ttl {
        font-size: 20px;
    }
    .faqCnt_in,
    #menu02 .faqCnt_in {
        padding: 30px 15px;
    }
    .faq .c-compLogo_in {
        padding: 20px 20px 40px;
    }
    .faq-btn {
        width: 100%;
        height: 52px;
        margin: 20px auto 0;
    }
    .faq-btn a {
        font-size: min(4.26vw,16px);
    }
    .faqCnt_img img {
        width: 100%;
        height: auto;
        max-width: 180px;
    }
    .c-compLogo_wrap.is-ver1 .c-compLogo_in:nth-child(2) .faqCnt_img img {
        max-width: 240px;
    }
    .c-compLogo_wrap.is-ver1 .c-compLogo_in:nth-child(5) .faqCnt_img img {
        max-width: 144px;
    }
    .faqCnt_in .faqDl_wrap:not(:last-of-type) {
        margin-bottom: 30px;
    }
    .faq_q {
        font-size: 16px;
        padding: 13px 35px 12px 15px;
    }
    .faq_q::before {
        width: 16px;
        height: 9px;
        margin-top: -4px;
        right: 15px;
    }
    .faq_a {
        font-size: 14px;
        padding: 0px 15px;
        margin-top: 20px;
    }
}
@media only screen and (min-width: 375px) and (max-width: 550px) {
    .menuLst_wrap li a {
        min-height: 58px;
    }
}
@media only screen and (max-width: 374px) {
    .menuLst_wrap li {
        width: 100%;
    }
}