@charset "utf-8";
/* CSS Document */
/* サブのメイン画像とパンくずリスト共通▼ */
.sub-main{
	width: 100%;
	height: auto;
	background-color: #fefbf4; 
	background-image: url("../../img/common/sub-main-bg.png");
	background-position: top 60px right 5%;
	background-repeat: no-repeat;
	background-size:auto;
	padding-top: 60px;
	padding-left: 5%;
}
.sub-main-ttl{
	font-family:  "Mohave", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 115px;
	color: #8bc300;
	line-height: 1.1;
}
.sub-main-ttl-ja{
	font-family:  "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	color: #8bc300;
	margin-top: 0;
}
.sub-main p{
	width: 40%;
	margin-top: 20px;
	padding-bottom: 80px;
}
.breadcrumbs{
	width: 100%;
	height: auto;
	padding-left: 5%;
	background-color: #fefbf4; 
	padding-top: 20px;
}
.breadcrumbs-in{
	display: flex;
	font-size: 12px;
	color: #888;
	margin: 0 auto;
}
.breadcrumbs-in li span{
	padding-right: 5px;
}
.breadcrumbs-in li:after{
	content: " >";
}
.breadcrumbs-in li{
	margin-right: 14px;
}
li.bcl-last:after{
	content: none;
}

