
.interview__contents iframe,
.interview__contents img {
	aspect-ratio: 16/9;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.interview__contents:not(:last-of-type) > .contents_imgs,
.interview__contents:not(:last-of-type) > .contents_video {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.interview_profile {
    margin-bottom: 32px;
}

.interview__contents--section:not(:last-of-type) {
    margin-bottom: 64px;
}

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {
	main .level_2 {
		text-align: center;
	}

    .interview__contents article {
        margin-bottom: 32px;
    }

	.interview__contents,.interview__contents--section {
		margin-bottom: 64px;
	}

	.interview__contents--section {
		margin-top: 40px;
	}
	.interview__contents--career {
		margin-bottom: 40px;
	}
}


/* ----------------------------------------------

 * メリット

---------------------------------------------- */

#merits ul {
    margin: 0rem 1rem 1rem 1.5rem;
    padding: 1rem 0 0;
}

#merits ul li {
    margin-bottom: 1rem;
    list-style-type: disc;
    font-size: var(--fontsize_18);
}

/* ----------------------------------------------

 * 募集要項バナー

---------------------------------------------- */

#to_requirements {
	background-image: url("../img/occupation/requirements_bnr_bg.jpg");
}

/* ----------------------------------------------

 * その他の仕事

---------------------------------------------- */

#job_description ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

#job_description ul li {
	position: relative;
	text-align: center;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#job_description ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;

	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
}

#job_description ul li a {
	position: relative;
	z-index: 2;

	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;
	padding: 0 16px;
	aspect-ratio: 188 / 137;

	line-height: 1.6;
}

#job_description ul li a::after {
	content: "";
	display: block;
	width: 16px;
	height: 14px;
	position: absolute;
	right: 16px;
	bottom: 10px;

	background-image: url("../common/img/arrow_right_white.svg");
	background-size: contain;
}

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {

	#job_description {
		position: relative;
	}

	#job_description ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	#job_description ul li {
		font-size: clamp(16px, 1.25vw, 24px);
	}

	#job_description ul li a::after {
		width: 30px;
		height: 26px;
	}

}

