@charset "UTF-8";
.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .u-flex-between {
    flex-direction: column;
  }
}

.u-flex-column {
  display: flex;
  flex-direction: column;
}

.u-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.u-gap-4 {
  gap: 4px;
}

.u-gap-5 {
  gap: 5px;
}

.u-gap-6 {
  gap: 6px;
}

.u-gap-7 {
  gap: 7px;
}

.u-gap-8 {
  gap: 8px;
}

.u-gap-9 {
  gap: 9px;
}

.u-gap-10 {
  gap: 10px;
}

.u-gap-11 {
  gap: 11px;
}

.u-gap-12 {
  gap: 12px;
}

.u-gap-13 {
  gap: 13px;
}

.u-gap-14 {
  gap: 14px;
}

.u-gap-15 {
  gap: 15px;
}

.u-gap-16 {
  gap: 16px;
}

.u-gap-17 {
  gap: 17px;
}

.u-gap-18 {
  gap: 18px;
}

.u-gap-19 {
  gap: 19px;
}

.u-gap-20 {
  gap: 20px;
}

.u-gap-21 {
  gap: 21px;
}

.u-gap-22 {
  gap: 22px;
}

.u-gap-23 {
  gap: 23px;
}

.u-gap-24 {
  gap: 24px;
}

.u-gap-25 {
  gap: 25px;
}

.u-gap-26 {
  gap: 26px;
}

.u-gap-27 {
  gap: 27px;
}

.u-gap-28 {
  gap: 28px;
}

.u-gap-29 {
  gap: 29px;
}

.u-gap-30 {
  gap: 30px;
}

.u-gap-31 {
  gap: 31px;
}

.u-gap-32 {
  gap: 32px;
}

.u-gap-33 {
  gap: 33px;
}

.u-gap-34 {
  gap: 34px;
}

.u-gap-35 {
  gap: 35px;
}

.u-gap-36 {
  gap: 36px;
}

.u-gap-37 {
  gap: 37px;
}

.u-gap-38 {
  gap: 38px;
}

.u-gap-39 {
  gap: 39px;
}

.u-gap-40 {
  gap: 40px;
}

