@charset "utf-8";
main {
  width: 600px;
}

/* ■■■■■■お知らせアーカイブページ■■■■■■ */
.content-div-res {
  display: none;
}

/* ■■■■■■タイトル■■■■■■ */
h1 {
  border: 1px solid rgb(71, 197, 220);
  margin: 10px;
  border-radius: 20px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

h1 div {
  text-align: center;
  color: white;
  background-color: rgb(71, 197, 220);
  margin: 2px;
  padding: 8px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 600;
}

/* ■■■■■■お知らせ一覧■■■■■■ */
.article-cover article {
  box-sizing: border-box;
  width: 100%;
  height: 121px;
  margin: 0 auto;
  display: flex;
  border-bottom: 1px solid #e4f3ff;
}

/* ■■■■■■記事ボックス■■■■■■ */
.module-Article_Item_Body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;

}

.article_box {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.article_box a {
  display: flex;
  height: 100%;
  width: 100%;
}

/* ■■■■■■サムネイル■■■■■■ */
.eyeCatch {
  position: relative;
  height: 120px;
  width: 160px;
  padding: 5px;
  overflow: hidden;
}

.eyeCatch img {
  display: block;
  position: absolute;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.content-div {
  padding: 10px 0 10px;
}



/* ■■■■■■テキスト■■■■■■ */
.textBox {
  padding: 10px;
}

.article_box h2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
}

.title-date {
  display: flex;
  justify-content: space-between;
}

.date-cover {
  padding: 2px;
}

.excerpt {
  padding: 5px 0;
}

.excerpt p {
  font-size: 14px;
}

/* .next_posts_link {
  display: block;
  width: 200px;
  height: 34px;
  padding: 7px;
  margin: 10px auto;
  color: #2392ed;
  border: solid 1px #2392ed;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 5px;
} */


@media only screen and (max-width:768px) {
  main {
    width: 100vw;
  }

  h1 {
    margin: 90px auto 0;
  }

  .article_box div::first-chldren {
    width: 20%;
  }

  .article_box .textBox {
    width: 70%;
  }

  .module-Article_Item_Body .article_box .excerpt p {
    display: block;
  }

  .tagcover div {
    padding: 3px !important;
  }

}