@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #f4f4f4;
  --green: #45b035;
  --border-color: #f2f2f2;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

.medical-program-search {
  margin-top: 4rem;
}
.medical-program-search__inner {
  position: relative;
}
.medical-program-search__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--wh);
  position: absolute;
  top: 10rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .medical-program-search__inner::before {
    width: 100%;
    top: 7rem;
  }
}
.medical-program-search__wrapper {
  background: url(../img/common/medical-program-search-bg.webp) no-repeat center/cover;
  border-radius: 2rem;
  padding: 2rem 5rem 5rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .medical-program-search__wrapper {
    padding: 2rem 4rem 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .medical-program-search__wrapper {
    padding: 2rem 3rem 3rem;
  }
}
@media screen and (max-width: 834px) {
  .medical-program-search__wrapper {
    border-radius: 2rem 2rem 0 0;
    padding: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .medical-program-search__wrapper {
    padding: 2rem 1.5rem;
  }
}
.medical-program-search__content {
  display: flex;
  gap: 1rem;
  margin-top: 6.5rem;
  position: relative;
  border-radius: 0 0 1rem 1rem;
}
@media screen and (max-width: 1500px) {
  .medical-program-search__content {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .medical-program-search__content {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .medical-program-search__content {
    flex-direction: column;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 499px) {
  .medical-program-search__content {
    margin-top: 2rem;
  }
}
.medical-program-search__content-wrapper {
  width: 100%;
  overflow-y: auto;
  background-color: var(--wh);
  border-radius: 0 0 1rem 1rem;
}
@media screen and (max-width: 834px) {
  .medical-program-search__content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 10rem;
  }
}
.medical-program-search__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--wh);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .medical-program-search__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 640px) {
  .medical-program-search__title {
    font-size: 1.8rem;
  }
}
.medical-program-search__title::before {
  content: "search";
  font-family: "Material Symbols Outlined";
  font-size: 3rem;
  color: var(--wh);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100vmax;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2.7rem;
}
@media screen and (max-width: 834px) {
  .medical-program-search__title::before {
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
    margin-right: 1rem;
  }
}
.medical-program-search__form {
  background-color: var(--wh);
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .medical-program-search__form {
    padding-top: 2rem;
  }
}
.medical-program-search__form-item--radio {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 26rem;
  border-radius: 1rem 1rem 0 0;
  background-color: #f4f4f4;
  color: #b0b0b0;
}
.medical-program-search__form-item--radio label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.medical-program-search__form-item--radio:has(:checked) {
  background-color: var(--green);
  color: var(--wh);
}
.medical-program-search__form-item--radio-group {
  min-height: 5rem;
  display: flex;
  justify-content: center;
  margin: 0 8rem;
  gap: 0.8rem;
  border-bottom: 2px solid var(--green);
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--radio-group {
    margin: 0 4rem;
  }
}
@media screen and (max-width: 640px) {
  .medical-program-search__form-item--radio-group {
    margin: 0 2rem;
  }
}
.medical-program-search__form-item--text, .medical-program-search__form-item--checkbox-group, .medical-program-search__form-item--select {
  margin: 5rem 8rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .medical-program-search__form-item--text, .medical-program-search__form-item--checkbox-group, .medical-program-search__form-item--select {
    margin: 3rem 4rem 0;
  }
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--text, .medical-program-search__form-item--checkbox-group, .medical-program-search__form-item--select {
    margin: 2rem 2rem 0;
  }
}
@media screen and (max-width: 640px) {
  .medical-program-search__form-item--text, .medical-program-search__form-item--checkbox-group, .medical-program-search__form-item--select {
    margin: 2rem 1.5rem 0;
    gap: 2rem;
  }
}
.medical-program-search__form-item--text dt, .medical-program-search__form-item--checkbox-group dt, .medical-program-search__form-item--select dt {
  color: #008a70;
  font-weight: 500;
  margin-bottom: 5px;
  width: 100%;
  max-width: 24rem;
  margin-top: 2rem;
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--text dt, .medical-program-search__form-item--checkbox-group dt, .medical-program-search__form-item--select dt {
    margin-top: 0;
  }
}
.medical-program-search__form-item--text dd, .medical-program-search__form-item--checkbox-group dd, .medical-program-search__form-item--select dd {
  width: 100%;
}
.medical-program-search__form-item--checkbox-group dd.item-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
@media screen and (max-width: 1500px) {
  .medical-program-search__form-item--checkbox-group dd.item-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--checkbox-group dd.item-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .medical-program-search__form-item--checkbox-group dd.item-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.medical-program-search__form-item--checkbox-group dd.item-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
@media screen and (max-width: 1500px) {
  .medical-program-search__form-item--checkbox-group dd.item-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .medical-program-search__form-item--checkbox-group dd.item-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--checkbox-group dd.item-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .medical-program-search__form-item--checkbox-group dd.item-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.medical-program-search__form-item--checkbox-group label {
  background-color: #f4f4f4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  height: 5rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  white-space: nowrap;
}
@media screen and (max-width: 1500px) {
  .medical-program-search__form-item--checkbox-group label {
    padding: 1rem;
    font-size: 1.4rem;
  }
}
.medical-program-search__form-item--checkbox-group label:has(:checked) {
  border: 2px solid var(--green);
  position: relative;
  color: var(--green);
}
.medical-program-search__form-item--checkbox-group label:has(:checked)::after {
  content: "check";
  font-family: "Material Symbols Outlined";
  color: var(--green);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1500px) {
  .medical-program-search__form-item--checkbox-group label:has(:checked)::after {
    right: 5px;
  }
}
.medical-program-search__form-item--caution {
  margin: 5rem 8rem 15rem;
}
@media screen and (max-width: 1500px) {
  .medical-program-search__form-item--caution {
    margin: 3rem 4rem 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .medical-program-search__form-item--caution {
    margin: 3rem 4rem 5rem;
  }
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--caution {
    margin: 2rem 2rem 2rem;
  }
}
.medical-program-search__form-item--select {
  flex-wrap: nowrap;
}
@media screen and (max-width: 1500px) {
  .medical-program-search__form-item--select {
    flex-wrap: wrap;
  }
}
.medical-program-search__form-item--select .select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 250px;
}
.medical-program-search__form-item--select {
  /* ▼ カスタム矢印 */
}
.medical-program-search__form-item--select .select-wrap::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 0.6rem;
  height: 0.8rem;
  border-right: 0.2rem solid #b6b6b6;
  border-bottom: 0.2rem solid #b6b6b6;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.medical-program-search__form-item--select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 1rem 3.6rem 1rem 1.2rem;
  /* 右側に余白を作る */
  font-size: 1.4rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  height: 6rem;
}
@media screen and (max-width: 834px) {
  .medical-program-search__form-item--select select {
    height: 4.5rem;
  }
}
.medical-program-search__form-item--wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.medical-program-search__input--text {
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 100%;
  height: 6rem;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 834px) {
  .medical-program-search__input--text {
    height: 4.5rem;
  }
}
.medical-program-search__submit {
  display: block;
  width: 100%;
  background-color: rgba(25, 25, 25, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  margin-top: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  border-radius: 0 0 1rem 1rem;
}
.medical-program-search__button {
  background-color: #ff9c00;
  color: var(--wh);
  font-size: 1.4rem;
  border-radius: 100vmax;
  width: 20rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medical-institution {
  padding: 2rem 8rem 10rem 0;
  display: flex;
}
@media screen and (max-width: 1500px) {
  .medical-institution {
    padding: 1rem 8rem 8rem 0;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  .medical-institution {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 834px) {
  .medical-institution {
    padding: 1rem 0 0 0;
  }
}
.medical-institution__wrapper:nth-child(1) {
  width: 100%;
  max-width: calc(100% - 583px);
}
@media screen and (max-width: 1500px) {
  .medical-institution__wrapper:nth-child(1) {
    max-width: 100%;
  }
}
.medical-institution__wrapper:nth-child(2) {
  width: 100%;
  max-width: 583px;
}
.medical-institution__wrapper img {
  width: 100%;
  max-width: 100%;
}
.medical-institution__wrapper.--map {
  position: relative;
}
.medical-institution__wrapper .map-list__item {
  position: absolute;
}
.medical-institution__wrapper .map-list__item label {
  cursor: pointer;
}
.medical-institution__wrapper .map-list__item.--hokkaido {
  top: 13%;
  left: 78%;
}
.medical-institution__wrapper .map-list__item.--tohoku {
  top: 40%;
  left: 68%;
}
.medical-institution__wrapper .map-list__item.--kanto {
  top: 63%;
  left: 63%;
}
.medical-institution__wrapper .map-list__item.--chubu {
  top: 65%;
  left: 45%;
}
.medical-institution__wrapper .map-list__item.--kinki {
  top: 74%;
  left: 36%;
}
.medical-institution__wrapper .map-list__item.--chugoku {
  top: 72%;
  left: 16%;
}
.medical-institution__wrapper .map-list__item.--shikoku {
  top: 80%;
  left: 20%;
}
.medical-institution__wrapper .map-list__item.--kyushu {
  top: 87%;
  left: 3%;
}
.medical-institution__wrapper .map-list__item.--okinawa {
  top: 36%;
  left: 18%;
}
.medical-institution__wrapper .map-list__label {
  background-color: var(--wh);
  border: 1px solid #ddd;
  color: var(--green);
  padding: 0.6rem 1.4rem 0.4rem;
  border-radius: 100vmax;
  transition: all 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .medical-institution__wrapper .map-list__label {
    font-size: 1.2rem;
    padding: 0.4rem 1rem 0.2rem;
  }
}
@media screen and (max-width: 499px) {
  .medical-institution__wrapper .map-list__label {
    padding: 0.2rem 0.8rem 0rem;
  }
}
.medical-institution__wrapper .map-list__label:hover {
  border: 1px solid var(--green);
  background-color: var(--green);
  color: var(--wh);
  transition: all 0.3s ease-in-out;
}

#select-area {
  scroll-margin-top: 17rem;
}/*# sourceMappingURL=medical-program-search.css.map */