@charset "utf-8";

/* =======================================

   form

 ======================================= */
/* =====================
  formArea
===================== */
.formArea {
    font-size: 2.0rem;
    line-height: 1.2;
    padding: 10px 40px 45px;
    background: #f5f5f5;
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0px auto;
  }
  .formArea input[type="submit"] {
    cursor: pointer;
    width: 100%;
    padding: 10px 30px 10px 45px;
  }
  .formArea input[type="button"] {
    cursor: pointer;
    width: 100%;
    padding: 10px 30px 10px 45px;
  }
  .formArea-ttl {
    font-family: 'Notoserif', serif;
    font-size: 3.8rem;
    font-weight: 500;
    text-align: center;
    color: #1e2d5b;
  }
  .formArea-ttl-sub {
    font-size: 2.0rem;
    text-align: center;
    color: #1e2d5b;
    margin-top: 5px;
  }
  #form {
    position:relative;
    box-sizing:border-box;
  }
  .formTxt-sub {
    margin-bottom: 10px;
  }
  .formTxt {
    margin-bottom: 15px;
  }
  .formArea .btn-common {
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  .formArea .btn-sizeL {
    padding: 0;
  }
  .formArea .btn-common input[type="submit"] {
    color: #1e2d5b;
    font-size: 2.6rem;
  }
  .formArea .btn-common:hover input[type="submit"] {
    color: #fff;
  }
  .formArea .btn-em input[type="submit"] {
    color: #8e1c31;
    font-size: 2.6rem;
  }
  .formArea .btn-em:hover input[type="submit"] {
    color: #fff;
  }
  .formArea .btn-out input[type="submit"] {
    color: #ccc;
  }
  .formArea .btn-out:hover input[type="submit"] {
    color: #fff;
  }
  .formArea .btn-common input[type="button"] {
    color: #1e2d5b;
    font-size: 2.6rem;
  }
  .formArea .btn-common:hover input[type="button"] {
    color: #fff;
  }
  .formArea .btn-em input[type="button"] {
    color: #8e1c31;
    font-size: 2.6rem;
  }
  .formArea .btn-em:hover input[type="button"] {
    color: #fff;
  }
  .formArea .btn-out input[type="button"] {
    color: #ccc;
  }
  .formArea .btn-out:hover input[type="button"] {
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .formArea {
      font-size: 16px;
      margin-top: 0;
      padding: 30px 10px 20px;
    }
    .formArea-ttl {
      font-size: 2.4rem;
    }
    .formArea-ttl-sub {
      font-size: 1.4rem;
    }
    #form {
      margin-top: 0;
    }
    .formTxt {
      font-size: 12px;
    }
  }
  /* =====================
    formList
  ===================== */
  .formList > li {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    -js-display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .formList > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .formTtl {
    position: relative;
    width: 26%;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .formTtl:after {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1em;
    position: relative;
    padding: 4px 8px;
    content: '任意';
    color: #fff;
    background: #3C5F91;
    font-weight: bold;
    margin-top: 2px;
  }
  .formTtl.required:after {
    content: '必須';
    background: #004BB1;
  }
  .formItem {
    width: 76%;
    padding-left: 5px;
    position: relative;
  }
  .formItem .row {
    margin: 0 auto;
  }
  .formBg {
    font-size: 16px;
    width: 100%;
    height: 50px;
    text-indent: 5px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
  }
  input[type='text'], input[type='password'] {
    font-size: 16px;
    width: 100%;
    height: 48px;
    margin-top: 1px;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 1rem 0 0;
  }
  textarea {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 16px;
    height: 200px;
    width: calc(100% - 20px);
    padding: 10px;
    padding-right: 0;
  }
  @media screen and (min-width: 0\0) and (min-resolution: +72dpi) {
    .formTtl:after {
      padding: 6px 6px 2px;
    }
  }
  @media screen and (max-width: 767px) {
    .formList > li {
      flex-direction: column;
      border-bottom: none;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .formList > li:nth-child(6) {
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .formTtl {
      width: auto;
      margin-bottom: 8px;
    }
    .formTtl:after {
      margin-left: 12px;
    }
    .formItem {
      width: 100%;
      padding-left: 0;
      border-top: 1px solid #ccc;
      padding-top: 20px;
    }
  }
  /* =====================
    CC-item
  ===================== */
  .CC-item {
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .CC-item {
      flex-direction: column;
      align-items: flex-start;
    }
    .CC-item li {
      margin-bottom: 16px;
    }
  }
  /* =====================
    select
  ===================== */
  .formList select {
    font-size: 16px;
    width: 120%;
    height: 50px;
    cursor: pointer;
  }
  .selectBg-wrap {
    font-size: 16px;
    overflow: hidden;
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
  }
  .selectBg {
    background: url('/lp/transfer/02/assets/img/ico_arrow_down.svg') 50% no-repeat;
    background-position: center right;
    background-size: 20px, 6px;
    padding-left: 8px;
  }
  .selectBg-wrap.form-m {
    width: 202px;
  }
  @media screen and (max-width: 767px) {
    .selectBg-wrap.form-m {
      width: 100%;
    }
  }
  /* =====================
    checkbox
  ===================== */
  .checkbox input[type="checkbox"] {
    display: none;
  }
  .checkbox label {
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .checkbox01-input, .radio-input {
    display: none;
  }
  .checkbox01-input:checked + .checkbox01-parts {
    color: #1e2d5b;
  }
  .checkbox01-parts {
    width: 32px;
    height: 32px;
  }
  .checkbox01-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid #ddd;
    border-radius: 3px;
    background: #fff;
  }
  .checkbox01-input:checked + .checkbox01-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 10px;
    width: 12px;
    height: 24px;
    transform: rotate(40deg);
    border-bottom: 3px solid #1e2d5b;
    border-right: 3px solid #1e2d5b;
  }
  .checkbox01-parts, .radio-input + label {
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-left: 36px;
    padding-top: 5px;
  }
  @media screen and (min-width: 0\0) and (min-resolution: +72dpi) {
    .checkbox01-parts, .radio-input + label {
      padding-top: 10px;
    }
  }
  /* =====================
    formMultiple
  ===================== */
  .formMultiple li {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    margin-bottom: 10px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .formMultiple-ttl {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100px;
  }
  .form-cap-wrap {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 1.4rem;
  }
  .form-cap {
    margin-left: 10px;
  }
  .formMultiple li.only {
    margin-top: 15px;
  }
  .formMultiple li:last-child {
    margin-bottom: 0;
  }
  @media screen and (max-width: 767px) {
    .formMultiple li {
      flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
    }
    .formMultiple-ttl {
      margin-bottom: 5px;
    }
    .form-cap-wrap {
      flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .form-cap {
      margin: 2px 0 10px;
    }
  }
  /* =====================
    formList-other
  ===================== */
  .formList-other {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
  }
  .formList-other input[type='text'] {
    height: 40px;
  }
  .formList-other .formBg {
    height: 40px;
    margin-top: -7px;
    width: 80%;
  }
  @media screen and (max-width: 767px) {
    .formList-other {
      flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
    }
    .formList-other .formBg {
      margin-top: 16px;
      width: 100%;
    }
  }
  /* =====================
    contactWay
  ===================== */
  .contactWay-item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-bottom: 20px;
    -js-display: flex;
  }
  @media screen and (max-width: 767px) {
    .contactWay-item {
      flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
    }
    .contactWay-item li {
      margin-bottom: 20px;
    }
  }
  /* =====================
    checkboxList
  ===================== */
  .checkboxList li {
    margin-bottom: 5px;
  }
  /* =====================
    triggerList
  ===================== */
  .radioList li {
    margin-bottom: 15px;
  }
  /* =====================
    radio
  ===================== */
  .radio-input {
    display: none;
  }
  .radio-input + label {
    position: relative;
    margin-right: 20px;
    padding-left: 36px;
  }
  .radio-input + label:hover {
    cursor:pointer;
  }
  .radio-input + label::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 26px;
    height: 26px;
    content: '';
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
  }
  .radio-input:checked + label {
    color: #1e2d5b;
  }
  .radio-input:checked + label::after {
    position: absolute;
    top: 6px;
    left: 6px;
    display: block;
    width: 14px;
    height: 14px;
    content: '';
    border-radius: 50%;
    background: #1e2d5b;
  }

  #form_wrap .radio-input:checked + label::before,#form_wrap .radio-input + label::before,#form_wrap .radio-input:checked + label::after {
    display: none;
    content:unset;
  }
  #form_wrap .CC-item a{
    text-decoration: underline;
    transform: translate(0, 10%);
    display: block;
  }

  @media screen and (max-width: 767px) {
    .radio-input + label {
      position: relative;
      margin-right: 0;
      padding-left: 36px;
    }
  }
  /* =====================
    agree-box
  ===================== */
  .agree-box {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 42px auto 56px;
  }
  .agree-box .checkbox label {
    margin-right: 4px;
  }
  @media screen and (max-width: 767px) {
    .agree-box {
      width: 100%;
      font-size: 1.1rem;
    }
  }
  .c_btn_2 {
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  .btn-sizeL {
    padding: 0;
  }
  .c_btn_2 input[type="submit"] {
    color: #1e2d5b;
    font-size: 2.6rem;
  }
  .c_btn_2:hover input[type="submit"] {
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .c_btn_2 input[type="submit"] {
      font-size: 2.0rem;
    }
  }

#form .formsubmit-Exstyle01{
    width: 92%;
    max-width:500px;
    display:block;
    margin: 2rem auto ;
    position: relative;
    box-sizing:border-box;
}
#form .formsubmit-Exstyle01 input[type="submit"] {
    width:100%;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 100px;
    display: block;
    padding: 1.6rem 2.4rem;
    text-align: center;
    background: linear-gradient(to right, #8E1C31, #000000);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
    max-width:100%;
}
#form .formsubmit-Exstyle01 .icon-arrow-right-thin {
    content:'';
    display: block;
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translate(0, -50%);
}
#form .formsubmit-Exstyle01 .icon-arrow-right-thin:before {
    content: "\e90b";
    color:#fff;
    font-size: 1.8rem;
    font-weight: bold;
    display:block;
}
#form .formsubmit-Exstyle01 input[type="submit"]:hover {
    opacity:.7;
    transition:.3s;
}
.selectBg .formError{
    top:5.2rem !important;
    left:0.5rem !important;
}


