main .pagetitle {
  margin-bottom: 0;
}
main .pageLead {
  padding: 0 5.6vw;
}
main #container {
  padding: 2rem 5.6vw 2rem;
}

/* treatmentList
------------------------------------ */
.treatmentList {
  padding: 0 5.6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.2vw;
  margin: 5rem auto;
}
.treatmentList li a {
  display: grid;
  grid-template-columns: 6.9vw auto;
  gap: 1vw;
}
.treatmentList li a .icon {
  border: 1px solid #C8B5A1;
  border-radius: 10px;
  aspect-ratio: 1/1;
}
.treatmentList li a .icon img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.treatmentList li a dl dt {
  font-size: clamp(1.4rem, 1.4vw, 1.4vw);
  padding-bottom: 1rem;
  border-bottom: 1px solid #51443D;
  position: relative;
}
.treatmentList li a dl dt:before {
  background: #C8B5A1;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.treatmentList li a dl dd {
  font-size: clamp(2rem, 2.2vw, 2.2vw);
}
.treatmentList li a:hover .icon {
  transition: 0.3s;
  border: 1px solid #51443D;
  background: #FFF;
  background: #FFF;
}
.treatmentList li a:hover dt::before {
  transition: 0.3s;
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  .treatmentList {
    padding: 0;
    grid-template-columns: 1fr;
  }
  .treatmentList li a {
    display: grid;
    grid-template-columns: 16vw auto;
    gap: 4vw;
  }
  .treatmentList li a dl dt {
    font-size: clamp(1.4rem, 1.4vw, 1.4vw);
    padding-bottom: 0.5rem;
  }
  .treatmentList li a dl dd {
    font-size: clamp(2rem, 2.2vw, 2.2vw);
  }
}
/* .treatmentdetail
------------------------------------ */
.treatmentdetail {
  background: #FFF;
  border-radius: 15px;
  border: 1px solid #C8B5A1;
  padding: 3.2vw;
  margin-top: 5rem;
}
.treatmentdetail hgroup {
  display: flex;
  align-items: flex-end;
  gap: 2.1vw;
  position: relative;
  margin-bottom: 5rem;
}
.treatmentdetail hgroup::after {
  content: "";
  width: calc(100% - 9vw);
  height: 1px;
  background: #C8B5A1;
  position: absolute;
  bottom: 0;
  right: 0;
}
.treatmentdetail hgroup .icon {
  width: 6.9vw;
  border-radius: 10px;
  border: 1px solid #C8B5A1;
}
.treatmentdetail hgroup h3 {
  font-size: clamp(2.4rem, 3.3vw, 3.3vw);
  line-height: 1;
  padding-bottom: 1.5rem;
  margin-block: calc((1cap - 1lh) / 2);
}
.treatmentdetail hgroup p {
  padding-bottom: 0.5rem;
  font-size: clamp(1.8rem, 1.3vw, 1.3vw);
}
.treatmentdetail .rayoutBox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  align-items: flex-start;
}
.treatmentdetail .rayoutBox:nth-child(2n+1), .treatmentdetail .rayoutBox.dir_rev {
  flex-direction: row-reverse;
}
.treatmentdetail .rayoutBox.dir_row {
  flex-direction: row;
}
.treatmentdetail .rayoutBox:last-child {
  margin-bottom: 0;
}
.treatmentdetail .rayoutBox > .text {
  width: 48%;
}
.treatmentdetail .rayoutBox > .photo {
  position: sticky;
  top: 0;
  width: 48%;
}
.treatmentdetail .rayoutBox h4 {
  font-size: clamp(2rem, 2.2vw, 2.2vw);
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.treatmentdetail .rayoutBox .h4_titlelead {
  margin-bottom: 0;
  font-weight: 600;
}
.treatmentdetail .rayoutBox h5 {
  font-size: clamp(1.8rem, 1.7vw, 1.7vw);
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.treatmentdetail .rayoutBox section:not(:first-child) {
  margin-top: 6rem;
}
.treatmentdetail .rayoutBox section section {
  margin-top: 3rem;
}
.treatmentdetail .rayoutBox .photolist li:not(:first-child) {
  margin-top: 1.5rem;
}
.treatmentdetail .topicBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 2.1vw;
  background: #F8F1EA;
}
.treatmentdetail .topicBox h4 {
  width: 100%;
}
.treatmentdetail .topicBox .text {
  width: 48%;
}
.treatmentdetail .topicBox .photo {
  position: sticky;
  top: 0;
  width: 48%;
}
.treatmentdetail .topicBox h4 {
  font-size: clamp(2rem, 2.2vw, 2.2vw);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .treatmentdetail {
    border-radius: 10px;
    padding: 5.3vw;
    margin-top: 5rem;
  }
  .treatmentdetail hgroup {
    display: grid;
    grid-template-columns: 16vw 1fr;
    gap: 0 1rem;
    position: relative;
    margin-bottom: 3rem;
  }
  .treatmentdetail hgroup::after {
    width: calc(100% - 16vw - 1rem);
  }
  .treatmentdetail hgroup .icon {
    grid-row: 1/3;
    grid-column: 1/2;
    width: 16vw;
    border-radius: 5px;
  }
  .treatmentdetail hgroup h3 {
    font-size: clamp(2.4rem, 3.3vw, 3.3vw);
    line-height: 1;
    padding-bottom: 0;
  }
  .treatmentdetail hgroup p {
    padding-bottom: 0;
    font-size: clamp(1.4rem, 1.3vw, 1.3vw);
  }
  .treatmentdetail .rayoutBox {
    display: block;
    margin-bottom: 5rem;
  }
  .treatmentdetail .rayoutBox .text {
    width: 100%;
  }
  .treatmentdetail .rayoutBox .photo {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
  }
  .treatmentdetail .rayoutBox section:not(:first-child) {
    margin-top: 3rem;
  }
  .treatmentdetail .rayoutBox section section {
    margin-top: 2rem;
  }
  .treatmentdetail .topicBox {
    display: block;
    padding: 4vw;
    background: #F8F1EA;
  }
  .treatmentdetail .topicBox h4 {
    width: 100%;
  }
  .treatmentdetail .topicBox > .text {
    width: 100%;
  }
  .treatmentdetail .topicBox > .photo {
    position: relative;
    margin-top: 1.5rem;
    width: 100%;
  }
  .treatmentdetail .topicBox h4 {
    font-size: clamp(2rem, 2.2vw, 2.2vw);
    margin-bottom: 1.5rem;
    font-weight: bold;
  }
}
/* #implant
------------------------------------ */
#implant .implantList ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 1rem;
}
#implant .implantList ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 5px 1rem;
}
#implant .implantList ul li p {
  line-height: 1.5;
  align-self: end;
  font-size: clamp(1.3rem, 1.3vw, 1.3vw);
}
@media screen and (max-width: 768px) {
  #implant .implantList ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
  #implant .implantList ul li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 5px 1rem;
  }
  #implant .implantList ul li p {
    line-height: 1.5;
    align-self: end;
    font-size: clamp(1.3rem, 1.3vw, 1.3vw);
  }
}

