@charset "utf-8";
/*  style　[  共通 ]
=================================================================== */
body{
  background: #fff;
}


.box-wrap {
  max-width: 1370px;
  margin: 0 auto;
  position: relative;
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
}
.box-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
  box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
}

/*----------------------------------------------
   header
---------------------------------------------*/

header {
  /*background: url(../images/01.jpg) no-repeat center center;
  background-size: cover;
  min-height: 500px;*/
}


#areaHeader {
  background-color: rgba(255,255,255,0.5);
  min-height: 80px;
  width: 100%;
}

.flex-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.header-box {
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}
.item01 {
    width: 35%;
  }
.item02 {
    width: 60%;
  }

h1 {
  padding: 10px 0 0 10px;
}
 h1 img {
    width: auto;
    vertical-align: middle;
}





@media screen and (min-width:768px) and ( max-width:991px) {
    /*　画面サイズが768pxから991pxまではここを読み込む　*/
  h1 {
  padding: 22px 0 0 8px;
}
 h1 img {
    width: 100%;
    vertical-align: middle;
  }
  
}




/*----------------------------------------------
   nav
---------------------------------------------*/
nav {
}
nav ul {
  margin: 0 auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -ms-flex-pack: end;
   justify-content: flex-end;
}
nav ul li {
  margin: 1em;
}
nav ul li a {
  display: block;
  padding: 15px 0;
}
nav ul li a:hover {
}


/*----------------------------------------------
   section
---------------------------------------------*/
section {
  margin: 2em auto;
}

/*----------------------------------------------
   見出し
---------------------------------------------*/
/* h2 */
h2 {
  text-align: center;
  margin: 2em 0;
}

h2:before {
  content: "";
  display: inline-block;
  width: 3em;
  height: 1px;
  background-color: #333;
  vertical-align: middle;
  margin-right: 0.5em;
}
h2:after {
  content: "";
  display: inline-block;
  width: 3em;
  height: 1px;
  background-color: #333;
  vertical-align: middle;
  margin-left: 0.5em;
}


/* h3 */
h3 {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  padding: 5px 5px 7px;
  margin: 2em 0 1em;
}

h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #85B200, #85B200 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #85B200, #85B200 2px, #fff 2px, #fff 4px);
}
section h3:first-child {
  margin: 0 0 1em;
}

/*----------------------------------------------
  概要
---------------------------------------------*/
table.tdLine {
 border-collapse: collapse;
  width: 98%;
}
table.tdLine th {
 border-collapse: collapse;
  font-weight: normal;
  border-bottom: #ccc 1px solid;
  padding: 0.5em;
}

table.tdLine td {
 border-collapse: collapse;
  border-bottom: #ccc 1px solid;
  padding: 0.5em;
}




/* アコーディオンA */
.ac-box{
width: auto;
margin: 10px auto 5px;
}

/*ラベル*/
.ac-box label{
font-weight: 500;
position: relative;
display: inline-block;
border-radius: 8px;
cursor: pointer;
/*color: #fff;*/
padding: 0.5em 0.5em;
  text-decoration: none;
  color: #FFF;
  background: #85B200;
  transition: .4s;
}

/*ラベルホバー時*/
.ac-box label:hover{
background: #1ec7bb;
-webkit-transition: all .4s;
transition: all .4s;
}

/*チェックを隠す*/
.ac-box input{
display: none;
}

/*チェックのアイコン（↓）*/
.ac-box label:after{
color: #fff;
content:"▼";
}

/*チェックのアイコン（↑）*/
.ac-box input:checked ~ label::after {
color: #fff;
content:"▲";
}

/*中身を非表示にしておく*/
.ac-box div{
height: 0px;
padding: 0px;
overflow: hidden;
opacity: 0;
transition: 0.5s;
}

/*クリックで中身を表示*/
.ac-box input:checked ~ div{
height: auto;
padding: 5px;
background: #fff;
opacity: 1;
}

/*表示内容の調整*/
.ac-box div p{
color: #777;
line-height: 23px;
font-size: 14px;
padding: 20px;
text-align: justify;
}

.ac-small p{
margin-bottom: 0px;
}

table.tdLine th.gr {
 background-color: #D9D900;
}

.ac-box table.tdLine td:first-child {
  text-align: right;
}


/*----------------------------------------------
  豆知識
---------------------------------------------*/
.tips {
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tip {
  width: 48%;
  border: #D9D900 1px solid;
}
/* h3 */
h3.noLine {
  position: static;
  display: block;
  font-size: 1.2em;
  padding: 0.5em 0;
  margin: 0 0 1em;
  text-align: center;
  background-color: #D9D900;
  
}

h3.noLine:after {
  display: none;
}
.tipbox {
  padding: 0 1em 1em;
}

/*----------------------------------------------
  活動状況
---------------------------------------------*/
.reports {
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.article {
  width: 45%;
  margin: 0.5em 0 1em 0;
}
.article h3 {
  margin: 0 0 1em 0;
}
hr.line01 {
  display: block;
  width: 100%;
  border: #aaa 1px dashed;
  margin: 0.5em auto;
}
.hov-opacity {
  display: table;
  margin: 0 auto;
}
.hov-opacity:hover img {
  opacity: 0.8;
}

.photos {
  list-style: none;
}
.photos li {
  display: inline-block;
  width: 33%;
}


/* ------------------------------
   loopSlider
------------------------------ */
.areaSlider {
 background-color: #85B200;
  padding: 10px 3px;
}
.loopSlider {
	margin: 0 auto;
	width: 100%;
	height: 150px;
	text-align: left;
}

.loopSlider ul {
	height: 150px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loopSlider ul li {
  margin: 0;
  padding: 0;
}
.loopSlider ul li img {
	width: auto;
	height: 150px;
}

/*----------------------------------------------
  お問い合わせ
---------------------------------------------*/
address {
  text-align: center;
  font-size: 1.2em;
}
.text-large {
  font-size: 1.8em;
  display: block;
  margin-bottom: 1em;
}
/*----------------------------------------------
   footer
---------------------------------------------*/
footer {
  background-color: #85B200;
  padding: 10px 0;
  color: #fff;
  margin: 4em 0 0 0;
}
.copyright {
  font-size: 0.8em;
  text-align: center;
  color: #fff;
}


/* 768px(sm)～ ____________________________________________________ */
@media print,screen and (min-width: 768px) {
}
/* 992px(md)～ ____________________________________________________ */
@media screen and (min-width: 992px) {
}
/* 1200px(lg)～ ___________________________________________________ */
@media screen and (min-width: 1200px) {
}
.link{
  margin-top: 5px;
  font-size: 16px;
}
.link a, .link a:hover{
  text-decoration: none;      
}