/*===============
common
================*/
.inline-block {
  display: inline-block;
}

.box-shadow-rounded-right {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 16px 0 0;
}

.marginTop-auto {
  margin-top: auto;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  @media screen and (max-width:768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 60px 30px;
  box-sizing: border-box;
  row-gap: 30px;
  align-items: center;

  ul {
    margin-bottom: 0;
  }

  p,
  h3 {
    padding: 0;
    margin-bottom: 0;
  }

  img {
    width: 100%;
  }

  @media screen and (max-width:767px) {
    padding: 50px;
    flex-direction: column;
    align-items: center;
  }
}

/*===============
kv
================*/
.page_main_sp {
  background: #1b242e url(/aws/amazon-quick/img/title-bg.png) no-repeat 50% 50%/auto 100%;
}

.page_main_sp .title-highlight {
  margin-top: 6px;
  font-size: 2.4rem;
}

.page_main_sp .sub-title {
  margin-bottom: 2rem;
}

@media screen and (max-width:767px) {
  .page_main_sp .title-highlight {
    font-size: 2rem;
  }
  .page_main_sp02{
    width: 100%;
    .page_catch_sp{
      transform:translateX(-50%);
      top: 67px;
      .ttl-h1{
        margin-top: 0;
      }
      .mv-btn a{
        font-size: 1.4rem;
      }
    }
  }
  .kv-badge{
    bottom: 67px;
  }
}

@media (min-width: 768px) {
  .page_main_sp {
    background-position: 100% 50%;
    background-size: cover;
  }
}

.cc-basically {
  background-image: url(/template/img/arrow_v2.png);
}

@media screen and (max-width:767px) {

  .mv-btn a {
    width: 90%;
    margin-inline: auto;
  }
}

/*===============
Amazon Quick
================*/
.about {
  .about_inner {
    margin-top: 50px;
    display: flex;
    gap: 45px;

    .about_text{
      display: flex;
      flex-direction: column;
      gap: 25px;
      max-width: 550px;
    }

    .about-fig {
      width: 100%;
      max-width: 460px;

      img {
        height: auto;
      }
    }

    @media screen and (max-width:768px) {
      flex-direction: column;
      align-items: center;

      .about_text {
        h3 {
          text-align: center;
        }
      }
    }
  }

  .about_bottom {
    margin-top: 50px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    @media screen and (max-width:768px) {
    
      /*=======max-width:768px=======*/
    }
  }

  .btn-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }

  * {
    margin-bottom: 0;
  }
}

/*===============
こんなお悩みありませんか？
================*/

.border-box {
  padding: 50px 60px;
  box-sizing: border-box;
  display: flex;

  p {
    padding: 0 15px;
    margin-bottom: 0;
  }

  img {
    width: 280px;
  }

  @media screen and (max-width:767px) {
    padding: 50px;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }
}

.assessment_list_sp {
  margin: 0 20px 0;
  @media screen and (max-width:768px) {
    flex-direction: column;
    align-items: center;
    h3{
      text-align: center;
    }
    
    .assessment_list_sp_right {
      width: 100%;
    }
  }
}

.assessment_list_sp_icon {
  height: 122px;

  img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

}

/*===============
Amazon Quickとは？
================*/
.accordion-button {
  background-color: #296985 !important;

  &::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
  }

  &:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
  }
}

.accordion-item {
  .accordion-inner {
    padding: 25px;

    .accordion-item {
      border-bottom: 1px #296985 dotted;
      padding: 15px 0;
      display: flex;
      gap: 15px;

      h4 {
        padding-left: 10px;
        width: 380px;
        margin-bottom: 0;
        font-size: 1.3rem;
        flex-shrink: 0;
      }

      ul li {
        font-size: 1.3rem;
      }

      &:first-child {
        border-top: 1px #296985 dotted;
      }

      @media screen and (max-width:768px) {
        h4 {
          width: 260px;
        }
      }
    }
  }
}