/* ------------------------------
 採用について Top
------------------------------ */
/* ---- 採用情報 ---- */
.employmentBlock {
    margin-bottom: 100px;
}

/* ---- 求める人材像 ---- */
.talentBlock {
    padding: 100px 0 110px;
    margin-bottom: 100px;
    background-color: #f3f3f1;
}
/* 白いBOX（3分割） */
.boxList {
    gap: 45px 45px;
}
.boxList > * {
    padding: 50px 30px 30px;
    border-radius: 10px;
    background-color: #fff;
    /* ↓style.css リセット */
    margin-right: 0 !important;
}
.boxList h4 {
    border-bottom: 1px solid #d3d4d7;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.boxList h4::before {
    content: none;
}

/* ---- FAQ ---- */
.toggle {
    border-bottom: solid 1px #cbcdd0;
}
.toggle + .toggle {
    margin-top: 20px;
}
/* 開閉メニュー（Q） */
.toggle .title {
    position: relative;
}
.toggle .title .toggleBtn {
    position: relative;
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
	cursor: pointer;
	list-style: none;
    padding: 20px 32px;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}
/* Q */
.toggle .title::before {
    content: "";
    width: 19px;
    height: 20px;
    position: absolute;
    top: 25px;
    left: 0;
    background: url(../img/icon_q.svg) no-repeat 0 0 / cover;
}
/* アイコン */
.toggle .title::after {
    content: "";
	width: 26px;
	height: 26px;
	display: block;
	position: absolute;
	top: 20px;
	right: 0;
    bottom: 15px;
    left: auto;
    margin: auto;
    border-radius: 100%;
    background-color: #f9d826;
}
.toggle .title .toggleBtn::before,
.toggle .title .toggleBtn::after {
	content: "";
	display: block;
	background-color: #333;
	position: absolute;
    top: 5px;
    bottom: 0;
    left: auto;
    margin: auto;
}
.toggle .title .toggleBtn::before{
	width: 10px;
	height: 2px;
    right: 7px;
}
.toggle .title .toggleBtn::after {
	width: 2px;
	height: 10px;
    right: 11px;
}
.toggle.is-open .title .toggleBtn::after  {
	opacity: 0;
}
/* 開閉後コンテンツ（A） */
.toggle .toggleContents {
    display: none;
    padding: 30px 40px 30px 60px;
    background-color: #f3f3f1;
    position: relative;
}
/* A */
.toggle .toggleContents::before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 35px;
    left: 28px;
    background: url(../img/icon_a.svg) no-repeat 0 0 / cover;
} 
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
    /* ---- 採用情報 ---- */
    .employmentBlock {
        margin-bottom: 60px;
    }

    /* ---- 求める人材像 ---- */
    .talentBlock {
        padding: 50px 0;
        margin-bottom: 50px;
    }
    /* 白いBOX（3分割） */
    .boxList {
        gap: 20px 0;
    }
    .boxList > * {
        padding: 35px 25px 30px;
    }
    .boxList h4 {
        font-size: 1.9rem;
     }
   
    /* ---- FAQ ---- */
    .toggle + .toggle {
        margin-top: 15px;
    }
    /* 開閉メニュー（Q） */
    .toggle .title .toggleBtn {
        line-height: 1.5;
        padding: 15px 32px;
    }
    /* アイコン */
    .toggle .title::after {
        top: 15px;
        right: 0;
        left: auto;
        bottom: 15px;
    }
    .toggle .title .toggleBtn::before, 
    .toggle .title .toggleBtn::after {
        top: 0;
    }
    /* 開閉後コンテンツ（A） */
    .toggle .toggleContents {
        padding: 20px 25px 20px 50px;
    }
    /* A */
    .toggle .toggleContents::before {
        top: 25px;
        left: 20px;
    }
}


/* ------------------------------
 下層
------------------------------ */
 /* ---- 新卒採用 ---- */
.requirementsBlock {
    margin-bottom: 100px;
}
/* テーブル */
.lineTb table {
    width: 100%;
    border-top: solid 1px #cbcdd0;
}
.lineTb table tr {
    border-bottom: solid 1px #cbcdd0;
}
.lineTb table th {
    font-weight: bold;
}
.lineTb table th,
.lineTb table td {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* --------------------
 PC用限定CSS
--------------------- */
@media print, screen and (min-width: 768px) {
     /* ---- 新卒採用 ---- */
    /* テーブル */
    .lineTb table tbody th {
        width: 20%;
        padding-right: 15px;
    }
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
     /* ---- 新卒採用 ---- */
    .requirementsBlock {
        margin-bottom: 60px;
    }
    /* テーブル */

    .lineTb table th,
    .lineTb table td {
        width: 100%;
        display: block;
        padding-top: 15px;
    }
    .lineTb table th {
        padding-bottom: 0;
    }
    .lineTb table td {
        padding-bottom: 15px;
    
    }
}
/* ---- 中途採用 ---- */
.position_list {
    margin-bottom: 90px;
}
.position_list > ul {
    border-top: 1px solid #CBCDD0;
}
.position_list > ul > li {
    border-bottom: 1px solid #CBCDD0;
}
.position_list > ul > li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 0;
    color: #000;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.position_list > ul > li a::after {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('../img/icon_arrow.svg') no-repeat;
}
.position_list > ul > li a:hover {
    opacity: .6;
}
.position_list > ul > li a p {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}
ul.list_tag li {
    font-size: 1.3rem;
    border: 1px solid #808080;
    padding: 4px 6px;
    border-radius: 3px;
    display: inline-block;
    line-height: 1;
}
.headering h1.left {
    font-size: 4rem;
    text-align: left;
    margin-bottom: 15px;
}
.headering h1.left::after {
    width: 35px;
    height: 5px;
    margin: 20px auto 0 0;
}
.lineTnone table {
    border-top: none !important;
}
/* ---- テーブル ---- */
.table table {
	width: 100%;
	border-collapse: collapse;
}






.table table tr:not(:last-child) {
	border-bottom: solid 1px #000;
}
.table th:not(:last-child) {
	border-right: solid 1px #fff;
    
}
.table td:not(:last-child) {
	border-right: solid 1px #000;
}
.table th {
	font-weight: bold;
	color: #fae051;
	background-color: #000;
    border-bottom: solid 1px #fff;
	padding: 5px;
    vertical-align: middle;
    text-align: center;
}
.table td {
	background-color: #f5f5f4;
	padding: 15px;
    vertical-align: middle;
    text-align: center;
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
    .table {
        font-size: 1.3rem;
    }
    .table td {
        text-align: left;
        padding: 8px;
        line-height: 1.5;
    }
    .table td br {
        display: none;
    }
}