@charset "UTF-8";

a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

input[type=text]:-moz-placeholder-shown {
  color: #BBBBBB;
}

input[type=text]:-ms-input-placeholder {
  color: #BBBBBB;
}

input[type=text]:placeholder-shown {
  color: #BBBBBB;
}

input[type=text]::-moz-placeholder {
  color: #BBBBBB;
}

input[type=text]:-ms-input-placeholder {
  color: #BBBBBB;
}

input[type=text]::placeholder {
  color: #BBBBBB;
}

input[type=text]:-ms-input-placeholder {
  color: #BBBBBB;
}

input[type=text]::-ms-input-placeholder {
  color: #BBBBBB;
}

select option:first-child {
  color: #BBBBBB;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", Meiryo, sans-serif;
  padding-top: 1rem;
  background-color: #F9F9F9;
}

.confirm {
  margin-left: 2em;
  font-weight: 600;
}

.btn-intro {
  color: #ffffff;
  background-color: #ED7D31;
  border-color: #ED7D31;
}

.btn-new {
  color: #ffffff;
  background-color: #5B9BD5;
  border-color: #5B9BD5;
}

/*
#mainApp .el-step__head.is-process {
    color:red;
}
*/

ul.error {
  color: #e3342f;
}

.form-group > label {
  padding: 0.2rem;
}

.form-group div.sub {
  margin-bottom: 0.5rem;
}

.intro-form h1 {
  background-color: #ED7D31;
}

.intro-form .form-group > label {
  border-left: 0.5rem solid #ED7D31;
}

.new-form h1 {
  background-color: #5B9BD5;
}

.new-form .form-group > label {
  border-left: 0.5rem solid #5B9BD5;
}

@media only screen and (min-width: 769px) {
  h1 {
    color: #ffffff;
    background-color: #0C327D;
    padding: 0.5em;
    text-align: center;
    font-size: 32px;
    border-radius: 1em;
  }

  .steps {
    width: 50%;
  }

  /* 個人情報の取り扱い */

  #privacyPolicyModal .modal-dialog {
    max-width: 800px;
  }

  #privacyPolicyModal .modal-dialog div.text {
    overflow: scroll;
    height: 75vh;
    padding-right: 1em;
  }
}

@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=date],
  select,
  textarea {
    font-size: 16px;
  }

  input[type=date] {
    min-height: 2rem;
  }

  h1 {
    color: #ffffff;
    padding: 0.5em;
    text-align: center;
    font-size: 20px;
    border-radius: 1em;
  }

  .steps {
    width: 100%;
  }

  /* 個人情報の取り扱い */

  #privacyPolicyModal .modal-dialog div.text {
    overflow: scroll;
    height: 50vh;
    padding-right: 0.5em;
  }
}

p.input {
  font-weight: 600;
}

/* Vue.jsのトランジション系 */

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

