@charset "utf-8";
/* CSS Document */
/*==============================
==============================
★　TICKET　★
※　金額
==============================
==============================*/
/*tabの形状*/
.money-contents {
  width: 70%;
  margin: 0 auto;
}
.tab {
  margin: auto;
  display: flex;
  justify-content: center;
}
.tab li a {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  border: 3px dotted #D8D8D8;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #44073B;
}
/*エリアの表示非表示と形状*/
.area {
  margin: 0 auto;
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #303030;
  padding: 50px 20px;
  border: 3px dotted #D8D8D8;
  text-transform: uppercase;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==============================
==============================*/
@media (max-width: 651px) {
  .tab li a {
    border: 2px dotted #D8D8D8;
  }
  .area {
    border: 2px dotted #D8D8D8;
  }
}
/*==============================
==============================*/
@media (max-width: 426px) {
  .money-contents {
    width: 90%;
  }
  .tab {
    width: 100%;
  }
}