@charset "utf-8";
/* CSS Document */
/********************************************************************
	layout.css
*********************************************************************/

/* clearfix */
.cf {
	zoom:1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear:both;
}

/*--- リンク ---*/
a:link, a:visited {
	color: #66b566;
	text-decoration: none;
}
a:hover, a:active {
	color: #3c8ecc;
	text-decoration:underline;
}
/*-- PDFマーク --*/
.pdf::after {
  font-family: 'FontAwesome';
  content: "\f1c1";
  margin-left: 5px;
}

/*--- ページトップ ---*/
#pagetop {
	position: fixed;
  bottom: 10px;
  right: 10px;
	z-index:10;
}
#pagetop a {
  display: block;
  color: #FFFFFF;
  height: 35px;
  line-height: 35px;
  width: 35px;
  text-align: center;
  background-color: #3c8ecc;
  border-radius: 4px;
}

/*--- フルードイメージ ---*/
/* 拡大縮小 */
.fluidimg {
	width: 100%;
	max-width: 100%;
	height:auto;
}
/* 画像サイズ内で縮小 */
.fluidimg2 {
	width: auto;
	max-width: 100%;
	height:auto;
}

html {
	width:100%;
}
body {
	width: 100%;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #FFFFFF;
}
img {
  vertical-align: bottom;
}

/*==========================================================================
	レイアウト
============================================================================*/
#wapper {
	width:100%;
	color: #333333;
	font-size: 16px;
  line-height: 1.8;
  position: relative;
}
.sp_none {
	display:none;
}
/*-- ボタン --*/
.btnA {
  margin: 40px auto;
}
.btnA a {
  text-align: center;
  color: #FFFFFF;
  background-color: #fb0404;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 10px;
  display: block;
  transition: .2s linear;
  position: relative;
}
.btnA a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  padding-left: 10px;
}
/*--- リンク ---*/
.btnA a:link, .btnA a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.btnA a:hover, .btnA a:active {
	color: #FFFFFF;
	text-decoration: none;
  background-color:#66b566;
}

/*--- タイトル ---*/
.titleA {
  font-size: 22px;
  text-align: center;
  margin: 25px 0px 0;
  line-height: 1.4;
  color: #3c8ecc;
}
.ttlsub {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 40px;
}
/*--- MSG ---*/
.msgA {
  font-size: 15px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 2.0;
}

/*--- ページ内リンク ---*/
/*
#pt01,
#pt02,
#pt03,
#pt04
{
  margin-top:-84px;
  padding-top:84px;
}*/

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  #wapper {
		font-size: 17px;
  }
  .sp_none {
	  display:block;
  }
  .tb_none {
	  display:none;
  }
  /*--- タイトル ---*/
  .titleA {
    font-size: 30px;
  }
  .ttlsub {
  font-size: 16px;
  margin-bottom: 60px;
}
  /*--- MSG ---*/
  .msgA {
    font-size: 17px;
  }

  /*-- ボタン --*/
  .btnA {
    width: 50%;
    margin: 40px auto;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #wapper {
		font-size: 18px;
  }
  .tb_none {
	  display:block;
  }
  .pc_none {
	  display:none;
  }
  /*--- タイトル ---*/
  .titleA {
    font-size: 32px;
  }

  /*--- MSG ---*/
  .msgA {
    font-size: 18px;
  }

  /*-- ボタン --*/
  .btnA {
    width: 250px;
    margin: 50px auto;
  }
}

