/**
 * stepup.html専用のスタイル指定
 *
 * 注意:
 * 「PCファースト」の方針で記述しています。
 * はじめにPC、モバイル共通のスタイルを記述し、モバイル専用は後から上書きする形で記述しています。
 * 原則として、PC専用のメディアクエリは設けないようにしてください。
 */
/********************************
 * PC、モバイル共通
 ********************************/
.caption {
  letter-spacing: 10px;
}
.stepup-body > ul {
  margin-top: 1em;
}
.stepup-body > ul > li {
  list-style: disc;
  margin-left: 2em;
}
.fukidashi-body {
  border: 2px solid #80b8ff;
  border-radius: 4px;
  margin-top: 35px;
  padding: 16px 24px;
}
.stepup-body-tbl {
  border: 1px solid #027fff;
  border-collapse: collapse;
  box-sizing: border-box;
  width: 100%;
}
.stepup-body-tbl th {
  background-color: #027fff;
  color: #fff;
  font-weight: normal;
  vertical-align: middle;
  width: 90px;
}
.stepup-body-tbl th small {
  display: block;
  font-size: 75%;
}
.stepup-body-tbl td {
  font-size: 16px;
  line-height: 1.4;
  padding: 10px;
  vertical-align: middle;
}
.stepup-body-tbl ul {
  font-size: 100%;
  margin-bottom: 0;
}
.stepup-img-wrapper {
  margin: 10px auto;
  max-width: 247px;
}
.stepup-img-wrapper img {
  height: auto;
  width: 100%;
}
.aside-img {
  float: left;
  width: 31.875%; /* 306px */
}
.aside-img img {
  height: auto;
  max-width: 100%;
}
.stepup-body {
  background-image: url(../img/fukidashi-line.png);
  background-position: 6px 330px;
  background-repeat: no-repeat;
  float: left;
  padding-left: 8.125%; /* 78px */
  width: 60%; /* 576px */
}
/********************************
 * モバイル専用
 ********************************/
@media screen and (max-width: 767px) {
  .aside-img {
    float: none;
    text-align: center;
    width: auto;
  }
  .stepup-body {
    background-image: none;
    float: none;
    margin-top: 1em;
    padding-left: 0;
    width: auto;
  }
}
