@charset "UTF-8";

/*フォント変更*/
/* サイト全体のフォント指定 */
.page {
  font-family: 'Noto Serif JP', serif;
}

/*#ヘッダー追従させない*/
.header {
  position: relative; /* スクロール追従させない */
}
.page {
  padding-top: 0; /* ヘッダーの分コンテンツがかぶらないようにしている幅をなくす */
}


.page {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px;
}

/*#セクションごとに色を変える*/
.separatedSection {
  background-color: #f0f7ff;
}
.container {
  max-width: 100%;
  padding: 0;
}
.titleSection__contentsWrapper,
.separatedSection__contentsWrapper,
.contentsFooterSection__contentsWrapper  {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px;
}
.separatedSection:nth-child(even),
.contentsFooterSection {
    background-color: #fff;
}