.attention-inner {
  padding: 2rem 0 0;
  color: #000;
  border-bottom: #ff0064 1px solid;
}

.attention-toggle {
  display: none;
}

.Label {
  padding: 1em 0 1em;
  display: block;
  text-align: center;
  font-size: 16px;
  color: #ff0064;
  font-weight: 400;
  border-top: #ff0064 1px solid;
}

.Label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid #ff0064;
  border-right: 2px solid #ff0064;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 9px);
  right: 20px;
  transform: rotate(135deg);
}

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

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

.attention-toggle:checked+.Label+.attention-content {
  height: auto;
  padding: 2em 0 2em;
  transition: all 0.3s;
}

.attention-toggle:checked+.Label::before {
  transform: rotate(-45deg) !important;
}

.attention-content p {
  color: #fff;
  font-size: 12px;
  margin: 0 0 .4em;
}

.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;
}

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

  .Label {
    padding: 1em 0 1em;
    font-size: 3.2vw;
  }

  .Label::before {
    width: 10px;
    height: 10px;
    border-top: 1px solid #ff0064;
    border-right: 1px solid #ff0064;
    top: calc(50% - 5px);
  }

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

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

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

  .Label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 12px);
  }

  .attention-content p {
    font-size: 12px;
  }

}

@media screen and (min-width: 1025px) {
  .Label:hover {
    color: #000;
    background-color: #ff0064;
  }

  .Label:hover::before {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }

}