@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600;700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/*-----------------------------------

	root

-----------------------------------*/
:root {
	--mClr1: #00A07D; --mClr2: #2B9E74; --mClr3: #C5E1DA; --mClr4: #ECF8F1;
	--sClr1: #FAEE00; --sClr2: #232323;
	--fJa: 'IBM Plex Sans JP', sans-serif; --fEn: 'Jost', sans-serif;
}
/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
	font: 600 1.4rem/1 var(--fJa);
	color: var(--sClr2);
	letter-spacing:0;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
}
*, *:before, *:after {
	box-sizing: border-box;
}
.contents_inner {
	max-width: 1200px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	display: block;
	color: var(--sClr2);
	text-decoration:none;
    cursor: pointer;
	transition: all 0.5s;
}
a:hover {
	opacity: 0.6;
	text-decoration:none;
}

.row_box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.tab {display: none;}
.sp {display:none;}
.pc {display:block;}
@media screen and (max-width: 840px) {
	.pc{display:none;}	
	.sp{display:none;}
	.tab{display:block;}
}
@media screen and (max-width: 640px) {
	.pc{display:none;}
	.tab{display:none;}
    .sp{display:block;}
}

/*-----------------------------------

	cookie-consent

-----------------------------------*/
.cookie-consent {
  display: none; 
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 1.2em;
  box-sizing: border-box;
  z-index: 100;
}
.cookie-consent.is-show {
  display: flex;
}
.cookie-consent a {
  color: #fff !important;
	display: inline-block;
	text-decoration: underline;
	transition: 0.3s;
}
.cookie-consent a:hover{
	text-decoration: none;
	opacity: 1;
}
.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: .5em 1.5em;
	transition: 0.3s;
}
.cookie-agree:hover {
  cursor: pointer;
	opacity: 0.8;
}
/*.cc-hide1 {
  display: none;
}*/
/*.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}*/

@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}

/*-----------------------------------

	header

-----------------------------------*/
header {
	position: fixed;
	width: 100%;
	height: 75px;
	background: #FFF;
	/*border-radius: calc(1px/0);
	top: 40px;*/
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	padding: 0 15px;
	/*box-shadow: 0px 0px 15px 0px rgba(139,139,139,0.3);*/
	transition: 0.3s;
}
header .contents_inner{
	justify-content: space-between;
	height: 100%;
	max-width: 95%;
	width: 95%;
}

header #logo {
	width: 220px;
	line-height: 0;
	/*margin-left: 20px;*/
}
header #nav_menu ul {
	display:flex;
}
header #nav_menu > ul {
	gap: 15px;
}
header #nav_menu > ul li {
	position: relative;
}
header #nav_menu > ul li a {
	display: block;
	font: 700 1.4rem/1 var(--fJa);
	line-height: 75px;
}
header #nav_menu > ul li.current a,
header #nav_menu > ul li a:hover {
	opacity: 1;
}
header #nav_menu > ul > li > a::before {
	content: "";
	transition: all 0.5s;
}
header #nav_menu > ul > li.current > a::before,
header #nav_menu > ul > li:not(.newgraduate):not(.experienced):not(.contact) > a:hover::before {
	width: 100%;
	height: 3px;
	background: var(--mClr2);
	position: absolute;
	bottom: 0;
	left: 0;
}
header #nav_menu ul li.newgraduate,
header #nav_menu ul li.experienced {
	margin-right: -5px;
}
header #nav_menu ul li.newgraduate,
header #nav_menu ul li.experienced,
header #nav_menu ul li.contact {
	align-self: center;
}
header #nav_menu ul li.newgraduate a,
header #nav_menu ul li.experienced a,
header #nav_menu ul li.contact a {
	width: 133px;
	border-radius: calc(1px/0);
	line-height: 50px;
	text-align: center;
	padding: 0 20px 0 0;
	font-size: 1.4rem;
}
header #nav_menu ul li.newgraduate a {
	background: var(--sClr1) url(../img/common/icon_newgraduate.svg) no-repeat calc(100% - 18px) center/16px;
	border: 1px solid #FFFDCE;
}
header #nav_menu ul li.experienced a {
	width: 144px;
	background: #002E5D url(../img/common/icon_experienced.svg) no-repeat calc(100% - 18px) center/16px;
	color: #FFF;
		border: 1px solid #006FE1;
}
header #nav_menu ul li.contact a {
	background: var(--mClr1) url(../img/common/icon_contact.svg) no-repeat calc(100% - 12px) center/17px;
	color: #FFF;
	border: 1px solid #9DD4C8;
}
header #nav_menu ul li.newgraduate a:hover,
header #nav_menu ul li.experienced a:hover,
header #nav_menu ul li.contact a:hover {
	opacity: 0.6;
}
header .menu_btn_wrap {
    display: none;
}

