@charset "utf-8";
/*ボックス全体*/
.accbox {
  margin: 10px 0px 0px 0px;
  padding: 0;

}
/*ラベル*/
.accbox label {
  display: block;
  padding: 8px 0px;
  background: none 0% 0% / auto auto repeat scroll padding-box border-box #683E14;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS明朝", serif;
  transform: rotate(.03deg);
  font-size: 1.8rem;
  color: #FFFFFF; font-weight: bold;
  width: 100%; max-width: 300px;
}
/*ラベルホバー時*/
.accbox label:hover {
  background: none 0% 0% / auto auto repeat scroll padding-box border-box #9E671A;
}
/*チェックは隠す*/
.accbox input {
  display: none;
}
/*中身を非表示にしておく*/
.accbox .accshow {
 height: 0;
 padding: 0;
 overflow: hidden;
 opacity: 0;
 transition: 0.2s;
}
/*クリックで中身表示*/
.cssacc:checked + .accshow {
	height: inherit;
	margin: 0 auto;
	padding: 30px 0px;
	background: none 0% 0% / auto auto repeat scroll padding-box border-box;
	background-color: rgba(255,255,255,0.07);
	opacity: 1;
	border: 1px solid #7F6942;
  width: 100%; max-width: 800px;
}
.aco_text01 {
	width: 92%;
	font-size: 15px; line-height: 1.7;
	text-align: left;
}
.aco_text01_right {
	padding: 0px 0px 0px 0px;
	font-size: 15px; line-height: 1.7;
	text-align: right;
}

.ao_line01 {
	text-align: left;
	border-left: 10px solid #DBD6A5;
	margin-bottom: 20px;
	padding: 5px 0px 5px 10px;
	font-size: 15px; line-height: 1.7; }

/*sp*/
@media screen and (max-width: 700px) {
	
  /*ラベル*/
  .accbox label {
    display: block;
    padding: 11px 0px;
		width: 100%;
  }
  /*クリックで中身表示*/
  .cssacc:checked + .accshow {
   height: inherit;
   padding: 20px 0px;
		width: 100%;
  }
  .aco_text01 { 
		width: 90%;
    font-size: 14px; line-height: 1.6;
    text-align: left;
  }
  .aco_text01_right {
    padding: 0px 0px 0px 0px;
    font-size: 14px; line-height: 1.6;
    text-align: right;
  }
	
}