@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_red {
    color: #d9001b;
}

.co_blue {
    color: #0052B0;
}

.co_navy {
    color: #100964;
}

/***************************/
/**bg */
/***************************/
.grada_gray_top {
    background: #fff;
    background: -moz-linear-gradient(45deg, #fff 70%, #eaeaea 100%);
    background: -webkit-linear-gradient(45deg, #fff 70%, #eaeaea 100%);
    background: linear-gradient(45deg, #fff 70%, #eaeaea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#eaeaea',GradientType=1 );
}

.grada_gray_bottom {
    background: #eaeaea;
    background: -moz-linear-gradient(45deg, #eaeaea 0%, #fff 30%);
    background: -webkit-linear-gradient(45deg, #eaeaea 0%, #fff 30%);
    background: linear-gradient(45deg, #eaeaea 0%, #fff 30%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#fff',GradientType=1 );
}

.grada_blue_top {
    background: #fff;
    background: -moz-linear-gradient(45deg, #fff 0%, #EAF2FC 100%);
    background: -webkit-linear-gradient(45deg, #fff 0%, #EAF2FC 100%);
    background: linear-gradient(45deg, #fff 0%, #EAF2FC 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#EAF2FC',GradientType=1 );
}

.bg_blue {
    background: #0052B0;
}

.bg_light_blue {
    background: #4187D8;
}

/********************************************/
/* ttl */
/********************************************/
.center_ttl {
    margin-bottom: 1em;
    text-align: center;
    font-size: 5.0rem;
}

.center_ttl .en {
    display: block;
    letter-spacing: 0.1em;
    color: #100964;
    font-size: 1em;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.center_ttl .jp {
    display: block;
    position: relative;
    margin-top: 0.7em;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.center_ttl .jp:before, .center_ttl .jp:after {
    display: inline-block;
    position: relative;
    top: -0.2em;
    content: "";
    width: 1.8em;
    height: 1px;
    border-top: solid 2px #0052B0;
}

.center_ttl .jp:before {
    margin-right: 1em;
}

.center_ttl .jp:after {
    margin-left: 1em;
}

.left_ttl {
    margin-bottom: 1.4em;
    color: #100964;
    font-size: 2.0rem;
}

.left_ttl .jp {
    display: block;
    position: relative;
    letter-spacing: 0.1em;
    color: inherit;
    font-size: 1.5em;
    font-weight: 700;
}

.left_ttl .jp:after {
    display: inline-block;
    position: relative;
    top: -0.2em;
    content: "";
    width: 1.2em;
    height: 1px;
    margin-left: 0.7em;
    border-top: solid 3px #4187D8;
}

.left_ttl .en {
    display: block;
    margin-top: 0.2em;
    letter-spacing: 0.1em;
    color: inherit;
    font-size: 1em;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.border_ttl {
    margin-bottom: 1.2em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #707070;
    font-size: 3rem;
}

.border_ttl span {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #100964;
}

.border_btm_ttl {
    position: relative;
    margin-bottom: 1.5em;
    padding-bottom: 0.7em;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
}

.border_btm_ttl:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    margin: auto;
    width: 70px;
    height: 2px;
    background: #4187D8;
}

/********************************************/
/* btn */
/********************************************/
.search_btn button span,
.search_btn a span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    letter-spacing: 0.1em;
    color: inherit;
}

.search_btn button span:after,
.search_btn a span:after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 0.5em;
    background: url(../img/common/ico-glass.svg) no-repeat center/contain;
    vertical-align: middle;
}

.slide_btn a {
    position: relative;
    display: block;
    width: 300px;
    margin: auto;
    border-radius: 50px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.slide_btn a span {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 1.34em 1em;
}

.slide_btn a span.en {
    padding: 0.6em 1em;
    letter-spacing: 0.03em;
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.slide_btn a:after {
    position: absolute;
    top: 0;
    right: 240px;
    content: "";
    width: 100%;
    height: 100%;
    background: #0052B0;
    border-radius: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.slide_btn a:hover:after {
    right: 0;
}

.slide_btn.light_blue a:after {
    background: #4187D8;
}

.slide_btn.navy a:after {
    background: #100964;
}

.border_btn a {
    border: solid 1px #fff;
    color: #fff;
}

.border_btn a span {
    color: inherit;
}

.bg_btn.blue a {
    background: #100964;
    color: #fff;
}

.bg_btn.blue a span {
    color: inherit;
    display: inline-block;
}

.right_btn a {
    margin-right: 0;
}

.arrow_btn a {
    position: relative;
    display: block;
    padding: 0.9em 2em;
    background: #100964;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arrow_btn a:before {
    position: absolute;
    top: 0;
    right: 11px;
    bottom: 0;
    content: '';
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.arrow_btn a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll_btn a {
    position: relative;
    width: 100%;
    padding: 1.35em 2.2em 1.35em 1.5em;
    background: #0052B0;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll_btn a:before {
    position: absolute;
    top: -3px;
    right: 16px;
    bottom: 0;
    content: '';
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}

.scroll_btn a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/********************************************/
/* 追加 */
/********************************************/
.object_fit {
    position: relative;
}

.object_fit:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.object_fit img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    /*IE対策*/
}

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 768px) {
    /********************************************/
    /* ttl */
    /********************************************/
    .center_ttl {
        font-size: 3.0rem;
    }
    .border_ttl {
        font-size: 2.4rem;
    }
    .border_ttl span {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    .border_btm_ttl {
        font-size: 2.4rem;
    }
    .border_btm_ttl:before {
        width: 40px;
    }
    /********************************************/
    /* btn */
    /********************************************/
    .red_btn a {
        font-size: 1.5rem;
    }
    .arrow_btn a {
        padding: 1.3em 2em;
    }
    .scroll_btn a {
        font-size: 1.5rem;
    }
}
