@charset "utf-8";


/*---------------------------------------------*/
/* recruit
============================================== */

.recruit-introduction {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: space-between;
    margin: 30px auto;
    text-align: center;
    align-items: flex-end;
    height: 100%;
}

.recruit-introduction a {
    padding: 5px;
    border: solid 2px #1A2C61;
    height: 100%;
    letter-spacing: 1px;
    color: white;
    background: #1A2C61;
    transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}

.recruit-introduction a div {
    color: white;
    border: solid 2px white;
    padding: 1rem;
    font-family: "メイリオ";
    font-size: 1.8rem;
}

.recruit-introduction a:hover {
    background: white;
    color: #1A2C61;
    letter-spacing: 0.2em;
}


.recruit-introduction a div:hover {
    color: #1A2C61;
    border: solid 2px #1A2C61;
}

.recruit-introduction__head {
    color: #1A2C61;
    text-align: left;
    font-weight: bold;
}



.recruit-info {
	border: 0.5px solid #aaa;
	width: 100%;
}

.recruit-line {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.recruit-info .recruit-line {
	border-top: 0.5px solid #aaa;
	border-collapse: collapse;
	line-height: 1.8rem;
}

.recruit-line div:nth-child(2n) {
	width: 75%;
	padding:  1em;
}
.recruit-line div:nth-child(2n) p {
	margin: 0;
	line-height: 2.4rem;
}
.recruit-line div ul li {
	line-height: 2.4rem;
}
.recruit-midashi {
	color: #000000;
	font-weight: bolder;
	background-color: #efefef;
	padding-left: 0em;
	padding: 10px;
	width: 25%;
	display: flex;
	align-items: center;
}
.recruit-midashi p {
	margin: 0;
    color: #1A2C61;
}

.w-90 {
	width: 90%;
	max-width: 750px;
	margin: 0 auto 50px auto;
}

.voiceBox {
    display: flex;
    justify-content: space-between;
    border: solid 2px #1A2C61;
    padding: 2rem;
    width: 98%;
}

.voiceBoxtext {
    width: 84%;
}

.voiceBoximg {
    width: 30%;
}

.voiceBoxtext p {
    margin-top: 15px;
    background-color: #fff;
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #ccc 1px, transparent 1px);
    background-size: 8px 100%, 100% 3.5em;
    line-height: 3.5em;
    padding-bottom: 1px;
}

.voiceBoxtext h2 {
    color: #1A2C61;
    font-weight: 600;
    font-size: x-large;
}

@media screen and (max-width:1270px) {
.voiceBox {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    border: solid 2px #1A2C61;
    padding: 2rem;
    width: 99%;
    flex-direction: column;
}
    .voiceBoxtext {
    width: 100%;
}
    
    .voiceBoxtext h2 {
    font-size: large;
}
    
    .voiceBoximg {
    display: none;
}
    
}


@media screen and (max-width:767.98px) {
	.recruit-line div:nth-child(2n) {
		width: 100%;
	}
	.recruit-midashi {
		width: 100%;
		padding: 10px;
	}
	
	.recruit-info {
		width: 98%;
		margin: 0 auto;
	}
    
    .voiceBox {
        display: flex;
        justify-content: space-between;
        margin: 0 auto 10px;
        border: solid 2px #1A2C61;
        padding: 2rem;
        width: 98%;
        flex-direction: column;
        height: auto;
    }
    
}

.recformBox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	border: 0.5px solid #aaa;
}
.recformBox .recform-koumoku {
	padding: 0.5em;
	background-color: #f2f2f2;
	width: 20%;
	text-align: center;
	display: flex;
	justify-content: center;
	border-bottom: 0.5px solid #aaa;
}
.recformBox .recform-koumoku p {
	align-self: center;
	margin: 0;
}

.recformBox div:nth-of-type(2n) {
	padding: 0.5em;
	width: 80%;
	border-bottom: 0.5px solid #aaa;
}

@media screen and (max-width:767.98px) {
	.recformBox {
		width: 90%;
		margin: 0 auto;
	}
	 .recformBox .recform-koumoku, .recformBox div:nth-of-type(2n) {
		width: 100%;
		display: block;
	}
}


/* 取り組みエリア　画像変えずに文字だけで対応*/
.torikumi-layer {
    display: grid;
    position: relative;
}

.torikumi-layer::after {
    content: "NEW";
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 3px;
    line-height: 1.4;
}

.torikumi-layer.close::after {
    transform: none;
}

.torikumi-layer img {
    grid-area: 1 / 1;
    width: 100%;
    display: block;
    z-index: 1;
}

.torikumi-layer p {
    grid-area: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: #1A2C61;
    font-weight: bold;
    margin: 0;
    font-size: 20px;
}