@charset "utf-8";

.header {
    border-bottom: none;
}

.mvWrap {
    position: relative;
    background-color: #E9F6FB;
}

.topBanner {
    margin-top: 35px;
}

.topBanner a:hover {
    opacity: .8;
}

.button a,
.button a::before {
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.button a {
    border: 2px solid #E60012;
}

.button a:hover {
    background-color: #fff !important;
    color: #E60012 !important;
}

.button a:hover::before {
    background-image: url(../images/icn_arrow_red.svg) !important;
}

@media screen and (max-width:767px) {
    .topBanner {
        margin-top: 31px;
        padding: 0 12px;
    }
}

.accordionSection {
    position: relative;
    margin-top: 80px;
}

.accordionSection::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 377px;
    height: 502px;
    background-image: url(../images/bg_accordion_01.png);
}

.accordionSection::after {
    content: '';
    position: absolute;
    top: 345px;
    right: 0;
    width: 341px;
    height: 586px;
    background-image: url(../images/bg_accordion_02.png);
}

@media screen and (max-width:767px) {
    .accordionSection {
        margin-top: 49px;
    }

    .accordionSection::before,
    .accordionSection::after {
        display: none;
    }
}

.accordionList {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 70px;
    z-index: 1;
}

.accordion p {
    text-align: left;
}

.accordion h3 {
    position: relative;
    padding-left: 16px;
    font-size: 20px;
    text-align: left;
}

.accordion h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 100%;
    background-color: #04048D;
    border-radius: 20px;
}

.accordion .head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
    position: relative;
    height: 80px;
    background-color: #A5E6FF;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
}

.accordion .head::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 24px;
    height: 4px;
    background-image: url(../images/icn_minus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.accordion .head.active {
    border-radius: 20px;
}

.accordion .head.active::before {
    height: 24px;
    background-image: url(../images/icn_plus.svg);
}

.accordion .body {
    padding: 50px;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
}

@media screen and (max-width:767px) {
    .accordionList {
        gap: 60px;
    }

    .accordion .head {
        height: 90px;
        padding-right: 10%;
        border-radius: 15px 15px 0 0;
    }

    .accordion .head.active {
        border-radius: 15px;
    }

    .accordion .head::before {
        right: 15px;
        transform: translateY(-50%);
    }

    .accordion .body {
        padding: 30px 15px;
        border-radius: 0 0 15px 15px;
    }
}

.accordion01 .body>div div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 29px;
}

.accordion01 .body>div div:nth-child(1) span {
    width: 84px;
    height: 36px;
}

.accordion01 .body>div:nth-child(2) {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 5px dotted #A2D1F3;
}

.accordion01 .button a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
    min-height: 64px;
    margin: 25px auto 0;
    border-radius: 45px;
    background-color: #E60012;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.accordion01 .button a::before {
    content: '';
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 12px;
    background-image: url(../images/icn_arrow_white.svg);
    background-size: cover;
}

.accordion01 .body>a {
    display: inline-block;
    position: relative;
    margin-top: 25px;
    padding-right: 17px;
    font-size: 16px;
    text-decoration: underline;
    color: #E60012;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.accordion01 .body>a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 12px;
    background-image: url(../images/icn_arrow_red_02.svg);
    background-size: cover;
}

.accordion01 .body>a:hover {
    opacity: .5;
}

.accordion01 .body>p {
    margin-top: 15px;
    line-height: 24px;
    font-size: 14px;
}

@media screen and (max-width:767px) {
    .accordion01 .head img.sp {
        width: 156px;
    }

    .accordion01 .body>div div:nth-child(1) span {
        width: 77px;
        height: 33px;
    }

    .accordion01 .body>div div {
        flex-direction: column;
        gap: 10px;
    }

    .accordion01 .button a {
        width: 100%;
        min-height: 60px;
        border-radius: 32px;
        font-size: 18px;
    }

    .accordion01 .body>div:nth-child(2) {
        margin-top: 30px;
        padding-top: 30px;
    }

    .accordion01 .body>a {
        margin-top: 35px;
    }

}

