@charset "UTF-8";
.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .horizontal {
    display: block;
  }
}
.horizontal + .horizontal {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .horizontal + .horizontal {
    margin-top: 0;
  }
}
.horizontal .horizontal_title {
  margin: 0;
  width: 300px;
  height: 180px;
  position: relative;
  box-shadow: 3px 3px 5px rgba(33, 33, 33, 0.3);
  font-weight: normal;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .horizontal .horizontal_title {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 20px;
  }
}
.horizontal .horizontal_title span {
  display: block;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .horizontal .horizontal_title span {
    position: static;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.horizontal .horizontal_text {
  width: calc(100% - 360px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .horizontal .horizontal_text {
    width: 100%;
  }
}
.horizontal .horizontal_text > p:first-child,
.horizontal .horizontal_text > ol:first-child {
  margin-top: 0;
}
.horizontal .horizontal_text ol.emphasis {
  list-style: none;
  padding: 0;
  font-weight: bold;
  counter-reset: li;
}
.horizontal .horizontal_text ol.emphasis > li {
  margin-bottom: 0;
}
.horizontal .horizontal_text ol.emphasis > li::before {
  counter-increment: li;
  content: counter(li) ". ";
  color: #ff5845;
}
.horizontal .horizontal_text ol:not([class]) {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  counter-reset: list;
}
.horizontal .horizontal_text ol:not([class]) li::before {
  counter-increment: list;
  content: counter(list) ".";
  padding-right: 20px;
}
.horizontal .horizontal_text dl {
  line-height: 1.6;
}
.horizontal .horizontal_text dl dt {
  font-weight: bold;
}
.horizontal .horizontal_text dl dd {
  text-indent: -1em;
  margin-left: 1em;
}
.horizontal .horizontal_text dl dd::before {
  content: "・";
}
.horizontal .horizontal_text .rule {
  line-height: 1.6;
  font-size: 90%;
}
.horizontal .horizontal_text .rule .rule_title {
  font-size: 15px;
  font-weight: bold;
  margin: 10px 0;
}
.horizontal .horizontal_text .rule p {
  margin: 10px 0;
}
.horizontal .horizontal_text .rule ol {
  margin: 10px 0;
}
.horizontal .horizontal_text .rule ol > li {
  text-indent: calc(-1em - 20px);
  margin-left: calc(1em + 20px);
  margin-bottom: 5px;
}

/*# sourceMappingURL=how_we_do_it.css.map */
