 /*
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.body {
	margin: 0;
}
main{
	display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 90vh;
}
ul {
	list-style: none;
 	margin-bottom: 0;
 	padding: 0 !important;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	height: auto;
}
.heading {
	width: 100%;
	padding: 80px 0;
	padding-left: 15%;
	padding-right: 15%;
}
.heading h2 {
	text-align: center;
	font: normal normal bold 60px/90px Jost;
	letter-spacing: 0px;
	color: #23B553;
	margin: 0;
}
.heading h3{
	text-align: center;
	font: normal normal bold 16px/24px Noto Sans JP;
	letter-spacing: 0px;
	color: #2A262C;
	margin: 0 0 40px 0;
}
.heading h4 {
	text-align: left;
	font: normal normal bold 20px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #23B553;
	margin: 0 0 5px 0;
}
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;
}
@media screen and (max-width: 1080px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
 	}
 	.heading {
		padding-left: 5.33%;
		padding-right: 5.33%;
		text-align: center;
	}
	.heading h2 {
		font: normal normal bold 50px/75px Jost;
	}
	main {
		margin-top: 50px;
	}
}
/* header */
.header {
	margin: 20px auto 0 auto;
	right: 0;
  left: 0;
	width: 96.6%;
	height: 60px;
	position: fixed;	
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 10px #00000029;
	border-radius: 30px;
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}
a.logo {
	width: 141px;
	height: 40px;
	margin: 0;
}
ul.menu  {
	display: flex;
	align-items: center;
	margin: 0;
}
li.list_entry {
	width: fit-content;
	height: auto;
	margin: 0;
	align-items: center;
	display: flex;
}
.menu li a.header_text {
	text-align: left;
	font: normal normal bold 14px/20px Noto Sans JP;
	letter-spacing: 0px;
	color: #0B1217;
	text-decoration: none;
	margin-right: 14px;
}
a.header_contact {
	width: 140px;
	height: auto;
}
@media screen and (max-width: 1080px) {
	header {
		width: 100%;
		height: auto;
		position: fixed;	
	  top: 0;
		left: 0;
		z-index: 999;
	}
	.header_sp {
		position: fixed;
		width: 100%;
		background: #fff;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		z-index: 999;
	}
	a.logo {
		width: 105px;
		height: auto;
		margin: 0 0 0 10px;
	}
	.drawer__button {
		position: relative;
		width: 50px;
		height: 50px;
		border: none;
		cursor: pointer;
		background: #23B553 0% 0% no-repeat padding-box;
	}
	.drawer__button > span {
		display: block;
		position: absolute;
		top: 40%;
		left: 50%;
		width: 25px;
		height: 2px;
		background: #fff;
		transform: translateX(-50%);
	}
	.drawer__button::after {
		display: block;
		content: "MENU";
		text-align: center;
		font: normal normal bold 8px/28px Noto Sans JP;
		letter-spacing: 0px;
		color: #FFFFFF;
		text-transform: uppercase;
		padding-top: 24px;
	}
	.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: 50px;
		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: #fff 0% 0% no-repeat padding-box;
		padding: 0;
		margin: -1px 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: 160px; */
		height: 812px;
		overflow: hidden;
		overflow-y: scroll;
	}
	.drawer__nav__item {
		margin: 0 20px 20px 20px;
		border-bottom: 1px solid #F2F2F2;
		padding: 0 0 20px 20px;
		text-align: left;
	}
	.drawer__nav__item:last-child {
		border-bottom: none;		
	}
	.drawer__nav__link {
		text-align: left;
		font: normal normal bold 18px/26px Noto Sans JP;
		letter-spacing: 0px;
		color: #0B1217;
		text-decoration: none;
	}
	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 */
