@charset "utf-8";
/* CSS Document */
.green-faq-box {
  position: relative;
  padding-top: clamp(140px, calc(233 * (100vw / 1920)), 233px);
  padding-bottom: 65px;
  text-align: center;
  background-image: url(../img/faq/green-mountain-image.webp);
  background-repeat: no-repeat;
  background-position: top center;
  /* background-size: 1600px auto; */
  background-size: cover;
  margin: 0;
}
.faq-section {
  padding: 50px 0;
  max-width: 1000px;
  width: 96%;
  margin: auto;
}
.bg-green {
  background-color: #e1efd8;
}
.faq-wrap {
  max-width: 960px;
  margin: 48px auto;
  padding: 0 20px
}
.faq-title {
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 40px
}
.faq-cat {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 16px;
  text-align: center;
}
.faq-item {
  border-top: 1px solid #ccc
}
.faq-item:last-child { /*border-bottom:1px solid #ccc*/
}
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  cursor: pointer;
  font-size: clamp(16px, 2vw, 18px)
}
.faq-q:focus {
  outline: 2px solid #88c; /*outline-offset:2px*/
}
.faq-icon {
  width: 1.2em;
  text-align: center;
  transition: transform .2s
}
.faq-icon::before {
  content: '＋';
  display: inline-block
}
.faq-q[aria-expanded="true"] .faq-icon::before {
  content: '－'
}
.faq-a[hidden] {
  display: none
}
.faq-a-inner {
  line-height: 1.8;
}
.faq-a-inner p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  margin: 0;
}
/* 追加 or 置換 */
.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .25s ease, opacity .25s ease;
  will-change: max-height, opacity;
  padding: 0 12px 16px; /* 既存に合わせて */
  background-color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
}
.faq-item.is-open .faq-a {
  opacity: 1;
  margin-top: 6px;
  margin-bottom: 24px;
  padding: 16px 12px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-a {
    transition: none;
  }
}
.faq-icon::before {
  content: '＋'
}
.faq-q[aria-expanded="true"] .faq-icon::before {
  content: '－'
}
.page-header {
  margin-bottom: 0 !important;
}