@charset "utf-8";
/* CSS Document */
.main-wrap {
    overflow: hidden;
}
.submenu_a > .flex {
    border-top: none;
}

/* ---------- cate1 ---------- */
.cate1 .box_wrap {
	gap: 20px;
}
.cate1 .box_wrap .box-item{
	gap: 15px;
	background-color: #fff;
	padding: 15px 40px;
	width: calc((100% - 20px)/2);
	justify-content: flex-start;
}
.cate1 .box_wrap .box-item .icon {
    width: 30px;
    height: 30px;                        /* 高さ追加 */
    background-image: url("https://bamboograss-group.com/system_panel/uploads/images/recruit-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}
.cate1 .box_wrap .box-item p{
	flex: 1;
}
/* ---------- cate2 ---------- */
.cate2{
	position: relative;
	background-image: url("https://bamboograss-group.com/system_panel/uploads/images/recruit-bg.jpg")
}
.cate2 .box_wrap .box-item{
	gap: 40px;
	padding: 40px 50px;
}
.cate2 .box_wrap .box-item .numbox{
    flex: 0 0 5%;
	align-items: center;
    justify-content: center;
}
.cate2 .box_wrap .box-item .numbox p{
	border: #383743 solid 1px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	text-align: center;
	justify-content: center;
	align-items: center; 
	width: 45px;
	line-height: 1;
}
.cate2 .box_wrap .box-item .txtbox{
    flex: 0 0 60%;
}
.cate2 .box_wrap .box-item .imgbox{
    flex: 0 0 25%;
}
.cate2 .box_wrap .box-item:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.6); 
}

.cate2 .box_wrap .box-item:nth-child(even) {
    background-color: rgba(239, 239, 239, 0.6); 
}
.deco-rotate--recruit1 {
  top: -80px;
  right: -100px;
  width: 400px;
}
.deco-rotate--recruit2 {
  bottom: -80px;
  left: -100px;
  width: 300px;
}
/* ---------- cate3 ---------- */
.faq_c .box_wrap{
	width: 100%;
	flex-direction: column;
	gap: 15px;
	align-items: stretch;  
}
.faq_c .box{
	width: 100%;
	flex: 0 0 100%;    
}
.faq_c .box .qbox {
    cursor: pointer;
    position: relative;
    padding: 10px 5px;
    padding-right: 30px;
	justify-content: flex-start; 
}
.faq_c .box .qbox .icon {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.faq_c .box .qbox .icon::before,
.faq_c .box .qbox .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #555555;
    transition: ease 0.3s;
}
.faq_c .box .qbox .icon::before {
    width: 100%;
    height: 2px;
}
.faq_c .box .qbox .icon::after {
    height: 100%;
    width: 2px;
}
.faq_c .box .qbox.active .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq_c .box .abox {
    margin-top: 10px;
    background-color: #fff;
    padding: 20px;
}
body.on .faq_c .box .abox {
    display: none;
}
.faq_c .box .qbox p{
    width: 40px;
}
.faq_c .box .qbox h3{
    flex: 1;
}
/* ---------- IEのみ ---------- */
.cate4{
	position: relative;
	background-image: url("https://bamboograss-group.com/system_panel/uploads/images/recruit-bg.jpg")
}
.cate4 .box_wrap{
	flex-direction: column;
	gap: 20px;
}
.cate4 .box_wrap .box-item{
	width: 100%;
	gap: 20px;
	background-color: rgba(255, 255, 255, 0.6); 
	padding: 40px 50px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.cate4 .box_wrap .box-item h3{
	width: calc(30% - 10px);
}
.cate4 .box_wrap .box-item p{
	width: calc(70% - 10px);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.cate1 .box_wrap {
		flex-direction: column;
	}
	.cate1 .box_wrap .box-item {
		width: 100%;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){

	.cate2 .box_wrap .box-item{
		flex-direction: column;
		width: 80%;
	}
   .cate2 .box_wrap .box-item .numbox{
        order: 1;
        flex: 0 0 auto;
    }
    .cate2 .box_wrap .box-item .imgbox{
        order: 2;
        flex: 0 0 auto;
        width: 60%;
    }
    .cate2 .box_wrap .box-item .txtbox{
        order: 3;
        flex: 0 0 auto;
        width: 100%;
    }
	.cate2 .box_wrap .box-item {
		gap: 30px;
	}
	.faq_c .box {
		width: 90%;
		flex: 0 0 100%;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate1 .box_wrap .box-item {
		gap: 10px;
		padding: 10px 20px;
	}

	.cate1 .box_wrap .box-item .icon {
		width: 20px;
		height: 20px;
	}
	.cate2 .box_wrap .box-item{
		width: 90%;
	}
	.deco-rotate--recruit1 {
	  top: -80px;
	  right: -50px;
	  width: 250px;
	}
	.deco-rotate--recruit2 {
	  bottom: -80px;
	  left: -60px;
	  width: 200px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
    .cate1 .box_wrap .box-item {
        min-height: 65px;
    }
	.cate2 .box_wrap .box-item{
		width: 100%;
		gap: 20px;
	}
    .cate2 .box_wrap .box-item .imgbox{
        width: 100%;
    }
    .cate2 .box_wrap .box-item .txtbox{
        width: 100%;
    }
	.deco-rotate--recruit1 {
	  top: -40px;
	  right: -50px;
	  width: 150px;
	}
	.deco-rotate--recruit2 {
	  bottom: -40px;
	  left: -20px;
	  width: 120px;
	}
	.cate2 .box_wrap .box-item {
		padding: 20px 30px;
	}
	.cate2 .box_wrap .box-item .numbox p {
		width: 40px;
	}
	.faq_c .box .qbox .icon {
		width: 15px;
		height: 15px;
	}
    .faq_c .box .qbox{
		width: 100%;
	  }
	.faq_c .box .qbox p {
		width: 25px;
	}
    .faq_c .box {
        width: 100%;
        flex: 0 0 100%;
    }
	.cate4 .box_wrap .box-item {
		flex-direction: column;
	}
	.cate4 .box_wrap .box-item h3{
		width: 100%;
	}
	.cate4 .box_wrap .box-item p{
		width: 100%;
	}
	.cate4 .box_wrap .box-item {
		gap: 10px;
		padding: 20px 30px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

