@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	width: 100%;
	min-width: 1200px;
	font-family: 'Ubuntu','Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	color: var(--txtcolor);
	letter-spacing: .08em;
	line-height: 1.6;
	text-autospace:ideograph-alpha;
	font-feature-settings: "palt";
	position: relative;
}
main {
	display: block;
}
a {
	text-decoration: none;
	color: var(--txtcolor);
	transition: all .3s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
input[name="mail"] {
	width: 90%!important;
}
*{
	box-sizing: border-box;
}
:root {
	--txtcolor: #353535;
	--btncolor: #02477c;
	--accentcolor: #76d7a9;
	--newgraduate: #05b3de;
	--career: #047fde;
	--bgcolor: #e7e9ee;
	--mygray: #fafafa;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.pc {
	display: block!important;
}
.pcib {
	display: inline-block!important;
}
.pcfl {
	display: flex!important;
}
.sp ,
.spib ,
.spfl {
	display: none!important;
}
.must {
	display: inline-block;
	background: var(--numcolor);
	padding: 6px;
	font-size: 1rem;
	color: #fff;
	line-height: 1;
	margin-left: .5em;
	vertical-align: 1px;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Ubuntu','Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
input[type="url"],
textarea {
	-webkit-appearance: none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid var(--mygray);
	width: 90%;
	box-sizing: border-box;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.4rem;
}
textarea {
	width: 90%;
	height: 10em;
}
select {
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(/pc/img/common/arrow_d.svg) no-repeat right 10px center;
	background-size: auto 4px;
	padding: 8px 40px 8px 8px;
	border: 1px solid var(--mygray);
	max-width: 16em;
	color: var(--txtcolor);
}
select::-ms-expand {
	display: none;
}
::placeholder {
	color: var(--mygray);
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid var(--mygray);
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 5px;
}
input[type="checkbox"]:checked {
	background: #fff;
	border: 1px solid var(--btncolor);
}
input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 14px;
	display: block;
	width: 7px;
	height: 2px;
	background: var(--btncolor);
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	content: '';
	display: block;
	position: absolute;
	left: 8px;
	top: 14px;
	width: 12px;
	height: 2px;
	background: var(--btncolor);
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	width: 17px;
	height: 17px;
	border: 1px solid transparent;
	position: relative;
	margin-right: 5px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--mygray);
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--mygray);
	border-radius: 50%;
}
input[type="radio"]:checked::before {
	border: 1px solid var(--btncolor);
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--btncolor);
	border-radius: 50%;
}
input[type="submit"] {
	display: block;
	width: 46%;
	margin: auto;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
	font-family: 'Ubuntu','Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	text-align: center;
	padding: 20px;
	background: var(--btncolor);
	border-radius: 50vw;
	transition: all .3s ease 0s;
}
input[type="submit"]:hover {
	background: var(--btncolor);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
.btn a {
	display: block;
	width: 300px;
	background:  var(--btncolor);
	padding: 20px;
	border-radius: 50vw;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: .025em;
	line-height: 1;
	position: relative;
}
.btn a::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 26px;
	height: 26px;
	background: #fff;
	border: 1px solid var(--btncolor);
	transition: all .3s ease 0s;
}
.btn a span::before {
	content: '';
	position: absolute;
	right: 28px;
	top: 0;
	bottom: -2px;
	margin: auto 0;
	width: 10px;
	height: 1px;
	background: var(--btncolor);
	z-index: 1;
	transition: all .3s ease 0s;
}
.btn a span::after {
	content: '';
	position: absolute;
	right: 27px;
	top: -2px;
	bottom: 0;
	margin: auto 0;
	width: 6px;
	height: 1px;
	background: var(--btncolor);
	z-index: 1;
	transition: all .3s ease 0s;
	transform: rotate(45deg);
}
.btn a:hover::after {
	background: var(--btncolor);
	border: 1px solid #fff;
}
.btn a:hover span::before ,
.btn a:hover span::after {
	background: #fff;
}
/*------------------------
header
------------------------*/
header .corp {
	background: #000;
	padding: 20px 40px;
	justify-content: space-between;
	align-items: center;
}
header .corp .logo a {
	display: block;
	width: 100px;
}
header .corp .logo a img {
	width: 100%;
	vertical-align: middle;
}
header .corp .portal a {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1;
}
header .corp .portal a:hover {
	opacity: .7;
}
header .corp .portal a::after {
	content: '';
	display: block;
	width: 20px;
	height: 15px;
	background: url(/recruit/pc/img/common/icn_blank.svg) no-repeat 100%/contain;
	margin-left: 10px;
}
header .inner {
	padding-left: 40px;
	justify-content: space-between;
	align-items: center;
	background: #fff;
}
header .inner .ttl {
	font-size: clamp(1.2rem,.938vw,1.8rem);
	line-height: 1.1;
}
header .inner nav ul li a {
	display: block;
	width: clamp(120px,8.229vw,158px);
	padding: 25px 5px;
	background: #e5e5e5;
	font-size: clamp(1.2rem,.833vw,1.6rem);
	font-weight: 500;
	text-align: center;
	line-height: 1;
}
header .inner nav ul li.current a {
	background: var(--btncolor);
	color: #fff;
}
header .inner nav ul li.newgraduate a {
	background: var(--newgraduate);
	color: #fff;
}
header .inner nav ul li.career a {
	background: var(--career);
	color: #fff;
}
header .inner nav ul li a:hover {
	background: var(--btncolor);
	color: #fff;
}
/*------------------------
後続タイトル
------------------------*/
.page-ttl {
	margin: 0 40px;
	background: #f3f4f5;
	position: relative;
	overflow: hidden;
}
.page-ttl .inner {
	width: 1200px;
	margin: auto;
	padding: 20px 0 100px;
	position: relative;
	z-index: 1;
}
.page-ttl .inner h1 {
	font-size: 5.6rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 20px;
}
.page-ttl .inner .lead {
	display: block;
	font-size: 2.1rem;
}
.page-ttl .ashi {
	position: absolute;
	top: -330px;
	left: -280px;
	width: 476px;
	height: 476px;
	border-radius: 50vw;
	background: #cae3e9;
}
.page-ttl .ashi2 {
	position: absolute;
	bottom: -200px;
	right: -20px;
	width: 446px;
	height: 446px;
	border-radius: 50vw;
	background: #a5d1f2;
}
.page-ttl .ashi3 {
	position: absolute;
	bottom: -0px;
	right: 183px;
	width: 40px;
	height: 330px;
	background: #f3f4f5;
}
.page-ttl .ashi4 {
	position: absolute;
	top: 65px;
	right: 0;
	width: 107px;
	height: 150px;
}
@media screen and (max-width: 1360px) {
	.page-ttl {
		margin: 0 20px;
	}
	.page-ttl .inner {
		width: 100%;
		padding: 20px 20px 100px;
	}
}
/*------------------------
パンくず
------------------------*/
#breadcrumb {
	margin-bottom: 80px;
	overflow: hidden;
}
#breadcrumb li {
	float: left;
	font-size: 1.2rem;
	line-height: 1;
	padding-right: 4px;
}
#breadcrumb li a {
	display: inline-block;
	color: var(--txtcolor);
}
#breadcrumb li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid var(--txtcolor);
	margin: auto;
}
#breadcrumb li a:hover {
	opacity: 1;
}
#breadcrumb li a:hover::after {
	width: 100%;
}
/*------------------------
後続style
------------------------*/
section .ttl .en {
	display: block;
	font-size: 2.4rem;
	color: var(--btncolor);
	line-height: 1;
	margin-bottom: 10px;
}
section .ttl h2 {
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.2;
}
/*------------------------
footer
------------------------*/
footer {
	background: var(--txtcolor);
	padding: 60px 0 20px;
	color: #fff;
}
footer .inner {
	width: 1200px;
	margin: 0 auto 50px;
	justify-content: space-between;
	align-items: stretch;
}
footer .inner .nav-area {
	flex: 1;
}
footer .inner .nav-area .item {
	width: 336px;
	margin: 0 60px 50px 0;
}
footer .inner .nav-area .item .head {
	display: block;
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}
footer .inner .nav-area .item ul {
	flex-wrap: wrap;
}
footer .inner .nav-area .item ul li {
	width: 50%;
}
footer .inner .nav-area .item ul li a {
	display: block;
	padding: 6px 0;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
}
footer .inner .nav-area .item ul li a:hover {
	color: var(--newgraduate);
}
footer .inner .nav-area .com .en {
	display: block;
	font-size: 500;
	font-size: 2.1rem;
	line-height: 1;
	margin-bottom: 12px;
}
footer .inner .nav-area .com .jap {
	display: block;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 35px;
}
footer .inner .nav-area .com .link-area {
	align-items: center;
}
footer .inner .nav-area .com .link-area span {
	position: relative;
	margin-right: 30px;
}
footer .inner .nav-area .com .link-area span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: -2px;
	margin: auto 0;
	width: 10px;
	height: 1px;
	background: #fff;
	z-index: 1;
	transition: all .3s ease 0s;
}
footer .inner .nav-area .com .link-area span::after {
	content: '';
	position: absolute;
	left: 5px;
	top: -2px;
	bottom: 0;
	margin: auto 0;
	width: 6px;
	height: 1px;
	background: #fff;
	z-index: 1;
	transition: all .3s ease 0s;
	transform: rotate(45deg);
}
footer .inner .nav-area .com .link-area a {
	display: block;
	padding-left: 18px;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
	letter-spacing: .025em;
	position: relative;
}
footer .inner .nav-area .com .link-area a::after {
	content: '';
	display: inline-block;
	margin-left: 10px;
	width: 14px;
	height: 10px;
	background: url(/recruit/pc/img/common/icn_blank.svg) no-repeat 100%/contain;
}
footer .inner .nav-area .com .link-area a::before {
	content: '';
	display: block;
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid #fff;
}
footer .inner .nav-area .com .link-area a:hover::before {
	width: 100%;
}
footer .inner .btn-area {
	position: relative;
}
footer .inner .btn-area ul {
	margin-bottom: 60px;
}
footer .inner .btn-area ul li a {
	display: block;
	padding: 25px 20px;
	width: 150px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1;
}
footer .inner .btn-area ul li a:hover {
	background: var(--btncolor)
}
footer .inner .btn-area .newgraduate a {
	background: var(--newgraduate);
}
footer .inner .btn-area .career a {
	background: var(--career);
}
footer .page-top {
	position: absolute;
	bottom: 0;
	right: 0;
}
footer .page-top a {
	padding: 28px 6px 0 0;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	position: relative;
	color: #fff;
}
footer .page-top a:hover {
	transform: translateY(5px);
}
footer .page-top a::before {
	content: '';
	position: absolute;
	top: 8px;
	right: -4px;
	transform: rotate(-55deg);
	width: 20px;
	height: 1px;
	background: #fff;
}
footer .page-top a::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 110px;
	background: #fff;
}
footer .copy {
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	line-height: 1;
	letter-spacing: .025em;
}
@media screen and (max-width: 1240px) {
	footer .inner {
		width: 1160px;
	}
}
/*------------------------
追従
------------------------*/
.bottom-contact {
	position: sticky;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(231, 233, 238, .9);
}
.bottom-contact .inner {
	width: 1200px;
	margin: auto;
	padding: 20px;
	gap: 0 20px;
	justify-content: center;
}
.bottom-contact .inner span a {
	display: block;
	padding: 22px 20px;
	width: 300px;
	font-size: 2.1rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1;
}
.bottom-contact .inner span a:hover {
	background: var(--btncolor)
}
.bottom-contact .inner .newgraduate a {
	background: var(--newgraduate);
}
.bottom-contact .inner .career a {
	background: var(--career);
}
/*------------------------
追従(キャリア)
------------------------*/
.body_career .bottom-contact{
	display: none!important;
}
.bottom-contact-career{
	position: sticky;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(231, 233, 238, .9);
}
.bottom-contact-career .inner {
	width: 1200px;
	margin: auto;
	padding: 20px;
	gap: 0 20px;
	justify-content: center;
}
.bottom-contact-career .inner span a {
	display: block;
	padding: 22px 20px;
	width: 360px;
	font-size: 2.1rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1;
}
.bottom-contact-career .inner span a:hover {
	background: var(--btncolor)
}
.bottom-contact-career .inner .requirements a {
	background: var(--career);
}
.bottom-contact-career .inner .entry a {
	background: var(--btncolor);
}
.bottom-contact-career .inner .entry a:hover {
	background: #fff;
	color:var(--btncolor);
}
/*------------------------
追従(新卒)
------------------------*/
.body_newgraduate .bottom-contact{
	display: none!important;
}
.bottom-contact-newgraduate{
	position: sticky;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(231, 233, 238, .9);
}
.bottom-contact-newgraduate .inner {
	width: 1200px;
	margin: auto;
	padding: 20px;
	gap: 0 20px;
	justify-content: center;
}
.bottom-contact-newgraduate .inner span a {
	display: block;
	padding: 22px 20px;
	width: 400px;
	font-size: 2.1rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1;
	position: relative;
}
.bottom-contact-newgraduate .inner span a:hover {
	background: var(--btncolor)
}
.bottom-contact-newgraduate .inner .requirements a {
	background: var(--newgraduate);
}
.bottom-contact-newgraduate .inner .entry a {
	background: var(--btncolor);
}
.bottom-contact-newgraduate .inner .entry a:hover {
	background: var(--career);
}
.bottom-contact-newgraduate .entry a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
	display: inline-block;
	width: 18px;
	height: 13px;
	background: url(/recruit/pc/img/common/icn_blank.svg) no-repeat 100% / contain;
}
/*------------------------
後続フッターナビ
------------------------*/
.footer-rec-nav ul{
	display: flex;
}
.footer-rec-nav ul > *{
  flex: 1 0 0;
}
.footer-rec-nav ul li{
	height: 320px;
}
.footer-rec-nav ul li a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	position: relative;
}
.footer-rec-nav ul li.requirements a {
	background: url(/recruit/pc/img/career/nav_bg_requirements.jpg) no-repeat 100%/cover;
}
.footer-rec-nav ul li.newgraduate a {
	background: url(/recruit/pc/img/common/btn_newgraduate.jpg) no-repeat 100%/cover;
}
.footer-rec-nav ul .career a {
    background: url(/recruit/pc/img/career/nav_bg_career.jpg) no-repeat 100% / cover;
}
.footer-rec-nav ul .entry a {
	background: url(/recruit/pc/img/career/nav_bg_entry.jpg) no-repeat 100% / cover;
}
.footer-rec-nav ul .faq a {
	background: url(/recruit/pc/img/career/nav_bg_faq.jpg) no-repeat 100% / cover;
}
.footer-rec-nav ul li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity:0;
	transition: opacity .4s cubic-bezier(0, 0, 0.3, 1);
}
.footer-rec-nav ul .newgraduate a::before {
	background: var(--newgraduate);
}
.footer-rec-nav ul .career a::before {
	background: var(--career);
}
.footer-rec-nav ul .entry a::before {
	background: var(--btncolor);
}
.footer-rec-nav ul .faq a::before {
	background: var(--txtcolor);
}
.footer-rec-nav ul li a:hover::before{
	opacity:.7;
}
/*ボタン*/
.footer-rec-nav ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 46px;
	height: 46px;
	background: var(--btncolor);
	transition: all .3s ease 0s;
}
.footer-rec-nav ul li a .txt::before {
	content: '';
	position: absolute;
	right: 14px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 16px;
	height: 2px;
	background: #fff;
	z-index: 1;
	transition: all .3s ease 0s;
}
.footer-rec-nav ul li a .txt::after {
	content: '';
	position: absolute;
	right: 13px;
	top: -6px;
	bottom: 0;
	margin: auto 0;
	width: 10px;
	height: 2px;
	background: #fff;
	z-index: 1;
	transition: all .3s ease 0s;
	transform: rotate(45deg);
}
.footer-rec-nav ul li a:hover::after {
	background: #fff;
}
.footer-rec-nav ul li a:hover .txt::before ,
.footer-rec-nav ul li a:hover .txt::after {
	background: var(--btncolor);
}
.footer-rec-nav ul li .txt {
	line-height: 1;
	z-index: 2;
}
.footer-rec-nav ul li .txt h2{
	font-weight: bold;
	letter-spacing: 0.06em;
	font-size:clamp(24px,calc(0.6667px + 1.9444vw),38px);
}