.attention-toggle {
  display: none;
}

.Label {
  margin: 1.5rem 0 0;
  padding: .6em 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-size: 14px;
  color: #6775d3;
  font-weight: 400;
  border-top: 1px solid #6775d3;
  border-bottom: 1px solid #6775d3;
}

.Label::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #6775d3;
  border-right: 1px solid #6775d3;
  transform: rotate(135deg) translate(-1px, 3px);
}

.attention-toggle:checked+.Label::after {
  transform: rotate(-45deg) translate(-3px, 2px);
}

.Label,
.attention-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.attention-content {
  height: 0;
  padding: 0;
  overflow: hidden;
  font-feature-settings: normal;
  letter-spacing: -0.03em;
}

.attention-toggle:checked+.Label+.attention-content {
  height: auto;
  padding: 1em 0 3em;
}

.attention-content p {
  font-size: 12px;
  margin: 0 0 .2em;
}

.idt {
  padding-left: 1em;
  text-indent: -1em;
}

.idt-2 {
  padding-left: 2em;
  text-indent: -1em;
}

.idt-3 {
  padding-left: 2em;
  text-indent: -1em;
}

.idt-4 {
  padding-left: 1em;
}

.txt-top {
  padding-top: 1em;
}

.txt-btm {
  padding-bottom: 1em;
}

.theater {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

a.theater-item {
  width: 32%;
  margin: 0 2% 0 0;
  padding: 1em 0 1em 1em;
  font-size: 11px;
  border-bottom: #6775d3 solid 1px;
  background-image: url(../img/common/arrow-on.png);
  background-position: center right 4%;
  background-size: 1.5% auto;
  background-repeat: no-repeat;
  transition: all 0.3s;
}

.theater-item span {
  display: inline-block;
  width: 16%;
  padding: 0.1em 0.4em;
  margin: 0 0.6em 0 0;
  border: #6775d3 solid 1px;
  text-align: center;
  color: #6775d3;
  font-size: 80%;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .Label {
    margin: 1.2rem 0 0;
    font-size: 12px;
    text-align: center;
  }

  .Label::after {
    width: 10px;
    height: 10px;
  }

  .attention-toggle:checked+.Label+.attention-content {
    padding: 1em 0 1em;
  }

  .attention-content p {
    font-size: 12px;
    margin: 0 0 .3em;
    line-height: 1.6;
  }

  .txt-btm {
    padding-bottom: 1em;
  }

  a.theater-item {
    width: 100%;
    padding: 1em 0 1em 0;
    font-size: 12px;
  }

  .theater-item span {
    display: inline-block;
    width: 16%;
    padding: 0.1em 0.4em;
    margin: 0 0.6em 0 0;
    border: #6775d3 solid 1px;
    text-align: center;
    color: #6775d3;
    font-size: 80%;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .Label {
    font-size: 1.823vw;
  }

  .attention-toggle:checked+.Label+.attention-content {
    padding: 1em 0 2em;
  }

  .attention-content p {
    font-size: 1.563vw;
  }

  a.theater-item {
    width: 48%;
    margin: 0 2% 0 0;
    padding: 1em 0 1em 0;
    font-size: 1.563vw;
  }

  a.theater-item:nth-child(2n) {
    margin: 0;
  }

  .theater-item span {
    font-size: 80%;
  }

}

@media screen and (min-width: 1025px) {
  .Label:hover {
    background-color: rgba(255, 255, 255, .5);
  }

  a.theater-item:hover {
    background-color: rgba(103, 117, 211, 0.2);
  }

  a.theater-item:nth-child(3n) {
    margin: 0 0 0 0;
  }
}