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

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

#contents img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

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

.mb_20 {
  margin-bottom: 20px;
}

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

.fwb {
  font-weight: bold;
}

.small {
  font-size: 12px;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.under {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.red {
  color: red;
}

.blue {
  color: #0276c7;
}

.bgBlue {
  display: inline-block;
  padding: 0 4px;
  color: #fff;
  background-color: blue;
}

#sec_02 a {
  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;
}
#sec_02 a::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);
}