/* HEADER */

/* サンキューページ */
.thankyou__container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-finish-inner {
  text-align: center;
  padding: 40px 20px;
}

.thankyou__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.thankyou__subtitle {
  font-size: 16px;
  color: var(--color-gray4);
  margin-bottom: 40px;
  line-height: 1.8;
}

.thankyou__sharelink a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-pink);
  font-weight: 500;
  text-decoration: none;
}

.thankyou__sharelink a:hover {
  text-decoration: underline;
}

/* SP対応 */
@media screen and (max-width: 767px) {
  .thankyou__title {
    font-size: 24px;
  }
  
  .thankyou__subtitle {
    font-size: 14px;
  }
}

.d-md-none {
  display: inline;
}

@media screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }
}