@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.ttl-page {
  display: block;
  aspect-ratio: 72/21;
  position: relative;
  margin: 0 auto -24rem auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ttl-page {
    aspect-ratio: 2/1;
    margin: 0 auto -7rem auto;
  }
}
.ttl-page__img {
  background-image: url(../img/ttl-faq.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .ttl-page__img {
    background-image: url(../img/ttl-faq-sp.svg);
  }
}
.ttl-page__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -115%);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ttl-page__txt {
    font-size: 3.2rem;
    width: 100%;
    transform: translate(-50%, -65%);
  }
}

.anchor-menu {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .anchor-menu {
    margin-top: 3rem;
  }
}
.anchor-menu__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .anchor-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.anchor-menu__list--item a {
  display: block;
  text-align: center;
  background-color: #26A647;
  color: #fff;
  font-weight: 500;
  padding: 1.5rem 1rem 7rem 1rem;
  border-radius: 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .anchor-menu__list--item a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.anchor-menu__list--item a::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.anchor-menu__list--item a:hover {
  background-color: #80C644;
}
.anchor-menu__list--item:nth-child(1) a::after {
  mask-image: url("../img/icon-faq-1.svg");
  -webkit-mask-image: url("../img/icon-faq-1.svg");
  /* Safari対応 */
}
.anchor-menu__list--item:nth-child(2) a::after {
  mask-image: url("../img/icon-faq-2.svg");
  -webkit-mask-image: url("../img/icon-faq-2.svg");
  /* Safari対応 */
}
.anchor-menu__list--item:nth-child(3) a::after {
  mask-image: url("../img/icon-faq-3.svg");
  -webkit-mask-image: url("../img/icon-faq-3.svg");
  /* Safari対応 */
}
.anchor-menu__list--item:nth-child(4) a::after {
  mask-image: url("../img/icon-faq-4.svg");
  -webkit-mask-image: url("../img/icon-faq-4.svg");
  /* Safari対応 */
}

/*
 * すべてのsectionを囲む親要素でカウンターを一度だけリセットします。
 * bodyタグや、FAQ全体を囲む特定のコンテナなどを指定してください。
 */
body {
  counter-reset: faq-counter;
}

.faqitem {
  list-style-type: none;
  margin-bottom: 1rem;
  background-color: #fff;
  padding: 2rem 2rem 1rem 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border: 1px solid #CCC;
}
@media screen and (max-width: 768px) {
  .faqitem {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
}
.faqitem--q {
  cursor: pointer;
  position: relative;
  padding: 1rem 4rem 1rem 5.5rem;
  transition: all 0.4s ease;
  font-weight: 500;
  counter-increment: faq-counter;
}
@media screen and (max-width: 768px) {
  .faqitem--q {
    padding: 1rem 3rem 1rem 5rem;
  }
}
.faqitem--q::before {
  content: "Q" counter(faq-counter);
  /* 連番を表示 */
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid #26A647;
  background-color: #26A647;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faqitem--q::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  transform: rotate(45deg);
  width: 1.4rem;
  height: 1.4rem;
  border-bottom: 2px solid #26A647;
  border-right: 2px solid #26A647;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .faqitem--q::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.faqitem--a {
  border-top: 1px solid #CCC;
  margin: 1rem 0 0 0;
  padding: 0 0 0 5.5rem;
  height: 0;
  overflow: hidden;
  opacity: 0;
  position: relative;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .faqitem--a {
    padding: 0 0 0 5rem;
  }
}
.faqitem--a::before {
  content: "A" counter(faq-counter);
  /* 連番を表示 */
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid #26A647;
  background-color: #fff;
  color: #26A647;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faqitem.open .faqitem--q::after {
  transform: translateY(0.5rem) rotate(-135deg);
}
.faqitem.open .faqitem--a {
  opacity: 1;
}

.jiko {
  border: 1px solid #CCC;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  gap: 3rem;
}
.jiko * {
  margin: 0;
  padding: 0;
}
.jiko .txt {
  border-right: 1px solid #CCC;
  padding-right: 3rem;
}
.jiko .txt-ttl {
  color: #26A647;
  font-size: 2.3rem;
  font-weight: 500;
}
.jiko .tel {
  white-space: nowrap;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
}
.jiko .tel .tel-ttl {
  background-color: #F9F9F9;
  padding: 0.5rem;
}
.jiko .tel .tel-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
}
.jiko .tel .tel-time {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .jiko {
    flex-direction: column;
    gap: 2rem;
  }
  .jiko .txt {
    border-right: none;
    padding-right: 0;
  }
  .jiko .tel {
    width: 100%;
  }
}

.claim-breakdown {
  list-style-type: none;
  padding: 0;
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .claim-breakdown {
    gap: 2.5rem;
  }
}
.claim-breakdown-item {
  position: relative;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
}
.claim-breakdown-item:after {
  position: absolute;
  content: url(../img/top-breakdown-arrow.svg);
  width: 3.5rem;
  height: 3.5rem;
  right: -3rem;
  top: 50%;
  transform: rotate(-90deg) translateX(100%);
  z-index: 1;
}
.claim-breakdown-item:last-child:after {
  display: none;
}
.claim-breakdown-item-number {
  position: absolute;
  top: -4rem;
  left: 0rem;
  background-color: #80C644;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  text-align: center;
  align-content: center;
  border-radius: 4rem;
  color: #fff;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-size: 2.7rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .claim-breakdown-item-number {
    top: 0rem;
    left: -2rem;
  }
}
.claim-breakdown-item-number span {
  display: block;
  font-size: 1.2rem;
}
.claim-breakdown-item-name {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 768px) {
  .claim-breakdown {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
  }
  .claim-breakdown-item:after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -3.5rem;
    transform: rotate(0) translateX(-50%);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .claim-breakdown-item:after {
    bottom: -4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .claim-breakdown-item:last-child:after {
    display: none;
  }
}

.claim-breakdown-txt {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}
.claim-breakdown-txt-alert {
  background-color: #FDDD04;
}

.claim-documents {
  margin: 2rem 0;
  padding: 2rem 3rem;
  background-color: #F9F9F9;
  border-radius: 1rem;
}
.claim-documents-ttl {
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #26A647;
}
@media screen and (max-width: 768px) {
  .claim-documents-ttl {
    font-size: 1.6rem;
  }
}
.claim-documents-list {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.claim-documents-list li {
  position: relative;
  padding-left: 2rem;
}
.claim-documents-list li::before {
  content: "●";
  position: absolute;
  font-size: 1.2rem;
  top: 0.5rem;
  left: 0;
  color: #26A647;
}

.accident {
  margin: 3rem auto;
  padding: 2rem 3rem 3.5rem 3rem;
  width: 60%;
  background-color: #F9F9F9;
  border-radius: 1rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accident {
    width: 100%;
    padding: 2rem 4rem 3.5rem 4rem;
  }
}
.accident h4 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 1.5rem 0 1rem 0;
}
.accident p {
  margin-bottom: 1rem;
}
.accident .accident-ttl {
  width: 60%;
  padding: 1rem;
  margin: 1rem auto;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #26A647;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .accident .accident-ttl {
    width: 90%;
  }
}
.accident .phone-number {
  font-weight: 700;
  font-size: 3.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
  position: relative;
}
.accident .phone-number::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: #26A647;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-image: url("../img/icon-tel.svg");
  /* Safari対応 */
  -webkit-mask-image: url("../img/icon-tel.svg");
  transition: all 0.4s 0s ease;
}
.accident .service-accident-cut {
  position: absolute;
  bottom: 1rem;
  left: -6rem;
  width: 8rem;
}
@media screen and (max-width: 768px) {
  .accident .service-accident-cut {
    left: -2.5rem;
    width: 6rem;
  }
}

.qa_title_green {
  display: none;
}

.qa_naiyou_orange {
  display: none;
}/*# sourceMappingURL=faq.css.map */