@charset "utf-8";

.editor {
  line-height: 2;
}

/* 見出し */

.ttl-01 {
  margin: 80px 0 1em;
  padding: 7px 10px;
  color: #fff;
  font-size: inherit;
  font-weight: normal;
  background: #0e5ead;
}

.ttl-01:before {
  margin: 0 10px;
  font-family: "Font Awesome 5 Free";
  content: '\f0c8';
  font-weight: 900;
  font-size: 12px;
}

.ttl-02 {
  margin: 40px 0 1em;
  color: #0e5ead;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

.ttl-02 span {
  display: inline-block;
  position: relative;
}

.ttl-02 span:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 25px;
  height: 1px;
  background: #005ead;
  transform: rotate(-45deg);
}

@media screen and (max-width: 810px) {
  .ttl-01 {
    margin-top: 40px;
  }

  .ttl-02 {
    font-size: 26px;
  }

  .ttl-02 span:before {
    left: 50%;
    margin-left: -12px;
  }
}

/* ボタン */

.btn {
  display: inline-block;
  position: relative;
  min-width: 260px;
  padding: 13px 40px;
  border: none;
  color: #fff;
  font-size: inherit;
  text-align: center;
  background: linear-gradient(to right, #0e5ead 15%, #006dc7 85%);
  transition: .3s all;
}

.btn:hover {
  opacity: .8;
}

.btn-arrow-r:after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 20px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  transform: translateY(-50%);
}

.btn-arrow-l:after {
  content: "\f053";
  position: absolute;
  top: 50%;
  left: 20px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  transform: translateY(-50%);
}

.btn-blank:after {
  content: "\f35d";
  position: absolute;
  top: 50%;
  right: 15px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  transform: translateY(-50%);
}

@media screen and (max-width: 810px) {
}

/* 表 */

.tbl-01 {
  width: 100%;
  margin: 1em 0;
  border: 1px solid #dadada;
  border-collapse: collapse;
}

.tbl-01 th {
  padding: 15px 20px;
  border: 1px solid #dadada;
  text-align: left;
  background: rgba(55, 166, 253, .1);
}

.tbl-01 td {
  padding: 15px 20px;
  border: 1px solid #dadada;
  background: #fff;
}

.tbl-02 {
  width: 100%;
  margin: 1em 0;
  border: 1px solid #dadada;
  border-collapse: collapse;
}

.tbl-02 th {
  padding: 15px 20px;
  border: 1px solid #dadada;
  text-align: center;
  background: rgba(55, 166, 253, .1);
}

.tbl-02 td {
  padding: 15px 20px;
  border: 1px solid #dadada;
  background: #fff;
}

@media screen and (max-width: 810px) {
  .tbl-01 th,
  .tbl-01 td {
    padding: 10px;
  }

  .tbl-02 th,
  .tbl-02 td {
    padding: 10px;
  }
}

/* カラム */

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -15px;
}

.col {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333333%;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

@media screen and (max-width: 810px) {
  .row {
    display: block;
  }

  .col {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100%;
    margin: 1em 0;
  }
}

