/* FAQ page */
.faq-section {
  padding: 60px 0 80px;
  background: #FCFCFC;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-category {

  padding: 24px 0 32px;
}

.faq-category__title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 12px 0;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 0px 32px ;
  border-radius: 8px;
  background: #ffffff;
}

.faq-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item__header {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
}

.faq-item__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #14722a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item__question {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  color: #1c1c1c;
  text-align: left;
}

.faq-item__toggle-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq-item__toggle-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%232681c4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-item.is-open .faq-item__toggle-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14' stroke='%232681c4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-item__answer-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.faq-item__answer {
  padding: 24px 0 16px 0;
  display: flex;
  gap: 12px;
}

.faq-item__answer-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2681c4;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item__answer-text {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
.faq-item__answer-text p{
    margin: 0;
}
.fqa__btn {
  margin-top: 16px;
  width: 100%;
}

.fqa__btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #2681C4;
  color: #2681c4;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  justify-content: space-between;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: 50%;
  min-width: 50%;
  box-sizing: border-box;
}

.fqa__btn:last-of-type {
  align-self: center;
}

.fqa__btn-link:hover {
  background: #f5f9fc;
  border-color: #2681c4;
}

.fqa__btn-arrow {
  color: #2681c4;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.faq-banner {
  position: relative;
  margin: 0;
  padding: 60px 0;
  background: url('../images/banner/hero-banner-bottom.webp') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.faq-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.3) 100%);
}

.faq-banner__content {
  position: relative;
  margin: 0 auto;
  padding: 0 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.faq-banner__title {
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  color: #ffffff;
}

.faq-banner__text {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}

.faq-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  background: #2681C4;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.faq-banner__btn:hover {
  background: #14722A;
}
.location-more-text {
  color: #ffffff ;
}
@media (max-width: 1200px) {
  .faq-banner__content {
      padding: 0 40px;
  }
  .chosse-hero__content-text{
    padding: 30px 100px;
  }
}

@media (max-width: 768px) {
  .faq-banner {
      padding: 40px 0;
  }
  .faq-banner__title {
      font-size: 26px;
  }
  .faq-banner__text {
      font-size: 14px;
  }
  .faq-banner__content {
      padding: 0 20px;
  }
  .chosse-hero__content-text{
    padding: 30px 16px;
    gap:20px;
  }
  .chosse-hero__title{
    font-size: 40px ;
    margin-top: 20px;
  }
  .chosse-hero{
    grid-template-columns: 1fr !important;
  }
  .faq-item{
    padding: 0px 12px;
  }
  .faq-item__answer-text{
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-banner__title {
      font-size: 22px;
  }
  .faq-banner__btn {
      width: 100%;
  }
}

@media (max-width: 600px) {
  .fqa__btn-link {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0 60px;
  }
  .faq-container {
    padding: 0 16px;
  }
  .faq-item__question {
    font-size: 18px;
  }
}