/*==========================================================================
	メインメニュー
============================================================================*/
/*-- ハンバーガーボタン --*/
.btnWap {
  position: fixed;
  /*position: absolute;*/
  width: 25px;
  height: 25px;
  right: 15px;
  top: 8px;
  z-index: 100;
}
.menu {
  width: 25px;
  height:25px;
  top: 0px;
  position:relative;
  cursor:pointer;
}
.menu1 { width:25px; height:5px; background-color:#66b566; top:0px; position:absolute; } 
.menu2 { width:25px; height:5px; background-color:#66b566; top:10px; position:absolute; } 
.menu3 { width:25px; height:5px; background-color:#66b566; top:20px; position:absolute; }
/*アニメーション*/
.menu1,.menu2,.menu3
{ transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; /* Opera */
  -moz-transition: all 0.5s ease-out; /* Firefox */
  -webkit-transition: all 0.5s ease-out; /* GoogleChrome, Safari */
  -ms-transition: all 0.5s ease-out; /* IE */ }
/*動き*/
.menuclick1
{ top:10px;
  -o-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -webkit-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  transform: rotate(405deg); }
.menuclick2
{ opacity:0;}
.menuclick3
{ top:10px;
  -o-transform: rotate(-405deg);
  -moz-transform: rotate(-405deg);
  -webkit-transform: rotate(-405deg);
  -ms-transform: rotate(-405deg);
  transform: rotate(-405deg); }
/*--------------------------------------------------
  グローバルナビゲーション
---------------------------------------------------- */
.gNavi {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  background: rgba(111, 186, 44, .90);
  overflow: auto;
  display: none;
  z-index: 80;
}
.gNavi.is-open {
    display: block;
}
.gNavi ul {
  padding-top: 42px;
  color: #FFFFFF;
  font-size: 22px;
}
.gNavi ul li {
  text-align: center;
}
.gNavi ul li a {
  display: block;
  padding: 10px 0px;
}
/*--- リンク ---*/
.gNavi a:link,
.gNavi a:visited {
  color: #FFFFFF;
  text-decoration: none;
}
.gNavi a:hover {
	color: #FFFFFF;
  /*color: #3c8ecc;*/
  text-decoration: none;
}
.gNavi a:active {
  color: #FFFFFF;
  text-decoration: none;
}
/*--- オーバー状態 ---*/
body#home .gNavi li.gnav1 a,
body#company .gNavi li.gnav2 a,
body#business .gNavi li.gnav3 a,
body#facility .gNavi li.gnav4 a,
body#contact .gNavi li.gnav5 a {
   /*color: #3c8ecc;*/
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  /*-- ハンバーガーボタン --*/
  .btnWap {
    position: fixed;
    width: 45px;
    height: 45px;
    right: 20px;
    top: 20px;
  }
  .menu {
    width: 45px;
    height:45px;
    top: 0px;
    position:relative;
    cursor:pointer;
  }
  .menu1 { width:45px; height:5px; background-color:#66b566; top:0px; position:absolute; } 
  .menu2 { width:45px; height:5px; background-color:#66b566; top:20px; position:absolute; } 
  .menu3 { width:45px; height:5px; background-color:#66b566; top:40px; position:absolute; }
  /*アニメーション*/
  .menu1,.menu2,.menu3
  { transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out; /* Opera */
    -moz-transition: all 0.5s ease-out; /* Firefox */
    -webkit-transition: all 0.5s ease-out; /* GoogleChrome, Safari */
    -ms-transition: all 0.5s ease-out; /* IE */ }
  /*動き*/
  .menuclick1
  { top:20px;
    -o-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -webkit-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg); }
  .menuclick2
  { opacity:0;}
  .menuclick3
  { top:20px;
    -o-transform: rotate(-405deg);
    -moz-transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
    -ms-transform: rotate(-405deg);
    transform: rotate(-405deg); }
  /*--------------------------------------------------
  グローバルナビゲーション
---------------------------------------------------- */
  .gNavi ul {
    padding-top: 84px;
    color: #FFFFFF;
    font-size: 34px;
  }
  .gNavi ul li a {
    padding: 20px 0px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  /*-- ハンバーガーボタン --*/
  .btnWap {
    display: none;
  }
  /*--------------------------------------------------
  グローバルナビゲーション
---------------------------------------------------- */
  .gNavi {
    display: none !important;
  }
}
/*==========================================================================
	ヘッダー
============================================================================*/
#header {
  width: 100%;
  position: fixed;
  margin:0px auto;
  background-color: #FFF;
  z-index: 90;
  border-bottom: 3px solid #c21500;
  border-image: linear-gradient(to right, #60a760 0%, #85badc 100%);
  border-image-slice: 1;
}
#header #headerinnr {
  width: 100%;
  position: relative;
  height: 42px;
}
#headerinnr .sttl {
	display: none;
}
#headerinnr #logo {
  width: 200px;
  position: absolute;
  left: 10px;
  top: 5px;
  z-index: 99;
}
#headerinnr .tel {
	display: none;
}
/*--------------------------------------------------
  PC用グローバルナビゲーション
---------------------------------------------------- */
#headerinnr .pcGloNavi {
  display: none;
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  #header #headerinnr {
    height: 84px;
    margin: 0 auto;
  }
  #headerinnr #logo {
    width: 317px;
    position: absolute;
    left: 63px;
    top: 15px;
  }
  
  
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #header {
    position: fixed;
	border-bottom: 5px solid #c21500;
    border-image: linear-gradient(to right, #60a760 0%, #85badc 100%);
    border-image-slice: 1;
  }
  #header #headerinnr {
    max-width: 1260px;
    height: 120px;
    background-size: 436px 84px;
    margin: 0 auto;
  }
  #headerinnr .sttl {
	display: block;
	position: absolute;
    left: 10px;
    top: 5px;
	font-size: 14px;
	font-weight: bold;
  }
  #headerinnr #logo {
    width: 325px;
    position: absolute;
    left: 10px;
    top: 45px;
  }
  #headerinnr .tel {
	display: block;
	position: absolute;
    right: 10px;
    top: 10px;
	padding-left: 36px;
	background-image: url("../img/tel_icon.png");
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 24px;
  }
  /*--------------------------------------------------
    PC用グローバルナビゲーション
  ---------------------------------------------------- */
  #headerinnr .pcGloNavi {
    display: block;
    font-size: 16px;
	position: absolute;
    right: 10px;
    top: 75px;
	width: 100%;
	line-height: 1;
  }
  #headerinnr .pcGloNavi ul{
    width: 100%;
	text-align: right;
  }
  #headerinnr .pcGloNavi ul li {
    display: inline;
    padding: 0px 2%;
  }
  #headerinnr .pcGloNavi ul li:last-child {
    display: inline;
    padding: 0px 0px 0px 2%;
  }
  #headerinnr .pcGloNavi li a {
		padding-left: 25px;
	}
  #headerinnr .pcGloNavi li.gnav1 a {
		background-image: url("../img/gnv_icon1.png");
		background-repeat: no-repeat;
		background-position: left center;
	}
  #headerinnr .pcGloNavi li.gnav2 a {
		background-image: url("../img/gnv_icon2.png");
		background-repeat: no-repeat;
		background-position: left center;
	}
  #headerinnr .pcGloNavi li.gnav3 a {
		background-image: url("../img/gnv_icon3.png");
		background-repeat: no-repeat;
		background-position: left center;
	}
  #headerinnr .pcGloNavi li.gnav4 a {
		background-image: url("../img/gnv_icon4.png");
		background-repeat: no-repeat;
		background-position: left center;
	}
  #headerinnr .pcGloNavi li.gnav5 a {
		background-image: url("../img/gnv_icon5.png");
		background-repeat: no-repeat;
		background-position: left center;
	}
  /*--- リンク ---*/
  #headerinnr .pcGloNavi a:link,
  #headerinnr .pcGloNavi a:visited {
	  color: #3e6965;
	  text-decoration: none;
  }
  #headerinnr .pcGloNavi a:hover,
  #headerinnr .pcGloNavi a:active {
	  color: #60a762;
	  text-decoration: none;
  }
  /*--- オーバー状態 ---*/
  body#home .pcGloNavi li.gnav1 a,
  body#company .pcGloNavi li.gnav2 a,
  body#business .pcGloNavi li.gnav3 a,
  body#facility .pcGloNavi li.gnav4 a,
  body#contact .pcGloNavi li.gnav5 a {
    /*color: #60a762;*/
  }

}

