@charset "UTF-8";

.c-section__head {
  margin-bottom: var(--space-s);
}

.c-section__title {
  font-size: 1.4rem;
}

.c-section__label {
  line-height: 1.4;

  font-size: 2rem;
  font-weight: 700;
}

.c-section__lead {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: var(--space-s);
}

.c-section__text:not(:last-of-type) {
  margin-bottom: var(--space-s);
}

.c-btn__group--right {
  text-align: right;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-text-main);
}

.c-btn::after {
  display: inline-block;
  content: '';
  width: 12px;
  height: 12px;
  background: url('/assets/img/icon/arrow-right.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  margin-left: 5px;
}

.c-btn--white::after {
  background: url('/assets/img/icon/arrow-right--w.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}


.c-btn--white {
  border-bottom: 1px solid #fff;
  color: #fff;
}

.c-btn--white-s {
  font-size: 1.4rem;
}

.c-btn--extarnal::after {
  background: url('/assets/img/icon/extarnal-link.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-btn--extarnal-white::after {
  background: url('/assets/img/icon/extarnal-link--w.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}


@media screen and (max-width: 480px) {
  .c-section__lead {
    font-size: 2.6rem;
  }

  .c-section__text {
    font-size: 1.4rem;
  }
}