@charset "utf-8";

.mainContentsWrapper {
  margin: 80px auto 100px;
  padding: 0 20px;
  width: 1000px;
}

/* カテゴリー、日付などの情報
--------------------------------------------------- */
.columnContentDetail {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}

.columnCardCategory {
  display: inline-block;
}

/* カテゴリー */
.postCategories ul {
  display: flex;
}

.columnCardCategory li {
  background-color: #fff;
  border-radius: 3px;
  display: inline-block;
  height: 25px;
  margin: 0 8px 5px 0;
  min-width: 100px;
  padding: 0 5px;
  text-align: center;
  transition: .3s;
}

.columnCardCategory li a {
  display: block;
  height: 100%;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9em;
}

/* TODO:カテゴリー名を現在仮で付与しているため、必要に応じてclass名も変更する */
.columnCardCategory li.category01 {
  border: 1px solid #FDB141;
}

.columnCardCategory li.category01 a {
  color: #FDB141;
}

.columnCardCategory li.category02 {
  border: 1px solid #B2FD41;
}

.columnCardCategory li.category02 a {
  color: #B2FD41;
}

.columnCardCategory li.category03 {
  border: 1px solid #41A2FD;
}

.columnCardCategory li.category03 a {
  color: #41A2FD;
}

.columnCardCategory li:last-child {
  margin-left: -5px;
  background: none;
  min-width: 30px;
}

.columnCardCount {
  color: #242f3e;
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
}

.columnCardDate {
  color: #999;
  display: block;
  font-family: TTFirsNeue, A1 Gothic R, sans-serif;
  font-size: 11px;
  letter-spacing: .1rem;
  text-align: right;
}

/* 記事詳細ページ：見出しなどのデザイン
--------------------------------------------------- */
.columnContentTtl {
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: .14rem;
  margin: 20px 0;
}

.columnContentThumb img {
  height: auto;
  width: 100%;
}

.columnContentTxt p {
  color: #333;
  font-size: 16px;
  letter-spacing: .08rem;
  line-height: 2em;
  margin: 0 0 19.44444px;
}

.columnContentTxt h2 {
  border-bottom: 4px solid #7dcef4;
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: .3rem;
  line-height: 1.6em;
  margin-bottom: 30px;
  padding-bottom: 12px;
}

.columnContentTxt h2:nth-child(n+2) {
  margin-top: 60px;
}


.columnContentTxt h3 {
  background: #f3f3f3;
  color: #333;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: .3rem;
  line-height: 1.4em;
  margin: 50px 0 25px;
  padding: 1em;
}


/* 記事一覧ページ
--------------------------------------------------- */
.columnTtl {
  margin: 20px 0 60px;
  font-size: 20px;
  font-weight: bold;
}

.column {
  margin: 40px auto;
  max-width: 1000px;
}

.columnCardWrap {
  display: flex;
  margin: 10px 0 30px 0;
  width: 100%;
  border-bottom: solid 1px #e1e1e1;
  justify-content: center;
}

.columnCardCategory {
  display: inline-block;
}

.columnCardCategory ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.columnCardDetail {
  margin-bottom: 20px;
  width: 410px;
}

.columnCardTtl {
  margin: 15px 0 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14rem;
}

.columnCardDate {
  display: block;
  font-family: TTFirsNeue, "A1 Gothic\3000R", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1rem;
  color: #999;
  text-align: right;
}

.columnCardThumb {
  margin: 0 30px 25px 0;
  overflow: hidden;
}

.columnCardThumb img {
  transition-duration: 0.3s;
  width: 281px;
  height: 170px;
  -o-object-fit: cover;
  object-fit: cover;
}

.columnContentThumb img {
  width: 80%;
  margin: auto;
}

.columnContentThumb {
  margin-bottom: 50px;
  text-align: center;
}

/* レスポンシブ
--------------------------------------------------- */
@media (max-width: 768px) {
  .mainContentsWrapper {
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    width: inherit;
  }

  .column {
    margin-bottom: 60px;
    padding: 0;
    width: 95%;
    color: #333;
  }

  .columnContentDetail {
    display: inherit;
  }

  .columnTtl {
    margin: 20px 0 30px;
    font-size: 16px;
  }

  .columnContentTtl {
    margin: 20px 0;
    font-size: 1.4em;
    line-height: 1.6em;
  }

  .columnContentThumb img {
    overflow: hidden;
  }

  .columnContentTxt h2 {
    font-size: 1.4em;
    letter-spacing: 0.2rem;
  }

  .columnContentTxt h3 {
    padding: 0.8em 1em;
  }

  .columnCardWrap {
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .columnCardThumb {
    margin: 0 15px 0 0;
    width: 110px;
  }

  .columnCardDetail {
    margin-bottom: inherit;
    width: calc(100% - 95px);
  }

  .columnCardTtl {
    margin: 0 0 5px;
    font-size: 14px;
    letter-spacing: 0.14rem;
    line-height: 1.8em;
  }

  .columnCardArticle {
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e1e1e1;
  }

  .columnCard__category li {
    min-width: 90px;
  }

  .columnCardCategory li a {
    font-size: 13px;
  }

  .columnCardThumb img {
    width: 100%;
    height: 70px;
  }

}

.breadCrumb {
  font-size: 0.8em;
}

.breadCrumb ol {
  list-style: none;
}

.breadCrumb li {
  display: inline;
}

.breadCrumb li a {
  color: inherit;
  text-decoration: none;
}

.breadCrumb li+li:before {
  content: ">";
  margin: .1em;
}
