@charset "UTF-8";


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

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* tabの基本スタイル */
.tab {
  flex-wrap: wrap;
}

/* 通常（PC）の表示 */
.tab ul {
  text-align: center;
}

/* 通常のli */
.tab li a {
  display: block;
  color: #111111;
  margin: 0;
  padding-top: 4%;
  padding-bottom: 5%;
  padding-left: 10%;
  font-size: 15px;
  width: 100%;
  list-style: none;
  border-bottom: 1px dotted #cccccc;
  margin-top: 1%;
  margin-bottom: 1%;
}

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

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

.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .tab li {
    width: 50%; /* 2列にしたい場合（3列なら33.333%） */
        box-sizing: border-box;
    display: flex; /* liもflexにすることで子要素を伸ばせる */
  }

  .tab li a {
    display: flex;               /* ← Flexにする */
  align-items: center;         /* ← 縦方向中央揃え */
  justify-content: center;     /* ← 横方向中央揃え */
  padding: 10px;
  font-size: 14px;
  margin: 2px;
  text-align: center;
  flex: 1;
  }

}

/*liにactiveクラスがついた時の形状*/
.tab li.active a{
background:#912a7d;
color: #fff;
border-radius: 10px;	
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  padding:10px 0px;
}

/*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 #cccccc;
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*/
  padding:0px 0px;
}


}
@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;
	
}




