@charset "UTF-8";
/* CSS Document */


/*==================全体共通の設定はじめ▼======================*/

body {
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	font-size:17px;
	line-height:1.7;
}

main{
	 max-width: 1000px;
     margin: 0 auto;}


h1{
	font-size: 3rem;
    color:#3C8400;
    font-weight: 600;
}

h2{
	font-size: 2.1rem;
    color:#3C8400;
    font-weight: 600;
}

h3{
	font-size: 1.3rem;
    color:#3C8400;
    font-weight: 600;
}

@media screen and (max-width:960px) {
body{
		font-size: 15px;
	}
h1{
	font-size: 2.3rem;
}
	
h2{
	font-size: 1.7rem;
}
h3{
	font-size: 1.3rem;
}
}

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

h3{
	font-size: 1.2rem;
}
}


/*==================全体共通の設定おわり▲======================*/

/*==================トップページ共通の設定はじめ▼================*/

/*セクション共通設定▼*/
.top {
	margin-top: 100px;
}

/*ｈ１共通設定▼*/
.top h1 {
	margin: 0 auto 20px auto;
	max-width: 300px;
	text-align: center;
	line-height: 1;
}

.top h1 span{
	font-size:50%;
	font-weight: 500;
}


@media screen and (max-width:960px) {
	.top {
	margin-top: 50px;
}
	
.top h1 {
	margin: 0 auto 5px auto;
}
	
}
/*==================トップページ設定おわり▲===================*/

/*========ローディング▼============*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#FFFFFF;
  text-align:center;
  color: #000000;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo p{
	font-size: 25px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*========ローディング▲============*/

/*========= ナビゲーションドロップダウン▼ ===============*/
/*〜partscss▼〜*/
/*ナビゲーションを横並びに*/

nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color:#3C8400;
	padding:20px 50px;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

/*お問い合わせボタン*/
.navi-contact a{
	background-color:#FFA22A;
	color: #fff;
	padding: 10px 35px;/*お問い合わせだけの余白指定*/
}

/*お問い合わせボタンホバー*/
.navi-contact a:hover{
	background-color:#FFD600;
}

@media screen and (max-width:1200px) {
nav ul li a{
	padding:20px;
}
nav ul li li a{
	padding:10px 20px;
}
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:30px;
	width:9px;
	height:9px;
	border-top: 2px solid #3C8400;
    border-right:2px solid #3C8400;
    transform: rotate(135deg);
}

@media screen and (max-width:1200px) {
nav ul li.has-child::before{
    left:0;
}
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(255,255,255,0.8);
	
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #000000;
	border-bottom:solid 1px rgba(255,255,255,0.5);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
      }

/*==960px以下の形状*/

@media screen and (max-width:960px){
	
nav ul li.has-child::before{
	border-top: 2px solid #fff;
    border-right:2px solid #fff;
    }
	
	nav{
		padding: 0;
	}
	
	nav ul{
		display: block;
	}
	
nav ul li a{
	border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}

/*===========================================================*/
/*機能編  5-1-6 スクロール途中から上部固定 */
/*===========================================================*/

#header{
	position: fixed;/*fixedを設定して固定*/
	top: 0;
	background: #fff;
	height: 70px;/*高さ指定*/
	width:100%;/*横幅指定*/
    z-index: 999;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	/*justify-content: space-between;*/
	align-items: center;
	text-align: center;
	padding: 20px auto;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
}

#header h1{
	width: 210px;
}

/*==ふわっと出現させるためのCSS*/

/*上に上がる動き*/
#header.UpMove{
	position: fixed;
	width:100%;
	animation: UpAnime 0.5s forwards;
}

/*ナビを右寄せ*/
#g-nav{
margin: 0 0 0 auto;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
#header.DownMove{
	position: fixed;
	width:100%;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

@media screen and (max-width:960px) {
#header,
#header.UpMove,
#header.DownMove{
    animation:none;
	/*height: auto;*/
    padding: 0;
    display: block;
	}
	
#header h1{
	width: 160px;
} 
}


/*==================================================
機能編 　5-1-11 クリックしたらナビが上から下に出現
===================================*/

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

#g-nav{
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(0,0,0,0.6);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin:100px auto 0 auto;
}
    
#g-nav ul ul{
    width: 100%;
    margin: 0;
}
 
/*プルダウンナビのCSS*/
#g-nav ul li.has-child ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    transform: none;
}

/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
	
#g-nav li a:hover{
	color:#5BDB00;
}
}

/*==================================================
　機能編 5-2-7 3本線が奥行きを持って回転して×に
===================================*/

.g-nav-openbtn{
    display: none;
}
 
@media screen and (max-width:960px) {
.g-nav-openbtn{
    display: block;
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:1%;
	right: 5%;
	cursor: pointer;
    width: 50px;
    height:50px;
}

/*ボタン内側*/

.g-nav-openbtn .openbtn-area{
    transition: all .4s;
}

.g-nav-openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background:#4CB500;
  	width: 45%;
  }

.g-nav-openbtn span:nth-of-type(1) {
	top:15px;	
}

