@charset "utf-8";

/* 
font-family: 'DM Sans', sans-serif;
font-family: 'M PLUS Code Latin', monospace;
font-family: 'Noto Sans JP', sans-serif; 
*/

/* ----------------------------------- */
/* キャリア採用 */
/* ----------------------------------- */

/* ----------------------------------- */
/* キャリア採用：キャリア採用リスト */
/* ----------------------------------- */

div.career-list-container {
    background: #fff;
    margin-left: 205px;
}

div.career-list-container li {
    height: 92px;
}new

/* 左側にパディングを入れる */
div.background {
    width: 10.67%;
    position: relative;
    z-index: 5;
}

/* キャリア採用一覧 */
div.career-list {
    background-color: #fff;
    position: relative;
    z-index: 7;
    flex-basis: 89.33%;
    margin-top: -94px;
}

/* キャリア採用一覧の文 */
div.career-list ul {
    display: flex;
    flex-direction: column;
    margin-top: 93px;
}

/* キャリア採用一覧の行 */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* 行全体でクリック可能 */
li.career-list-item {
    /* display: flex;
    align-items: center; */
    align-self: center;
    line-height: 40px;
    width: inherit;
    max-width: 1400px;
    height: 96px;
}

a.career-list-item-container {
    font-weight: 700;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@keyframes hover_effect {
    0% {
        opacity: 1;
    }
    100% {
        opacity: .5;
    }
}

a.career-list-item-container:hover {
    animation: hover_effect .5s forwards;
    background-color: inherit;
}

a.career-list-item-container div {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    color: #000;
}

a.career-list-item-container time {
    font-weight: 700;
    margin-right: 9.14%;
}

/* キャリア採用タイトル */
/* 二行以上だと省略する。 */
a.career-list-item-container p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding-right: 55px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0em;
    text-align: left;

}

img.career-list-item-arrow {
    position: absolute;
    top: 40px;
    right: 16px;
}

/* 次、前、1，2，3、...にアクセスするリンクボタン */
li.career-list-links,
.pagination-container ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 256px;
    /* padding: 0 auto; */
}

/* リンクボタンの形状 */
li.career-list-links a,
.pagination-container ul.pagination li {
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 1em;
    margin: 0 14px;
    border-radius: 52px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-container ul.pagination li {
    cursor: pointer;
}
.pagination-container ul.pagination li.disabled {
    display: none;
}
.pagination-container ul.pagination li a {
    color: #333;
}

/* 現在位置を表す色 */
li.career-list-links .career-list-now,
.pagination-container ul.pagination li.active {
    background-color: #707070;
    border: 1px solid #707070;
    color: #fff;
}
.pagination-container ul.pagination li.active a {
    color: #fff;
}

/* 前、あとなどの色 */
.career-list-links .career-list-one-previous,
.career-list-links .career-list-one-next,
.career-list-links .career-list-previous,
.career-list-links .career-list-next,
.pagination-container ul.pagination li {
    background-color: #E4E4E4;
    border: 1px solid #E4E4E4;
}

.career-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* マウスオーバー時の色変化 */
li.career-list-links a.career-list-now:hover,
.pagination-container ul.pagination li.active:hover {
    animation:  hover_effect .5s forwards;
    background-color: #707070;
    border: 1px solid #707070;
}
li.career-list-links a:hover,
.pagination-container ul.pagination li:hover {
    animation:  hover_effect .5s forwards;
    background-color: #E4E4E4;
    border: 1px solid #E4E4E4;
}

/* キャリア採用一覧の下境界線、最後のみ下境界線なし */
li.career-list-item:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}

div.list-container-items ul li time {
    line-height: 70px;
    margin-right: 30px;
}

div.list-container-items ul li a {
    color: #333;
}

/* お知らせ-詳細ページ（個別キャリア採用） */
/* キャリア採用一覧 */
div.career-article {
    background-color: #fff;
    margin-top: 0;
    /* margin-left: 6%; */
    /* margin-right: 10%; */
    position: relative;
    z-index: 7;
    flex-basis: 89.33%;
    padding: 6% 10% 6% 6%;
}

/* キャリア採用記事の時間 */
.career-article-time {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 0;
}

/* キャリア採用記事の題名 */
.career-article-title {
    font-size: 48px;
    /*font-weight: 700;*/
	color: #BC0000;
    line-height: 1.6em;
    margin-bottom: 59px;
}

/* キャリア採用記事本文 */
.career-article-sentence p {
    line-height: 29px;
    margin-bottom: 1em;
    word-break: break-all;
}

.career-article-sentence a {
    color: #333;
    text-decoration: underline;
}

.career-article-sentence img {
    max-width: 100%;
	height: auto;
    object-fit: contain;
}

.career-article-sentence table{
    width: 100%;
}
.career-article-sentence table p{
    line-height: 29px;
	margin: 0;
}
.career-article-sentence table tbody tr td:first-child{
    border-width: 1px 0px 1px 1px;
    border-color: rgb(203, 219, 228);
    border-style: solid;
    border-bottom: 1px white solid;
    background-color: rgb(203, 219, 228);
    width: 20%!important;
    padding: 1rem 1rem;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    line-height:1.6
}
.career-article-sentence table tbody tr:last-child td:first-child{
    border-bottom: 1px rgb(203, 219, 228) solid;
}
.career-article-sentence table tbody tr td:nth-child(2),
.career-article-sentence table tbody tr td:nth-child(3),
.career-article-sentence table tbody tr td:nth-child(4){
    border-width: 1px 0 1px 1px; 
    border-color: rgb(217, 217, 217); 
    border-style: solid; 
    background-color: rgb(255, 255, 255);
    width: auto!important;
    padding: 1rem 1rem;
    padding-bottom: 20px;
    line-height: 1.6;
}
.career-article-sentence table tbody tr td{
	word-break: break-word;
}

