@charset "UTF-8";
/* =========================
アコーディオンの初期設定をリセットする */
/* --------------------
デフォルトの矢印を消す */
summary {
	display: block;
}
summary::-webkit-details-marker {
	display: none;
}


/* =========================
基本設定 */
.ac + .ac {
	margin-top: 10px;
}
/* ------------
タイトル */
.ac__open {
	padding: 1em var(--gutter-var-sm);

	background-color: var(--color-main-thinner);
	border: 1px solid var(--color-main-pale);
	border-radius: 4px;

	cursor: pointer;
}
.ac__ttl {
	font-size: var(--txt-md);
	line-height: 1.35;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 0 var(--gutter-var-sm);
}
/* 矢印 */
.arrow-ac {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	stroke: var(--color-main-pale);
	width: 1em;
	height: auto;
}
/* ------------
コンテンツ */
.ac__inner {
	padding-top: 1.9em;
	padding-bottom: 3.8em;
}
@media (max-width: 559px) {
	.ac__inner {
		padding-top: 1em;
		padding-bottom: 1.9em;
	}
}
/* ------------
開閉時のアニメーション */
.ac__open {
	-webkit-transition: background-color .2s var(--easeInQuint),
	border-color .2s var(--easeInQuint);
	transition: background-color .2s var(--easeInQuint),
	border-color .2s var(--easeInQuint);
}
.ac__ttl {
	-webkit-transition: color .2s var(--easeInOutSine);
	transition: color .2s var(--easeInOutSine);
}
.ac__open.is-open {
	background-color: var(--color-main);
	border-color: var(--color-main);
}
.ac__open.is-open .ac__ttl {
	color: var(--color-white);
}
/* 矢印のアニメーション */
.arrow-ac {
	-webkit-transition: stroke .2s var(--easeInOutSine),
	-webkit-transform .15s var(--easeInQuint);
	transition: stroke .2s var(--easeInOutSine),
	-webkit-transform .15s var(--easeInQuint);
	transition: transform .15s var(--easeInQuint),
	stroke .2s var(--easeInOutSine);
	transition: transform .15s var(--easeInQuint),
	stroke .2s var(--easeInOutSine),
	-webkit-transform .15s var(--easeInQuint);
}
.ac__open.is-open .arrow-ac {
	-webkit-transform: scaleY(-1);
	        transform: scaleY(-1);
	stroke: var(--color-white);
}
/* コンテンツのアニメーション */
.ac__inner > *{
	opacity: 0;
	-webkit-transition: opacity .2s var(--easeInOutSine);
	transition: opacity .2s var(--easeInOutSine);
}
.ac__content {
	overflow: hidden;
	max-height: 0px;
	-webkit-transition: max-height .3s var(--easeInOutSine);
	transition: max-height .3s var(--easeInOutSine);
}
.ac__inner > *.is-slide{
	opacity: 1;
	-webkit-animation-name: acc-open;
	        animation-name: acc-open;
	-webkit-animation-duration: .2s;
	        animation-duration: .2s;
	-webkit-animation-delay: .1s;
	        animation-delay: .1s;
	-webkit-animation-timing-function: var(--easeInSine);
	        animation-timing-function: var(--easeInSine);
	-webkit-animation-fill-mode: backwards;
	        animation-fill-mode: backwards;
}
@-webkit-keyframes acc-open {
	from {
		opacity: 0;

		-webkit-transform: translateY(-10px);

		        transform: translateY(-10px);
	}
	to {
		opacity: 1;

		-webkit-transform: translateY(0);

		        transform: translateY(0);
	}
}
@keyframes acc-open {
	from {
		opacity: 0;

		-webkit-transform: translateY(-10px);

		        transform: translateY(-10px);
	}
	to {
		opacity: 1;

		-webkit-transform: translateY(0);

		        transform: translateY(0);
	}
}


/* =========================
コンテンツの設定

・採用情報
assets->css->container->container-recruit.css参照

*/
