@charset "utf-8";

/* pagetitle
----------------------------------------------- */
.pagetitle {
	margin-bottom: 20px;
}

/* job-group
----------------------------------------------- */
.job-group {
	width: calc(100% - 180px);
	max-width: 1200px;
	margin: 100px auto 0;
}
.job-group:last-child {
	margin-bottom: 80px;
}
.job-group-title {
	padding: 0 0 20px;
	margin-bottom: 30px;
	font-size: 23px;
	font-weight: bold;
	position: relative;
}
.job-group-title::after {
	content: "";
	width: 100%;
	height: 4px;
	box-sizing: border-box;
	background: #e8e8e8;
	border-left: 160px solid #5646b3;
	position: absolute;
	bottom: 0;
	left: 0;
}
.job-group ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 3rem;
}

.job-group ul li {
	width: calc(100% / 3 - 2rem);
	display: flex;
}
.job-group ul li a {
	display: block;
	margin-bottom: 5%;
	padding: 0 20px 20px;
	border: 5px solid #a293f7;
	border-radius: 0 0 0 40px;
	background: #fff;
	overflow: hidden;
	position: relative;
	transition: all 0.5s;
}

.job-group ul li .job-slider {
	width: calc(100% + 40px);
	margin-left: -20px;
	margin-bottom: 20px;
	overflow: hidden;
}
.job-group ul li .job-slider img {
	aspect-ratio: 435 / 250;
	object-fit: cover;
}

.job-group ul li .job-name {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
	color: #5646b3;
}
.job-group ul li .job-text {
	margin-bottom: 40px;
	line-height: 1.5;
	text-align: justify;
}
.job-group ul li .arrow {
	width: 50px;
	height: 50px;
	background: #a293f7;
	position: absolute;
	bottom: -5px;
	right: -5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.job-group ul li .arrow:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 15px;
	background-image: url(../images/arrow_black_right.svg);
	background-size: 8px 15px;
}

/* jobheader
----------------------------------------------- */

.jobheader {
	position: relative;
	overflow: hidden;
}
.jobheader__inner {
	position: relative;
	margin: auto;
	padding: 45px 0 0;
	max-width: 1500px;
	z-index: 1;
}
.jobheader__images {
	width: calc(50% - 135px);
	overflow: hidden;
}
.jobheader__image img {
	width: 100%;
	height: auto;
}
.jobheader__title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 0;
	left: calc(50% + 45px);
	height: 60%;
	z-index: 1;
}

