@charset "utf-8";


/* 全デバイス共通
----------------------------------------------------*/
#menu-btn-check {
    display: none;
}


/*メニュー PC
-------------------------------------*/

.menu-list ul{
   display: flex;
   justify-content:flex-end;
   list-style: none;
    margin-top: 20px;
    width:90%;
    left:50%;
}

.menu-list ul li{
   background: none;
   text-align: center;
   width: 17%;
   font-weight: bold;
}



.menu-list ul li a{
 display: block;
 color:#767676;
 font-size: 14px;
 padding: 10px 10px;
 white-space: nowrap;
}


.menu-list ul li a:hover{
display: inline-block;
color:#6bb54f;
font-weight: bold;
}



/*
.menu-list ul li a:hover{
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
/*
/*以下で線を表示*/
/*.menu-list ul li a:hover:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;
  display: inline-block;
  width: 60px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #86c56e;
  border-radius: 2px;
}
*/

/*----------------------------------------------------
PCのみ　横幅960px～
----------------------------------------------------*/
@media (min-width: 960px) {
   div#sidebar { width: 25%; }
   
.ac-box label{
 transition: all 0.5s;
 display: block;
 color:#FFF;
 font-size: 1.4vw;
 padding: 10px 10px;
}

.ac-box label:hover{
color:#FFF;
background-color:#745231;
font-weight: bold;
-webkit-transition: all .3s;
transition: all .3s;
}

.ac-box input{
display: none;
}

.ac-box div{
height: 0px;
padding: 0px;
overflow: hidden;
opacity: 0;
transition: 0.5s;
}

.ac-box input:checked ~ div{
height: auto;
padding: 10px;
background-color: rgba(116,82,49,0.7);
opacity: 1;
}

.ac-box div dl {
/*text-align: justify;*/
color: #FFF;
font-size:1.4vw;
margin-bottom: 5px;
}

.ac-box div dl dt {
text-align: justify;
font-size:1.2vw;
border-bottom: 1px solid #987757;
}

.ac-box div dl dd,.ac-box div dl dd a{
font-size:1.1vw;
 padding: 3px 0px;
}

.ac-box div dl dd a:hover{
background: none;
}

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


/*----------------------------------------------------
タブレットのみ　横幅600px～959pxまで
----------------------------------------------------*/
@media (min-width: 600px) and (max-width: 959px) {
   div#sidebar { width: 160px; }
   
     #mainimg{
    margin-top: 150px;
    }

}

/*----------------------------------------------------
PCとタブレット　横幅600px～どこまでも
----------------------------------------------------*/
@media (min-width: 600px) {
   div#sidebar { width: 160px; }
}

/*----------------------------------------------------
モバイルのみ　横幅0px～599px
----------------------------------------------------*/
@media (max-width: 599px) {
   div#sidebar { width: 100%; }
/*
.pc_menu{display: none;}
.mb_menu{display: block;}
*/
.ac-box input{
display: none;
}
  #mainimg{
    margin-top: 150px;
    }


/*-----*/

.ac-box div dl {
/*text-align: justify;*/
color: #FFF;

}

.ac-box div dl dt {
text-align: justify;
font-size:15px;
border-bottom: none;
}

.ac-box div dl dd,.ac-box div dl dd a{
font-size:15px;
 padding: 2px 0px 0 10px;
}

.ac-box div dl dd a:hover{
background: none;
}

.menu-list ul li a::before {

}

.ac-box label{ 
font-size:16px;
color: #FFF;
}

.menu-list ul li .ac-small a::before{
display: none;

}

/*-----*/

/*メニュー打ち消し*/
.menu-list ul{
   display: flex;
   flex-direction: column;
   list-style: none; 
}

.menu-list ul li{
   width: 95%;
   background: #86c56e;
   text-align: left;
   padding: 0px 5px;
}

.menu-list ul li:nth-child(even){
border-left:none; 
border-right:none; 
}

.menu-list ul li a{
color:#FFF;
}

.menu-list ul li:nth-child(odd) {
    border-left: none;
    border-right: none;
}
    
.menu-list ul li a:hover{
color:#FFF;
}

/*モバイル用アコーディオンメニュー
-------------------------------------*/
.menu-btn {
    position: fixed;
    top: 17px;
    right: 10px;
    display: flex;
     height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #86c56e;
	border-radius: 3px;
}
    

    
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

#menu-btn-check:checked ~ .menu-list {
    left: 0;/*メニューを画面内へ*/
}

.menu-list {
 width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #86c56e;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-list ul {
    padding: 70px 10px 0;
}
.menu-list ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-list ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-list ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

}