/* リクルート▼ */
.sub-recruit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 130px;
}
.sub-recruit-in{
	width: 1200px;
	height: auto;
	margin: 0 auto;
}
.sub-recruit h2{
	font-family:  "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 70px;
	color: #8bc300;
	text-align: center;
}
.sub-recruit-img{
	margin-top: 80px;
	width: 100%;
	text-align: center;
}
.sub-recruit-img img{
	display: inline-block;

}
.sub-recruit-cont{
	width: 1200px;
	margin: 0 auto;
	background: rgba(255,255,255,0.80);
	padding-top: 80px;
	padding-bottom: 80px;
	padding-left: 20%;
	padding-right: 20%;
	text-align: center;
	margin-top: -200px;
	position: relative;
	z-index: 1;
}
.sub-recruit-btn-cover{
	width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.sub-recruit-btn{
	margin-top: 40px;
	width: 270px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	font-size: 16px;
    color: #fff;
	background: #8bc300;
	border-radius: 70px;
}
.sub-recruit-btn{
	 display: inline-block;
	 transition: transform 0.3s ease; 
}
.sub-recruit-btn:hover{
	transform: scale(1.1);
}

/* リクルート動的▼ */
.move{
	width: 100%;
	margin: 0 auto;
	background: #fefbf4;
	background-image: url("../../img/recruit/index/sairin-bg.png");
	background-size: 1200px;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 150px;
	padding-bottom: 150px;
		}
.splide__slide{
	width: 255px;
	height: 285px;
	padding-top: 15px;
}
.splide__slide a{
	display:block;
	width: 255px;
	height: auto;
		}
.splide__slide a img{
	position:relative;
	top:0;
		}
.splide__slide a img:hover{
	top:-15px;
	transition:0.4s;
		}
.sub-recruit-btn-cover2{
	width: 270px;
	height: 70px;
	margin: 0 auto;
	margin-top: 60px;
}

/* 共通福利厚生▼ */
.benefit{
	width: 100%;
	background: #fefbf4;
	padding-bottom: 150px;
}
.benefit2-flex-cover h3{
	left: -18px;
}
.benefit2-flex-cover h3::after{
	content: url("../../img/common/btn-icon.png");
	position: relative;
    top: 3px; 
	padding-left: 5px;
}
.benefit2-flex-cover{
	width: 1200px;
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
	margin: 0 auto;
}
.benefit2-left{
	width: 369px;
	text-align: center;
	margin-top: 80px;
}
.benefit2-center{
	width: 369px;
	text-align: center;
	margin-top: 80px;
}
.benefit2-right{
	width: 369px;
	text-align: center;
	margin-top: 80px;
}
/*▼ベネフィットの中のホバー*/
.benefit h3{
	 display: inline-block;
	 transition: transform 0.3s ease; 
}
.benefit h3:hover{
	transform: scale(1.1);
	color: #8bc300;
}

/* ポップアップ全体 */
.popup {
    display: none; /* デフォルトで非表示 */
    position: fixed; /* 背景を覆う */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒背景 */
    justify-content: center;
    align-items: center;
    z-index: 2; /* 背景の上に表示 */
}

/* ポップアップの中身 */
.popup-content {
	margin-top: 150px;
	background: #fff;
    width: 1066px;
    max-width: 1066px;
    height: 100%; /* 高さを制限 */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 閉じるボタン */
.close-popup {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 60px;
    cursor: pointer;
	color: #fff;
}

/* ポップアップ内のスクロールエリア */
.popup-scroll {
    flex: 1; /* 高さを埋める */
    padding: 20px;
    overflow-y: auto; /* 縦スクロールを許可 */
}
/* 1200px以下▼ */
@media screen and (max-width:1200px) { 
/* サブのメイン画像とパンくずリスト共通▼ */

.sub-main p{
	width: 40%;
	margin-top: 20px;
	margin-bottom: 0;
	padding-bottom: 60px;
	}
/* リクルート▼ */
.sub-recruit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 130px;
}
.sub-recruit-in{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.sub-recruit-cont{
	width: 100%;
	margin: 0 auto;
	background: rgba(255,255,255,0.80);
	padding-top: 80px;
	padding-bottom: 80px;
	padding-left: 20%;
	padding-right: 20%;
	text-align: center;
	margin-top: -200px;
	position: relative;
	z-index: 1;
}
.sub-recruit-btn-cover{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.move{
	width: 100%;
	margin: 0 auto;
	background: #fefbf4;
	background-image: url("../../img/recruit/index/sairin-bg.png");
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 150px;
	padding-bottom: 150px;
		}

/* 共通福利厚生▼ */
.benefit{
	width: 100%;
	background: #fefbf4;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 150px;
}
.benefit2-flex-cover{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.benefit2-left{
	width: 369px;
	margin-top: 100px;
	text-align: center;
}
.benefit2-center{
	width: 369px;
	margin-top: 100px;
	text-align: center;
}
.benefit2-right{
	width: 369px;
	margin-top: 100px;
	text-align: center;
}
/* ポップアップ全体 */
.popup {
    display: none; /* デフォルトで非表示 */
    position: fixed; /* 背景を覆う */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒背景 */
    justify-content: center;
    align-items: center;
    z-index: 2; /* 背景の上に表示 */
}

/* ポップアップの中身 */
.popup-content {
	margin-top: 150px;
	background: #fff;
    width: 90%;
    max-width: 90%;
    height: 100%; /* 高さを制限 */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 閉じるボタン */
.close-popup {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 60px;
    cursor: pointer;
	color: #fff;
}
}
/* 960px以下▼ */
@media screen and (max-width:960px){
	.sub-main p{
	width: 60%;
	margin-top: 20px;
	margin-bottom: 0;
	padding-bottom: 60px;
	}
/* エンジニアリンクボタン▼ */
.sub-recruit-btn-cover{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: none;
}
.sub-recruit-btn{
	margin-top: 40px;
	width: 270px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	font-size: 16px;
    color: #fff;
	background: #8bc300;
	border-radius: 70px;
}
}
/* 599px以下▼ */
@media screen and (max-width:599px) { 
/* サブメイン▼ */
.sub-main{
	width: 100%;
	height: auto;
	background-color: #fefbf4; 
	background-image: none;
	background-position: none;
	background-repeat: no-repeat;
	background-size:none;
	padding-top: 20px;
	padding-left: 2%;
	padding-right: 2%;
}
.sub-main p{
	width: 100%;
	margin-top: 20px;
	padding-bottom: 40px;
}
.sub-main-ttl{
	font-family:  "Mohave", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 56px;
	color: #8bc300;
}
.sub-main-ttl-ja{
	font-family:  "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	color: #8bc300;
	margin-top: 0;
}
	.none{
		display: none;
	}
/* パンくずリスト▼ */
.breadcrumbs{
	width: 100%;
	height: auto;
	padding-left: 2%;
	padding-right: 2%;
	background-color: #fefbf4; 
	padding-top: 20px;
}
/* リクルート▼ */
.sub-recruit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 100px;
	padding-left: 2%;
	padding-right: 2%;
}
.sub-recruit h2{
	font-family:  "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 40px;
	color: #8bc300;
	text-align: center;
}
.sub-recruit-img {
    margin-top: 60px;
    width: 100%;
    text-align: center;
}
.sub-recruit-cont {
	width: 100%;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.80);
	padding-top: 50px;
	padding-bottom: 60px;
	padding-left: 4%;
	padding-right: 4%;
	text-align: center;
	margin-top: -80px;
	position: relative;
	z-index: 1;
    }
.sub-recruit-btn {
        margin-top: 30px;
        width: 250px;
        height: 60px;
        text-align: center;
        line-height: 60px;
        font-size: 16px;
        color: #fff;
        background: #8bc300;
        border-radius: 60px;
    }
/* リクルート動的▼ */
.move {
        width: 100%;
        margin: 0 auto;
        background: #fefbf4;
        background-image: url(../../img/recruit/index/sairin-bg.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 60px;
        padding-bottom: 20px;
    }
.splide__slide{
	width: 255px;
	height: auto;
}
.splide__slide a{
		width: 255px;
	height: auto;
	}
.splide__slide img{
		width: 100%;
	}
/* 共通福利厚生▼ */
.benefit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 40px;
	padding-bottom: 100px;
	padding-left: 2%;
	padding-right: 2%;
}
.benefit2-flex-cover {
     margin-top: 0;
}
.benefit2-left{
	width: 100%;
	margin-top: 60px;
	text-align: center;
}
.benefit2-center{
	width: 100%;
	margin-top: 60px;
	text-align: center;
}
.benefit2-right{
	width: 100%;
	margin-top: 60px;
	text-align: center;
}
.benefit2-left img,.benefit2-center img,.benefit2-right img{
	width: 100%;
	height: auto;
}
/* ポップアップ閉じるボタン */
.popup-content {
	margin-top: 80px;
	background: #fff;
    width: 90%;
    max-width: 90%;
    height: 100%; /* 高さを制限 */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.close-popup {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
	color: #fff;
}
}

