/* スマホ用 */
.spdisplay{display:none;}

@media screen and (max-width: 767px) {
  .pcdisplay{display:none;}
  .spdisplay{display:block;} 
}

/* --------------全体の共通-------------- */
/* 余白 */
.container{
  margin-bottom: 24px;
}
/* メインコンテンツの幅の設定 */
.mw1100{
  max-width: 1100px;
}
/* 文字サイズ */
#main{
  font-size: 1.2rem;
}

/* --------------コンテンツ内容共通-------------- */
/* TOP_ページタイトルの画像(角を丸くする) */
#title{
  border-radius: 5px;
}

/* TOP_ページタイトルラベル1_通常(左下配置) */
#title div .tl-l{
  background:#1b4ea2;
  z-index:1;
  text-align: center;
  color:#ffffff;
  position:absolute;
  padding: 17px 50px;
  font-size: 2.5rem;
  width: 400px;
  left: 0;
  top:17pc;
}

#title div .tl-l small{
  display:block;
  margin:0 auto;
  border-top:1px solid #ffffff;
}

/* TOP_ページタイトルラベル1_通常(左上配置) */
#title div .tl-h{
  background:#1b4ea2;
  z-index:1;
  text-align: center;
  color:#ffffff;
  position:absolute;
  padding: 17px 50px;
  font-size: 2.5rem;
  width: 400px;
  left: 0;
  top:5pc;
}

#title div .tl-h small{
  display:block;
  margin:0 auto;
  border-top:1px solid #ffffff;
}

@media screen and (max-width: 767px) {
  #title div .tl-l,
  #title div .tl-h{
    width: 75%;
    font-size: 2rem;
    padding: 10px 26px;
    top:7pc;
  } 
}

/* タイトル */

/* Contents_コンテンツパーツ */
/* 文字の装飾 */
.tsukuba_bl{
  color: #1b4ea2;
  font-weight: bold;
}
.tsukuba_gr{
color: #6dba44;
font-weight: bold;
}


/* 見出し_パターン1_下線を引く */
.headline-1 {
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    position: relative;
    margin-bottom: 15px;
    padding: 0 0 5px;
  }
.headline-1::before {
    content: "";
    height: 3px;
    background-color: #1b4ea2;
    width: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
 .headline-1::after {
    content: "";
    height: 3px;
    font-size: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1b4ea2;
  }

/* 見出し_パターン2_横線を引く */
 .headline-2 {
    position: relative;
    font-size: 1.6rem;
    line-height: 1.65;
    padding-top: 28px;
    padding-left: 20px;
    }

 .headline-2::before {
        content: "";
        display: block;
        position: absolute;
        top: 30px;
        left: 0px;
        width: 10px;
        height: 35px;
        background: #1b4ea2;
  }