/******スクロール時******/
header.hd_bg{
	/*background: #012e5d;*/
	background: #1c2b3b;
}
header.hd_bg #logo,
header.hd_bg #logo img{
	filter: brightness(0) invert(1);
}
header.hd_bg #nav_menu > ul li:not(.newgraduate,.recruit,.contact,.language) a{
	color: #fff;
}

@media screen and (max-width: 930px){
	header.hd_bg #nav_menu > ul li:not(.newgraduate,.recruit,.contact,.language) a{
		color: var(--sClr2);
	}
}
/**********************/

@media screen and (max-width: 1350px) {
	header #logo {
		width: 170px;
		/*margin-left: 10px;*/
	}	
		header .menu_btn_wrap .txt {
		color: var(--mClr4);
		font-size: 12px;
		font-weight: 600;
		width: 100%;
		text-align: center;
		position: absolute;
		top: 10px;
	}
	header {
		zoom: 0.9;
	}

} 

@media screen and (max-width: 1170px) {
	header #logo {
		width: 150px;
		margin-left: 0px;
	}	

	header #logo img {
		width: 90%;
	}

	header {
		zoom: 0.8;
	}
header #nav_menu ul li.newgraduate a {
	background: var(--sClr1) url(../img/common/icon_newgraduate.svg) no-repeat calc(100% - 18px) center/14px;
	border: 1px solid #FFFDCE;
}
header #nav_menu ul li.experienced a {
	width: 144px;
	background: #002E5D url(../img/common/icon_experienced.svg) no-repeat calc(100% - 18px) center/14px;
	color: #FFF;
		border: 1px solid #006FE1;
}
header #nav_menu ul li.contact a {
	background: var(--mClr1) url(../img/common/icon_contact.svg) no-repeat calc(100% - 12px) center/13px;
	color: #FFF;
	border: 1px solid #9DD4C8;
}
} 


