@charset 'UTF-8';

/*
COLORS
================================================ */
:root {
    --green:#049646;
    --grey: #333;
    --white: #fff;
}


/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
}


/*
COMMON
================================================ */

/* Layout */
.wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
main {
    max-width: 1000px;
    width: 94%;
    margin: 6.25rem auto;
    padding: 3rem 2rem;
    background: #fff;
}
.text-center {
    text-align: center;
}

/* Button */
.btn {
    font-family: 'Noto Sans JP', sans-serif;
    display: inline-block;
    padding: 1.25rem 3.25rem;
    font-size: 1.375rem;
    text-align: center;
    width: 100%;
}
.btn-primary {
    color: #fff;
    box-sizing: border-box;
	display: inline-block;
	width: 260px;
	margin: 0;
	padding: 18px 10px;
	background-color:#0cb59b;
	border-radius: 5px;
	color: #fff;
	font-size: 1.0rem;
	text-align: center;
}
.btn-primary:hover {
    background: #3a7edf;
}
.btn-secondary {
    color: #555;
    background: #d0bea2;
}
.btn-secondary:hover {
    background: #d9cebe;
}

/* Button-border */
.link-btn-std{
	color: #049646;
	width: 370px;
	background: transparent;
	padding: 18px 110px;
	border: 3px solid #049646;
	position: relative;
	z-index: 1;
	font-size: 1.0rem;
	text-align: center;
	transition: .3s;
	display: inline-block;
}
.link-btn-std::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #049646;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
.link-btn-std:hover {
	color: #fff ;
}
.link-btn-std:hover::before{
	transform-origin: 0% 50%;
	transform: scaleX(1);
} 
.link-btn-std svg{
	right: 15px;
	bottom: 28px;
	fill: none;
	stroke:#049646;
	position: absolute;
	z-index: 999;
}
.link-btn-std:hover svg{
	stroke:#fff;
}

/* Heading */
.title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
	letter-spacing: 0.1em;
}
.title::after {
    content: '';
    display: block;
    height: 5px;
    width: 3rem;
    background: #049646;
    margin: 1.7rem 0 2.5rem;
}
.title-center {
    text-align: center;
}
.title-center::after {
    margin: 2.5rem auto;
}

/* Table */
table {
    margin: 3.5rem 0;
    width: 100%;
}
th,
td {
    
}
th {
    font-weight: normal;
   	vertical-align: middle;
    padding: 1rem;
	width: 30%;
}
td {
    padding: .75rem 1rem 1.75rem;
}

/* Back-to-top-button */
.back-to-top {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 2%;
  color: #fff;
  padding: 2rem;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: #049646;
  border-radius: 50%;
  z-index: -1;
}

/* Breadcrumb */
.breadcrumb{
	width: 1080px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}
.breadcrumb__list{
	display: flex;
	flex-wrap: wrap;
	line-height:1.45;
	font-size:0.8rem;
}
.breadcrumb__list-link{
	color: #31be77;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.breadcrumb__list-item:nth-child(n+2){
	position: relative;
	margin-left: 12px;
}

/*
HEADER
================================================ */
header .wrapper {
    display: flex;
	justify-content: space-between;
}

header .wrapper-inner{
	display: flex;
	justify-content: space-between;
    width: 100%;
}

.main-nav {
    display: flex;
	
}
.main-nav li {
    text-align: center;
    font-size: 1rem;
	justify-content: space-between;
	position: relative;
  	display: inline-block;
  	text-decoration: none;
	margin:0 1rem 0 3rem;
	font-weight: bold;
}
.wrapper-left{
	display: flex;
}
.logo {
    width: 14rem;
	padding: 18px 0 0 20px;
}
.anniversary{
	width: 14rem;
	padding: 18px 0 0 20px;
}
.main-nav a {
    display: block;
	padding: 32px 0 5px 0;
}
.main-nav a::before {
    display: block;
    margin-bottom: .25rem;
	/* Font Awesome */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    color: #555;
    font-size: 1.25rem;
}
.main-nav a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #049646;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
a:hover::after {
  transform: scale(1, 1);
}

.slide-button-wrapper{
	background-repeat: no-repeat;
	background-size:40%;
	background-position:50% 30%;
	display: block;
	margin-left: 30px;
}
.slide-button {
	width: 150px;
	height: 100%;
	color: #ffffff;		
	display: inline-block;
	padding: 1.2rem 1.2rem;
	background-color: #049646;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	transition: 0.25s;
}
.slide-button-icon{
	margin: 0 auto;
	width: 49px;
}
.slide-button-txt{
	margin-top: 10px;
	text-align: center;
}
.slide-button.slide-to-right:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #06b861;
	transform: translateX(-100%);
	transition: 0.25s;
	z-index: -1;
}
.slide-button.slide-to-right:hover {
	color: #ffffff;
	background: none;
}
.slide-button.slide-to-right:hover:before {
	transform: translateX(0);
}

