.deco_bg_color{
	margin:2em auto;
	background: #eee !important;
	padding:10px;
}

.deco_bg_color2{
	margin:2em auto 1em;
	background: #eee !important;
	padding:10px;
}

#shouhin_category h3.h3_style {
    color: #000;
    font-size: 20px !important;
    font-weight: bold;
    line-height: 100%;
    border-bottom: solid 2px #98913e;
    text-align: center;
    letter-spacing: 2px;
    margin: 20px auto 20px;
    padding: 8px;
}


/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#019ac6;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
	text-align: left !important;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

@media only screen and (max-width: 750px) {
.link_button a {
    display: inline-block;
    border: solid 1px #222;
    text-decoration: none;
    color: #222;
    text-align: center;
    font-size: 16px;
    line-height: 60px;
    overflow: hidden;
    position: relative;
    line-height:auto;
    padding: 10px 40px;
    margin: 10px auto;
}
	
	#shouhin_category p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 120%;
    text-align: left !important;
}
}

/*==================================================
スライダーのためのcss
===================================*/


/*画像の横幅を100%にしてレスポンシブ化*/
.wrapper img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
  }
  
  /*メイン画像下に余白をつける*/
  
  .gallery{
	margin:0 0 5px 0;
  }
  
  /*矢印の設定*/
  
  /*戻る、次へ矢印の位置*/
  .slick-prev, 
  .slick-next {
	  position: absolute;/*絶対配置にする*/
	z-index: 3;
	  top: 42%;
	  cursor: pointer;/*マウスカーソルを指マークに*/
	  outline: none;/*クリックをしたら出てくる枠線を消す*/
	  border-top: 2px solid #202020;/*矢印の色*/
	  border-right: 2px solid #202020;/*矢印の色*/
	  height: 25px;
	  width: 25px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
	  left:-5%;
	  transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
	  right:-5%;
	  transform: rotate(45deg);
  }
  
  /*選択するサムネイル画像の設定*/
  
  .choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
	width:25%!important;
  }
  
  .choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
  }
  
  .choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
  }
  
  .choice-btn .slick-track {
	transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
  }
  
  /*========= レイアウトのためのCSS ===============*/
  
  /*エリア全体を中央寄せ*/
  .wrapper{
	width:80%;
	max-width:650px;
	margin:0 auto;
  }
  
  ul{
	margin:0;
	padding: 0;
	list-style: none;
  }
  
  a{
	color: #333;
  }
  
  a:hover,
  a:active{
	text-decoration: none;
  }
  
  h1{
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin:30px 0;
  }
  
  p{
	margin:30px 0;
	word-wrap : break-word;
  }
  