@charset "UTF-8";

/* reset */
body{
	margin:0;
	padding:0;
	text-align:left;
	font-size: 16px;
	line-height:1.6;
	letter-spacing: 2px;
	font-family:'"Noto Sans JP", sans-serif,ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ', Meiryo ;
	color:#333333;
	background-color:#e8e3dd;
}

html,body,h1,h2,h3,h4,h5,p,div,ul,li{
	margin:0;
	padding:0;
	list-style:none;
}

img{
	border-top:0;
	border-right:0;
	border-bottom:0;
	border-left:0;
	max-width: 100%;
}



/*--------------------------------------------------------
  layout
--------------------------------------------------------*/

/* hpb-skip */
#hpb-skip{
	display:none;
}

/* hpb-container */
#hpb-container{
	
}

/* hpb-header */
#hpb-header{
	width: 90%;
	padding: 30px 5%;
	padding-bottom: 10px;
	position:relative;
	zoom:1;
	background-color: #f1663f;
	/* background-image: url(top/header.png);
	background-size: cover;
	background-position: bottom;*/
}

.header-box{
	display:flex;
	width: 100%;
	margin: 0;
    flex-wrap:wrap;
    padding: 0;
}
.header-box-logo{
	width:150px;
}
.header-box-nav {
    width: auto;
    margin-left: auto; 
    display: flex;
    align-items: center; 
}

.header-box-menu {
    display: none;
}

.header-box-nav ul {
    display: flex;
}

/* hpb-nav */
/* #hpb-nav{
	position:absolute;
	right: 5%;
}*/
.header-box-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header-box-nav li {
     margin: 0 0 0 20px;
}

.header-box-nav a {
    text-decoration: none;
    color: #333; 
	font-size: 16px;
	font-weight: 500;
}

/* hpb-inner */
#hpb-inner{
	width: 100%;
	position:relative;
	overflow:hidden;
	zoom:1;
}

/* hpb-wrapper */
#hpb-wrapper{
	width: 100%;
	float:left;

}

.hpb-layoutset-02 #hpb-wrapper{
	padding-top:0;
}

/* hpb-title */
.hpb-layoutset-01 #hpb-title{
	width: 100%;
  padding: 0;
	margin: 0;
	height:800px;
	position:relative;
	background-color: #f1663f;
}

.hpb-layoutset-02 #hpb-title-c,.hpb-layoutset-02 #hpb-title-r,.hpb-layoutset-02 #hpb-title-s,.hpb-layoutset-02 #hpb-title-p,.hpb-layoutset-02 #hpb-title-co{
  width: 100%;
  padding: 5% 0 0 0;
  margin-top: 40px;
  height: 385px;
  position: relative;
  background-position: right center,left center, center;
  background-size: 50%, 50%, cover;
  background-repeat: no-repeat, no-repeat;
}

#hpb-title-c{
  background-image: url(sub/company-t.png),url(sub/company-t-p.png),linear-gradient(to bottom, #fff 50%, #e8e3dd 50%, #e8e3dd 100%) ;
}
#hpb-title-r{
  background-image: url(sub/recruit-t.png),url(sub/recruit-t-p.png),linear-gradient(to bottom, #fff 50%, #e8e3dd 50%, #e8e3dd 100%) ;
}
#hpb-title-s{
  background-image: url(sub/service-t.png),url(sub/service-t-p.png),linear-gradient(to bottom, #fff 50%, #e8e3dd 50%, #e8e3dd 100%) ;
}
#hpb-title-co{
  background-image: url(sub/contact-t.png),url(sub/contact-t-p.png),linear-gradient(to bottom, #fff 50%, #e8e3dd 50%, #e8e3dd 100%) ;
}
#hpb-title-p{
  background-image: url(sub/privacy-t.png),url(sub/privacy-t-p.png),linear-gradient(to bottom, #fff 50%, #e8e3dd 50%, #e8e3dd 100%) ;
}


.saiyo {
  display: none;
}


/*top-tittle*/
.slide {
    position: absolute;
    width: 94%;
    height: 745px;
	  margin: 1% 3%;
	  border-radius: 80px;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide:nth-child(1) {
    background-image: url(top/haikei-1.jpg);
  }
  
  .slide:nth-child(2) {
    background-image: url(top/haikei-2.jpg);
  }
  
  .slide:nth-child(3) {
    background-image: url(top/haikei-3.jpg);
  }
  
  .slide:nth-child(4) {
    background-image: url(top/haikei-4.jpg);
  }
  .slide:nth-child(5) {
    background-image: url(top/haikei-5.jpg);
  }
  .slide:nth-child(6) {
    background-image: url(top/haikei-6.jpg);
  }
  
  .slide.active {
    opacity: 1;
  }

/* hpb-main */
#hpb-main{
	width: 100%;
	margin: 0;
}

