@charset "UTF-8";
/**
* 
* 共通スタイル
* 
*/
select {
  color: #333;
}

.hidden {
  display: none !important;
}

.button-disabled {
  color: #333 !important;
  background-color: #999 !important;
  pointer-events: none !important;
}

.notice {
  color: #e60012;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 1em;
  text-align: center;
}
.notice::before {
  content: "※";
}

/**
*
* 進行状況バー
*
*/
.progressbar {
  position: relative;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33%;
  color: #575757;
  font-weight: bold;
  counter-increment: steps;
  font-size: 12px;
}
.progressbar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 10px auto;
  content: "";
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #efefef;
  content: counter(steps);
}
.progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #efefef;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active, .progressbar li.complete {
  color: #285f93;
}
.progressbar li.active:before, .progressbar li.complete:before {
  background-color: #285f93;
  color: #FFF;
}
.progressbar li.active:after, .progressbar li.complete:after {
  background-color: #285f93;
}

@media screen and (min-width: 800px) {
  .progressbar {
    width: 720px;
    margin: 20px auto;
  }
}
/**
*
* ボタン
*
*/
.term_close,
input[type=submit],
.return-top {
  display: block;
  margin: 1% auto;
  padding: 0.5em;
  text-align: center;
  border: 0;
  background: #f5f5f5;
  color: #000;
  border-top: 3px solid #eee;
  border-left: 3px solid #eee;
  border-bottom: 3px solid #f5f5f5;
  border-right: 3px solid #f5f5f5;
  cursor: pointer;
}
.term_close:hover,
input[type=submit]:hover,
.return-top:hover {
  background: #285f93;
  color: #fff;
}