.treatment-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.treatment-detail__title {
  background-color: #38a05a;
  color: #fff;
  font-size: clamp(1.125rem, 0.8365384615rem + 0.6153846154vw, 1.375rem);
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .treatment-detail__title {
    margin-top: 0;
  }
}
.treatment-detail__lead {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .treatment-detail__lead {
    flex-direction: column;
  }
}
.treatment-detail__lead-text {
  flex: 1;
  font-size: clamp(0.875rem, 0.7307692308rem + 0.3076923077vw, 1rem);
  line-height: 2;
  font-weight: 500;
}
.treatment-detail__lead-img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.treatment-detail__checklist {
  border: 2px dashed #38a05a;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .treatment-detail__checklist {
    padding: 24px 16px;
  }
}
.treatment-detail__checklist > p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .treatment-detail__checklist > p {
    text-align: left;
  }
}
.treatment-detail__checklist-title {
  text-align: center;
  font-size: clamp(1.125rem, 0.9807692308rem + 0.3076923077vw, 1.25rem);
  font-weight: bold;
  color: #38a05a;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .treatment-detail__checklist-title {
    text-align: left;
    justify-content: flex-start;
  }
}
.treatment-detail__checklist-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../img/common/icon-nayami.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .treatment-detail__checklist-title::before {
    display: none;
  }
}
.treatment-detail__checklist-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
@media screen and (max-width: 767px) {
  .treatment-detail__checklist-list {
    grid-template-columns: 1fr;
  }
}
.treatment-detail__checklist-list li {
  font-size: clamp(0.8125rem, 0.6682692308rem + 0.3076923077vw, 0.9375rem);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #52B567;
}
.treatment-detail__checklist-list li::before {
  content: "✔︎";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #52B567;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}
.treatment-detail__section {
  margin-bottom: 80px;
}
.treatment-detail__section-title {
  font-size: clamp(1.125rem, 0.8365384615rem + 0.6153846154vw, 1.375rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.treatment-detail__section-title::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #ffc107;
  border-radius: 50%;
}
.treatment-detail__section-text {
  font-size: clamp(0.875rem, 0.7307692308rem + 0.3076923077vw, 1rem);
  line-height: 2;
  margin-bottom: 40px;
}
.treatment-detail__compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .treatment-detail__compare {
    grid-template-columns: 1fr;
  }
}
.treatment-detail__compare-col-heading {
  font-size: clamp(1rem, 0.8557692308rem + 0.3076923077vw, 1.125rem);
  font-weight: bold;
  color: #5db86a;
  border: 2px solid #38a05a;
  margin-bottom: 20px;
  text-align: center;
  background: #ffffff;
  padding: 6px;
  border-radius: 20px;
}
.treatment-detail__compare-col-desc {
  font-size: clamp(0.8125rem, 0.6682692308rem + 0.3076923077vw, 0.9375rem);
  line-height: 1.8;
  margin-bottom: 20px;
}
.treatment-detail__compare-col-list li {
  font-size: clamp(0.8125rem, 0.6682692308rem + 0.3076923077vw, 0.9375rem);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.treatment-detail__compare-col-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #38a05a;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.treatment-detail__features {
  margin-bottom: 80px;
}
.treatment-detail__features-title {
  font-size: clamp(1.125rem, 0.8365384615rem + 0.6153846154vw, 1.375rem);
  font-weight: bold;
  background-color: #a3824b;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
}
.treatment-detail__features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.treatment-detail__features-item {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .treatment-detail__features-item {
    align-items: flex-start;
    gap: 16px;
  }
}
.treatment-detail__features-item-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .treatment-detail__features-item-img {
    width: 60px;
    height: auto;
  }
}
.treatment-detail__features-item-content {
  flex: 1;
}
.treatment-detail__features-item-content h3 {
  font-size: clamp(1rem, 0.8557692308rem + 0.3076923077vw, 1.125rem);
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.treatment-detail__features-item-content h3 span {
  font-size: clamp(0.875rem, -0.4230769231rem + 2.7692307692vw, 2rem);
  color: #38a05a;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
.treatment-detail__features-item-content p {
  font-size: clamp(0.8125rem, 0.6682692308rem + 0.3076923077vw, 0.9375rem);
  line-height: 1.8;
}
.treatment-detail__flow {
  margin-bottom: 80px;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .treatment-detail__flow {
    padding: 32px 16px;
  }
}
.treatment-detail__flow-title {
  font-size: clamp(1.125rem, 0.8365384615rem + 0.6153846154vw, 1.375rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.treatment-detail__flow-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #38a05a;
  margin: 16px auto 0;
}
.treatment-detail__flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .treatment-detail__flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .treatment-detail__flow-steps {
    grid-template-columns: 1fr;
  }
}
.treatment-detail__flow-step {
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.treatment-detail__flow-step-badge {
  display: inline-block;
  background-color: #38a05a;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.treatment-detail__flow-step-name {
  font-size: clamp(0.875rem, 0.7307692308rem + 0.3076923077vw, 1rem);
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
}
.treatment-detail__flow-step-desc {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}
.treatment-detail__cta {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 9px;
  border: 2px solid #5A4B38;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .treatment-detail__cta {
    text-align: left;
  }
}
.treatment-detail__cta-title {
  font-size: clamp(1.125rem, 0.9807692308rem + 0.3076923077vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 24px;
  color: #52B567;
}
.treatment-detail__cta-text {
  font-size: clamp(0.875rem, 0.7307692308rem + 0.3076923077vw, 1rem);
  line-height: 2;
  margin-bottom: 32px;
}
.treatment-detail__related {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .treatment-detail__related {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.treatment-detail__related-title {
  text-align: center;
  font-size: clamp(1.125rem, 0.9807692308rem + 0.3076923077vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 32px;
}
.treatment-detail__related-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #333;
  margin: 12px auto 0;
}
.treatment-detail__related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .treatment-detail__related-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.treatment-detail__related-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .treatment-detail__related-card {
    padding: 20px 16px;
  }
}
.treatment-detail__related-card:hover {
  border-color: #52b567;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.treatment-detail__related-card-title {
  font-size: 15px;
  font-weight: bold;
  color: #52B567;
  margin-bottom: 8px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .treatment-detail__related-card-title {
    font-size: 14px;
  }
}
.treatment-detail__related-card-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}
.treatment-detail__related-card--back .treatment-detail__related-card-title::before {
  content: "« ";
}

.oral-title {
  font-size: clamp(1rem, 0.4230769231rem + 1.2307692308vw, 1.5rem);
  font-weight: bold;
  background: #eafbe2;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
}/*# sourceMappingURL=treatment-detail.css.map */