@charset "UTF-8";
section {
  margin-bottom: 50px;
}

h3 {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #094fa4;
}

span.caution {
  display: block;
}

span.caution,
li.caution {
  position: relative;
  font-size: 80%;
  padding-left: 20px;
  color: #626262;
}
span.caution::before,
li.caution::before {
  content: "※";
  position: absolute;
  top: -2px;
  left: 0;
}

span.red {
  color: red;
}

p strong {
  font-weight: 700;
}

.mt_10 {
  display: block;
  margin-top: 10px;
}

.mt_20 {
  display: block;
  margin-top: 20px;
}

.mt_30 {
  display: block;
  margin-top: 30px;
}

section#sec_01 table {
  margin-bottom: 20px;
}
section#sec_01 table,
section#sec_01 tbody {
  width: 100%;
}
section#sec_01 table tr:nth-child(even) th {
  background-color: #bfbfbf;
}
section#sec_01 table tr:nth-child(even) td {
  background-color: #ededed;
}
section#sec_01 table tr:nth-child(odd) th {
  background-color: #ededed;
}
section#sec_01 table tr th {
  width: 30%;
  vertical-align: middle;
}
section#sec_01 table tr th,
section#sec_01 table tr td {
  padding: 15px;
}
section#sec_01 a.link_btn {
  position: relative;
  display: inline-block;
  width: 90%;
  max-width: 300px;
  margin-top: 20px;
  padding: 10px;
  background-color: rgb(255, 255, 255);
  border: 2px solid #333;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}
section#sec_01 a.link_btn::before {
  content: "▲";
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  font-size: 2px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: rgb(196, 52, 52);
  border-radius: 2px;
  transform: rotate(90deg);
}