.hpb-layoutset-02 #hpb-main{
	width: 100%;
	padding-top: 0;
}

/******************************
 * フェードイン設定
 ******************************/

 .effect {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.effect-right{
	opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
} 

.is-fadein-right {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.effect-left{
	opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: opacity 1s, visibility 1s, transform 1s;
} 


.is-fadein-left {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* hpb-footer */
#hpb-footer{
	padding-top:0;
	color: #292929;
	text-align: center;
	position:relative;
	overflow:hidden;
	zoom:1;
	/*background-image: url(top/footer.png);
	background-size: cover;
	background-position: top; */
}

#hpb-footer a{}

.btn {
    width: 200px;
    height: 50px;
    font-size: 18px;
    background-color: #f1663f;
    font-weight: 100;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% auto 0;
    border-radius: 25px;
    border: 5px solid #f1663f;
    font-weight: 500;
}

/*top*/
.top-about-us{
	width: 100%;
	padding: 0 0 5% 0;
	background-color: #fff;
	background-image: url(top/veg.png);
    background-size: contain;
	background-position: bottom;
	background-repeat: repeat-x;
	border-radius: 90px 0 0 0;
}
.top-about-us-box{
	display:flex;
    flex-wrap:wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 7%;
	max-width: 1200px;
}
.top-about-us-box-l{
	width: 46%;
    margin:2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background-image: url(top/kabu.png);
	background-size: contain;
}
.top-about-us-box-r{
	width: 46%;
    margin:2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 画像スライド */
.slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 80px;
}

.slider-track {
  display: flex;
  animation: scroll-left 30s linear infinite;
}

.slider-track img {
  height: 150px;
  width: auto;
  max-width: 200px; /* ←追加してみて */
  margin-right: 20px;
}


@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*右*/
.slider-right {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 80px;
}

.slider-track-right {
  display: flex;
  animation: scroll-right 30s linear infinite; /* ←ここを scroll-right に */
}

.slider-track-right img {
  height: 150px;
  width: auto;
  max-width: 200px;
  margin-right: 20px;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

#hpb-wrapper h4.about-h4{
	font-size: 30px;
	text-align: center;
}

.top-service{
	background-color: #fff;
	background-image: url(top/s-haikei.png);
	background-size: cover;
	background-position: center;
}

.top-service-box{
	display:flex;
    flex-wrap:wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0;
	max-width: 1200px;
}

.top-service-box img{
	border-radius: 20px;
}
.top-service-box-t-1{
	width: 46%;
    padding: 10% 2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background-image: url(top/service-1.png);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
	
}
.top-service-box-t-2{
	width: 46%;
    padding: 10% 2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
	background-image: url(top/service-2.png);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
}
.top-service-box-t-3{
	width: 46%;
    padding: 10% 2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background-image: url(top/service-3.png);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
}
.top-service-box-p,.top-service-box-r{
	width: 46%;
    margin:2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top-recruit{
	background-image: url(top/s-haikei-2.png);
	background-size: cover;
	padding: 0;
	border-radius: 0 0 10% 0;
}

.top-recruit-box{
	display:flex;
    flex-wrap:wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 5% 0;
	max-width: 1200px;
}

.top-recruit-box-mini{
	width: 46%;
    margin:2%;
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.top-recruit-box-mini img{
	border-radius: 20px;
}

.top-contact {
  padding: 120px 0 0;
  background-color: #f1663f;
  color: #fff;
}

.top-contact-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 0 5%;
  flex-wrap: wrap;
}

.top-contact-box-add {
  width: 50%;
  min-width: 280px;
  text-align: left;
}

.company-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.top-contact-box-add p {
  font-size: 14px;
  line-height: 1.8;
}

.top-contact-box-menu {
  width: 165px;
  text-align: left;
}

.top-contact-box-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-contact-box-menu li {
  margin-bottom: 10px;
}

.top-contact-box-menu a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

/*company*/
.company{
  width: 100%;
  margin: 0 auto;
  padding: 0 0 5%;
  max-width: 900px;
}
.history{
  width: 100%;
  margin: 0 auto;
  padding: 5% 0;
  max-width: 900px;
}

.company::after,
.history::after {
  content: "";
  display: block;
  clear: both;
}

.greeting{
  width: 100%;
  margin: 0 auto;
  padding: 5% 0;
  max-width:1200px;
}
.greeting-box{
  display:flex;
  flex-wrap:wrap;
  max-width:1200px;
  margin:auto;
  padding: 2% 0 5%;
}
.greeting-box-mini{
  width: 46%;
  margin:2%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit{
  width: 100%;
  margin: 0 auto;
  padding: 0 0 5%;
  max-width: 1200px;
  overflow: hidden;
}

.recruit-table {
  width: 90%;
  border-collapse: collapse;
  margin: 20px 5%;
  padding: 0 ;
  max-width: 1200px;
  font-size: 16px;
  line-height: 1.6;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid #f1663f;
  padding: 10px 15px;
  vertical-align: top;
}

.recruit-table th {
  width: 25%;
  font-weight:400;
  text-align: left;
}
.recruit-t{
  font-weight: 600;
  font-size: 23px;
}

.recruit-box{
  display:flex;
  flex-wrap:wrap;
  max-width:1200px;
  margin:auto;
  padding: 5% 0;
}
.recruit-box-b{
  display:flex;
  flex-wrap:wrap;
  max-width:1200px;
  margin:auto;
  padding: 5% 0;
  background-image: url(recruit/rec-ba.png);
}
.recruit-box-b-2{
  display:flex;
  flex-wrap:wrap;
  max-width:1200px;
  margin:auto;
  padding: 5% 0;
  background-image: url(recruit/rec-so.png);
}
.recruit-box-mini{
  width: 23%;
  margin: 0;
  padding: 1%;
  flex-grow: 1;
}
.recruit-box-img{
  width: 20%;
  margin: 0;
  padding: 2% 6%;
  flex-grow: 1;
}
.recruit-box-img-c{
  width: 20%;
  margin: 0;
  padding: 5% 6% 0;
  flex-grow: 1;
}

/*service*/
.service{
  width: 100%;
  margin: 0 auto;
  padding: 0 0 5%;
  max-width: 1200px;
  overflow: hidden;
}

.service-box,.service-store-box{
	display:flex;
  flex-wrap:wrap;
  width: 100%;
  margin: 0 auto;
  padding: 0;
	max-width: 1200px;
}

.service-box img{
	border-radius: 20px;
}
.service-box-mini{
	width: 46%;
  padding: 5% 2%;
  flex-grow: 1;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-store-box-mini{
  width: 23%;
  padding: 1%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.service-store-box-mini img,.service-store-box img{
  border-radius: 20px;
}

.service-store-box-menya-r{
  width: 50%;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-store-box-menya-l{
  width: 48%;
  padding: 2% 2% 0 0;
  flex-grow: 1;
}
.menya-box{
  display:flex;
  flex-wrap:wrap;
  width: 100%;
  margin: 0 auto;
  padding: 0;
	max-width: 1200px;
}

.menya-mini{
  width: 49%;
  padding: 2% 1% 2% 0;
  flex-grow: 1;
}

.store-p{
  font-weight: 600;
  text-align: center;
  padding: 20px 0 10px;
}

.img-n{
  display: none;
}

.service-p{
  padding: 5% 0 0;
  font-size: 23px;
  font-weight: 600;
}

.privacy{
  width: 80%;
  margin: 0 auto;
  padding: 0 10% 5%;
  max-width: 1200px;
  overflow: hidden;
}
.contact{
  width: 80%;
  margin: 0 auto;
  padding: 0 10% 5%;
  max-width: 1200px;
  overflow: hidden;
  background-color: #fff;
}

.contact-tel{
  background-color: #e8e3dd;
  padding: 10% 5%;
  border-radius: 35px;
  text-align: center;
  margin-top: 20px;
  border: 1px solid #292929; 
}
.contact-tel p{
  padding: 10px 0;
  font-size: 35px;
  font-weight: bold;
}

.contact-form{
  padding: 15% 5%;
  border-radius: 35px;
  text-align: center;
}

/* =======================================================
  レスポンシブル設定
======================================================= */

@media screen and (max-width: 1000px) {
.header-box-menu {
  display: block;
  cursor: pointer;
	width: 25px;
	position: relative;
	top: 15px;
}

.header-box-nav ul {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  color: #292929;
  top: 90px;
  right: 0;
  width: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  padding: 10px 5%;
  z-index: 999;
	margin: 0;
}

.header-box-nav ul.show {
    display: flex;
}

.slider {
   overflow: hidden;
   white-space: nowrap;
   width: 100%;
   padding-bottom: 80px;
}

.slider-track {
   display: flex;
   width: max-content; 
   animation: scroll-left 50s linear infinite;
}

.slider-track img {
   height: 150px;
   width: auto;
   max-width: 200px;
   margin-right: 20px;
   object-fit: contain; /* 追加 */
}


@keyframes scroll-left {
   0% {
     transform: translateX(0);
   }
   100% {
     transform: translateX(-50%);
   }
}

.hpb-layoutset-02 #hpb-title-c,.hpb-layoutset-02 #hpb-title-r,.hpb-layoutset-02 #hpb-title-p,.hpb-layoutset-02 #hpb-title-co{
  padding: 0;
  height: 235px;
}

.greeting-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: auto;
  padding: 2% 0 5%;
}
.greeting-box-mini,.company,.history{
  width: 80%;
  margin:2% 10%;
}

.saiyo {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 6px 0px;
  z-index: 999;
  display: block;
}

}

/* =======================================================
  レスポンシブル設定
======================================================= */

@media screen and (max-width: 568px) {

	body{
		min-width: 100%;
	}

	/*--------------------------------------------------------
	  layout
	--------------------------------------------------------*/
	/* hpb-header */
	/*#hpb-header{
		min-width: 100%;
		padding-top:0;
		padding-left:0;
		padding-bottom:0;
	} */

  .header-box-nav ul {
    top: 55px;
}

	/* hpb-inner */
	#hpb-inner{
		padding-bottom:30px;
	}

	.hpb-layoutset-02 #hpb-inner{
		min-width: 100%;
		padding-top:0;
		padding-bottom:30px;
	}

	/* hpb-wrapper */
	#hpb-wrapper{
		width: 100%;
		padding-top: 0;
		float:none;
	}
	.hpb-layoutset-02 #hpb-wrapper{
		padding-top: 0;
	}
	/* hpb-title */
	.hpb-layoutset-01 #hpb-title{
		width: 100%;
		margin: 0;
		height:500px;
		position:relative;
		background-size: contain;
		border-radius: 0;
	}

	.hpb-layoutset-02 #hpb-title-c,.hpb-layoutset-02 #hpb-title-r,.hpb-layoutset-02 #hpb-title-s,.hpb-layoutset-02 #hpb-title-p,.hpb-layoutset-02 #hpb-title-co{
  	padding: 10% 0 0 0;
  	height: 100px;
		background-position: right center,left center, center;
		background-size: 60%, 60%, cover;
    margin-top: 20px;
	}

	.slide{
    width: 94%;
    height: 470px;
		margin: 3%;
		border-radius: 25px;
    }  

	.slider img,.slider-right img{
		width: 120px;
		margin-left: 1px;
	}
	.slider-track,.slider-track-right {
        animation: scroll-left 23s linear infinite;
    }


	/* hpb-main */
	#hpb-main{
		width: 100%;
		margin: 0;
		padding-left:0;
		float:none;
		padding-bottom: 20px;
	}
	.hpb-layoutset-02 #hpb-main{
		width: 96%;
		margin-left:auto;
		margin-right:auto;
		padding-top: 0;
	}
	
	/* hpb-footer */
	#hpb-footer{
		min-width:100%;
		padding-top:0;
		padding-bottom:0;
		padding-left:0;
	}
	/* hpb-nav */
	/*#hpb-nav{
		position:relative;
		top:0;
		left:0;
		border-top-width: 1px;
		border-top-style: solid;
		border-top-color: #ddd;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #ddd;
	}*/

	#hpb-header{
	  width: 90%;
	  padding: 2% 5%;
    background-color: #f1663f;
    }


	/*top*/
	.top-about-us{
	  background-image: url(top/veg2.png);
    }
	.top-about-us-box-l,.top-about-us-box-r{
	  width: 96%;
      margin:2%;
	}

	.top-service-box-t-1,
    .top-service-box-t-2,
    .top-service-box-t-3,
    .top-service-box-r,
    .top-service-box-p {
      width: 96%;
      margin: 2% auto;
    }

	.top-service-box p{
		padding: 3%;
	}

    /* 順序の制御 */
    .top-service-box-r:nth-of-type(2) { order: 1; } 
    .top-service-box-t-1 { order: 2; }           

    .top-service-box-p { order: 3; } 
    .top-service-box-t-2 { order: 4; }  

    .top-service-box-r:nth-of-type(6) { order: 5; }
    .top-service-box-t-3 { order: 6; }


	.top-recruit{
		border-radius: 0 0 90px 0;
}
	.top-recruit-box-mini{
		width: 96%;
        margin:2%;
	}

	.top-contact{
		padding: 5% 0 0 0;
	}
  
	.top-contact-box-menu {
       width: 90%;
       text-align: left;
	   padding: 50px 5% 0;
    }
	.top-contact-box-add {
       width: 96%;
	   padding: 0 2%;
}

.recruit-table-wrapper {
  overflow-x: auto;
}

.greeting-box-mini,.service-box-mini,.service-store-box-mini,.company,.history{
  width: 96%;
  margin:2%;
}

.top-service-box-t-1,.top-service-box-t-2,.top-service-box-t-3{
  background-image: none;
}

.img-n{
  display: block;
}

.service-store-box-menya-r,.service-store-box-menya-l{
  width: 96%;
  margin: 2%;
}

.privacy,.contact{
  width: 90%;
  margin: 0 auto;
  padding: 0 5% 5%;
}

.contact-tel p{
  font-size: 24px;
}


}