/*==========================================================================
	コンテンツ
============================================================================*/
#contents {
  /* 固定ヘッダーの高さ分あける*/
  padding-top: 42px;
}
#contents .contsinnr {
  padding: 10px 10px;
  overflow: hidden;
  word-break: break-all;
}
#contents .contsinnr p {
  margin-bottom: 15px;
}
/*-- 詳細ページ ---*/
#contents .articleArea {
  overflow: hidden;
  word-break: break-all;
}
#contents .articleArea p {
  margin: 10px 0px 15px;
}
#contents .articleArea ol {
	margin: 10px 0px 15px 0px;
  background-color: #f2f2f2;
  padding: 20px;
}
#contents .articleArea ol li {
	list-style-type: decimal;
	margin-left: 35px;
}
#contents .articleArea ul {
	margin: 10px 0px 15px 0px;
  background-color: #f2f2f2;
  padding: 20px;
}
#contents .articleArea ul li {
	list-style-type: disc;
	margin-left: 35px;
}
#contents .articleArea img {
	width: 100%;
	max-width: 100%;
	height:auto;
  margin-bottom: 15px;
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  #contents {
    /* 固定ヘッダーの高さ分あける*/
    padding-top: 84px;
  }
  #contents .contsinnr {
    padding: 30px 10px;
    box-sizing: border-box;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #contents {
    /* 固定ヘッダーの高さ分あける*/
    padding-top: 120px;
  }
  #contents .contsinnr {
    max-width: 960px;
    margin: 0px auto;
  }
}