.w415 {
    display: none;
}

.w355 {
    display: none;
}

@media screen and (max-width:415px) {
    .w415 {
        display: block !important;
    }
}

@media screen and (max-width:355px) {
    .w415 {
        display: none !important;
    }

    .w355 {
        display: block !important;
    }
}

.accordion02 .body>div:nth-child(3) {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 20px;
    margin-top: 12px;
    background-color: #E9F6FB;
    border-radius: 20px;
    font-weight: bold;
}

.accordion02 .body>div:nth-child(3)>p {
    font-size: 20px;
}

.accordion02 .body>div:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.accordion02 .body>div:nth-child(3) li {
    padding: 10px 13px;
    border-radius: 21px;
    background-color: #fff;
}

.accordion02 .body>div:nth-child(1) p,
.accordion02 .body>div:nth-child(2) p {
    margin-top: 12px;
    line-height: 26px;
    font-size: 16px;
}

.accordion02 .body>div:nth-child(2) {
    margin-top: 30px;
}

.accordion02 .body>p:nth-of-type(1) {
    margin-top: 30px;
    font-weight: bold;
}

.accordion02 .body>p:nth-of-type(2) {
    margin-top: 9px;
    line-height: 24px;
    font-size: 14px;
}

@media screen and (max-width:767px) {
    .accordion02 .head img.sp {
        width: 167px;
    }

    .accordion02 .body>div:nth-child(3) {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 16px;
        padding: 20px;
        border-radius: 15px;
    }

    .accordion02 .body>div:nth-child(3)>p {
        font-size: 18px;
    }

    .accordion02 .body>div:nth-child(3) ul {
        grid-template-columns: repeat(1, auto);
        gap: 14px;
    }

    .accordion02 .body>div:nth-child(3) li {
        width: fit-content;
        padding: 8px 15px;
        border-radius: 21px;
        font-size: 14px;
    }

    .accordion02 .body>p:nth-of-type(1),
    .accordion02 .body>p:nth-of-type(2) {
        font-size: 14px;
    }
}

.accordion03 .body>p {
    font-size: 16px;
    line-height: 26px;
}

.accordion03 .body>div:nth-child(2) {
    margin-top: 30px;
}

.accordion03 .body>div:nth-child(3) {
    margin-top: 55px;
    padding: 30px 0;
    background-color: #E9F6FB;
    border: 2px solid #A2D1F3;
    border-radius: 20px;
}

.accordion03 .body>div:nth-child(3) p {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
}

.accordion03 .body>div:nth-child(3) p::before {
    content: '';
    position: absolute;
    top: -45px;
    right: 100%;
    width: 96px;
    height: 90px;
    background-image: url(../images/img_accordion_02.png);
}

.accordion03 .body>div:nth-child(3) p span {
    color: #04048D;
}

@media screen and (max-width:767px) {
    .accordion03 .head img.sp {
        width: 201px;
    }

    .accordion03 .body>div:nth-child(3) {
        margin-top: 40px;
        border-radius: 15px;
    }

    .accordion03 .body>div:nth-child(3) p::before {
        top: -50px;
        left: -30px;
        width: 70px;
        height: 70px;
        background-size: cover;
    }
}

.accordion04 .body>div:nth-child(1) ul {
    margin-top: 10px;
}

.accordion04 .body>div:nth-child(1) li {
    text-align: left;
    padding-left: 1em;
    font-size: 16px;
    text-indent: -1em;
    line-height: 26px;
}

.accordion04 .body>div:nth-child(1) li::before {
    content: '・';
}

.accordion04 .body>p {
    margin-top: 10px;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 24px;
}

.accordion04 .body>p::before {
    content: '※';
}

.accordion04 .body>div:nth-child(4) {
    margin-top: 30px;
}

.accordion04 .body>p:nth-child(3) {
    margin-top: unset;
}

@media screen and (max-width:767px) {
    .accordion04 .head img.sp {
        width: 155px;
    }

    .accordion04 .body>div:nth-child(4) {
        margin-top: 33px;
    }
}

