@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;
}
.tab {display: none;}
.sp {display:none;}
.pc {display:block;}

.row_box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

@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;}
}
/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    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: 20px;
}
header #nav_menu > ul li {
	position: relative;
}
header #nav_menu > ul li a {
	display: block;
	font-size: 14px;
	font-weight: 700;
	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 > a::before,
header #nav_menu > ul > li:not(.recruit,.contact,.language) > a:hover::before {
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
}
header #nav_menu > ul > li:not(.recruit,.contact,.language) > a:hover::before{
	background: var(--mClr2);
}
header #nav_menu ul li.has-child > a::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 5px 0 5px;
	border-color: var(--mClr2) transparent transparent transparent;
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
	transition: all .3s;
}
header #nav_menu ul li.has-child:hover > a::after,
header #nav_menu ul li.has-child:active > a::after {
	transform: rotate(180deg);
}
header #nav_menu ul li.has-child ul {
	position: absolute;
	left: -20px;
	top:calc(100% - 3px);
	z-index: 4;
	background:var(--mClr2);
	width:max-content;
	padding: 30px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	flex-direction: column;
	gap: 30px;
	border-radius: 10px;
}
header #nav_menu ul li.has-child:hover > ul,
header #nav_menu ul li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
header #nav_menu ul li.has-child> ul li a {
	line-height: 1;
	color: #FFF;
}
header #nav_menu ul li.recruit,
header #nav_menu ul li.contact {
	margin-right: -10px;
}
header #nav_menu ul li.recruit,
header #nav_menu ul li.contact,
header #nav_menu ul li.language {
	align-self: center;
}
header #nav_menu ul li.recruit a,
header #nav_menu ul li.contact a,
header #nav_menu ul li.language a {
	width: 133px;
	border-radius: calc(1px/0);
	line-height: 50px;
	text-align: center;
	padding: 0 20px 0 0;
	font-size: 14px;
}
header #nav_menu ul li.recruit a {
	background: var(--sClr1) url(../img/common/icon_recruit.svg) no-repeat calc(100% - 18px) center/16px;
	border: 1px solid var(--sClr2);
}
header #nav_menu ul li.contact a {
	background: var(--mClr1) url(../img/common/icon_contact.svg) no-repeat calc(100% - 12px) center/17px;
	border: 1px solid var(--mClr3);
	color: #FFF;
}
header #nav_menu ul li.language a {
	width: 78px;
	background: #FFF;
	border: 1px solid var(--sClr2);
	padding: 0;
}
header #nav_menu ul li.language a .inactive {
	color: #9B9B9B;
}
header #nav_menu ul li.recruit a:hover,
header #nav_menu ul li.contact a:hover,
header #nav_menu ul li.language a:hover {
	opacity: 0.6;
}
header .menu_btn_wrap {
    display: none;
}

/******スクロール時******/
header.hd_bg{
	/*background: #012e5d;*/
	background: #1c2b3b;
}
header.hd_bg #logo img{
	filter: brightness(0) invert(1);
}
header.hd_bg #nav_menu > ul li:not(.recruit,.contact,.language) a{
	color: #fff;
}
@media screen and (max-width: 930px){
	header.hd_bg #nav_menu > ul li:not(.recruit,.contact,.language) a{
		color: var(--sClr2);
	}
}
/**********************/

@media screen and (max-width: 1250px) {
		header #logo {
		width: 200px;
		/*margin-left: 10px;*/
	}	
		header .menu_btn_wrap .txt {
		color: var(--mClr4);
		font-size: 13px;
		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: 200px;
		/*margin-left: 10px;*/
	}	

	header #logo img {
		width: 90%;
	}

	header {
		zoom: 0.8;
	}
} 


