@charset "UTF-8";
@import url("root.css");





/* --------------------------------------------------
要素
-------------------------------------------------- */
html {
    font-size: 100%; /* 16px */
}
body {
	margin:0;
	color: #000000;
	line-height: 1.75;
	font-family:  "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif ;
	font-weight: normal;
	font-optical-sizing: auto;
	letter-spacing: -0.05em;
	word-break: break-all;
}
section {
	overflow-x: clip;
}
figure {
	overflow: hidden;
}
img {
	width: 100%;
	height: 100%;
	image-rendering: -webkit-optimize-contrast;
	object-fit: cover;
	object-position: 50% 50%;
}

dt {
	font-weight: normal;
}
.sidenote {
	text-align: right;
}


/* ブロックスキップ */
div.blockskip {
	position: relative;
}
div.blockskip a {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}


/* ページスクロール */
.scrollarrow img {
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX( -50%);
	width: 55px;
	height: 120px;
	transform-origin: top left;
	animation: fluffy 3s infinite;
}
@keyframes fluffy {
	0%, 100% {
		transform: translate( -50% , 0);
	}
	50% {
		transform: translate( -50% , -20px );
	}
}

@media screen and (max-width: 768px) {
	.scrollarrow img {
		//bottom: 0;
		//width: 30px;
		//height: 72px;
	}
}



/* ページトップへ */
.pagetop {
	padding: 0.5em 1.5em;
	position: fixed;
	right: 30px;
	bottom: 30px;
	background: var( --main-color );
	border: 2px solid var( --base-color );
	color: var( --border-color-01 );
	border-radius: 50px;
	z-index: 15;
}
.pagetop:hover,
.pagetop:focus {
	color: #FFFFFF;
	background: var( --main-color-focus );
}


/* タイトル */
h2 {
	margin-bottom: 16px;
	font-weight: 600;
}
h2.maintitle {
	margin-bottom: 50px;
	line-height: 1.35;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
}
h2.maintitle .catchcopy {
	display: block;
	font-size: 150%;
}
h2.maintitle .title {
	display: block;
	font-size: 250%;
}
h2.maintitle .english {
	display: block;
	font-family: "Noto Sans JP",  sans-serif ;
	font-weight: 400;
	font-optical-sizing: auto;
}
h3,
caption {
	font-size: 150%;
	color: var( --main-color );
	font-weight: 600;
}
h3.topics {
	position: relative;
	margin-bottom: 50px;
	color: #000000;
	font-size: 100%;
}
h3.topics:before {
	position: absolute;
	content:"";
	top: 0;
	left: 0;
	width: 100px;
	height: 60px;
	background: url(../recruit/images/special/iconTopics.png);
	background-size: 100px 60px;
}
h3.topics .catchcopy {
	display: block;
	padding-left: 100px;
	font-weight: 400;
}
h3.topics .title {
	display: block;
	padding-left: 100px;
	line-height: 1.15;
	font-size: 150%;
}
@media screen and (max-width: 480px) {
	h2 {
		font-size: 110%;
	}
}

/* --------------------------------------------------
リンク
-------------------------------------------------- */
a.textLink {
	position: relative;
	font-weight: bold;
	color: var( --main-color );
	text-decoration: underline;
	padding:0.25em 0.5em;
}
a img.pict {
	display: inline-block;
	margin-right: 0.25em;
	height: 1.25em;
	width: 1.25em;
	transform: translate(0,-25%);
}
a.buttonLink {
	position: relative;
	padding: 0.25em 0;
	text-align: center;
	font-weight: bold;
	color: var( --main-color );
	background: var( --electric-color );
	border: 5px solid var( --main-color );
	overflow: hidden;
	border-radius: 100px;
	transition: all .3s;
}
a.buttonLink::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var( --main-color );
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.5s ease;
	transition-property: transform;
}
a.buttonLink span {
	position: relative;
}
@media (any-hover: hover) {
	a.textLink:hover {
		color:#000000;
		background: var( --base-color-focus );
		border-radius: var( --radius-small );
	}
	a.buttonLink:hover {
		color: #FFFFFF;
	}
	a.buttonLink:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}
}
@media (any-hover: none) {
	a.textLink:active {
		color:#000000;
		background: var( --base-color-focus );
		border-radius: var( --radius-small );
	}
	a.buttonLink:active {
		color: #FFFFFF;
	}
	a.buttonLink:active::before {
		transform: scaleX(1);
		transform-origin: left;
	}
}


