@charset "UTF-8";
section {
  width: 100%;
  padding: 60px 0 80px 0px;
}
.innerWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  section {
    padding: 100px 0 150px 0;
  }
  .innerWrap {
    max-width: 980px;
    margin: 0 auto;
  }
}
/* ----------------------------------------------
ヘッダー・ページメインタイトル
----------------------------------------------*/
.mainTitle {
  position: relative;
  width: 100%;
  height: 160px;
  background: url(../img/faq-top-sp.webp) no-repeat center center;
  background-size: cover;
}
.mainTitle::after {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, rgba(96, 74, 0, 0.60) 0%, rgba(96, 74, 0, 0.00) 100%);
  width: 240px;
  height: 160px;
  top: 0;
  right: 0;
  z-index: 1;
}
.mainTitle h1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  color: #FFF;
  top: 20px;
  right: 15px;
  z-index: 2;
}
.mainTitle h1 .titleEn {
  font-size: 1.6rem;
  font-weight: 400;
}
.mainTitle h1 .titleJa {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
	text-align: right;
}
@media print, screen and (min-width: 768px) {
  header {
    background: rgba(255, 255, 255, 0.80);
  }
  .mainTitle {
    height: 450px;
    background: url(../img/faq-top-pc.webp) no-repeat center center;
    background-size: cover;
    margin-top: -120px;
  }
  .mainTitle::after {
    width: 730px;
    height: 450px;
  }
  .mainTitle h1 {
    gap: 30px;
    top: 177px;
    right: 50px;
  }
  .mainTitle h1 .titleEn {
    font-size: 2.4rem;
  }
  .mainTitle h1 .titleJa {
    font-size: 6.0rem;
  }
}

/* ----------------------------------------------
しろありQ＆A
----------------------------------------------*/
/* リード文 */
.leadTxt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 180%;
  color: var(--textBase);
  padding: 0 15px;
  margin-bottom: 60px;
}
.leadTxt a {
  color: var(--textBase);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: from-font;
}
.qA {
  width: 100%;
}
.qA ul {
  padding: 0 10px;
  display: grid;
  margin-top: 25px;
}
.qA li {
  border-top: 1px dashed var(--Green);
  background-image: url(../img/allow-khaki.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}
.qA li:last-of-type {
  border-bottom: 1px dashed var(--Green);
}
.qA a {
  display: flex;
  align-items: flex-start;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 140%;
  color: var(--textBase);
  padding: 20px 38px 20px 10px;
  gap: 10px;
}
.qaUl span.num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 700;
  color: #FFF;
  background-color: #9ACD2D;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  padding: 6px 10px 9px 10px;
  margin: 20px 0 0 13px;
}
.qaUl span.num::before {
  position: absolute;
  content: "";
  background-image: url(../img/q-icon.svg);
  background-repeat: no-repeat;
  background-size: 26px 26px;
  width: 26px;
  height: 26px;
  top: -16px;
  left: -13px;
}
@media print, screen and (min-width: 768px) {
  .leadTxt {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 70px;
  }
  .leadTxt a:hover {
    text-decoration: none;
    color: #666;
    transition: 0.2s;
  }
  .qA ul {
    margin-top: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0;
  }
  .qA li {
    background-position: calc(100% - 20px) center;
    border: 1px dashed var(--Green);
  }
  .qA a {
    font-size: 1.9rem;
    line-height: 150%;
    padding: 25px 48px 25px 20px;
    gap: 15px;
  }
  .qaUl span.num {
    font-size: 2.2rem;
    line-height: 100%;
    width: 34px;
    height: 34px;
    padding: 6px 12px 10px 12px;
    margin: 22px 0 0 13px;
  }
  .qaUl span.num::before {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    top: -22px;
    left: -13px;
  }
  .qA li:hover {
    background-color: #f7ffe4;
    transition: 0.15s;
    background-image: url(../img/allow-green.svg);
  }
}