@charset "utf-8";

/* ===================================
   Contact Page Styles
   =================================== */

/* メインコンテンツ フォント指定 */
main {
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

/* ヘッドパートセクション */
.head-part-section {
  position: relative;
  margin-top: 70px;
  padding: 124px 0;
  color: #fff;
  text-align: center;
  background-image: url(../img/abstract-head.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.head-part-title {
  position: relative;
  z-index: 1;
  top: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  font-size: 40px;
  font-weight: bold;
}

/* w-1200 */
.w-1200 {
  max-width: 1200px;
}

.general-list-section__inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px;
  background: #fff;
}

/* メインコンテンツセクション */
.main-content-section {
  padding: 90px 0 120px;
}

.main-content-block {
  margin-bottom: 24px;
}

.main-content-block:last-child {
  margin-bottom: 0;
}

.main-content-heading {
  position: relative;
  padding-left: 24px;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .08em;
  color: #3a80d9;
}

.main-content-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 4px;
  height: 100%;
  background: #3a80d9;
}

.main-content-heading + .main-content-text {
  margin-bottom: 0;
}

.main-content-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.main-content-text + .main-content-text{
  margin-top: 1.8em;

}

.main-content-subheading {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #3a80d9;
}

.main-content-link,
.main-content-button {
  display: inline-block;
  margin-top: 0px;
  padding: 14px 40px;
  border-radius: 6px;
  background: linear-gradient(131deg, #82c8e8, #3a80d9);
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.main-content-ol {
  margin-top: 16px;
  padding-left: 1.5em;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  list-style: decimal;
}

.main-content-ol li {
  margin-bottom: 8px;
}

/* ========================================================
  スマホ
======================================================== */
@media (max-width: 768px) {
  .head-part-section {
    margin-top: 80px;
    padding: 80px 0;
  }

  .head-part-title {
    font-size: 24px;
  }

  .main-content-section {
    padding: 40px 0 60px;
  }

  .main-content-heading {
    font-size: 20px;
    line-height: 28px;
  }

  /* スマホ_テキスト系 */
  .main-content-text {
    font-size: 14px;
  }

  .main-content-ol {
    font-size: 14px;
  }
}


