@charset "utf-8";

/*================================================
  faq
================================================*/
.page-header {
  background-image: url(../../../image/karat-kun/faq/page_header_bg.jpg);
}

/*------------------------------------------------
  faq
------------------------------------------------*/
.faq-list {
  display: grid;
  gap: 40px;
  margin-top: 80px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0.1em 0.1em 20px rgba(129, 129, 129, 0.5);
  max-width: 1100px;
}

.faq-body {
  padding:2em 1.5em 1.5em;
}
.faq-question {
  color: var(--primary-color);
  line-height: 1.7;
  margin-bottom: 1.5em;
  padding-left: 50px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
}

.faq-answer {
  position: relative;
  padding-left: 50px;
}

.faq-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 40px;
  height: 40px;
  max-width: 150px;
  height: auto;
  box-sizing: border-box;
  box-shadow: 0.1em 0.1em 5px rgba(var(--color-black-rgb),0.16);
  z-index: 10;
  left: 0;
  top: -0.5em;
  padding-bottom: 0.25em;
}

.faq-icon.is-q {
  background: linear-gradient(to bottom, #FCBA27 0%, #E39224 100%);
}
.faq-icon.is-a {
  background: linear-gradient(to bottom, #84C059 0%, #38946E 100%);
}

.faq-icon > span {
  color: var(--color-white);
  display: block;
  text-align: center;
  text-shadow: 10px 10px 10px rgba(var(--color-black-rgb),0.16);
  font-size: 2rem;
  line-height: 1;
}
.faq-item-img {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center center;
}

.faq-item:nth-child(1) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_oil.jpg);
}
.faq-item:nth-child(2) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_cost.jpg);
}
.faq-item:nth-child(3) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_fryer.jpg);
}
.faq-item:nth-child(4) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_karatkun.jpg);
}
.faq-item:nth-child(5) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_warranty.jpg);
}
.faq-item:nth-child(6) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_mainte.jpg);
}
.faq-item:nth-child(7) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_reduced_oil.jpg);
}
.faq-item:nth-child(8) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_taste.jpg);
}
.faq-item:nth-child(9) .faq-item-img {
  background-image: url(../../../image/karat-kun/faq/faq_item_img_sdgs.jpg);
}


@media print,screen and (min-width: 769px) {
  .faq-item {
    border-radius: 30px;
    box-shadow: 10px 10px 40px rgba(129, 129, 129, 0.5);
  }
}
@media print,screen and (min-width: 960px) {
  .faq-item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .faq-body {
    width: 70%;
    padding:4em 3em;
  }
  .faq-question {
    font-size: 2.4rem;
    padding-left: 100px;
    margin-bottom: 3em;
  }
  .faq-answer {
    font-size: 1.8rem;
    padding-left: 100px;
  }
  .faq-icon {
    width: 80px;
    height: 80px;
    top: -0.8em;
  }
  .faq-icon > span {
    font-size: 4.6rem;
  }
  .faq-item-img {
    width: 30%;
    height: auto;
  }
}
@media print,screen and (min-width: 1600px) {
  .faq-body {
    width: calc(100% - 400px);
    /* padding:100px 70px; */
    padding: 100px 53px 100px 65px;
  }
  .faq-item-img {
    width: 400px;
  }
  .faq-icon {
    box-shadow: 10px 10px 5px rgba(var(--color-black-rgb),0.16);
  }
}

.sub-list {
  margin: 0.5em 0;
}
.sub-list > li {
  font-weight: 700;
}
.sub-list > li::before {
  content: "・";
  display: inline-block;
  color: var(--secondary-color);
  text-indent: -1em;
  margin-left: 1em;
  font-weight: 900;
}
