@charset "utf-8";
.area_map_contents {
	margin: 50px 0 0;
}
.area_map_ttl {
  position: relative;
  font-size: 18px;
  background-color: #efefec;
  padding: 8px 20px 9px;
  border-radius: 5px;
  text-align: center;
}
.area_map_ttl::before,
.area_map_ttl::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
}
.area_map_ttl::before {
  border-left: 3px solid #f39600;
  border-top: 3px solid #f39600;
  top: 0;
  left: 0;
}
.area_map_ttl::after {
  border-right: 3px solid #f39600;
  border-bottom: 3px solid #f39600;
  bottom: 0;
  right: 0;
}
.area_map_txt_wrap {
  margin-top: 30px;
}
.area_map_txt {
  line-height: 2;
}
.area_map_txt + .area_map_txt {
  margin-top: 20px;
}
.area_map_img {
  text-align: center;
  margin-top: 30px;
}
.our_clinics_txt {
  font-size: 12px;
  margin: 13px 0 0;
  text-align: center;
}
.our_clinics_box_wrap {
  display: flex;
	flex-wrap: wrap;
  margin: 40px 0 0;
	gap: 50px 16px;
}
.our_clinics_box {
  display: flex;
  flex-direction: column;
  width: calc((100% - 16px) / 2);
	gap: 10px 0;
}
.our_clinics_box_ttl {
  position: relative;
  font-weight: bold;
  padding: 0 0 0 24px;
  line-height: 1.3;
}
.our_clinics_box_ttl::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 24px;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.our_clinics_box:nth-child(1) .our_clinics_box_ttl::before {
  background-image: url(../images/area/area_mk_01.svg);
}
.our_clinics_box:nth-child(2) .our_clinics_box_ttl::before {
  background-image: url(../images/area/area_mk_02.svg);
}
.our_clinics_box:nth-child(3) .our_clinics_box_ttl::before {
  background-image: url(../images/area/area_mk_03.svg);
}
.our_clinics_box:nth-child(4) .our_clinics_box_ttl::before {
  background-image: url(../images/area/area_mk_04.svg);
}
.our_clinics_img {
  position: relative;
}
.our_clinics_zoom {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 5px;
  right: 5px;
}
.our_clinics_access_wrap {
  margin: 8.5px 0 0 0;
}
.our_clinics_tel {
  margin: 11px 0 0 0;
}
.our_clinics_access {
  position: relative;
  padding: 0 0 0 14px;
}
.our_clinics_access::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
}
.our_clinics_box:nth-child(1) .our_clinics_access::before {
  background-color: #2a80b7;
}
.our_clinics_box:nth-child(2) .our_clinics_access::before {
  background-color: #e87466;
}
.our_clinics_box:nth-child(3) .our_clinics_access::before {
  background-color: #a4c934;
}
.our_clinics_box:nth-child(4) .our_clinics_access::before {
  background-color: #ffd503;
}
.our_clinics_access {
  margin: 9px 0 0 0;
}
/* モーダル */
.our_clinics_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(34, 34, 34, 80%);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 200;
}
.our_clinics_modal.js-active {
  opacity: 1;
  visibility: visible;
}
.our_clinics_modal_container {
  display: inline-block;
  vertical-align: middle;
}
.our_clinics_modal_close {
  position: absolute;
  color: #ffffff;
  font-family: Gabarito;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 25px;
  right: 25px;
  font-size: 10px;
  width: 30px;
  height: 50px;
}
.our_clinics_modal_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  max-height: 100%;
}
.our_clinics_modal_map {
  max-width: 80%;
}
@media only screen and (min-width: 576px) {
	.our_clinics_box_wrap {
		gap: 50px 20px;
	}
  .our_clinics_box {
    width: calc((100% - 40px) /3);
  }
  .our_clinics_box_ttl::before {
    width: 20px;
    height: 27px;
    top: -5px;
  }
  .our_clinics_access::before {
    top: 16%;
    width: 8px;
    height: 8px;
  }
  .our_clinics_access {
    padding: 0 0 0 16px;
    margin: 15px 0 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .area_map_contents {
		margin: 75px 0 0;
    display: flex;
    gap: 50px;
    justify-content: space-between;
  }
  .area_map_ttl {
    font-size: clamp(18px, 2.34vw, 30px);
		max-width: 500px;
		text-align: left;
  }
  .area_map_img {
    margin-top: 0;
  }
	.our_clinics_ttl_wrap .area_map_ttl {
		width: 45%;
	}
  .our_clinics_txt {
    font-size: clamp(12px, 1.4vw, 18px);
    text-align: left;
  }
  /* モーダル */
  .our_clinics_modal_close {
    top: 25px;
    right: 25px;
    font-size: 10px;
    width: 30px;
    height: 50px;
  }
  .our_clinics_modal_content {
    width: 100%;
    height: 100vh;
    max-height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .our_clinics_box {
    width: calc((100% - 60px) /4);
		gap: 20px 0;
		justify-content: space-between;
  }
}
@media only screen and (min-width: 1280px) {
  .area_map_ttl {
    font-size: 30px;
    padding: 8px 30px;
		max-width: 710px;
  }
  .area_map_contents {
    gap: 100px;
		margin: 100px 0 0;
  }
	.area_map_txt_wrap {
    margin-top: 60px;
  }
  .area_map_ttl::before,
  .area_map_ttl::after {
    width: 20px;
    height: 20px;
  }
  .area_map_ttl::before {
    border-left: 4px solid #f39600;
    border-top: 4px solid #f39600;
  }
  .area_map_ttl::after {
    border-right: 4px solid #f39600;
    border-bottom: 4px solid #f39600;
  }
  .area_map_ttl br {
    display: none;
  }
  .area_map_txt + .area_map_txt {
    margin-top: 30px;
  }
  .area_map_img {
    margin-top: 0;
  }
  .our_clinics_txt {
    font-size: 18px;
		margin: 19px 0 0;
  }
  .our_clinics_ttl_wrap .area_map_ttl {
		width: unset;
    box-sizing: border-box;
  }
	.our_clinics_box_wrap {
		gap: 0 40px;
		margin: 44px 0 0;
	}
  .our_clinics_box {
    width: calc((100% - 120px) /4);
  }
  .our_clinics_box_ttl {
    padding: 0 0 0 30px;
  }
  .our_clinics_box_ttl::before {
    width: 24px;
    height: 35px;
    top: -4px;
  }
  .our_clinics_img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
  }
  .our_clinics_map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s;
  }
  .our_clinics_zoom {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 5px;
    right: 5px;
    transition: all 0.35s;
  }
  .our_clinics_img:hover .our_clinics_map {
    transition: all 0.35s;
    transform: scale(1.1);
  }
  .our_clinics_img:hover .our_clinics_zoom {
    width: 50px;
    height: 50px;
    transition: all 0.35s;
  }
  /* .our_clinics_box:nth-child(1) br:nth-of-type(2),
  .our_clinics_box:nth-child(2) br:nth-of-type(2),
  .our_clinics_box:nth-child(4) br:nth-of-type(2) {
    display: none;
  } */
  .our_clinics_access_wrap {
    margin: 28px 0 0 0;
  }
  .our_clinics_access {
    padding: 0 0 0 20px;
    margin: 15px 0 0 0;
  }
  .our_clinics_access br {
    display: none;
  }
  .our_clinics_access::before {
    top: 10px;
    width: 10px;
    height: 10px;
  }
  .our_clinics_tel {
    margin: 17px 0 0 0;
  }

  /* モーダル */
  .our_clinics_modal_close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 14px;
    width: 42px;
    height: 63px;
  }
  .our_clinics_modal_content {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .area_map_ttl {
    padding: 7px 30px 8px 70px;
  }
	.our_clinics_box {
		justify-content: flex-start;
	}
}