/*====================================*/
/* comment
/*====================================*/
.comment {
  width: 1060px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;

  @media screen and (max-width: 767px) {
    width: calc(100% - 40px);
    margin: 24px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid #FCF9F9;
    flex-flow: column;
    align-items: center;
  }

  .bubble {
    width: 336px;
    padding: 0 24px 0 40px;

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

  .bubble__contents {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    background-color: #CCAF98;
    position: relative;

    &::after {
      content: "";
      display: block;
      width: 20px;
      height: 16px;
      background-image: url(/images/works/bubble.svg);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      bottom: -16px;
    }
  }

  .bubble__label {
    font-size: 14px;
    font-weight: 700;
    color: #634731;
  }

  .bubble__text {
    color: #fff;
    margin-top: 8px;
  }

  .bubble__avatar {
    width: 156px;
    height: auto;
    display: block;
    margin-top: 16px;

    @media screen and (max-width: 767px) {
      margin: 32px auto 0 auto;
    }
  }

  .comment__contents {
    width: calc(100% - 336px);
    padding: 32px;
    border-radius: 16px;
    background-color: #F9F4F2;

    @media screen and (max-width: 767px) {
    width: 100%;
    margin-top: 24px;
    padding: 20px 16px;
    }
  }

  .comment__label {
    padding: 2px 8px;
    color: #fff;
    font-weight: 700;
    line-height: 1em;
    border-radius: 8px;
    background-color: var(--color-secondary);
  }

  .comment__title {
    font-size: 24px;
    color: var(--color-secondary);
    line-height: 1.5em;
    margin-top: 16px;

    @media screen and (max-width: 767px) {
      font-size: 20px;
    }
  }

  .comment__text {
    margin-top: 16px;
  }
}

/*====================================*/
/* under-visual__inner
/*====================================*/

.under-visual__inner {
  margin: 0 auto 0 auto !important;
  padding-bottom: 96px !important;

  @media screen and (max-width: 767px) {
    margin: 0 auto 0 auto !important;
    padding-bottom: 64px !important;
  }
}

/*====================================*/
/* works
/*====================================*/
.works {
  width: 1060px;
  margin: 96px auto 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 40px);
    margin: 64px auto 0 auto;
  }

  .c-image-card {
    margin-top: 64px;

    @media screen and (max-width: 767px) {
      margin-top: 20px;
    }
  }
}

/*====================================*/
/* footer
/*====================================*/
.footer {
  margin-top: 130px;

  @media screen and (max-width: 767px) {
    margin-top: 56px;
  }
}