.g-nav-openbtn span:nth-of-type(2) {
	top:23px;
}

.g-nav-openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.g-nav-openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

.g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.g-nav-openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.g-nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
}

/*==================================================
　機能編 5-3-3 左から右に線が伸びる（下部）
===================================*/
.nav01c li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.nav01c li.current a,
.nav01c li a:hover{
	color:#A9DEA1;/*ナビ　リンク　ホバー後カラー*/
}

.navi01{
	margin: auto;
}

.navi02{
	padding: 10px 0px;
	white-space: nowrap;
	
}
.navi01 a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 16px;
    left: 25%;
    /*線の形状*/
    width: 50%;
    height: 1.5px;
    background:#3C8400;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*２段目のナビは線は出さない*/
.nav01c li li a::after {
    display: none;
}

/*現在地とhoverの設定*/
.nav01c li.current a::after,
.nav01c li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*〜layoutcssから▼〜*/
/* header */

#header h1 a{
    color:#369400;
}

#header h1{
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 0 0 0 2%; 
    line-height: 1;
    white-space: nowrap;
}

@media screen and (max-width:960px){
  #header h1{
    position: absolute;
      top:22px;
      left:20px;
      padding: 0;
    }
	
.nav01c li a::after {
    display: none;
}  
	
.navi02{
	background: rgba(0,0,0,0.2);
	}
}

.scrolldown1 span {
    transform: rotate(-90deg);
    text-transform:uppercase;
    left: -23px;
    top: -31px;
}
/*〜layoutcssから▲〜*/

/*===== ナビゲーションドロップダウン▲ ======*/


/*=====サムネイル付きスライドショー▼=====*/

.slider{
	width: 94%;/*横幅94%で左右に余白を持たせて中央寄せ*/
	margin: 0 auto;
}
.slider img {
    width:auto;
    height:500px;
}
.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .7s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}

.slide_container {
  margin: 100px auto 0 auto;
  
}
.slide_thumbnail img {
  height: 65px;
  width: 100%;
}
.slide_thumbnail{
	margin: 1% auto;
	width: 600px;
	height: auto;
}
.thumbnail-img{
	padding: 5px;
}


/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

.slide_thumbnail .slick-track {/*サムネイルを固定*/
  transform: unset !important;
}


.thumbnail-img {/*選択されていないサムネイル透過*/
  opacity: .3;
  transition: opacity .3s linear;
  cursor: pointer;
}
.slide_thumbnail .slick-current {
  opacity: 1;
}

@media screen and (max-width:960px){
.slide_container {
  margin: 70px auto 0 auto;
}

.slider img {
   height: 300px;
}
	
.slide_thumbnail{
	width:90%;
	max-width: 500px;
}

}

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

.slider img {
   height: 200px;
}

}

/*=====サムネイル付きスライドショー▲====*/


/*=====可変印刷の仕組み▼=====*/
.contents_flow{
	margin: 3% auto;
	max-width: 1000px;
}

.contents_flow img{
	width: 100%;
}
/*=====可変印刷の仕組み▲=====*/



/*=====トップ　サービス▼=====*/

.top_service{
	margin: 20px auto;
}


/*----サービス一覧▼----*/

.service_area{
	margin: 0 auto;
	max-width: 1000px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service_area article{
    width:46%;
	margin: 20px auto;   
}

.service_area article img{
     width:100%;
}

.service_area article h3{
      font-size: 1.4rem;
	  font-weight: 600;
	  text-align: center;
	  position: relative;
      padding: 0.3em;
      background: linear-gradient(145deg, rgba(91, 191, 22, 1), rgba(40, 148, 5, 1)), linear-gradient(90deg, rgba(147, 219, 97, 1), rgba(52, 156, 17, 1));
	  color: #fff;
}

/*トップ　サービス　タイトル吹き出し*/
.service_area article h3:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 45%;
  border: 15px solid transparent;
  border-top: 15px solid #228b22;
  width: 0;
  height: 0;
	
}

.service_area article p{
    padding: 0% 5% 5% 5%;
	height: 140px;
}

.service_area article a{
   width: 250px;
   margin: 0 auto;
}

@media screen and (max-width:520px) {
.service_area article{
     width:90%;
}

.service_area article:nth-of-type(2n+1){
    top:0;
}   
}

#topics .topics-btn{
    text-align: right;
    padding: 100px 0 0 0;
}

@media screen and (max-width:960px) {
#topics .topics-btn{
    text-align: center;
    padding: 50px 0 0 0;
}
	
.service_area article p{
	height: 160px;
}
    
}
/*----サービス一覧▲---*/

/*=====トップ　サービス▲====*/


/*=====トップ　サービス領域▼====*/

.top_variation{
	margin: 50px auto;
	max-width: 800px;
}

.top_variation img{
	width: 100%;
}
/*=====トップ　サービス領域▲====*/

.btn{
  width: 250px;
  height: 45px;
  padding: 4px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  color: #228b22;
  background: #fff;
  border-radius: 30px;
  transition: all .2s;
  border: 2px solid #228b22;
}

