@charset "utf-8";

/*==========================
Privacy header
==========================*/

.privacy-header {
  background: linear-gradient(90deg, #9CCAC0 0%, #95B3CB 100%);
  height: 475px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 110px;
  position:relative;
}

/* メインタイトル */
.privacy-title {
  font-family: Montserrat;
  line-height: 0.8;
  font-size: 17rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
}

/* サブタイトル */
.privacy-subtitle {
  font-size: 4.8rem;
  font-weight: 700;
  color: #515459;
  margin-top: 10px;
  position: absolute;
}

@media (max-width: 768px) {
  .privacy-header {
    height: 350px;
    padding-top: 80px;
  }

  .privacy-title {
    font-size: 8rem;
  }

  .privacy-subtitle {
    font-size: 2.4rem;
  }

}
/*==========================
Main contents
==========================*/
body {
  margin: 0;
  padding: 0;
  background-color: #F9FAFB;

}

.first-privacy-section{
  padding-top: 120px;
  padding-left: 180px;
}

/* コンテンツ全体 */
.privacy-policy-container {
  margin: 0 auto;
  padding: 123px 218px 0px 218px;
  justify-content: center;
}

/* セクションタイトル */
.section-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 26px;
}

/* 段落 */
.section-paragraph {
  font-size: 1.6rem;
  line-height: 1.8;
}


/* セクション内のコンテンツ（複数の段落） */
.section-content {
  padding-bottom: 80px;
}

/* 最初の見出し用のスタイル */
.section-title:first-of-type {
  margin-top: 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .privacy-policy-container {
      padding: 20px;
  }

  .section-title {
      font-size: 2rem;
  }

  .section-paragraph {
      font-size: 1.4rem;
  }

  .first-privacy-section{
    padding-top: 52px;
    padding-left: 20px;
  }
}

@media (max-width: 425px) {
  .privacy-header {
    height: 300px;
  }

  .privacy-title {
    font-size: 6rem;
  }

  .privacy-subtitle {
    font-size: 2rem;
  }
}

