@charset "UTF-8";


.tab_block{
width:100%;
  max-width: 1200px;
  margin:0px auto;	
}


/*tabの形状*/
.tab{
  display: flex;
  flex-wrap: wrap;
text-align: center;
}
.tab ul{
text-align: center;
}
.tab li a{
  display: block;
  background:#dddddd;
color: #fff;
  margin:0 2px;
  padding:15px 15px;
	padding-left: 50px;
	padding-right: 50px;
font-weight: bold;
font-size: 12px;
/*左上*/
border-top-left-radius:10px;
/*右上*/
border-top-right-radius:10px;	
width:100%;
}

.btn_block2{
padding-bottom: 15%;
display: block;
text-align: center;
}

@media only screen and (max-width: 768px){

.tab li a{
  display: block;
 background:#dddddd;
color: #fff;
  margin:0 1px;
  padding:15px 0px;
	padding-left: 20px;
	padding-right: 20px;
font-weight: bold;
font-family: "Arial Black", Gadget, "sans-serif";
font-size: 12px;
/*左上*/
border-top-left-radius:10px;
/*右上*/
border-top-right-radius:10px;	

}


}

/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background:#111111;
color: #fff;
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding:10px 0px;
  border-top: 3px solid #111111;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}


.area h3{
  margin:0;
/*padding-left: 15px;*/
}


.area ul{
margin-bottom: 5%;
padding-right: 15px;
padding-left: 15px;
}


.area li{
	font-size: 95%;
	padding-top: 17px;
	padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
line-height: 1.5em;
min-height: 50px;
vertical-align:top;
display: block;
}

@media only screen and (max-width: 768px){



.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding:0px 0px;
    border-top: 5px solid #111111;
}


}
@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.title_menu{
display: block;
/* padding-top: 5%; */
padding-bottom: 1%;
font-size: 1.1rem;
font-weight: bold;	
}

.price{
    font-size: 80%;
    font-weight: 800;
	float: right;
	padding-left: 5%;
	
}

.price_s{
    font-size: 70%;
    font-weight: bold;
	
}




