@charset "utf-8";

/*================================
全サイズ適用
================================*/
/* 共通
--------------------------------*/
.contactMail {
    display: inline-block;
}

/* メッセージ
--------------------------------*/
.message {
    padding-top: 60px;
}
.message > .inner {
    max-width: calc(1100px + 14rem);
    padding-top: 60px;
    padding-bottom: 60px;
}

/*タイトル*/
.message_title_box {
    padding: 30px 0 65px;
    background-color: #fff;
}

/*テキスト*/
.message_lead {
    position: relative;
    z-index: 1;
}
.message_lead_title {
    color: #46372d;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.6;
    text-align: left;
}
.message_lead_text {
    font-size: 1.8rem;
    line-height: 1.8;
}

/* 募集要項
--------------------------------*/
.recruitment_info {
    padding-top: 60px;
}
.recruitment_info > .inner {
    max-width: calc(1100px + 14rem);
    padding-top: 50px;
    padding-bottom: 50px;
}

/*タイトル*/
.recruitment_info_title_box {
    padding: 30px 0 65px;
    background-color: #fff;
}

/*テーブル*/
.recruitment_info_table {
    border-collapse: separate;
    border-spacing: 0px 10px;
}
.recruitment_info_table tbody th,
.recruitment_info_table tbody td {
    padding: 30px 5%;
    vertical-align: middle;
    font-size: 1.8rem;
    line-height: 1.8;
}
.recruitment_info_table tbody th {
    width: 30%;
    background-color: #7f7066;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.recruitment_info_table tbody td {
    background-color: #ffffff;
    text-align: left;
}

/*リスト（角丸ひし形）*/
.recruitment_info_list {
    display: flex;
    flex-direction: column;
    gap: 10px 20px;
}
.recruitment_info_list.-row {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.recruitment_info_list > li {
    position: relative;
    padding-left: 2.3rem;
}
.recruitment_info_list > li::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 3px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background-color: #46372d;
    border-radius: 2px;
}

/* バナーエリア
--------------------------------*/
.bnr_area {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

/*================================
ノートPC 1366px～0px
================================*/
@media (max-width: 1366px) {
}

/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {
}

/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {
}

/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {
    /* メッセージ
	--------------------------------*/
    .message > .inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /*テキスト*/
    .message_lead_title {
        font-size: 2.4rem;
    }
    .message_lead_text {
        font-size: 1.6rem; /*よみづらい？*/
    }

    /* 募集要項
	------------------------------*/
    .recruitment_info > .inner {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    /*テーブル*/
    .recruitment_info_table,
    .recruitment_info_table tbody,
    .recruitment_info_table tbody tr,
    .recruitment_info_table tbody th,
    .recruitment_info_table tbody td {
        display: block;
        width: 100%;
    }
    .recruitment_info_table tbody tr:not(:last-child) {
        margin-bottom: 20px;
    }
    .recruitment_info_table tbody th,
    .recruitment_info_table tbody td {
        font-size: 1.6rem; /*よみづらい？*/
    }
    .recruitment_info_table tbody th {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /*リスト（角丸ひし形）*/
    .recruitment_info_list.-row {
        display: flex;
        flex-direction: column;
    }
}
