@charset "UTF-8";

.guide_container {
  width: 100%;
  color: #333;
  background-color: #fff;
  margin: 0 auto;
  box-sizing: border-box;
}
.guide_container .guide_main {
  font-size: 24px;
  text-align: center;
  margin-bottom: 2em;
}
.guide_container .box {
  margin-bottom: 60px;
}
.guide_container .box:last-child {
  margin-bottom: 0;
}
.guide_container h2 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 1em;
}
.guide_container h3 {
  font-size: 16px;
  border-bottom: solid 1px #333;
  padding-bottom: 0.5em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.guide_container p {
  font-size: 14px;
  line-height: 2;
  word-wrap: break-word;
}
.guide_container a {
  color: #00F;
  text-decoration: underline;
}
.guide_container table {
  width: 100%;
  box-sizing: border-box;
  margin-top: 1em;
}
.guide_container table tr th,
.guide_container table tr td {
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
  padding: 10px;
  border: solid 1px #333;
}
.guide_container table tr td {
  text-align: right;
}
@media screen and (max-width:768px) {
  .guide_container .guide_main {
    font-size: 20px;
  }
  .guide_container h2 {
    font-size: 18px;
    line-height: 1.5;
  }
  .guide_container h3 {
    font-size: 14px;
  }
  .guide_container p {
    font-size: 13px;
  }
  .guide_container table tr th,
  .guide_container table tr td {
    font-size: 13px;
  }
  .guide_container table tr td {
    width: 120px;
    min-width: 120px;
  }
}