@charset "UTF-8";
/* ========================================================================
sora_form.css - フォーム用スタイル -
======================================================================== */
.formPage #header {
  position: absolute;
}

#header.-option .-category {
  font-weight: 700;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  .formPage #header {
    left: auto;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  .formPage #header.-option .-category {
    font-size: 0.18rem;
  }
}

/* SP設定 */
@media screen and (max-width: 767px) {
  .formPage #header.-option .-category {
    font-size: 0.12rem;
  }
}

.formPage .pageVisualInner {
  min-height: auto;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  .formPage .pageVisualInner {
    padding: calc(0.6rem + 0.88rem) 0.43rem 0.4rem;
  }
}

/* SP設定 */
/* PC設定 */
@media screen and (min-width: 768px), print {
  .formBody {
    padding: 0.5rem 2.64rem;
    font-size: 0.17rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px), print {
  .formBody {
    margin-left: auto;
    margin-right: auto;
    max-width: 13.66rem;
  }
}

/* SP設定 */
@media screen and (max-width: 767px) {
  .formBody {
    padding: 0.15rem 0.2rem 0.5rem;
  }
}

.formBodyAnnotation li {
  margin-left: 1em;
  text-indent: -1em;
}

.formBodyAnnotation.mt15 {
	margin-top: 15px;
}

.formBodyAnnotationMark {
  color: #bf0000;
  margin-right: 0.05rem;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  .formBodyAnnotation {
    margin-bottom: 0.32rem;
  }
  .formBodyAnnotation li {
    font-size: 0.15rem;
  }
  .formBodyAnnotation li.-alignC {
    text-align: center;
  }
}

/* SP設定 */
.labelMark {
  color: #bf0000;
}

/* フォームパーツの基本設定
============================================================= */
#wrapper .satori__input_group select,
#wrapper .satori__input_group input[type="text"],
#wrapper .satori__input_group input[type="email"],
#wrapper .satori__input_group input[type="tel"],
#wrapper .satori__input_group input[type="url"],
#wrapper .satori__input_group textarea {
  background-color: #f5f5f5;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  border: 1px solid #dbdbdb;
  border-radius: 0.04rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
}

#wrapper .satori__input_group select:focus,
#wrapper .satori__input_group input[type="text"]:focus,
#wrapper .satori__input_group input[type="email"]:focus,
#wrapper .satori__input_group input[type="tel"]:focus,
#wrapper .satori__input_group input[type="url"]:focus,
#wrapper .satori__input_group textarea:focus {
  border-color: #015EB2;
  background-color: #ebf5ff;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  #wrapper .satori__input_group select,
  #wrapper .satori__input_group input[type="text"],
  #wrapper .satori__input_group input[type="email"],
  #wrapper .satori__input_group input[type="tel"],
  #wrapper .satori__input_group input[type="url"],
  #wrapper .satori__input_group textarea {
    font-size: 0.17rem;
    padding: 0.2rem 0.2rem;
  }
}

/* SP設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__input_group select,
  #wrapper .satori__input_group input[type="text"],
  #wrapper .satori__input_group input[type="email"],
  #wrapper .satori__input_group input[type="tel"],
  #wrapper .satori__input_group input[type="url"],
  #wrapper .satori__input_group textarea {
    font-size: 0.16rem;
    padding: 0.15rem 0.12rem;
  }
}

/* placeholder
============================================================= */
#wrapper .satori__input_group input::-webkit-input-placeholder,
#wrapper .satori__input_group textarea::-webkit-input-placeholder {
  color: #757575;
}

#wrapper .satori__input_group input::-ms-input-placeholder,
#wrapper .satori__input_group textarea::-ms-input-placeholder {
  color: #757575;
}

#wrapper .satori__input_group input:-ms-input-placeholder,
#wrapper .satori__input_group textarea:-ms-input-placeholder {
  color: #757575;
}

/* 縦並びのブロック
============================================================= */
/* PC設定 */
#wrapper .satori__input_group:not(:first-child) {
  border-top: 1px solid #dbdbdb;
}

#wrapper .satori__input_group label {
  color: #000;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  #wrapper .satori__input_group {
    padding: 0.3rem 0.08rem;
  }
}

/* SP設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__input_group {
    padding: 0.16rem 0;
  }
}

/* 横並びのブロック
============================================================= */
#wrapper .satori__horiz_group {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #dbdbdb;
}

#wrapper .satori__horiz_group .satori__input_group {
  border-top: none;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 0.24rem 0.1rem;
  width: 50%;
}