/* worklfow
----------------------------------------------- */
.workflow {
	margin-top: 120px;
	padding: 80px 0 0;
	position: relative;
}
.workflow::after {
	height: 100%;
	width: calc(100% - 90px);
	z-index: -1;
	display: block;
	content: "";
	position: absolute;
	top: 0;
	opacity: 1;
	transform: translate(0);
	transition-property: opacity, transform;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	background-color: #f1f1f1;
}
.workflow__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 180px;
}
.workflow__inner.cm {
	margin: 0 auto;
	max-width: 700px;
}
ul.workflow-lists {
	margin-bottom: 50px;
}
ul.workflow-lists.mb0 {
	margin-bottom: 0;
}
ul.workflow-lists li.workflow-list {
	display: flex;
	gap: 20px;
	position: relative;
}
ul.workflow-lists li.workflow-list::after {
	content: "";
	width: 2px;
	height: 100%;
	background: #5646b3;
	position: absolute;
	left: 25px;
	top: 0;
	z-index: 1;
}
ul.workflow-lists li.workflow-list2::after {
	background: #414793;
}
ul.workflow-lists li.workflow-list:last-child:after {
	display: none;
}
ul.workflow-lists li.workflow-list .number {
	width: 50px;
	height: 50px;
	display: flex;
	flex: none;
	justify-content: center;
	align-items: center;
	background: #5646b3;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	z-index: 2;
}
ul.workflow-lists li.workflow-list .number.double {
	background: linear-gradient(135deg, #5646b3 0%, #5646b3 50%, #414793 50%, #414793 100%);
}
ul.workflow-lists li.workflow-list .number.category2 {
	background: #414793;
}
ul.workflow-lists li.workflow-list .workflow-info {
	width: calc(100% - 70px);
	box-sizing: border-box;
	margin-bottom: 30px;
	padding: 20px;
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
	background: #fff;
}
ul.workflow-lists li.workflow-list .workflow-info .workflow-text {
	flex: 1 1 300px;
}
ul.workflow-lists li.workflow-list .workflow-info .workflow-text .workflow-text__title {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
}
.workflow-cnt {
	max-width: 380px;
}
ul.workflow-lists li.workflow-list .workflow-info .workflow-text .workflow-text__label {
	margin-bottom: 10px;
	padding: 10px 10px;
	border: 1px solid #000;
	background: #5646b310;
	text-align: center;
}
.dli-chevron-down {
	margin: 0 auto 10px;
	display: block;
	vertical-align: middle;
	color: #333;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);
}
ul.workflow-lists li.workflow-list .workflow-info .workflow-text p {
	line-height: 1.5;
}
ul.workflow-lists li.workflow-list .workflow-info .workflow-img {
	width: 420px;
}
ul.workflow-lists li.workflow-list .workflow-info .workflow-img img {
	width: 100%;
}
ul.category {
	display: flex;
	gap: 50px;
}
ul.category li.category-list {
	width: 50%;
}
ul.category li.category1 {
	padding: 10px;
	margin-bottom: 30px;
	background: #5646b3;
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
ul.category li.category2 {
	padding: 10px;
	margin-bottom: 30px;
	background: #414793;
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}

/* pagenav
----------------------------------------------- */
.accordion__list {
	max-width: 1500px;
	padding: 10px 135px;
	margin: 150px auto;
	display: flex;
	gap: 2px;
	box-sizing: border-box;
}
.accordion__list .accordion__item {
	width: 50%;
}
.accordion__input {
	display: none;
}
.accordion__head {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px;
	color: #fff;
	background: #222222;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
}
.accordion__head:hover {
	background: #000;
	transition: all 0.5s;
}
.accordion__head:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin: -4px 0 0;
	width: 15px;
	height: 9px;
	background-image: url(../images/arrow_white_down.svg);
	background-size: 15px 9px;
	z-index: 1;
	transition: all 0.5s;
}
ul.accordion__body {
	overflow: hidden;
	width: 100%;
	height: 0;
	box-sizing: border-box;
	background: #eaeaea;
	transition: all 0.5s;
}
ul.accordion__body li a {
	display: block;
	text-align: center;
	transition: all 0.5s;
}
ul.accordion__body li a:hover {
	background: #dadada;
}
.accordion__input:checked + .accordion__head + .accordion__body {
	height: auto;
}
.accordion__input:checked + .accordion__head + .accordion__body li a {
	padding: 15px 15px;
}
.accordion__input:checked + .accordion__head::after {
	top: 55%;
}

/* attention
----------------------------------------------- */

.attention {
	margin: 80px 180px 0;
	background-color: #ffeaee;
}
.attention__inner {
	margin: 0 45px;
	padding: 25px 0;
}
.attention__text {
	font-size: 15px;
	text-align: justify;
	letter-spacing: 0.03em;
	line-height: 26px;
}
.attention__text em {
	font-weight: 700;
	font-style: normal;
}

/* titlelist
----------------------------------------------- */
.titlelist {
	margin: 0 180px;
	padding: 20px 0 0;
}
.titlelist__title {
	padding: 25px 0 10px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-bottom: 1px solid #000;
}
.titlelist__text {
	padding: 10px 0 0;
	font-size: 14px;
	text-align: justify;
	letter-spacing: 0.03em;
	line-height: 22px;
}

/* pc
----------------------------------------------- */

@media print, screen and (min-width: 1000px) {
	/* job-group
	----------------------------------------------- */
	.job-group ul li a:hover {
		box-shadow: 0 20px 15px rgba(0, 0, 0, 0.1);
		transform: translateY(-10px);
		transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
		cursor: pointer;
	}

	/* jobheader
	----------------------------------------------- */

	/* hover */
	.jobheader__link:hover a {
		color: #fff;
	}
	.jobheader__link:hover a:before,
	.jobheader__link:hover a:after {
		transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.jobheader__link:hover a:before {
		transform: scaleX(1);
		transform-origin: right;
	}

	/* ready */

	.js-indicate-ready.jobheader:after {
		transform: translateX(100%);
	}
	.js-indicate-ready.jobheader--reverse:after {
		transform: translateX(-100%);
	}
	.js-indicate-ready .jobheader__image img {
		transform: translateY(100%);
	}
	.js-indicate-ready .jobheader__title {
		opacity: 0;
		transform: translateX(50%);
	}
	.js-indicate-ready .jobheader__link:after {
		transform: translateX(-100%);
	}
	.js-indicate-ready .jobheader__link a {
		opacity: 0;
	}
	.js-indicate-ready .jobheader__link a:after {
		transform: translateY(100%);
	}

	/* start */

	.js-indicate-start.jobheader:after,
	.js-indicate-start .jobheader__image img,
	.js-indicate-start .jobheader__title,
	.js-indicate-start .jobheader__link:after,
	.js-indicate-start .jobheader__link a,
	.js-indicate-start .jobheader__link a:after {
		opacity: 1;
		transform: translate(0);
		transition-property: opacity, transform;
		transition-duration: 0.8s;
		transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	}
	.js-indicate-start .jobheader__title,
	.js-indicate-start .jobheader__link:after,
	.js-indicate-start .jobheader__link a,
	.js-indicate-start .jobheader__link a:after {
		transition-delay: 0.25s;
		transition-duration: 0.5s;
	}
	.js-indicate-start .jobheader__link a:after {
		transition-delay: 0.5s;
	}

	.workflow .pc {
		display: block;
	}
	.workflow .sp {
		display: none;
	}
}

/* tablet
----------------------------------------------- */

@media screen and (min-width: 641px) and (max-width: 1000px) {
}

/* mobile
----------------------------------------------- */

@media only screen and (max-width: 999px) {
	/* section
	----------------------------------------------- */

	.section {
		padding: 0 0 0px;
	}

	/* job-group
	----------------------------------------------- */
	.job-group {
		width: calc(100% - 40px);
		margin: 40px auto 0;
	}
	.job-group:last-child {
		margin-bottom: 50px;
	}
	.job-group-title {
		padding: 0 0 16px;
		margin-bottom: 20px;
		font-size: 16px;
		line-height: 1.5;
	}
	.job-group-title::after {
		height: 4px;
		border-left: 60px solid #5646b3;
	}
	.job-group ul {
		justify-content: center;
		gap: 1rem;
	}

	.job-group ul li {
		width: calc(50% - 2.2rem);
		flex: 1 1 300px;
	}

	.job-group ul li .job-name {
		margin-bottom: 15px;
		font-size: 18px;
	}
	.job-group ul li .job-text {
		margin-bottom: 40px;
		font-size: 14px;
	}
	.job-group ul li .arrow {
		width: 50px;
		height: 50px;
		bottom: -5px;
		right: -5px;
	}
	.job-group ul li .arrow:after {
		width: 8px;
		height: 15px;
		background-size: 8px 15px;
	}

	/* jobheader
	----------------------------------------------- */

	.jobheader {
		overflow: hidden;
	}
	.jobheader:after {
		left: 0;
		right: 0;
		height: 175px;
	}
	.jobheader--reverse:after {
		right: 0;
	}
	.jobheader__inner {
		padding: 0;
		max-width: auto;
	}
	.jobheader__images {
		margin: 0 20px;
		width: auto;
	}
	/*
	.jobheader__image {
		margin: 0 20px;
		width: auto;
	}
*/
	.jobheader__title {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		position: relative;
		left: 0;
		height: 60px;
		cursor: pointer;
	}
	.jobheader__title:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		margin: -8px 0 0;
		width: 20px;
		height: 20px;
		background-image: url(../images/icon_plus_black.svg);
		background-size: 20px;
		z-index: 1;
		transform: rotate(45deg);
	}
	.jobheader__text {
		margin: 0 40px 0 20px;
		/*height: 18px;*/
		font-size: 16px;
		line-height: 1.4;
		letter-spacing: 0.02em;
	}

	/* hide */

	.js-job-ready .jobheader__title:after {
		transition-property: transform;
		transition-duration: 0.25s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	}

	.js-job-hide .jobheader__title:after {
		transform: rotate(0deg);
	}

	/* switch
	----------------------------------------------- */

	.switch {
		display: none;
	}

	/* attention
	----------------------------------------------- */

	.attention {
		margin: 45px 0 0;
	}
	.attention__inner {
		margin: 0 20px;
		padding: 15px 0;
	}
	.attention__text {
		font-size: 13px;
		line-height: 23px;
	}

	/* titlelist
	----------------------------------------------- */

	.titlelist {
		margin: 0;
		padding: 5px 0 0;
	}
	.titlelist__title {
		font-size: 15px;
	}

	/* worklfow
	----------------------------------------------- */
	.workflow {
		margin-top: 60px;
		padding: 60px 0 40px;
		position: relative;
	}
	.workflow .pc {
		display: none;
	}
	.workflow .sp {
		display: block;
	}
	.workflow::after {
		width: 100%;
		z-index: -1;
		display: block;
		content: "";
		position: absolute;
		top: 0;
		opacity: 1;
		transform: translate(0);
		transition-property: opacity, transform;
		transition-duration: 0.8s;
		transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
		background-color: #f1f1f1;
	}
	.workflow__inner {
		margin: 0 20px;
		padding: 0;
	}
	.workflow__inner.cm {
		margin: 0 auto;
		padding: 0 20px;
	}
	ul.workflow-lists {
		margin-bottom: 30px;
	}
	ul.workflow-lists li.workflow-list {
		gap: 5px;
	}
	ul.workflow-lists li.workflow-list::after {
		left: 20px;
	}
	ul.workflow-lists li.workflow-list .number {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	ul.workflow-lists li.workflow-list .workflow-info {
		width: calc(100% - 45px);
		margin-bottom: 20px;
		padding: 13px;
		flex-wrap: wrap;
	}
	ul.workflow-lists li.workflow-list .workflow-info .workflow-text .workflow-text__title {
		margin-bottom: 10px;
		font-size: 16px;
		line-height: 1.5;
	}
	ul.workflow-lists li.workflow-list .workflow-info .workflow-text p {
		font-size: 14px;
	}
	ul.workflow-lists li.workflow-list .workflow-info .workflow-img {
		width: 420px;
	}
	ul.workflow-lists li.workflow-list .workflow-info .workflow-img img {
		width: 100%;
	}
	.category-list {
		width: 100%;
		margin-bottom: 20px;
		padding: 10px 0;
		font-size: 16px;
		font-weight: bold;
		color: #fff;
		text-align: center;
	}
	.category-list.category1 {
		background: #5646b3;
	}
	.category-list.category2 {
		background: #414793;
	}

	/* pagenav
----------------------------------------------- */
	.accordion__list {
		max-width: 1500px;
		padding: 10px 20px;
		margin: 80px auto;
		flex-direction: column;
	}
	.accordion__list .accordion__item {
		width: 100%;
	}
	.accordion__input {
		display: none;
	}
	.accordion__head {
		position: relative;
		display: block;
		width: 100%;
		padding: 15px;
		color: #fff;
		font-size: 14px;
		background: #222222;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
	}
	.accordion__head:hover {
		background: #000;
		transition: all 0.5s;
	}
	.accordion__head:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		margin: -4px 0 0;
		width: 15px;
		height: 9px;
		background-image: url(../images/arrow_white_down.svg);
		background-size: 15px 9px;
		z-index: 1;
		transition: all 0.5s;
	}
	ul.accordion__body {
		overflow: hidden;
		width: 100%;
		height: 0;
		box-sizing: border-box;
		background: #eaeaea;
		transition: all 0.5s;
	}
	ul.accordion__body li a {
		display: block;
		text-align: center;
		transition: all 0.5s;
		font-size: 14px;
	}
	ul.accordion__body li a:hover {
		background: #dadada;
	}
	.accordion__input:checked + .accordion__head + .accordion__body {
		height: auto;
	}
	.accordion__input:checked + .accordion__head + .accordion__body li a {
		padding: 15px 15px;
	}
	.accordion__input:checked + .accordion__head::after {
		top: 55%;
	}
}
