@charset "UTF-8";
.best-value-home {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  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 25px;
}
.best-value-home .contents {
  position: relative;
  margin: 0 auto;
  padding-top: 30px;
}

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

.bvh__image-single {
  max-width: 600px;
  width: 100%;
  margin: 50px auto;
  text-align: center;
}
.bvh__image-single img {
  display: block;
  width: 100%;
  height: auto;
}

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

.bvh__features {
  margin-bottom: 50px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 30px;
}

.bvh__features-title {
  background: #00a29a;
  display: inline-block;
  color: #fff;
  font-size: 110%;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 10px 30px;
  margin-bottom: 30px;
}

.bvh__feature-item {
  margin-bottom: 30px;
}
.bvh__feature-item:last-child {
  margin-bottom: 0;
}
.bvh__feature-item h3 {
  font-size: 130%;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #00a29a;
  margin-bottom: 10px;
  font-family: "Roboto", "Noto Sans Japanese", Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
.bvh__feature-item p {
  font-size: 100%;
  color: #555;
  margin: 0;
}

.bvh__image-gallery {
  margin-bottom: 50px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 30px;
}

.bvh__image-item {
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
  text-align: center;
}
.bvh__image-item:first-child {
  margin-top: 0;
}
.bvh__image-item:last-child {
  margin-bottom: 0;
}
.bvh__image-item img {
  display: block;
  width: 100%;
  height: auto;
}

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

.bvh__faq {
  margin-bottom: 50px;
  border-top: 1px dotted #ccc;
  padding-top: 30px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 30px;
}

.bvh__faq-title {
  font-size: 130%;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 30px;
  color: #00a29a;
  font-family: "Roboto", "Noto Sans Japanese", Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.bvh__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.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: flex;
}
.bvh__faq-item.is-open .bvh__faq-icon::after {
  opacity: 0;
}

.bvh__faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  cursor: pointer;
  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%;
  flex: 1;
  font-weight: 500;
}

.bvh__faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fafafa;
}
.bvh__faq-answer p {
  margin: 0;
  font-size: 100%;
  flex: 1;
}

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

.bvh__faq-q,
.bvh__faq-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.bvh__faq-q {
  background: #00a29a;
  color: #fff;
}

.bvh__faq-a {
  background: #e0f2f1;
  color: #00a29a;
}

.bvh__cta {
  text-align: center;
  background: #00a29a;
  padding: 40px 30px;
  margin-bottom: 100px;
}
.bvh__cta p {
  font-size: 110%;
  color: #fff;
  font-weight: 500;
  margin: 0 0 25px;
  letter-spacing: 0.1em;
}

.bvh__cta-btn {
  display: inline-block;
  background: #fff;
  color: #00a29a;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 50px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 40px;
}
.bvh__cta-btn:hover {
  background: #f0f0f0;
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .best-value-home {
    font-size: 15px;
  }
  .best-value-home .contents {
    padding-top: 0;
  }
  .best-value-home .contents-title h1 {
    font-size: 4.5333333333vw;
    margin: 30px 0 25px;
  }
  .bvh__intro {
    text-align: left;
    margin-bottom: 40px;
  }
  .bvh__intro p {
    font-size: 100%;
  }
  .bvh__image-single {
    margin: 30px auto;
  }
  .bvh__description {
    margin-bottom: 40px;
  }
  .bvh__description p {
    font-size: 100%;
  }
  .bvh__features {
    margin-bottom: 40px;
  }
  .bvh__feature-item {
    margin-bottom: 25px;
  }
  .bvh__feature-item h3 {
    font-size: 110%;
    margin-bottom: 8px;
  }
  .bvh__feature-item p {
    font-size: 100%;
  }
  .bvh__image-gallery {
    margin-bottom: 40px;
  }
  .bvh__image-item {
    margin: 20px auto;
  }
  .bvh__faq-intro {
    margin-bottom: 20px;
    text-align: left;
  }
  .bvh__faq-intro p {
    font-size: 100%;
  }
  .bvh__faq {
    margin-bottom: 40px;
  }
  .bvh__faq-title {
    font-size: 120%;
    text-align: left;
    margin-bottom: 20px;
  }
  .bvh__faq-list {
    gap: 15px;
  }
  .bvh__faq-question,
  .bvh__faq-answer {
    padding: 15px;
    gap: 12px;
  }
  .bvh__faq-question p,
  .bvh__faq-answer p {
    font-size: 90%;
  }
  .bvh__faq-q,
  .bvh__faq-a {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 14px;
  }
  .bvh__cta {
    padding: 30px 20px;
  }
  .bvh__cta p {
    font-size: 90%;
  }
}/*# sourceMappingURL=best-value-home.css.map */