@media screen and (max-width: 930px) {
	header {
		height: 70px;
	}
	header #logo {
		width: 200px;
			margin-left: 0;
	}	
	header .menu_btn_wrap {
        display: block;
		width: 70px;
		height: 70px;
		cursor:pointer;
		background: var(--mClr1);
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
		/*border-radius: 0 10px 10px 0;*/
	}
	header .menu_btn_wrap .txt {
		color: var(--mClr4);
		font-size: 13px;
		font-weight: 600;
		width: 100%;
		text-align: center;
		position: absolute;
		top: 10px;
	}
	header .menu_btn_wrap .menu_btn {
		width: 30px;
		height: 9px;
		display: block;
		position: absolute;
		top: 40px;
		left: calc(50% - 15px);
		z-index:999;
	}
	header .menu_btn_wrap .menu_btn .lineh,
	header .menu_btn_wrap .menu_btn .lineb {
		position:absolute;
		left: 0;
		width: 30px;
		height: 1px;
		background: var(--mClr4);
		transition:all 0.3s;
	}
	header .menu_btn_wrap .menu_btn .lineh {
		top:0;
	}
	header .menu_btn_wrap .menu_btn .lineb {
		bottom: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineh {
		transform:rotate(-135deg);
		top: 4.5px;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		transform:rotate(135deg);
		bottom: 4.5px;
	}	
	header #nav_menu {
        max-width: 320px;
		width: 95%;
		height: auto;
		-webkit-overflow-scrolling: touch;
		background: #FFF;
		position: fixed;
		top: 145px;
		right: -100%;
		padding: 30px;
		display:inline-block;
		z-index: 999;
		transition: 0.3s;
		border-radius: 10px;
		box-shadow: 0px 0px 15px 0px rgba(139,139,139,0.3);
	}
	header #nav_menu.toggle {
		right: 5% !important;
	}
	header #nav_menu ul {
		flex-direction: column;
		gap: 40px;
	}
	header #nav_menu > ul > li:not(.newgraduate,.experienced,.contact)::after {	
		content: "";	
		width: 100%;	
		height: 1px;	
		background: #707070;	
		position: absolute;	
		top: calc(100% + 20px);	
		left: 0;	
	}	
	header #nav_menu > ul > li:first-child::after {	
		height: 3px;	
		background: var(--mClr2);	
		top: calc(100% + 18px);	
	}
	header #nav_menu > ul li a {
		line-height: 1;
	}
	header #nav_menu > ul > li > a::before {
		content: none;
		display: none;
	}
	header #nav_menu ul li.newgraduate,
	header #nav_menu ul li.experienced {
		margin: 0 auto -30px;
	}
	header #nav_menu ul li.newgraduate a,
	header #nav_menu ul li.experienced a,
	header #nav_menu ul li.contact a {
		width: 200px;
	}
	header #nav_menu ul li.newgraduate a {
		background: var(--sClr1) url(../img/common/icon_newgraduate.svg) no-repeat calc(100% - 20px) center/16px;
	}
	header #nav_menu ul li.experienced a {
		background: #002E5D url(../img/common/icon_experienced.svg) no-repeat calc(100% - 20px) center/16px;
	}
	header #nav_menu ul li.contact a {
		background: var(--mClr1) url(../img/common/icon_contact.svg) no-repeat calc(100% - 20px) center/17px;
	}
}
@media screen and (max-width: 640px) {
	header #nav_menu {
        max-width: none;
		top: 100px;
	}
	header #nav_menu.toggle {
		right: 2.5% !important;
	}
}
/*-----------------------------------

	description

-----------------------------------*/
#description {
	padding-bottom: 55px;
}
#description .contents_inner {
	background: url(../img/common/description_bg.jpg) no-repeat center center/cover;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	z-index: 0;
	padding: 45px 0 40px;
	text-align: center;
}
#description .contents_inner::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(37, 83, 72, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#description h2 {
	position: relative;
	z-index: 2;
	color: #FFF;
	font: 700 4rem/1 var(--fJa);
	margin-bottom: 40px;
}
#description h2::after {
	content: "Job description";
	font: 700 1rem/1 var(--fEn);
	text-transform: uppercase;
	display: block;
	margin-top: 15px;
}
#description ul {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 0 80px;
}
#description ul li {
	background: #FFF;
	border-radius: calc(1px/0);
}
#description ul li a {
	width: 190px;
	padding: 18.5px 40px 18.5px 30px;
	font: 700 1.5rem/1 var(--fJa);
	text-box: trim-both cap alphabetic;
	letter-spacing: 0.03em;
	text-align: left;
	border-radius: calc(1px/0);
	background-image: url(../img/common/icon_arrow_bwab.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 5px) center;
	background-size: 38px;
}
#description ul li:first-child a {
	background-color: var(--sClr1);
	border: 1px solid #FFFDCE;
}
#description ul li:last-child a {
	background-color: #002E5D;
	border: 1px solid #006FE1;
	color: #FFF;
}
@media screen and (max-width: 840px) {
	#description ul {
		gap: 0 40px;
	}
}
@media screen and (max-width: 640px) {
	#description {
		padding-bottom: 30px;
	}
	#description .contents_inner {
		border-radius: 10px;
		padding: 30px 0;
	}
	#description h2 {
		font-size: 3rem;
		margin-bottom: 20px;
	}
	#description h2::after {
		margin-top: 10px;
	}
	#description ul {
		flex-direction: column;
		align-items: center;
		gap: 10px 0;
	}
	#description ul li a {
		width: 170px;
		padding: 15px 20px;
		font-size: 1.4rem;
		background-size: 32px;
	}
}
/*-----------------------------------

	link

-----------------------------------*/
#link ul {
	display: flex;
	justify-content: space-between;
}
#link ul li {
	width: 49%;
}
#link ul li a {
	color: #FFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 5px;
	border-radius: 10px;
	padding: 10px 10px 10px 30px;
	position: relative;
	z-index: 0;
}
#link ul li:first-child a {
	background: var(--mClr1);
}
#link ul li:last-child a {
	background: #231815;
}
#link ul li a::before {
	font: 700 4.2rem/1 var(--fEn);
	position: absolute;
	top: 10px;
	left: 30px;
	z-index: 1;
}
#link ul li:first-child a::before {
	content: "Faq";
	color: #009575;
}
#link ul li:last-child a::before {
	content: "Contact";
	color: #3B3330;
}
#link ul li a .txt {
	width: calc(100% - 150px);
	position: relative;
	z-index: 2;
}
#link ul li a .txt .ttl {
	font: 700 2.8rem/1 var(--fJa);
	margin-bottom: 10px;
}
#link ul li a .txt p {
	line-height: 1.2;
}
#link ul li a .box {
	width: 145px;
	height: 106px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	padding: 15px;
	background-image: url(../img/common/icon_arrow_bnaw.svg);
	background-position: calc(100% - 15px) center;
	background-repeat: no-repeat;
	background-size: 28px;
	font: 700 1.5rem/1 var(--fJa);
}
#link ul li:first-child a .box {
	background-color: #26544A;
}
#link ul li:last-child a .box {
	background-color: var(--mClr1);
}
@media screen and (max-width: 1200px) {
	#link ul li a .txt {
		width: calc(100% - 130px);
	}
	#link ul li a .txt .ttl {
		font-size: 2.4rem;
	}
	#link ul li a .box {
		width: 125px;
		padding: 10px;
		background-position: calc(100% - 10px) center;
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 840px) {
	#link ul {
		flex-wrap: wrap;
		gap: 15px;
	}
	#link ul li {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	#link ul {
		gap: 10px;
	}
	#link ul li a {
		border-radius: 6px;
		padding: 10px 10px 10px 20px;
	}
	#link ul li a::before {
		font: 700 3rem/1 var(--fEn);
		top: 0;
		left: 20px;
	}
	#link ul li a .txt {
		width: calc(100% - 110px);
		position: relative;
		z-index: 2;
	}
	#link ul li a .txt .ttl {
		font: 700 2rem/1 var(--fJa);
		margin-bottom: 5px;
	}
	#link ul li a .txt p {
		font-size: 1.2rem;
	}
	#link ul li a .box {
		width: 105px;
		height: 75px;
		font-size: 1.1rem;
		background-size: 20px;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 50px;
    height: 50px;
	background: url(../img/common/icon_totop.svg) no-repeat center center/contain;
}
@media screen and (max-width: 640px) {
	#pagetop{
		bottom: 30px;
		width: 35px;
		height: 35px;
	}
}
/*-----------------------------------

	footer

-----------------------------------*/
footer .contents_inner {
	position: relative;
	display: flex;
}
footer .leftArea {
	width: 38%;
	border-right: 1px solid #E8E8E8;
	padding-top: 70px;
}
footer .leftArea #footer_logo a {
	width: 240px;
	display: inline-block;
	vertical-align: text-bottom;
	margin-right: 15px;
}
footer .leftArea #footer_logo span {
	font-weight: 700;
	display: inline-block;
	margin-top: 15px;
}
footer nav {
	width: 62%;
	padding-top: 70px;
}
footer nav .mainNav {
	border-bottom: 1px solid #E8E8E8;
	width: calc(100% + (50vw - 600px));
	margin-right: calc(600px - 50vw);
	padding: 0 calc(50vw - 600px) 50px 0;
	display: flex;
	justify-content: right;
}
footer nav .mainNav > ul {
	column-count: 2;
	column-gap: 40px;
}
footer nav .mainNav > ul > li {
	break-inside:avoid;
	margin-bottom: 30px;
}
footer nav .mainNav > ul > li > a {
	font-size: 15px;
	font-weight: 700;
	padding-left: 15px;
	position: relative;
}
footer nav .mainNav > ul > li > a::before {
	content: "";
	width: 7px;
	height: 8px;
	background: var(--mClr1);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
}
footer nav .subNav {
	width: calc(100% + (50vw - 600px));
	margin-right: calc(600px - 50vw);
	padding: 20px calc(50vw - 600px) 20px 0;
	display: flex;
	justify-content: right;
	gap: 50px;
}
footer nav .subNav li a {
	font-size: 12px;
	color: #9B9B9B;
}
footer small {
	position: absolute;
	bottom: 20px;
	left: 0;
	font-size: 12px;
	font-weight: 400;
	font-family: var(--fEn);
	color: #9B9B9B;
}
@media screen and (max-width: 1200px) {
	footer nav .mainNav {
		width: calc(100% + 5vw);
		margin-right: -5vw;
		padding: 0 5vw 50px 0;
	}
	footer nav .subNav {
		width: calc(100% + 5vw);
		margin-right: -5vw;
		padding: 20px 5vw 20px 0;
	}
}
@media screen and (max-width: 840px) {
	footer {
		padding: 60px 0;
	}
	footer .contents_inner {
		flex-direction: column;
		gap: 50px;
	}
	footer .leftArea {
		width: 100%;
		border-right: none;
		padding-top: 0;
	}
	footer .leftArea #footer_logo {
		margin: 0 auto;
		width: max-content;
	}
	footer .leftArea dl {
		width: fit-content;
		margin: 0 auto;
	}
	footer nav {
		width: 100%;
		padding-top: 0;
	}
	footer nav .mainNav {
		border-bottom: none;
		width: 100%;
		margin: 0 auto 50px;
		padding: 0;
		justify-content: center;
	}
	footer nav .subNav {
		width: 100%;
		margin-right: 0;
		margin: 0 auto;
		padding: 0;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 30px;
	}
	footer small {
		display: block;
		position: static;
		text-align: center;
	}
}
@media screen and (max-width: 640px) {
	footer nav .mainNav > ul {
		width: 100%;
		border-top: 1px solid #E6ECF2;
		column-count: unset;
	}
	footer nav .mainNav > ul > li {
		margin-bottom: 0;
		border-bottom: 1px solid #E6ECF2;
		position: relative;
	}
	footer nav .mainNav > ul > li > a {
		font-size: 14px;
		padding: 15px 30px 15px 0;
	}
	footer nav .mainNav > ul > li > a::before {
		left: auto;
		right: 0;
	}
	footer nav .mainNav > ul > li.mainNav_lower a::before {
		content: none;
		display: none;
	}
	footer nav .mainNav > ul > li.mainNav_lower::before,
	footer nav .mainNav > ul > li.mainNav_lower::after {
		content: "";
		width: 14px;
		height: 2px;
		background: var(--mClr1);
		clip-path: none;
		position: absolute;
		top: 20px;
		right: 0;
	}
	footer nav .mainNav > ul > li.mainNav_lower::after {
		transform: rotate(90deg);
		transition: 0.3s;
	}
	footer nav .mainNav > ul > li.mainNav_lower.close::after {
		transform: rotate(180deg);
	}
	footer nav .mainNav > ul li ul {
		display: none;
		padding: 15px 0 0 10px;
	}
}
