.bean-caution-wrapper {
  margin: 0 auto;
  max-width: 968px;
  width: 100%;
}

.bean-caution {
  padding-top: 20px;

  & .bean-caution__upper {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #777;
    cursor: pointer;

    @media screen and (max-width: 767px) {
      padding: 24px 12px;
    }
  }

  & .bean-caution__title {
    margin: initial;
    font-size: 16px;
    line-height: 1;

  }

  & .bean-caution__toggle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: initial;
    cursor: pointer;
  }

  & .bean-caution__arrow-down {
    flex-shrink: 0;
    width: 10px;
    height: 7px;
    transition: 0.5s ease-in-out;
  }

  & .bean-caution__arrow-down.rotate {
    transform: rotate(180deg);
  }

  #bean-caution-list {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
  }

  #bean-caution-list.open {
    max-height: 2180px;

    @media screen and (max-width: 767px) {
      max-height: 3460px;
    }
  }

  & .bean-caution__list {
    margin: initial;
    padding: initial;
    font-size: 16px;
    list-style: none;
    

    & li {
      padding: 40px 32px;
      line-height: 1;
      border-bottom: 1px solid #777;

      @media screen and (max-width: 767px) {
        padding: 40px 0;
      }
    }

    & .bean-caution__heading {
      display: flex;
      gap: 8px;
    }

    & .svg-wrapper {
      flex-shrink: 0;
      width: 45px;
      height: 33px;
    }

    & .bean-caution__heading-text {
      span {
        display: block;
      }

      span + span {
        margin-top: 4px;
      }
    }

    & .bean-caution__content {
      margin-top: 16px;

      span {
        display: block;
        line-height: 1.2;

        @media screen and (max-width: 767px) {
          line-height: 1.6;
        }
      }

      span + span {
        margin-top: 8px;
      }
    }
  }
}