@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* 初期設定 */
#blog-area .newsblock {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1;
  width: 100%;
}
@media screen and (max-width: 840px) {
  #blog-area .newsblock {
    width: 100%;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #blog-area .newsblock {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}
#blog-area .newsblock .cateList {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  border-bottom: 0.5px solid #3e3a3a;
}
@media screen and (max-width: 520px) {
  #blog-area .newsblock .cateList {
    margin-bottom: 0.5em;
    flex-wrap: wrap;
  }
}
#blog-area .newsblock .cateList .cateItem {
  width: 18%;
  border-radius: 1em 1em 0 0;
  text-align: center;
  padding: 1.2em 0;
  position: relative;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  #blog-area .newsblock .cateList .cateItem {
    width: 33%;
    border-radius: 0.8em 0.8em 0 0;
  }
}
#blog-area .newsblock .cateList .cateItem.information {
  color: #e27364;
}
#blog-area .newsblock .cateList .cateItem.rec {
  color: #2ca6e0;
}
#blog-area .newsblock .cateList .cateItem.faq {
  color: #6cc15b;
}
#blog-area .newsblock .cateList .cateItem.column {
  color: #8b5ad1;
}
#blog-area .newsblock .cateList .cateItem.is-show {
  background-color: #ea8d39;
  color: #fff;
}
#blog-area .newsblock .cateList .cateItem.information.is-show {
  background-color: #e27364;
}
#blog-area .newsblock .cateList .cateItem.rec.is-show {
  background-color: #2ca6e0;
}
#blog-area .newsblock .cateList .cateItem.faq.is-show {
  background-color: #6cc15b;
}
#blog-area .newsblock .cateList .cateItem.column.is-show {
  background-color: #8b5ad1;
}
#blog-area .newsblock .cateList .cateItem:after {
  content: "";
  width: 0.5px;
  height: 40%;
  background-color: #e2e2e2;
  position: absolute;
  inset: auto 0 0 auto;
}
#blog-area .newsblock .cateList .cateItem:last-child::after {
  content: none;
}
#blog-area .newsblock .postList {
  display: none;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 520px) {
  #blog-area .newsblock .postList {
    width: 100%;
  }
}
#blog-area .newsblock .postList.is-show {
  display: block;
}
#blog-area .newsblock .postList .post-data a {
  width: 100%;
  display: block;
  padding: 4em 1.5em 1em 2em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  row-gap: 0;
  position: relative;
}
@media screen and (max-width: 520px) {
  #blog-area .newsblock .postList .post-data a {
    padding: 4em 0.5em 1em 1em;
  }
}
#blog-area .newsblock .postList .post-data a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #e2e2e2 0, #e2e2e2 3px, transparent 3px, transparent 5px);
  border-radius: 999px;
}
#blog-area .newsblock .postList .post-data a .date {
  width: 6em;
}
#blog-area .newsblock .postList .post-data a .cate {
  font-size: 77.77%;
  line-height: 1;
  width: 7em;
  padding: 0.4em 1em;
  text-align: center;
  border-radius: 999px;
}
#blog-area .newsblock .postList .post-data a .cate.important {
  background-color: #e27364;
  border: 1px solid #e27364;
  color: #fff;
}
#blog-area .newsblock .postList .post-data a .cate.information {
  border: 1px solid #e27364;
}
#blog-area .newsblock .postList .post-data a .cate.rec {
  border: 1px solid #2ca6e0;
}
#blog-area .newsblock .postList .post-data a .cate.faq {
  border: 1px solid #6cc15b;
}
#blog-area .newsblock .postList .post-data a .cate.column {
  border: 1px solid #8b5ad1;
}
#blog-area .newsblock .postList .post-data a .ttl {
  width: calc(100% - 3em);
  padding-top: 0.6em;
}
@media screen and (max-width: 520px) {
  #blog-area .newsblock .postList .post-data a .ttl {
    width: calc(100% - 3.5em);
  }
}
#blog-area .newsblock .postList .post-data a .arrow {
  width: 2em;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid #2ca6e0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/common/arrow01.svg) no-repeat center;
  background-size: 30%;
  filter: brightness(0) saturate(100%) invert(49%) sepia(96%) saturate(510%) hue-rotate(160deg) brightness(97%) contrast(80%);
}

/* ----------------------------------------------------------------------
テキストエリア
---------------------------------------------------------------------- */
.blog-txtarea {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 840px) {
  .blog-txtarea {
    font-size: 1.6rem;
    line-height: 1.8125;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  .blog-txtarea {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-top: 3rem;
  }
}
.blog-txtarea > h1 {
  font-size: 200%;
  color: #2ca6e0;
  border-bottom: 2px solid #2ca6e0;
  font-weight: bold;
  padding: 0 0.2em;
}
@media screen and (max-width: 520px) {
  .blog-txtarea > h1 {
    font-size: 160%;
  }
}
.blog-txtarea > h2 {
  margin-top: 2em;
  font-size: 150%;
  margin-top: 1em;
  font-weight: bold;
  color: #2ca6e0;
}
.blog-txtarea > h3 {
  margin-top: 2em;
  font-size: 120%;
  font-weight: bold;
  background-color: #ededed;
  border-left: 0.3em solid #2ca6e0;
  padding: 0 0.5em;
  color: #2ca6e0;
}
.blog-txtarea > h4 {
  margin-top: 2em;
  font-weight: bold;
  color: #2ca6e0;
}
.blog-txtarea > p {
  margin-top: 2em;
}
.blog-txtarea figure {
  margin-top: 2em;
}
.blog-txtarea figure img {
  max-width: initial;
  width: 100%;
}
.blog-txtarea .btn-wrapper {
  width: fit-content;
  margin: 2rem auto 0;
  color: #ea8d39;
  font-weight: 600;
}