@charset "UTF-8";


.r-index {
	position: relative;
	min-height: 560px;
	margin-bottom: 150px;
}
.r-index .bg-image-wrap {
	background: #F5F5F5;
	position: absolute;
	height: 560px;
	width: 100%;
	top: 0;
	left: 0;
}
.r-index .bg-image {
	position: relative;
	width: 60%;
	left: 40%;
	height: 560px;
}
.r-index .bg-image img {
	object-fit: cover;
	height: 100%;
}
.index-content {
	position: relative;
	background: #FFF;
	min-height: 300px;
	min-width: 500px;
	width: 50%;
	top: 80px;
	box-sizing: border-box;
	padding: 40px 40px;
	filter: drop-shadow(0px 0px 8px rgba(191, 199, 211, 0.5));
}
.index-content:before {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 8px 8px 0 0;
	border-color: #E3001B transparent transparent  transparent;
	transform: scale(1);
	transform-origin: right bottom;
	left: 3px;
	top: 3px;
}
.index-content .ttl {
	font-size: 32px;
	font-weight: 600;
	color: #001E50;
	margin-bottom: 10px;
}
.index-content .ttl:first-letter {
	color: var(--main-color);
}
.index-content .sub-ttl {
	font-size: 20px;
	font-weight: 600;
	color: var(--main-color);
	margin-bottom: 10px;
}
.index-content ul {
	margin: 30px 0 0;
}
.index-content ul li {
	margin-bottom: 10px;
	height: 72px;
	background: #001E50;
	position: relative;
	transition: all .4s;
}
.index-content ul li:hover {
	background: #0E326F;
}
.index-content ul li p {
	color: #FFF;
	font-weight: 600;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.index-content ul li:before {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 0 8px 8px;
	border-color: transparent transparent #E3001B transparent;
	transform: scale(1);
	transform-origin: right bottom;
	right: 3px;
	bottom: 3px;
	transition: all .8s;
}
.index-content ul li:hover:before {
	animation: reveal .8s ease-in-out 0s forwards;
}



@media screen and (max-width: 767px) {
	.r-index {
		position: relative;
		min-height: 200px;
		margin-bottom: 0;
	}
	.r-index .bg-image-wrap {
		background: #F5F5F5;
		position: relative;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
	}
	.r-index .bg-image {
		position: relative;
		width: 100%;
		left: 0;
		height: 200px;
	}
	.r-index .bg-image img {
		object-fit: cover;
		height: 100%;
	}
	.index-content {
		position: relative;
		background: #FFF;
		min-height: auto;
		min-width: auto;
		width: 100%;
		top: -30px;
		box-sizing: border-box;
		padding: 20px 20px;
		filter: drop-shadow(0px 0px 8px rgba(191, 199, 211, 0.5));
	}
	.index-content:before {
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 8px 8px 0 0;
		border-color: #E3001B transparent transparent  transparent;
		transform: scale(1);
		transform-origin: right bottom;
		left: 3px;
		top: 3px;
	}
	.index-content .ttl {
		font-size: 22px;
		font-weight: 600;
		color: #001E50;
		margin-bottom: 5px;
	}
	.index-content .ttl:first-letter {
		color: var(--main-color);
	}
	.index-content .sub-ttl {
		font-size: 18px;
		font-weight: 600;
		color: var(--main-color);
		margin-bottom: 5px;
	}
	.index-content ul {
		margin: 20px 0 0;
	}
	.index-content ul li {
		margin-bottom: 5px;
		height: 42px;
		background: #001E50;
		position: relative;
		transition: all .4s;
	}
	.index-content ul li:hover {
		background: #0E326F;
	}
	.index-content ul li p {
		color: #FFF;
		font-weight: 600;
		text-align: center;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
	.index-content ul li:before {
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0 0 8px 8px;
		border-color: transparent transparent #E3001B transparent;
		transform: scale(1);
		transform-origin: right bottom;
		right: 3px;
		bottom: 3px;
		transition: all .8s;
	}
	.index-content ul li:hover:before {
		animation: reveal .8s ease-in-out 0s forwards;
	}
}






.entry-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.entry-list > li {
	position: relative;
	width: 48%;
	box-sizing: border-box;
	padding: 30px 30px 30px;
	background: #fff;
	box-shadow: 0px 0px 8px rgba(191, 199, 211, 0.5);
}
.entry-list > li .txt {
	height: 120px;
	position: relative;
}
.entry-list > li .txt p {
	text-align: center;
	font-size: 20px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.entry-list > li > ul li {
	width: 100%;
	height: 70px;
	position: relative;
	transition: all .4s;
}
.entry-list > li > ul li:before {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 0 8px 8px;
	border-color: transparent transparent #E3001B transparent;
	transform: scale(1);
	transform-origin: right bottom;
	right: 3px;
	bottom: 3px;
}
.entry-list > li > ul li:hover:before {
	animation: reveal .8s ease-in-out 0s forwards;
}
.entry-list > li > ul li:nth-child(1) {
	margin-bottom: 20px;
	background: #001E50;
}
.entry-list > li > ul li:nth-child(1):hover {
	;
	background: #092E6B;
}
.entry-list > li > ul li:nth-child(2) {
	background: #008CD7;
}
.entry-list > li > ul li:nth-child(2):hover {
	;
	background: #199EE6;
}
.entry-list > li > ul li p {
	text-align: center;
	font-size: 18px;
	color: #FFF;
	line-height: 70px;
	font-family: var(--en-font);
	font-weight: 600;
}
@media screen and (max-width: 767px) {
	.entry-list > li {
		;
		padding: 10px 20px 20px;
	}
	.entry-list > li .txt p {
		font-size: 15px;
	}
}
@media screen and (max-width: 480px) {
	.entry-list > li {
		position: relative;
		width: 100%;
		box-sizing: border-box;
		padding: 10px 20px 20px;
		background: #fff;
		box-shadow: 0px 0px 8px rgba(191, 199, 211, 0.5);
		margin-bottom: 20px;
	}
	.entry-list > li .txt {
		height: 80px;
		position: relative;
	}
	.entry-list > li .txt p {
		text-align: center;
		font-size: 16px;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		line-height: 1.6em;
	}
	.entry-list > li > ul li {
		width: 100%;
		height: 50px;
		position: relative;
		transition: all .4s;
	}
	.entry-list > li > ul li p {
		text-align: center;
		font-size: 16px;
		color: #FFF;
		line-height: 50px;
		font-family: var(--en-font);
		font-weight: 600;
	}
	.entry-list > li > ul li:nth-child(1) {
		margin-bottom: 5px;
	}
}
.recruiting-h201 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0.08em;
}
.recruiting-h201 span {
	color: var(--main-color);
}
.recmsg .arrow-bottom {
	padding-bottom: 70px;
	margin-bottom: 40px;
	position: relative;
}
.recmsg .arrow-bottom:after {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 32px 80px 0 80px;
	border-color: #E5E3E2 transparent transparent transparent;
	transform: translateX(-50%);
	bottom: 0;
	left: 50%;
}
.recmsg .point-list {
	padding: 0 0 40px;
}
.recmsg .point-list > p {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}
.recmsg .point-list > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 0 0;
}
.recmsg .point-list > ul li {
	position: relative;
	width: 30.33%;
	margin: 0 1.5% 3%;
	box-sizing: border-box;
	padding: 30px 30px 30px;
	background: #fff;
	box-shadow: 0px 0px 8px rgba(191, 199, 211, 0.5);
}
.recmsg .point-list > ul li > p {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 20px;
}
.recmsg .point-list > ul li > p span {
	color: var(--main-color);
}
.recmsg .point-list > ul li .icon {
	width: 80%;
	margin: 0 auto;
	max-width: 110px;
}
.recmsg .expb {
	padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
	.recruiting-h201 {
		font-size: min(5vw, 20px);
		font-weight: 600;
		margin-bottom: 10px;
		letter-spacing: 0.02em;
	}
	.recmsg .point-list {
		padding: 0 0 20px;
	}
	.recmsg .point-list > ul li {
		position: relative;
		width: 47%;
		margin: 0 1.5% 3%;
		padding: 20px 20px 20px;
	}
	.recmsg .arrow-bottom {
		padding-bottom: 50px;
		margin-bottom: 20px;
		position: relative;
	}
	.recmsg .arrow-bottom:after {
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 22px 50px 0 50px;
		border-color: #E5E3E2 transparent transparent transparent;
		transform: translateX(-50%);
		bottom: 0;
		left: 50%;
	}
	.recmsg .point-list > ul li > p {
		text-align: center;
		font-size: 16px;
		font-weight: 600;
		padding-bottom: 10px;
	}
}
@media screen and (max-width: 480px) {
	.recmsg .point-list > ul li {
		position: relative;
		width: 100%;
		margin: 0 0% 20px;
	}
	.recmsg .point-list > ul li .icon {
		width: 80%;
		margin: 0 auto;
		max-width: 80px;
	}
	.recmsg .expb {
		padding-bottom: 50px;
	}
}
.outline-style01 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}
.outline-style01 dt {
	width: 200px;
	border-bottom: solid 1px #008CD7;
	box-sizing: border-box;
	padding: 30px 5px;
	font-weight: 600;
}
.outline-style01 dd {
	width: calc(100% - 200px);
	padding: 30px 5px;
	box-sizing: border-box;
	position: relative;
}
.outline-style01 dd:after {
	width: 200px;
	height: 1px;
	background: #BDC2C3;
	left: 0;
	bottom: 0;
}
.outline-style01 dd a {
	color: var(--main-color);
}
@media screen and (max-width: 480px) {
	.outline-style01 {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 50px;
	}
	.outline-style01 dt {
		width: 70px;
		border-bottom: solid 1px #008CD7;
		box-sizing: border-box;
		padding: 15px 3px;
		font-weight: 600;
		line-height: 1.6em;
	}
	.outline-style01 dd {
		width: calc(100% - 70px);
		padding: 15px 4px;
		box-sizing: border-box;
		position: relative;
		line-height: 1.6em;
	}
	.outline-style01 dd:after {
		width: 70px;
		height: 1px;
		background: #BDC2C3;
		left: 0;
		bottom: 0;
	}
	.outline-style01 dd a {
		color: var(--main-color);
	}
}
.inner-content-wrap {
	position: relative;
	padding: 300px 0 0;
}
.inner-menu-wrap {
	position: absolute;
	width: 100%;
	padding: 30px 0 30px;
	margin: 0 auto;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	background: #F5F5F5;
}
.inner-menu-wrap_fixed {
	position: fixed;
	padding: 10px 0 5px;
	top: 65px;
	left: 50%;
	transform: translateX(-50%);
}
.innter-menu-box {
	position: relative;
	width: 90%;
	margin: 0 auto;
	max-width: 1120px;
}
.innter-menu-box > p {
	position: relative;
	text-align: center;
	color: var(--main-color);
	font-family: var(--en-font);
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 10px;
}
.inner-menu-wrap_fixed .innter-menu-box > p {
	font-size: 18px;
	padding-bottom: 1px;
}
.innter-menu-box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.innter-menu-box ul li {
	width: 33.0%;
	margin-bottom: 5px;
	position: relative;
	box-sizing: border-box;
	cursor: pointer;
	background: #FFF;
	padding: 15px 10px;
	min-height: 30px;
	transition: all .5s;
	filter: drop-shadow(0px 0px 3px rgba(191, 199, 211, 0.5));
}
.career-outline .innter-menu-box ul {
	justify-content: flex-start;
}
.career-outline .innter-menu-box ul li {
	margin-right: .66%;
}
.inner-menu-wrap_fixed .innter-menu-box ul li {
	padding: 5px 10px;
	min-height: 24px;
}
.innter-menu-box ul li p {
	position: relative;
	padding-left: 30px;
	font-size: 12px;
	line-height: 1.4em;
	top: 50%;
	transform: translateY(-50%);
}
.innter-menu-box ul li p span {
	color: var(--main-color);
	font-family: var(--en-font);
	font-size: 16px;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
	.inner-content-wrap {
		position: relative;
		padding: 0 0 0;
	}
	.inner-menu-wrap {
		position: relative;
		width: 100%;
		padding: 30px 0 30px;
		margin: 0 auto 50px;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 5;
		background: #F5F5F5;
	}
	.inner-menu-wrap_fixed {
		position: absolute;
		padding: 10px 0 5px;
		top: 65px;
		left: 50%;
		transform: translateX(-50%);
	}
	.innter-menu-box {
		position: relative;
		width: 90%;
		margin: 0 auto;
		max-width: 1120px;
	}
	.innter-menu-box > p {
		position: relative;
		text-align: center;
		color: var(--main-color);
		font-family: var(--en-font);
		font-size: 20px;
		font-weight: 700;
	}
	.innter-menu-box ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.innter-menu-box ul li {
		width: 49.7%;
		margin-bottom: 5px;
		position: relative;
		cursor: pointer;
		background: #FFF;
		padding: 10px;
		min-height: 30px;
		transition: all .5s;
	}
	.career-outline .innter-menu-box ul {
		justify-content: space-between;
	}
	.career-outline .innter-menu-box ul li {
		margin-right: 0;
	}
	.inner-menu-wrap_fixed .innter-menu-box ul li {
		padding: 5px 10px;
		min-height: 24px;
	}
	.innter-menu-box ul li p {
		position: relative;
		padding-left: 25px;
		font-size: 11px;
		line-height: 1.4em;
		top: 50%;
		transform: translateY(-50%);
	}
	.innter-menu-box ul li p span {
		color: var(--main-color);
		font-family: var(--en-font);
		font-size: 15px;
		font-weight: 700;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}
.faq .section-ttl {
	width: calc(100% - 160px);
	margin: 0 auto 10px;
	max-width: 1120px;
	box-sizing: border-box;
	position: relative;
	height: 40px;
}
.faq .section-ttl span {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.09em;
	font-family: var(--en-font);
	color: var(--main-color);
	display: inline-block;
	background: #FFF;
	padding-right: 15px;
	line-height: 40px;
}
.faq .section-ttl:after {
	width: 100vw;
	height: 2px;
	background: var(--main-color);
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: -2;
}
.faq .section-theme {
	width: calc(100% - 160px);
	margin: 0 auto 40px;
	max-width: 1120px;
	box-sizing: border-box;
	font-size: min(5vw, 32px);
	font-weight: 700;
	line-height: 1.5em;
}
@media screen and (max-width: 767px) {
	.faq .section-ttl {
		width: calc(90%);
		margin: 0 auto;
		max-width: 1120px;
		box-sizing: border-box;
		position: relative;
		height: 40px;
	}
	.faq .section-ttl span {
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 0.09em;
		font-family: var(--en-font);
		color: var(--main-color);
		display: inline-block;
		background: #FFF;
		padding-right: 10px;
		line-height: 40px;
	}
	.faq .section-ttl:after {
		width: 100vw;
		height: 1px;
		background: var(--main-color);
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		z-index: -2;
	}
	.faq .section-theme {
		width: calc(90%);
		margin: 0 auto 20px;
		max-width: 1120px;
		box-sizing: border-box;
		font-size: min(4vw, 22px);
		font-weight: 700;
		line-height: 1.5em;
	}
	.faq .section-theme span {
		color: var(--main-color);
	}
}
.faq-content {
	width: calc(100% - 160px);
	margin: 0 auto 40px;
	max-width: 1120px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	padding: 0 0 80px;
	border-top: solid 1px #BDC2C3;
}
.faq-content dl {
	border-bottom: solid 1px #BDC2C3;
	width: 100%;
	position: relative;
}
.faq-content dl dt {
	padding: 30px 0;
	width: 100%;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
}
.faq-content dl dt:before {
	width: 32px;
	height: 32px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("https://www.proterial.com/rcrt/assets/img/recruiting_img/faq-open.svg");
}
.faq-content dl dt.active:before {
	background-image: url("https://www.proterial.com/rcrt/assets/img/recruiting_img/faq-close.svg");
}
.faq-content dl dd {
	display: none;
	padding: 0 0 30px;
	width: 100%;
	box-sizing: border-box;
}
.faq-content dl dt p {
	font-size: 20px;
	font-weight: 600;
	padding-left: 40px;
	position: relative;
	box-sizing: border-box;
}
.faq-content dl dd p {
	padding: 0 60px 0 40px;
	position: relative;
	box-sizing: border-box;
}
.faq-content dl dt p span, .faq-content dl dd p span {
	color: var(--main-color);
	font-family: var(--en-font);
	font-size: 24px;
	font-weight: 700;
	left: 0;
	position: absolute;
	top: 0;
}
@media screen and (max-width: 767px) {
	.faq-content {
		width: calc(90%);
		margin: 0 auto 20px;
		max-width: 1120px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		padding: 0 0 20px;
		border-top: solid 1px #BDC2C3;
	}
	.faq-content dl {
		border-bottom: solid 1px #BDC2C3;
		width: 100%;
		position: relative;
	}
	.faq-content dl dt {
		padding: 15px 0;
		width: 100%;
		box-sizing: border-box;
		cursor: pointer;
		position: relative;
	}
	.faq-content dl dt:before {
		width: 16px;
		height: 16px;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background-image: url("https://www.proterial.com/rcrt/assets/img/recruiting_img/faq-open.svg");
	}
	.faq-content dl dt.active:before {
		background-image: url("https://www.proterial.com/rcrt/assets/img/recruiting_img/faq-close.svg");
	}
	.faq-content dl dd {
		display: none;
		padding: 0 0 15px;
		width: 100%;
		box-sizing: border-box;
	}
	.faq-content dl dt p {
		font-size: 14px;
		line-height: 1.4em;
		font-weight: 600;
		padding: 0 40px 0 30px;
		position: relative;
		box-sizing: border-box;
	}
	.faq-content dl dd p {
		padding: 0 25px 0 30px;
		line-height: 1.6em;
		position: relative;
		box-sizing: border-box;
	}
	.faq-content dl dt p span, .faq-content dl dd p span {
		color: var(--main-color);
		font-family: var(--en-font);
		font-size: 20px;
		font-weight: 700;
		left: 0;
		position: absolute;
		top: 0;
	}
}




.tab_box .btn_area {
	border-bottom: solid 2px #008CD7;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 64px;
}
.tab_box .btn_area > div {
	width: 40%;
	max-width: 360px;
	height: 56px;
	background: #001E50;
	transition: all .5s;
	transform-origin: center bottom;
	position: relative;
	top: 100%;
	transform: translateY(-100%);
	cursor: pointer;
}
.tab_box .btn_area > div.active {
	background: #008CD7;
	height: 64px;
	bottom: 0;
	position: relative;
}
.tab_box .btn_area > div p {
	color: #FFF;
	font-weight: 600;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.tab_panel {
	display: none;
	transition: all .2s;
}
.tab_panel.active {
	display: block;
}

.internship-main {
	position: relative;
}
.internship-main .txt {
	position: absolute;
	z-index: 2;
	width: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.internship-main .txt p:nth-child(1) {
	color: #FFF;
	font-weight: 600;
	padding-bottom: 10px;
}
.internship-main .txt p:nth-child(2) {
	color: #FFF;
	font-weight: 600;
	font-size: 40px;
	line-height: 1.6em;
}
.tab_box .mc {
	text-align: center;
	padding: 40px 0 60px;
	font-size: 20px;
	font-weight: 600;
}

.voice-box {
	width: 100%;
	background: #fff;
	filter: drop-shadow(0px 0px 8px rgba(191, 199, 211, 0.5));
	box-sizing: border-box;
	padding: 40px;
	margin-bottom: 50px;
}
.voice-box p:nth-child(1) {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 10px;
}
.voice-box p:nth-child(2) {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 20px;
}
.voice-box p:nth-child(2) span {
	color: var(--main-color);
	font-family: var(--en-font);
	font-size: 20px;
	font-weight: 700;
	padding-right: 10px;
}
.voice-box .contentment {
	width: 80%;
	margin: 0 auto;
	max-width: 600px;
}
.voice-list {
	position: relative;
}
.voice-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
.voice-list ul li {
	width: 48%;
	margin-bottom: 4%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #F5F5F5;
	position: relative;
	box-sizing: border-box;
	padding: 20px;
}
.voice-list ul li .icon {
	width: 80px;
}
.voice-list ul li .icon p {
	text-align: center;
	font-size: 12px;
	color: #025A8A;
	font-weight: 600;
}
.voice-list ul li .txt {
	width: calc(100% - 100px);
}
.voice-list ul li .txt p {
	font-size: 88%;
	color: #025A8A;
	line-height: 1.8em;
}
.btn-entry {
	width: 90%;
	max-width: 480px;
	height: 96px;
	background: #001E50;
	box-shadow: 0px 0px 8px rgba(191, 199, 211, 0.5);
	box-sizing: border-box;
	padding: 20px 20px;
	position: relative;
	margin: 60px auto 30px;
	transition: all .8s;
}
.btn-entry:before {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 0 8px 8px;
	border-color: transparent transparent #E3001B transparent;
	transform: scale(1);
	transform-origin: right bottom;
	right: 3px;
	bottom: 3px;
	transition: all .8s;
}
.btn-entry:hover {
	background: #052965;
}
.btn-entry:hover:before {
	animation: reveal .8s ease-in-out 0s forwards;
}
.btn-entry p {
	text-align: center;
	font-size: 20px;
	font-family: var(--en-font);
	color: #FFF;
	letter-spacing: 0.09em;
	font-weight: 600;
	position: relative;
	display: inline-block;
	white-space: nowrap;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all .8s;
}
.btn-entry:hover p {
	letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
	.tab_box .btn_area {
		border-bottom: solid 2px #008CD7;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		height: 34px;
	}
	.tab_box .btn_area > div {
		width: 48%;
		max-width: 360px;
		height: 26px;
		background: #001E50;
		transition: all .5s;
		transform-origin: center bottom;
		position: relative;
		top: 100%;
		transform: translateY(-100%);
		cursor: pointer;
	}
	.tab_box .btn_area > div.active {
		background: #008CD7;
		height: 34px;
		bottom: 0;
		position: relative;
	}
	.tab_box .btn_area > div p {
		color: #FFF;
		font-weight: 600;
		text-align: center;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		font-size: 12px;
	}
	.tab_panel {
		display: none;
		transition: all .2s;
	}
	.tab_panel.active {
		display: block;
	}
	.internship-main {
		position: relative;
	}
	.internship-main .main-visual img {
		object-fit: cover;
		min-height: 180px;
	}
	.internship-main .txt {
		position: absolute;
		z-index: 2;
		width: 100%;
		display: inline-block;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
	}
	.internship-main .txt p:nth-child(1) {
		color: #FFF;
		font-weight: 600;
		padding-bottom: 10px;
	}
	.internship-main .txt p:nth-child(2) {
		color: #FFF;
		font-weight: 600;
		font-size: 18px;
		line-height: 1.6em;
	}
	.tab_box .mc {
		text-align: center;
		padding: 20px 0 30px;
		font-size: min(4.2vw,16px);
		font-weight: 600;
	}

	.voice-box {
		width: 100%;
		background: #fff;
		filter: drop-shadow(0px 0px 8px rgba(191, 199, 211, 0.5));
		box-sizing: border-box;
		padding: 20px;
		margin-bottom: 30px;
	}
	.voice-box p:nth-child(1) {
		text-align: center;
		font-size: 18px;
		font-weight: 600;
		padding-bottom: 5px;
	}
	.voice-box p:nth-child(2) {
		text-align: center;
		font-size: 15px;
		font-weight: 600;
		padding-bottom: 15px;
	}
	.voice-box p:nth-child(2) span {
		color: var(--main-color);
		font-family: var(--en-font);
		font-size: 20px;
		font-weight: 700;
		padding-right: 10px;
	}
	.voice-box .contentment {
		width: 100%;
		margin: 0 auto;
		max-width: 500px;
	}
	.voice-list {
		position: relative;
	}
	.voice-list ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 60px;
	}
	.voice-list ul li {
		width: 100%;
		margin-bottom: 2%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		background: #F5F5F5;
		position: relative;
		box-sizing: border-box;
		padding: 15px;
	}
	.voice-list ul li .icon {
		width: 60px;
	}
	.voice-list ul li .icon p {
		text-align: center;
		font-size: 12px;
		color: #025A8A;
		font-weight: 600;
	}
	.voice-list ul li .txt {
		width: calc(100% - 70px);
	}
	.voice-list ul li .txt p {
		font-size: 88%;
		color: #025A8A;
		line-height: 1.8em;
	}
	.btn-entry {
		width: 90%;
		max-width: 480px;
		height: 56px;
		background: #001E50;
		box-shadow: 0px 0px 8px rgba(191, 199, 211, 0.5);
		box-sizing: border-box;
		padding: 20px 10px;
		position: relative;
		margin: 30px auto 20px;
		transition: all .8s;
	}
	.btn-entry:before {
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0 0 8px 8px;
		border-color: transparent transparent #E3001B transparent;
		transform: scale(1);
		transform-origin: right bottom;
		right: 3px;
		bottom: 3px;
		transition: all .8s;
	}
	.btn-entry p {
		text-align: center;
		font-size: 15px;
		font-family: var(--en-font);
		color: #FFF;
		letter-spacing: 0.09em;
		font-weight: 600;
		position: relative;
		display: inline-block;
		white-space: nowrap;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: all .8s;
	}
	.btn-entry:hover p {
		letter-spacing: 0.2em;
	}
}




.career-outline .innter-menu-box ul li p {
	position: relative;
	padding: 0 10px;
	font-size: 12px;
	line-height: 1.4em;
	top: 50%;
	transform: translateY(-50%);
}
.career-outline .in-section {
	min-height: 300px;
}
.career-outline .section-theme {
	width: calc(100%);
	padding-bottom: 20px;
	margin: 0 auto 40px;
	max-width: 1120px;
	box-sizing: border-box;
	font-size: min(5vw, 32px);
	font-weight: 700;
	line-height: 1.5em;
	border-bottom: solid 1px #BDC2C3;
}
.career-outline .section-theme span {
	color: var(--main-color);
}
@media screen and (max-width: 767px) {
	.career-outline .in-section {
		min-height: 150px;
	}
	.career-outline .section-theme {
		width: calc(100%);
		margin: 0 auto 20px;
		box-sizing: border-box;
		font-size: min(4vw, 22px);
	}
}
	