@charset "utf-8";
/* CSS Document */
/* ヘッダー▼ */
header{
	background: #fff;
}
.logo{
	width: 300px;
	height: auto;
}
#nav{
	display: none;
}
nav{
	width: 100%;
	height: 80px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
	padding-left: 5%;
	padding-right: 5%;
	z-index: 1;
}
nav ul{
	display: flex;
	width: 668px;
	height: 80px;
	padding-top:15px; 
}
nav ul li{
	font-weight: bold;
	padding-right: 35px;
}
nav ul li:nth-of-type(4){
	font-weight: bold;
	padding-right: 5px;
}
nav ul li:nth-of-type(5){
	font-weight: bold;
	padding-right: 0;
}
#g-menu{
	cursor: pointer;
}
#g-btn{
	width: 30px;
	height: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}
#g-btn span{
	display: block;
  width: 30px;
  height: 2px;
  background-color: #3e3e3e;
  transition: all 0.4s ease;
}
/*▼ナビホバー*/
.front-nav li a{
	display: inline-block;
	transition: transform 0.3s ease; 
}
.front-nav li:nth-of-type(-n+3) a:hover{
	transform: scale(1.1);
	color: #8bc300;
}
/*▼ナビアクティブ*/

#g-btn.active{
	cursor : pointer;
	}
#g-btn.active span:nth-of-type(1) {
  transform: translateY(2px) rotate(45deg);
}
#g-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#g-btn.active span:nth-of-type(3) {
  transform: translateY(-2px) rotate(-45deg);
}
#g-btn.active{
	display: block;
	width: 30px;
	height: 25px;
	position: relative;
	z-index: 5;
	}
	