/* 固定ボタン　*/
#fixed-header .wrapper {
    justify-content: space-between;
	width: 98.7vw;
}
#fixed-header .wrapper-inner{
	display: flex;
    justify-content: space-between;
	width: 98%;
}
#fixed-header {
	z-index: 999;
	position: fixed;
    top: -100px;
    box-sizing: border-box;
    transition: .5s; /* アニメーションタイミング */
	background: #ffffff;
}
#fixed-header.is-show {
    top: 0;
}


/*
HOME
================================================ */

/* メイン　*/
.main-sec{
	display: none;
}

.main-sec-bg{
	background: no-repeat right top / 86vw auto;
	height: 900px;
	object-fit: cover;
	position: relative;
}

.main-sec-catch{
	padding: 6em 0 0 5em;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 3rem;
}


/* キャッチコピーアニメーション*/
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(1);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
	display: inline-block;
	opacity: 0;
	color: #fff;
	font-size: 2.0rem;
  	font-weight: bold;
 	padding: 2px 8px;
	letter-spacing: 0.1em;
}

/* スクロール誘導　*/
.scroll-nav {
  display: inline-block;
  position: absolute;
  left: 40px;
  bottom: 0px;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #000;
  font-size: 14px;
  font-family: 'lato',sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.scroll-nav::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;	
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* ABOUT */
.home-about-sec{
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-top: 140px;
	padding-bottom: 20px;
	overflow: hidden;
}
.sec-header{
	font-family: 'lato',sans-serif;
	font-size: 5rem;
	font-weight: 900;
	color: #000;
	letter-spacing: 0.1em;
}
.home-about-sec-ttl{
	margin-bottom: 30px;
	font-size: 1rem;
	color: #2e9648;
	padding-left: 63px;
	position: relative;
	font-weight: bold;
}
.home-about-sec-ttl::before{
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	width: 50px;
	height: 2px;
	background: #2e9648;
	margin-top: -1px;
}
.home-about-sec-img{
	width: 50%;
	padding: 0px 0 0;
}
.home-about-sec-img img{
	width: 100%;
	height: auto;
}
.home-about-sec-text{
	box-sizing: border-box;
	position: relative;
	width: 50%;
	padding: 0 10% 0;
}
.home-about-sec-lead{
	margin-bottom: 45px;
	font-size: 1.0rem;
	line-height: 2.2;
}

.colorbox{
    position: relative;
}
.colorbox .color{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #049646;
}
.colorbox img{
    display: block;
    width: 100%;
}


/* BUSINESS */
.home-business-sec{
	background: #f4f4f4;
	text-align: center;
	margin-top: 160px;
	padding: 80px 0 80px 0;
}
.home-business-sec-inner{
	max-width: 1200px;
	margin: 0 auto;
}
.home-business-sec-ttl{
	margin-bottom: 60px;
	font-size: 1rem;
	color: #2e9648;
	font-weight: bold;
}
.home-business-list{
	display: flex;
	justify-content: space-between;
}
.home-business-list li{
	width: 31.5%;
	background: #fff;
	text-align: left;
	overflow: hidden;
}


.home-business-list-ttl{
	font-size: 1.4rem;
	padding: 30px 30px 20px 30px;
}
.home-business-list-eng{
	font-size: 0.7rem;
	color: #049646;
	vertical-align: center;
	margin-left: 20px;
	position: relative;
	bottom:4px;
}
.home-business-list-txt{
	padding: 0 30px 30px 30px;
	line-height: 1.6;
}

.business-img{
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #fff;
}
.business-img img{
	display: block;
	transition-duration: 0.5s;
}
.business-img img:hover{
	transform: scale(1.1);
	transition-duration: 0.5s;
	opacity: 1;
}

/*バナー*/
.banner-sec{
	background-image: url("../images/cart.png");
	background-repeat: no-repeat;
	background-position: right center;
	background-color: #049646;
}
.banner-sec-inner{
	text-align: center;
	max-width: 1200px;
    margin: 0 auto;
	padding: 60px 0 60px 0;
}
.banner-sec-ttl{
	font-family:'lato',sans-serif;
	font-weight: 900;
	margin-bottom: 5px;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	color: #fff;
}
.banner-sec-lead{
	color: #fff;
	margin-bottom: 40px;
}
.banner-sec img{
	width: 70%;
}

/* news */
.news-sec{
	max-width: 890px;
	margin: 120px auto 0;
	padding: 0 20px;
}
.news-sec-inner{
	display: flex;
}
.news-sec-ttl{
	width: 150px;
	font-family:'lato',sans-serif;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: left;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
}
.news-sec-list{
	width:calc(100% - 150px);
	margin-bottom: 45px;
}
.news-sec-list li{
	display: flex;
	margin-bottom: 23px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #d2d2d2;
}
.news-sec-list-ttl{
	width: calc(100% - 15.5em);
	font-size: 1.0rem;
	transition: all .2s;
}
.news-sec-info{
	display: inline-block;
	width: 15.5em;
}
.news-sec-ttl span{
	padding-bottom: 12px;
	border-bottom:2px solid #049646;
}
.news-date{
	display: inline-block;
	font-family: 'lato',sans-serif;
	font-weight: 600;
	width: 7em;
	padding: 0 0 0 10px;
	font-size: 1.0rem;
	letter-spacing:0.02em;
	margin-right: 20px;
}
.news-category a{
	display: inline-block;
	font-family: 'lato',sans-serif;
	font-weight: 600;
	padding:3px 5px 2px;
	border: 1px solid #fa7e0c;
	font-size:0.8rem;
	letter-spacing: 0.02em;
	line-height: 1.0;
	color: #fa7e0c;
	transition:all .2s;
}

/*グーグルマップ*/
.google-maps {
	position: relative;
	padding-bottom: 30%; 
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.google-maps-side{
	width: 50%;
}

/* コンタクト */
.contact-sec{
	padding: 40px 40px;
	background-color: #e6e4e4;
}
.contact-sec-inner{
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
}
.contact-address-side{
	box-sizing: border-box;
	width: 50%;
	max-width: 580px;
	padding: 60px ;
	background-color: #fff;
}
.contact-ttl-side{
	box-sizing:border-box;
	margin: 0 2px 0 0;
	padding: 75px 15px 70px;
	background-color: #fff;
}
.contact-sec-ttl{
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 28px;
	text-align: center;
}
.contact-sec-ttl .eng{
	font-family: 'lato',sans-serif;
	display: block;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.contact-sec-ttl .jpn{
	display: block;
	margin: 4px 0 0 0;
	font-size: 1rem;
	color:#049646;
}
.contact-sec-ttl::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left:50%;
	width: 40px;
	height: 3px;
	margin-left: -20px;
	background-color: #049646;
}
.contact-sec-ttl-lead{
	text-align: left;
	font-size: 1.0rem;
	line-height: 1.8;
}
.contact-sec-tel{
	margin-bottom: 20px;
}
.contact-sec-tel-area-num{
	position: relative;
	display: inline-block;
	font-family: 'lato';
	font-weight: 400;
	margin-bottom: 8px;
	padding-left: 38px;
	font-size: 3.2rem;
	line-height: 1.0;
}
.contact-sec-tel-area-num::before{
	display: block;
	content:'';
	position: absolute;
	top: 50%;
	left: 0;
	width:26px;
	height: 37px;
	margin-top: -16px;
	background: url(../images/icon-tel.svg) 0 0 no-repeat;
	background-size:26px 37px; 
}
.contact-sec-tel-area-text{
	text-align: center;
}

.contact-sec-address{
	border-bottom: dashed 1px #c3c3c3;
	padding: 0 0 10px 0;
	margin-bottom: 10px;
}

/* Footer */
footer {
    background: #283239;
    color: rgba(255,255,255,.8);
    padding: 3.5rem 1rem;
}    
.footer-nav {
    display: flex;
    justify-content: center;
}
.footer-nav li {
    margin: 0 .75rem;
}
.footer-nav a:hover {
    color: #fff;
}
footer small{
	margin-top: 30px;
	display: block;
	text-align: center;
}
	
/* アニメーション */
.fadein{
opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}



/*
aboutus.html
================================================ */
.kv-aboutus{
	background: url("../images/aboutus/hero.jpg") no-repeat center center;
	background-size:cover;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 320px;
	justify-content: center;
	align-items: center;
}
.kv-title{
	color: #000;
	font-size: 42px;
	text-align:center;
	font-weight: bold;
	margin-bottom: 15px;
}
.kv-title-eng{
	color: #049646;
	font-size:22px;
	font-weight: bold;
	font-family: 'lato', sans-serif;
	letter-spacing: 0.1em;
}
.breadcrumb{
	font-size: 0.9em;
}
.breadcrumb ol{
	display: flex;
	justify-content: flex-start;
}
.breadcrumb li::after{
  content: '>';
  display: inline-block;
  padding: 0 10px; /*左右に余白*/
}
.breadcrumb li:last-child::after{
  display: none;
}

.inpagelink{
	border-top: solid 1px #d2d2d2;
	border-bottom: solid 1px #d2d2d2;
	font-size: 1.1em;
	font-weight: bold;
	max-width: 1000px;
    width: 94%;
	margin: 100px auto 80px;
}

.inpagelink ul{
	padding: 40px 0;
	display: flex;
	justify-content: center;
	
}

.inpagelink li{
	display: inline-block;
	margin-right: 180px;
}
.inpagelink li:last-child{
	margin-right: 0px;
}

.inpagelink li::before{
	content:url("../images/aboutus/arrow-link.png");
	display: inline-block;
	padding-right: 10px;
}

#greeting h4{
	font-size: 2rem;
	font-weight: bold;
	line-height: 3rem;
	color: #049646;
	margin-bottom: 30px;
}
.text-big{
	line-height: 2rem;
	font-family: 'Noto Sans JP', sans-serif;
}

.column-box{
	display: flex;
	justify-content: space-between;
	max-width: 800px;
    width: 94%;
    margin: 6.25rem auto;
	flex: 1 0 auto;
}
.greeting-txt{
	width: 45%;
	flex-wrap: wrap;
	word-wrap:break-word;
}
.greeting-img{
	width: 45%;
}
.page-job .btn {
    margin-bottom: 4rem;
}

/* Timeline */
.timeline {
    list-style: decimal inside;
    font-family: 'Noto Sans JP', sans-serif;
}
.timeline-item {
    margin-bottom: 2rem;
}
.timeline-title {
    font-size: 1.375rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.timeline-content {
    font-family: sans-serif;
}
.company-table{
	border-collapse: collapse;
}

.company-table th,td {
  background-color: #fff;
  padding: 30px 10px;
}
.company-table th{
	font-weight: bold;
}
.company-table tr{
	border-top:1px solid #d8dadc; 
}
.company-table tr:last-child{
	border-bottom:1px solid #d8dadc; 
}
.suppliers{
	list-style: none;
	line-height: 1.5rem;
}
.signiture{
	margin-top: 80px;
}
.suppliers li{
	position: relative;
	padding-left: 18px;
	box-sizing: border-box;
}

.suppliers li::before{
	content:'';
	position: absolute;
	top:12px;
	left: 0;
	width: 8px;
	height: 2px;
	background-color: #049646;
}

/*
business.html
================================================ */
.kv-business{
	background: url("../images/business/hero.jpg") no-repeat center center;
	background-size:cover;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 300px;
	justify-content: center;
	align-items: center;
}

.business__head{
	margin-bottom: 60px;
}
.head03{
	position: relative;
	margin-bottom: 35px;
	padding-top: 15px;
	line-height: 1.5;
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
	letter-spacing: .15em;
}
.head03::before{
	content: '';
	position: absolute;
	top:0;
	right:0;
	left: 0;
	width: 24px;
	height: 10px;
	margin: 0 auto;
	border-right:10px solid #0b7ac5;
	border-left:10px solid #31be77;
	box-sizing:border-box;
}
.business__head-lead{
	text-align: center;
}

.business-sec{
	margin-top: 150px;
	
}
.business-sec:first-child{
	margin-top: 0;
}
.head04{
	position: relative;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .15em;
	margin-bottom: 35px;
	padding: 1px 0 1px 25px;
	font-size: 2rem;
	display: block;
}
.head04::before{
	content:'';
	position: absolute;
	top:0;
	left: 0px;
	width: 5px;
	height: 46px;
	background-color: #31be77;
	background-color: var(--green);
	-webkit-box-sizing:border-box;
	box-sizing: border-box;
}

.imgset01{
	display: flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content: space-between;
}
.imgset01__img{
	width: 54.63%;
	max-width: 590px;
	margin: 0 50px 0 0;
}
.imgset01__img img{
	width: 100%;
	height: auto;
}
.imgset01__content{
	width: 54.63%;
	max-width: 590px;
	margin: 0 0 0 0;
}
.imgset01__copy{
	margin-bottom: 15px;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--green);
}
.imgset01__txt{
	line-height: 2.0;
}

.imgset02{
	display: flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content: space-between;
}
.imgset02__img{
	width: 54.63%;
	max-width: 590px;
	margin: 0 0 0 0;
}
.imgset02__img img{
	width: 100%;
	height: auto;
}
.imgset02__content{
	width: 54.63%;
	max-width: 590px;
	margin: 0 50px 0 0;
}
.imgset02__copy{
	margin-bottom: 15px;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--green);
}
.imgset02__txt{
	line-height: 2.0;
}
.business-sec-intro{
	margin-top: 70px;
}
.head05{
	margin-bottom: 30px;
	padding-bottom: 18px;
	font-size: 1.6rem;
	position: relative;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .15em;
	border-bottom: 1px solid #e1e1e1;
}
.business-sec-intro__list{
	display: flex;
	-wbkit-box-pack:justify;
	justify-content: space-between;
	flex-wrap: wrap;
}

