@charset "UTF-8";
.newsite-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .newsite-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.newsite-unit__vsl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 300px;
}

.newsite-unit__dtl {
  width: calc(100% - 332px);
}

@media screen and (max-width: 767px) {
  .newsite-unit__dtl {
    width: 100%;
  }
}

.newsite-vsl {
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
  border: solid 1px #eee;
  border-radius: 3px;
}

.attention {
  position: relative;
  padding: 0 32px 32px;
}

@media screen and (max-width: 959px) {
  .attention {
    padding: 0 24px 24px;
  }
}

@media screen and (max-width: 767px) {
  .attention {
    padding: 0 16px 16px;
  }
}

.attention::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 16px);
  border: solid 1px #F01D3E;
}

.attention-ttl {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  margin-bottom: 16px;
  padding: 0 16px;
  color: #F01D3E;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .attention-ttl {
    padding: 0 12px;
  }
}

@media screen and (max-width: 767px) {
  .attention-ttl {
    padding: 0 8px;
    font-size: 1.6rem;
  }
}

.attention-link {
  display: block;
  position: relative;
  padding-left: 24px;
  color: #666;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .attention-link {
    padding-left: 16px;
    font-size: 1.3rem;
  }
}

.attention-link::before, .attention-link::after {
  content: '';
  position: absolute;
}

.attention-link::before {
  width: 8px;
  height: 8px;
  border: solid 2px #125CC3;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  top: 13px;
  left: 8px;
}

@media screen and (max-width: 767px) {
  .attention-link::before {
    width: 6px;
    height: 6px;
    top: 11px;
    left: 6px;
  }
}

.attention-link::after {
  top: 12px;
  left: 0;
  width: 15px;
  height: 2px;
  background: #125CC3;
}

@media screen and (max-width: 767px) {
  .attention-link::after {
    top: 10px;
    width: 11px;
  }
}

.attention-link:hover {
  text-decoration: none;
}

/* --------------------------------------------------//
// ログイン方法
//-------------------------------------------------- */
.newsite-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 32px;
}

.newsite-flow__step {
  width: calc(50% - 16px);
}

.newsite-flow-vsl {
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 24px;
}

.newsite-flow-dtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.newsite-flow-dtl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  margin-right: 12px;
  padding-right: 12px;
  border-right: solid 1px #125CC3;
  color: #125CC3;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Barlow Condensed", serif;
  letter-spacing: 0.05em;
  line-height: 1;
}

.newsite-flow-dtl dt span {
  font-size: 2.6rem;
}

.newsite-flow-dtl dd {
  margin: 0;
  width: 100%;
  /* width: calc(100% - 64px); */
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .newsite-flow__step {
    width: 100%;
  }
  .newsite-flow-vsl {
    margin-bottom: 16px;
  }
  .newsite-flow-dtl dt {
    font-size: 15px;
    padding-right: 8px;
    margin-right: 8px;
  }
  .newsite-flow-dtl dt span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .newsite-flow {
    gap: 32px;
  }
  .newsite-flow-vsl {
    margin-bottom: 12px;
  }
}

/* --------------------------------------------------//
// オープン予定
//-------------------------------------------------- */
.scheduled-open {
  position: relative;
  padding: 0 32px 32px;
}

@media screen and (max-width: 959px) {
  .scheduled-open {
    margin-bottom: 96px;
    padding: 0 24px 24px;
  }
}

@media screen and (max-width: 767px) {
  .scheduled-open {
    margin-bottom: 64px;
    padding: 0 16px 16px;
  }
}

.scheduled-open::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 16px);
  border: 2px solid #1A5CB9;
}

@media screen and (max-width: 959px) {
  .scheduled-open::before {
    height: calc(100% - 12px);
  }
}

.scheduled-open .open-ttl {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 0 20px;
  background: #fff;
  color: #1A5CB9;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .scheduled-open .open-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .scheduled-open .open-ttl {
    padding: 0 12px;
    font-size: 1.8rem;
  }
}

.scheduled-open .txt {
  text-align: center;
}

.scheduled-open .txt em {
  font-size: 2rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #C4E4FA));
  background: linear-gradient(transparent 70%, #C4E4FA 70%);
}

@media screen and (max-width: 959px) {
  .scheduled-open .txt em {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .scheduled-open .txt em {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=../../../maps/general/pages/newsite.css.map */