@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(.recruit,.contact,.language)::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.has-child:hover > a::after,
	header #nav_menu ul li.has-child:active > a::after {
		transform: none;
	}
	header #nav_menu ul li.has-child.active > a::after {
		transform: rotate(180deg);
	}
	header #nav_menu ul li.has-child ul {
		position: relative;
		left:0;
		top:0;
		width:100%;
		visibility:visible;
		opacity:1;
		display: none;
		transition:none;
		background: none;
		padding: 0 0 0 10px;
		margin-top: 20px;
	}
	header #nav_menu ul li.has-child> ul li:not(:last-child) {
		margin-bottom: 15px;
	}
	header #nav_menu ul li.has-child> ul li a {
		color: var(--sClr2);
	}
	header #nav_menu ul li.recruit,
	header #nav_menu ul li.contact {
		margin: 0 auto -30px;
	}
	header #nav_menu ul li.recruit a,
	header #nav_menu ul li.contact a {
		width: 200px;
	}
	header #nav_menu ul li.recruit a {
		background: var(--sClr1) url(../img/common/icon_recruit.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;
	}
}
/*-----------------------------------

	contact

-----------------------------------*/
#contact {
	width: 95%;
	margin: 0 auto;
	padding: 50px 0;
	background: #231815;
	border-radius: 30px;
	color: #FFF;
}
#contact .contents_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
#contact h2 {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin-bottom: 0 !important;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}
#contact h2::first-letter {
	color: var(--mClr1);
}
#contact h2::before {
content: "Contact";
    display: block;
    padding-left: 35px;
    margin-bottom: 20px;
    /* line-heightを少し広げるか、高さを明示 */
    line-height: 1.2; 
    /* 背景画像の設定（23px） */
    background: url(../img/common/h2_img.svg) no-repeat left center / 23px;
    font: 700 22px/1.2 var(--fEn);
}
#contact .inner_list {
	display: grid;
	grid-template-columns: max-content 250px;
	grid-template-rows: repeat(2, auto);
	gap: 30px 40px;
	position: relative;
}
#contact .inner_list::before {
	content: "Contact";
	font: 700 82px/1 var(--fEn);
	color: #3F3F3F;
	position: absolute;
	top: 30px;
	right: calc(100% + 40px);
}
#contact .inner_list h3 {
	width: 100%;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: #373737;
	color: #FFF;
	padding: 15px 20px 15px 30px;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
}
#contact .inner_list h3::before,
#contact .inner_list h3::after {
	content: "";
	width: 6px;
	position: absolute;
	bottom: 10px;
	left: 10px;
}
#contact .inner_list h3::before {
	height: calc(100% - 20px);
	background: var(--mClr3);
	border-radius: 2px;
}
#contact .inner_list h3::after {
	height: calc(100% - 26px);
	background: var(--mClr1);
	border-radius: 0 0 2px 2px;
}
#contact .inner_list ul {
	width: auto;
	display: inline-block;
}
#contact .inner_list ul li {
	font-size: 18px !important;
	font-weight: 700;
	font-family: var(--fEn);
	line-height: 1.66;
	letter-spacing: 0.08em;
}
#contact .inner_list ul li a {
	display: inline-block !important;
	color: #fff !important;
}
#contact .inner_list .box01 {
	grid-area: 1 / 1 / 2 / 2;
	width: 100%;
}
#contact .inner_list .box02 {
	grid-area: 2 / 1 / 3 / 2;
	width: max-content;
}
#contact .inner_list .box03 {
	grid-area: 1 / 2 / 3 / 3;
}
#contact .inner_list .box03 ul {
	width: 100%;
}
@media screen and (max-width: 900px) {
	#contact .inner_list {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	#contact .inner_list::before {
		font: 700 78px/1 var(--fEn);
		top: 100px;
		right: calc(100% + 30px);
	}
}
@media screen and (max-width: 840px) {
	#contact .contents_inner {
		display: flex;
		flex-direction: column;
		align-items: normal;
	}
	#contact .inner_list::before {
		font: 700 64px/1 var(--fEn);
		top: -140px;
		right: 0;
	}
	#contact .inner_list .box02 {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	#contact {
		width: 100%;
		border-radius: 0;
	}
	#contact .inner_list::before {
		font: 700 40px / 1 var(--fEn);
		top: -130px;
	}
	#contact h2 {
		font-size: 40px;
	}
	#contact h2::before {
		display: block;
		padding-left: 35px;
		margin-bottom: 20px;
		background: url(../img/common/h2_img.svg) no-repeat left center/25px;
		font: 700 22px/1 var(--fEn);
	}
	#contact .inner_list h3 {
		line-height: 1.4;
		margin-bottom: 15px;
		border-radius: 2px;
	}
	#contact .inner_list ul {
		display: block;
	}
	#contact .inner_list li {
		font-size: 16px !important;
	}
}
/*-----------------------------------

	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 {
	width: 240px;
	margin-bottom: 30px;
}
footer .leftArea dl {
	line-height: 1.6;
}
footer .leftArea dl dt {
	font-weight: 700;
}
footer .leftArea dl dd {
	font-size: 13px;
	background: url(../img/common/icon_location.svg) no-repeat left 3px/10.5px;
	padding: 0 0 10px 20px;
}
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 .mainNav > ul li ul {
	padding: 20px 0 0 15px;
}
footer nav .mainNav > ul li ul li {
	margin-bottom: 20px;
}
footer nav .mainNav > ul li ul li a {
	font-size: 12px;
}
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: 40px 0 20px;
	}
	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 30px;
	}
	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 .contents_inner {
		gap: 30px;
    }
	footer .leftArea dl dd {
		padding: 0 0 20px 20px;
	}
	footer .leftArea dl dd:last-child {
		padding-bottom: 0;
	}
	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: 25px 30px 25px 0;
	}
	footer nav .mainNav > ul > li > a::before {
		left: auto;
		right: 10px;
	}
	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: 30px;
		right: 8px;
	}
	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;
	}
	footer nav .mainNav > ul li ul li a {
		font-size: 14px;
	}
	footer nav .subNav {
		gap: 10px 20px;
	}
}