/* PC設定 */
/* SP設定 */
/* 必須、任意ラベル
============================================================= */
/* PC、SP共通設定 */
#wrapper .satori__input_group label {
  font-weight: 700;
  display: block;
  position: relative;
}

#wrapper .satori__require,
#wrapper .satori__not_require {
  position: absolute;
  left: 0;
  top: .3em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  border-radius: 0.02rem;
}

#wrapper .satori__require {
  background-color: #f26419;
  color: #fff;
}

#wrapper .satori__not_require {
  background-color: #FFF;
  border: 1px solid #015EB2;
  color: #015EB2;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  #wrapper .satori__input_group label {
    margin-bottom: 0.1rem;
    padding-left: 0.55rem;
  }
  #wrapper .satori__require,
  #wrapper .satori__not_require {
    font-size: 0.14rem;
    padding: 0.04rem 0.08rem 0.065rem;
  }
}

/* SP設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__input_group label {
    font-size: 0.15rem;
    margin-bottom: 0.05rem;
    padding-left: 0.475rem;
  }
  #wrapper .satori__require,
  #wrapper .satori__not_require {
    font-size: 0.12rem;
    margin-right: 0.315rem;
    padding: 0.04rem 0.08rem 0.065rem;
  }
}

/* type="text"
============================================================= */
#wrapper .satori__input_group input[type="text"],
#wrapper .satori__input_group input[type="email"],
#wrapper .satori__input_group input[type="tel"],
#wrapper .satori__input_group input[type="url"] {
  width: 100%;
}

/* PC設定 */
/* SP:設定 */
/* type="radio",type=checkbox
============================================================= */
#wrapper .satori__input_group {
  overflow: hidden;
}

#wrapper .satori__input_group input[type="checkbox"] + .satoriLabel label,
#wrapper .satori__input_group input[type="radio"] + .satoriLabel label {
  font-weight: 400;
}

#wrapper .satori__input_group input[type="checkbox"]:checked + .satoriLabel label,
#wrapper .satori__input_group input[type="radio"]:checked + .satoriLabel label {
  color: #015EB2;
}

#wrapper .satori__input_group input[type="checkbox"],
#wrapper .satori__input_group input[type="radio"] {
  float: left;
  width: 5%;
  margin-left: 0;
  margin-top: 0.07rem;
}

#wrapper .satori__input_group input[type="radio"] {
  border-radius: 50%;
}

#wrapper .satori__input_group input[type="checkbox"] {
  border-radius: initial;
}

#wrapper .satori__input_group .satoriLabel {
  float: left;
  display: block;
  width: 95%;
}

#wrapper .satori__input_group .satoriLabel label {
  display: inline-block !important;
  margin-bottom: 0;
  padding-left: 0;
  color: #000;
  cursor: pointer;
}

#wrapper .satori__input_group .satoriLabel label:hover {
  color: #015EB2;
}

/* type="submit"
============================================================= */
#wrapper .satori__submit_group {
  position: relative;
}

#wrapper .satori__btn {
  display: inline-block;
  border-radius: 0.38rem;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: .04em;
  text-align: center;
}

#wrapper .satori__btn.submit {
  border: solid 1px #015EB2;
  -webkit-box-shadow: inset -0.03rem -0.052rem 0 0 #015EB2;
  box-shadow: inset -0.03rem -0.052rem 0 0 #015EB2;
  background-color: #fff;
  color: #015EB2;
}

@media (hover: hover), screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  #wrapper .satori__btn {
    -webkit-transition: -webkit-transform .25s ease .1s,-webkit-box-shadow .5s ease;
    transition: -webkit-transform .25s ease .1s,-webkit-box-shadow .5s ease;
    transition: transform .25s ease .1s,box-shadow .5s ease;
    transition: transform .25s ease .1s,box-shadow .5s ease,-webkit-transform .25s ease .1s,-webkit-box-shadow .5s ease;
  }
  #wrapper .satori__btn:hover {
    -webkit-transform: translateY(0.052rem);
    transform: translateY(0.052rem);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
  }
}

#wrapper .satori__btn.cancel {
  background-color: #f5f5f5;
  border: solid 1px #e0e0e0;
  -webkit-box-shadow: inset -0.03rem -0.052rem 0 0 #e0e0e0;
  box-shadow: inset -0.03rem -0.052rem 0 0 #e0e0e0;
  color: #000;
}

#wrapper #satori__submit_confirm.-disabled {
  cursor: auto;
  opacity: .4;
}

#wrapper #satori__submit_confirm.-disabled:hover {
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: inset -0.03rem -0.052rem 0 0 #015EB2;
  box-shadow: inset -0.03rem -0.052rem 0 0 #015EB2;
}

