@charset "UTF-8";

#primary {
  box-sizing: border-box;
  font-size: 16px;
}
.login-manual__h2 {
  border-top: solid 4px #ececec;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-top: 10px;
  position: relative;
}
.login-manual__h2:after {
  content: "";
  background: #1E5FB3;
  position: absolute;
  top: -4px;
  left: 0;
  width: 55px;
  height: 4px;
}
.login-manual__step:not(:first-of-type) {
  margin-top: 60px;
}
.login-manual__step__dl {
  background: #f4faff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 10px;
}
.login-manual__step__dt {
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  width: 3em;
}
.login-manual__step__dt span {
  color: #1E5FB3;
}
.login-manual__step__dd {
  width: calc(100% - (3.5em + 10px));
}
.login-manual__step__img {
  border: solid 1px #ddd;
  display: block;
  margin: 0 auto;
  width: auto;
  height: 350px;
}
.login-manual__backLink {
  border: 1px solid #92aed3;
  display: flex;
  margin: 100px auto 30px 0;
  padding: 5px 40px 5px 20px;
  position: relative;
  width: fit-content;
}
.login-manual__backLink:after {
  content: "";
  border: solid 1px #304f89;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: calc(0.75em + 3px);
  right: 0.7em;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.login-manual__backLink:hover {
  text-decoration: underline;
}
.login-manual__bottom__list {
  display: flex;
  align-items: center;
}
.login-manual__bottom__item:not(:last-of-type) {
  margin-right: 20px;
}
.login-manual__bottom__item a {
  border: 1px solid #92aed3;
  display: flex;
  padding: 5px 40px 5px 20px;
  position: relative;
  width: fit-content;
}
.login-manual__bottom__item a:after {
  content: "";
  border: solid 1px #304f89;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: calc(0.75em + 3px);
  right: 0.7em;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.login-manual__bottom__item a:hover {
  text-decoration: underline;
}
.login-manual__bottom__item.now-page {
  background: #f4faff;
  padding: 5px 20px;
}
/* PC用 s*/
@media(min-width:769px){
  .forSP {
    display: none;
  }
  #primary {
    width: 670px;
  }
  .login-manual__step02 .login-manual__step__img {
    height: auto;
  }
}
/* PC用 e*/
/* SP用 s*/
@media(max-width: 768px){
  .forPC {
    display: none;
  }
  #primary {
    padding: 0 10px;
    width: 100%;
  }
  .login-manual__bottom__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .login-manual__bottom__item:not(:last-of-type) {
    margin: 0 0 15px 0;
  }
}
/* SP用 e*/