@charset "UTF-8";

@import "../../../files/css/common/layout.css";

/*-------------------------------------------------------------------------
	採用情報
/*-----------------------------------------------------------------------*/

.title_area {
	background:url(../img/common/bg_title.jpg) center center no-repeat;
    background-size: contain;
}

/* --- リード文エリア（外枠） --- */
.recruit_lead {
    text-align: center;  
    margin: 0 auto 40px; 
    max-width: 840px; 
    padding: 0 15px; 
}

/* --- リード文のテキスト（中身） --- */
.recruit_lead p {
    font-size: 20px; 
    line-height: 2.0; 
    font-weight: 500; 
    letter-spacing: 0.05em;
}

.wlb_badge {
    display: inline-block;
    background-color: #e2f1ff;
    color: #004f9a;  
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    margin: 15px 0;
    border: 1px solid #004f9a;
}

/* --- 動画エリア (16:9 レスポンシブ) --- */
.recruit_video_wrapper {
    position: relative;
    width: 100%;
    max-width: 640px; 
    margin: 0 auto 50px;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    background-color: #adadad;
}

.recruit_video_wrapper iframe,
.recruit_video_wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 募集要項リスト (#recruit 内の定義リスト) --- */

#recruit .recruit_list dl {
    border-top: 1px #ccc solid;
    padding: 20px 25px;
    overflow: hidden;
}

#recruit .recruit_list dl:last-child {
    border-bottom: 1px #ccc solid;
}

#recruit .recruit_list dt {
    float: left;
    width: 25%;
    font-weight: bold;
    color: #004f9a;
    margin-top: 0;
}

#recruit .recruit_list dd {
    float: right;
    width: 75%;
    margin: 0;
    line-height: 1.8;
}

/* リスト内の微調整 */
#recruit .recruit_list ul {
    margin: 5px 0 0 0;
    padding-left: 20px;
}

.highlight_red {
    color: #e60012;
    font-weight: bold;
}
.small_text {
    font-size: 0.9em;
    color: #666;
}

/* --- 年収モデル枠 --- */
.salary_model {
    background-color: #f9f9f9;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-left: 4px solid #004f9a;
}
.model_title {
    font-weight: bold;
    color: #004f9a;
    margin-bottom: 10px;
}

.wlb_info {
    margin-top: 25px;
    background-color: #f0f8ff; 
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #cce0ff;
}

.wlb_inner {
    display: block; 
}
.wlb_title {
    font-weight: bold;
    color: #004f9a;
    margin-bottom: 10px;
}

/* --- 応募先エリア --- */
.contact_area {
    text-align: center;
    margin: 60px auto 40px;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}
.contact_area .tel {
    font-size: 24px;
    font-weight: bold;
    color: #004f9a;
    margin-top: 15px;
}
.contact_area .note {
    font-size: 14px;
    font-weight: normal;
    color: #333;
}


.contact_hours {
    font-size: 0.9em;
    color: #333;
    line-height: 1.6;
    margin-top: 10px;
    background-color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.contact_hours strong{
    font-size: 1.2em; 
    color: #004f9a;
}


@media screen and (max-width:798px) {
    
    .recruit_lead p {
        font-size: 16px; 
        line-height: 1.8;
        text-align: left; 
    }
    
    #recruit .recruit_list dl {
        padding: 20px 0px;
    }

    /* DLのフロート解除・縦積み */
    #recruit .recruit_list dt {
        float: none;
        width: 100%;
        margin-bottom: 10px;
        background-color: #e2f1ff; 
        padding: 10px;
        box-sizing: border-box;
    }

    #recruit .recruit_list dd {
        float: none;
        width: 100%;
        padding: 0 10px 10px;
        box-sizing: border-box;
    }
    
    /* 動画の幅調整 */
    .recruit_video_wrapper {
        width: 100%;
        max-width: 100%;
    }

    /* WLBエリアの縦積み */
    .wlb_inner {
        flex-direction: column;
        text-align: center;
    }

    .contact_hours{
        text-align: left;
    }

}


/* --- スマホ専用の改行設定 --- */
.sp_br {
    display: none;
}

@media screen and (max-width:798px) {
    .sp_br {
        display: inline;
    }
}