/* --------------------------------------------------
ヘッダー
-------------------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	border: none;
	background: rgba(250, 250, 250, 0.5);
	backdrop-filter: blur(4px);
}
header .inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1200px;
}
.mainlogo {
	display: flex;
	flex-direction:row;
	align-items: center;
	justify-content: start;
}
.mainlogo img.safety-chugoku {
	width: 320px;
}
.mainlogo img.recruitspecial {
	width: 215px;
}
.entry {
	width: 200px;
}
.entry a {
	display: block;
}
@media screen and (max-width: 768px) {
	header .inner {
		display: block;
		position: relative;
		width: 100%;
		text-align: center;
	}
	.mainlogo {
		display: flex;
		flex-direction:column;
		align-items: center;
		padding: 25px 0 15px;
		width: 100%;
		overflow: hidden;
	}
	.mainlogo img.safety-chugoku {
		width: 375px;
	}
	.mainlogo img.recruitspecial {
		width: 215px;
	}
	.entry {
		position: absolute;
		top: 15px;
		right: 25px;
		width: 200px;
		max-width: 33.334%;
	}
}


/* --------------------------------------------------
メインビジュアル
-------------------------------------------------- */
#mainvisual {
	position: relative;
	width: 100%;
	height: 800px;
	background: no-repeat url("../recruit/images/special/mainvisualBG.png");
	overflow: hidden;
}
#mainvisual .mainCatch {
	position: absolute;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	z-index: 5;
}
.mainvisual01,
.mainvisual02,
.mainvisual03 {
	position: absolute;
	z-index: 3;
}
.mainvisual01 img,
.mainvisual02 img,
.mainvisual03 img {
	width: 500px;
	height: 275px;
	clip-path: polygon(100% 100%, 0% 75%, 0% 0%, 100% 25%);
}
.mainvisual01 img {
	object-position: 50% 45%;
}
.mainvisual02 img {
	object-position: 50% 90%;
}
.mainvisual03 img {
	object-position: 50% 35%;
}
.kitare {
	position: absolute;
	z-index: 4;
}
@media screen and  (min-width: 1440px) {
	.mainvisual01 {
		top: 150px;
		right: calc( 50% - 720px );
	}
	.mainvisual02 {
		top: 300px;
		left: 50%;
	}
	.mainvisual03 {
		top: 450px;
		left: calc( 50% - 720px );
	}
}
@media screen and  (max-width: 1440px) {
	.mainvisual01 {
		top: 150px;
		right: 0;
	}
	.mainvisual02 {
		top: 300px;
		left: 50%;
	}
	.mainvisual03 {
		top: 450px;
		left: 0;
	}
}
@media screen and  (min-width: 1200px) {
	.mainCatch {
		top: 150px;
		left: calc( 50% - 600px );
		font-size: 400%;
		line-height: 1.25;
	}
	.kitare {
		position: absolute;
		bottom: 50px;
		right: calc( 50% - 600px );
		width: 500px;
	}
}
@media screen and  (max-width: 1200px) {
	.mainCatch {
		top: 150px;
		left: 50px;
		font-size: 400%;
		line-height: 1.25;
	}
	.mainvisual01 {
		top: 150px;
	}
	.mainvisual02 {
		top: 300px;
	}
	.mainvisual03 {
		top: 450px;
	}
	.mainvisual01 img,
	.mainvisual02 img,
	.mainvisual03 img {
		width: 400px;
		height: 300px;
	}
	.kitare {
		position: absolute;
		bottom: 50px;
		right: 50px;
		width: 500px;
	}
}
@media screen and  (max-width: 768px) {
	.mainCatch {
		top: 225px;
		left: 35px;
		font-size: 350%;
	}
	.mainvisual01,
	.mainvisual02,
	.mainvisual03 {
		top: 425px;
		width: 33.34%;
	}
	.mainvisual01 {
		right: 0;
	}
	.mainvisual02 {
		left: 50%;
	}
	.mainvisual03 {
		left: 0;
	}
	.kitare {
		position: absolute;
		bottom: 35px;
		right: 35px;
		width: 430px;
	}
}
@media screen and  (max-width: 480px) {
	.mainCatch {
		top: 210px;
		left: 0;
		font-size: 275%;
		width: 100%;
		text-align: center;
	}
	.mainvisual01,
	.mainvisual02,
	.mainvisual03 {
		top: 385px;
	}
	.kitare {
		position: absolute;
		bottom: 35px;
		left: 50%;
		transform: translateX(-50%);
		transform-origin: top left;
		width: calc( 100% - 50px );
	}
}


