  .tab {
  display: flex;
  flex-wrap: wrap;
}

.input {
  position: absolute;
  opacity: 0;
}

.tab-label {
  position: relative;
  width: auto;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: bold;
  color: #b0b0b0;
  margin-bottom: 0;
  transition: background 0.4s, color 0.4s;
  border-radius: 6px 6px 0 0;
}

.tab-label:active {
  background: #ccc;
}

.tab-label[for="tab-1"] {
  background: #64121D;
}

.tab-label[for="tab-1"]:hover {
  background: #B32034;
}

.input:checked+.tab-label[for="tab-1"] {
  background: #C7243A;
  color: #fff;
  transition: opacity ease-out 0.2s;
}

.tab-label[for="tab-2"] {
  background: #004356;
}

.tab-label[for="tab-2"]:hover {
  background: #00799A;
}

.input:checked+.tab-label[for="tab-2"] {
  background: #0086AB;
  color: #fff;
  transition: opacity ease-out 0.2s;
}

.tab-label[for="tab-3"] {
  background: #a67908;
}

.tab-label[for="tab-3"]:hover {
  background: #dab24a;
}

.input:checked+.tab-label[for="tab-3"] {
  background: #d59b0a;
  color: #fff;
  transition: opacity ease-out 0.2s;
}

.tab-panel {
  order: 99;
  display: none;
  padding: 10px 0;
  background: #fff;
  transition: opacity linear 0.2s;
}

.tab-panel p {
  font-weight: 900;
}

.input:checked+.tab-label+.tab-panel {
  display: block;
  width: 100%;
}

.tab .tab-panel:first-of-type {
  border-top: solid 4px #C7243A;
  border-bottom: solid 4px #C7243A;
}

.tab .tab-panel:nth-of-type(2) {
  border-top: solid 4px #0086AB;
  border-bottom: solid 4px #0086AB;
}

.tab .tab-panel:nth-of-type(3) {
  border-top: solid 4px #d59b0a;
  border-bottom: solid 4px #d59b0a;
}

@media (max-width:768px) {
  .tab-label {
    font-size: 1.4rem;
    padding: 10px;
    line-height: 1.4em;
    text-align: center;
    width: calc(100%/3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#announce-1 .trouble-link {
  color: #C7243A;
  font-weight: 900;
}

#announce-1 .trouble-link-recovered {
  color: #403999;
}

#announce-2 a, #announce-3 a {
  color: #403999;
}

.mainContent section:first-of-type {
  margin: 0 0 30px;
}

.trouble-article {
  padding: 7px 0;
  border-bottom: dashed 1px #999;
}

.maintenance-detail {
  font-size: 85%;
  text-align: right;
}

.maintenance-detail a {
  color:#403999;
  font-weight:900;
  }

ul p {
  padding: 5px 15px 0;
}

.frameBox__em {
  display: none;
}

div.section {
  /*
  display:none;
*/
}

#trouble::after, #maintenance::after, #security::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3243a;
  border: solid 2px #fff;
}


#tab-panel-2, #tab-panel-3 {
  overflow: auto;
  height: 50vh;
}