@charset "UTF-8";
/* CSS Document */

/* ボタンエリア */
.btn_area{
    text-align: center;
}
.btn{
    margin-bottom: 20px;
}

/* ボタン装飾 */
.blue_btn{
    transition: background 0.4s ease-in-out;
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: #fff;
    padding: 13px 50px 13px 40px;
    background: #005bac;
    border-radius: 5px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.blue_btn:hover{
    transition: background 0.4s ease-in-out;
    opacity: 1;
    background-color: #2f8fe5;
}
.blue_btn::after{
    position: absolute;
    content: url(../img/link_icon.svg);
    width: 7px;
    margin-left: 10px;
    line-height: 18px;
    margin-top: 3px;
}
.yellow_btn{
    transition: background 0.4s ease-in-out;
    display: block;
    box-sizing: border-box;
    text-align: center;
    color: #333;
    background: #fccf00;
    max-width: 580px;
    padding: 20px;
    border-radius: 5px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
.yellow_btn:hover{
    transition: background 0.4s ease-in-out;
    opacity: 1;
    background: #ffea04;
}
.yellow_btn > *:last-child.btn_title{
    margin-bottom: 0;
}
.gray_btn{
    transition: background 0.4s ease-in-out;
    position: relative;
    display: inline-block;
    max-width: 450px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    background: #595959;
    color: #fff;
    padding: 16px;
    border-radius: 5px;
}
.gray_btn::after{
    position: absolute;
    content: url(../img/ch_open_icon.svg);
    width: 12px;
    margin-left: 10px;
    margin-top: 3px;
}
.gray_btn:hover{
    transition: background 0.4s ease-in-out;
    background: #fccf00;
}
.gray_btn:hover::after{
    content: url(../img/ch_open_w_icon.svg);
}
.btn_title{
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 16px;
}
.btn_text{
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 0;
}
.circle_btn,
.circle_blank_btn{
    transition: background 0.4s ease-in-out;
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    color: #005bac;
    line-height: 24px;
    padding: 12px 50px 12px 40px;
    border: 1px solid #005bac;
    border-radius: 25px;
    margin: auto;
    margin-right: 20px;
}
.circle_blank_btn{
    padding: 12px 40px;
}
.circle_btn::after {
    position: absolute;
    content: url(../img/link_blue_icon.svg);
    width: 7px;
    margin-left: 10px;
    margin-top: 1px;
}
.circle_btn:hover,
.circle_blank_btn:hover{
    transition: background 0.4s ease-in-out;
    background: #005bac;
    color: #fff;
}
.circle_btn:hover::after{
    content: url(../img/link_white_icon.svg);
}
.circle_blank_btn::after{
    display: inline-block;
    content: "";
    background: url(../img/blank_blue_icon.svg) no-repeat;
    width: 10px;
    height: 8px;
    margin-left: 4px;
    margin-bottom: 2px;
    margin-right: 4px;
}
.circle_blank_btn:hover::after{
    background: url(../img/blank_icon.svg) no-repeat;
}
.adobe_reader{
    display: block;
    width: 159px;
}
@media screen and (max-width:767px){
    .blue_btn{
        font-size: 16px;
        padding: 12px 40px 12px 30px;
        margin-right: 16px;
        margin-bottom: 16px;
    }
    .gray_btn{
        max-width: 260px;
    }
    .circle_btn{
        padding: 7px 40px 7px 30px;
        margin-right: 0;
    }
}