#nav.active{
	width: 500px;
	height: 75vh;
	position: absolute;
	z-index: 4;
	flex-direction: column;
	background: rgba(255,255,255,0.95);
	border-bottom-left-radius: 2%;
	display: block;
	top:0;
	right: 0;
}
#nav.active{
	padding-top: 50px;
	padding-left: 60px;
}
#nav.active li{
	margin-top: 1em;
}
#nav.active li:before {
  content: "・";
}
#nav.active li:nth-child(1){
	margin-top: 0;
	font-size: 24px;
}
#nav.active li:nth-child(2),
#nav.active li:nth-child(3),
#nav.active li:nth-child(4),
#nav.active li:nth-child(5){
	font-size: 18px;
	margin-top: 1.7em;
}
#nav.active li:nth-child(1):before,
#nav.active li:nth-child(2):before,
#nav.active li:nth-child(3):before,
#nav.active li:nth-child(4):before,
#nav.active li:nth-child(5):before{
	content: none;
}
/* メイン画像▼ */
.main{
	width: 100%;
	height: auto;
	background-color: #fefbf4; 
	background: url(../img/index/top-bg.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
.main-sp{
	display: none;
}
.catch-copy{
	padding-top: 20%;
	padding-bottom: 20%;
	padding-left: 5%;
}
/* メイン画像▲ */
/* リード文▼ */
.read{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 150px;
	padding-bottom: 150px;
}
.read-in{
	width: 1200px;
	height: auto;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.animated-text {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2.0s ease, transform 2.0s ease;
	line-height: 2;
}

/* 表示時のスタイル */
.animated-text.show {
  opacity: 1;
  transform: translateY(0);
}

.leaf-left{
	position: absolute;
	top:-150px;
	left: 0;
}
.leaf-right{
	position: absolute;
	top:100px;
	right: 0;
}
.read-img{
	width: 184px;
	height: 200px;
	padding-top: 40px;
	margin: 0 auto;
}
.holiday{
	width: 100%;
	height: auto;
	background: #fff;
	padding-top: 150px;
	padding-bottom: 150px;
	text-align: center;
}
.holiday-in{
	width: 1200px;;
	height: auto;
	margin: 0 auto;
}
.holiday-details h3{
	font-size: 48px;
}
.holiday-details .lead-text{
	font-size: 16px;
	text-align: left;
}


/* アバウトアス▼ */
.about-us{
	width: 100%;
	height: auto;
	background: #fff;
	padding-top: 150px;
	padding-bottom: 150px;
}
.about-us-in{
	width: 1200px;;
	height: auto;
	margin: 0 auto;
}
.about-us-flex-cover{
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
}
.about-us-flex-cover h3{
	position: relative;
}
.about-us-flex-cover h3::after{
	content: url("../img/common/btn-icon.png");
	position: absolute;
    top: 3px; 
	padding-left: 5px;
}
.about-us-left{
	width: 47%;
	margin-right: 3%;
	text-align: center;
}
.about-us-right{
	width: 47%;
	margin-left: 3%;
	text-align: center;
}
/*▼アバウトアスの中のホバー*/
.about-us h3{
	 display: inline-block;
	 transition: transform 0.3s ease; 
}
.about-us h3:hover{
	transform: scale(1.1);
	color: #8bc300;
}
/* リクルート▼ */
.recruit{
	width: 100%;
	height: auto;
	background: #8bc300;
	padding-top: 150px;
	padding-bottom: 150px;
}
.recruit-in{
	width: 1200px;
	height: auto;
	margin: 0 auto;
}
.recruit-in h2{
	margin-bottom: 80px;
}
.recruit-flex-cover{
	display: flex;
	margin-top: 50px;
}
.kaigi-sp{
	display: none;
}
.recruit-left{
	padding-top: 5px;
	width: 50%;
	text-align: center;
	background: url("../img/common/pc-bg.png");
	background-repeat: no-repeat;
	background-position: center;
}
.recruit-right{
	padding-top: 5px;
	width: 50%;
	text-align: center;
	background: url("../img/common/customer-support.png");
	background-repeat: no-repeat;
	background-position: center;
}
.recruit-left h3,.recruit-right h3{
	margin-top: 50px;
}
.top-btn-cover{
	width: 100%;
	margin-top: 100px;
	text-align: center;
}
.top-btn{
	width: 325px;
	height: 80px;
	background: #f6dd19;
	border-radius: 80px;
}
.top-btn{
	color: #007737;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 35px;
}
/*▼リクルートの中のホバー*/
.top-btn{
	 display: inline-block;
	 transition: transform 0.3s ease; 
}
.top-btn:hover{
	transform: scale(1.1);
	color: #007737;
}
/* ベネフィット▼ */
.benefit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 150px;
	padding-bottom: 150px;
}
.benefit-in{
	width: 1200px;;
	height: auto;
	margin: 0 auto;
}
.benefit-flex-cover{
	display: flex;
	justify-content: space-between;
}
.benefit-left{
	width: 47%;
	text-align: center;
	margin-right: 3%;
}
.benefit-right{
	width: 47%;
	text-align: center;
	margin-left: 3%;
}
.benefit-flex-cover h3,.benefit2-flex-cover h3{
	position: relative;
}
.benefit-flex-cover h3::after{
	content: url("../img/common/btn-icon.png");
	position: absolute;
    top: 3px; 
	padding-left: 5px;
}
.benefit-flex-cover h3{
	left: -25px;
}
.benefit2-flex-cover h3{
	left: -18px;
}
.benefit2-flex-cover h3::after{
	content: url("../img/common/btn-icon.png");
	position: absolute;
    top: 3px; 
	padding-left: 5px;
}
.benefit2-flex-cover{
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}
.benefit2-left{
	width: 369px;
	text-align: center;
}
.benefit2-center{
	width: 369px;
	text-align: center;
}
.benefit2-right{
	width: 369px;
	text-align: center;
}
/*▼ベネフィットの中のホバー*/
.benefit h3{
	 display: inline-block;
	 transition: transform 0.3s ease; 
}
.benefit h3:hover{
	transform: scale(1.1);
	color: #8bc300;
}
/* 1200px以下▼ */
@media screen and (max-width:1200px) { 

/* リード文▼ */
.read{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 150px;
	padding-bottom: 150px;
}
.read-in{
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.animated-text {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2.0s ease, transform 2.0s ease;
	line-height: 2;
}

/* 表示時のスタイル */
.animated-text.show {
  opacity: 1;
  transform: translateY(0);
}

.leaf-left{
	position: absolute;
	top:-150px;
	left: 0;
}
.leaf-right{
	position: absolute;
	top:100px;
	right: 0;
}
.read-img{
	width: 184px;
	height: 200px;
	padding-top: 40px;
	margin: 0 auto;
}
.holiday{
	width: 100%;
	height: auto;
	background: #fff;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 150px;
	padding-bottom: 150px;
}
.holiday-in{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.holiday-details h3{
	font-size: 36px;
}

/* アバウトアス▼ */
.about-us{
	width: 100%;
	height: auto;
	background: #fff;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 150px;
	padding-bottom: 150px;
}
.about-us-in{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
/* リクルート▼ */
.recruit{
	width: 100%;
	height: auto;
	background: #8bc300;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 150px;
	padding-bottom: 150px;
}
.recruit-in{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* ベネフィット▼ */
.benefit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 150px;
	padding-bottom: 150px;
}
.benefit-in{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.benefit2-flex-cover{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 100px;
}
.benefit2-left{
	width: 369px;
	text-align: center;
}
.benefit2-center{
	width: 369px;
	text-align: center;
}
.benefit2-right{
	width: 369px;
	margin-top: 100px;
	text-align: center;
}
}
/* 1100px以下▼ */
@media screen and (max-width:1100px) { 
.front-nav li:nth-of-type(1){
	display: none;
}
.front-nav li:nth-of-type(2){
	display: none;
}
.front-nav li:nth-of-type(3){
	display: none;
}
nav ul{
	display: flex;
	width: 94px;
	height: 80px;
	padding-top:15px; 
}
}
/* 960px以下▼ */
@media screen and (max-width:960px) {
/* メイン画像▼ */
.catch-copy {
    width: 40%;
    padding-top: 20%;
    padding-bottom: 20%;
    padding-left: 5%;
}
/* リード文▼ */
.leaf-left,.leaf-right{
		display: none;
	}

/* 福利厚生▼ */
.benefit-flex-cover{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.benefit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 90px;
	padding-bottom: 150px;
}
.benefit-left{
	width: 369px;
	margin-top: 60px;
	text-align: center;
	margin-right: 0;
}
.benefit-right{
	width: 369px;
	margin-top: 60px;
	text-align: center;
	margin-left: 0;
}
.benefit2-flex-cover {
     margin-top: 0;
}
.benefit2-left{
	width: 369px;
	margin-top: 60px;
	text-align: center;
}
.benefit2-center{
	width: 369px;
	margin-top: 60px;
	text-align: center;
}
.benefit2-right{
	width: 369px;
	margin-top: 60px;
	text-align: center;
}
}
/* 599px以下▼ */
/* ヘッダー▼ */
@media screen and (max-width:599px) { 
header{
	background: #fefbf4;
}
nav{
	width: 100%;
	height: 60px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
	padding-left: 2%;
	padding-right: 2%;
	z-index: 1;
}
#nav.active{
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: 4;
	flex-direction: column;
	background: rgba(255,255,255,0.95);
	border-bottom-left-radius: 0;
	display: block;
	top:0;
	right: 0;
	padding-top: 50px;
	padding-left: 15px;
}
#nav.active li:nth-child(2),
#nav.active li:nth-child(3),
#nav.active li:nth-child(4),
#nav.active li:nth-child(5){
	font-size: 18px;
	margin-top: 1.3em;
}
.logo{
	width: 50%;
	height: auto;
	margin-top: 13px;
}
/* メイン画像▼ */
.main{
	display: none;
	}
.main-sp{
	display: block;
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-bottom: 100px;
}
/* リード文▼ */
.read{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 10px;
	padding-bottom: 100px;
	padding-left: 2%;
	padding-right: 2%;
}
.holiday{
	width: 100%;
	height: auto;
	background: #fff;
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 100px;
	padding-bottom: 100px;
}
.holiday-details h3{
	font-size: 24px;
}

/* アバウトアス▼ */
.about-us{
	width: 100%;
	height: auto;
	background: #fff;
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 100px;
	padding-bottom: 100px;
}
.about-us-flex-cover{
	margin-top: 0;
	flex-direction: column;
	justify-content: none;
}
.about-us-left{
	width: 100%;
	margin-right: 0;
	text-align: center;
	margin-top: 20px;
}
.about-us-right{
	width: 100%;
	margin-left: 0;
	text-align: center;
	margin-top: 60px;
}
/* リクルート▼ */
.recruit{
	width: 100%;
	height: auto;
	background: #8bc300;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 2%;
	padding-right: 2%;
}
.recruit-in h2 {
    margin-bottom: 60px;
}
.kaigi{
	display: none;
}
.kaigi-sp{
	display: block;
	width: 100%;
	height: auto;
}
.recruit-flex-cover{
	display: flex;
	flex-direction: column;
	margin-top: 0;
}
.recruit-left{
	padding-top: 60px;
	width: 100%;
	text-align: center;
	background: url("../img/common/pc-bg.png");
	background-size: 100px auto;
	background-repeat: no-repeat;
	background-position: center bottom;
}
.recruit-right{
	padding-top: 60px;
	width: 100%;
	text-align: center;
	background: url("../img/common/customer-support.png");
	background-size: 100px auto;
	background-repeat: no-repeat;
	background-position: center bottom;
}
.recruit-left h3,.recruit-right h3{
	margin-top: 0;
}
.top-btn-cover{
	width: 100%;
	margin-top: 60px;
	text-align: center;
}
.top-btn{
	width: 250px;
	height: 60px;
	background: #f6dd19;
	border-radius: 60px;
	color: #007737;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 60px;
}
/* 福利厚生▼ */
.benefit{
	width: 100%;
	height: auto;
	background: #fefbf4;
	padding-top: 40px;
	padding-bottom: 100px;
	padding-left: 2%;
	padding-right: 2%;
}
.benefit-left{
	width: 100%;
	margin-top: 60px;
	text-align: center;
	margin-right: 0;
}
.benefit-right{
	width: 100%;
	margin-top: 60px;
	text-align: center;
	margin-left: 0;
}
.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;
}
}
