.section_option {
  padding: 6rem 0 9rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .section_option {
    padding: 6rem 0;
  }
}

.section_option__title {
  text-align: center;
}

.section_option_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 4rem;
}

@media screen and (max-width: 480px) {
  .section_option_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
}

.section_option_list__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  position: relative;
  margin-bottom: 1rem;
  padding: 1rem 0 1rem 1rem;
  border-bottom: solid 1px #d9d9d9;
}

@media screen and (max-width: 480px) {
  .section_option_list__lead {
    font-size: 1.6rem;
    line-height: 2rem;
    display: flex;
    align-items: center;
  }
}

.section_option_list__lead::before {
  content: "";
  width: 0.2rem;
  height: calc(100% - 3rem);
  display: block;
  background: #a28c69;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 480px) {
  .section_option_list__lead::before {
    height: calc(100% - 2.5rem);
  }
}

.section_option_list__image {
  margin-bottom: 1rem;
}

.section_option_list__text {
  font-size: 1.4rem;
  line-height: 2.6rem;
  letter-spacing: 0.04rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 480px) {
  .section_option_list__item:nth-of-type(3) .section_option_list__text {
    min-height: auto;
  }
}

.section_option_list__price {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.3rem;
}

@media screen and (max-width: 480px) {
  .section_option_list__price {
    font-size: 2rem;
  }
}

.section_option_list__btn {
  display: block;
  font-size: 1.3rem;
  color: #fff;
  background-color: #000;
  text-align: center;
  width: 100%;
  padding: 0.8rem;
}

.section_option_list__btn span {
  position: relative;
}

.section_option_list__btn span::before,
.section_option_list__btn span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: -5rem;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}

@media screen and (max-width: 480px) {
  .section_option_list__btn span::before,
  .section_option_list__btn span::after {
    right: -3rem;
  }
}

.section_option_list__btn span::before {
  transform: rotate(45deg);
}

.section_option_list__btn span::after {
  transform: rotate(-45deg);
}
