@charset "UTF-8";
/* CSS Document */
.l-faq {
  /* ---------- l-faqArc（アーカイブページ用） ---------- */
  /* ---------- l-faqTax（タクソノミーページ用） ---------- */
  /* ---------- l-faqSin（詳細ページ用） ---------- */
}
.l-faqArc {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
  padding: 8rem 4rem;
  /* ----- カテゴリ別に質問を探す ----- */
}
@media screen and (max-width: 768px) {aa1n1z29
  .l-faqArc {
    padding: 4.8rem 2rem;
  }
}
.l-faqArc > section + section {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .l-faqArc > section + section {
    margin-top: 4.8rem;
  }
}
.l-faqArc-title {
  text-align: center;
  font-family: var(--sub-font);
  font-size: 3.6rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 2rem;
  color: var(--main);
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-faqArc-title {
    font-size: 2.4rem;
  }
}
.l-faqArc-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 7rem;
  height: 0.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--main-dark);
}
.l-faqArc-title span {
  font-size: 2.4rem;
  display: block;
}
.l-faqArc-subtitle {
  background: var(--main-dark);
  color: var(--white);
  font-family: var(--sub-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.6rem;
}
.l-faqArc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.4rem;
}
.l-faqArc-list__item {
  width: calc((100% - 2.4rem) / 2);
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-faqArc-list__item {
    width: 100%;
  }
}
.l-faqArc-list__item > * {
  width: 100%;
}
.l-faqArc-list__item.full {
  width: 100%;
  box-shadow: none;
}
.l-faqArc-list__item.noborder {
  box-shadow: none;
  border-radius: 0;
}
.l-faqArc-list__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: center;
}
.l-faqArc-list__txtbox {
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.6rem 0;
}
.l-faqArc-list__txtbox > * {
  width: 100%;
}
.l-faqArc-question {
  position: relative;
  padding: 0.3rem 0 0 4.8rem;
  min-height: 3.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6666666667;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.l-faqArc-question::before {
  content: "Q";
  width: 3.6rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqArc-answer {
  position: relative;
  padding: 0.6rem 0 0 4.8rem;
  min-height: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.l-faqArc-answer::before {
  content: "A";
  width: 3.6rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqArc-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.l-faqArc-catlabel {
  width: 100%;
  margin-bottom: 2.4rem;
}
.l-faqArc-catlabel h4 {
  border: 1px solid var(--main-dark);
  color: var(--main-dark);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--sub-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.8rem 2.4rem;
  border-radius: 10rem;
}
.l-faqArc-accordion {
  border: 1px solid var(--gray);
  border-radius: 0.8rem;
  transition: all 0.5s;
}
.l-faqArc-accordion:hover {
  border: 1px solid var(--main-dark);
}
.l-faqArc-accordion + .l-faqArc-accordion {
  margin-top: 0.8rem;
}
.l-faqArc-question02 {
  position: relative;
  padding: 2rem 3.2rem 2rem 6.4rem;
  min-height: 3.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7142857143;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .l-faqArc-question02 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.l-faqArc-question02::before {
  content: "Q";
  width: 3.2rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqArc-question02:hover {
  opacity: 0.7;
}
.l-faqArc-answer02 {
  position: relative;
  padding: 0.4rem 1.6rem 1.6rem 6.4rem;
  min-height: 3.2rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.l-faqArc-answer02::before {
  content: "A";
  width: 3.2rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqArc-btn02 {
  width: 100%;
  margin-top: 1.6rem;
  display: flex;
  justify-content: flex-end;
}
.l-faqArc-more {
  margin-top: 2.4rem;
  display: flex;
  justify-content: flex-end;
}
.l-faqTax {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
  padding: 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .l-faqTax {
    padding: 4.8rem 2rem;
  }
}
.l-faqTax-title {
  text-align: center;
  font-family: var(--sub-font);
  font-size: 3.6rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 2rem;
  color: var(--main);
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-faqTax-title {
    font-size: 2.4rem;
  }
}
.l-faqTax-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 7rem;
  height: 0.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--main-dark);
}
.l-faqTax-title span {
  font-size: 2.4rem;
  display: block;
}
.l-faqTax-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.4rem;
}
.l-faqTax-list__item {
  width: calc((100% - 2.4rem) / 2);
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-faqTax-list__item {
    width: 100%;
  }
}
.l-faqTax-list__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: center;
}
.l-faqTax-list__txtbox {
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.6rem 0;
}
.l-faqTax-list__txtbox > * {
  width: 100%;
}
.l-faqTax-question {
  position: relative;
  padding: 0.3rem 0 0 4.8rem;
  min-height: 3.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6666666667;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.l-faqTax-question::before {
  content: "Q";
  width: 3.6rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqTax-answer {
  position: relative;
  padding: 0.6rem 0 0 4.8rem;
  min-height: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.l-faqTax-answer::before {
  content: "A";
  width: 3.6rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqTax-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.l-faqSin {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
.l-faqSin.section01 {
  padding: 8rem 4rem 0 4rem;
}
@media screen and (max-width: 768px) {
  .l-faqSin.section01 {
    padding: 4.8rem 2rem 0 2rem;
  }
}
.l-faqSin.section02 {
  padding: 0 4rem 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .l-faqSin.section02 {
    padding: 4.8rem 2rem;
  }
}
.l-faqSin-title {
  text-align: center;
  font-family: var(--sub-font);
  font-size: 3.6rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 2rem;
  color: var(--main);
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-faqSin-title {
    font-size: 3rem;
  }
}
.l-faqSin-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 7rem;
  height: 0.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--main-dark);
}
.l-faqSin-titlewrap {
  padding: 2.4rem 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  margin-bottom: 4rem;
}
.l-faqSin-question {
  position: relative;
  padding: 0.6rem 0 0 6.4rem;
  min-height: 4.8rem;
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.l-faqSin-question::before {
  content: "Q";
  width: 4.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqSin-answer {
  position: relative;
  padding: 1.2rem 0 0 6.4rem;
  min-height: 4.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.l-faqSin-answer::before {
  content: "A";
  width: 4.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-faqSin-point {
  background: var(--main-light);
  padding: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.l-faqSin-point__head {
  width: 30%;
  color: var(--main-dark);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.4rem 0 0;
}
.l-faqSin-point__body {
  width: 70%;
  background: var(--white);
  padding: 2.4rem;
}
.l-faqSin-point__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.8rem;
}
.l-faqSin-point__list li {
  width: 100%;
  list-style-type: disc;
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .l-faqSin-point__list li {
    font-size: 1.3rem;
  }
}
.l-faqSin-subtitle {
  background: var(--main-dark);
  color: var(--white);
  font-family: var(--sub-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.6rem;
  margin-bottom: 2.4rem;
}
.l-faqSin-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border-top: 1px solid var(--gray);
}
.l-faqSin-list li {
  width: 100%;
  border-bottom: 1px solid var(--gray);
}
.l-faqSin-list a {
  padding: 1.2rem 4rem 1.2rem 1.6rem;
  display: block;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.l-faqSin-list a:hover {
  opacity: 0.7;
}
.l-faqSin-list a:hover::after {
  background: var(--main-dark);
}
.l-faqSin-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
  background: var(--gray);
  width: 0.8rem;
  height: 0.8rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all 0.5s;
}
.l-faqSin-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-faqSin-blocks {
    gap: 4.8rem;
  }
}
.l-faqSin-blocks__block {
  width: calc((100% - 4.8rem) / 2);
}
@media screen and (max-width: 768px) {
  .l-faqSin-blocks__block {
    width: 100%;
  }
}

/* ---------- アコーディオン ---------- */
.js-faq-toggle {
  cursor: pointer;
  position: relative;
}

.js-faq-toggle::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
}

.js-faq-toggle.is-open::after {
  content: "−";
}

/* ---------- round ---------- */
.l-faq {
  /* ---------- l-faqSin（詳細ページ用） ---------- */
}
.l-faqSin.round .l-faqSin-point {
  border-radius: 1.6rem !important;
}
.l-faqSin.round .l-faqSin-point__body {
  border-radius: 1.6rem !important;
}
.l-faqSin.round .l-faqSin-subtitle {
  border-radius: 0.8rem !important;
}