/* #preventive
------------------------------------ */
#preventive .topicBox dl {
  margin-top: 3rem;
}
#preventive .topicBox dl dt {
  border-bottom: 1px dotted #C8B5A1;
  font-size: clamp(1.8rem, 1.4vw, 1.4vw);
}

/* #orthodontics
------------------------------------ */
#orthodontics .innerlink {
  margin: 2rem 0 0;
}
#orthodontics .innerlink a {
  display: block;
  background: #51443D;
  color: #FFF;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
#orthodontics .innerlink a::after {
  content: "";
  width: 15px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: #FFF;
  display: block;
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
}
#orthodontics #orthTreatment {
  padding: 2.1vw;
  margin-top: 3rem;
  border: 10px solid #F8F1EA;
}
#orthodontics #orthTreatment h4 {
  font-size: clamp(2rem, 2.2vw, 2.2vw);
  margin-bottom: 0.5rem;
  font-weight: bold;
  width: fit-content;
  background: #F8F1EA;
  padding: 0 2rem;
  color: #51443D;
}
#orthodontics #orthTreatment .text {
  padding: 2rem;
}
#orthodontics #orthTreatment .text .photo {
  width: 40%;
  float: right;
  padding: 0 0 1rem 1rem;
}
@media screen and (max-width: 768px) {
  #orthodontics #orthTreatment {
    display: block;
    padding: 4vw;
  }
  #orthodontics #orthTreatment > .text {
    width: 100%;
    padding: 0;
  }
  #orthodontics #orthTreatment > .text .photo {
    float: none;
    width: 100%;
    padding: 0;
  }
  #orthodontics #orthTreatment h4 {
    font-size: clamp(2rem, 2.2vw, 2.2vw);
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 1.5rem;
  }
}

/*# sourceMappingURL=treatment.css.map */