#input-form,
.table-normal {
  font-size: 1em;
  width: calc(100% - 2em);
  max-width: 800px;
  margin: 0 auto;
}
#input-form *,
.table-normal * {
  box-sizing: border-box;
}
#input-form .center,
.table-normal .center {
  text-align: center;
}
#input-form label,
.table-normal label {
  cursor: pointer;
}
#input-form tr th,
.table-normal tr th {
  background: rgba(172, 109, 149, 0.75);
  color: #fff;
  display: block;
  padding: 0.5em;
}
#input-form tr td,
.table-normal tr td {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
}
#input-form tr td .family,
.table-normal tr td .family {
  width: 70%;
  display: inline-block;
  text-align: center;
}
#input-form tr td .family span,
.table-normal tr td .family span {
  font-size: small;
}
#input-form tr td ul,
.table-normal tr td ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#input-form tr td ul li,
.table-normal tr td ul li {
  margin: 0;
  padding: 1em;
}
#input-form tr td ul li:nth-child(odd),
.table-normal tr td ul li:nth-child(odd) {
  background: rgba(172, 109, 149, 0.05);
}
#input-form tr td input, #input-form tr td select, #input-form tr td textarea,
.table-normal tr td input,
.table-normal tr td select,
.table-normal tr td textarea {
  border: 0;
  background: #f5f5f5;
  border-top: 3px solid #eee;
  border-left: 3px solid #eee;
  border-bottom: 3px solid #f5f5f5;
  border-right: 3px solid #f5f5f5;
}
#input-form tr td input[type=text],
#input-form tr td input[type=email],
#input-form tr td input[type=number],
.table-normal tr td input[type=text],
.table-normal tr td input[type=email],
.table-normal tr td input[type=number] {
  font-size: 1.5em;
  padding: 0.25em;
  width: calc(100% - 1em);
}
#input-form tr td input[type=text]#zip_code,
#input-form tr td input[type=email]#zip_code,
#input-form tr td input[type=number]#zip_code,
.table-normal tr td input[type=text]#zip_code,
.table-normal tr td input[type=email]#zip_code,
.table-normal tr td input[type=number]#zip_code {
  width: 6em;
}
#input-form tr td input[type=text]#number_of_family,
#input-form tr td input[type=email]#number_of_family,
#input-form tr td input[type=number]#number_of_family,
.table-normal tr td input[type=text]#number_of_family,
.table-normal tr td input[type=email]#number_of_family,
.table-normal tr td input[type=number]#number_of_family {
  width: 3em;
  vertical-align: text-bottom;
}
#input-form tr td input[type=text]#number_of_family::after,
#input-form tr td input[type=email]#number_of_family::after,
#input-form tr td input[type=number]#number_of_family::after,
.table-normal tr td input[type=text]#number_of_family::after,
.table-normal tr td input[type=email]#number_of_family::after,
.table-normal tr td input[type=number]#number_of_family::after {
  content: "人";
}
#input-form tr td input[type=text]::-moz-placeholder, #input-form tr td input[type=email]::-moz-placeholder, #input-form tr td input[type=number]::-moz-placeholder, .table-normal tr td input[type=text]::-moz-placeholder, .table-normal tr td input[type=email]::-moz-placeholder, .table-normal tr td input[type=number]::-moz-placeholder {
  color: #999;
}
#input-form tr td input[type=text]::placeholder,
#input-form tr td input[type=email]::placeholder,
#input-form tr td input[type=number]::placeholder,
.table-normal tr td input[type=text]::placeholder,
.table-normal tr td input[type=email]::placeholder,
.table-normal tr td input[type=number]::placeholder {
  color: #999;
}
#input-form tr td select[name$=_birth_year], #input-form tr td select[name$=_birth_month], #input-form tr td select[name$=_birth_day], #input-form tr td select[name=prefecture], #input-form tr td select[name$=_count], #input-form tr td select[name$=_flu_year], #input-form tr td select[name$=_flu_month], #input-form tr td select[name$=_flu_day],
.table-normal tr td select[name$=_birth_year],
.table-normal tr td select[name$=_birth_month],
.table-normal tr td select[name$=_birth_day],
.table-normal tr td select[name=prefecture],
.table-normal tr td select[name$=_count],
.table-normal tr td select[name$=_flu_year],
.table-normal tr td select[name$=_flu_month],
.table-normal tr td select[name$=_flu_day] {
  font-size: 1.3em;
  height: 46px;
  padding: 0.25em;
}
#input-form tr td input[type=radio],
.table-normal tr td input[type=radio] {
  display: none;
}
#input-form tr td input[type=radio] + label,
.table-normal tr td input[type=radio] + label {
  display: inline-block;
  text-align: center;
  margin: 0 0.5em;
  padding: 0.5em 1em;
  border-top: 3px solid #eee;
  border-left: 3px solid #eee;
  border-bottom: 3px solid #f5f5f5;
  border-right: 3px solid #f5f5f5;
  background: #eee;
}
#input-form tr td input[type=radio]:checked + label,
.table-normal tr td input[type=radio]:checked + label {
  background: #285f93;
  color: #fff;
}
#input-form tr td .hidden,
.table-normal tr td .hidden {
  height: 0;
  overflow-y: hidden;
  padding: 0 !important;
  margin: 0 !important;
}
#input-form tr td div h4,
.table-normal tr td div h4 {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 -1em;
}
#input-form tr td div h4 input[type=button],
.table-normal tr td div h4 input[type=button] {
  border: 0;
  padding: 0.5em;
  cursor: pointer;
  background: rgba(172, 109, 149, 0.45);
  color: #fff;
}
#input-form tr td div[id*=vaccination_].center,
.table-normal tr td div[id*=vaccination_].center {
  margin-top: 1em;
}
#input-form tr td div.plus-minus,
.table-normal tr td div.plus-minus {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#input-form tr td div.plus-minus input[type=button],
.table-normal tr td div.plus-minus input[type=button] {
  width: 3em;
  margin: 0 1em;
  font-size: 1.25em;
  border: 0;
  color: #fff;
  background: rgba(172, 109, 149, 0.75);
  border-radius: 1em;
}
#input-form tr td div.plus-minus input[type=button]:nth-child(2),
.table-normal tr td div.plus-minus input[type=button]:nth-child(2) {
  background: rgba(172, 109, 149, 0.45);
}
#input-form tr td.checkbox,
.table-normal tr td.checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#input-form tr td.checkbox input[type=checkbox],
.table-normal tr td.checkbox input[type=checkbox] {
  display: none;
}
#input-form tr td.checkbox label,
.table-normal tr td.checkbox label {
  width: 45%;
  margin: 1%;
  text-align: center;
  border: 0;
  background: #f5f5f5;
  border-top: 3px solid #eee;
  border-left: 3px solid #eee;
  border-bottom: 3px solid #f5f5f5;
  border-right: 3px solid #f5f5f5;
  font-size: 0.9em;
}
#input-form tr td.checkbox input#sick_histories_subitum:checked ~ label#subitum,
#input-form tr td.checkbox input#sick_histories_measles:checked ~ label#measles,
#input-form tr td.checkbox input#sick_histories_rubella:checked ~ label#rubella,
#input-form tr td.checkbox input#sick_histories_whooping_cough:checked ~ label#whooping_cough,
#input-form tr td.checkbox input#sick_histories_bronchial_asthma:checked ~ label#bronchial_asthma,
#input-form tr td.checkbox input#sick_histories_mumps:checked ~ label#mumps,
#input-form tr td.checkbox input#sick_histories_otitis_media:checked ~ label#otitis_media,
#input-form tr td.checkbox input#sick_histories_hand_hoot_mouth_disease:checked ~ label#hand_hoot_mouth_disease,
#input-form tr td.checkbox input#sick_histories_pox:checked ~ label#pox,
#input-form tr td.checkbox input#sick_histories_rs_virus:checked ~ label#rs_virus,
#input-form tr td.checkbox input#sick_histories_covid_19:checked ~ label#covid_19,
#input-form tr td.checkbox input#sick_histories_others:checked ~ label#others,
.table-normal tr td.checkbox input#sick_histories_subitum:checked ~ label#subitum,
.table-normal tr td.checkbox input#sick_histories_measles:checked ~ label#measles,
.table-normal tr td.checkbox input#sick_histories_rubella:checked ~ label#rubella,
.table-normal tr td.checkbox input#sick_histories_whooping_cough:checked ~ label#whooping_cough,
.table-normal tr td.checkbox input#sick_histories_bronchial_asthma:checked ~ label#bronchial_asthma,
.table-normal tr td.checkbox input#sick_histories_mumps:checked ~ label#mumps,
.table-normal tr td.checkbox input#sick_histories_otitis_media:checked ~ label#otitis_media,
.table-normal tr td.checkbox input#sick_histories_hand_hoot_mouth_disease:checked ~ label#hand_hoot_mouth_disease,
.table-normal tr td.checkbox input#sick_histories_pox:checked ~ label#pox,
.table-normal tr td.checkbox input#sick_histories_rs_virus:checked ~ label#rs_virus,
.table-normal tr td.checkbox input#sick_histories_covid_19:checked ~ label#covid_19,
.table-normal tr td.checkbox input#sick_histories_others:checked ~ label#others {
  background: #285f93;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}
#input-form tr td.checkbox input#sick_histories_subitum:checked ~ label#subitum::after,
#input-form tr td.checkbox input#sick_histories_measles:checked ~ label#measles::after,
#input-form tr td.checkbox input#sick_histories_rubella:checked ~ label#rubella::after,
#input-form tr td.checkbox input#sick_histories_whooping_cough:checked ~ label#whooping_cough::after,
#input-form tr td.checkbox input#sick_histories_bronchial_asthma:checked ~ label#bronchial_asthma::after,
#input-form tr td.checkbox input#sick_histories_mumps:checked ~ label#mumps::after,
#input-form tr td.checkbox input#sick_histories_otitis_media:checked ~ label#otitis_media::after,
#input-form tr td.checkbox input#sick_histories_hand_hoot_mouth_disease:checked ~ label#hand_hoot_mouth_disease::after,
#input-form tr td.checkbox input#sick_histories_pox:checked ~ label#pox::after,
#input-form tr td.checkbox input#sick_histories_rs_virus:checked ~ label#rs_virus::after,
#input-form tr td.checkbox input#sick_histories_covid_19:checked ~ label#covid_19::after,
#input-form tr td.checkbox input#sick_histories_others:checked ~ label#others::after,
.table-normal tr td.checkbox input#sick_histories_subitum:checked ~ label#subitum::after,
.table-normal tr td.checkbox input#sick_histories_measles:checked ~ label#measles::after,
.table-normal tr td.checkbox input#sick_histories_rubella:checked ~ label#rubella::after,
.table-normal tr td.checkbox input#sick_histories_whooping_cough:checked ~ label#whooping_cough::after,
.table-normal tr td.checkbox input#sick_histories_bronchial_asthma:checked ~ label#bronchial_asthma::after,
.table-normal tr td.checkbox input#sick_histories_mumps:checked ~ label#mumps::after,
.table-normal tr td.checkbox input#sick_histories_otitis_media:checked ~ label#otitis_media::after,
.table-normal tr td.checkbox input#sick_histories_hand_hoot_mouth_disease:checked ~ label#hand_hoot_mouth_disease::after,
.table-normal tr td.checkbox input#sick_histories_pox:checked ~ label#pox::after,
.table-normal tr td.checkbox input#sick_histories_rs_virus:checked ~ label#rs_virus::after,
.table-normal tr td.checkbox input#sick_histories_covid_19:checked ~ label#covid_19::after,
.table-normal tr td.checkbox input#sick_histories_others:checked ~ label#others::after {
  content: "✔";
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
#input-form tr td.checkbox #covid_19_option,
.table-normal tr td.checkbox #covid_19_option {
  text-align: center;
  margin: 2em 0 1em 0;
}
#input-form tr td.checkbox #covid_19_option select,
.table-normal tr td.checkbox #covid_19_option select {
  font-size: 1.3em;
  height: 46px;
  padding: 0.25em;
}
#input-form tr td textarea,
.table-normal tr td textarea {
  width: 100%;
  font-size: 1em;
  height: 7em;
}
#input-form tr td #submitButton,
.table-normal tr td #submitButton {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin: 0 1em;
  padding: 0.5em 1em;
  border-top: 3px solid #eee;
  border-left: 3px solid #eee;
  border-bottom: 3px solid #f5f5f5;
  border-right: 3px solid #f5f5f5;
  background: #285f93;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}

.warning_target {
  background-color: #fdd !important;
}

footer {
  margin-top: 20vh;
}

/**
*
* バリデーション　エラー
*
*/
.flash_message {
  box-sizing: border-box;
  font-size: 1em;
  width: calc(100% - 2em);
  max-width: 800px;
  margin: 1em auto;
  padding: 1.5em;
  background: #f5f5f5;
}
.flash_message p {
  margin: 0 0 0.5em 0;
  color: #e60012;
}
.flash_message p:hover {
  color: #e63345;
}

/**
*
* 利用規約
* 送信完了
*
*/
.section-normal {
  width: 100%;
}
.section-normal * {
  box-sizing: border-box;
}
.section-normal h4 {
  text-align: center;
  font-size: 150%;
}
.section-normal .terms-box, .section-normal.complete {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 1em auto;
  padding: 1.5em;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section-normal.complete {
  text-align: center;
}

/**
*
* 送信内容の確認
*
*/
.confirm_buttons {
  display: flex;
  justify-content: space-around;
}
.confirm_buttons form {
  width: 100%;
}
.confirm_buttons form input {
  width: 100%;
  max-width: 150px;
}/*# sourceMappingURL=default.css.map */