/* ------------------------------------
// .info_time
------------------------------------ */
.clinicinfo {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1360px;
  margin: 70px auto 70px;
  padding: 0;
}
.clinicinfo .data .contactlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 5rem;
}
.clinicinfo .data .contactlist > * {
  width: 210px;
}
.clinicinfo .data .contactlist > * a {
  display: flex;
  border-radius: 21px;
  aspect-ratio: 210/42;
  color: #fff;
  font-weight: 500;
  align-items: center;
}
.clinicinfo .data .contactlist > * a::before {
  content: "";
}
.clinicinfo .data .contactlist > *.tel a {
  font-size: 2.3rem;
  gap: 10px;
  background: #2778de;
  padding-left: 15px;
}
.clinicinfo .data .contactlist > *.tel a::before {
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../img/cmn/icon_tel.svg) no-repeat 0 0/contain;
}
.clinicinfo .data .contactlist > *.inq a {
  font-size: 2rem;
  gap: 15px;
  background: #1394c1;
  padding-left: 15px;
}
.clinicinfo .data .contactlist > *.inq a::before {
  width: 30px;
  aspect-ratio: 30/29;
  background: url(../img/cmn/icon_inquiry.svg) no-repeat 0 0/contain;
}
.clinicinfo .data .address {
  width: fit-content;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 25px;
}
.clinicinfo .data {
  flex-basis: 580px;
}
.clinicinfo .data .time hgroup {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.clinicinfo .data .time table {
  width: 100%;
  border-top: solid 1px #b9b9b9;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.clinicinfo .data .time table th,
.clinicinfo .data .time table td {
  border-bottom: solid 1px #b9b9b9;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.2;
}
.clinicinfo .data .time table thead th {
  padding: 0.3em 0;
}
.clinicinfo .data .time table tbody th,
.clinicinfo .data .time table tbody td {
  padding: 0.6em 0 0.4em;
}
.clinicinfo .data .time table tbody th {
  font-family: "Baloo 2", sans-serif;
  font-weight: 500;
  width: 20%;
}
.clinicinfo .data .time table tbody td {
  text-align: center;
  width: 11.42%;
  font-family: "Baloo 2", sans-serif;
}
.clinicinfo .data .time table tbody tr:last-child th,
.clinicinfo .data .time table tbody tr:last-child td {
  padding: 0;
}
.clinicinfo .data .time > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.clinicinfo .data .bnr {
  max-width: 320px;
  margin-top: 50px;
}
.clinicinfo .map {
  flex-basis: 650px;
}
.clinicinfo .map .gmap {
  aspect-ratio: 650/420;
}
.clinicinfo .map .gmap iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .clinicinfo {
    display: block;
    margin-block: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .clinicinfo .data .contactlist {
    display: none;
  }
  .clinicinfo .data .address {
    width: fit-content;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
  .clinicinfo .data .time hgroup {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .clinicinfo .data .time table {
    margin-bottom: 1rem;
  }
  .clinicinfo .data .time table th,
  .clinicinfo .data .time table td {
    font-size: 1.4rem;
  }
  .clinicinfo .data .time table thead th.holiday {
    width: 13%;
  }
  .clinicinfo .data .time table tbody th {
    width: 24%;
  }
  .clinicinfo .data .time table tbody td {
    width: auto;
  }
  .clinicinfo .data .time table tbody td.pm {
    width: 12%;
    font-size: 1.4rem;
  }
  .clinicinfo .data .time p {
    font-size: 1.4rem;
  }
  .clinicinfo .data .bnr {
    max-width: 100%;
    margin-top: 1.5rem;
  }
  .clinicinfo .map {
    margin-top: 1.5rem;
  }
  .clinicinfo .map .gmap {
    aspect-ratio: 337/275;
  }
}
/* ------------------------------------
// .photobox
------------------------------------ */
.photoBoxContainer section + section {
  margin-top: 10rem;
}
.photoBoxContainer .htype01 {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .photoBoxContainer section + section {
    margin-top: 4rem;
  }
  .photoBoxContainer .htype01 {
    margin-bottom: 2rem;
  }
}

.photobox {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) 1fr;
  gap: 4rem;
}
.photobox .guide {
  align-self: center;
}
.photobox .guide p + p {
  margin-top: 1em;
}
.photobox .data {
  margin-top: 2rem;
  background: #F1F1F1;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .photobox {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}