/* .........................................
//
// メインタイトルのスタイルを記述するscss
//
// ......................................... */

.user-title {
    width: 100%;
    margin: 5rem auto 0;
    min-height: 200px;
    height: auto;
    background-color: var(--Main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-title .inner {
    max-width: 1440px;
    text-align: center;
}

.user-title .title {
    font-size: var(--font-size-48);
    font-weight: var(--font-weight-bold);
    color: var(--White);
    text-align: center;
}

.user-title .sub-title {
  --fontMax48Min24: clamp(1.5rem, 0.207rem + 4.14vw, 3rem);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-180);
  color: var(--White);
  padding: 0  1.25rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .user-title {
    height: 280px;
  }
  .user-title .title {
    font-size: 28px;
  }
  .sub-title {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .user-title .title {
    font-size: 24px;
  }
  .sub-title {
    font-size: 12px;
  }
}
