@charset "UTF-8";
/* reset */
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd, img, form, table, tr, th, td {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
	border-collapse: collapse;
}

textarea { font-size: 100%; vertical-align:middle;}
img { border-style: none; display: block; }
hr { display: none; }
em{font-style: normal}
input{line-height:auto;vertical-align:middle;}
strong.more{color:#c30}
a{text-decoration: none;}
/*add change*/
html {
	scroll-behavior: smooth;
}

body {
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 上の部分は気にせずここから書く */

.wrap {
	padding: 0 40px;
}

.link {
	color: #000000DE;
	cursor: pointer;
}

a {
	cursor: pointer;
}

.sub{
	color: #0000008A;
}

body {
	background-color: #f5f5f5;

	/* ↓背景グリッド↓ */
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
	linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
	background-size: 23px 23px;
	background-repeat: repeat;
	background-position: center center;
}

h1{
	font-size: 32px;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 56px;
	text-align: center;
}

h1 span {
	border-top: 2px solid #2da690;
	padding: 20px;
	text-align: center;
}

.other {
	opacity: 0;
	transition: all 1s;
	margin: 56px 0 0 auto;
}



.other:hover{
	color: #2da690;
	transition: 0.1s;
}

.other:hover i{
	transform: translate(7px,0);
	transition: 0.3s;
}

.wrap{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.fa-circle-arrow-right::before{
	content:"\f0a9";
	color: #2da690;
}

.fa-arrow-right{
	content:"f061" ;
	color: #2da690;
	margin-left: 5px;
}

.fa-arrow-up-right-from-square {
	font-size: 1.2em;
	content: "f08e";
	color: #2da690;
	margin-left: 5px;
}

/* フェードイン用 
アクティブ状態：fadein-active
・上から：.fadein-from-up
・右から：.fadein-from-right
・左から：.fadein-from-left
・下から：.fadein-from-bottom
*/

.fadein-scroll {
	opacity: 0;
	transition: all 1s;
}

.fadein-from-up {
	transform: translate(0,-50px);
}

.fadein-from-down {
	transform: translate(0,50px);
}

.fadein-from-right{
	transform: translate(50px,0);
}

.fadein-from-left{
	transform: translate(-50px,0);
}

.fadein-active01 {
	opacity: 1;
	transform: translate(0,0);
}

.fadein-active02 {
	opacity: 0.9;
	transform: translate(0,0);
}

/* body部↓ */

/* top */

header {
	background-color: white;
	width: 100%;
	height: 120px;
	position: fixed;
	z-index: 2;
	display: flex;
	align-items: center;
	
	opacity: 0;
	transition: 1s;
	transition-delay: 1s;
}

.top header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hamburger {
	display: none;
	text-decoration: none;
}

.nav-02 {
	display: none;
}

header nav ul{
	display:flex;
	justify-content: flex-end;
}

header nav li{
	padding-right: 20px;
}
/*modify style*/
header nav ul li.link a {
	color: black;
	text-decoration: none;
}
/*add info modifi color menu*/
nav li.link a:hover{
	color: #2da690;
	transition: color 0.1s;
}

.img-wrap {
	width: 100%;
	height: 100vh;
}

.main-visual img{
	width: 100%;
	height: 100vh;
	object-fit:cover;
	position: absolute;
}

.top p{
	font-size: 32px;
	color: white;
	padding: 40px;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	left: 0;

	transition: 1s;
}

.top p strong{
	color: #FCE244;
}


/* Our Service */
.service {
	padding: 100px 0;
}

.service li{
	height: 25vw;
	min-height: 340px;
	margin-bottom: 56px;

	display: flex;
	align-items: center;
}

.service li img{
	object-fit: cover;
	width: 50%;
	height: 25vw;
}

.service li a{
	position: relative;
	width: 50%;
	max-width: 600px;
	height: 340px;
	padding:40px;
	background-color: white;

	transition-delay: 0.38s;
}
/*modify picture size*/
.service-item1 a img{
	width: auto;
	height: 30%;
}

.service-item2 a img{
	width: auto;
	height: 30%;
	padding: 5% 0;
}

.service-item3 a img{
	width: auto;
	height: 30%;
}

.service .catch{
	font-size: 32px;
	font-weight: bold;
	color: black;
	margin-bottom: 20px;
}

.service .fa-arrow-up-right-from-square {
	display: block;
	margin-top: 20px;
	opacity: 0.2;
}

.service a:hover .fa-arrow-up-right-from-square {
	color: #2da690;
	opacity: 1;
	transform: translate(15px , 0);
	transition: 0.2s;
}

.service-item1 a,.service-item3 a{
	left: -5vw;
}

.service-item2 {
	flex-direction: row-reverse;
}

.service-item2 a{
	right: -5vw;
}

.other {
	color: black;
	display: block;
	text-align: right;
	font-weight: bold;
}

/* Our Vision */
.vision {
	background-image: url(image/bg01.jpg);
	object-fit: cover;
	height: 650px;
	padding: 100px 0;
}

.vision h2{
	display: block;
	text-align: center;
	font-size: 42px; /* 相対値に設定した方がいいかもしれない */
	margin: 54px 0;

	transition-delay: 0.5s;
}

.vision ul {
	display: flex;
	justify-content: center;
}

.vision ul li{
	padding: 0 30px;
	border-right: 1px solid gainsboro;
}

.vision ul li:last-child{
	border-right: none;
}

.vision ul li .catch {
	font-size: 1rem;
	color: #2da690;
	font-weight: bold;
	text-align: center;
	margin-bottom: 24px;
}

.vision ul li .sub{
	font-size: 1em;
	text-align: center;
}

/* News */
.news {
	padding: 120px 0;
}

.news li {
	display: flex;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.about-content-inner-wrap {
	display: flex;
}

.news li > img {
	width: 150px;
	height: 80px;
	object-fit:cover;
}

.news-meta time{
	font-size: 0.8em;
	margin: 0 20px;
	color: gainsboro;
}

.news-meta a{
	font-size: 0.8em;
	font-weight: 700;
	margin-right: 10px;
}

.news-title {
	margin: 10px 10px 10px 20px;
	color: #0000008A;
}

.news-content:hover .news-title > a {
	color: #2da690;
	transition: 0.4s;
}

/* About Us */
.about {
	padding: 120px 0;
	background-image: url(image/bg02.jpg);
}

.about ul{
	width: 45%;
	display: inline-block;
}

.about li {
	display: flex;
	flex-wrap: wrap;
}

.about-head {
	border-bottom: 1px solid #2da690;
	width: 17%;
	padding: 1em 0;
	margin-right: 3px;
}

.about-data {
	width: 80%;
	color: #0000008A;
	border-bottom: 1px solid gainsboro;
	padding: 1em 0;
}

.map-link {
	color: #2da690;
	display: block;
	margin-top: 5px;
}

.map-link:hover {
	color: #207767;
}

.map-link:hover i {
	color: #207767;
}

.about-content-inner-wrap{
	display: flex;
	justify-content: space-between;
}

.about-content-inner-wrap img {
	width: 45%;
	object-fit: cover;
}

/* Recruit */
.recruit {
	padding: 120px 0;
}

.recruit h2 {
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	padding: 60px 0;
}

.recruit h2 span {
	color: #2da690;
}

.recruit-jobs {
	background-color: white;
	padding: 40px 0;
}

.recruit-jobs > p {
	text-align: center;
	padding-bottom: 40px;
	font-weight: bold;
}

.jobs {
	display: flex;
	justify-content: center;
}

.jobs a{
	text-align: center;
	width: 20%;
	padding: 15px 0;
	margin: 0 10px;
	border: 1px solid gainsboro;
	font-weight: bold;
}

.jobs a:hover {
	background-color: #2da690;
	color: white;
	transition: 0.1s;
}

.jobs a:hover i {
	color: white;
	transition: 0.2s;
}

.jobs a:nth-child(2){
	transition-delay: 0.2s;
	transition-property: transform;
}

.jobs a:nth-child(3){
	transition-delay: 0.4s;
	transition-property: transform;
}

/* footer */
footer {
	background-color: #4D4D4D;
	width: 100%;
}

footer .wrap {
	display :flex;
	justify-content: space-between;
	padding: 50px 30px;
}

.footer-left img{
	width: 80%;
	max-width: 200px;
	height: auto;
}

.footer-left p {
	color: #FFFFFF8A;
	font-size: 0.9em;
	margin: 20px 0;
}

.footer-left small {
	color: #FFFFFF57;
}

.footer-right nav {
	color: #FFFFFFDE;
	margin-bottom: 30px;
}

.footer-right nav ul {
	display: flex;
	justify-content: flex-end;
}

.footer-right nav ul li {
	margin-right: 5%;
	cursor: pointer;
}
/* new add*/
.footer-right nav ul li.link a {
	color: white;
	text-decoration: none;
}
/* new add*/
.footer-right nav ul li.link a:hover {
	color: #2da690;
	transition: 0.15s;
}

.footer-service {
	display: flex;
}

.footer-service a {
	color: white;
	font-size: 0.9em;
	font-weight: bold;
	padding: 10px 15px;
	border: 1px solid gray;
	margin-left: 20px;
}

.footer-service a:hover {
	background-color: #2da690;
	transition: 0.15s;
}
.footer-service a:hover i {
	color: white;
	transition: 0.15s;
}



/* レスポンシブ対応 */
/* ↓レスポンシブデザイン↓
画面幅が860px以下の時
*/

@media (max-width: 768px) {

	.nav-01 {
		display: none;
	}

	.nav-02 {
		display: block;
		position: fixed;
		right: -40%;
		width: 40%;
		height: 100%;
		background-color: white;
		opacity: 0.8;
		padding: 7.5rem 2.5rem;
		z-index: 1;
		transition:0.7s;
		overflow-x: hidden;
	}

	.nav-02 ul{
		display: flex;
		flex-direction: column;
	}

	.nav-02 ul li {
		margin-bottom: 2.5rem;
		color: #2da690;
	}
	/*add css for change color*/
	.nav-02 ul li a{
		/* margin-bottom: 2.5rem; */
		color: #2da690;
	}

	.nav-02-active {
		display: block;
		right: 0;
	}

	.hamburger {
		display: block;
		position: relative;
		width: 3rem;
		height: 3rem;
		z-index: 3;
	}
	
	.hamburger .bar{
		position: absolute;
		width: 2rem;
		height: 2px;
		display: block;
		background: #2da690;
		transition: 0.1s;
		box-sizing: border-box;
	}
	
	.hamburger .bar-top {
		top: 10px;
	}
	
	.hamburger .bar-middle {
		line-height: 1.5rem;
		top: 48%;
	}
	
	.hamburger .bar-bottom {
		bottom: 10px;
	}
	
	.hamburger.close .bar-top{
		transform: rotate(45deg);
		top: 48%;
	}
	.hamburger.close .bar-middle{
		display: none;
	}
	.hamburger.close .bar-bottom{
		transform: rotate(-45deg);
		bottom: 48%;
	}	

	.wrap{
		padding: 0 40px;
	}

	.service-item2 a img{
		width: 30vw;
		height: auto;
	}

	.vision {
		height: 900px;
	}

	.vision ul {
		flex-direction: column;
	}
	
	.vision ul li{
		border: none;
		margin-bottom: 30px;
	}

	.vision ul li .catch {
		font-size: 1.7rem;
	}

	.vision ul .br-sp {
		display: none;
	}

	.vision .catch {
		margin-bottom: 18px;
	}

	.about-content-inner-wrap{
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
	}

	.about-content-inner-wrap ul {
		width: 100%;
	}
	
	.about-content-inner-wrap img {
		margin: auto;
		width: 90%;
		height: auto;
		object-fit: cover;
	}

	.jobs {
		flex-wrap: wrap;
	}

	.jobs a {
		width: 240px;
		height: auto;
		margin-bottom: 30px;
	}

}

@media (max-width: 500px) {

	.wrap{
		padding: 0 24px;
	}

	.service ul{
		padding: 0 24px;
	}

	.service li {
		display: inline-block;
		margin-bottom: 30px;
		height: 600px;
	}

	.service li > img {
		display: block;
		width: 100%;
		height: auto;
	}

	.service li a {
		display: block;
		width: 100%;
		height: 300px;
		position: static;
		margin-bottom: 30px;
	}

	.service .catch {
		font-size: 1.2em;
	}

	.service .sub {
		font-size: 0.9em;
	}

	.service-item1 a > img{
		width: 55%;
		height: auto;
	}

	.service .other {
		margin-top: 0;
	}

	.vision {
		height: 750px;
	}
	.vision h2{
		font-size: 32px;
		text-align: left;
	}

	.vision h2 .br-sp {
		display: none;
	}

	.vision ul li{
		padding-left: 0;
	}


	.vision ul li .catch {
		text-align: left;
		margin-bottom: 8px;
	}

	.vision ul li .sub {
		text-align: left;
		font-size: 0.9em;
	}

	.vision ul li .catch {
		font-size: 1.5rem;
	}

	.news ul li {
		flex-direction: column;
	}

	.news ul li img {
		width: 100%;
		height: 50vw;
	}

	.recruit .jobs {
		padding: 40px;
	}

	.recruit .jobs a {
		width: 100%;
	}

	footer .wrap {
		flex-direction: column-reverse;
	}

	.footer-right nav ul{
		padding-bottom: 0.8rem;
		border-bottom: 1px solid #313131;
		text-align: left;
		justify-content: flex-start;
		overflow-x: scroll;
	}

	.footer-service {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.footer-service a {
		margin-bottom: 15px;
		text-align: center;
	}

	
}

