@charset "UTF-8";
/* =========================================
	変数
========================================= */
/* =========================================
	mixin
========================================= */
/* =========================================
  共通
========================================= */
.faqContainer {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  padding-block: 9rem 4rem;
}
@media screen and (max-width: 768px) {
  .faqContainer {
    flex-direction: column;
    gap: 2rem;
    padding-block: 5.3333333333vw 5rem;
  }
}

/* =========================================
  サイドメニュー
========================================= */
.sideArea {
  background-color: #028f4c;
  border-radius: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sideArea {
    width: calc(100% - 9.4rem);
    margin-inline: auto;
  }
}
.sideArea::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../assets/images/search.svg) no-repeat left top;
  width: 1.77rem;
  height: 2.57rem;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sideArea .categoryNav {
  border: 2px solid #028f4c;
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  width: 230px;
}
@media screen and (max-width: 768px) {
  .sideArea .categoryNav {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .sideArea .categoryNav {
    flex-shrink: 0;
  }
}
.sideArea .categoryNav .categoryList {
  display: none;
  padding-inline: 2rem;
}
@media screen and (min-width: 769px) {
  .sideArea .categoryNav .categoryList {
    padding: 1.2rem 2rem 0;
    display: block !important;
  }
}
.sideArea .categoryNav .current {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem 1.2rem 4rem;
  cursor: pointer;
  font-weight: bold;
  color: #028f4c;
  position: relative;
}
.sideArea .categoryNav .current::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #028f4c;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  left: 2rem;
  top: calc(50% - 0.5rem);
}
.sideArea .categoryNav .current::after {
  content: "";
  background: url(../assets/images/arrow02.svg) no-repeat center center/contain;
  width: 1.5rem;
  height: 0.98rem;
  transition: transform 0.3s;
}
.sideArea .categoryNav.open .current::after {
  transform: rotate(180deg);
}
.sideArea .categoryItem {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s;
  border-top: 2px dashed #ccc;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .sideArea .categoryItem {
    border-top: none;
    padding: 1.8rem 0 1.8rem 3.5rem;
    border-bottom: 1px dashed #ccc;
  }
}
@media (hover: hover) {
  .sideArea .categoryItem:hover {
    opacity: 0.8;
  }
}
.sideArea .categoryItem::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #ccc;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  left: 1rem;
  top: calc(50% - 0.5rem);
}
@media screen and (max-width: 768px) {
  .sideArea .categoryItem::before {
    left: 0;
  }
}
.sideArea .categoryItem:last-child {
  border-bottom: none;
}
.sideArea .categoryItem.active {
  color: #028f4c;
}
.sideArea .categoryItem.active::before {
  background-color: #028f4c;
}

/* =========================================
  よくある質問
========================================= */
.mainArea {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .mainArea {
    width: 100%;
  }
}
.mainArea .title01 {
  margin-bottom: 2rem;
}
.mainArea .faqList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .mainArea .faqList {
    margin-bottom: 4rem;
  }
}
.mainArea .faqList .faqItem {
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  overflow: hidden;
}
.mainArea .faqList .faqItem .faqBox {
  background-color: #C6DEAB;
  padding: 1.8rem 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .mainArea .faqList .faqItem .faqBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-right: 9rem;
  }
}
@media screen and (max-width: 768px) {
  .mainArea .faqList .faqItem .faqBox {
    padding: 1rem;
  }
}
@media (hover: hover) {
  .mainArea .faqList .faqItem .faqBox:hover {
    opacity: 0.8;
  }
}
.mainArea .faqList .faqItem .faqBox::before, .mainArea .faqList .faqItem .faqBox::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #028f4c;
  transition: all 0.3s;
  width: 2rem;
  height: 0.3rem;
  top: 50%;
  right: 4rem;
}
@media screen and (max-width: 768px) {
  .mainArea .faqList .faqItem .faqBox::before, .mainArea .faqList .faqItem .faqBox::after {
    width: 1.5rem;
    height: 0.225rem;
    top: 2rem;
    right: 1rem;
  }
}
.mainArea .faqList .faqItem .faqBox::before {
  transform: rotate(90deg);
}
.mainArea .faqList .faqItem .faqBox .question {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: bold;
  color: #028f4c;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .mainArea .faqList .faqItem .faqBox .question {
    padding-right: 2.5rem;
  }
}
.mainArea .faqList .faqItem .faqBox .cat {
  background-color: #028f4c;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.84;
  border-radius: 2.2rem;
  max-width: 13rem;
  width: 100%;
  text-align: center;
  font-weight: 400;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .mainArea .faqList .faqItem .faqBox .cat {
    margin-left: auto;
  }
}
.mainArea .faqList .faqItem.open .faqBox::before {
  transform: rotate(180deg);
}
.mainArea .faqList .faqItem.open .faqBox::after {
  opacity: 0;
}
.mainArea .faqList .faqItem .answerBox {
  background-color: #fff;
  display: none;
  padding: 1.8rem 2rem;
}
@media screen and (max-width: 768px) {
  .mainArea .faqList .faqItem .answerBox {
    padding: 1.5rem;
  }
}
.mainArea .faqList .faqItem .answerContent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mainArea .faqList .faqItem .answer {
  margin: 0;
  padding-top: 4px;
  line-height: 1.6;
}
.mainArea .faqList .faqItem .answer a {
  color: #000;
}
.mainArea .faqList .faqItem .iconCircle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .mainArea .faqList .faqItem .iconCircle {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}
.mainArea .faqList .faqItem .iconCircle.qIcon {
  background-color: #028f4c;
  color: #fff;
}
.mainArea .faqList .faqItem .iconCircle.aIcon {
  background-color: #C6DEAB;
  color: #028f4c;
}
.mainArea .faqList .faqItem .answerLink {
  position: relative;
  display: inline-block;
}
.mainArea .faqList .faqItem .answerLink::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 0.1rem;
  left: 0;
  bottom: -0.2rem;
}

/* =========================================
  お問合せ
========================================= */
.faqContact {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem 3.3rem;
}
@media screen and (max-width: 768px) {
  .faqContact {
    padding: 2rem 2.5rem 2.2rem 2rem;
  }
}
.faqContact p {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
.faqContact p:first-child {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .faqContact p:first-child {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.faqContact .mailBtn {
  margin-bottom: 3rem;
  max-width: 40rem;
  font-size: 1.8rem;
  height: 6rem;
}
@media screen and (max-width: 768px) {
  .faqContact .mailBtn {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.faqContact .telBtn {
  display: block;
  font-size: 4rem;
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #36393E;
  text-align: center;
  position: relative;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .faqContact .telBtn {
    font-size: 3rem;
    background-color: #43a857;
    color: #fff;
    border-radius: 6rem;
    border-bottom: 0.4rem solid #028f4c;
    padding-block: 1rem 0.4rem;
    margin-bottom: 1rem;
  }
}
.faqContact .telBtn::before {
  content: "";
  display: inline-block;
  background: url(../assets/images/phone.svg) no-repeat left top/contain;
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .faqContact .telBtn::before {
    filter: invert(100%);
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1.2rem;
  }
}/*# sourceMappingURL=faq.css.map */