@charset "UTF-8";
/* モーダルのスタイル */
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#modal_content {
  border-radius: 10px;
  border: 5px solid #87a0aa;
  background: #eaf5f8;
  text-align: center;
}
#modal_content button {
  margin: 10px;
  padding: 20px 5px;
  font-size: 1rem;
  cursor: pointer;
  background: #0059aa;
  color: #fff;
  width: 18rem;
  border-radius: 10px;
}
#modal_content h1 {
  margin-bottom: 1rem;
}
#modal_content h2 {
  margin-bottom: 3rem;
}
#modal_content p {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #modal_content {
    padding: 70px 20px;
  }
  #modal_content h1 {
    font-size: 2rem;
  }
  #modal_content h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #modal_content {
    margin: 10px;
    padding: 15px;
  }
  #modal_content h1 {
    font-size: 1.5rem;
  }
  #modal_content h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

#healthcare_professionals {
  display: none;
}
#healthcare_professionals .contents_text {
  background: none;
}

@media (min-width: 768px) {
  #select {
    margin: 50px auto 100px;
    width: 80%;
    display: flex;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  #select {
    padding: 15px 15px 50px;
  }
}
#select section {
  background: #eaf5f8;
  border-radius: 10px;
  border: 1px solid #99ccff;
}
@media (min-width: 768px) {
  #select section {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  #select section:first-child {
    padding: 50px;
  }
  #select section:last-child {
    padding: 50px 15px 50px;
  }
  #select section:last-child .detail_button {
    margin: 0 35px;
  }
  #select section .select_text {
    min-height: 3rem;
  }
}
@media (max-width: 768px) {
  #select section {
    margin: 0 0 15px;
    padding: 15px;
  }
}
#select h1 {
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  #select h1 {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  #select h1 {
    margin-bottom: 1rem;
  }
}
#select .detail_button {
  text-align: right;
  margin-bottom: 0;
}
#select .detail_button a,
#select .detail_button input[type=submit] {
  padding: 12px;
  background-color: #0059aa;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  width: 100%;
}
#select input[type=text],
#select input[type=email] {
  background: #fff;
}
#select .checkbox {
  margin-bottom: 2rem;
}
#select #beauty_detail_button {
  display: none;
}

#beauty_form p {
  text-align: center;
  margin-bottom: 2rem;
}

#beauty_form_error {
  color: red;
}/*# sourceMappingURL=healthcare_professionals.css.map */