/* FAQオレンジボタン設置 */
.main-col__button {
    margin: 30px auto;
    text-align: center;
}

.main-col__button a {
    color: #fff;
    text-decoration: none;
}

.main-col__button__link {
    display: inline-block;
    position: relative;
    width: 445px;
    line-height: 1.4;
    border-radius: 4px;
    background: #f27b11;
    box-shadow:#d8670b 0 4px 0,
     rgba(0, 0, 0, 0.2) 0 3px 3px;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    cursor: pointer;
    margin: 0 auto;
    padding-top: 2px;
    font-feature-settings: 'pkna';
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-col__button__link span:first-child {
    position: absolute;
    vertical-align: middle;

}

.main-col__button__link span:last-child {
    position: absolute;
    right: 3%;
}

.main-col__button__link:hover {
    text-decoration: none;
    position: relative;
    top: -1px;
    box-shadow: #d8670b 0 4px 0, #f27b11 0 4px 10px;
}

