@charset "utf-8";


/* ----------↓ LIST ↓---------- */

#main ul,
#main li {
  list-style-type: none;
}

#main ul.disc li {
  background: none;
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0.2em;
}

#main ul.none li {
  background: none;
  list-style-type: none;
  margin-left: 1.5em;
  padding-left: 0.2em;
}

/* ----------↓ TABLE01 ↓---------- */
.table01 {
  width: 100%;
  margin-bottom: 1em;
}

.table01 tr {
  border-top: 1px solid #CCCCCC;
}

.table01 tr:last-child {
  border-bottom: 1px solid #CCCCCC;
}

.table01 th,
table td {
  line-height: 1.3em;
  vertical-align: middle;
  padding: 13px;
}

.table01 th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #F6F6F6;
  punctuation-trim: adjacent;
  text-align: left;
  width: 30%;
}

/* ----------↓ TABLE02 ↓---------- */

.table02 {
  width: 100%;
  margin-bottom: 0.5em;
}

.table02 tr {
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
}

.table02 th {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #FFFFFF;
}

.table02 th:last-child {
  border-right: 1px solid #CCCCCC;
}

.table02 td {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}

.table02 th {
  background-color: #A1AFDD;
  padding: 8px 0;
  color: #FFFFFF;
  vertical-align: middle;
  white-space: nowrap;
}

.table02 td:first-child {
  padding: 8px 8px 8px 15px;
  background-color: #EEEEEE;
}

.table02 td {
  text-align: center;
  vertical-align: middle;
  padding: 9px 7px 7px 7px;
  line-height: 1.3em;
  border-top: none;
}

/* ----------↓ TABLE03 ↓---------- */

.table03 {
  width: 100%;
  margin-bottom: 2em;
}

.table03 td:first-child {
  width: 25%;
  background-color: #EEE;
  text-align: center;
}

.table03 tr {
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
}

.table03 th {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #FFFFFF;
}

.table03 th:last-child {
  border-right: 1px solid #CCCCCC;
}

.table03 td {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}

.table03 th {
  background-color: #A1AFDD;
  padding: 7px;
  color: #FFFFFF;
  vertical-align: middle;
  white-space: nowrap;
}

.table03 td {
  vertical-align: middle;
  padding: 7px;
  line-height: 1.3em;
}


/* ----------↓ #FLOW↓---------- */

#flow {
  counter-reset: h3;
}

#flow h3 {
  display: flex;
  font-size: 16px;
  padding: 0;
  line-height: 35px;
  border-style: none;
  clear: both;
  background-color: #f0f0f0;
}

#flow h3:before {
  counter-increment: h3;
  content: counter(h3);
  background-color: #a1afdd;
  color: #fff;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 20px;
  margin-right: 15px;
}

@media screen and (max-width: 980px) {

  #flow h3 {
    line-height: 50px !important;
  }

  #flow h3:before {
    line-height: 50px;
    width: 50px;
    height: 50px;
  }
}