.business-sec-intro__list-item{
	width: 23.334%;
	max-width: 252px;
}
.business-sec-intro__list-img{
	position: relative;
	text-align: center;
	margin-bottom: 18px;
	cursor: pointer;
}
.business-sec-intro__list-img img{
	width: 100%;
}
.business-sec-intro__list-txtbox{
	margin-bottom: 8px;
}
.head06{
	margin-bottom: 10px;
	font-size: 1.2rem;
	position: relative;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .15rem;
}
.business-sec-intro__list-tit{
	padding-left: 20px;
}
.head06::before{
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	background-color: var(--green);
	width: 8px;
	height: 8px;
}
.business-sec-intro__list-content{
}
.business-sec-intro__list-content p{
	font-size: 0.9rem;
	text-align: justify;
}


/*
inquiry.html
================================================ */
#main-inquiry {
    max-width: 1000px;
    width: 94%;
    margin: 6.25rem auto;
    padding: 0rem 2rem;
    background: #fff;
}

.kv-form{
	background: url("../images/form/hero.jpg") no-repeat center center;
	background-size:cover;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 320px;
	justify-content: center;
	align-items: center;
}
.page-form {
    background-position: right 106px, 0 0;
    background-size: 70vw auto, contain;
    background-repeat: no-repeat;
}
.text-small {
    font-size: .875rem;
}
.text-center{
	text-align: center;
}


