@charset "utf-8";

/* ===================================
   Abstract 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 40px 120px;
}

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

.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-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;
  min-width:250px;
}

.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;
}
.main-content-participant{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:1em 1.5em;
  line-height:1.8;
}
.main-content-participant dt{
  width:4em;
  text-align:center;
  background:#fff;
  color: #3a80d9;
  font-weight: bold;
  letter-spacing:0.1em;
}
.main-content-participant dd{
  
  width:calc(100% - 5.5em);
}
.materials-link-block{
  display: flex;
  gap:0 40px;
  margin:0 0 80px;
  justify-content: center;
}


/* ========================================================
  スマホ
======================================================== */
@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;
  }
  .materials-link-block{
    flex-wrap: wrap;
    gap:20px;
    margin:0 16px 40px;
  }

}

.general-list-section__inner p {
  font-size: 12px;
  margin-top: 24px;
  line-height: 2;
}

