#support .notice_table .col1 {
  width: 24%;
}
#support .notice_table .col2 {
  color: black;
  width: 76%;
}

.row {
  display: flex;
  justify-content: left;
}

.col-manual-exchange {
  display: inline-block;
  margin-left: 15px;
  margin-top: 10px;
  margin-bottom: 1px;
  padding: 0.6em 1em 0.6em 1em;
  text-decoration: none;
  background: #efefef;
  border-left: solid 5px royalblue;/*左線*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.col-manual-main:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

.par-manual-exchange {
  margin-left: 15px;
}

.col-manual-gsuite {
  display: inline-block;
  margin-left: 15px;
  margin-top: 10px;
  margin-bottom: 1px;
  padding: 0.6em 1em 0.6em 1em;
  text-decoration: none;
  background: #efefef;
  border-left: solid 5px tomato;/*左線*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.col-manual-gsuite:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

.col-manual-garoon {
  display: inline-block;
  margin-left: 15px;
  margin-top: 10px;
  margin-bottom: 1px;
  padding: 0.6em 1em 0.6em 1em;
  text-decoration: none;
  background: #efefef;
  border-left: solid 5px mediumseagreen;/*左線*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.col-manual-garoon:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

.col-manual-office {
  display: inline-block;
  margin-left: 15px;
  margin-top: 10px;
  margin-bottom: 1px;
  padding: 0.6em 1em 0.6em 1em;
  text-decoration: none;
  background: #efefef;
  border-left: solid 5px gold;/*左線*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.col-manual-office:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

.col-manual-other {
  display: inline-block;
  margin-left: 15px;
  margin-top: 10px;
  margin-bottom: 1px;
  padding: 0.6em 1em 0.6em 1em;
  text-decoration: none;
  background: #efefef;
  border-left: solid 5px white;/*左線*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.col-manual-other:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}


.toggleable__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .8s cubic-bezier(0,1,0,1)
}

.toggleable__control:checked ~ .toggleable__content {
  transition-timing-function: ease-in-out;
  max-height: 840px;
}

/* Hiding elements in an accessible way */
.hidden--visually {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Theming CSS */
.toggleable {
  border-bottom: 2px solid lightgray;
}

.toggleable__label {
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 0;
  cursor: pointer;
}

.toggleable__content {
  margin-top: 1rem;
  padding: 0 2rem;
}

.toggleable__control:checked ~ .toggleable__content {
  margin-bottom: 1rem;
}

  
.toggleable__label::after {
  content: "▼";
    font-size: 0.8rem;
}

.toggleable__control:checked ~ .toggleable__label::after {
  content: "▲";
}