@charset "utf-8";
/* CSS Document */
body {
  background-color: #F3F3F3;
}
/* ============== サイドの余白 ============== */
main {
  padding: 0 5vw;
}
.contents {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}
/* ============== 本文 ここから ============== */
/*  見出し  */
.top-title {
 margin: 110px auto 60px;
}
.top-title h1 {
  font-size: 3.2rem;
  text-transform: uppercase;
}
.top-title p {
  font-size: 1.4rem;
}
.contents {
  width: 89vw;
  margin-bottom: 80px;
  background-color: #fff;
  padding: 40px 4vw;
  text-align: left;
}
.contents>h2 {
  margin: 3px auto;
}
.contents>p,.contents>h3 {
  font-size: 1.4rem;
  line-height: 22px;
  font-weight: normal;
}
.underline {
  text-decoration: underline;
}
/* ============== TAB(600px)レスポンシブ ============== */
@media only screen and (min-width:600px) {
 .top-title {
    margin: 180px auto 120px;
  }
  /*  見出し  */
  .top-title h2 {
    font-size: 4.0rem;
  }
  .top-title p {
    font-size: 2.0rem;
  }
  /* ===== 青ライン（トップ・コンテンツ共通） ===== */
  .top-title p::before {
    width: 80px;
    height: 8px;
    margin: 24px auto;
  } 
}
  /* ============== PC(1025px)レスポンシブ ============== */
@media only screen and (min-width:1023px) {
  /*  ==============  見出し ここから ==============  */
  .top-title {
    margin-bottom: 160px;
  }
  .contents {
    margin-bottom: 150px;
    padding: 60px 7vw 80px;
  }
  .contents>h2 {
    margin: 18px auto 10px;
  }
}








