 /*
Theme Name: 
Theme URI: NA
Author: T.Oka
Author URI: NA
Description: NA
Version: 1.0.0
*/
@charset "UTF-8";
html {
	margin: 0 !important;
	padding: 0 !important;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	background: #fff;
	position: relative;
}
main {
	display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 93vh;
}
ul {
	list-style: none;
 	margin-bottom: 0;
 	padding: 0 !important;
}
h1 {
	margin: 0;
	padding: 0;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	height: auto;
}
.heading {
	width: 100%;
	padding: 80px;
	padding-left: 13.39%;
	padding-right: 13.39%;
}
.heading h2 {
	text-align: center;
	font: normal normal bold 110px/78px Noto Serif JP;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
.heading h3{
	text-align: center;
	font: normal normal bold 18px/48px Noto Serif JP;
	letter-spacing: 0px;
	color: #000000;
	margin: 0 0 100px 0;
}
h2.text-white,
h3.text-white {
	color: #fff;
	text-align: left;
}

a {
	display: inline-block;
}
a:hover {
	opacity: 0.8;
}
figure {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
img {
	width: 100%;
	height: auto;
	display: block;
}
.img_wrapper {
	width: 98%;
	height: auto;
	overflow: hidden;
}
.img_wrapper:hover img {
  transform: scale(1.1);
	transition: transform .8s ease;
}

@media screen and (max-width: 1350px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
 	}
 	.heading {
		padding-top: 80px;
		padding-left: 5.33%;
		padding-right: 5.33%;
	}
	.heading h2 {
		font: normal normal bold 50px/63px Noto Serif JP;
	}
	.heading h3 {
		font-size: 14px;
		margin: 0 0 80px 0;
	}
}
/* header */
header {
	width: 100%;
	position: fixed;	
  top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	mix-blend-mode: exclusion;
}
.header {
	display: flex;
	width: 100%;
	height: 80px;
	justify-content: space-between;
	align-items: center;
}
a.logo {
	width: 60px;
	height: 62px;
	margin: 11px 0 10px 2.5vw;
}

ul.menu  {
	display: flex;
	line-height: 80px;
	height: 80px;
	margin: 0;
}
li.list_entry {
	width: fit-content;
	height: auto;
	line-height: 80px;
	margin: 0;
	align-items: center;
	display: flex;
}
.menu li a.header_text {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #fff;
	text-decoration: none;
	margin-right: 2.5vw;
}
a.header_contact {
	width: 140px;
	height: auto;
	margin: 0 2.5vw 0 0;
}
@media screen and (max-width: 1350px) {
	header {
		mix-blend-mode: normal;
	}
	.header_sp {
		position: fixed;
		width: 100%;
		height: 50px;
		display: flex;
		justify-content: space-between;
		z-index: 999;
	}
	a.logo {
		position: relative;
		width: 40px;
		height: 42px;
		margin: 5px 0 5px 5.3%;
		z-index: 3;
	}
	.drawer__button {
		position: relative;
		width: 50px;
		height: 50px;
		border: none;
		cursor: pointer;
		background: #fff 0% 0% no-repeat padding-box;
		z-index: 3;
	}
	.drawer__button > span {
		display: block;
		position: absolute;
		top: 40%;
		left: 50%;
		width: 25px;
		height: 2px;
		background: #000;
		transform: translateX(-50%);
	}
	.drawer__button::after {
		display: block;
		content: "MENU";
		text-align: center;
		font: normal normal bold 10px/28px Noto Sans JP;
		letter-spacing: 0px;
		color: #000;
		text-transform: uppercase;
		padding-top: 25px;
	}
	.drawer__button > span:first-child {
		transform: translate(-50%, calc(-50% - 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button > span:nth-child(2) {
		transform: translate(-50%, -50%);
		transition: opacity 0.3s ease;
	}
	.drawer__button > span:last-child {
		transform: translate(-50%, calc(-50% + 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button.active > span:first-child {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.drawer__button.active > span:nth-child(2) {
		opacity: 0;
	}
	.drawer__button.active > span:last-child {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.drawer__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		transition: opacity 0.3s ease;
		opacity: 0;
		visibility: hidden;
	}
	.drawer__nav.active {
		opacity: 1;
		visibility: visible;
	}
	.drawer__nav__inner {
		position: relative;
		width: 100%;
		height: 100%;
		background: #000 0% 0% no-repeat padding-box;
		padding: 0;
		margin: 0 0 0 auto;
		overflow: scroll;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		text-align: center;
	}
	.drawer__nav.active .drawer__nav__inner {
		transform: translateX(0);
	}
	.drawer__nav__menu {
		list-style: none;
		padding-left: 0;
		margin-top: 150px;
	}
	.drawer__nav__item {
		margin-bottom: 20px;
	}
	.drawer__nav__link {
		text-align: center;
		font: normal normal bold 18px/26px Noto Sans JP;
		letter-spacing: 0px;
		color: #fff;
		text-decoration: none;
		line-height: 36px;
	}
	a.header_contact {
		background: #004096 0% 0% no-repeat padding-box;
		border-radius: 25px;
		margin-right: 0;
		padding: 6px 12px;
		line-height: 36px;
	}
	a.header_now {
		margin-right: 0;
		padding: 6px 12px;
		line-height: 36px;
	}
	body.active {
		height: 100%;
		overflow: hidden;
	}
}

/* fv */
.fv {
	position: relative;
}
.fv h1 {
	position: absolute;
	width: 100%;
	height: auto;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	margin: 0;
}
.load {
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.load img {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}
.fv_text_area {
	position: absolute;
	width: 83.33%;
	left: 10%;
	bottom: 20%;
}
.fv_text_area p {
	text-align: center;
	font: normal normal bold 16px/24px Noto Serif JP;
	letter-spacing: 1.6px;
	color: #FFFFFF;
}
.fv_text_area p.fv_text {
	font: normal normal bold 20px/30px Noto Serif JP;
	letter-spacing: 2px;
}
.page01 .block0 {
	position: absolute;
	width: 100%;
	height: 200px;
	background: transparent linear-gradient(180deg, #00000000 0%, #000000F2 91%, #000000 100%) 0% 0% no-repeat padding-box;
	opacity: 1;
	bottom: 0;
}
.page02 .block0 {
	width: 100%;
	height: 120px;
}
.kv_sp {
	height: 0px; 
  overflow-y: hidden;
}
.kv_pc {
	height: 100vh; 
  overflow-y: visible;
}
@media screen and (max-width: 1350px) {
	.kv_pc {
		height: 0px; 
	  overflow-y: hidden;
	}
	.kv_sp {
		height: 100vh; 
	  overflow-y: visible;
	}
}
/* fv2 */
#fv2 {
	background: #000 0% 0% no-repeat padding-box;
	margin: -1px 0 0 0;
}
.about_block {
	background: #FAFAFA 0% 0% no-repeat padding-box;
	mix-blend-mode: multiply;
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 20px 0;
}
.content_wrapper {
	display: flex;
	align-items: stretch;
	margin: 0 0 80px 0;
}
.content_img {
	width: 38.3%;
	height: auto;
  flex-direction: column;
}
.content_text {
	width: 65%;
	height: auto;
  flex-direction: column;
  display: flex;
  margin-left: 3.57%;
}
.content_text h2 {
	text-align: left;
	font: normal normal normal 70px/90px Noto Serif JP;
	letter-spacing: 4.9px;
	color: #FFFFFF;	
	margin: 0 0 40px 0;
}
.content_text p {
	text-align: left;
	font: normal normal normal 18px/45px Noto Serif JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0 0 24px 0;
}
.content_text a {
	width: 45%;
}
.swap .content_img{
	order: 2;
}
.swap .content_text {
	order: 1;
  margin-left: 0;
  margin-right: 3.57%;
}
@media screen and (max-width: 1350px) {
	.content_wrapper {
		display: block;
	}
	.content_img {
		width: 100%;
	}
	.content_text {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 40px;
	}
	.content_text h2 {
		font: normal normal bold 50px/63px Noto Serif JP;
	}
}
/* service */
#service {
	background: #FAFAFA 0% 0% no-repeat padding-box;
	margin: -1px 0 0 0;
}
.service_area {
	width: 100%;
	display: flex;
}
.service_block {
	width: 48%;
	margin-right: 3.8%;
}
.service_block:last-child {
	margin-right: 0;
}
.service_block h4 {
	text-align: left;
	font: normal normal bold 32px/40px Noto Serif JP;
	letter-spacing: 0px;
	color: #000000;
	margin: 24px 0 20px 0;
}
.service_block p {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #000000;
	margin: 0;
}
@media screen and (max-width: 1350px) {
	.service_area {
		display: block;
	}
	.service_block {
		width: 100%;
		margin: 0 0 40px 0;
	}
}
/* greeting */
#greeting {
	background: #000 0% 0% no-repeat padding-box;
}
#greeting .content_img {
	width: 40%;
}
#greeting .content_text {
	width: 56%;
	margin-right: 4%;
}
#greeting .content_text p.president_text {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
}
p.bold {
	font-weight: 700;
	margin: 0;
}
p.president_name {
	font: normal normal normal 60px/60px Yuji Mai;
}

@media screen and (max-width: 1350px) {
	#greeting .content_img {
		width: 100%;
	}
	#greeting .content_text {
		width: 100%;
	}
	p.president_name {
		margin: 0 0 40px 0;
	}
}
/* company */
#company {
	background: #000 0% 0% no-repeat padding-box;
}
.company_block {
	display: flex;
	padding: 0 0 20px 0;
	border-bottom: 1px solid #F2F2F2;
	margin: 0 0 20px 0;
}
.company_block h4 {
	width: 20%;
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0 0 4px 0;
}
.company_block p {
	width: 80%;
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}
.map_area iframe {
	width: 100%;
}
@media screen and (max-width: 1350px) {
	.company_block {
		display: block;
	}
	.company_block h4,
	.company_block p {
		width: 100%;
	}
}

/* contact */
#contact {
	background: #000 0% 0% no-repeat padding-box;
}
.contact-items__wrap {
	width: 100%;
	display: flex;
	margin-bottom: 24px;
}
.contact-items__title {
	width: 19%;
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #fff;
	margin-bottom: 10px;
}
.contact-items__title span {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #3399FF;
	margin-left: 10px;
}
select.form-select {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	width: 33%;
	height: 56px;
}
.contact-items__editor {
	width: 81%;
}
input.form-control {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	height: 56px;
}
.btn_area {
	display: flex;
	justify-content: center;
}
.button_wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}
.button_wrapper button {
	background: none;
	border: none;
	padding-left: 0;
	padding-right: 0;
	margin-top: 30px;
	width: 33%;
}
.validation-block {
	color: #fff;
}
textarea.form-control {
	height: 240px !important;
}