/*** add style 240402 ***/
#form_wrap .radio-input + label {
  position: relative;
  margin-right: 20px;
  padding-left: 0;
  display: flex;
  align-items: center;
}
#form_wrap .radio-input + label span {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  content: '';
  display: inline-block;
  margin-right: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 100%;
  box-sizing: border-box;
}
#form_wrap .radio-input:checked + label span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  content: '';
  border-radius: 50%;
  background: #1e2d5b;
  transform: translate(-50%, -50%);
}
#form_wrap .formTtl{
  flex-wrap:wrap;
}
#form_wrap .comment_bloc{
  font-size:80%;
  width:100%;
  display:block;
}
#form_wrap .formTtl:after{
  position:absolute;
}
#form_wrap .formTxt {
  font-size: 1.4rem;
  text-indent: -1.4rem;
  padding-left: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width:767px){
  #form_wrap .formTtl{width:100%;}
}


/* =====================
  list-primary
===================== */
.list-primary li {
  line-height: 1.5;
  position: relative;
  margin-bottom: 20px;
}
.list-primary a {
  text-decoration: underline;
  color: #1d2c5a;
}
.list-primary a:hover {
  text-decoration: none;
}
.article .list-primary {
  line-height: 1.5;
}
.list-primary li:last-child {
  margin-bottom: 0;
}
/* =====================
  list-normal
===================== */
.list-normal li {
  padding-left: 15px;
}
.list-normal li:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '・';
}
ul.list-primary-inner {
  margin-top: 15px;
}
.list-normal .list-primary-inner li:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '○';
  font-size: 50%;
  margin-top: 0.7rem;
}
/* =====================
  list-number
===================== */
.list-number > li {
  padding-left: 20px;
  counter-increment: li;
}
.list-number > li:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: counter(li) '.';
}