/*===========================================================================
unique
単一ページで使用するCSS
接頭辞【.u-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/
.l-main {
  background: #fff;
}



/* アコーディオン */
.u-acc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16rem;
  margin-top: 24rem;
}
.u-acc__item {
  overflow: hidden;
  border-radius: 4rem;
  border-radius: 8rem;
  border: 1px solid #E2E9EE;
}
.u-acc__btn {
  position: relative;
  padding: 32rem 100rem 32rem;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.u-acc__btn::before {
  content: "Q.";
  font-family: var(--font-family-poppins);
  color: var(--back-color-sub);
  font-size: 24rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  position: absolute;
  top: 26rem;
  left: 56rem;
}
.u-openClose {
  width: 40rem;
  height: 40rem;
  margin-top: -20rem;
  border-radius: 100%;
  background: #EAF2FB;
  position: absolute;
  top: 50%;
  right: 36rem;
}
.u-openClose span {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.u-openClose span::before,
.u-openClose span::after {
  content: " ";
  display: block;
  width: 16rem;
  height: 1px;
  background: #333;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.u-openClose span::before {
  transform: translate(-50%,-50%) rotate(90deg);
}
.u-acc__item.is-open .u-openClose span::before {
  transform: translate(-50%,-50%) rotate(0);
}
.u-acc__box {
  display: none;
  height: 0;
  min-height: 0;
}
.u-acc__boxInr {
  position: relative;
  padding: 0 56rem 32rem 96rem;
}
.u-acc__boxInr::before {
  content: "A.";
  font-family: var(--font-family-poppins);
  color: #8A96A3;
  font-size: 24rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  position: absolute;
  top: 0;
  left: 56rem;
}
.u-acc__boxInr > *:first-child {
  margin-top: 0;
}
.u-answer {
  font-size: 15rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.u-answerList {
  margin-top: 4rem;
}
.u-answerList li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 15rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.u-answerList li::before {
  content: "・";
  font-size: 15rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.u-answerList li + li {
  margin-top: 8rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-acc {
    gap: 16rem;
    margin-top: 16rem;
  }
  .u-acc__btn {
    padding: 20rem 60rem 20rem 52rem;
  }
  .u-acc__btn::before {
    top: 15rem;
    left: 20rem;
  }
  .u-openClose {
    width: 24rem;
    height: 24rem;
    margin-top: -12rem;
    right: 20rem;
  }
  .u-acc__btn span::before,
  .u-acc__btn span::after {
    width: 10rem;
    right: 24rem;
  }
  .u-acc__boxInr {
    padding: 0 20rem 20rem 52rem;
  }
  .u-acc__boxInr::before {
    left: 20rem;
  }
  .u-answer {
    line-height: 1.5;
  }
  .u-answerList {
    margin-top: 8rem;
  }
  .u-answerList li {
    font-size: 15rem;
  }
  .u-answerList li + li {
    margin-top: 4rem;
  }
}