/* --------------------------------------------------
アニメーション
-------------------------------------------------- */
#mainvisual .mainvisual01 {
	animation-name: fadeInMainvisual01;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: scale( 1.2 , 1.2 );
	opacity: 0;
}
@keyframes fadeInMainvisual01 {
	from {
	}
	to {
		filter: drop-shadow(40px -40px 0 rgba(215, 230, 240, 0.80));
		transform: scale( 1.0 , 1.0 );
		opacity: 1;
	}
}
#mainvisual .mainvisual02 {
	animation-name: fadeInMainvisual02;
	animation-delay: 0.5s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform:  translateX(-50%) scale( 1.2 , 1.2 );
	opacity: 0;
}
@keyframes fadeInMainvisual02 {
	from {
	}
	to {
		filter: drop-shadow(40px -40px 0 rgba(215, 230, 240, 0.80));
		transform: translateX(-50%) scale( 1.0 , 1.0 );
		opacity: 1;
	}
}
#mainvisual .mainvisual03 {
	animation-name: fadeInMainvisual03;
	animation-delay: 1.0s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: scale( 1.2 , 1.2 );
	opacity: 0;
}
@keyframes fadeInMainvisual03 {
	from {
	}
	to {
		filter: drop-shadow(40px -40px 0 rgba(215, 230, 240, 0.80));
		transform: scale( 1.0 , 1.0 );
		opacity: 1;
	}
}
#mainvisual .kitare {
	animation-name: fadeInKitare;
	animation-delay: 1.5s;
	animation-duration: 2.5s;
	animation-fill-mode: forwards;
	transform: scale( 1.0 , 1.0 );
	opacity: 0;
}
@keyframes fadeInKitare {
	from {
	}
	75% {
		transform: scale( 1.3 , 1.3 );
	}
	to {
		transform: scale( 1.0 , 1.0 );
		opacity: 1;
	}
}
@media screen and  (max-width: 480px) {
	#mainvisual .kitare {
		transform: scale( 1.0 , 1.0 ) translateX(-50%);
	}
	@keyframes fadeInKitare {
		from {
		}
		75% {
			transform: scale( 1.1 , 1.1 ) translateX(-50%);
		}
		to {
			transform: scale( 1.0 , 1.0 ) translateX(-50%);
			opacity: 1;
		}
	}
}
#mainvisual .mainCatch {
	animation-name: fadeInCatch;
	animation-delay: 2.5s;
	animation-duration: 3.0s;
	animation-fill-mode: forwards;
 	transform: scale( 2.0 , 2.0 ) translate( 50% , 50% );
 	filter: blur(10px);
	opacity: 0;
}
@keyframes fadeInCatch {
	from {
	}
	to {
		transform: scale( 1.0 , 1.0 ) translate( 0 , 0 );
		filter: blur(0);
		opacity: 1;
	}
}
.scrollarrow {
	animation-name: fadeInScrollarrow;
	animation-delay: 6.0s;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInScrollarrow {
	from {
	}
	to {
		opacity: 1;
	}
}


.is-animateFadeIn {
	animation-name: fadeInContainer;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateY(-50px);
	opacity: 0;
}
@keyframes fadeInContainer {
	from {
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.is-animateSlideInL {
	animation-name: slideInLeftContainer;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateX(-100%);
	opacity: 0;
}
@keyframes slideInLeftContainer {
	from {
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.is-animateSlideInR {
	animation-name: slideInRightContainer;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateX(100%);
	opacity: 0;
}
@keyframes slideInRightContainer {
	from {
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* --------------------------------------------------
メインコンテンツ
-------------------------------------------------- */
/* 構成要素 */
#contentsMain {
	position: relative;
	margin: 150px auto 0;
}
#contentsMain > :not(:last-child) {
	margin-bottom: 150px;
}
#contentsMain #youngstaff,
#contentsMain #work {
	padding: 150px 0;
	background: var( --other-color-01 );
}
#contentsMain #entry {
	padding: 150px 0;
	background: #f0f8ff;
}
#contentsMain .inner {
	margin: 0 auto;
	padding: 0 5%;
	max-width: 1000px;
}
#contentsMain .inner:has(.field),
#contentsMain .inner:has(.googlemap) {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 1001px) {
	#contentsMain .inner {
		margin: 0 auto;
		padding: 0 50px;
		width: 1000px;
	}
	#contentsMain .inner:has(.workstyle),
	#contentsMain .inner:has(.organization) {
		margin: 0 auto;
		padding: 0 50px;
		width: 100%;
		max-width: 1300px;
	}
	#contentsMain .inner:has(.event) {
		margin: 0 auto;
		padding: 0 50px;
		width: 100%;
		max-width: 1600px;
	}
}


