@charset "UTF-8";

/*----------------------------------------------------
    layaut
----------------------------------------------------*/
.flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}

.no-gutters {
    margin: 0;
    padding: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    margin: 0;
    padding: 0;
}

@media screen and (min-width:992px) {}

@media screen and (min-width:768px) and (max-width:991px) {}

@media screen and (max-width:767px) {}

/*----------------------------------------------------
    Inner
----------------------------------------------------*/

/* ----bg_pattern01----*/
.bg_pattern01 {
    background-image: url("../images/base/bg_pattern01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

/*----------------------------------------------------
    Title
----------------------------------------------------*/

/* ----ttl_main_01----*/
.ttl_main_01 {
    font-size: 54px;
    margin-bottom: 2.6rem;
    color: #1d2087;
}

.ttl_main_01 span {
    /* font-family: 'Lora', serif; */
    font-family: 'Noto Sans JP', sans-serif;

    font-size: 33.33%;
    display: block;
    margin-bottom: .6rem;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .ttl_main_01 {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .ttl_main_01 span {
        font-size: 40%;
        margin-bottom: .6rem;
    }
}

@media screen and (max-width:767px) {
    .ttl_main_01 {
        font-size: 24px;
        margin-bottom: 1.6rem;
    }

    .ttl_main_01 span {
        font-size: 40%;
        margin-bottom: .2rem;
    }
}

/* ----ttl_main_02----*/
.ttl_main_02 {
    font-size: 54px;
    margin-bottom: 2.6rem;
    color: #1d2087;
}

.ttl_main_02 span {
    font-size: 60%;
    display: block;
    margin-bottom: .6rem;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .ttl_main_02 {
        font-size: 42px;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width:767px) {
    .ttl_main_02 {
        font-size: 28px;
        margin-bottom: 1.6rem;
    }
}

/* ----ttl_sub_01----*/
.ttl_sub_01 {
    line-height: 1.8;
}

.ttl_sub_01 span {
    font-size: 36px;
    padding: 0 1rem;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .ttl_sub_01 span {
        font-size: 26px;
    }
}

@media screen and (max-width:767px) {
    .ttl_sub_01 {
        line-height: 2.3;
    }

    .ttl_sub_01 span {
        font-size: 18px;
        padding: .2rem .6rem;
    }
}

.ttl_sub_01 span.color_blue {
    background-color: #1d2087;
    color: #fff;
}

.ttl_sub_01 span.color_red {
    background-color: #d00024;
    color: #fff;
}

.ttl_sub_01 span.color_yellow {
    background-color: #d0b100;
    color: #fff;
}

/* ----ttl_sub_02----*/
.ttl_sub_02 {
    font-size: 32px;
    color: #1d2087;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #1d2087;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .ttl_sub_02 {
        font-size: 26px;
        padding-bottom: .6rem;
        margin-bottom: .6rem;
    }
}

@media screen and (max-width:767px) {
    .ttl_sub_02 {
        font-size: 20px;
        padding-bottom: .6rem;
        margin-bottom: .6rem;
    }
}

/*----------------------------------------------------
    Btn
----------------------------------------------------*/
@media (max-width: 767px) {
    .btn_link_01 {
        text-align: center;
    }
}

/*
.btn_link_01 a {
    display: inline-block;
    padding: .6rem 1rem;
    text-align: center;
    width: 180px;
    font-size: 14px;
    color: #fff;
    background-color: #e50012;
    border-radius: 20px;
}
.btn_link_01 a:hover {
    opacity: 1;
    background-color: #db7507;
}
@media screen and (min-width:768px) and (max-width:991px) {
    .btn_link_01 a {
        padding: .6rem 1rem;
        width: 180px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px) {
    .btn_link_01 a {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 14px;
        width: 100%;
    }
}*/

/*----------------------------------------------------
    Table
----------------------------------------------------*/
.table_01 {
    width: 100%;
}

.table_01 th,
.table_01 td {
    padding: 1rem 1.4rem;
}

.table_01 th {
    border: 1px solid #5154ba;
    background-color: #1d2087;
    color: #fff;
}

.table_01 td {
    border: 1px solid #d6d6d6;
    background-color: #fff;
}

@media screen and (min-width:768px) and (max-width:991px) {

    .table_01 th,
    .table_01 td {
        padding: .8rem 1rem;
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {

    .table_01 th,
    .table_01 td {
        padding: 0.6rem 0 0.6rem 0.6rem;
        font-size: 10px;
    }
}

/*----------------------------------------------------
    Wrap
----------------------------------------------------*/

/* wrap_item01
---------------------------*/
.wrap_item01 {
    margin-bottom: 7rem;
}

.wrap_item01 .ttl_sub_01 {
    margin-bottom: 3rem;
}

.wrap_item01 p {
    margin-bottom: 2rem;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .wrap_item01 {
        margin-bottom: 4rem;
    }

    .wrap_item01 .ttl_sub_01 {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width:767px) {
    .wrap_item01 {
        margin-bottom: 3rem;
    }

    .wrap_item01 .ttl_sub_01 {
        margin-bottom: 2rem;
    }

    .wrap_item01 .item_img {
        margin-bottom: 1rem;
    }
}

/* wrap_detail
---------------------------*/
.wrap_detail {}

.wrap_detail .item {
    margin-top: 3rem;
}

.wrap_detail .item a {
    display: block;
    position: relative;
}

.wrap_detail .item .item_ttl {
    position: absolute;
    z-index: 1;
    font-size: 24px;
    top: -1.4rem;
    left: .3rem;
}

.wrap_detail .item .item_ttl .ttl01 {
    text-transform: capitalize;
    /* font-family: 'Lora', serif; */
    font-family: 'Noto Sans JP', sans-serif;

    color: #1d2087;
    font-size: 75%;
}

.wrap_detail .item .item_ttl .ttl02 {
    color: #fff;
    padding: 8px;
    background-color: #1d2087;
    display: inline-block;
}

.wrap_detail .item .item_img {
    position: relative;
}

.wrap_detail .item .item_name {
    font-size: 18px;
    color: #1d2087;
    padding: 1rem;
    background-color: #e6e6e6;
}

.wrap_detail .item .item_more {
    text-align: right;
    color: #1d2087;
    text-decoration: underline;
    /* font-family: 'Lora', serif; */
    font-family: 'Noto Sans JP', sans-serif;

    padding: .6rem;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .wrap_detail .item .item_ttl {
        font-size: 18px;
        top: -1rem;
        left: .3rem;
    }

    .wrap_detail .item .item_name {
        font-size: 14px;
        padding: .6rem;
    }

    .wrap_detail .item .item_more {
        padding: .4rem;
    }
}

@media screen and (max-width:767px) {
    .wrap_detail .item {
        margin-top: 3rem;
    }
}

/*----------------------------------------------------
    List
----------------------------------------------------*/

/* ----list_check----*/
.list_check li {
    padding-left: 25px;
    background: url(../images/base/checked.svg) left 0px top 3px no-repeat;
    background-size: 20px auto;
    line-height: 1.8;
}

/*----------------------------------------------------
    Conversion
----------------------------------------------------*/
.cvbnr .txt_area {
    background-image: url("../images/parts/cv_bnr_bg.jpg");
    background-size: cover;
    color: #fff;
    padding: 12rem 4rem;
    align-items: center;
    display: flex;
}

.cvbnr .txt_area h2 {
    font-size: 54px;
    margin-bottom: 2.6rem;
}

.cvbnr .txt_area h2 span {
    /* font-family: 'Lora', serif; */
    font-family: 'Noto Sans JP', sans-serif;

    font-size: 33.33%;
    display: block;
    margin-bottom: .6rem;
}

.cvbnr .txt_area .img_block {
    display: none;
}

.cvbnr .txt_area p {
    margin-bottom: 3rem;
}

.cvbnr .bg_area .item {
    background-size: cover;
    min-height: 100%;
    background-position: center center;
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .cvbnr .txt_area {
        padding: 8rem 2.6rem;
    }

    .cvbnr .txt_area h2 {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .cvbnr .txt_area h2 span {
        font-size: 40%;
        margin-bottom: .6rem;
    }

    .cvbnr .txt_area p {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .cvbnr .txt_area {
        padding: 5rem 2.6rem;
    }

    .cvbnr .txt_area h2 {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .cvbnr .txt_area h2 span {
        font-size: 40%;
        margin-bottom: .6rem;
    }

    .cvbnr .txt_area p {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width:767px) {
    .cvbnr .txt_area {
        padding: 2rem 1rem 2.4rem;
        display: block;
    }

    .cvbnr .txt_area h2 {
        font-size: 24px;
        margin-bottom: 1.6rem;
    }

    .cvbnr .txt_area h2 span {
        font-size: 40%;
        margin-bottom: .2rem;
    }

    .cvbnr .txt_area .img_block {
        display: block;
        margin-bottom: 1rem;
    }

    .cvbnr .txt_area .img_block img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .cvbnr .txt_area p {
        margin-bottom: 1.6rem;
    }

    .cvbnr .bg_area {
        display: none;
    }
}

/* ----cv_recruit----*/
@media screen and (max-width:767px) {
    #cv_recruit.cvbnr .txt_area .img_block img {
        object-fit: cover;
        object-position: center 10%;
    }

    #cv_recruit {
        padding: 0 8px;
    }
}

.tos-desktop .tos-wrapper.tos-fixed {
    background-color: rgba(255, 255, 255, 0.85) !important;
}

.tos-close,
.tos-next,
.tos-prev {
    background-color: #d6d6d6 !important;
}

.tos-close span:before,
.tos-prev span {
    border-bottom: 3px solid #1d2087 !important;
    border-left: 3px solid #1d2087 !important;
}

.tos-close span:after,
.tos-next span {
    border-top: 3px solid #1d2087 !important;
    border-right: 3px solid #1d2087 !important;
}

@media (min-width: 992px) {
    .tos-caption {
        color: #000 !important;
        text-shadow: none !important;
    }
}