.btn::after {
  position: absolute;
  top: 50%;
  right: .8em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #228b22;
  transition: all .2s;
}

.btn:hover::after {
  right: -.06em;
   border-left-color: #fff;
}

.btn:hover{
  background-color: #228b22;
  border-color: #228b22;
  color: #fff;
}

/*================フッターメニュー設定▼====================*/
.footer_box{
	display: flex;
	max-width: 800px;
	margin: 0 auto;
}

.footer_box p{
	color: #000;
	text-align: center;
}

.footer_box div{
	background: #fff;
	padding: 15px ;
	width: 50%;
	margin-right: 5px;
}

.fo_tel_box a{
	font-size: 2rem;
	color:#FF9300;
	font-weight: 600;
}

.fo_tel_box a:hover{
	color: #FFBD00;
}

/*フッターお問い合わせボタン追加設定▼*/
.btn02{
  width: 90%;
  height: 60px;
  padding: 10px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  background: #FF9300;
  border-radius: 30px;
  transition: all .2s;
  color: #fff;
  margin: 10px auto;
  font-size: 1.3rem;
  font-weight: 500;
  white-space: nowrap;
}

.btn02:hover{
  background-color: #FFBD00;
  color: #fff;
}
/*フッターお問い合わせボタン追加設定▲*/

/*ボックス全体の設定*/
#footermenu {
	background: linear-gradient(45deg, rgba(53, 161, 0, 1), rgba(148, 215, 94, 1));
	color: #fff;	
	padding:2% 0%;		
}

#footermenu .fo_01{
	display: flex;
	margin-top: 20px;
}

/*リンクテキストのマウスオン時*/
.footer_box1 a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	list-style: none;
}

#footermenu ul .mark{
	list-style: none;
}

#footermenu .company_name{
	font-size: 2rem;
    font-weight: bold;
	line-height: 1.2;
}

#footermenu .company_name span{
	font-size: 1.2rem;
    display: inline-block;/*幅いっぱいになったら改行*/
}

/*フッター3列分*/
.footer_box1{
	max-width: 800px;
	margin: 20px auto;
}

.footer_box1 li{
	margin: 10px;
}

.footer_box2{
	margin-bottom: 5px;
}

.footer_box2 a{
	padding: 1%;
}
 
/*フッター設定
------------------------------------------------------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 1rem;		
	background:#228b22;
	color: #fff;			
	text-align: center;		
	padding: 20px;			
}

/*リンクテキスト*/
footer a {color: #fff;text-decoration: none;}

/*リンクテキストのマウスオン時*/
footer a:hover {color: #fff;}

/*著作部分*/
footer .pr {display: block;}

/*-------------------*フッター面幅960以下の設定はじめ*-----------------------------------------------------------------------/*/
@media screen and (max-width:960px) {
	
/*ボックス全体の設定*/
#footermenu {
	padding:2% 3%;		
}
	
.btn02{
	font-size: 1.2rem;
}
}

/*-------------------*フッター面幅520以下の設定はじめ*-----------------------------------------------------------------------/*/
@media screen and (max-width:520px) {
	
.footer_box{
	display: block;
}
	
.footer_box div{
	width: 100%;
	margin: 0px auto 8px auto;
}

}

/*=====バナー▼=============*/
#banner2{
	margin: 0 auto;
    max-width: 800px;}

#banner2 ul {
	display:flex;
	flex-wrap: wrap;
    list-style: none;
 }

#banner2 li{
	width: 25%;/*pc版2列*/
	padding: 0.3em;}

#banner2 a{
	margin: 0;
	}
#banner2 img{
	width: 100%;}

/*------*バナー2面幅960以下の設定はじめ*--------/*/

@media screen and (max-width:960px) {
	
#banner2{
	margin: 5% auto 3% auto;
	}


#banner2 li{width: 33%;/*スマホ版3列*/
}
}

/*=====バナー▲=============*/

/*=========フッターメニュー設定▲===========*/


/*=============================================
　　　　　　　　　共通設定▼
=============================================-*/
/*========トップ================*/
.top_kaku{
	width: 100%;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 0;
}

.top_kaku::after{ 
	content:'';
	position: absolute;
    background: linear-gradient(45deg, rgba(166, 229, 96, 1), rgba(49, 153, 14, 1)), linear-gradient(90deg, rgba(147, 219, 97, 1), rgba(52, 156, 17, 1));
    width: 100%; 
	height: 300px;
    top:0;
    left:0;
    z-index:0;
}

.top_kaku h1{
	position: relative;
	z-index: 1;
	color: #FFF;
    margin-top: 100px;
	text-align: center;
    line-height: 1.1em;
    font-weight: 600;}

.top_kaku h1 span{
	font-size:50%;
　　font-family: 'Oswald', sans-seｒrif;
   font-weight: 400;}


/*========全体レイアウト================*/
.kakupage
{
	max-width: 1000px;
	margin: 50px auto 100px auto;
	padding: 0 15px;
}

@media screen and (max-width:960px) {
.top_kaku::after{ 
	height: 250px;
}
}