/* MVV */
.mvv {
	margin: 0 auto;
	padding: 50px 100px;
	width: fit-content;
	background: var( --other-color-01 );
	border-radius: 16px;
}
.mvv li {
	text-align: center;
	color: var( --main-color );
	font-weight: 900;
	font-size: 150%;
}
.mvv li:not(:last-child) {
	margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
	.mvv {
		padding: 15px;
		width: 100%;
	}
}







/* 私たちのストーリー */
.mission {
	margin-bottom: 75px;
}
.mission {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 32px;
}
.mission p,
.mission figure {
	flex: 1;
}
.mission img {
	height: auto;
}
ul.field .title {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 225%;
}
ul.field .catchcopy {
	display: block;
	margin-bottom: 8px;
	line-height: 1.25;
	font-family: "Noto Sans JP", sans-serif ;
	font-optical-sizing: auto;
	font-size: 150%;
}


ul.field li:not(:last-child) {
	margin-bottom: 75px;
}
ul.field li dl {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
}
ul.field li:nth-child(odd) dl {
	flex-direction: row-reverse;
}
ul.field img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
ul.field li dt {
	padding: 0 32px;
	width: calc( 100% / 2 );
}
ul.field li dd {
	width: calc( 100% / 2 );
}

@media screen and (min-width: 1441px) {
	ul.field li:nth-child(even) dt {
		margin-left: calc(( 100% / 2 ) - 720px);
		width: 720px;
	}
	ul.field li:nth-child(odd) dt {
		margin-right: calc(( 100% / 2 ) - 720px);
		width: 720px;
	}
}
@media screen and (max-width: 768px) {
	.mission {
		flex-direction: column;
	}
	.mission figure {
		margin: 0 auto;
		width: 90%;
		max-width: 480px;
	}
	ul.field li:nth-child(odd) dl,
	ul.field li dl {
		flex-direction: column;
		gap: 32px;
	}
	ul.field li:not(:last-child) {
		margin-bottom: 75px;
	}
	ul.field li dt,
	ul.field li dd {
		width: 100%;
	}
	ul.field img {
		width: 100%;
		max-height: 400px;
		object-fit: cover;
	}
}



/* 先輩職員のストーリー */
p.attitude {
	margin: 0 auto 75px;
	padding: 25px 50px;
	width: fit-content;
	background: var( --other-color-01 );
	border-radius: 16px;
	text-align: center;
	color: var( --main-color );
	font-weight: 900;
	font-size: 150%;
}
ul.staff li:not(:last-child) {
	margin-bottom: 75px;
}
ul.staff li dl {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
}
ul.staff .title {
	display: block;
	margin-bottom: 25px;
	line-height: 1.25;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 150%;
}
ul.staff .classification {
	display: block;
	margin-bottom: 8px;
	line-height: 1.25;
	font-family: "Noto Sans JP", sans-serif ;
	font-optical-sizing: auto;
}
ul.staff figure {
	width: 240px;
}
@media screen and (max-width: 768px) {
	p.attitude {
		padding: 25px 25px;
		width: 100%;
	}
	ul.staff li dl {
		flex-direction: column-reverse;
		gap: 32px;
	}
	ul.staff .title,
	ul.staff .classification {
		text-align: center;
	}
	ul.staff figure {
		margin: 0 auto;
	}
}


