/* ===========================================
 * サービスページ共通
 * ======================================== */

/* コンテナー
/* -----------------------------------------*/
#main_container {
    max-width: 1024px;
    margin: auto;
    position: relative;
}

/* ページタイトル
/* -----------------------------------------*/
.title_under {
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.14em;
    text-align: center;
    color: #1E1E1E;
    margin: 80px 0 64px;
    padding-top: 25px;
    padding-bottom: 21px;
    position: relative;
}

.title_under span {
    display: block;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

.title_under:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 12px;
    bottom: 0;
    background: #F6E677;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
    .title_under {
        font-size: 28px;
        line-height: 36px;
        margin: 64px 0 80px;
        padding-top: 0;
        padding-bottom: 12px;
    }
    
    .title_under span {
    }
}

/* ボタン
/* -----------------------------------------*/
.btn_blue {
    text-align: center;
}

.btn_blue a {
    background: #315C7D;
    color: #ffffff;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration-line: none;
    padding: 20px 104px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
    .btn_blue {
        margin: 0 22px;
    }
    
    .btn_blue a {
        padding: 10px 44px;
        width: calc( 100% - 88px );
    }
}

/* マーカー
/* -----------------------------------------*/
.marker_yellow {
    background: linear-gradient(transparent 50%, #F6E677 50%);
}

/* アンダーライン
/* -----------------------------------------*/
.underline {
    border-bottom: 1px solid #000000;
}

/* フッターバナー
/* -----------------------------------------*/
#banner {
    padding: 79px 271px 81px;
    background: rgba(248, 247, 247, 0.85);
}

.footer_banner {
    display: block;
    max-width: 738px;
    margin: auto;
}

.footer_banner_img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 768px) {
    #banner {
        padding: 0;
    }
}