/*==========================================================================
	お問い合わせ
============================================================================*/
#contents .contactArea {
	background-image:url("../img/contact_cv_bg.jpg");
	background-size: cover;
	background-position: center top;
	padding: 30px 0;
}
#contents .contactArea .contactAreainnr {
	box-sizing: border-box;
	padding: 0 10px;	
}
#contents .contactArea .contactAreainnr .telno {
	text-align: center;
	margin: 30px 0;
	font-weight: bold;
	font-size: 20px;
}
/*-- ボタン --*/
#contents .contactArea .contactAreainnr .contbtnA {
  margin: 40px auto;
  box-sizing: border-box;
}
#contents .contactArea .contactAreainnr .contbtnA a {
  text-align: center;
  color: #FFFFFF;
  background-color: #fb0404;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 10px;
  display: block;
  transition: .2s linear;
  position: relative;
}
#contents .contactArea .contactAreainnr .contbtnA a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  padding-right: 10px;
}
/*--- リンク ---*/
#contents .contactArea .contactAreainnr .contbtnA a:link, #contents .contactArea .contactAreainnr .contbtnA a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
#contents .contactArea .contactAreainnr .contbtnA a:hover, #contents .contactArea .contactAreainnr .contbtnA a:active {
	color: #FFFFFF;
	text-decoration: none;
  background-color:#66b566;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  
	#contents .contactArea {
		padding: 60px 0;
	}
	#contents .contactArea .contactAreainnr {
		box-sizing: border-box;
		padding: 0 10px;
	}
	#contents .contactArea .contactAreainnr .telno {
		text-align: center;
		margin: 40px 0;
		font-weight: bold;
		font-size: 25px;
	}
	/*-- ボタン --*/
   #contents .contactArea .contactAreainnr .contbtnA {
     width: 50%;
     margin: 40px auto;
   }
   #contents .contactArea .contactAreainnr .contbtnA a {
	   padding: 30px 10px;
	   font-size: 24px;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	
	#contents .contactArea {
		padding: 90px 0;
	}
	#contents .contactArea .contactAreainnr {
		box-sizing: border-box;
		padding: 0 10px;
		margin: 0 auto;
		max-width: 1020px;
	}
    #contents .contactArea .contactAreainnr .telno {
		text-align: center;
		margin: 50px 0;
		font-weight: bold;
		font-size: 30px;
	}
	/*-- ボタン --*/
   #contents .contactArea .contactAreainnr .contbtnA {
     max-width: 370px;
     margin: 40px auto;
   }
}


/*==========================================================================
	フッダー
============================================================================*/
#footer {
  background-color: #FFFFFF;
  font-size: 13px;
  border-top: solid 1px #CCCCCC;
}
#footer .footinnr {
  background-image: url(../img/footer_bg.png);
  background-position: center bottom;
  background-repeat: repeat-x;
  padding-bottom: 100px;
}
#footer .footinnr .address {
	text-align: center;
	padding: 30px 0;
	font-weight: bold;
}


/*-- コピーライト --*/
#footer .copy {
  background-color: #66b566;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.4;
}
#footer .copyinn {
  padding: 10px 0px;
  text-align: center;
}
/*****************************************************
	320px以下【sp】
******************************************************/
@media print, screen and (max-width: 320px) {
  
  #footer .footnav li:nth-child(odd) {
    border-right:none;
  }
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  /*-- コピーライト --*/
  #footer .copy {
    line-height: 1.1;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #footer {
    padding-top: 30px;
  }
  
  /*--- リンク ---*/
  #footer .footnav li a:hover, #footer .footnav li a:active {
	  color: #0062a9;
	  text-decoration: none;
    background-color: transparent;
  }
  /*-- コピーライト --*/
  #footer .copyinn {
    max-width: 1260px;
    margin: 0px auto;
  }
}


/*==========================================================================
	下層ページタイトル
============================================================================*/
.pagettl {
  background-image: url(../img/pagettl_bg.png);
  background-size: cover;
  background-position: center top;
  text-align: center;
  padding: 30px 10px;

}
.pagettl .pttl {
  color: #559a55;
  font-size: 30px;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  .pagettl {
     padding: 50px 10px;
  }
  .pagettl .pttl {
    font-size: 35px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  .pagettl {
	padding: 70px 10px;
  }
  .pagettl .pttl {
    font-size: 45px;
  }
}



/* ======================================
プリント調整用
========================================= */
@media print {
  #header {
	  /*max-width: 100%;*/
    width: 100%;
    position:relative;
	  margin:0px auto;
    background-color: #FFF;
    z-index: 10090;
  }
  #headerinnr .pcSubNavi {
    display: none;
  }
  #headerinnr .pcGloNavi {
    display: none;
  }
  #contents {
    padding-top: 0px;
    margin-bottom: 60px;
  }
}