.movie_wrapper video {
	width: 100%;
}
@media screen and (max-width: 1080px) {
}
/* service */
.service_text1 {
	text-align: center;
	font: normal normal bold 30px/45px Noto Serif JP;
	letter-spacing: 0px;
	background: transparent linear-gradient(90deg, #6BD05D 0%, #EDD72C 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 40px 0;
}
.service_area {
	background-image: url(../img/service_bg.png);
	background-repeat: no-repeat;
	background-size: 460px;
	background-position: right bottom;
	padding: 0 0 30px 0;
}
.service_block_wrapper {
	margin: 0 0 20px 0;
}
.service_block_wrapper:last-child {
	margin: 0;
}
.service_block {
	background: rgba(42,38,44,0.5);
	border-radius: 4px;
	padding: 15px;
}
.service_text2 {
	text-align: left;
	font: normal normal bold 14px/21px Noto Sans JP;
	color: #FFFFFF;
	margin: 0;
}
.service_text {
	width: 77%;
	margin: 40px auto 0 auto;
	}
@media screen and (max-width: 1080px) {
	.service_text1 {
		font: normal normal bold 13px/20px Noto Serif JP;
	}
	.service_area {
		background-size: 250px;
		padding: 0 0 20px 0;
	}
}
/* greeting */
#greeting {
	background-image: url(../img/greeting_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
._white,
h2._white,
h3._white {
	color: #fff;
}
.greeting_area {
	display: flex;
}
.greeting_img1 {
	margin: 0 27px 0 0;
}
@media screen and (max-width: 1080px) {
	#greeting {
		background-image: url(../img/greeting_bg_sp.png);
	}
	.greeting_area {
		display: block;
	}
	.greeting_img1 {
		margin: 0 0 20px 0;
	}
}
/* recruit */
#recruit {
	background-image: url(../img/recruit_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 57.5vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.recruit_wrapper {
	width: 100%;
	text-align: center;
}
.recruit_h2 {
	text-align: center;
	font: normal normal bold 60px/90px Jost;
	letter-spacing: 0px;
	color: #FFFFFF;
	text-shadow: 0px 0px 10px #000000B3;
	margin: 0 0 10px 0;
}
.recruit_btn {
	max-width: 600px;
	width: 50%;
	margin: 0 auto;
}
@media screen and (max-width: 1080px) {
	#recruit {
		background-image: url(../img/recruit_bg_sp.png);
		height: 128.8vw;
	}
	.recruit_btn {
		max-width: 336px;
		width: 89%;
	}
}
/* company */
.company_block {
	display: flex;
	padding: 0 0 20px 0;
	border-bottom: 1px solid #C2E3CD;
	margin: 0 0 20px 0;
}
.company_left {
	width: 18%;
}
.company_right {
	width: 82%;
}
.company_block h5 {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #23B553;
	margin: 0 0 4px 0;
}
.company_text {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #2A262C;
	margin: 0;
}
span._green {
	font: normal normal bold 16px/28px Noto Sans JP;
	color: #23B553;
}
span._bold {
	font: normal normal bold 16px/28px Noto Sans JP;
}
.map_margin {
	margin: 10px 0 20px 0;
}
@media screen and (max-width: 1080px) {
	.company_block {
		display: block;
	}
	.company_left {
		width: 100%;
	}
	.company_right {
		width: 100%;
	}
}
/* contact */
#contact {
	background-image: url(../img/contact_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
}
.contact-items__wrap {
	margin-bottom: 24px;
}
.contact-items__title {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #0B1217;
	margin-bottom: 10px;
}
.contact-items__title span {
	text-align: left;
	font: normal normal normal 15px/21px Noto Sans JP;
	letter-spacing: 0px;
	color: #ED8173;
	margin-left: 10px;
}
select.form-select {
	width: 100%;
	height: 80px;
	padding: 1.2% 2.4%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	border: 1px solid #23B553;
}
input.form-control {
	width: 95.1%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	border: 1px solid #23B553;
	height: 56px;
	padding: 1.2% 2.4%;
}
.btn_area {
	display: flex;
	justify-content: center;
}
.button_wrapper {
	width: 20%;
	margin: 0 auto;
}
.button_wrapper button {
	background: none;
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.validation-block {
	color: #fff;
}
textarea.form-control {
	width: 95.1%;
	height: 240px !important;
	border: 1px solid #23B553;
	padding: 1.2% 2.4%;
}

.has-error .validation-block {
	text-align: left;
	color: #D30001;
}
.contact_concent_area {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #23B553;
	border-radius: 5px;
	width: 97.5%;
	height: 216px;
	overflow: hidden;
	padding: 1.2%;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	margin: 0 0 20px 0;
}
.concent_note {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #2A262C;
	opacity: 0.5;
	margin: 0;
}
.consent_area {
	display: flex;
	justify-content: center;
}
.consent_area label {
	margin: 0 0 0 10px;
}
.consent_area label p {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #23B553;
	text-decoration: none;
	margin: 0;
}
.consent_area {
	position: relative;
}
#consent-error {
  position: absolute;
  left: 50%;
  margin-top: 20px;
	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: 1080px) {
	#contact {
		background-image: url(../img/contact_bg_sp.png);
	}
	.button_wrapper {
		width: 69%;
	}
	input.form-control {
		width: 94%;
		padding: 2.9%;
	}
	select.form-select {
		width: 100%;
		padding: 2.9%;
	}
	textarea.form-control {
		width: 94%;
		padding: 2.9%;
	}
	.contact_concent_area {
		width: 94%;
		padding: 2.9%;
	}
}

