/* UTILITY */

.u-mt_04 {
  margin-top: 4px;
}
.u-mt_10 {
  margin-top: 10px;
}
.u-mt_12 {
  margin-top: 12px;
}
.u-mt_20 {
  margin-top: 20px;
}
.u-mt_30 {
  margin-top: 30px;
}
.u-mt_50 {
  margin-top: 50px;
}
.u-mt_100 {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-mt_12-sp {
    margin-top: 12px;
  }
  .u-mt_20 {
    margin-top: 15px;
  }
  .u-mt_30 {
    margin-top: 20px;
  }
  .u-mt_50 {
    margin-top: 30px;
  }
  .u-mt_100 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .u-mt_20 {
    margin-top: 15px;
  }
  .u-mt_50 {
    margin-top: 25px;
  }
}

.u-mb_10 {
  margin-bottom: 10px;
}
.u-mb_20 {
  margin-bottom: 20px;
}
.u-mb_30 {
  margin-bottom: 30px;
}
.u-mb_40 {
  margin-bottom: 40px;
}
.u-mb_50 {
  margin-bottom: 50px;
}
.u-mb_100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .u-mb_20 {
    margin-bottom: 15px;
  }
  .u-mb_30 {
    margin-bottom: 20px;
  }
  .u-mb_40 {
    margin-bottom: 25px;
  }
  .u-mb_50 {
    margin-bottom: 30px;
  }
  .u-mb_100 {
    margin-bottom: 50px;
  }
}

.u-flex {
  display: flex;
}

.u-jc_center {
  justify-content: center;
}

.u-jc_between {
  justify-content: space-between;
}

.u-jc_end {
  justify-content: flex-end;
}

.u-jc_start {
  justify-content: flex-start;
}

.u-fw_bold {
  font-weight: bold;
}

.u-disc {
  list-style: disc inside;
  padding-left: 2em;
  text-indent: -1.6em;
}

.u-decimal {
  list-style: decimal inside;
  padding-left: 2em;
  text-indent: -1.6em;
}

.u-circle {
  list-style: circle inside;
  padding-left: 2em;
  text-indent: -1.6em;
}

.u-fz_16 {
  font-size: 16px;
}

.u-underline {
  text-decoration: underline;
}

.u-visually-hidden {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.treatment-page-title p:not(.active) {
  display: none;
}

.sec-treatment-content:not(.active) {
  display: none;
}

.single-case-period {
  margin-top: 16px;
  display: flex;
  font-size: 14px;
  justify-content: center;
  gap: 20px;
  letter-spacing: 0.05em;
}

.single-case-period-before {
  font-family: "Futura PT", serif;
  color: var(--g-color-black);
}

.single-case-period-after {
  font-family: "Futura PT", serif;
  color: #bc8a4d;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.single-case-period-after::before {
  content: "";
  width: 26px;
  height: 1px;
  background: #bc8a4d;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.single-case-period-after-text {
  color: #bc8a4d;
  font-weight: 500;
}

.treatment-main {
}

.treatmentMenuList {
  padding-block: 40px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  display: grid;
}

.treatmentMenuList__item {
  border-radius: 12px;
  border: 1px solid #e8e2dd;
  background: #fff;
  height: fit-content;
}

.treatmentMenuList__titleWrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  position: relative;
  cursor: pointer;
  &::before,
  &::after {
    width: 16px;
    height: 1px;
    background: #9a918d;
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
  }
  &::after {
    transform: translate(0, -50%) rotate(90deg);
    transition: transform 0.3s ease-in-out;
  }
  &.active {
    &::after {
      transform: translate(0, -50%) rotate(0deg);
    }
  }
}

.treatmentMenuList__icon {
  width: 52px;
  flex-shrink: 0;
  & img {
    border-radius: 50%;
  }
}

.treatmentMenuList__term {
  color: #07070b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.treatmentMenuList__subList {
  display: none;
  padding: 0 20px 20px;
}

.treatmentMenuList__item.active .treatmentMenuList__subList {
  display: block;
}

.treatmentMenuList__subItem {
}

.treatmentMenuList__subLink {
  display: block;
  border-bottom: 1px solid #e8e2dd;
  padding: 13px 0;
  color: #07070b;
  font-size: 13px;
  font-weight: 350;
  line-height: normal;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .treatmentMenuList {
    padding-block: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 11px;
  }
  .treatmentMenuList__item {
    border-radius: 10px;
  }

  .treatmentMenuList__titleWrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }
  .treatmentMenuList__icon {
    width: 44px;
  }
  .treatmentMenuList__term {
    font-size: 14px;
  }
  .treatmentMenuList__subList {
    padding: 0 16px 16px;
  }
  .treatmentMenuList__subLink {
    font-size: 13px;
  }
}
