@charset "UTF-8";
/* @content */
#concert .contents {
  margin-top: 80px;
}
#concert .contents p{
  margin: 0;
}
#concert .left {
  float: left;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
#concert .left2 {
  float: left;
  width: 100%;
}
#concert .left2 p {
  margin-top: 10px;
}
#concert .scroll {
  overflow: auto;　　　　/*tableをスクロールさせる*/
  white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/
}
#concert table {
  width: 160%;
  max-width: 160%;
}
#concert table th {
  padding: 20px;
  background-color: #EDEDED;
  border: 1px solid #AAAAAA;
}
#concert table td {
  padding: 20px;
  line-height: 1.5;
  border: 1px solid #AAAAAA;
}

#concert .acd-check {
    display: none;
}
#concert .acd-label {
    background: #CCCCCC;
    color: #000;
    display: block;
    margin-bottom: 1px;
    padding: 20px;
    position: relative;
}
#concert .acd-label::after {
    background-image: url(../images/concert/plus.png);
    content: '';/*何も入れない*/
    display: inline-block;/*忘れずに！*/
    width: 15px;/*画像の幅*/
    height: 15px;/*画像の高さ*/
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 20px;
    background-position: right;
  }
#concert .acd-check:checked + label.acd-label::after {
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
}
#concert .acd-content {
    height: 0;
    opacity: 0;
    transition: .5s;
    visibility: hidden;
    overflow: auto;
}
#concert .acd-content table th td{
    overflow: hidden;　　　　/*tableをスクロールさせる*/
    white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/
}
#concert .acd-check:checked + .acd-label + .acd-content {
    height: 100%;
    opacity: 1;
    padding: 10px 0;
    visibility: visible;
}
#concert .acd-content table{
  margin: 10px 0;
}

#concert .text_wrapper{
  position: relative;
  margin-bottom: 165px;
}
#concert .text{
  height: 140px;
  overflow: hidden;
}
#concert .show_more{
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 30px;
  padding-top: 40px;
  text-align: center;
  line-height: 50px;
  /*background: linear-gradient(180deg, rgb(255, 255, 255,0) 0%, rgb(255, 255, 255,1) 70%);*/
  background: url(../images/history/tx_hide.png);
  cursor: pointer;
  transition: bottom 0.2s;
}
#concert .show_more li{
  list-style: none;
  text-align: center;
  width: 100%;
  float: none;
  display: inline-block;
  padding: 20px 0;
}
#concert .last li{
  text-align: center;
  float: none;
  display: block;
  margin: 0 auto;
  width: 100%;
}


/* ------------------------------------------
  pc1000pxSTYLE
--------------------------------------------- */
@media all and (min-width: 1000px) {
    /* @content */
  #concert .left {
    width: 35%;
    text-align: left;
  }
  #concert .left2 {
    width: 65%;
  }
  #concert .left2 p {
    margin: 0;
  }
  #concert .scroll {
    overflow: hidden;　　　　/*tableをスクロールさせる*/
  }
  #concert .acd-content {
    overflow: hidden;
  }
  #concert table {
    width: 100%;
    max-width: 100%;
  }
}

/* ------------------------------------------
  iPad768pxSTYLE
--------------------------------------------- */
@media all and (min-width: 768px) {

  #concert .show_more li{
    width: 20%;
  }

}
