@charset "utf-8";
.page_title {
  background: url(../img/page_title.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 400px;
    padding: 1em 20px;
  }
}

.faq_block {
  padding: 64px 0 104px;
  @media screen and (max-width: 767px) {
    padding: 48px 0 64px;
  }
}
.faq_list {
  position: relative;
  background: rgba(185, 241, 255, 0.50);
  /* padding: 32px 48px; */
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  &::after {
    /* content: '';
    position: absolute;
    top: 48px;
    margin: auto;
    right: 48px;
    width: 28px;
    height: 28px;
    border-top: #fff 3px solid;
    border-right: #fff 3px solid;
    transform: rotate(135deg); */
  }
  &:last-child {
    margin-bottom: 0;
  }
  dt, dd {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 20px;
    padding: 32px 48px;
  }
  dd {display: none;padding-top: 0;}
  dt.open {padding-bottom: 0;}
  dt.open + dd {display: flex;}
  dt {
    position: relative;
    width: 100%;
    color: var(--main-color);
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
    padding-right: 104px;
    &::before {
      content: '';
      position: absolute;
      background: #fff;
      width: calc(100% - 96px);
      height: 2px;
      right: 0;
      left: 0;
      bottom: -20px;
      margin: auto;
    }
    &::after {
      content: '';
      position: absolute;
      top: 32%;
      margin: auto;
      right: 48px;
      width: 28px;
      height: 28px;
      border-top: #fff 3px solid;
      border-right: #fff 3px solid;
      transform: rotate(135deg);
    }
    &:hover {opacity: 0.8;cursor: pointer;}
  }
  dt.open::after {
    transform: rotate(-45deg);
    top: 50%;
  }
  span {
    width: 72px;
    min-width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-en);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #fff;
    border-radius: 50%;
  }
  dt span {
    background: var(--main-color);
  }
  dd span {
    background: var(--orange);
  }
  @media screen and (max-width: 767px) {
    margin-bottom: 32px;
    gap: 32px;
    dt, dd {
      gap: 0 12px;
      padding: 32px 5%;
    }
    dt {
      position: relative;
      font-size: 2rem;
      letter-spacing: 1px;
      padding-right: 56px;
      &::before {
        width: 90%;
      }
      &::after {
        top: 40%;
        right: 20px;
      }
    }
    /* dt.open::after {
      transform: rotate(-45deg);
      top: 50%;
    } */
    span {
      width: 48px;
      min-width: 48px;
      height: 48px;
      font-size: 2.4rem;
      letter-spacing: 1.2px;
    }
  }
}