.has-error .validation-block {
	text-align: left;
	color: #D30001;
}
.consent_area {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.consent_area label {
	margin: 0 0 0 10px;
}
.consent_area label a {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #fff;
	text-decoration: none;
}
.consent_area {
	position: relative;
}
#consent-error {
  position: absolute;
  left: 50%;
  margin-top: 32px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  color: #D30001;
  font-weight: normal;
  font-size: 16px;
}

.btn {
  font-size: 15px;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn01 .btn {
  background-color: #009E96;
  width: 120px;
  margin-left: 20px;
  margin-left: 15px;
  color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
	text-align: center;
}
.modal-footer {
	display: flex;
	justify-content: center;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.btn-primary {
  background: #3958A7;
  color: #fff;
  border: 2px solid #3958A7;
}
.thanks_heading {
	padding: 25vh 4% 15vh 4%;
	text-align: center;
}
input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
@media screen and (max-width: 1350px) {
	.contact-items__title {
		width: 100%;
	}
	.contact-items__editor {
		width: 100%;
	}
	input.form-control {
		width: 100%;
	}
	select.form-select {
		width: 100%;
	}
	textarea.form-control {
		width: 100%;
	}
	.contact-items__wrap {
		display: block;
	}
	.button_wrapper button {
		width: 66%;
	}
}

/* footer */
#footer {
	background: #000000 0% 0% no-repeat padding-box;
	margin: -1px 0 0 0;
}
img.footer_logo {
	width: 11.2%;
	height: auto;
	margin: 0 0 22px 0;
}
.sns_block {
	width: 100%;
	margin: 0 0 30px 0;
	float: left;
}
.sns_block a {
	width: 22px;
	height: auto;
	margin-right: 11px;
}
.arrow_wrapper {
	width: 310px;
	height: 110px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor:pointer;
}
.arrow_wrapper2 {
	width: 50px;
	height: 50px;
  position: fixed;
  right: 10px;
  bottom: 60px;
  cursor:pointer;
}
.cta {
	display: none;
}
p.footer_company,
.footer_bottom p,
.footer_bottom a {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #4D4D4D;
	margin: 0 0 5px 0;
	text-decoration: none;
}
.footer_bottom {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1350px) {
	img.footer_logo {
		width: 33.4%;
	}
	.footer_bottom {
		display: block;
	}
	.footer_bottom a {
		margin: 30px 0 0 0;
	}
	.cta,
	.cta2 {
		display: flex;
		width: 100%;
	  position:fixed;
	  bottom: 0;
		z-index: 3;
	}
	.cta {
		height: 13.333vw;
	}
	.cta2 {
	  height: 10.667vw;
	}
	.cta a {
		width: 50%;
	  height: 13.333vw;
	}
	.cta2 a {
		width: 100%;
	  height: 10.667vw;
	}
	.arrow_wrapper2 {
	width: 13.333vw;
	height: 13.333vw;
  right: 2.667vw;
  bottom: 16vw;
	}
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
  	transform: translateY(80px);
  }
  to {
    opacity: 1;
  	transform: translateY(0);
  }
}

