@charset "UTF-8";

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

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

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

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

input[type=text]:-ms-input-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;
}

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;
}

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

ul.error {
  color: #e3342f;
}

@media only screen and (min-width: 769px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

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

  .form-group > label {
    border-left: 0.5rem solid #008F99;
    padding: 0.2rem;
  }

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

  .steps {
    width: 50%;
  }

  .family-table th,
  .family-table td {
    text-align: center;
    vertical-align: middle;
  }

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

  #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) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  input[type=text],
  input[type=date],
  select,
  textarea {
    font-size: 16px;
  }

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

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

  .form-group > label {
    border-left: 0.5rem solid #FF4318;
    padding: 0.2rem;
  }

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

  .steps {
    width: 100%;
  }

  .discBlock {
    margin-bottom: 1em;
  }

  .discBlock .font-larger {
    font-size: larger;
  }

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

  #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 {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

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

