@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_sky_blue {
    color: #44B7DF;
}

.co_blue {
    color: #0052B0;
}

.co_sky_pink {
    color: #F53578;
}

.co_yellow {
    color: #FFFF00;
    font-size: 1em;
    font-weight: inherit;
}

/***************************/
/**bg */
/***************************/
.bg_sky_blue {
    background-color: #44B7DF;
}

.bg_blue {
    background-color: #0052B0;
}

.bg_pink {
    background-color: #F53578;
}

.bg_white {
    background-color: #fff;
}

.bg_light_gray {
    background-color: #F7F7F7;
}

.bg_light_blue {
    background-color: #ECF8FC;
}

/********************************************/
/* ttl */
/********************************************/
.base_ttl {
    margin-bottom: 1em;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 4.0rem;
    color: #0052B0;
    line-height: 1.4;
}

.base_ttl.ver_center {
    text-align: center;
}

/********************************************/
/* btn */
/********************************************/
.btn_arrow a {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}

.btn_arrow a span {
    position: relative;
    display: inline-block;
    padding-right: 40px;
    padding-bottom: 10px;
    font-size: 1em;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn_arrow a span:after {
    position: absolute;
    right: 10px;
    bottom: 0;
    content: '';
    width: 84px;
    height: 10px;
    background: url(../img/common/ico-arrow.svg) no-repeat center/100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn_arrow a:hover span {
    color: #0052B0;
}

.btn_arrow a:hover span:after {
    right: 3px;
}

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

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

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

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
    /********************************************/
    /* ttl */
    /********************************************/
    .base_ttl {
        font-size: 2.3rem;
    }
    /********************************************/
    /* btn */
    /********************************************/
}