/* Form */

input[type='text'],
input[type='email'],
input[type='url'],
input[type='zipcode'],
input[type='address'],
select,
textarea {
    background: #efefef;
    padding: 1.0rem;
    width: 100%;
}
input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='url']::placeholder,
input[type='zipcode']::placeholder,
input[type='address']::placeholder,
textarea::placeholder {
    color: #bbb;
}
textarea {
    height: 14rem;
}
label {
    display: block;
    margin-bottom: 1rem;
}
.select-box {
    position: relative;
}
.select-box::after {
    display: inline-block;
    position: absolute;
    top: .625rem;
    right: 1rem;
/* Font Awesome */
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    content: '\f078';
    color: #bbb;
}

/* デフォルトのチェックボックスを非表示 */
input[type='checkbox'] {
    opacity:0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}
/* チェックボックス用の四角形を作る */
input[type='checkbox'] + span::before {
    display: inline-block;
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #bbb;
    background: #fff;
    margin: -.125rem .5rem 0 0;
    vertical-align: middle;

/* Font Awesome */
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding: 0 2px;
    line-height: 1.5;
}
/* チェックが入るとチェックアイコンを表示 */
input[type='checkbox']:checked + span::before {
    content: '\f00c';
}

.inquiry{
	font-weight: 600;
	padding:2px 5px 1px;
	margin-left: 10px;
	border: 1px solid #fa7e0c;
	font-size:0.8rem;
	letter-spacing: 0.02em;
	line-height: 1.0;
	color: #fa7e0c;
}