/* 若手職員のストーリー */
.timetable thead {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(0px 0px 99.9% 99.9%);
	border: 0;
}
.timetable th {
	position: relative;
	width: 150px;
}
.timetable th::before {
	position: absolute;
	content: '';
	top: 0;
	left: 32.5px;
	width: 10px;
	height: 100%;
	background: var( --main-color );
}
.timetable th figure {
	position: absolute;
	top: 40px;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	gap: 25px;
}
.timetable tr:first-child th figure {
	top: 0;
}
.timetable tr:last-child th {
	height: 115px;
}
.timetable th img {
	width: 75px;
} 
.timetable th figcaption {
	padding: 5px 15px;
	line-height: 1.15;
	letter-spacing: 0.05em; 
	color: #ffffff;
	background: var( --main-color );
	white-space: nowrap;
}
.timetable dl {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 75px;
	padding: 32px;
	background: #ffffff;
	border-radius: 16px;
}
.timetable tr:first-child dl {
	margin-top: 35px;
}
.timetable .title {
	display: block;
	margin-bottom: 25px;
	line-height: 1.25;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 150%;
}
.timetable dd {
	width: 100%;
	max-width: 240px;
}


@media screen and (max-width: 768px) {
	.timetable th {
		width: 50px;
	}
	.timetable th figure {
		gap: 15px;
	}
	.timetable {
		width: 100%;
	}
	.timetable dl {
		flex-direction: column;
		gap: 16px;
		margin-top: 90px;
		padding: 32px 16px 16px;
	}
	.timetable tr:first-child dl {
		margin-top: 50px;
	}
	.timetable dd {
		margin: 0 auto;
		width: 100%;
		max-width: 255px;
	}
}


/* 執務のストーリー */
.introduction {
	margin-bottom: 50px;
}
.workstyle li {
	margin-bottom: 100px;
}
.workstyle dl {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	background: #ffffff;
}
.workstyle dt {
	position: relative;
	width: 46%;
}
.workstyle dd {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	padding: 16px;
	width: 54%;
}
.workstyle dt figure {
	height: 100%;
}
.workstyle .title {
	position: absolute;
	padding: 16px;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate( -50% , -50% );
	text-align: center;
	font-family: "Noto Sans JP", sans-serif ;
	font-optical-sizing: auto;
	font-weight: 500;
	font-size: 250%;
	color: #ffffff;
	background: rgba( 0 , 0 , 0 , 0.35 );
}
.workstyle .catchcopy {
	margin-bottom: 25px;
	line-height: 1.25;
	font-family: "Noto Sans JP", sans-serif ;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 150%;
}
.workstyle .bodycopy {
	margin-bottom: 25px;
}
.workstyle .images {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: end;
	gap: 16px;
	width: 100%;
}
.workstyle .images figure {
	max-width: 240px;
}


@media screen and (max-width: 768px) {
	.workstyle dl {
		flex-direction: column;
	}
	.workstyle dt {
		height: 300px;
		width: 100%;
	}
	.workstyle dd {
		width: 100%;
	}
	.workstyle .images {
		justify-content: center;
	}
	.workstyle .images figure {
		width: calc(( 100% - 16px ) / 2 );
	}
}


/* 組織概要 */
.organization {
	display: grid;
	gap: 32px;
	margin-bottom: 150px;
}

