@charset "utf-8";

/* article header */

.article__header--mv {
    background-image: url(../images/faq-top.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 375/392;
    display: flex;
    align-items: flex-end;
    padding: 0 0 100px 30px;
}

.article__header--title {
    font-size: 3rem;
    line-height: 1.2;
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    color: var(--primary-white);
}

.article__header--title::after {
    content:"";
    display:block;
    width: 100px;
    height: 1px;
    background: var(--primary-white);
    margin-top: 10px;
}

/* ここから内容 */

.faq {
  padding: 40px var(--contentPadding);
}

.faq__title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--primary-black);
}

.faq__group {
  font-size: 1.6rem;
  margin: 28px 0 14px;
  color: var(--primary-black);
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__q {
  list-style: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q {
  background: rgba(var(--primary-greenL));
  color: var(--primary-white);
  padding: 14px 44px 14px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.4;
  position: relative;
}

.faq__q::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--primary-white);
}

.faq__item[open] > .faq__q::after {
  content: "×";
}

/* A */
.faq__a {
  background: var(--primary-lightBlue);
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--primary-black);
}

.faq__item {
  border: none;
}

.faq__lead {
  text-align: center;
  margin: 28px 0 16px;
  font-size: 1.3rem;
  color: var(--primary-black);
}

/* FAQ pc 始 */
@media screen and (min-width:769px){
.article__header--mv {
    aspect-ratio: auto;
    height: clamp(320px, 55vh, 550px);
    padding: 0 0 120px 100px;
    background-position: center 35%;
}
.faq {
    max-width: 900px;
    margin: 0 auto;
}
.faq__title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--primary-black);
}

.article__header--title {
    font-size: 6rem;
}

.article__header--title::after {
    content:"";
    display:block;
    width: 100px;
    height: 1px;
    background: var(--primary-white);
    margin-top: 15px;
}
}
/* faq pc 終 */