/* PC:設定 */
@media screen and (min-width: 768px), print {
  #wrapper .satori__submit_group {
    margin: 0.4rem 0 0 0;
    padding: 0.25rem;
  }
  #wrapper .satori__btn {
    font-size: 0.2rem;
    padding: 0.1rem 0.5rem 0.15rem 0.5rem;
  }
  #wrapper .satori__btn.submit {
    min-width: 4rem;
  }
  #wrapper .satori__btn.cancel {
    font-size: 0.16rem;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #wrapper .satori__btn.cancel:hover {
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__submit_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0.25rem;
  }
  #wrapper .satori__btn {
    font-size: 0.16rem;
    padding: 0.1rem 0.5rem 0.15rem 0.5rem;
  }
  #wrapper .satori__btn.submit {
    width: 100%;
  }
  #wrapper .satori__btn.cancel {
    font-size: 0.14rem;
    margin-top: 0.16rem;
    width: 70%;
  }
}

/* select
============================================================= */
#wrapper .satori__input_group select {
  background: #f5f5f5 url(/sora/img/form/form_bgSelect.png) no-repeat right center;
  color: inherit;
}

/* PC:設定 */
@media screen and (min-width: 768px), print {
  #wrapper .satori__input_group select {
    background-size: 0.39rem auto;
    padding: 0 0.45rem 0 0.17rem;
    height: 0.72rem;
  }
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__input_group select {
    background-size: 0.39rem auto;
    font-size: 0.16rem;
    padding: 0 0.3rem 0 0.12rem;
    height: 0.65rem;
    width: 100%;
  }
}

/* textarea
============================================================= */
#wrapper .satori__input_group textarea {
  width: 100%;
}

/* PC設定 */
@media screen and (min-width: 768px), print {
  #wrapper .satori__input_group textarea {
    padding: 0.105rem;
    font-size: 0.15rem;
    line-height: 1.8;
    letter-spacing: .01em;
  }
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__input_group textarea {
    font-size: 0.16rem;
    padding: 0 0.12rem;
  }
}

/* プライバシーポリシーに同意
============================================================= */
#wrapper #satori__privacy_policy_agreement_wrapper {
  border: 1px solid #dbdbdb;
  position: relative;
}

#wrapper #satori__privacy_policy_agreement_wrapper a,
#wrapper #satori__privacy_policy_agreement_wrapper a:hover,
#wrapper #satori__privacy_policy_agreement_wrapper a:visited {
  color: #015EB2 !important;
}

#wrapper #satori__privacy_policy_agreement_wrapper a {
  text-decoration: underline;
}

#wrapper #satori__privacy_policy_agreement_wrapper .satori__input_group {
  border-top: none;
}

#wrapper #satori__privacy_policy_agreement_wrapper input,
#wrapper #satori__privacy_policy_agreement_wrapper label,
#wrapper #satori__privacy_policy_agreement_wrapper .satoriLabel {
  float: none;
  width: auto;
}

#wrapper #satori__privacy_policy_agreement_wrapper input {
  margin-top: 0;
}

#wrapper #satori__privacy_policy_agreement_wrapper label {
  position: static;
}

#wrapper #satori__privacy_policy_agreement_wrapper .satori__require {
  margin-right: 0;
}

#wrapper #satori__privacy_policy_agreement_wrapper .satoriLabel {
  display: inline;
  position: relative;
}

#wrapper #satori__privacy_policy_agreement_wrapper .satoriLabel label {
  font-weight: 700;
}

/* PC:設定 */
@media screen and (min-width: 768px), print {
  #wrapper #satori__privacy_policy_agreement_wrapper {
    padding: 0.16rem;
    margin-top: 0.32rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper label {
    padding-left: 0.05rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper .satori__require {
    left: -0.7rem;
    top: 0rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper .satoriLabel {
    vertical-align: text-top;
  }
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  #wrapper #satori__privacy_policy_agreement_wrapper {
    padding: 0.16rem;
    margin-top: 0.32rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper .satori__message {
    font-size: 0.14rem;
    margin: 0 0.05rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper .satori__input_group {
    padding-top: 0.4rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper label {
    padding-left: 0.05rem;
  }
  #wrapper #satori__privacy_policy_agreement_wrapper .satori__require {
    left: -0.2rem;
    top: -0.3rem;
  }
}

/* 注釈テキスト
============================================================= */
#wrapper .satori__input_group .satori__system_notes {
  margin-left: 0.2rem;
  color: #000;
}

/* エラーメッセージ
============================================================= */
#wrapper .satori__input_group.error input,
#wrapper .satori__input_group.error select {
  border: 1px solid #bf0000;
  color: #000;
}

#wrapper .satori__input_group.error .satori__error_messages {
  color: #bf0000;
  display: block;
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  #wrapper .satori__error_messages {
    font-size: 0.12rem;
  }
  #wrapper .satori__error_messages span {
    display: block;
  }
}