.fadeIn {
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
h2.privacy_h2 {
	text-align: center;
	font: normal normal bold 70px/70px Noto Sans JP;
	letter-spacing: 0px;
	color: #222222;
	margin: 0 0 50px 0;
}


/* 追加　*/
#fv_under {
	position: relative;
}
.fv_title {
	position: absolute;
	top: 38%;
	left: 15%;
}
.fv_title h2 {
	text-align: left;
	font: normal normal bold 110px/78px Noto Serif JP;
	letter-spacing: 0px;
	color: #000000;
	margin: 0;
}
.fv_title h3 {
	text-align: left;
	font: normal normal bold 18px/48px Noto Serif JP;
	letter-spacing: 0px;
	color: #000000;
	margin: 0;
}
#requirements {
	background: #000000 0% 0% no-repeat padding-box;
}
h2.recruit_h2 {
	text-align: left;
	font: normal normal bold 110px/78px Noto Serif JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0 0 10px 0;
}
h3.recruit_h3 {
	text-align: left;
	font: normal normal bold 18px/48px Noto Serif JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0 0 100px 0;
}
h4.recruit_h4 {
	text-align: left;
	font: normal normal normal 24px/36px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	padding: 0 0 10px 0;
	border-bottom:  2px solid #fff;
}
.recruit_content_block {
	display: flex;
	border-bottom:  1px solid #707070;
	padding: 25px 0;
}
.recruit_content_left {
	width: 20%;
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}
.recruit_content_right {
	width: 80%;
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}

@media screen and (max-width: 1350px) {
	.fv_title h2,
	h2.recruit_h2 {
		font: normal normal bold 50px/60px Noto Serif JP;
	}	
	.fv_title h3,
	h3.recruit_h3 {
		font: normal normal bold 14px/24px Noto Serif JP;
	}
	h3.recruit_h3 {
		margin: 0 0 50px 0;
	}
	h4.recruit_h4 {
		font: normal normal normal 18px/24px Noto Sans JP;
	}
	.recruit_content_block {
		display: block;
	}
	.recruit_content_left,
	.recruit_content_right {
		width: 100%;
	}
		.recruit_content_left {
			margin: 0 0 5px 0;
		}
}