@charset "utf-8";
/* CSS Document */
/*==================
	header
===========================================*/
header{
	position: fixed;
	z-index: 100;
	background: #fff;
	box-shadow: 0 0 5px #eee;
	width: 100%;
	height: 75px;
}
#header{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hlogo{
	width: clamp(200px, 40%, 330px);
	height: 98%;
	padding: 0 10px;
}
.hlogo img{
	height: 100%;
	width: 100%;
	object-fit: contain;
	vertical-align: middle;
}
.m1,.gnav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 100%;
}
.gnav{
	height: 100%;
}
.gnav li a{
	position: relative;
	padding: 0 15px;
	display: block;
	width: 100%;
	height: 100%;
}
.gnav li a::before{
	position: absolute;
	content: '';
	background: url("../img/common/point.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 60px;
	aspect-ratio: 2 / 1;
	top: 50%;
	left:50%;
	z-index: -1;
	transform: translate(-50%,-50%);
	display: none;
}
.gnav li a:hover::before,
.gnav li a.current::before {
	display: block;
}

.h-insta{
	height: 100%;
}
.h-insta a{
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	text-align: center;
	color: #fff;
	background: #00a99d;	
	padding: 5px 15px;
	font-size: 13px;	
    justify-content: center;
    align-items: center;
}

.h-insta .fa-instagram:before {
    font-size: 2vw;
}


@media(max-width:679px){
	.m1{
		display: none;
	}
	header{
		height: 55px;
	}	
}





/*==================
	mobilenav
===========================================*/
@media(min-width:680px){
	.openbtn{
		display: none;
	}
}

.openbtn{
	position:fixed;
    z-index: 999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
    width: 55px;
    height:55px;
	background: #00a99d;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


#g-nav{
    position:fixed;
    z-index: 99;
	top:-200%;
    left:0;
	width:100%;
	transition: all 0.6s;
	background:#fff;
}

#g-nav.panelactive{
    top: 0;
}

/*ナビゲーション*/
#g-nav ul {
    z-index: 999;
	padding: 80px 0 30px;
	background:#fff;
}

#g-nav li{
	list-style: none;
	padding: 0 2vw;
	border-bottom: 1px solid #74cec5;
	
}

#g-nav li a{
	color: #5b5b5b;
	text-decoration: none;
	padding:10px;
	padding-left: 30px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	position: relative;
}
#g-nav li a::before{
	position: absolute;
	content: '';
	background: url("../img/common/point.svg");
	background-position: center;
	background-repeat: no-repeat;
	width: 20px;
	height: 10px;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}
.splogo{
	margin: 0 auto 30px;
	width: 300px;
}

/*==================
	footer
===========================================*/
footer{
	background: #e3fffc;
	padding: 40px 0;
	font-size: 16px;
}
.f_info,.f_nav{
	width: 48%;
}
.flogo{
	width: 80%;
	max-width: 350px;
	margin-bottom: 30px;
}
.f_nav {
	text-align: center;
}
.f_nav ul{
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}
.f_nav li a{
	position: relative;
	padding: 0 15px;
	padding-left: 30px;
}
.f_nav li a::before{
	position: absolute;
	content: '';
	width: 20px;
	height: 1px;
	background: #00a99d;
	top:50%;
	left: 0;
	transform: translateY(-50%);
}
.f_insta{
	width: 80%;
	max-width: 400px;
	margin: 0 auto;
}

.copy{
	background: #00a99d;
	color: #fff;
	font-size: 13px;
	padding: 3px 0;
	text-align: center;
}

