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

/***************************/
/**bg */
/***************************/
/********************************************/
/* ttl */
/********************************************/
.din_ttl {
    margin-bottom: 0.8em;
    font-size: 4.8rem;
    font-family: din-2014, sans-serif;
}

.din_ttl .en {
    display: block;
    line-height: 1.1;
    color: inherit;
    font-size: 1em;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.din_ttl .sub_ttl {
    display: block;
    font-size: 0.42em;
    line-height: 1.5;
    color: inherit;
    font-weight: bold;
}

.din_ttl.center_ttl {
    text-align: center;
}

.border_bottom_ttl {
    margin-bottom: 1.2em;
    padding-bottom: 0.3em;
    border-bottom: solid 1px #000;
    font-size: 3.0rem;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.box_ttl {
    margin-bottom: 2em;
    padding: 0.6em 0.9em;
    border: solid 1px #bebebe;
    font-weight: bold;
}

/********************************************/
/* btn */
/********************************************/
.arr_btn a {
    position: relative;
    display: inline-block;
    min-width: 260px;
    padding: 0.9em 1.5em;
    border: solid 2px #000;
    border-radius: 8px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arr_btn a:after {
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arr_btn a:hover {
    background: #fff;
    color: #000;
}

.arr_btn a:hover:after {
    border-color: #000;
}

.arr_btn.white_btn a {
    border: solid 2px #fff;
    background: #fff;
    color: #000;
}

.arr_btn.white_btn a:after {
    border-color: #000;
}

.arr_btn.white_btn a:hover {
    background: #000;
    color: #fff;
}

.arr_btn.white_btn a:hover:after {
    border-color: #fff;
}

.arr_btn.red_btn a {
    border: solid 2px #e52310;
    background: #e52310;
}

.arr_btn.red_btn a:hover {
    background: #fff;
    color: #e52310;
}

.arr_btn.red_btn a:hover:after {
    border-color: #e52310;
}

.arr_btn.gray_btn a {
    border: solid 2px #b2b2b2;
    background: #b2b2b2;
}

.arr_btn.gray_btn a:hover {
    background: #fff;
    color: #b2b2b2;
}

.arr_btn.gray_btn a:hover:after {
    border-color: #b2b2b2;
}

.border_btn a {
    display: block;
    width: 100%;
    padding: 0.4em 1em;
    background: #000;
    border: solid 2px #fff;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.border_btn a:hover {
    background: #fff;
    color: #000;
}

.bottom_arr_btn a {
    position: relative;
    display: block;
    padding: 0.6em 1.5em;
    border: solid 2px #000;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    font-size: 1.7rem;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.bottom_arr_btn a:after {
    position: absolute;
    top: calc(50% - 7px);
    right: 10px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.bottom_arr_btn.arrow_right a:after {
    top: calc(50% - 5px);
    transform: rotate(-45deg);
}

.bottom_arr_btn a:hover {
    background: #000;
    color: #fff;
}

.bottom_arr_btn a:hover:after {
    border-color: #fff;
}

/********************************************/
/* 追加 */
/********************************************/
.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    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 768px) {
    /********************************************/
    /* ttl */
    /********************************************/
    .din_ttl {
        font-size: 3.0rem;
    }
    .din_ttl .sub_ttl {
        font-size: 0.6em;
    }
    .border_bottom_ttl {
        font-size: 2.3rem;
    }
    /********************************************/
    /* btn */
    /********************************************/
    .red_btn a {
        font-size: 1.5rem;
    }
}
