@charset "utf-8";

.list__toggle {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  border-bottom: #000 solid 3px;
}

.list__open {
  position: absolute;
  width: 18%;
  height: 100%;
  background-color: #000;
  top: 0;
  right: 0;
}

.accordion {
  position: relative;
  width: 100%;
}

.accordion-content {
  display: none;
}

.accordion-right {
  position: relative;
  cursor: pointer;
  background: #fff;
}

.line_outer {
  width: 100%;
  height: 60px;
}

.line-on {
  display: none;
  width: 60%;
  height: 60px;
  margin: 0 auto;
  background-image: url("../img/common/tgl_btn_close.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.line-off {
  width: 60%;
  height: 60px;
  margin: 0 auto;
  background-image: url("../img/common/tgl_btn_open.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.genre_outer {
  width: 100%;
  height: 60px;
}

.genre-on {
  display: none;
  width: 60%;
  height: 60px;
  margin: 0 auto;
  background-image: url("../img/common/tgl_btn_close.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.genre-off {
  width: 60%;
  height: 60px;
  margin: 0 auto;
  background-image: url("../img/common/tgl_btn_open.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.tag_outer {
  width: 100%;
  height: 60px;
}

.tag-on {
  display: none;
  width: 60%;
  height: 60px;
  margin: 0 auto;
  background-image: url("../img/common/tgl_btn_close.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.tag-off {
  width: 60%;
  height: 60px;
  margin: 0 auto;
  background-image: url("../img/common/tgl_btn_open.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.list__outer{
  margin-bottom: 40px;
}

.list__outer li {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 10px;
}

.tag__btn {
  display: block;
  padding: .4em .6em;
  text-align: center;
  color: #e63556;
  font-size: 18px;
  border: #e63556 solid 2px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tag__btn:hover,
.tag__btn.active {
  text-decoration: none;
  color: #fff;
  border: #e63556 solid 2px;
  background-color: #e63556;
}

.tab_box .tab_panel {
    display:none;
}

.tab_box .tab_panel.active {
    display:block;
}

.tag__btn.clicked {
  color: #fff;
  background-color: #e63556;
}

.tab_panel {
  animation: blackIn 1s ease 0s 1 normal;
  -webkit-animation: blackIn 1s ease 0s 1 normal;
}

@keyframes blackIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes blackIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@media screen and (min-width: 1px) and (max-width: 767px) {

  .list__toggle {
    margin-bottom: 40px;
    padding-bottom: 5px;
    font-size: 16px;
  }

  .list__open {
    width: 30%;
  }

  .line_outer {
    height: 40px;
  }

  .line-on {
    width: 60%;
    height: 40px;
  }

  .line-off {
    width: 60%;
    height: 40px;
  }

  .genre_outer {
    height: 40px;
  }

  .genre-on {
    width: 60%;
    height: 40px;
  }

  .genre-off {
    width: 60%;
    height: 40px;
  }

  .tag_outer {
    height: 40px;
  }

  .tag-on {
    width: 60%;
    height: 40px;
  }

  .tag-off {
    width: 60%;
    height: 40px;
  }

.tag__btn {
  font-size: 14px;
}

  .tag__btn a {
    font-size: 14px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation:portrait) {

  .accordion-right::after {
    right: 3.3%;
  }

  .tag__btn a {
    font-size: 20px;
  }

}