.btn-submit {
    color: #fff;
    box-sizing: border-box;
	display: inline-block;
	width: 260px;
	margin: 0;
	padding: 18px 10px;
	background-color:var(--green);
	color: #fff;
	font-size: 1.0rem;
	text-align: center;
}
.btn-submit:hover {
    background: #06b861;
}




/*
PC SIZE
================================================ */
@media (min-width: 750px) {
	
	.sp{
		display: none!important;
	}
}


/*
SP SIZE
================================================ */
@media (max-width: 750px) {
	
	.pc{
		display: none!important;
	}	

	/* header */
	.header-sp-inner{
		padding: 20px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: inherit;
		position: relative;
	}
	.header-sp-logo{
	
	}
	
	.wrapper-left{
		display: flex;
	}
	.header-sp-logo img{
		width: 9rem;
	}
	.anniversary{
		padding: 0px 0px 0px 10px;
	}
	.anniversary img{
		width: 5rem;
	}
	.main-sec-catch{
		padding: 40em 0 0 1em;
		width: 360px;
	}
	.main-sec-catch img{
		width: 100%;
	}
	.main-sec-bg{
		background: no-repeat;
		height: 800px;
		object-fit: cover;
		background-position: left 70% bottom -100px;
		position: relative;
		background-size: 100%;
	}
	
	/* 
	hamburger(ハンバーガーアイコン)
	=================================== */
	.hamburger {
	  position: fixed;
	  right: 30px;
	  top: 28px;
	  width: 26px;
	  height: 40px;
	  cursor: pointer;
	  z-index: 300;
	}

	.hamburger__line {
	  position: absolute;
	  width: 30px;
	  height: 3px;
	  right: 0;
	  background-color: #000;
	  transition: all 0.5s;
	}

	.hamburger__line--1 {
	  top: 0px;
	}

	.hamburger__line--2 {
	  top: 9px;
	}

	.hamburger__line--3 {
	  top: 18px;
	}

	/*ハンバーガーがクリックされたら*/
	.open .hamburger__line--1 {
	  transform: rotate(-45deg);
	  top: 11px;
	}

	.open .hamburger__line--2 {
	  opacity: 0;
	}

	.open .hamburger__line--3 {
	  transform: rotate(45deg);
	  top: 11px;
	}

	/* 
	sp-nav(ナビ)
	=================================== */
	.sp-nav {
	  position: fixed;
	  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
	  top: 0;
	  width: 95%; /* 出てくるスライドメニューの幅 */
	  height: 100vh;
	  background-color: #fff;
	  transition: all 0.5s;
	  z-index: 200;
	  overflow-y: hidden; /* メニューが多くなったらスクロールできるように */
	  opacity: 0.95;
	}

	/*ハンバーガーがクリックされたら右からスライド*/
	.open .sp-nav {
	  right: 0;
	}
	
	.sp-nav ul{
		margin: 10rem 0 0 2rem;
	}
	.sp-nav ul li{
		margin-bottom: 40px;

	}
	.sp-nav-list{
		padding-left: 20px;	
		font-size: 1.2rem;
		font-family: 'lato',sans-serif;
		font-weight: 900;
	}
	.sp-nav-list::before{
		content: '';
		background: url("../images/arrow-sml.svg") no-repeat;
		display: inline-block;
		vertical-align: middle;
		width: 16px;
		height: 20px;
		margin-bottom: 5px;
		margin-right: 5px;
	}
	.sp-nav-inquiry{
		text-align: center;
		margin: 0 auto;
	}
	.sp-nav-inquiry-inner{
		display: inline-block;
		color: #fff;
		background: #049646;
		vertical-align: center;
		padding: 20px 20px;
		margin-top: 40px;
		width: 80%;
	}
	.sp-nav-inquiry-inner img{
		margin-right: 10px;
	}
	.sp-nav-inquiry-inner p{
		display: inline-block;
		position: relative;
		bottom: 2px;
	}
	
	/* 
	black-bg(ハンバーガーメニュー解除用bg)
	=================================== */
	.black-bg {
	  position: fixed;
	  left: 0;
	  top: 0;
	  width: 100vw;
	  height: 100vh;
	  z-index: 5;
	  background-color: #000;
	  opacity: 0;
	  visibility: hidden;
	  transition: all 0.5s;
	  cursor: pointer;
	  z-index: 100;
	}
	
	/* Button-border */
	.link-btn-std{
		color: #049646;
		width: 80vw;
		background: transparent;
		padding: 18px 50px;
		border: 3px solid #049646;
		position: relative;
		z-index: 1;
		font-size: 1.0rem;
		text-align: center;
		transition: .3s;
		display: inline-block;
	}
	.link-btn-std::before{
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		background: #049646;
		transform-origin: 100% 50%;
		transform: scaleX(0);
		transition: transform ease .3s;
	}
	.link-btn-std:hover {
		color: #fff ;
	}
	.link-btn-std:hover::before{
		transform-origin: 0% 50%;
		transform: scaleX(1);
	} 
	.link-btn-std svg{
		right: 15px;
		bottom: 28px;
		fill: none;
		stroke:#049646;
		position: absolute;
		z-index: 999;
	}
	.link-btn-std:hover svg{
		stroke:#fff;
	}

	/*ハンバーガーメニューが開いたら表示*/
	.open .black-bg {
	  opacity: 0.3;
	  visibility: visible;
	}
	
	.nav-items{
		padding-top: 250px;
		padding-bottom: 200px;
	}
	.nav-item__item a{
		color: black;
		width: 100%;
		display: block;
		text-align: center;
		font-size: 20px;
		margin-bottom: 24px;
	}
	.nav-items__item:last-child a{
		margin-bottom: 0;
	}
	.menu-home::before {
		content: '\f015';
	}
	.menu-job::before {
		content: '\f0ca';
	}
	
	/* メイン　*/
	.main-sec{
		display: none;
	}

	.main-sec-bg-sp{
		background: no-repeat right top / 90vw auto;
		object-fit: cover;
		height: 440px;
		position: relative;
	}

	.main-sec-bg img{
		width: 100%;
	}
	
	.main-sec-catch{
		padding: 2em 0 0 0.5em;
		font-size: 1.0rem;
		font-weight: bold;
		line-height: 2rem;
	}


	/* キャッチコピーアニメーション*/
	@keyframes bg {
	  0% {
		opacity: 0;
		transform: scaleX(0) translateX(-5%);
	  }
	  30% {
		transform: scaleX(1) translateX(0);
	  }
	  100% {
		transform: scaleX(1) translateX(0);
	  }
	  30%, 100% {
		opacity: 1;
	  }
	}

	@keyframes fadeIn {
	  0% {
		opacity: 0;
	  }
	  100% {
		opacity: 1;
	  }
	}

	.bgextend{
		animation-name:bgextendAnimeBase;
		animation-duration:1s;
		animation-fill-mode:forwards;
		position: relative;
		overflow: hidden;/*　はみ出た色要素を隠す　*/
		opacity:0;
	}

	@keyframes bgextendAnimeBase{
	  from {
		opacity:0;
	  }

	  to {
		opacity:1;  
	}
	}
	
	/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	.bgappearTrigger,
	.bgLRextendTrigger{
		display: inline-block;
		opacity: 0;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		padding: 2px 4px;
		letter-spacing: 0.1em;
	}
	
	/* スクロール誘導　*/
	.scroll-nav {
		 display: inline-block;
		 position: absolute;
		 left: 10px;
		 bottom: 0px;
		 z-index: 2;
		 padding: 10px 10px 110px;
		 overflow: hidden;
		 color: #000;
		 font-size: 10px;
		 font-family: 'lato',sans-serif;
		 line-height: 1;
		 letter-spacing: .2em;
		 text-transform: uppercase;
		 text-decoration: none;
		 writing-mode: vertical-lr;
	}
	.scroll-nav::before {
	 	content: '';
		position: absolute;
	  	bottom: 0;
	  	left: 50%;
	  	width: 1px;
		height: 100px;
		background: #000;
		animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;	
	}
	
	/* ABOUT */
	.home-about-sec{
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 20px;
		padding-top: 100px;
		padding-bottom: 20px;
		overflow: hidden;
	}
	.sec-header{
		font-family: 'lato',sans-serif;
		font-size: 3rem;
		font-weight: 900;
		color: #000;
		letter-spacing: 0.1em;
	}
	.home-about-sec-ttl{
		margin-bottom: 30px;
		font-size: 1rem;
		color: #2e9648;
		padding-left: 63px;
		position: relative;
		font-weight: bold;
	}
	.home-about-sec-ttl::before{
		position: absolute;
		content: "";
		top: 50%;
		left: 0;
		width: 50px;
		height: 2px;
		background: #2e9648;
		margin-top: -1px;
	}
	.home-about-sec-img{
		width: 90%;
		padding: 0px 0 0;
	}
	.home-about-sec-img img{
		width: 100%;
		height: auto;
	}
	.home-about-sec-text{
		margin-top: 20px;
		box-sizing: border-box;
		position: relative;
		width: 100%;
	}
	.home-about-sec-lead{
		margin-bottom: 45px;
		font-size: 1.0rem;
		line-height: 2.2;
	}

	.colorbox{
		position: relative;
	}
	.colorbox .color{
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
		background-color: #049646;
	}
	.colorbox img{
		display: block;
		width: 100%;
	}
	
	
	/* About */
	
	
	
	/* BUSINESS */
	.home-business-sec{
		background: #f4f4f4;
		text-align: center;
		margin-top: 50px;
		padding: 60px 20px 20px 20px;
	}
	.home-business-sec-inner{
		max-width: 1200px;
		margin: 0 auto;
	}
	.home-business-sec-ttl{
		margin-bottom: 60px;
		font-size: 1rem;
		color: #2e9648;
		font-weight: bold;
	}
	.home-business-list{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin: 0 auto;
		text-align: center;
	}
	.home-business-list li{
		width: 100%;
		background: #fff;
		text-align: left;
		margin-bottom: 20px;
	}
	.home-business-list li img{
		width: 100%;
	}
	.home-business-list-ttl{
		font-size: 1.6rem;
		padding: 30px 30px 20px 30px;
	}
	.home-business-list-eng{
		font-size: 0.7rem;
		color: #049646;
		vertical-align: center;
		margin-left: 20px;
		position: relative;
		bottom:4px;
	}
	.home-business-list-txt{
		padding: 0 30px 20px 30px;
		line-height: 1.6;
	}
	
	/*バナー*/
	.banner-sec{
		background-image: url("../images/cart.png");
		background-size:50%; 
		background-repeat: no-repeat;
		background-position: right top;
		background-color: #049646;
	}
	.banner-sec-inner{
		text-align: center;
		max-width: 1200px;
		margin: 0 auto;
		padding: 60px 0 20px 0;
	}
	.banner-sec-ttl{
		font-family:'lato',sans-serif;
		font-weight: 900;
		margin-bottom: 5px;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		color: #fff;
	}
	.banner-sec-lead{
		color: #fff;
		margin-bottom: 40px;
	}
	.banner-sec img{
		width: 80%;
	}

	
	
	/* news */
	.news-sec{
		margin: 45px auto;
		padding: 0;
		width: 80%;
	}
	.news-sec-inner{
		display: block;
	}
	.news-sec-ttl{
		width: 100%;
		font-family:'lato',sans-serif;
		font-weight: 900;
		margin-bottom: 60px;
		text-align: center;
		font-size: 1.8rem;
		letter-spacing: 0.02em;
	}
	.news-sec-list{
		margin-bottom: 35px;
	}
	.news-sec-list li{
		display: block;
		margin-bottom: 15px;
		padding-bottom: 15px;
		border-bottom: 1px dashed #c3c3c3;
		width: 19rem;
	}
	.news-sec-info{
		margin-bottom: 5px;
	}
	.news-date{
		display: inline-block;
		font-family: 'lato',sans-serif;
		font-weight: 600;
		width: 5.3em;
		font-size: 1.0rem;
		text-align: left;
		padding: 0px;
	}
	.news-category a{
		font-family: 'lato',sans-serif;
		font-weight: 600;
		padding:2px 5px 1px;
		border: 1px solid #fa7e0c;
		font-size:0.8rem;
		letter-spacing: 0.02em;
		line-height: 1.0;
		color: #fa7e0c;
	}
	.news-sec-list-ttl{
		display:inline-block;
		font-size:1.0rem;
		line-height:1.6;
		width: 19rem;
	}
	.news-sec-ttl span{
		padding-bottom: 12px;
		border-bottom:3px solid #049646;
	}
	
	/*グーグルマップ*/
	.google-maps {
		position: relative;
		padding-bottom: 30%; 
		height: 0;
		overflow: hidden;
	}
	.google-maps iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
	.google-maps-side{
		height: 290px;
		width: 100%;
	}

	/* コンタクト */
	.contact-sec{
		padding: 20px;
		background-color: #e6e4e4;
	}
	.contact-sec-inner{
		display: flex;
		flex-direction: column;
		max-width: 1000px;
		margin: 0 auto;
	}
	.contact-address-side{
		box-sizing: border-box;
		width: 100%;
		max-width: 580px;
		padding: 40px 20px 20px 20px;
		background-color: #fff;
	}
	.contact-ttl-side{
		box-sizing:border-box;
		margin: 0 2px 0 0;
		padding: 75px 15px 70px;
		background-color: #fff;
	}
	.contact-sec-ttl{
		position: relative;
		margin-bottom: 30px;
		padding-bottom: 15px;
		text-align: center;
	}
	.contact-sec-ttl .eng{
		display: block;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
	}
	.contact-sec-ttl .jpn{
		display: block;
		margin-bottom: 10px;
		font-size: 0.8rem;
	}
	.contact-sec-ttl::after{
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left:50%;
		width: 40px;
		height: 3px;
		margin-left: -20px;
		background-color: #049646;
	}
	.contact-sec-ttl-lead{
		text-align: left;
		font-size: 1.0rem;
		line-height: 1.8;
	}
	.contact-sec-tel{
		margin-bottom: 20px;
	}
	.contact-sec-tel-area-num{
		position: relative;
		display: inline-block;
		font-family: 'lato';
		font-weight: 900;
		margin-bottom: 8px;
		padding-left: 38px;
		font-size: 2.5rem;
		line-height: 1.0;
		letter-spacing: 0.02em;
	}
	.contact-sec-tel-area-num::before{
		display: block;
		content:'';
		position: absolute;
		top: 50%;
		left: 0;
		width:26px;
		height: 37px;
		margin-top: -16px;
		background: url(../images/icon-tel.svg) 0 0 no-repeat;
		background-size:26px 37px; 
	}
	.contact-sec-tel-area-text{
		text-align: center;
	}
	.contact-sec-address{
		border-bottom: dashed 1px #c3c3c3;
		padding: 0 0 10px 0;
		margin-bottom: 10px;
	}
	.contact-sec-address p{
		line-height: 1.6;
	}
	.menu-form::before {
		content: '\f56e';
	}
	main {
		padding: 5rem;
	}
	.btn {
		width: auto;
	}
	.title {
			font-size: 1.875rem;
	}

/* Table */
    tr:nth-child(odd) {
        background: #f8f6f2;
    }
    tr:nth-child(even) th {
        background: #fff;
    }

    th,
    td {
        padding: 1.25rem;
        display: table-cell;
    }
    th {
        width: 20%;
        vertical-align: middle;
    }
    td {
        width: 80%;
    }

/* Header */
    header .wrapper {
       
    }
    .logo {
        width: 12.5rem;
    }
    .main-nav li {
        margin-left: 2rem;
        font-family:'Noto Sans JP', sans-serif;
        font-size: 1.1rem;
    }
    .main-nav a {
        width: auto;
    }
    
	/*--
	.main-nav a:hover,
    .main-nav .current {
        border-bottom: 2px solid #2d3374;
        padding-bottom: .5rem;
        background: none;
    }
	~~*/
	
    .main-nav a::before {
        content: '';
    }
	.main-nav a {
  		position: relative;
  		display: inline-block;
  		text-decoration: none;
	}
	
	
/* Home */
    .home-hero {
        padding: 16vw 1rem;
    }
    .home-hero h2 {
        font-size: 2.5rem;
        margin: 0 0 2rem;
        background: none;
        padding: 0;
    }
    .home-hero p {
        width: 38vw;
    }

    /* Contents */
    .content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4rem 1rem;
    }
    .flex-reverse {
        flex-direction: row-reverse;
    }
    .home-text {
        width: 50vw;
        margin-bottom: 0;
    }
    .home-chart {
        width: 34vw;
    }