/* footer */
#footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: #23B553 0% 0% no-repeat padding-box;
	height: 100px;
}

#footer p {
	text-align: center;
	font: normal normal normal 14px/20px Noto Sans JP;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}
.arrow_wrapper {
	width: 50px;
	height: 50px;
  position:fixed;
  right:10px;
  bottom: 10px;
  cursor:pointer;
}
.cta {
	display: none;
} 
@media screen and (max-width: 1080px) {
	#footer {
				height: 40vw;
				align-items: center;

	}
	#footer ul {
				display: block;
				text-align: center;
				margin: 0;
	}
	#footer p {
		margin: 10px 0 0 0;
	}
	.cta {
		display: block;
		width: 100%;
	  position:fixed;
	  height: 13.333vw;
	  bottom: 0;
		z-index: 3;
	}
	.cta a {
		width: 100%;
	  height: 13.333vw;
	}
	.arrow_wrapper {
	  bottom:16vw;
	}
}

.block0 {
	height: 60px;
}
h2.privacy {
	text-align: center;
	margin: 0 0 40px 0;
}
#privacy1 {
	background: #F4FCFF 0% 0% no-repeat padding-box;
}
p.privacy_text {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #2B2E36;
	margin: 0 0 40px 0;
}
a.privacy_mail {
	text-align: left;
	text-decoration: underline;
	font: normal normal bold 16px/28px Noto Sans JP;
	color: #0164B4;
}
@media screen and (max-width: 1080px) {
	.block0 {
		height: 50px;
	}
}
/* animation */

.animation {
  opacity: 0; /* 要素を透明にする */
  transition: all 0.7s ease; /* 秒かけてアニメーションを行う */
}
 
.animation.show {
  opacity: 1; /* 要素を不透明する */
  transform: none; /* アニメーションをなくす */
}

.sd-bu {
  transform: translate(0, 80px); /* Y座標を100px移動するアニメーション */
}



.circles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.fuyo {
  position: fixed;
  display: block;
  list-style: none;
  animation: animate 25s linear infinite;
  bottom: -150px;
}


.fuyo1 {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.fuyo2 {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}


.fuyo3 {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}


.fuyo4 {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}


.fuyo5 {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}


.fuyo6 {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 0s;
}


.fuyo7 {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
}


.fuyo8 {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 0s;
  animation-duration: 45s;
}


.fuyo9 {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 0s;
  animation-duration: 35s;
}


.fuyo10 {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}


@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }


  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}


.hexagon {
  width: 50px;
  height: 88px;
  background: #aaa;
  position: relative;
}


.hexagon_cont {
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}


.hexagon_box {
  display: flex;
  align-items: center;
  justify-content: center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 3s;
  aspect-ratio: 20 / 19;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0% 50%)
}


.hexagon_inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.hexagon_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


.box1 {
  animation-name: bounce1;
}
@keyframes bounce1 {
  0% {
    transform: translateY(27%);
  }
  100% {
    transform: translateY(30%);
  }
}


.box2 {
  animation-name: bounce2;
}
@keyframes bounce2 {
  0% {
    transform: translate(-25%, -25%);
  }
  100% {
    transform: translate(-25%, -30%);
  }
}
.box3 {
  animation-name: bounce3;
  animation-duration: 2s;
}
@keyframes bounce3 {
  0% {
    transform: translate(320%, -70%);
  }
  100% {
    transform: translate(320%, -60%);
  }
}


.gradient {
  background: radial-gradient(circle at right bottom, transparent 75%, black);
}