.organization .division {
	grid-row: 1 / 2;
	grid-column: 1 / 3;
	padding: 16px;
	width: 100%;
	border: 5px solid var( --other-color-02 );
}
.organization .jurisdiction {
	grid-row: 2 / 3;
	grid-column: 1 / 2;
	background: var( --other-color-02 );
}
.organization .posititon {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	background: var( --other-color-02 );
}
@media screen and (max-width: 768px) {
	.organization {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
}
.division h3 {
	margin-bottom: 16px;
	line-height: 1.15;
}
.division .specific {
	font-size: 66.667%;
	color: #000000;
	font-weight: 400;
}
.division div {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: start;
	gap: 16px;
}
.division div:not(:last-child) {
	margin-bottom: 8px;
}
.division dt {
	min-width: 100px;
	width:  calc(( 100% - 16px ) * 0.25 );
	max-width: 200px;
	text-align: center;
	background: var( --other-color-02 );
	border-radius: 8px;
}
.division dd {
	width: calc(( 100% - 16px ) * 0.75 );
}
.googlemap {
	width: 100%;
	height: 500px;
}

.accese {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: start;
	gap: 32px;
	margin-top: 50px;
}
.accese > li {
	padding: 16px;
	width: calc(( 100% - 64px ) / 3 );
	text-align: center;
	background: var( --other-color-02 );
	border-radius: 8px;
}
.accese .title {
	display: block;
	margin-bottom: 10px;
	line-height: 1.25;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 150%;
}
@media screen and (max-width: 768px) {
	.accese {
		flex-direction: column;
	}
	.accese li {
		width: 100%;
	}
}



/* 若手職員に聞いた！ */
.cham {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: start;
	gap: 32px;
}
.cham li {
	padding: 16px;
	width: calc(( 100% - 64px ) / 3 );
	background: var( --other-color-02 );
	border-radius: 8px;
}
.cham .title {
	display: block;
	margin-bottom: 10px;
	line-height: 1.25;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 150%;
}
.cham .adjustLine {
	line-height: 2.50;
}
@media screen and (max-width: 768px) {
	.cham {
		flex-direction: column;
	}
	.cham li {
		width: 100%;
	}
}

.faq li:not(:last-child) {
	margin-bottom: 32px;
}
.faq .question,
.faq .answer {
	padding-left: 2.5em;
	line-height: 1.35;
	font-weight: 500;
	font-size: 125%;
}
.faq .question {
	color: #ffffff;
	background: var( --main-color );
	border-radius: 8px 8px 0 0;
}
.faq .answer {
	color: var( --main-color );
}
.faq .question span,
.faq .answer span {
	margin-left: -1.5em;
	padding: 0 0.25em;
	font-family: "Noto Sans JP",  sans-serif ;
	font-weight: 900;
	font-size: 160%;
}

.traits li {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: start;
	gap: 32px;
}
.traits li:not(:last-child) {
	margin-bottom: 32px;
}
.traits .title {
	padding: 15px;
	width: 300px;
	color: #ffffff;
	font-weight: 600;
	background: var( --main-color );
	border-radius: 8px;
}
.traits .bodycopy {
	width: calc( 100% - 332px );
}
@media screen and (max-width: 768px) {
	.traits li {
		flex-direction: column;
		gap: 16px;
	}
	.traits .title,
	.traits .bodycopy {
		width: 100%;
	}
}
.actuallygo {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 32px;
}
.actuallygo li {
	padding: 16px;
	width: calc(( 100% - 64px ) / 3 );
	color: #ffffff;
	background: var( --main-color );
	border-radius: 8px;
}
.actuallygo .title {
	display: block;
	margin-bottom: 10px;
	line-height: 1.25;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 200%;
}
@media screen and (max-width: 768px) {
	.actuallygo {
		flex-direction: column;
	}
	.actuallygo li {
		width: 100%;
	}
}


/* エントリー */
#entry h2 {
	text-align: center;
}
#entry h3 {
	text-align: center;
	line-height: 1.25;
}
#entry .buttonLink {
	display: block;
	margin: 0 auto;
	padding: 1.0em;
	font-size: 175%;
	width: 100%;
	max-width: 600px;
}
.event {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: start;
	gap: 32px;
	margin-bottom: 100px;
}
.event li {
	padding: 15px;
	width: calc(( 100% - 128px ) / 5 );
	background: #ffffff;
	border-radius: 16px;
}
@media screen and (max-width: 1000px) {
	.event li {
		width: calc(( 100% - 64px ) / 3 );	
	}
}
@media screen and (max-width: 768px) {
	.event {
		flex-direction: column;
	}
	.event li {
		width: 100%;
	}
	#entry .buttonLink {
		font-size: 125%;
		width: 100%;
	}
}
/* --------------------------------------------------
フッター
-------------------------------------------------- */
footer {
	overflow:hidden;
	background: var( --main-color );
	color: #FFFFFF;
	text-align: center;
}
footer .inner {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1200px;
}
footer a.textLink {
	color: #FFFFFF;
}
p.sitename {
	margin: 50px auto 25px;
}
p.sitename span {
	display:block;
	font-weight: bold;
	line-height: 1.55;
}
p.sitename span.meti {
	font-size: 130%;
}
p.sitename span.safety-chugoku {
	font-size: 175%;
}
p.sitename img.recruitspecial {
	width: 250px;
}
p.copyright {
	margin: 50px calc(50% - 50vw) 0;
	padding: 0.50em 0;
	line-height: 1.25;
	color: #000000;
	background: var( --base-color );
}
p.copyright span {
	display: block;
	margin: 0 auto;
	padding: 0.50em 1.0em 0;
	width: 100%;
	max-width: 1000px;
	text-align: left;
	font-size: 85%;
}