.c-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 50px;
  background-color: var(--color-primary-03);
  box-sizing: border-box;
  padding: 20px 30px;
  text-decoration: none;
  cursor: pointer;

  .c-button-icon__text {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 150%;
    color: var(--color-font-03);
    letter-spacing: 0.32px;
  }

  .c-button-icon__icon {
    width: 16px;
  }

  &:not(:disabled):hover {
    background-color: #53B8A5;
  }

  &:disabled {
    background-color: var(--color-disabled-01);
    cursor: not-allowed;
  }
}

.c-button-icon.c-button-icon--secondary {
  background-color: var(--color-primary-02);

  .c-button-icon__text {
    color: var(--color-font-01);
  }

  &:not(:disabled):hover {
    background-color: #d3bc3a;
  }
}

/* 気分ボタン
-------------*/
.c-button-feeling {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  position: relative;

  .c-button-feeling__icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all .1s linear;
    box-sizing: border-box;
    position: relative;

    &::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: var(--color-font-03);
      border: 4px solid #FBF3E0;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      box-sizing: border-box;
      transition: all .1s linear;
    }

    .c-button-feeling__image {
      width: 40px;
      position: relative;
      z-index: 2;
    }
  }

  .c-button-feeling__input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;

    &:checked + .c-button-feeling__icon,
    &:hover + .c-button-feeling__icon {
      &::before {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        border: 4px solid var(--color-bg-03);
        transform: translate(-5px, -5px);
      }
    }
  }

  .c-button-feeling__label {
    color: var(--color-font-04);
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0.7px;
    font-weight: 700;
  }
}

@media screen and (max-width: 768px) {
  .c-button-icon {
    gap: 16px;
  
    .c-button-icon__text {
      line-height: 100%;
    }
  
    .c-button-icon__icon {
    }
    }
}