@charset "UTF-8";

.page_recruit_main {
	padding-block: 1em 0;
	background: #F5F5F5;
}

.breadcrumb {
	margin-top: 50px;
}

.page_recruit_main .title_box {
	text-align: center;
}

.page_recruit_main .title_box .title {
	font-size: 40px;
	letter-spacing: .08em;
	font-weight: 700;
	line-height: 1.5;
}

/* .page_recruit {
	background: #F5F5F5;
} */

.page_recruit .common_page_wrap {
	padding-block: 100px 80px;
}

.page_recruit .common_sec_title .title {
	font-size: 32px;
	letter-spacing: .08em;
	font-weight: 700;
	line-height: 1.5;
}

.recruit_cont_sec .tab_box {
	/* background: #fff; */
	padding: 0;
	/* margin-block: 0 50px; */
    margin-bottom: -2px;
}

.recruit_cont_sec .tab_box ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6em;
}

.recruit_cont_sec .tab_box li {
	display: flex;
	justify-content: center;
	align-items: center;
	min-block-size: 80px;
	padding: 0.5em;
    background-color: #ECF3F7;
    border: 2px solid #C2C8CB;
	text-align: center;
    font-family: "Noto Serif JP", serif;
	font-size: 20px;
	letter-spacing: .08em;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
	transition: .3s;
}

.recruit_cont_sec .tab_box li:hover {
	/* background: var(--main-color); */
	color: var(--main-color);
}

.recruit_cont_sec .tab_box li.is_active {
	background: #fff;
    border-bottom: none;
    color: var(--main-color);
	/* color: #fff; */
}

.recruit_cont_sec .panel_box {
    overflow-x: clip;
}

.recruit_cont_sec .panel {
    border: 2px solid #C2C8CB;
    display: none;
}

