@charset "UTF-8";
main {
  position: relative;
  padding: 82px 0 0 0;
  margin: 0;
  display: block;
}

.contents {
  width: 100%;
  padding: 100px 0 0 0;
  box-sizing: border-box;
}
.contents .list_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 200px;
  padding: 0;
}
.contents .list_box .list {
  margin-bottom: 80px;
}
.contents .list_box .list .title {
  display: flex;
  font-size: 2.2rem;
  align-items: center;
  margin-bottom: 25px;
}
.contents .list_box .list .title dt {
  float: left;
  width: 1.75em;
  font-weight: 600;
  color: #fff;
  padding: 0.36em 0 0.3em;
  text-align: center;
  background-color: #113686;
  font-family: "Rubik", sans-serif;
}
.contents .list_box .list .title dd {
  padding: 0;
}
.contents .list_box .list .title dd span {
  font-weight: 600;
  background-color: #efeff2;
  padding: 0.25em 0.75em;
}
.contents .list_box .list .text {
  font-size: 1.6rem;
  line-height: 1.8;
}

/* スマホ用）の記述
========================================================= */
@media screen and (min-width: 480px) and (max-width: 1199px) {
  /*　画面サイズが480pxから1240pxまではここを読み込む　*/
  .contents {
    padding: 106px 0 0 0;
  }
}
/* スマホ用）の記述
========================================================= */
@media screen and (max-width: 479px) {
  /* 479px以下用（スマートフォン用）の記述 */
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  main {
    padding: 45px 0 0 0;
  }
  .contents {
    width: 100%;
    padding: 50px 0 0 0;
    box-sizing: border-box;
  }
  .contents .list_box {
    width: 90%;
    margin: 0 auto 100px;
    padding: 0;
  }
  .contents .list_box .list {
    margin-bottom: 30px;
  }
  .contents .list_box .list .title {
    display: flex;
    font-size: 1.6rem;
    align-items: center;
    margin-bottom: 20px;
  }
  .contents .list_box .list .title dt {
    float: left;
    width: 1.75em;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    padding: 0.6em 0 0.5em;
    text-align: center;
    background-color: #113686;
    font-family: "Rubik", sans-serif;
  }
  .contents .list_box .list .title dd {
    padding: 0;
  }
  .contents .list_box .list .title dd span {
    font-weight: 600;
    background-color: #efeff2;
    padding: 0.25em 0.75em;
  }
  .contents .list_box .list .text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  /* フッター設定 */
  #footer_wrapper {
    text-align: center;
    width: 100%;
    margin: 30px 0;
    font-size: 14px;
  }
}