@charset "UTF-8";
/* =================================================================================================

　公演日程

================================================================================================= */
/* CSS Document */
.lead {
  margin-bottom: 5rem;
}

/* ----------------------------------------------------------------------------
　一覧
---------------------------------------------------------------------------- */
#concert_index {
  width: 90%;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 743px) {
  #concert_index {
    width: 100%;
  }
}

#concert_index ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#concert_index ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-sizing: border-box;
  width: 20%;
  margin: 0 6.6666% 5rem 0;
  position: relative;
}
#concert_index ul li:after {
  content: "";
  position: absolute;
  top: 0rem;
  right: -17.5%;
  width: 1px;
  height: 100%;
  background-color: #B2BDC6;
}
@media screen and (max-width: 743px) {
  #concert_index ul li:after {
    right: -7%;
  }
}
#concert_index ul li:nth-child(4n) {
  margin-right: 0%;
}
#concert_index ul li:nth-child(4n):after {
  display: none;
}
@media screen and (max-width: 743px) {
  #concert_index ul li {
    width: 47%;
    margin: 0 6% 4.5rem 0 !important;
  }
  #concert_index ul li:nth-child(2n) {
    margin-right: 0% !important;
  }
  #concert_index ul li:nth-child(2n):after {
    display: none !important;
  }
}

#concert_index li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  text-decoration: none;
}

#concert_index li a .finish {
  display: block;
  font-size: 1.2rem;
  padding: 0.2rem 0.5rem;
  background-color: #cc0000;
  border-radius: 2px;
  color: #fff;
  margin: 0.5rem 0;
  width: 80px;
  text-align: center;
}

#concert_index li a .thumbnail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 55%;
  margin: 0 auto 1rem;
  aspect-ratio: 1/1.4;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  -webkit-transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 743px) {
  #concert_index li a .thumbnail {
    width: 80%;
  }
}
#concert_index li a .thumbnail img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

#concert_index li a:hover .thumbnail {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

#concert_index li a .copy .data {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

#concert_index li a .copy .data .yymmdd {
  font-size: 1.6rem;
}

#concert_index li a .copy .ttl {
  font-weight: 700;
  margin-bottom: 1rem;
}

#concert_index li a .copy .place {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

#concert_index li a .btn_style02 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 75%;
}
@media screen and (max-width: 999px) {
  #concert_index li a .btn_style02 {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------
　詳細
---------------------------------------------------------------------------- */
#concert_detail {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 743px) {
  #concert_detail {
    width: 100%;
  }
}

#concert_detail .finish {
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  background-color: #cc0000;
  border-radius: 2px;
  color: #fff;
  margin: 0 0 2rem auto;
  width: 100px;
  text-align: center;
}

#concert_detail .attention {
  margin-bottom: 4rem;
  line-height: 180%;
}

#concert_detail .outline dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #5C7181;
  padding: 1rem 0;
}
@media screen and (max-width: 743px) {
  #concert_detail .outline dl {
    display: block;
    border: none;
    padding: 0 0 0 0;
    margin-bottom: 2rem;
  }
}

#concert_detail .outline dl dt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 1rem 1rem 1rem 0;
  font-weight: 700;
  line-height: 180%;
  border-right: 1px solid #5C7181;
}
@media screen and (max-width: 743px) {
  #concert_detail .outline dl dt {
    background-color: #DCE5EA;
    padding: 1rem 1rem;
    border: none;
    margin-bottom: 1rem;
  }
}

#concert_detail .outline dl dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  padding: 1rem 1rem 1rem 2rem;
  line-height: 180%;
}
@media screen and (max-width: 743px) {
  #concert_detail .outline dl dd {
    padding: 0rem;
  }
}
#concert_detail .outline dl dd a {
  color: #0E4193;
}

#concert_detail .outline dl dd .flyer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 743px) {
  #concert_detail .outline dl dd .flyer {
    display: block;
  }
}

#concert_detail .outline dl dd .flyer li {
  width: 100%;
  margin-right: 3rem;
}
#concert_detail .outline dl dd .flyer li:last-child, #concert_detail .outline dl dd .flyer li:only-child {
  margin-right: 0rem;
}
#concert_detail .outline dl dd .flyer li:after {
  display: none !important;
}
@media screen and (max-width: 743px) {
  #concert_detail .outline dl dd .flyer li {
    margin: 0 0 2rem 0;
  }
}

#concert_detail .outline dl dd .flyer li a {
  display: block;
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 743px) {
  #concert_detail .outline dl dd .flyer li a {
    display: block;
  }
}
#concert_detail .outline dl dd .flyer li a:after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: url("../img/icon_zoom.svg") center center no-repeat;
  background-size: 60% auto;
  background-color: #3e170c;
  border-top: none;
  border-right: none;
  border-radius: 100px;
}
#concert_detail .outline dl dd .flyer li a span {
  display: block;
  margin-top: 1rem;
  text-align: center;
}
#concert_detail .outline dl dd .flyer li a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#concert_detail .outline dl dd img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100% !important;
  -webkit-box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.3);
}

#concert_detail .outline dl dd ul {
  padding-left: 2rem;
}

#concert_detail .outline dl dd ul li {
  position: relative;
}

#concert_detail .outline dl dd ul li:after {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: -1.8rem;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #4E1E11;
}