  @charset "UTF-8";
/* アニメーション
=========================================================== */
/* フェードイン
????????????????????????????????? */
.inview__anim--fade-in {
  opacity: 0;
  will-change: opacity;
  transition: opacity .8s ease 0s;
}

.inview__complete .inview__anim--fade-in, .inview__anim--fade-in.inview__complete {
  opacity: 1;
}

/* フェードインアップ
????????????????????????????????? */
.inview__anim--fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: opacity .8s ease 0s, transform .8s ease 0s;
}

.inview__complete .inview__anim--fade-in-up, .inview__anim--fade-in-up.inview__complete {
  opacity: 1;
  transform: translateY(0);
}

/* フェードイン X
????????????????????????????????? */
.inview__anim--fade-in-x {
  opacity: 0;
  transform: translateX(-30px);
  will-change: opacity, transform;
  transition: opacity .8s ease 0s, transform .8s ease 0s;
}

.inview__complete .inview__anim--fade-in-x, .inview__anim--fade-in-x.inview__complete {
  opacity: 1;
  transform: translateX(0);
}

/* スケールイン
????????????????????????????????? */
.inview__anim--scale-in {
  opacity: 0;
  transform: scale(1.08);
  will-change: opacity, transform;
  transition: opacity .8s ease 0s, transform .8s ease 0s;
}

.inview__complete .inview__anim--scale-in, .inview__anim--scale-in.inview__complete {
  opacity: 1;
  transform: scale(1);
}

/* スケールY
????????????????????????????????? */
.inview__anim--scale-y {
  transform: scaleY(0);
  will-change: transform;
  transition: transform .8s ease 0s;
  transform-origin: center top;
}

.inview__complete .inview__anim--scale-y {
  transform: scale(1);
}

/* スライドイン
????????????????????????????????? */
/* 文字
????????????????????????????????? */
/* タイピング
????????????????????????????????? */
.contact-tel {
  display: flex;
  border: 2px solid #e2e2e2;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.contact-tel p {
  margin: initial;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  width: 50%;
}

.contact-tel p:first-child {
  border-right: 1px solid #ccc;
}

.contact-tel-text {
  font-size: 14px;
  font-size: 1.4rem;
}

