@charset "UTF-8";

/*------------------------------------------------------------------------
.kv
------------------------------------------------------------------------*/
.kv {
  background-color: #DBDBDB;
}

.kv__inner {
  position: relative;
  width: var(--site-width);
  margin: 0 auto;
  @media screen and (max-width: 736px) {
    width: 100%;
  }
}

.kv__title {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  left: 0;
  display: flex;
  padding-top: 150px;
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  @media screen and (max-width: 736px) {
    padding: 130px 24px 0;
    font-size: clamp(4.5rem, var(--vw, 1vw) * 80/768 * 100, 8rem);
  }
}

.kv__img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: center bottom;
}



/*------------------------------------------------------------------------
.main
------------------------------------------------------------------------*/
.main {
  padding-top: 120px;
  background-color: #DBDBDB;
  @media screen and (max-width: 736px) {
    padding: min(var(--vw, 1vw) * 80/768 * 100, 80px) 24px 0;
  }
}



/*------------------------------------------------------------------------
.qa
------------------------------------------------------------------------*/
.qa {
}

.qa__inner {
  width: var(--site-width);
  margin: 0 auto;
  padding-top: 56px;
  @media screen and (max-width: 736px) {
    width: 100%;
  }
}

.qa__block {
  padding-bottom: 56px;
  border-bottom: 1px solid #909090;
}

.qa__q {
  min-height: 40px;
  margin-bottom: 24px;
  background-image: url(/static/img/faq/icon_q.svg);
  background-repeat: no-repeat;
  @media screen and (max-width: 736px) {
    background-size: min(var(--vw, 1vw) * 44/768 * 100, 44px);
    background-position: left 4px;
  }
}

.qa__a {
  background-image: url(/static/img/faq/icon_a.svg);
  background-repeat: no-repeat;
  background-position: 7px 6px;
  @media screen and (max-width: 736px) {
    background-size: clamp(18px, var(--vw, 1vw) * 22/768 * 100, 22px);
    background-position: left 0;
  }
}

.qa__q-txt {
  margin-left: 64px;
  color: var(--purple);
  font-size: 2rem;
  font-weight: bold;
  @media screen and (max-width: 736px) {
    margin-left: min(var(--vw, 1vw) * 64/768 * 100, 64px);
    font-size: clamp(1.6rem, var(--vw, 1vw) * 20/768 * 100, 2rem);
  }
}

.qa__a-txt {
  margin-left: 64px;
  margin-bottom: 32px;
  @media screen and (max-width: 736px) {
    margin-left: min(var(--vw, 1vw) * 64/768 * 100, 64px);
  }
  &:last-child {
    margin-bottom: 0;
  }
  a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

  .qa-box {
    margin-left: 64px;
    @media screen and (max-width: 736px) {
      margin-left: min(var(--vw, 1vw) * 64/768 * 100, 64px);
    }
  }

  .qa-box__block {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 24px 32px;
    @media screen and (max-width: 736px) {
      gap: 24px;
      padding: 24px;
    }
    &:nth-of-type(1) {
      background-color: rgba(73,14,75,.1);
    }
    &:nth-of-type(2) {
      background-color: rgba(73,14,75,.15);
    }
    &:nth-of-type(3) {
      background-color: rgba(73,14,75,.3);
    }
    &:nth-of-type(4) {
      background-color: rgba(73,14,75,.5);
    }
    &:nth-of-type(5) {
      background-color: rgba(73,14,75,1);
      .qa-box__left,
      .qa-box__right {
        color: #fff;
      }
    }
    &:last-child {
      margin-bottom: 0;
    }
  }

  .qa-box__left {
    flex: 0 0 113px;
    font-weight: bold;
    font-size: 2rem;
    @media screen and (max-width: 736px) {
      flex: 0 0 40px;
      font-size: clamp(1.6rem, var(--vw, 1vw) * 20/768 * 100, 2rem);
      text-align: left;
    }
  }

  .qa-box__right {}


  .qa-environment {
    display: flex;
    justify-content: space-between;
    margin-left: 64px;
    padding: 0;
    @media screen and (max-width: 736px) {
      display: block;
      margin-left: min(var(--vw, 1vw) * 64/768 * 100, 64px);
    }
  }

  .qa-environment__block {
    position: relative;
    display: block;
    @media screen and (max-width: 736px) {
      margin-bottom: 32px;
    }
    &:last-child {
      @media screen and (max-width: 736px) {
        margin-bottom: 0;
      }
    }
    &::after {
      position: absolute;
      bottom:  21px;
      right: 17px;
      content: "";
      display: block;
      width: 15px;
      height: 16px;
      background-image: url(/static/img/icon/icon_arrow1.svg);
      @media screen and (max-width: 736px) {
        bottom: 15px;
      }
    }
  }

  .qa-environment__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 16px;
    font-size: 1.8rem;
    line-height: 1.2;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    @media screen and (max-width: 736px) {
      height: 46px;
      font-size: clamp(1.4rem, var(--vw, 1vw) * 18/768 * 100, 1.8rem);
    }
  }

  .qa-environment__img {
    @media screen and (max-width: 736px) {
      width: 100%;
    }
  }



/*------------------------------------------------------------------------
.qa1
------------------------------------------------------------------------*/
.qa1 {
  .qa__inner {
    border-top: 1px solid #909090;
  }
}





