@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* blog -webkit-line-clamp: 2;// 表示したい行数を指定 */
/* ============================================ */
.area__bloglist {
  padding: 4vw 0 8vw;
}
@media all and (max-width: 480px) {
  .area__bloglist {
    padding: 30px 0 50px;
  }
}
.area__bloglist--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1vw;
}
@media all and (max-width: 480px) {
  .area__bloglist--list {
    margin: 0 -6px;
  }
}
.area__bloglist--item {
  width: 33.3333333333%;
  box-sizing: border-box;
  padding: 1vw;
}
@media all and (max-width: 480px) {
  .area__bloglist--item {
    width: 50%;
    padding: 6px;
  }
}
.area__bloglist--item .thumb_blog {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.area__bloglist--item .thumb_blog img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.area__bloglist--item .txt_blog {
  padding: 8px 0 0;
}
.area__bloglist--item .txt_blog .ttl_blog {
  font-size: clamp(1.4rem, 1.2vw, 2rem);
  line-height: 1.3em;
  border-bottom: #666 dotted 1px;
  padding: 0 0 6px;
}
.area__bloglist--item .txt_blog .date_blog {
  font-size: 1.4rem;
  line-height: 1em;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 6px 0 0;
}

.area__newsdetail {
  padding: 4vw 0 8vw;
}
@media all and (max-width: 480px) {
  .area__newsdetail {
    padding: 30px 0 50px;
  }
}
.area__newsdetail--ttl .txt_update {
  font-size: 1.4rem;
  line-height: 1.4em;
}
.area__newsdetail--ttl .title_news {
  font-size: clamp(2rem, 2vw, 3.25rem);
  line-height: 1.2em;
  text-align: justify;
  border-bottom: #666 dotted 1px;
  padding: 5px 0 10px;
}
.area__newsdetail--comment_top, .area__newsdetail--comment_bottom {
  clear: both;
  padding: 1.5vw 0 0;
}
@media all and (max-width: 896px) {
  .area__newsdetail--comment_top, .area__newsdetail--comment_bottom {
    padding: 16px 0 0;
  }
}
.area__newsdetail--comment_top img, .area__newsdetail--comment_bottom img {
  width: 100%;
  height: auto;
}
.area__newsdetail--comment_top p, .area__newsdetail--comment_bottom p {
  line-height: 1.6em;
  padding: 0 0 16px;
}
.area__newsdetail--comment_top .img_news {
  width: 45%;
  float: right;
  margin: 0 0 0 16px;
}
@media all and (max-width: 480px) {
  .area__newsdetail--comment_top .img_news {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
.area__newsdetail--comment_bottom .img_news {
  width: 45%;
  float: left;
  margin: 0 16px 0 0;
}
@media all and (max-width: 480px) {
  .area__newsdetail--comment_bottom .img_news {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
.area__newsdetail .btn_link {
  text-align: center;
}