.accordion05 .body>ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion05 .body li {
    position: relative;
    text-align: left;
}

.accordion05 .body li h4 {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}

.accordion05 .body li h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #04048D;
    border-radius: 50%;
}

.accordion05 .body li>p {
    margin-top: 5px;
    font-size: 14px;
    padding-left: 1em;
    line-height: 24px;
}

.accordion05 .body li:nth-child(4) div {
    margin-top: 15px;
}

.accordion05 .body li:last-child h4 {
    color: #E60012;
}

.accordion05 .body li:last-child h4::before {
    background-color: #E60012;
}

.accordion05 .body li:last-child ul {
    margin-top: 5px;
}

.accordion05 .body li:last-child li {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 24px;
    font-size: 14px;
}

.accordion05 .body li:last-child li::before {
    content: '・';
}

@media screen and (max-width:767px) {
    .accordion05 .head img.sp {
        width: 186px;
    }

    .accordion05 .body li h4 {
        padding-left: 18px;
    }

    .accordion05 .body li h4::before {
        top: 6px;
        transform: unset;
    }

    .accordion05 .body li:last-child ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.product {
    padding-bottom: 50px;
    background-image: url(../images/bg_product_pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
}

.product .title {
    padding-top: 50px;
}

.product ul {
    display: grid;
    grid-template-columns: repeat(2, 430px);
    justify-content: space-between;
    row-gap: 40px;
    margin-top: 20px;
    padding: 0 50px;
}

.product li a:hover {
    opacity: .8;
}

.product .button a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
    min-height: 90px;
    margin: 40px auto 0;
    border-radius: 45px;
    background-color: #fff;
    font-size: 20px;
    font-weight: bold;
    color: #E60012;
    line-height: 28px;
}

.product .button a:hover {
    background-color: #E60012 !important;
    color: #fff !important;
}

.product .button a::before {
    content: '';
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 12px;
    background-image: url(../images/icn_arrow_red.svg);
    background-size: cover;
}

.product .button a:hover::before {
    background-image: url(../images/icn_arrow_white.svg) !important;
}

@media screen and (max-width:767px) {
    .product {
        margin-top: 56px;
        background-image: url(../images/bg_product_sp.png);
        background-position-y: 22px;
    }

    .product .title {
        padding-top: unset;
    }

    .product ul {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
        padding: 0 15px;
    }

    .product .button a {
        width: 100%;
        min-height: 80px;
        font-size: 18px;
    }
}

.linkSection {
    padding: 70px 0;
    background-color: #04048D;
}

.linkSection ul {
    display: flex;
    gap: 30px;
    padding: 0 50px;
}

.linkSection ul li {
    width: 100%;
}

.linkSection ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 64px;
    border-radius: 32px;
    background-color: #E60012;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.linkSection ul li a::before {
    content: '';
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 12px;
    background-image: url(../images/icn_arrow_white.svg);
    background-size: cover;
}

@media screen and (max-width:767px) {
    .linkSection {
        padding: 60px 0;
    }

    .linkSection ul {
        flex-direction: column;
        gap: 32px;
        padding: 0 15px;
    }

    .linkSection ul li a {
        min-height: 80px;
        border-radius: 45px;
        font-size: 18px;
    }
}

.footerTop {
    padding: 50px 0;
}

.footerTop p {
    font-size: 14px;
    color: #333;
    text-align: left;
    line-height: 24px;
}

.footerTop p span {
    display: inline-block;
    padding-left: 1em;
    text-indent: -1em;
}

.footerTop p span.ref-mark::before {
    content: '※';
}

.footerTop p span.dot-mark::before {
    content: '・';
}

.footer .footerBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    background-color: #333;
}

.footer .footerBottom p {
    color: #999;
    line-height: 14px;
}

@media screen and (max-width:767px) {
    .footerTop {
        padding: 30px 15px;
    }

    .footerTop p {
        font-size: 14px;
        color: #333;
        text-align: left;
    }

    .footer .footerBottom {
        height: 50px;
    }

    .footer .footerBottom p {
        font-size: 10px;
    }
}