#wrapper #satori__privacy_policy_agreement[type="disabled"] + .satoriLabel label {
  cursor: auto;
}

#wrapper .satori__input_group input[type="text"]:disabled,
#wrapper .satori__input_group input[type="email"]:disabled,
#wrapper .satori__input_group input[type="tel"]:disabled,
#wrapper .satori__input_group input[type="url"]:disabled,
#wrapper .satori__input_group textarea:disabled {
  border-color: #edeef7;
  background: #f8f8f8 !important;
}

.formBody__lastWrap {
  text-align: center;
}

.formBody__lastTitle {
  color: #015EB2;
  font-weight: 700;
  line-height: 1.8;
}

.formBody__lastTitle::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}

.formBody__lastTitle::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * .5em);
  content: "";
}

.formLastBody .formBodyStep {
  background-color: rgba(255, 255, 255, 0.85);
}

/* PC:設定 */
@media screen and (min-width: 768px), print {
  .formLastBody {
    background: url(/sora/img/form/form_bgLast.jpg) no-repeat center center;
    background-size: cover;
    height: 0;
    padding-bottom: 45.60761347%;
  }
  .formLastBody .formBody {
    padding-top: 1.2rem;
  }
  .formBody__lastTitle {
    font-size: 0.34rem;
    margin-bottom: 0.35rem;
  }
  .formBody__lastWrap {
    margin-bottom: 1rem;
  }
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  .formLastBody {
    background: url(/sora/img/form/form_bgLast@sp.jpg) no-repeat center bottom;
    background-size: cover;
    padding-bottom: 0.7rem;
  }
  .formBody__lastWrap {
    padding-top: 0.72rem;
  }
  .formBody__lastTitle {
    font-size: 0.18rem;
    margin-bottom: 0.3rem;
  }
}

.formBodyStep {
  background-color: #f5f5f5;
}

.formBodyStep li {
  list-style-type: none;
  color: #a6a6a6;
  line-height: 1;
}

.formBodyStep .isCurrent {
  background-color: rgba(255, 255, 255, 0.8);
  color: #015EB2;
  font-weight: 500;
}

/* PC:設定 */
@media screen and (min-width: 768px), print {
  .formBodyStepWrap {
    position: sticky;
    max-width: 13.66rem;
    top: 0;
    width: 100%;
  }
  .formBodyStep {
    position: absolute;
    right: -1.9rem;
    top: 0.42rem;
    padding: 0.34rem 0.33rem;
  }
  .formBodyStep li {
    font-size: 0.16rem;
    margin-bottom: 0.31rem;
    padding: 0.095rem 0.13rem 0.105rem;
    text-align: right;
  }
  .formBodyStep li:last-child {
    margin-bottom: 0;
  }
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  #satori__creative_container {
    padding-top: 0.72rem;
  }
  .formBody {
    position: relative;
  }
  .formBodyStepWrap {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 1.2rem;
  }
  .formBodyStepWrap.-last {
    top: 0.15rem;
  }
  .formBodyStep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.15rem 0.15rem;
    width: 100%;
  }
  .formBodyStep li {
    font-size: 0.14rem;
    padding: 0.06rem 0.13rem 0.07rem;
    white-space: nowrap;
  }
  .formBodyStep li:last-child {
    margin-right: 0;
  }
}

.formPrivacyListItem {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  padding-left: 1.3em;
}

.formPrivacyListItem::before {
  content: counter(cnt) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.formPrivacyListItem:not(:first-child) {
  margin-top: 0.3rem;
}

.formPrivacyListItem ol {
  margin-top: 0.05rem;
}

.formPrivacyListItem ol li {
  list-style-type: none;
  counter-increment: cntChild;
  position: relative;
  padding-left: 1.3em;
}

.formPrivacyListItem ol li::before {
  content: "(" counter(cntChild) ")";
  position: absolute;
  top: 0;
  left: 0;
}

.formPrivacyListItem ul {
  margin-top: 0.05rem;
}

.formPrivacyListItem ul li {
  list-style-type: none;
  position: relative;
  padding-left: 1.3em;
}

.formPrivacyListItem ul li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.formPrivacyName {
  text-align: right;
  margin-top: 0.3rem;
}

/* SP:設定 */
@media screen and (max-width: 767px) {
  .formPrivacyListItem:not(:first-child) {
    margin-top: 0.2rem;
  }
}