/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_black {
    color: #4e5255;
}

.co_brown {
    color: #6A5C45;
}

.co_blue {
    color: #1e86cb;
}

.co_green {
    color: #90bb35;
}

.co_orange {
    color: #fca81a;
}

.co_blue_green {
    color: #3B80AD;
}

.co_white {
    color: #fff;
}

/***************************/
/**bg */
/***************************/
.bg_light_blue {
    background-color: #F5FFFF;
}

.bg_black {
    background-color: #4e5255;
}

.bg_brown {
    background-color: #6A5C45;
}

.bg_blue {
    background-color: #1e86cb;
}

.bg_green {
    background-color: #90bb35;
}

.bg_orange {
    background-color: #fca81a;
}

.bg_blue_green {
    background-color: #3B80AD;
}

.bg_white {
    background-color: #fff;
}

.bg_light_gray {
    background-color: #EFEEEA;
}

.border_shadow {
    position: relative;
}

.border_shadow:after {
    position: absolute;
    right: -9px;
    bottom: -9px;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/common/border-blue.png) no-repeat center/cover;
}

/********************************************/
/* txt */
/********************************************/
.line_white {
    background: linear-gradient(transparent 60%, #fff 60%);
    font-size: 1em;
    color: inherit;
}

.line_yellow {
    background: linear-gradient(transparent 60%, #FEE521 60%);
    font-size: 1em;
    color: inherit;
}

.fo_vdl {
    font-family: vdl-megamaru, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/********************************************/
/* ttl */
/********************************************/
.border_bottom_base_ttl {
    text-align: center;
    font-size: 3.2rem;
    font-family: vdl-megamaru, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1.8em;
}

.border_bottom_base_ttl span {
    display: inline-block;
    position: relative;
    font-size: 1em;
    padding: 0 2em;
    padding-bottom: 0.4em;
}

.border_bottom_base_ttl span:after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    width: 4.5em;
    height: 5px;
    background-color: #fee521;
    margin: auto;
}

.border_bottom_base_ttl.co_blue span {
    color: inherit;
}

/********************************************/
/* btn */
/********************************************/
.base_arrow_btn {
    display: inline-block;
}

.base_arrow_btn a {
    position: relative;
    display: block;
    background-color: #fff;
    border: 2px solid #fff;
    font-weight: bold;
    padding: 1.1em 3em 0.9em;
    border-radius: 25px;
    -webkit-box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.base_arrow_btn a:after {
    position: absolute;
    right: 0.8em;
    top: 0;
    bottom: 0;
    content: '';
    width: 8px;
    height: 13px;
    margin: auto;
    background: url(../img/common/arrow-right-green.svg) no-repeat center/100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.base_arrow_btn a span {
    font-size: 1em;
    color: inherit;
}

.base_arrow_btn a:hover {
    background-color: #fff;
}

.base_arrow_btn a:hover:after {
    right: 0.4em;
}

.base_arrow_btn.yellow_ver a {
    background-color: #fee521;
    border: 2px solid #fee521;
}

.base_arrow_btn.yellow_ver a:after {
    background: url(../img/common/arrow-right-brown.svg) no-repeat center/100%;
}

.base_arrow_btn.yellow_ver a:hover {
    background-color: #fff;
}

.base_arrow_btn.white_ver a:hover {
    background-color: #fee521;
}

.base_arrow_btn.blue_ver a {
    background-color: #1e86cb;
    border: 2px solid #1e86cb;
    color: #fff;
}

.base_arrow_btn.blue_ver a:after {
    background: url(../img/common/arrow-right-white.svg) no-repeat center/100%;
}

.base_arrow_btn.blue_ver a:hover {
    color: #1e86cb;
    background-color: #fff;
}

.base_arrow_btn.blue_ver a:hover:after {
    background: url(../img/common/arrow-right-blue.svg) no-repeat center/100%;
}

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
    /***************************/
    /**bg */
    /***************************/
    .border_shadow:after {
        right: -5px;
        bottom: -5px;
    }
    /********************************************/
    /* ttl */
    /********************************************/
    .border_bottom_base_ttl {
        font-size: 2.5rem;
    }
    /********************************************/
    /* btn */
    /********************************************/
}
