@charset "UTF-8";
/* CSS Document */
p {
    margin: 0;
}
a {
    text-decoration: none;
    box-sizing: border-box;
}
/*===common===*/
br.sp {
    display: none
}
section > div:first-of-type {
    margin-top: 90px;
}
section h3:nth-of-type(n+2) {
    margin-top: 60px;
}
section:last-of-type {
    margin-bottom: 120px !important;
}
.-t-center {
    text-align: center;
}
.-w-wrapper {
    padding: 0;
}
.width70 {
    width: 70%;
    margin: 0 auto;
}
.button_bl {
    width: 65%;
    margin: 0 auto;
}
.button_bl a {
    display: inline-block;
    padding: 20px;
    width: 100%;
    background: #3EB0E2;
    border-radius: 5px;
    color: #FFF;
    text-decoration: none;
    font-size: 1.66em;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}
.button_bl a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    border: 9px solid transparent;
    border-left: 13px solid #FFF;
}
.button_bl a:hover {
    opacity: 0.8;
}

.pdf_icon {
    position: relative;
}
.pdf_icon::before {
    content: '';
    background: url("../img/pdf_icon.svg") no-repeat;
    width: 1.3em;
    height: 1.34em;
    background-size: contain;
    position: absolute;
    top: 1px;
    left: 5px;
}

@media screen and (max-width: 768px) {
    br.sp {
        display: block;
    }
    br.pc {
        display: none;
    }
    section > div:first-of-type {
        margin-top: 60px;
    }
    .-t-center {
        text-align:left;
    }
    .-w-wrapper {
        padding: 0;
    }
    .width70 {
        width: 100%;
    }
    .button_bl {
        width: 100%;
        margin: 0 auto;
    }
    .button_bl a {
        display: inline-block;
        padding: 12px 16px;
        width: 100%;
        font-size: 1.15em;
    }
    .button_bl a::after {
        right: 8px;
        border: 5px solid transparent;
        border-left: 8px solid #FFF;
    }
    .pdf_icon::before {
        width: 1.25em;
        height: 1.3em;
        top: 1.5px;
    }
}


/*anchor-link*/
#anchor-link {
    width: 91%;
    margin: 0 4.5vw;
}


/*arrow_bl_link*/
.arrow_bl_link_wrap {
    padding-left: 40px;
}
.arrow_bl_link_wrap li {
    padding: 10px 0;
}
.arrow_bl_link {
    list-style: none;
    color: #000;
    padding-left: 30px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: underline;
    position: relative;
    transition: 0.3s;
}
.arrow_bl_link::before {
    content: '';
    background: url("../img/arrow_bl_link.svg") no-repeat;
    width: 1.15em;
    height: 1.1em;
    background-size: contain;
    position: absolute;
    top: 0.25em;
    left: 0;
}
.arrow_bl_link:hover {
    opacity: 0.7;
}
@media screen and (max-width: 768px) {
    .arrow_bl_link_wrap {
        padding-left: 8px;
    }
    .arrow_bl_link {
        padding-left: 20px;
        font-size: 1.15em;
    }
    .arrow_bl_link::before {
        width: 1em;
        height: 0.95em;
        top: 0.28em;
    }
}