/* Timeline */
    .timeline-item {
        display: flex;
        margin-bottom: 0;
    }
    .timeline-title {
        width: 24%;
        padding: 2rem 2.5rem 2rem 0;
        text-align: right;
    }
    .timeline-content {
        border-left: 5px solid #f8f6f2;
        width: 76%;
        padding: 1.5rem 0 1.5rem 2.5rem;
        position: relative;
    }
    .timeline-content::before {
        display: block;
        width: 2.25rem;
        height: 2.25rem;
        background: #d0bea2;
        text-align: center;
        padding: .1rem;
        position: absolute;
        top: 1.5rem;
        left: -1.5rem;
    /* Font Awesome */
        font-family: 'Font Awesome 5 Pro';
        font-weight: 900;
        color: #fff;
        font-size: 1.25rem;
    }
    .icon-file::before{
        content: '\f56e';
    }
    .icon-code::before{
        content: '\f121';
    }
    .icon-chat::before{
        content: '\f086';
    }
    .icon-hands::before{
        content: '\f2b5';
    }

/* Form */
    label {
        display: inline-block;
        margin: 0 1.5rem 0 0;
    }
    .select-box {
        width: 40%;
    }

	/*
	FOOTER
	================================================ */
	footer {
    	background: #283239;
    	color: rgba(255,255,255,.8);
    	padding: 2.5rem 1rem 3.5rem 1rem;
    	text-align: center;
	}
	footer .btn {
    	margin-bottom: 3.5rem;
	}
	.footer-nav{
		flex-direction: column;
		display: block;
		margin-bottom: 80px;
	}
	
	.footer-nav ul{
		
	}
	.footer-nav li {
    	margin: 2rem 0;
	}
	.footer-nav a {
    	color: #d5d7e4;
	}

}