@media(max-width:899px){
	.f_info,.f_nav{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.flogo{
		margin: 0 auto 30px;
	}
}
@media(max-width:450px){
	.f_nav ul{
		display: none;
	}
}



/*==================
	pagetop
===========================================*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 100px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
/*==================
	topfv
===========================================*/
.fv{
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 100vh;
}
.fv::before{
	position: absolute;
	content: '';
	width: 60%;
	height: 120%;
	background: #74cec5;
	clip-path: polygon(0 0,80% 0, 100% 21%, 0% 100%);
	z-index: -2;
}
.fv::after{
	position: absolute;
	content: '';
	width: 55%;
	height: 115%;
	background: #e3fffc;
	clip-path: polygon(0 0,80% 0, 100% 21%, 0% 96%);
	z-index: -1;	
}
.slider {
	position: absolute;
	z-index: 3;
	width: 75vw;
	height: 80%;
	overflow: hidden;
	bottom: 0;
	right: 0;
}

/*　背景画像設定　*/
.slider-item01 {
    background:url(../img/top01.jpg);
}
.slider-item02 {
    background:url(../img/top02.jpg);
}
.slider-item03 {
    background:url(../img/top03.jpg);
}
.slider-item {
	width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
	height: auto;
	max-height: 100vh;
	aspect-ratio: 4 / 3;	
	background-repeat: no-repeat;/*背景画像をリピートしない*/
	background-position: center;/*背景画像の位置を中央に*/
	background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
.catch{
	position: absolute;
	content: '';
	width: 40%;
	height:auto;
	top: 35%;
	left: 10%;
	z-index: 5;
}
@media(max-width:600px){
	.fv{
		aspect-ratio: 4 / 3;	
	}
	.slider {
		width: 85vw;
	}
	.catch{
		width: 60%;	
		left: 5%;
	}
}



/*==================
	kaso_共通
===========================================*/
.kfv{
	position: relative;
    margin-top: 50px;
    background: #28a289 no-repeat center;
    background-size: cover;
	background-image: url(../img/kfv_img.jpg);
	background-position: center 55%; 
}

.kfv .inner { 
	height: 160px; 
}

.kfv .inner:before { 
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 112px;
	height: 160px;
	background: rgba(40, 143, 123, 0.8); 
}

.kfv .inner:after { 
	position: absolute;
	top: 0;
	left: 112px;
	content: '';
	display: block;
	border-style: solid;
	border-width: 80px 102px;
	border-color: rgba(40, 143, 123, 0.8) transparent transparent rgba(40, 143, 123, 0.8); 
}

.kfv .mainTit { 
	position: absolute;
	top: 50%;
	left: 15px;
	z-index: 1;
	width: auto;
	height: 26px;
	margin-top: -13px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	font-size: 2.2rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.1; 
}

@media screen and (min-width: 600px) { 
  .kfv .inner {
	  position: relative;
	  height: 300px;
	}
  .kfv .inner::before {
	  -webkit-transform: translateX(-100%);
	  -ms-transform: translateX(-100%);
	  transform: translateX(-100%);
	  width: 1400px;
	  height: 300px;
	  margin-left: 400px;
	}
  .kfv .inner::after {
	  left: 400px;
	  border-width: 150px 195px; 
	}
  .kfv .mainTit { 
	  left: 0;
	  width: auto;
	  height: auto;
	  margin-top: 0;
	  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  transform: translateY(-50%);
	  font-size: 3rem; 
	} 
}


/*パンくず*/
#breadcrumb {  
	padding: 5px 0; 
}

#breadcrumb li { 
	display: inline-block;
	margin-right: 7px; 
	font-size: 15px; 
}

#breadcrumb li a { 
	text-decoration: underline; 
	color: #28a289; 
}

#breadcrumb li a:hover { 
	text-decoration: none; 
}

#breadcrumb li + li::before { 
	margin-right: 8px; 
	content: '>'; 
}


/*==================
	index
===========================================*/
.t_about::before{
	position: absolute;
	content: 'ICHIMASA';
	font-size: 12vw;
	font-weight: 900;
	font-family: "Lexend", sans-serif;
	top: 0;
	right: 0;
	color: #e3fffc;
	opacity: .8;
	z-index: -1;
	line-height: 1;
}

