@charset "UTF-8";

html,
body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #1a1a1a;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: justify;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 10px;
    box-sizing: border-box;
}
@media (min-width: 835px) {
  .main {
    padding: 40px 10px;
  }
}

.main__logo img {
  width: 124px;
}
@media (min-width: 835px) {
  .main__logo img {
    width: 180px;
  }
}

.main__heading {
    font-size: 1.625rem;
    font-weight: 800;
    margin-top: 5px;
    margin-bottom: 20px;
}
@media (min-width: 835px) {
  .main__heading {
    font-size: 2.25rem;
    margin-top: 10px;
  }
}

.main__lead {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 10px;
}
@media (min-width: 835px) {
    .main__lead {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
}

.main__lead span {
    font-weight: 800;
}

.main__btn {
    position: relative;
    background: #f13363;
    border: 1px solid #f13363;
    text-align: center;
    width: 100%;
    z-index: 1;
    margin: 32px auto 0;
    width: 356px;
    max-width: 100%;
    height: 72px;
}
.main__btn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transform-origin: 100% 0;
}
.main__btn:after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  content: "";
  display: block;
  height: 0;
  line-height: 0px;
  width: 0;
}
.main__btn a,
.main__btn button {
    font-size: 1.125rem;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 100%;
    padding: 0;
    line-height: 1;
    z-index: 1;
    text-decoration: none;
}
.main__btn a:before,
.main__btn button:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 5px 3px;
    background: url("../img/ico_btn_i.svg") no-repeat center / contain;
    flex-shrink: 0;
}
.main__btn.-gray:before {
  background: #ececec;
}

@media (min-width: 835px) {
  .main__btn:hover:before {
    transform: scaleX(1);
    transform-origin: 0% 0;
  }

  .main__btn:hover:after {
    border-color: transparent transparent transparent #f13363;
  }

  .main__btn:hover a,
  .main__btn:hover button {
    color: #f13363;
  }

  .main__btn:hover a:before,
  .main__btn:hover button:before {
    background-image: url("../img/ico_btn_i_p.svg");
  }
}

.footer {
    text-align: center;
    padding: 0 0 20px;
    box-sizing: border-box;
}

.footer__txt {
  font-size: 0.6875rem;
  margin-top: 10px;
  text-align: center;
  color: #777;
}
@media (min-width: 835px) {
  .footer__txt {
    font-size: 0.6875rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.footer__txt a,
.footer__txt a:link,
.footer__txt a:visited {
  color: #777;
}

.sp-br {
  display: inline;
}

@media (min-width: 835px) {
  .sp-br {
    display: none;
  }
}
