.best-value-home {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 180%;
}
.best-value-home .contents-title h1 {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.361;
  margin: 0 0 2.5rem;
}
.best-value-home .contents {
  position: relative;
  margin: 0 auto;
  padding-top: 3rem;
}

.bvh__intro {
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
  border-top: 1px dotted #ccc;
  padding-top: 3rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3rem;
}
.bvh__intro p {
  font-size: 100%;
  margin-bottom: 1em;
}
.bvh__intro p:last-child {
  margin-bottom: 0;
}

.bvh__image-single {
  max-width: 100%;
  width: 100%;
  margin: 5rem auto;
  padding: 6rem;
  text-align: center;
  background: #94d0c0;
}
@media screen and (max-width: 768px) {
  .bvh__image-single {
    padding: 0;
  }
}
.bvh__image-single img {
  display: block;
  width: 90%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .bvh__image-single img {
    width: 100%;
  }
}

.bvh__description {
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3rem;
}
.bvh__description p {
  font-size: 100%;
  margin-bottom: 1em;
}
.bvh__description p:last-child {
  margin-bottom: 0;
}
.bvh__description a {
  color: #524B40;
  text-decoration: underline;
}
.bvh__description a:hover {
  text-decoration: none;
}
.bvh__description-lead {
  font-weight: 700;
  color: #524B40;
  margin-top: 1.5rem;
}

.bvh__features {
  margin-bottom: 5rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3rem;
}

.bvh__features-title {
  background: #524B40;
  display: inline-block;
  color: #fff;
  font-size: 110%;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 1rem 3rem;
  margin-bottom: 4rem;
}

.bvh__feature-item {
  margin-bottom: 3rem;
}
.bvh__feature-item:last-child {
  margin-bottom: 0;
}
.bvh__feature-item h3 {
  font-size: 130%;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #524B40;
  margin-bottom: 1rem;
  font-weight: bold;
}
.bvh__feature-item p {
  font-size: 100%;
  color: #555;
  margin: 0;
}

.bvh__image-gallery {
  margin-bottom: 5rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3rem;
}

.bvh__image-item {
  max-width: 100%;
  width: 100%;
  margin: 5rem auto;
  padding: 6rem;
  text-align: center;
  background: #94d0c0;
}
@media screen and (max-width: 768px) {
  .bvh__image-item {
    padding: 0;
  }
}
.bvh__image-item:first-child {
  margin-top: 0;
}
.bvh__image-item:last-child {
  margin-bottom: 0;
}
.bvh__image-item img {
  display: block;
  width: 90%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .bvh__image-item img {
    width: 100%;
  }
}

.bvh__faq-intro {
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}
.bvh__faq-intro p {
  font-size: 100%;
}

.bvh__faq {
  margin-bottom: 5rem;
  border-top: 1px dotted #ccc;
  padding-top: 3rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3rem;
}

.bvh__faq-title {
  font-size: 130%;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 3rem;
  color: #524B40;
}

.bvh__faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.bvh__faq-item {
  border: 1px solid #ddd;
  background: #fff;
}
.bvh__faq-item .bvh__faq-answer {
  display: none;
}
.bvh__faq-item.is-open .bvh__faq-question {
  border-bottom: 1px solid #ddd;
}
.bvh__faq-item.is-open .bvh__faq-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bvh__faq-item.is-open .bvh__faq-icon::after {
  opacity: 0;
}

.bvh__faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  border-bottom: 1px solid transparent;
}
.bvh__faq-question:hover {
  background: #f9f9f9;
}
.bvh__faq-question p {
  margin: 0;
  font-size: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}

.bvh__faq-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #fafafa;
}
.bvh__faq-answer p {
  margin: 0;
  font-size: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bvh__faq-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
}
.bvh__faq-icon::before, .bvh__faq-icon::after {
  content: "";
  position: absolute;
  background: #524B40;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bvh__faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bvh__faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bvh__faq-q,
.bvh__faq-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
}

.bvh__faq-q {
  background: #524B40;
  color: #fff;
}

.bvh__faq-a {
  background: #E4E4E4;
  color: #524B40;
}

.bvh__cta {
  text-align: center;
  background: #524B40;
  padding: 4rem 3rem;
  margin-bottom: 100px;
}
.bvh__cta p {
  font-size: 110%;
  color: #fff;
  font-weight: 500;
  margin: 0 0 2.5rem;
  letter-spacing: 0.1em;
}

.bvh__cta-btn {
  display: inline-block;
  background: #fff;
  color: #524B40;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.5rem 5rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4rem;
}
.bvh__cta-btn:hover {
  background: #f0f0f0;
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .best-value-home {
    font-size: 1.5rem;
  }
  .best-value-home .contents {
    padding-top: 0;
  }
  .best-value-home .contents-title h1 {
    font-size: 3.4rem;
    margin: 3rem 0 2.5rem;
  }
  .bvh__intro {
    text-align: left;
    margin-bottom: 4rem;
  }
  .bvh__intro p {
    font-size: 100%;
  }
  .bvh__image-single {
    margin: 3rem auto;
  }
  .bvh__description {
    margin-bottom: 4rem;
  }
  .bvh__description p {
    font-size: 100%;
  }
  .bvh__features {
    margin-bottom: 4rem;
  }
  .bvh__feature-item {
    margin-bottom: 2.5rem;
  }
  .bvh__feature-item h3 {
    font-size: 110%;
    margin-bottom: 0.8rem;
  }
  .bvh__feature-item p {
    font-size: 100%;
  }
  .bvh__image-gallery {
    margin-bottom: 4rem;
  }
  .bvh__image-item {
    margin: 2rem auto;
  }
  .bvh__faq-intro {
    margin-bottom: 2rem;
    text-align: left;
  }
  .bvh__faq-intro p {
    font-size: 100%;
  }
  .bvh__faq {
    margin-bottom: 4rem;
  }
  .bvh__faq-title {
    font-size: 120%;
    text-align: left;
    margin-bottom: 2rem;
  }
  .bvh__faq-list {
    gap: 1.5rem;
  }
  .bvh__faq-question,
  .bvh__faq-answer {
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .bvh__faq-question p,
  .bvh__faq-answer p {
    font-size: 90%;
  }
  .bvh__faq-q,
  .bvh__faq-a {
    width: 2.6rem;
    height: 2.6rem;
    min-width: 2.6rem;
    font-size: 1.4rem;
  }
  .bvh__cta {
    padding: 3rem 2rem;
  }
  .bvh__cta p {
    font-size: 90%;
  }
}