.recruit_cont_sec .panel.is_active {
    display: block;
    animation: fade 0.3s;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.recruit_cont_sec .panel .main_box {
	/* display: grid; */
	/* grid-template-columns: 320px 1fr; */
	/* gap: 80px; */
	/* margin-block: 0 70px; */
    background-color: #fff;
    padding: 60px 100px;
}

.recruit_cont_sec .panel .main_box .img img {
	width: 100%;
	aspect-ratio: 2/3;
	object-fit: cover;
}

.recruit_cont_sec .panel .main_box .text_box {
	padding-block: 0.6em 0;
}

.recruit_cont_sec .panel .main_box .text_box .title_box {
	margin-block: 0 1.8em;
}

.recruit_cont_sec .panel .main_box .common_sec_title {
	margin-block: 0 1.3em;
}

.recruit_cont_sec .panel .main_box .text_box .title_box .text {
	font-size: 16px;
	letter-spacing: .08em;
	font-weight: 400;
}

.recruit_cont_sec .panel .main_box .text_box .list li+li {
	margin-block: 1em 0;
}

.recruit_cont_sec .panel .main_box .text_box .list li .title {
	font-size: 24px;
	letter-spacing: .08em;
	font-weight: 700;
	line-height: 1.5;
	margin-block: 0 0.3em;
}

.recruit_cont_sec .panel .main_box .text_box .list li .textarea {
	padding-inline: 1.6em;
}

.recruit_cont_sec .panel .main_box .text_box .list li .textarea .text {
	font-size: 16px;
	letter-spacing: .08em;
	font-weight: 400;
    position: relative;
}

.recruit_cont_sec .panel .main_box .text_box .list li .textarea .text::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #313134;
    position: absolute;
    top: 10px;
    left: -18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.recruit_cont_sec .panel .main_box .text_box .list li .textarea .text+.text {
	margin-block: 1em 0;
}

.recruit_cont_sec .panel .desc_box {
	background: #fff;
	padding: 0 100px 100px;
}

.recruit_cont_sec .panel .desc_box .common_sec_title {
	text-align: center;
	margin-block: 0 2.6em;
}

.recruit_cont_sec .panel .desc_box .section_subtitle {
    font-size: 48px;
    position: relative;
}

.recruit_cont_sec .panel .desc_box .section_subtitle::before {
    content: "";
    width: 95vw;
    height: 2px;
    background: linear-gradient(to left, #00942C 0%, #059D57 157px, #003E92 314px, #003E92 475px, #003E92);
    position: absolute;
    bottom: 12px;
    right: 0;
    z-index: 0;
}

.recruit_cont_sec .panel .desc_box .section_title {
    margin-top: 10px;
}

.recruit_cont_sec .panel .desc_box .table_box {
    margin-top: 30px;
}

.recruit_cont_sec .panel .desc_box .table_box table {
	width: 100%;
}

.recruit_cont_sec .panel .desc_box .table_box table th,
.recruit_cont_sec .panel .desc_box .table_box table td {
	border: solid #ccc;
	border-width: 1px 0;
	padding: 2.1em 0.6em;
	letter-spacing: .08em;
	line-height: 1.6;
	vertical-align: middle;
}

.recruit_cont_sec .panel .desc_box .table_box table tr:first-of-type th,
.recruit_cont_sec .panel .desc_box .table_box table tr:first-of-type td {
	border-width: 0 0 1px 0;
}

.recruit_cont_sec .panel .desc_box .table_box table th {
	width: 28%;
	font-size: 16px;
	font-weight: 700;
}

.recruit_cont_sec .panel .desc_box .table_box table td {
	font-size: 16px;
	font-weight: 500;
}

@media (max-width: 750px) {

	.breadcrumb {
		/* margin-block: 0 12vw; */
        margin-top: 5.1vw;
	}

	.page_recruit_main .title_box .title {
		font-size: 5.6vw;
	}

	.page_recruit .common_page_wrap {
		padding-block: 10vw;
        background: url(/wp-content/themes/swell_child/image/bg_lower_page_sp.png) no-repeat center bottom/ cover;
	}

	.page_recruit .common_sec_title .title {
		font-size: 6.1vw;
	}

	.recruit_cont_sec .tab_box {
		padding: 0;
		margin-block: 0 6vw;
	}

	.recruit_cont_sec .tab_box ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5em;
	}

	.recruit_cont_sec .tab_box li {
		min-block-size: 11.5vw;
		font-size: 3.6vw;
        white-space: nowrap;
	}

    .recruit_cont_sec .tab_box li.is_active {
        border: 2px solid #C2C8CB;
    }

	.recruit_cont_sec .panel .main_box {
		grid-template-columns: 1fr;
		gap: 5vw;
		margin-block: 0;
        padding: 8vw 8vw 8vw 10vw;
	}

	.recruit_cont_sec .panel .main_box .img img {
		aspect-ratio: 35/18;
	}

	.recruit_cont_sec .panel .main_box .text_box {
		padding-block: 0;
	}

	.recruit_cont_sec .panel .main_box .text_box .title_box {
		margin-block: 0 1.4em;
	}

	.recruit_cont_sec .panel .main_box .common_sec_title {
		margin-block: 0 0.7em;
	}

	.recruit_cont_sec .panel .main_box .text_box .title_box .text {
		font-size: 3.6vw;
		line-height: 1.6;
	}

	.recruit_cont_sec .panel .main_box .text_box .list li+li {
		margin-block: 0.8em 0;
	}

	.recruit_cont_sec .panel .main_box .text_box .list li .title {
		background: #E3E3E3;
		font-size: 4.6vw;
		padding: 0.4em 0.6em;
		margin-block: 0 0.5em;
	}

	.recruit_cont_sec .panel .main_box .text_box .list li .textarea {
		padding-inline: 0;
	}

	.recruit_cont_sec .panel .main_box .text_box .list li .textarea .text {
		/* font-size: 3.3vw; */
		font-size: 3.6vw;
		line-height: 1.6;
	}

    .recruit_cont_sec .panel .main_box .text_box .list li .textarea .text::before {
        width: 1.5vw;
        height: 1.5vw;
        top: 2vw;
        left: -3.6vw;
    }

	.recruit_cont_sec .panel .desc_box {
		/* width: 95vw; */
		padding: 0vw 6vw 10vw;
		position: relative;
		/* left: calc(50% - 47.5vw); */
	}

	.recruit_cont_sec .panel .desc_box .common_sec_title {
		text-align: left;
		margin-block: 0 1.2em;
	}

    .recruit_cont_sec .panel .desc_box .section_subtitle {
        font-size: 7.5vw;
    }

    .recruit_cont_sec .panel .desc_box .section_subtitle::before {
        width: 80vw;
        background: linear-gradient(to left, #00942C, #059D57 17vw, #003E92 34vw, #003E92 51vw, #003E92);
        bottom: 1.9vw;
    }

    .recruit_cont_sec .panel .desc_box .section_title {
        margin-top: 1vw;
    }

    .recruit_cont_sec .panel .desc_box .table_box {
        margin-top: 1.3vw;
    }

	.recruit_cont_sec .panel .desc_box .table_box table {
		border-bottom: 1px solid #ccc;
	}

	.recruit_cont_sec .panel .desc_box .table_box table th,
	.recruit_cont_sec .panel .desc_box .table_box table td {
		display: block;
		width: 100%;
	}

	.recruit_cont_sec .panel .desc_box .table_box table th {
		font-size: 3.6vw;
		border-width: 1px 0 0;
		padding: 1.5em 0.7em 0.5em;
	}

	.recruit_cont_sec .panel .desc_box .table_box table td {
		font-size: 3.3vw;
		border: none;
		padding: 0 0.7em 1.5em;
	}

    .recruit_cont_sec .panel .desc_box .table_box table tr:first-of-type th,
    .recruit_cont_sec .panel .desc_box .table_box table tr:first-of-type td {
        border: none;
    }
}