.front-faq{
  padding: 110px 0 0;
  background: #fff;
}

.front-faq__inner{
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
}

.front-faq__head{
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 42px;
}

.front-faq__heading{
  margin: 0;
  color: #1c2230;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.front-faq__subheading{
  margin: 0;
  color: #b8aea1;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.front-faq__list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.front-faq__item{
  background: #fffefe;
  border: 1px solid rgba(227, 221, 212, 0.3);
}

.front-faq__trigger{
  width: 100%;
  padding: 30px 28px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  text-align: left;
}

.front-faq__qmark,
.front-faq__amark{
  color: #c8a33a;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
  font-style: italic;
}

.front-faq__qmark{
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  margin-top: 4px;
}

.front-faq__amark{
  display: block;
  min-width: 0;
  margin-right: 0;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  color: #e7a79b;
}

.front-faq__question{
  color: #2a241f;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 900;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
}

.front-faq__icon{
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.front-faq__icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid #b8a98b;
  border-right: 1.5px solid #b8a98b;
  transform: translateY(-70%) rotate(135deg);
  transition: transform .25s ease, border-color .25s ease;
}

.front-faq__item:not(.is-open) .front-faq__icon::before{
  transform: translateY(-50%) rotate(45deg);
}

.front-faq__trigger:hover .front-faq__icon::before{
  border-color: #c8a33a;
}

.front-faq__content{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.front-faq__content-inner{
  padding: 0 28px 28px 28px;
}

.front-faq__content-inner p{
  margin: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: start;
  color: #7a746d;
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
}

.front-faq__footer{
  margin-top: 56px;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
}

.front-faq__button,
.front-faq__button:visited,
.front-faq__button:active{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 200px;
  height: 54px;
  padding: 0 34px;
  background: #17120f;
  border: 1px solid #17120f;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.front-faq__button:hover{
  background: #c8a33a;
  border-color: #c8a33a;
  color: #ffffff;
  text-decoration: none;
}

.front-faq__button-text{
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  font-family: inherit;
}

.front-faq__button-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.front-faq__button-icon{
  width: 18px;
  height: 18px;
  display: block;
}

.front-faq__button-icon path{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.front-faq__button:hover .front-faq__button-arrow{
  transform: translateX(6px);
}

@media screen and (max-width: 767px){
  .front-faq{
    padding: 80px 0;
  }

  .front-faq__inner{
    width: calc(100% - 32px);
  }

  .front-faq__head{
    display: block;
    margin-bottom: 30px;
  }

  .front-faq__subheading{
    margin-top: 10px;
  }

  .front-faq__heading{
    font-size: 34px;
  }

  .front-faq__trigger{
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 22px 18px;
  }

  .front-faq__question{
    font-size: 16px;
    line-height: 1.7;
  }

  .front-faq__content-inner{
    padding: 0 18px 22px 18px;
  }

  .front-faq__content-inner p{
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    font-size: 14px;
    line-height: 1.9;
  }

  .front-faq__button{
    width: calc(100% - 32px);
    max-width: 320px;
  }
}