/* お知らせ新設 & 電話ブロック新設 ＆ フォーム調整 */

.uppercase {
    text-transform: uppercase;
}

/* お知らせ */
.news_list {
    box-sizing: border-box;
	margin: 0;
	padding: 0;

    width: 85%;
    max-width: 700px;
    height: 180px;
    overflow-y: scroll;
    margin: 10px auto;
    font-size: 14px;
}
.news_over {
    display: flex;
    margin-bottom: 5px;
    align-items: baseline;
    line-height: 1.3;
}
.news_date {
    margin-right: 1.5em;
}
.news_category {
    
    background-color: #72bd01;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 13px;
}
.nc_recruit {
    background-color: #2dabea;
}
.news_item {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #72bd01;
}

.news_item p {
    padding: 0;
}
.news_item a {
    color: #523210;
}

/* 求人 冒頭文 */
.lead_sentence {
    width: fit-content;
    margin: 10px auto;
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}

/* 電話ブロック*/
.tel_block {
    position: relative;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    border: 1px solid #ff9d26;
    box-shadow: 2px 2px 2px #dd871e;
    background-color: #fff;
}
.tb_space {
    padding: 0.5em;
}
.tb_number {
    letter-spacing: 0.2rem;
    color: #ff9d26;
    border-bottom: 2px solid #ff9d26;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.tb_number a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.tb_sentence {
    margin-top: 5px;
    text-align: center;
    font-size: 16px;
}

/* フォーム調整 */
.form_wrapper {
    box-sizing: border-box;
	margin: 0;
	padding: 0;

    width: 90%;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 20px;
    color: #000;
    background-color: #fff;
    border: 2px solid #87d217;
    /* border: 2px solid #00A0E9; */
}
.fb_up {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 0.25em 0;
    border-bottom:1px solid #87d217;
    color: #87d217;
    font-weight: bold;
}
.t_radio {
    min-width: 92px;
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    padding: 6px 4px;
    margin-right: 5px;
    margin-bottom: 8px;
    background-color: #fbfff5;
    border: 1px solid #87d217;
    box-shadow: 2px 2px 2px #a2b97f;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: #484848;
}
input.t_input[type=radio]:checked+label {
    border: 2px solid #ff9d26;
    background-color: #fdecd7;
    box-shadow: 3px 3px 2px #fff;
    color: #ff962c;
}
/* プライバシーポリシー */
.formContents__privacy h3 {
    letter-spacing: 0.7px;
    color: #444;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}
.formContents__privacy p {
    margin-top: 3px;
    font-size: 10px;
}
.privacyForm_innerBlock {
    width: 80%;
    height: 80px;
    margin: 6px auto;
    padding: 5px;
    border: 1px solid #999;
    overflow-y: scroll;
    text-align: left;
}
.c2 {
    text-align: center;
    margin-top: 20px;
}
.form_entry_btn {
    height: 40px;
    width: 200px;
    margin-top: 6px;
    font-size: 16px;
    border-radius: 25px;
    color: #003953;
    border: 1px solid #003953;
}
.form_unit_error_msg {
	color:#e50b0b;
}

.privacyForm_title {
    margin-top: 0.25em;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
}
.privacyForm_text {
    margin-bottom: 0.5em;
    font-size: 10px;
}

@media screen and (min-width:600px) {
    .pc_hidden {
        display: none;
    }
    /* お知らせ */
    .news_list {
        height: 230px;
        padding-right: 15px;
        font-size: 18px;
    }
    .news_item {
        display: grid;
        grid-template-columns: 5fr 9fr;
        grid-gap: 20px;
        align-items: center;
    }
    .news_category {
        font-size: 16px;
    }
    .ni_link {}

    .lead_sentence {
        margin: 30px auto 0;
        line-height: 1.8;
        font-size: 18px;
    }

    /* 電話ブロック*/
    .tel_block {
        margin: 30px auto 0;
        padding: 20px 30px;
        border: 1px solid #ff9d26;
        box-shadow: 2px 2px 2px #dd871e
    }
    .tb_space {
        padding: 0.5em;
    }
    .tb_number {
        letter-spacing: 0.2rem;
        border-bottom: 2px solid #ff9d26;
        text-align: center;
        font-weight: bold;
        font-size: 30px;
    }
    .tb_sentence {
        margin-top: 5px;
        text-align: center;
        font-size: 20px;
    }

    /* フォーム調整 */
    .form_wrapper {
        margin: 30px auto;
        padding: 50px ;
    }
}