@media print, screen and (max-width: 767px) {
	/* リセットCSS */
	body {
		color: #000;
		font-size: 12px;
		line-height: 18px;
		margin: 0 0 0 0;
		padding: 0;
		font-weight: 500;
		overflow-x: hidden;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
			"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック",
			"MS PGothic", sans-serif;
	}
	a {
		text-decoration: none;
		color: #000;
	}
	ol,
	ul {
		list-style: none;
	}
	ol,
	ul,
	p,
	h2,
	h3,
	h4,
	figure,
	img {
		margin: 0;
		padding: 0;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	.cms_career_wrap {
		margin-top: 65px;
	}
	.cms_career_wrap h1,
	.career_top_h1 {
		color: #aaa;
		background: none;
		position: fixed;
		top: 0;
		padding: 0 5px !important;
		font-size: 8px;
	}
	.career_wrap {
		/* RHSのh1のCSSを打ち消す */
		& h1 {
			padding: 0;
		}
		/* ヘッダー header */
		header#career_h {
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			height: auto;
			box-sizing: border-box;
			padding: 5px 0 5px 10px;
			background: rgba(255, 255, 255, 0.9);
			z-index: 10;
			position: fixed;
			top: 0;
			left: 0;
			> a {
				display: block;
				width: 65%;
			}
			& img {
				display: block;
				max-width: 100%;
			}
			> div {
				.drawer_hidden {
					display: none;
				}
				.drawer_open {
					display: flex;
					justify-content: center;
					align-items: center;
					height: 50px;
					width: 50px;
					position: relative;
					z-index: 100;
					& span,
					& span:before,
					& span:after {
						content: "";
						display: block;
						height: 2px;
						width: 18px;
						background: #333;
						transition: 0.3s;
						position: absolute;
					}
					& span:before {
						bottom: 6px;
					}
					& span:after {
						top: 6px;
					}
				}
				& div.career_h_nav {
					width: 70%;
					height: 100%;
					box-sizing: border-box;
					padding: 40px 0 0 0;
					position: fixed;
					top: 0;
					left: 100%;
					z-index: 99;
					background: #f4f4f4;
					border-top: 5px solid;
					border-image: linear-gradient(
							to right,
							#fd6f49 0%,
							#ffb247 100%
						)
						1;
					transition: 0.3s;
					& a {
						letter-spacing: 0.05em;
					}
					/* ナビゲーション */
					& ul {
						width: 90%;
						margin: 0 auto 25px auto;
						& a {
							display: block;
							padding: 15px 0;
							border-bottom: 1px solid #ccc;
							font-size: 13px;
							line-height: 20px;
							position: relative;
						}
					}
					/* エントリーボタン */
					> a {
						display: block;
						width: 170px;
						margin: 0 auto;
						background-image: linear-gradient(
							300deg,
							#ffb247,
							#fd6f49
						);
						font-size: 14px;
						line-height: 60px;
						color: #fff;
						font-weight: bold;
						text-align: center;
					}
				}
				#drawer_input:checked {
					~ div.career_h_nav {
						left: 30%;
					}
					~ .drawer_open span {
						background: rgba(255, 255, 255, 0);
						&:before {
							bottom: 0;
							transform: rotate(45deg);
						}
						&:after {
							top: 0;
							transform: rotate(-45deg);
						}
					}
				}
			}
		}
		/* フッター footer */
		footer#career_f {
			width: 100%;
			margin: 0;
			padding: 100px 0 20px 0;
			position: relative;
			z-index: 1;
			background: #f5f5f5;
			&:before {
				content: "";
				width: 100%;
				height: 120px;
				background: url(../img/career/footer/f_staff_img.webp);
				background-repeat: no-repeat;
				background-size: cover;
				background-position: center;
				position: absolute;
				top: 0;
				left: 0;
				z-index: -1;
			}
			> div {
				width: 90%;
				margin: 0 auto;
				.career_f_btn {
					display: flex;
					align-items: center;
					gap: 0 10px;
					margin: 0 0 30px 0;
					padding: 0 0 0 20px;
					background-image: linear-gradient(300deg, #ffb247, #fd6f49);
					font-size: clamp(20px, 5.5vw, 22px);
					line-height: 70px;
					color: #fff;
					font-weight: bold;
					position: relative;
					&:after {
						content: "";
						width: 30px;
						height: 1px;
						margin: auto;
						background: #fff;
						position: absolute;
						top: 0;
						right: 0;
						bottom: 0;
					}
					> span {
						font-size: clamp(13px, 3.5vw, 15px);
						line-height: 18px;
						letter-spacing: 0.1em;
					}
					&:hover {
						background-image: linear-gradient(
							300deg,
							#fd6f49,
							#ffb247
						);
						transition: 0.5s;
					}
				}
				.career_f_logo {
					margin: 0 0 30px 0;
					> a {
						display: block;
						width: 55%;
						margin: 0 auto;
					}
					& img {
						display: block;
						max-width: 100%;
					}
				}
				> nav {
					margin: 0 0 20px 0;
					> ul {
						display: flex;
						flex-wrap: wrap;
						gap: 10px 0;
						padding: 20px 15px;
						border-top: 1px solid #aaaaaa;
						border-bottom: 1px solid #aaaaaa;
						& li {
							width: calc((100% - 30px) / 2);
							display: flex;
							align-items: center;
							gap: 0 12px;
							&:before {
								content: "";
								width: 7px;
								height: 1px;
								background: #000;
							}
							& a {
								font-size: 13px;
								line-height: 20px;
								font-weight: bold;
								letter-spacing: 0.05em;
								position: relative;
							}
						}
					}
				}
				.career_f_other {
					display: flex;
					align-items: center;
					justify-content: center;
					gap: 0 30px;
					margin: 0 0 20px 0;
					> li {
						display: flex;
						align-items: center;
						gap: 0 6px;
						font-size: 14px;
						line-height: 20px;
						letter-spacing: 0.05em;
						&:after {
							content: "";
							width: 10px;
							height: 10px;
							background: url(../img/career/footer/icon_link.png);
							background-repeat: no-repeat;
							background-size: cover;
						}
					}
				}
				.career_f_copy {
					font-size: 12px;
					line-height: 20px;
					letter-spacing: 0.05em;
					text-align: center;
					color: #000;
				}
			}
		}
		/* コンテンツ共通スタイル */
		.font_gradation {
			background: linear-gradient(300deg, #ffb247 34%, #fd6f49);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			font-weight: bold;
			width: fit-content;
		}
		.font_sanserif {
			font-family: -apple-system, BlinkMacSystemFont, Century Gothic,
				CenturyGothic, AppleGothic, Futura, sans-serif;
		}
		.t_more_btn {
			display: block;
			width: 170px;
			box-sizing: border-box;
			margin: 0 auto;
			padding: 15px 0 15px 0;
			background-image: linear-gradient(300deg, #ffb247, #fd6f49);
			font-size: 14px;
			line-height: 17px;
			color: #fff;
			font-weight: bold;
			letter-spacing: 0.05em;
			text-align: center;
			font-feature-settings: "palt";
			position: relative;
			transition: all 0.2s;
			&:after {
				content: "";
				display: block;
				width: 16px;
				height: 2px;
				margin: auto;
				background: #fff;
				position: absolute;
				top: 0;
				right: 0;
				bottom: 0;
			}
		}
		/* 内部ページ ヘッダー分開始点調整 */
		.career_conts {
			padding-top: 65px;
		}
		/* 内部ページ メイン画像共通スタイル */
		.career_conts_main {
			width: 100%;
			margin: 0 0 15px 0;
			padding: 30px 0;
			background-repeat: no-repeat;
			background-size: cover;
			> div {
				width: 90%;
				margin: 0 auto;
				letter-spacing: 0.05em;
				> h1 {
					margin: 0 0 5px 0;
					font-size: clamp(27px, 7.5vw, 30px);
					line-height: 40px;
					color: #003f73;
				}
				> p {
					font-size: 13px;
					line-height: 18px;
					color: #003f73;
				}
			}
		}
		/* 内部ページ ぱんくず */
		.career_pan_wrap {
			display: flex;
			align-items: center;
			gap: 0 10px;
			width: 90%;
			margin: 0 auto 30px auto;
			> div:not(:last-of-type) {
				display: flex;
				align-items: center;
				gap: 0 10px;
				&:after {
					content: ">";
				}
			}
			& a,
			& span {
				font-size: clamp(13px, 3.5vw, 15px);
				line-height: 18px;
			}
		}
		/* 内部ページ H2共通スタイル */
		.career_conts_tl {
			margin: 0 0 20px 0;
			padding: 0 0 15px 0;
			border-bottom: 1px solid #eeeeee;
			font-size: clamp(22px, 5.9vw, 24px);
			line-height: 30px;
			position: relative;
			&:before {
				content: "";
				width: 50px;
				height: 1px;
				background: linear-gradient(
					300deg,
					rgb(255, 178, 71) 80%,
					rgb(253, 111, 73)
				);
				position: absolute;
				left: 0;
				bottom: 0;
			}
		}
		.smart_off {
			display: none !important;
		}
		/* 採用トップページ /career/ */
		#career_t {
			/* トップページ用メイン画像 */
			.career_t_main {
				width: 100%;
				margin: 65px 0;
				padding: 220px 0 40px 0;
				background: url(../career/img/main_bg.png);
				background-repeat: no-repeat;
				background-size: cover;
				background-position: center;
				> div {
					width: 90%;
					margin: 0 auto;
					z-index: 0;
					position: relative;
					&::after {
						content: "";
						display: block;
						background: url(../career/img/main_txt.png);
						background-size: contain;
						background-repeat: no-repeat;
						background-position: bottom;
						width: 80%;
						height: 100px;
						position: absolute;
						right: -6%;
						bottom: -42px;
						z-index: -1;
					}
					& .career_t_main_txt {
						display: flex;
						flex-direction: column;
						align-items: flex-start;
						gap: 5px 0;
						margin: 0 0 10px 0;
						background: none;
						& span {
							display: inline-block;
							padding: 0px 8px;
							background: #fff;
							font-size: 24px;
							line-height: 40px;
							font-weight: bold;
							color: #fff;
							font-feature-settings: "palt";
							background-image: linear-gradient(
								300deg,
								#ffb247,
								#fd6f49
							);
						}
						& span:first-child {
							font-size: 16px;
							line-height: 34px;
						}
					}
					& p {
						font-size: 10px;
						line-height: 1;
						color: #fff;
						font-weight: bold;
						letter-spacing: 0.05em;
						font-feature-settings: "palt";
						font-weight: 500;
					}
				}
			}
			/* トップページ用タイトルスタイル */
			.career_t_tl {
				font-feature-settings: "palt";
				> div {
					& p {
						margin: 0 0 10px 0;
						font-size: clamp(13px, 3.5vw, 15px);
						line-height: 18px;
						letter-spacing: 0.2em;
					}
					& h2 {
						font-size: clamp(24px, 6.5vw, 27px);
						line-height: 36px;
						color: #003f73;
						letter-spacing: 0.1em;
					}
					.h2_center {
						margin: 0 auto;
					}
					.h2_left {
						text-align: left;
					}
				}
				> p {
					margin-top: 15px;
					font-size: clamp(12px, 3.2vw, 14px);
					line-height: 24px;
					letter-spacing: 0.05em;
				}
			}
			> main {
				/* 挨拶 */
				#career_t_gr {
					width: 90%;
					margin: 0 auto 60px auto;
					text-align: center;
					background: url(../img/career/top/top_message_bg.webp);
					background-repeat: no-repeat;
					background-position: top;
					background-size: 200%;
					& h2 {
						margin: 0 0 20px 0;
						font-size: clamp(22px, 6.2vw, 25px);
						line-height: 36px;
						color: #003f73;
						letter-spacing: 0.1em;
						font-feature-settings: "palt";
					}
					.h2_small {
						font-size: 23px;
						width: 100%;
					}
					& p {
						margin: 0 0 40px 0;
						font-size: 16px;
						line-height: 28px;
						letter-spacing: 0.2em;
						font-feature-settings: "palt";
					}
				}
				/* 会社を知る */
				#career_t_ab {
					width: 100%;
					padding: 40px 0 50px 0;
					background: #f5f5f5;
					background-image: url(../img/career/top/top_about_bg.webp);
					background-repeat: no-repeat;
					background-position: top;
					background-size: 156%;
					.career_t_tl {
						margin: 0 0 25px 0;
						text-align: center;
					}
					> ul {
						display: flex;
						flex-wrap: wrap;
						justify-content: center;
						gap: 10px 10px;
						width: 90%;
						margin: 0 auto;
						> li {
							width: calc((100% - 10px) / 2);
							& a {
								display: block;
								overflow: hidden;
								position: relative;
								& img {
									width: 100%;
									height: 240px !important;
									object-fit: cover;
								}
								& p {
									display: flex;
									align-items: center;
									justify-content: space-between;
									width: 70%;
									box-sizing: border-box;
									padding: 0 0 0 5px;
									color: #fff;
									background-image: linear-gradient(
										300deg,
										#ffb247,
										#fd6f49
									);
									font-size: clamp(12px, 3.2vw, 14px);
									line-height: 36px;
									font-weight: bold;
									position: absolute;
									bottom: 0;
									left: 0;
									&:after {
										content: "";
										display: block;
										width: 10px;
										height: 1px;
										background: #fff;
									}
								}
							}
						}
					}
				}
				/* ループアニメーション */
				.career_t_loop {
					display: flex;
					overflow: hidden;
					& img {
						max-width: 1000px;
					}
					& img:nth-child(1) {
						animation: loop 120s linear -60s infinite;
					}
					& img:nth-child(2) {
						animation: loop2 120s linear infinite;
					}
				}
				/* 選ばれる理由 */
				#career_t_re {
					width: 100%;
					padding: 50px 0 50px 0;
					position: relative;
					z-index: 1;
					&:before {
						content: "";
						display: block;
						width: 80%;
						height: 100%;
						background: url(../img/career/top/sky_bg.webp);
						background-repeat: no-repeat;
						background-size: cover;
						background-position: left center;
						position: absolute;
						top: 0;
						right: 0;
						z-index: -1;
					}
					> div {
						width: 90%;
						margin: 0 auto;
						.career_t_tl {
							margin: 0 0 25px 0;
							background: url(../img/career/top/top_reason_bg_sp.webp);
							background-repeat: no-repeat;
							background-size: 56%;
							background-position: top left;
							h2 {
								line-height: 34px;
							}
						}
						> ul {
							display: flex;
							flex-wrap: wrap;
							justify-content: center;
							gap: 10px 10px;
							& li {
								width: calc((100% - 10px) / 2);
								& img {
									width: 100%;
									height: 140px !important;
									object-fit: cover;
								}
								& p {
									display: flex;
									justify-content: center;
									align-items: center;
									height: calc(100% - 140px);
									box-sizing: border-box;
									padding: 15px 0;
									background: #fff;
									font-size: clamp(12px, 3.2vw, 14px);
									line-height: 18px;
									text-align: center;
								}
							}
						}
					}
				}
				/* 福利厚生・待遇 */
				#career_t_wel {
					width: 100%;
					margin: 0 0 60px 0;
					padding: 50px 0 20px 0;
					background: #f5f5f5;
					.career_t_tl {
						margin: 0 0 20px 0;
						background-image: url(../img/career/top/top_welfare_bg_sp.webp);
						background-repeat: no-repeat;
						background-position: top center;
						background-size: 56%;

						p {
							text-align: center;
						}
					}
					> div {
						width: 90%;
						margin: 0 auto;
						> div {
							& ul {
								display: flex;
								flex-wrap: wrap;
								gap: 8px;
								box-sizing: border-box;
								margin: 0 0 15px 0;
								padding: 20px;
								background: #fff;
								& li {
									font-size: clamp(12px, 3.2vw, 14px);
									line-height: 30px;
									letter-spacing: 0.1em;
									font-feature-settings: "palt";
									&:not(:last-child) {
										padding: 0 10px;
										color: #fff;
										background: #333333;
										border-radius: 2px;
									}
									&:last-child {
										font-weight: bold;
									}
								}
							}
						}
						& img {
							width: 100%;
							height: 200px;
							object-fit: cover;
						}
					}
				}
				/* 募集中の求人一覧 */
				#career_t_en {
					margin: 0 0 50px 0;
					.career_t_tl {
						margin: 0 0 20px 0;
						text-align: center;
						> div {
							background-image: url(../img/career/top/top_recruit_bg.webp);
							background-repeat: no-repeat;
							background-position: top;
							background-size: 218%;
							h2 {
								line-height: 57px;
							}
						}
					}
				}
				.iframe {
					width: 100%;
					height: 400px;
				}
			}
		}
		/* 教育制度 /career/education/ */
		#career_edu {
			.career_conts_main {
				background-image: url(../img/career/education/main_bg_sp.webp);
			}
			/* 教育研修制度 */
			#career_edu_tra {
				width: 90%;
				margin: 0 auto 40px auto;
				& h3 {
					margin: 0 0 15px 0;
					font-size: clamp(16px, 4.3vw, 18px);
					line-height: 28px;
					letter-spacing: 0.05em;
				}
				> p {
					margin: 0 0 30px 0;
					font-size: clamp(13px, 3.5vw, 15px);
					line-height: 24px;
					font-weight: normal;
				}
				& ul {
					display: flex;
					flex-wrap: wrap;
					align-items: center;
					justify-content: center;
					gap: 0 15px;
					> li {
						box-sizing: border-box;
						padding: 4px;
						border-radius: 50%;
						border: 1px solid #fd6f49;
						> div {
							width: 120px;
							height: 120px;
							display: flex;
							flex-direction: column;
							align-items: center;
							justify-content: center;
							background-image: linear-gradient(
								300deg,
								#ffb247,
								#fd6f49
							);
							border-radius: 50%;
							text-align: center;
							font-size: 18px;
							line-height: 26px;
							color: #fff;
							font-weight: bold;
							.career_edu_tra_b {
								font-size: 26px;
								line-height: 36px;
							}
							.career_edu_tra_s {
								font-size: 13px;
								line-height: 18px;
							}
						}
					}
				}
			}
			/* 不安 */
			#career_edu_wo {
				width: 100%;
				margin: 0 0 50px 0;
				padding: 40px 0 35px 0;
				background: #f5f5f5;
				text-align: center;
				> ul {
					display: flex;
					flex-wrap: wrap;
					justify-content: center;
					gap: 10px;
					width: 90%;
					margin: 0 auto 25px auto;
					> li {
						display: flex;
						flex-direction: column;
						align-items: center;
						justify-content: center;
						width: calc((100% - 10px) / 2);
						min-height: 65px;
						box-sizing: border-box;
						padding: 10px 10px;
						background: #fff;
						border: 1px solid #cccccc;
						border-radius: 5px;
						font-size: clamp(13px, 3.5vw, 15px);
						line-height: 20px;
						font-weight: bold;
					}
				}
				> p {
					font-size: clamp(13px, 3.5vw, 15px);
					line-height: 24px;
				}
			}
			/* 充実した研修内容 */
			#career_edu_exam {
				width: 90%;
				margin: 0 auto 60px auto;
				& ul {
					> li {
						&:not(:last-child) {
							margin: 0 0 40px 0;
						}
						> img {
							width: 100%;
							height: 180px;
							object-fit: cover;
							margin: 0 0 15px 0;
						}
						> div {
							& h3 {
								display: inline-block;
								margin: 0 0 10px 0;
								padding: 0 10px;
								background-image: linear-gradient(
									300deg,
									#ffb247,
									#fd6f49
								);
								font-size: clamp(16px, 4.3vw, 18px);
								font-weight: bold;
								line-height: 28px;
								color: #fff;
							}
							& p {
								font-size: clamp(13px, 3.5vw, 15px);
								line-height: 24px;
							}
						}
					}
				}
			}
			/* その他の教育内容 */
			#career_edu_oth {
				width: 90%;
				margin: 0 auto 60px auto;
				> ul {
					> li {
						&:not(:last-child) {
							margin: 0 0 20px 0;
						}
						& h3 {
							display: inline-block;
							margin: 0 0 10px 0;
							padding: 0 10px;
							background-image: linear-gradient(
								300deg,
								#ffb247,
								#fd6f49
							);
							font-size: clamp(16px, 4.3vw, 18px);
							font-weight: bold;
							line-height: 28px;
							color: #fff;
						}
						& p {
							font-size: clamp(13px, 3.5vw, 15px);
							line-height: 24px;
						}
					}
				}
			}
		}
		/* 社内活動 /career/event/ */
		#career_event {
			.career_conts_main {
				background-image: url(../img/career/event/main_bg_sp.webp);
			}
			> main {
				width: 90%;
				margin: 0 auto;
				.career_ev_gr {
					margin: 0 0 30px 0;
					font-size: 15px;
					line-height: 28px;
					text-align: center;
				}
				#career_ev_exam {
					margin: 0 0 60px 0;
					& div {
						&:not(:last-of-type) {
							margin: 20px 0 50px 0;
						}
						& h3 {
							display: inline-block;
							margin: 0 0 10px 0;
							font-size: clamp(16px, 4.3vw, 18px);
							line-height: 28px;
							color: #333333;
						}
						& p {
							margin: 0 0 15px 0;
							font-size: clamp(13px, 3.5vw, 15px);
							line-height: 24px;
						}
						& ul {
							display: flex;
							flex-wrap: wrap;
							justify-content: center;
							gap: 10px 10px;
							> li {
								width: calc((100% - 10px) / 2);
								> img {
									width: 100%;
									height: 160px;
									object-fit: cover;
								}
							}
						}
					}
				}
				#career_ev_wel {
					margin: 0 0 80px 0;
					& ul {
						display: flex;
						flex-wrap: wrap;
						justify-content: center;
						gap: 20px 10px;
						> li {
							width: calc((100% - 10px) / 2);
							> img {
								width: 100%;
								height: 120px;
								object-fit: cover;
							}
							> h3 {
								display: flex;
								align-items: center;
								justify-content: center;
								height: 50px;
								margin: 0 0 10px 0;
								padding: 0 5px;
								background: #f5f5f5;
								font-size: clamp(13px, 3.5vw, 15px);
								font-weight: bold;
								line-height: 18px;
								color: #333333;
							}
							> p {
								font-size: clamp(11px, 3vw, 13px);
								line-height: 18px;
							}
						}
					}
				}
			}
		}
		/* キャリアパス /career/plan/ */
		#career_plan {
			.career_conts_main {
				background-image: url(../img/career/plan/main_bg_sp.webp);
			}
			> main {
				width: 90%;
				margin: 0 auto;
				.career_plan_txt {
					margin: 0 0 30px 0;
					font-size: clamp(13px, 3.5vw, 15px);
					line-height: 24px;
					font-weight: normal;
				}
				.career_plan_figure {
					display: block;
					margin: 0 0 40px 0;
					& img {
						display: block;
						max-width: 100%;
						height: auto;
					}
				}
				.career_plan_ab {
					margin: 0 0 30px 0;
					& h3 {
						margin: 0 0 15px 0;
						font-size: clamp(16px, 4.3vw, 18px);
						line-height: 28px;
						letter-spacing: 0.05em;
					}
					& p {
						font-size: clamp(13px, 3.5vw, 15px);
						line-height: 24px;
						font-weight: normal;
					}
				}
				> ul {
					display: flex;
					justify-content: center;
					flex-wrap: wrap;
					gap: 30px 10px;
					margin: 0 0 60px 0;
					& li {
						width: calc((100% - 10px) / 2);
						& a {
							display: block;
							padding: 0 0 10px 0;
							position: relative;
							&:after {
								content: "";
								display: block;
								width: calc(100% - 15px);
								height: 1px;
								background: #eeeeee;
								position: absolute;
								bottom: 0;
								left: 0;
							}
							& div {
								width: 100%;
								height: 140px;
								margin: 0 0 10px 0;
								overflow: hidden;
								> img {
									width: 100%;
									height: 100%;
									object-fit: cover;
								}
							}
							& p {
								font-size: clamp(13px, 3.5vw, 15px);
								line-height: 24px;
							}
						}
					}
				}
			}
		}
		/* 業務内容 /career/work/ */
		#career_work {
			.career_conts_main {
				background-image: url(../img/career/work/main_bg_sp.webp);
			}
			> main {
				width: 90%;
				margin: 0 auto 70px auto;
				> nav {
					margin: 0 0 50px 0;
					& ul {
						display: flex;
						flex-wrap: wrap;
						justify-content: center;
						gap: 10px;
						& li {
							width: calc((100% - 10px) / 2);
							& a {
								display: block;
								padding: 20px 0 15px 0;
								background-repeat: no-repeat;
								background-size: cover;
								text-align: center;
								position: relative;
								&:before {
									content: "";
									display: block;
									width: 100%;
									height: 100%;
									background: #333333;
									opacity: 0.6;
									position: absolute;
									top: 0;
									left: 0;
								}
								.career_work_nav_txt {
									display: flex;
									justify-content: center;
									align-items: center;
									height: 48px;
									margin: 0 0 10px 0;
									font-size: clamp(16px, 4.3vw, 18px);
									line-height: 24px;
									color: #fff;
									position: relative;
									z-index: 2;
								}
								.career_work_nav_btn {
									width: 80%;
									max-width: 150px;
									margin: 0 auto;
									padding: 5px 0;
									border: 1px solid #ffffff;
									border-radius: 20px;
									color: #ffffff;
									font-size: clamp(11px, 3vw, 13px);
									line-height: 20px;
									font-weight: bold;
									position: relative;
									z-index: 2;
								}
							}
							&:nth-child(1) a {
								background-image: url(../img/career/work/nav_bgimg02.webp);
							}
							&:nth-child(2) a {
								background-image: url(../img/career/work/nav_menu_img02.webp);
							}
							&:nth-child(3) a {
								background-image: url(../img/career/work/nav_menu_img03.webp);
							}
							&:nth-child(4) a {
								background-image: url(../img/career/work/nav_menu_img04.webp);
							}
							&:nth-child(5) a {
								background-image: url(../img/career/work/nav_menu_img05.webp);
							}
						}
					}
				}
				.career_work_box {
					&:not(:last-of-type) {
						margin: 0 0 50px 0;
					}
					> div {
						margin: 0 0 20px 0;
						> div {
							display: flex;
							align-items: baseline;
							gap: 0 15px;
							margin: 0 0 20px 0;
							& h2 {
								font-size: clamp(22px, 5.9vw, 24px);
								line-height: 30px;
								color: #003f73;
							}
							& p {
								font-size: clamp(13px, 3.5vw, 15px);
								line-height: 24px;
								color: #003f73;
								font-weight: bold;
							}
						}
						> h3 {
							margin: 0 0 15px 0;
							font-size: clamp(16px, 4.3vw, 18px);
							line-height: 28px;
							letter-spacing: 0.05em;
						}
						> p {
							font-size: clamp(13px, 3.5vw, 15px);
							line-height: 24px;
							font-weight: normal;
						}
					}
					& img {
						display: block;
						max-width: 100%;
						height: auto;
					}
				}
			}
		}
		/* 私たちについて /career/intro/ */
		#career_intro {
			.career_conts_main {
				background-image: url(../img/career/intro/main_bg_sp.webp);
			}
			> main {
				.career_int_gr {
					max-width: 90%;
					margin: 0 auto 50px auto;
					background-image: url(../img/career/intro/gr_bg_eng.webp);
					background-repeat: no-repeat;
					background-position: center;
					background-size: 100% auto;
					font-size: clamp(15px, 4.1vw, 17px);
					line-height: 28px;
					font-weight: normal;
					text-align: center;
				}
				#career_int_wo {
					width: 90%;
					margin: 0 auto 50px auto;
					> ul {
						display: flex;
						flex-wrap: wrap;
						justify-content: center;
						gap: 10px;
						> li {
							width: calc((100% - 10px) / 2);
							> a {
								display: block;
								height: 100%;
								box-sizing: border-box;
								padding: 10px 10px 15px 10px;
								background: #f6f6f6;
								border-radius: 3px;
								& h3 {
									margin: 0 0 5px 0;
									font-size: clamp(15px, 4.1vw, 17px);
									line-height: 28px;
									font-weight: bold;
									text-align: center;
								}
								& div {
									height: 100px;
									margin: 0 0 10px 0;
									overflow: hidden;
									& img {
										display: block;
										width: 100%;
										height: 100px;
										object-fit: cover;
									}
								}
								.career_int_wo_txt {
									height: 53px;
									margin: 0 0 10px 0;
									font-size: clamp(12px, 3.2vw, 14px);
									line-height: 18px;
								}
								.career_int_wo_more {
									width: 80%;
									max-width: 200px;
									margin: 0 auto;
									background-image: linear-gradient(
										300deg,
										#ffb247,
										#fd6f49
									);
									border-radius: 3px;
									font-size: 12px;
									line-height: 30px;
									color: #fff;
									text-align: center;
								}
							}
						}
					}
				}
				#career_int_com {
					padding: 40px 0 40px 0;
					background: #f5f5f5;
					.career_int_com_tl {
						margin: 0 0 20px 0;
						text-align: center;
						& h2 {
							margin: 0 auto 10px auto;
							font-size: clamp(20px, 5.5vw, 22px);
							line-height: 30px;
							font-weight: bold;
							letter-spacing: 0.05em;
						}
						& p {
							font-size: clamp(12px, 3.2vw, 14px);
							line-height: 18px;
							color: #003f73;
							font-weight: bold;
						}
					}
					.career_int_com_tbl {
						width: 90%;
						box-sizing: border-box;
						margin: 0 auto;
						padding: 10px 20px;
						background: #fff;
						& ul {
							> li {
								display: flex;
								align-items: center;
								gap: 0 10px;
								min-height: 75px;
								box-sizing: border-box;
								padding: 15px 0;
								&:not(:last-child) {
									border-bottom: 1px solid #eeeeee;
								}
								& p {
									font-size: clamp(12px, 3.2vw, 14px);
									line-height: 18px;
								}
								.career_int_com_item {
									flex-shrink: 0;
									width: 20%;
									text-align: center;
								}
								& a.career_int_com_txt {
									max-width: calc(80% - 10px);
									overflow-wrap: break-word;
									text-decoration: underline;
									&:hover {
										text-decoration: none;
									}
								}
							}
						}
					}
				}
			}
		}
	}
	/* ループアニメーション　keyframe */
	/* 1枚で書き出した画像を2つ並べてループさせています */
	@keyframes loop {
		0% {
			transform: translateX(100%);
		}
		to {
			transform: translateX(-100%);
		}
	}
	@keyframes loop2 {
		0% {
			transform: translateX(0);
		}
		to {
			transform: translateX(-200%);
		}
	}
	/* 採用トップページ 求人情報CMS用CSS */
	.career_t_en_swiper {
		.career_t_en_cms {
			> li {
				width: 280px !important;
				& a {
					display: block;
					padding: 20px 15px 30px 15px;
					border: 1px solid #eeeeee;
					font-family: -apple-system, BlinkMacSystemFont, "Arial",
						"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro",
						"Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
						sans-serif;
					.car_t_en_date {
						margin: 0 0 8px 0;
						font-size: 11px;
						line-height: 16px;
						font-weight: bold;
						letter-spacing: 0.05em;
					}
					.car_t_en_name {
						margin: 0 0 15px 0;
						font-size: 16px;
						line-height: 24px;
						font-weight: bold;
						letter-spacing: 0.03em;
						display: -webkit-box;
						display: -ms-flexbox;
						-webkit-box-orient: vertical;
						-ms-flex-direction: column;
						-webkit-line-clamp: 1;
						overflow: hidden;
						height: 24px;
						text-align: center;
					}
					.car_t_en_img img {
						margin-bottom: 20px;
						width: 100%;
						height: 140px;
						object-fit: cover;
					}
					> ul {
						margin: 0 0 20px 0;
						& li {
							display: flex;
							align-items: center;
							gap: 0 5px;
							padding: 10px 0;
							&:not(:last-of-type) {
								border-bottom: 1px solid #eeeeee;
							}
							& p {
								font-size: 12px;
								line-height: 18px;
								letter-spacing: 0.05em;
							}
							.car_t_en_item {
								width: 60px;
								font-weight: bold;
							}
							.car_t_en_txt {
								width: 180px;
								display: -webkit-box;
								display: -ms-flexbox;
								-webkit-box-orient: vertical;
								-ms-flex-direction: column;
								-webkit-line-clamp: 1;
								overflow: hidden;
							}
						}
					}
					.car_t_btn {
						display: block;
						width: 150px;
						box-sizing: border-box;
						margin: 0 auto;
						padding: 10px 0 10px 0;
						background-image: linear-gradient(
							300deg,
							#ffb247,
							#fd6f49
						);
						font-size: 11px;
						line-height: 17px;
						color: #fff;
						font-weight: bold;
						text-align: center;
						letter-spacing: 0.05em;
						font-feature-settings: "palt";
						position: relative;
						transition: all 0.2s;
						&:after {
							content: "";
							display: block;
							width: 16px;
							height: 2px;
							margin: auto;
							background: #fff;
							position: absolute;
							top: 0;
							right: 0;
							bottom: 0;
						}
					}
				}
			}
		}
		.career_t_en_swiper_page {
			display: flex;
			justify-content: center;
			margin-top: 15px;
			& span {
				width: 10px;
				height: 10px;
				background: #ccc;
				opacity: 1;
				&[class*="swiper-pagination-bullet-active"] {
					background: #fd6f49;
				}
			}
		}
	}
}
