@charset "UTF-8";

/* nav現在地 */
header .list_qa {
  border-bottom: 3px solid #ED7A00;
}

header .list_qa a {
  color: #ED7A00;
}


.main_faq {
  padding: 140px 0;
  background-color: var(--c_base2);
}

.main_faq>.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3%;
  background-image: url("../img/caree01.png");
  background-size: clamp(90px, 7vw, 100px);
  background-repeat: no-repeat;
  background-position:top 0 right 4%;
}

#gourmetcaree,
#flabo,
#employment_agent {
  margin-bottom: 90px;
}


.page_tit .tit_small {
  color: var(--c_key2);
  font-weight: 500;
  font-size: clamp(16px, 1vw, 20px);
}

.page_tit {
  font-weight: 500;
  font-size: clamp(38px, 4vw, 50px);
  margin-bottom: 30px;
}

.toc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.toc_item {
  margin-right: 2%;
  font-size: 18px;
}

.toc_item a {
  position: relative;
  padding-left: 22px;
  display: block;
  width: 100%;
  color: #4b4b4b;
  font-weight: 500;
  text-decoration: none;
}

.toc_item a::before {
  content: url(/common/img/bottom_arr.svg);
  width: 16px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.q_tit {
  font-size: clamp(26px, 2vw, 31px);
  font-weight: 500;
  margin-bottom: 20px;
  background-color: var(--c_key2);
  color: #fff;
  padding: 16px 3%;
  border-radius: 8px;
}

.qa_item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 3%;
  font-weight: 500;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq_open {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 52px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.2;
}

.faq_open::before,
.faq_tgl::before {
  position: absolute;
  left: 0;
  font-size: 24px;
  padding: 6px 8px;
  border-radius: 4px;
  font-weight: 500;
  line-height: 1;
}

.faq_open::before {
  content: "Q";
  background-color: #ffefdf;
  color: var(--c_key2);
}

.faq_tgl::before {
  content: "A";
  background-color: #dfe4ff;
  color: var(--c_key1);
}

.faq_tgl {
  display: none;
  padding: 30px 4% 10px 52px;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 16px);
  position: relative;
  line-height: 1.3;
}


.faq_open .icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: var(--c_key2);
  border-radius: 50%;
  vertical-align: middle;
  flex: none;
}

.faq_open .icon::before,
.faq_open .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.faq_open .icon::after {
  transform: translate(-50%, -50%);
}

.faq_open .icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
}

.faq_open.open .icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.small {
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 500;
  color: var(--c_base1);
}

@media screen and (max-width:768px) {
  .page_tit {
    font-size: clamp(26px, 6vw, 30px);
    margin-bottom: 20px;
  }

  .main_faq {
    padding: 90px 0;
  }

  .main_faq>.inner {
    background-size: clamp(70px, 13vw, 90px);
  }

  #gourmetcaree,
  #flabo,
  #employment_agent {
    margin-bottom: 40px;
  }

  .toc {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .toc_item {
    margin: 0 4% 10px 0;
  }

  .toc_item a {
    font-size: clamp(14px, 3.4vw, 17px);
  }

  .qa_item {
    padding: 20px 3%;
        margin-bottom: 14px;
  }

  .q_tit {
    font-size: clamp(19px, 4vw, 26px);
    border-radius: 4px;
    padding: 12px 3%;
  }

  .faq_open {
    font-size: clamp(14px, 3.6vw, 16px);
    padding-left: 42px;

  }

  .faq_open .icon {
    width: 20px;
    height: 20px;
  }

  .faq_open .icon::before,
  .faq_open .icon::after {
    width: 10px;
    height: 2px;
  }

  .faq_open::before,
  .faq_tgl::before {
    font-size: 20px;
  }

  .faq_tgl {
    font-size: clamp(13px, 3.6vw, 16px);
    padding: 30px 4% 10px 42px;
  }

}