/*strengths*/
.strengbox{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.st-txt{
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.st-img{
	width: 55%;
}
.st-txt h3{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: clamp(1.6rem, 1.415rem + 0.78vw, 2rem);
	color: #74cec5;
	padding-top: 30px;
}
.strengbox::before {
	content: "";
    position: fixed;
    bottom: -30px;
    left: -30%;
    height: 50%;
	width: 0;
	background-color: #e3fffc;
	z-index: -1;
	transition: width 1s ease-out 1s;
}
.strengbox._r::before {
	left: auto;
    right: -30%;
}
.strengbox.inview::before,
.strengbox.inview._r::before {
	width: 100%;
}

.min-slider li{
	height: 300px;
	aspect-ratio: 4 / 3;
}

.min-slider img {
	clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.min-slider .slick-slide {
    margin:0;
}

@media(max-width:768px){
	.strengbox{
		flex-direction: column;
	}
	.strengbox._r{
		flex-direction:column-reverse;
	}
	.st-txt{
		width: 90%;
        margin: auto;
	}
	.st-img{
		width: 90%;
        margin: auto;
	}	
	.min-slider li{
		height: 250px;
	}
}
@media(max-width:450px){
	.min-slider li{
		height: 200px;
	}	
}
/*==================
	business
===========================================*/
.b-title-en{
	font-size: 15px;
	color: #00a99d;	
}
.b-title{
	color: #1b4682;
	margin-bottom: 20px;
	border-bottom: 1px solid #00a99d;
	padding: 10px 20px;
}


/*==================
	recruit
===========================================*/
.kfv._02{
    margin-top: 0;
}
.recruit::before{
	position: absolute;
	content: 'RECRUIT';
	font-size: 12vw;
	font-weight: 900;
	font-family: "Lexend", sans-serif;
	top: 0;
	right: 0;
	color: #e3fffc;
	opacity: .8;
	z-index: -1;
	line-height: 1;
}
.r-contents{
	position: relative;
}
.cont-inner{
	padding:30px 5vw 50px; 
	margin: 0 auto;
	width:50%;
	min-width: 500px;
	background: #fff;
	clip-path: polygon(10% 0, 100% 0,90% 100%,0 100%);
}
.r-contents::before,
.r-contents::after{
	position:absolute;
	content: '';
	width: 30%;
	height: 100%;
	bottom: 0;
	z-index: -1
}
.r-contents::before{
	background: url("../img/img01.jpg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	left: 0;
}
.r-contents::after{
	background: url("../img/img03.jpg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	right: 0;
}

.list { 
	margin-top: 20px; 
	justify-content: center;
}
.list .item { 
	position: relative; 
	margin-bottom: 15px; 
	background: #fff; 
}
.list .item:last-child { 
	margin-bottom: 0; 
}
.list .item .numWrap { 
	position: absolute; 
	top: 0; 
	left: 0; 
}
.list .item .numWrap .num { 
	position: relative; 
	padding: 10px 0 0 15px; 
	color: #fff; 
	font-weight: 700; 
	z-index: 5; 
}
.list .item .numWrap .num:before { 
	position: absolute; 
	top: 0; 
	left: 0; 
	content: ""; 
	width: 0; 
	height: 0; 
	border-style: solid; 
	border-width: 75px 75px 0 0; 
	border-color: #28a289 transparent transparent transparent; 
	z-index: -1; 
}
.list .item .txtArea { 
	padding: 9px 15px 14px; 
}
.list .item .txtArea .tit02 { 
	font-size: 2rem; 
	text-align: center; 
	font-weight: 700; 
}

.list .item .txtArea .txt { 
	letter-spacing: 0.05em; 
}

@media screen and (min-width: 769px){ 
  .list { 
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
	  margin-top: 30px; 
	}
  .list .item { 
	  width: calc(97% / 2) ; 
	  margin-bottom: 40px; 
	}
  .list .item.item07 { 
	  width: 100%;
	  display: -webkit-box; 
	  display: -ms-flexbox; 
	  display: flex; 
	}
  .list .item.item07 .imgArea { 
	  width: 750px; 
	}
  .list .item.item07 .txtArea { 
	  width: 450px; 
	  padding: 100px 80px 146px; 
	  box-sizing: border-box; 
	}
  .list .item.item07 .txtArea .tit02 { 
	  margin-bottom: 10px; 
	  font-size: 3.1rem; 
	}
  .list .item .numWrap { 
	  position: absolute; 
	  top: 0; 
	  left: 0; 
	}
  .list .item .numWrap .num { 
	  padding: 10px 0 0 18px; 
	  font-size: 2.1rem; 
	}
  .list .item .numWrap .num:before { 
	  border-width: 100px 100px 0 0; 
	  border-color: #28a289 transparent transparent transparent; 
	}
  .list .item .txtArea { 
	  padding: 28px 5vw 39px; 
	  box-sizing: border-box; 
	}
  .list .item .txtArea .txt { 
	  margin-top: 5px; 
	} 
}

@media screen and (max-width: 768px){
	.cont-inner{
		padding:30px 5vw 50px; 
		width: 100%;
		min-width: 100%;
		clip-path: polygon(0 0, 100% 0,100% 100%,0 100%);
		margin-bottom: 30vw;
	}
	.r-contents::before,
	.r-contents::after{
		position:absolute;
		content: '';
		width: 50%;
		height: 100%;
		bottom:-30vw;
		z-index: -1;
		background-position: bottom;
		background-size: contain;
	}	
}

.re-insta{
	width: 90%;
	max-width: 980px;
	margin: 0 auto;
}



/*==================
	company
===========================================*/
.company::before{
	position: absolute;
	content: 'COMPANY';
	font-size: 12vw;
	font-weight: 900;
	font-family: "Lexend", sans-serif;
	top: 0;
	right: 0;
	color: #e3fffc;
	opacity: .8;
	z-index: -1;
	line-height: 1;
}
.infotable th{
	width: 180px;
	vertical-align: top;
	text-align: left;
	font-weight: 400;
	padding: 1rem 2rem;
	border-bottom: 1px solid #00a99d;
}

.infotable td{
	padding: 1rem 1rem 1rem 2rem;
	border-bottom: 1px solid #eee;
	width:100%;
}
.map{
	width: 100%;
	height: 45vh;
}

@media(max-width:500px){
	.infotable th{
		display: block;
		width: 50%;
		padding-bottom: 0;
		padding-left: 1.3rem;
	}

	.infotable td{
		display: block;
		padding-left: 1.3rem;
	}	
}










/*==================
	
===========================================*/