/* 問い合わせ */
.career-contact {
    background-color: #eeeeee; 
    padding: 5%; 
    margin-top: 70px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.career-contact-box {
    background-color: #ffffff; 
    width: 100%; 
    height: 100%;
	padding: 5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.career-contact-box h2 {
    color: #bc0000;
    font-size: 48px;
    margin-bottom: 2rem;
    font-weight: normal;
    font-family: DM Sans;
}
p.career-contact-text1 {
    color: #696969;
    font-size: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-family: Noto Sans JP;
}
p.career-contact-text2 {
    color: #696969;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    font-family: Noto Sans JP;
}


.career-article-links a {
    max-width: 40%;
}

/* 記事：二行以上だと省略 */
.career-article-links p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 1.6em;
}

.career-article-links-button {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6em;
    width: 360px;
    /* max-width: 360px; */
    height: 100px;
    border: 2px solid #333;
    border-radius: 48px;
    color: #333;
}

@keyframes btn_hover {
    0% {
        opacity: 1;
    }
    100% {
        opacity: .8;
    }
}

.career-article-links:hover , .career-article-links-right:hover {
    animation: btn_hover .5s forwards;
}

@keyframes btn_right {
    0% {
        margin-right: 0rem;
    }
    100% {
        margin-right: -0.5rem;
    }
}

@keyframes btn_left {
    0% {
        margin-left: 0rem;
    }
    100% {
        margin-left: -0.5rem;
    }
}

.career-article-links-left:hover img {
    /*animation: btn_left .5s forwards;*/
    transform: translateX(-0.5em);
}

.career-article-links-right:hover img {
    /*animation: btn_right .5s forwards;*/
    transform: translateX(0.5em);
}

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

    /* ------------------------------ */
    /* career, career-詳細 sp*/
    /* ------------------------------ */
    /* career、career-詳細、製品群一覧 */
    div.background {
        display: none;
    }

    /* お知らせ-詳細ページ（個別キャリア採用） */
    /* キャリア採用一覧 */
    div.career-list {
        flex-basis: 100%;
        padding: 16px 25px 0 14px;
        margin-top: -44px;
    }

    /* キャリア採用一覧の文 */
    div.career-list ul {
        margin-top: 30px;
    }

    /* キャリア採用一覧の行 */
    /* 行全体でクリック可能 */
    li.career-list-item {
        line-height: 20px;
        width: 100%;
        height: 129px;
    }

    a.career-list-item-container div {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 56px;
    }

    a.career-list-item-container p {
        padding-right: 0;

        font-size: 16px;
    }

    li.career-list-item time {
        margin-bottom: 5px;
    }

    img.career-list-item-arrow {
        top: 54px;
        left: 17px;
    }

    li.career-list-links,
    .pagination-container ul.pagination {
        /* flex-direction: row; */
        height: 146px;
    }

    li.career-list-links a,
    .pagination-container ul.pagination li {
        width: 42px;
        height: 42px;
        line-height: 1em;
        margin: 0 11.31px;
        border-radius: 42px;
    }

    div.career-article {
        flex-basis: 100%;
        padding: 16px 25px 70px 14px;
        margin: 0;
    }

    .career-article-time {
        font-size: 16px;
        line-height: 1.6em;
        margin-bottom: 0px;
    }


    .career-article-title {
        font-size: 20px;
        margin-bottom: 13px;
    }

    .career-article-sentence {
        margin-top: 40px;
    }
	.career-article-sentence table colgroup, table col{
		disiplay: none;
		width: auto!important;
	}

    /* キャリア採用記事本文 */
    .career-article-sentence p {
        line-height: 26px;
        margin-bottom: 1em;
    }
	.career-article-sentence table p{
    	line-height: 26px;
	}
    .career-article-sentence table tbody tr td:first-child{
    	width:100%!important;
        box-sizing: border-box;
    	border: none;
    	text-align: left;
    	display:block;
    }
	.career-article-sentence table tbody tr td:nth-child(2),
	.career-article-sentence table tbody tr td:nth-child(3),
	.career-article-sentence table tbody tr td:nth-child(4){
    	width:100%!important;
        box-sizing: border-box;
    	border-width: 0px 1px 1px 1px; 
    	display:block;
    }
    div.other-part {
        padding: 0 2.5% 60px;
    }
	.career-contact-box h2 {
    font-size: 26px;
	}
	p.career-contact-text1 {
    font-size: 18px;
    }
	p.career-contact-text2 {
    font-size: 24px;
    }
}

@media screen and (max-width: 950px) {
    /* ボタン-sp */
    .career-article-links {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 62px;
        margin-top: 45px;
    }

    .career-article-links a {
        max-width: 100%;
    }

    .career-article-links-button {
        font-size: 14px;
        line-height: 20px;
        padding: 0 20px;
        width: 100%;
        /* max-width: 100%; */

        height: 77px;
        border-radius: 38.5px;
    }

    /* ボタン-sp */
    /* 左にリンクするボタンの設定、flexで左寄せ */
    a.career-article-links-left div.career-article-links-button {
        justify-content: space-between;
    }

    a.career-article-links-left div.career-article-links-button::before {
        margin: 0 20px;
    }

    /* ボタン-sp */
    /* 右にリンクするボタンの設定、flexで右寄せ */
    a.career-article-links-right div.career-article-links-button {
        justify-content: space-between;
    }

    a.career-article-links-right div.career-article-links-button::after {
        margin: 0 20px;
    }
}