.contact-tel-num {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.contact-tel-num span {
  margin-left: 13px;
}

.contact-tel-num span a {
  text-decoration: none;
  cursor: default;
  color: #3d2e80;
}

.contact-tel-num span:before {
  content: '';
  display: inline-block;
  margin-right: 13px;
  width: 22px;
  height: 30px;
  background-image: url(/contact/css/img/tel-icon.png);
  background-size: contain;
  vertical-align: middle;
  position: relative;
  top: -.1em;
}

@media screen and (max-width: 767px) {
  .contact-tel {
    display: block;
    border: 1px solid #ddd;
    padding: 14px 0;
  }
  .contact-tel p {
    width: 100%;
  }
  .contact-tel p:first-child {
    border-right: none;
    margin-bottom: 6px;
  }
  .contact-tel-text {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .contact-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .contact-tel-num span {
    margin-right: 25px;
    margin-left: 0;
  }
  .contact-tel-num span a {
    text-decoration: underline;
    cursor: pointer;
  }
  .contact-tel-num span:before {
    margin-right: 10px;
    width: 17px;
    height: 23px;
    background-repeat: no-repeat;
    top: -.02em;
  }
}

/* text
  ========================================================================== */
input[type="text"],
textarea {
  font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* submit
  ========================================================================== */
input[type="submit"],
button[type="submit"] {
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

/* radio
  ========================================================================== */
input[type="radio"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + label {
  display: inline-block;
  border-radius: 8px;
  padding-left: 26px;
}

input[type="radio"] + label:before, input[type="radio"] + label:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

input[type="radio"] + label:before {
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 18px;
  left: 0;
  margin-top: -8px;
  width: 18px;
}

input[type="radio"] + label:after {
  height: 8px;
  left: 5px;
  margin-top: -3px;
  width: 8px;
}

input[type="radio"]:checked + label:before {
  border-color: #ccc;
}

input[type="radio"]:checked + label:after {
  background-color: #3d2e80;
}

/* error */
.error input[type="radio"] + label:before {
  border-color: #f99281;
}

@media screen and (max-width: 767px) {
  input[type="radio"] + label,
  input[type="checkbox"] + label {
    display: block;
  }
  input[type="radio"] + label:not(:last-child),
  input[type="checkbox"] + label:not(:last-child) {
    margin-bottom: .5em;
  }
  input[type="radio"] + label:after,
  input[type="checkbox"] + label:after {
    content: "\A";
    white-space: pre;
  }
}

/* placeholder
  ========================================================================== */
input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}

input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}

input:placeholder-shown {
  color: #999;
}

.error td {
  background-color: #fae7e8;
}

.errorList {
  background-color: #fae7e8;
  border: 1px solid #cc1800;
  margin-bottom: 20px;
  padding: 15px;
}

.errorList a {
  color: #cc1800;
  text-decoration: underline;
}

.errorList a:hover {
  text-decoration: none;
}

/* フォーム設定
  ========================================================================== */
.formWrap {
  /* ボタン類 */
  /* エラーリスト */
  /* 各フィールドのエラーメッセージ */
}

.formWrap table {
  width: 100%;
  /* 各フィールドの横幅パターン */
  /* パーツの余白調整 */
  /* 必須 */
  /* 任意 */
}

.formWrap table thead tr:last-child th, .formWrap table thead tr:last-child td {
  border-bottom: 3px solid #ccc;
}

.formWrap table th, .formWrap table td {
  padding: 1.7em 20px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}

.formWrap table th {
  width: 33%;
  vertical-align: middle;
  text-align: left;
}

.formWrap table th b {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
}

.formWrap table td {
  vertical-align: middle;
}

.formWrap table td .small {
  width: 33%;
}

.formWrap table td .medium {
  width: 60%;
}

.formWrap table td .large {
  width: 100%;
}

.formWrap table td span {
  margin-right: 5px;
}

.formWrap table td label {
  margin-right: 30px;
  vertical-align: text-top;
}

.formWrap table td .sup {
  margin-top: 7px;
  margin-left: 5px;
  font-size: 13px;
  font-size: 1.3rem;
}

.formWrap table th .required {
  position: relative;
  color: #1a1a1a;
}

.formWrap table th .required span,
.formWrap table th .arbitrary span {
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: 1px;
  background-color: #a90000;
  color: #FFF;
  padding: .2em 1em .2em 1em;
  line-height: 1.2em;
}

.formWrap table th .arbitrary {
  position: relative;
}

.formWrap table th .arbitrary span {
  background-color: #aaa;
}

.formWrap .form_btn {
  margin: 40px 0;
  display: flex;
  justify-content: space-around;
}

.formWrap .form_btn li {
  width: 45%;
  position: relative;
}

.formWrap .form_btn li:only-child():after {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -3.5px;
  border-color: #FFF;
}

.formWrap .form_btn li:not(:only-child()):first-child:after {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -3.5px;
  border-color: #FFF;
  transform: rotate(-135deg);
}

.formWrap .form_btn li:not(:only-child()):last-child:after {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -3.5px;
  border-color: #FFF;
}

.formWrap .btn_confirm,
.formWrap .btn_submit,
.formWrap .btn_back {
  background-color: #7364af;
  border-radius: 4px;
  font-size: 17px;
  font-size: 1.7rem;
  color: #FFF;
  cursor: pointer;
  padding: .9em 4em;
  position: relative;
  display: block;
  width: 100%;
  font-family: "Open Sans", "YakuHanJPs", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.formWrap .btn_confirm:hover,
.formWrap .btn_submit:hover {
  background-color: #3c345b;
}

.formWrap .btn_back {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.06);
  color: #3c345b;
}

.formWrap .btn_back:hover {
  background-color: #f1eff7;
}

.formWrap .postal_btn {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 7.5px 1em 7.5px;
  width: 14em;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
  position: relative;
  top: 1.5px;
  background: #F7F7F7;
}

.formWrap .postal_btn:after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3.5px;
}

.formWrap .postal_btn span {
  margin-right: 0;
}

.formWrap ul.error {
  background-color: #fae7e8;
  border: 1px solid #a90000;
  padding: 20px 20px;
  margin-bottom: 2em;
}

.formWrap ul.error li {
  color: #a90000;
}

.formWrap ul.error li a {
  color: #a90000;
  text-decoration: underline;
}

.formWrap ul.error li a:visited {
  color: #a90000;
  text-decoration: underline;
}

.formWrap ul.error li a:hover {
  color: #a90000;
  min-height: 1em;
  text-decoration: none;
}

.formWrap span.error {
  color: #a90000;
  display: block;
  margin-top: 7px;
  font-size: 86%;
}

.formWrap tr.error {
  background-color: #fae7e8;
}

.formWrap tr.error th, .formWrap tr.error td {
  border-bottom: 1px solid #FFF;
}

@media screen and (max-width: 767px) {
  .formWrap {
    /* ボタン類 */
  }
  .formWrap table {
    width: 100%;
    border-top: 1px solid #ccc;
    /* 各フィールドの横幅パターン */
    /* 必須 */
  }
  .formWrap table th, .formWrap table td {
    display: block;
    padding: initial;
    padding-left: 10px;
    padding-right: 10px;
  }
  .formWrap table th {
    width: 100%;
    padding-bottom: 1em;
    padding-top: 1.5em;
    border-bottom: initial !important;
  }
  .formWrap table td {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5em;
  }
  .formWrap table td .small,
  .formWrap table td .medium,
  .formWrap table td .large {
    width: 100%;
  }
  .formWrap table th .required span,
  .formWrap table th .arbitrary span {
    position: initial;
    left: 0;
    right: initial;
    top: 0;
    margin-left: .5em;
    padding: .15em .5em .15em .5em;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .formWrap tr.error th {
    border-bottom: initial;
  }
  .formWrap .form_btn {
    margin: 20px 0;
    display: block;
  }
  .formWrap .form_btn li {
    width: 100%;
    position: relative;
  }
  .formWrap .form_btn li:only-child():after {
    right: 10px;
  }
  .formWrap .form_btn li:not(:only-child()):first-child {
    margin-bottom: 10px;
  }
  .formWrap .form_btn li:not(:only-child()):first-child:after {
    left: 10px;
  }
  .formWrap .form_btn li:not(:only-child()):last-child:after {
    right: 10px;
  }
  .formWrap .btn_confirm,
  .formWrap .btn_submit,
  .formWrap .btn_back {
    font-size: 14px;
    font-size: 1.4rem;
    padding: .9em 0;
  }
  .formWrap .btn_confirm,
  .formWrap .btn_submit {
    margin-bottom: 40px;
  }
  .formWrap .btn_back {
    margin-bottom: 12px;
  }
  .formWrap #form_item_postal_code {
    width: 100%;
  }
  .formWrap .postal_btn {
    width: 100%;
    margin-top: 10px;
  }
  .formWrap .postal_btn:after {
    right: 10px;
  }
}

/* ステップ
????????????????????????????????? */
.form-step-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  overflow: hidden;
}

.form-step-list li {
  list-style: none;
  background: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2em;
  padding: 5px 30px 5px 0;
  position: relative;
  width: 33.3333333333%;
}

.form-step-list li:last-child {
  padding: 5px 15px 5px 15px;
}

.form-step-list li:before, .form-step-list li:after {
  content: '';
  position: absolute;
  left: -15px;
  display: block;
  background: inherit;
  border-left: 4px solid #FFF;
  width: 30px;
  height: 60%;
}

.form-step-list li:after {
  top: -10%;
  transform: skew(40deg);
}

.form-step-list li:before {
  bottom: -10%;
  transform: skew(-40deg);
}

.form-step-list li:first-child:before, .form-step-list li:first-child:after {
  content: none;
}

.form-step-list li span, .form-step-list li strong {
  position: relative;
  z-index: 1;
}

.form-step-list li span {
  display: inline-block;
  background: #FFF;
  color: #ccc;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  padding: .3em .2em .3em .3em;
  margin-right: .6em;
}

.form-step-list li strong {
  font-size: 18px;
  font-size: 1.8rem;
  color: #FFF;
}

.form-step-list li.is-active {
  background: #7364af;
}

.form-step-list li.is-active span {
  background-color: #00a52d;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .form-step-list {
    margin-bottom: 20px;
  }
  .form-step-list li {
    padding: 5px 20px 5px 0;
    position: relative;
    flex-direction: column;
  }
  .form-step-list li:first-child {
    width: 36.5%;
  }
  .form-step-list li:nth-child(2) {
    width: 36.5%;
  }
  .form-step-list li:last-child {
    padding: 10px;
    width: 27%;
  }
  .form-step-list li span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: initial;
    text-align: center;
    padding: .1em .4em;
    margin-bottom: .5em;
  }
  .form-step-list li strong {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.complete-text-wrap {
  margin-top: 40px;
  margin-bottom: 60px;
}

.complete-ttl {
  font-size: 20px;
  font-size: 2rem;
  color: #3d2e80;
  margin-bottom: 20px;
}

.complete-contact {
  text-align: left;
  margin-top: 30px;
  padding: 20px 50px;
  background: #EDEDED;
}

.complete-contact-ttl {
  margin-bottom: 10px;
}

.complete-contact a {
  color: #1a1a1a;
  text-decoration: none;
  cursor: default;
}

@media screen and (max-width: 767px) {
  .complete-text-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .complete-ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .complete-contact {
    text-align: left;
    margin-top: 20px;
    padding: 18px 20px;
  }
  .complete-contact-ttl {
    margin-bottom: 8px;
  }
  .complete-contact a {
    color: #3c345b;
    text-decoration: underline;
    cursor: pointer;
  }
  .complete-btn {
    margin-bottom: 40px;
  }
}

/*# sourceMappingURL=style.css.map */
