/* メインビジュアル */

.mv {
  background: linear-gradient(to right, #f5cfd4, #a5b4fc);
  padding: 200px 0 40px;
}

.mv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.mv__title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}

/* セクションタイトル */

.section__title p {
  color: #e53838;
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.064em;
  font-weight: 700;
}

.section__title h2 {
  font-family: "Zen Kaku Gothic New";
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}

/* ボタン */

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 16px 40px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: 0.2s;
  margin: 0 auto;
  position: relative;
}

.c-btn::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-left: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;
}

.c-btn--center {
  text-align: center;
}

/* 黒ソリッド */

.c-btn--solid-dark {
  background: #111;
  color: #fff;
  border: 2px solid #111;
}

.c-btn--solid-dark::after {
  background-color: #fff;
  background-image: url("../img/arrow-black.svg");
}

.c-btn--solid-dark:hover {
  background: #fff;
  color: #111;
}

.c-btn--solid-dark:hover::after {
  background-color: #111;
  background-image: url("../img/arrow-white.svg");
}

/* 白×青アウトライン */

.c-btn--outline-blue {
  background: #fff;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}

.c-btn--outline-blue::after {
  background-color: #fff;
  border: 2px solid #1e3a8a;
  background-image: url("../img/arrow-blue.svg");
}

.c-btn--outline-blue:hover {
  background: #1e3a8a;
  color: #fff;
}

.c-btn--outline-blue:hover::after {
  background-color: #fff;
  background-image: url("../img/arrow-blue.svg");
}

.c-br--pc {
  display: block;
}

@media (max-width: 768px) {
  .c-br--pc {
    display: none;
  }
  .c-btn {
    gap: 4px;
    padding: 8px 24px;
    font-size: 14px;
  }
}

/* contact */

.contact-mini {
  margin-top: 88px;
  padding: 215px 0 100px;
  background-image: url(../img/blue_bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-mini::before {
  background-image: url(../img/blue_bg_deco.svg);
  top: -1px;
  content: "";
  height: 120px;
  left: 0;
  position: absolute;
  width: 100%;
}

.contact-mini__container {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  padding: 0 24px;
}

.contact-mini__content {
  max-width: 50%;
}

.contact-mini__content p {
  margin-top: 16px;
}

.contact-mini__btn .c-btn {
  padding: 24px 64px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .contact-mini {
    padding: 124px 0 72px;
  }
  .contact-mini::before {
    height: 72px;
    background-size: cover;
  }
  .contact-mini__container {
    flex-direction: column;
  }
  .contact-mini__content {
    max-width: 70%;
  }
  .contact-mini__btn {
    margin-top: 24px;
  }
  .contact-mini__btn .c-btn {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact-mini__content {
    max-width: 100%;
  }
}
