/*------------------------------------
タイトル用CSS
------------------------------------*/
/* デフォルトタイトル1 */
.default-title {
  text-align: center;
}
.default-title .main-ttl {
  font-size: 2rem;
  letter-spacing: 0.3rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.4;
}
.default-title .sub-ttl {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  color: rgba(2,87,203,0.55);
}
.default-title .ttl-desc {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 1.8;
  margin-top: 10px;
}

@media only screen and (max-width: 1080px) {
  .default-title .main-ttl {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
  .default-title .sub-ttl {
    font-size: 1.3rem;
  }
  .default-title .ttl-desc {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }
}

@media only screen and (max-width: 767px) {
  .default-title .main-ttl {
    font-size: 1.5rem;
  }
  .default-title .sub-ttl {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
}

/* ページデフォルトタイトル */
.sub-title-area {
  background-image: linear-gradient(90deg, #1273da, #2789e9 30%, #3fa3fa);
  text-align: center;
  padding: 40px 0;
  border-radius: 0 0 60px 0;
}
.sub-title-area .catch h1,
.sub-title-area .catch .page-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  color: var(--color-white);
  margin: 0;
}

@media only screen and (max-width: 1080px) {
  .sub-title-area {
    padding: 30px 0;
    border-radius: 0 0 50px 0;
  }
  .sub-title-area .catch h1,
  .sub-title-area .catch .page-title {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .sub-title-area {
    padding: 25px 0;
    border-radius: 0 0 30px 0;
  }
  .sub-title-area .catch h1,
  .sub-title-area .catch .page-title {
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
  }
}
