@charset "utf-8";
/* price
---------------------------------------------- */
.price .secTtl {
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 10px 24px;
  line-height: 1.2em;
  font-size: 24px;
  color: var(--white);
  background: var(--redbrown);
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.1);
}

.price.treatment .inner {
  margin: 100px auto 140px;
}

.anchor-link-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 18px;
  column-gap: 18px;
}

.anchor-link-wrapper li {
  position: relative;
  padding: 18px 12px;
  border: 1px solid #806b41;
  border-radius: 8px;
  background-color: #fff;
  font-size: 18px;
  color: #806b41;
  font-weight: 400;
}

.anchor-link-wrapper .small {
  font-size: 17px;
}

.anchor-link-wrapper li::before {
  content: "";
  position: absolute;
  right: 10px; 
  top: 50%;
  transform: translateY(-50%);
  width: 24px; 
  height: 24px; 
  background-color: #8b6d4f; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor-link-wrapper li::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 46%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #faf7f4;
  border-bottom: 2px solid #faf7f4;
}

@media screen and (max-width: 768px) {
  .price .secTtl {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .price.treatment .inner {
    margin: 24px auto 80px;
  }

  .price.treatment .header-kv .inner {
    margin: 0;
  }

  .anchor-link-wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6px;
    column-gap: 6px;
  }

  .anchor-link-wrapper li {
    padding: 12px 10px;
    font-size: 14px;
  }

  .anchor-link-wrapper .small {
    padding: 4.6px 10px;
    line-height: 1.2;
    font-size: 12px;
  }

  .anchor-link-wrapper li::before {
    width: 18px;
    height: 18px;
    right: 8px;
  }

  .anchor-link-wrapper li::after {
    right: 14.4px;
    top: 48%;
    width: 4px;
    height: 4px;
    border-right: 1px solid #faf7f4;
    border-bottom: 1px solid #faf7f4;
  }
}
