@charset "utf-8";

.p-cta {
  padding-bottom: 100px;
}

.p-cta__list {
  border-top: 1px solid var(--color-base);
  border-bottom: 1px solid var(--color-base);
  padding: 60px 0;
  display: flex;
  justify-content: center;

  @media (width < 768px) {
    padding: 0;
    flex-direction: column;
    align-items: center;
  }
}

.p-cta-item {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;

  @media (width < 768px) {
    width: 100%;
    max-width: 400px;
    gap: 30px;
  }

  .c-heading {
    border: 0;
  }
}

.p-cta-item:not(:first-of-type) {
  border-left: 1px solid var(--color-base);

  @media (width < 768px) {
    border-left: none;
    border-top: 1px solid var(--color-base);
  }
}

.p-cta-item:nth-of-type(1) {
  padding-right: clamp(10px, calc(40vw / 13.66), 40px);

  @media (width < 768px) {
    padding-left: 0;
  }
}

.p-cta-item:nth-of-type(2) {
  padding: 0 clamp(10px, calc(40vw / 13.66), 40px);

  @media (width < 768px) {
    padding: 0;
  }
}

.p-cta-item:nth-of-type(3) {
  padding-left: clamp(10px, calc(40vw / 13.66), 40px);

  @media (width < 768px) {
    padding: 0;
  }
}

.p-cta-item__text {
  padding-top: 20px;
}

.p-cta-item__desc {
  margin-top: 45px;
}

.p-cta-item__link {
  margin-bottom: 32px;
}

.p-footer {
  background: var(--color-base);
  color: var(--color-white);
  padding: 86px 0 24px;

  .l-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    @media (width < 768px) {
      flex-direction: column;
      gap: 60px;
    }
  }
}

.p-footer__info {
  width: fit-content;
}

.p-footer__logo {
  background: var(--color-white);
  width: 311px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (width < 768px) {
    width: 250px;
  }

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

.p-footer__text {
  margin-top: 35px;
  font-weight: 500;
  line-height: calc(26 / 14);
}

.p-footer__sns {
  margin-top: 62px;
  display: flex;
  gap: 10px;
}

.p-footer__sns-link {
  background: var(--color-white);
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

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

.p-footer__sns-link:hover {
  opacity: 0.7;
}

.p-footer__nav {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 42px;

  @media (width < 768px) {
    margin-top: 0;
    flex-direction: column;
  }
}

.p-footer__nav-link {
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02em;
}

.p-footer__nav-link a:hover {
  opacity: 0.7;
}

.p-footer__copyright {
  margin: 200px auto 0;
  text-align: center;
  font-weight: 400;
  font-size: 11px;
  line-height: calc(21 / 11);

  @media (width < 768px) {
    margin: 150px auto 0;
  }
}
