@charset "utf-8";
/* CSS Document */
/*===================================
  
  ブログCSS

===================================*/
/*=========================

  フォントサイズ調整

==========================*/
html {
  font-size: 62.5%;
}
/*=========================

  トップページブログリスト 縦並び

==========================*/
/*-------------
        PC
---------------*/
.blog_list_wrapper_01 .blog_article {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.blog_list_wrapper_01 .blog_article:not(:last-of-type) {
  border-bottom: 2px dotted #01BFF2;
}
.blog_list_wrapper_01 .blog_article a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 15px;
}
.blog_list_wrapper_01 .blog_article a .thumbnail:not(:first-of-type) {
  display: none;
}
.blog_list_wrapper_01 .blog_article a .thumbnail {
  width: 120px;
  height: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.blog_list_wrapper_01 .blog_article .thumbnail img {
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
}
.blog_list_wrapper_01 .blog_article .textarea {
  width: 280px;
}
.blog_list_wrapper_01 .blog_article .textarea p + p {
  margin-top: 0;
}
.blog_list_wrapper_01 .blog_article .textarea .textarea_category {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-bottom: 5px;
}
.blog_list_wrapper_01 .blog_article .textarea .textarea_category span {
  background: #cc0000;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.0;
  padding: 4px 5px;
}
.blog_list_wrapper_01 .blog_article .textarea .textarea_date {
  color: #aaa;
  font-size: 1.5rem;
  line-height: 1.4;
}
.blog_list_wrapper_01 .blog_article .textarea .textarea_title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}
.blog_list_wrapper_01 .blog_article .textarea .textarea_text {
  font-size: 1.3rem;
  line-height: 1.4;
}
.blog_list_wrapper_01 .blog_article a:hover .textarea_title, .blog_list_wrapper_01 .blog_article a:hover .textarea_text {
  text-decoration: underline;
}
.blog_list_wrapper_01 .blog_article a:hover .thumbnail img {
  transform: scale(1.1, 1.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*-------------
        SP
---------------*/
@media screen and (max-width: 420px) {
  .blog_list_wrapper_01 .blog_article .textarea {
    width: 280px;
  }
  .blog_list_wrapper_01 .blog_article .textarea .textarea_category span {
    font-size: 1.0rem;
    padding: 4px 5px 3px;
  }
  .blog_list_wrapper_01 .blog_article .textarea .textarea_date {
    font-size: 1.2rem;
  }
  .blog_list_wrapper_01 .blog_article .textarea .textarea_title {
    font-size: 1.4rem;
    margin-bottom: 3px;
  }
  .blog_list_wrapper_01 .blog_article .textarea .textarea_text {
    font-size: 1.2rem;
  }
}
/*=========================

  トップページブログリスト 横並び

==========================*/
/*-------------
        PC
---------------*/
.blog_list_wrapper_02 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.blog_list_wrapper_02 .blog_article {
  display: none;
  width: 225px;
  margin-right: 20px;
}
.blog_list_wrapper_02 .blog_article:first-of-type, .blog_list_wrapper_02 .blog_article:nth-of-type(2), .blog_list_wrapper_02 .blog_article:nth-of-type(3), .blog_list_wrapper_02 .blog_article:nth-of-type(4) {
  display: block;
}
.blog_list_wrapper_02 .blog_article:nth-of-type(4) {
  margin-right: 0;
}
.blog_list_wrapper_02 .blog_article .thumbnail {
  width: 100%;
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
}
.blog_list_wrapper_02 .blog_article .thumbnail:not(:first-of-type) {
  display: none;
}
.blog_list_wrapper_02 .blog_article .thumbnail img {
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
}
.blog_list_wrapper_02 .blog_article .textarea p + p {
  margin-top: 0;
}
.blog_list_wrapper_02 .blog_article .textarea .textarea_category {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-bottom: 5px;
}
.blog_list_wrapper_02 .blog_article .textarea .textarea_category span {
  background: #cc0000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
  padding: 4px 5px;
}
.blog_list_wrapper_02 .blog_article .textarea .textarea_date {
  color: #aaa;
  font-size: 1.5rem;
  line-height: 1.4;
}
.blog_list_wrapper_02 .blog_article .textarea .textarea_title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.blog_list_wrapper_02 .blog_article .textarea .textarea_text {
  font-size: 1.3rem;
  line-height: 1.4;
}
.blog_list_wrapper_02 .blog_article a:hover .textarea_title, .blog_list_wrapper_02 .blog_article a:hover .textarea_text {
  text-decoration: underline;
}
.blog_list_wrapper_02 .blog_article a:hover .thumbnail img {
  transform: scale(1.1, 1.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*-------------
        SP
---------------*/
@media screen and (max-width: 431px) {
  .blog_list_wrapper_02 {
    flex-wrap: wrap;
  }
  .blog_list_wrapper_02 .blog_article {
    width: 48%;
    margin-right: 0;
  }
  .blog_list_wrapper_02 .blog_article:first-of-type, .blog_list_wrapper_02 .blog_article:nth-of-type(3) {
    margin-right: 4%;
  }
  .blog_list_wrapper_02 .blog_article:first-of-type, .blog_list_wrapper_02 .blog_article:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .blog_list_wrapper_02 .blog_article:nth-of-type(4) {
    margin-right: 0;
  }
  .blog_list_wrapper_02 .blog_article .thumbnail {
    width: 100%;
    height: 110px;
    margin-bottom: 5px;
  }
  .blog_list_wrapper_02 .blog_article .textarea .textarea_category {
    margin-bottom: 5px;
  }
  .blog_list_wrapper_02 .blog_article .textarea .textarea_category span {
    background: #cc0000;
    color: #fff;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1.0;
    padding: 4px 5px 3px;
  }
  .blog_list_wrapper_02 .blog_article .textarea .textarea_date {
    font-size: 1.2rem;
  }
  .blog_list_wrapper_02 .blog_article .textarea .textarea_title {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  .blog_list_wrapper_02 .blog_article .textarea .textarea_text {
    font-size: 1.1rem;
  }
}
/*=========================

  ブログ詳細ページ

==========================*/
/*-------------
        PC
---------------*/
@media print, screen and (min-width: 992px) {
  .blog #contents .cmn_block {
    padding: 0px 0 80px;
  }
  .blog #contents .block {
    display: block !important;
    padding: 120px 0 36px;
    margin-top: -60px;
  }
  .blog #contents .block:nth-child(1) {
    padding: 0px 0 36px;
  }
  .blog #contents .padd {
    padding: 130px 0 36px;
    margin-top: -80px;
  }
  .blog #contents .padd:first-child {
    padding: 0px 0 36px;
  }
  .blog #contents .block .top {
    color: #333;
    line-height: 2;
    text-align: left;
  }
  .blog #contents .block .top div {
    color: #333;
  }
  .blog #contents .block h3 {
    font-size: 1.8rem;
    clear: none;
    text-align: left;
    background: #1E56AA;
    color: #fff;
    font-weight: bold;
    padding: 0.7% 2.6%;
  }
  .blog #contents .block .day {
    margin: 12px 0 30px;
    color: #0861A8;
    line-height: 1;
    text-align: right;
  }
  .blog #contents .block .top {
    width: 85%;
    margin: 0 auto;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .blog #contents .block .block1 {
    padding: 0px 0 0;
    line-height: 2;
  }
  .blog #contents .block .gallery img {
    max-width: 100%;
  }
  .blog #contents .block .block1 div {
    color: #333;
  }
  .blog #contents .block .block01 {
    width: 85%;
    margin: 0 auto 50px;
    clear: both;
    text-align: left;
  }
  .blog #contents .block .block01 .gallery {
    width: 43%;
  }
  .blog #contents .block .block01:last-child {
    margin: 0 auto 0;
  }
  .blog #contents .block .block01 .left {
    float: left;
    display: block;
  }
  .blog #contents .block .block01 .left.gallery, .blog #contents .block .block01 .right.gallery {
    margin: 0 0 20px;
  }
  .blog #contents .block .block01 .right {
    float: right;
    display: block;
  }
  .blog #contents .block .block01 .text1 {
    padding: 0px 0px 0px 48%;
    clear: none;
    text-align: left;
  }
  .blog #contents .block .block01 .text2 {
    padding: 0px 48% 0px 0;
    clear: none;
    text-align: left;
  }
  .blog #contents .block ul {
    width: 85%;
    margin: 0 auto 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px 10px;
  }
  .blog #contents .block ul li {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.0;
    padding: 4px 10px 5px;
  }
  .blog #contents .block ul li a {
    color: #fff;
  }
  .blog #contents .block .gallery {
    padding: 0;
    width: 24%;
  }
  .blog #contents .menu {
    text-align: right;
    margin: 20px 0px -50px 0;
  }
  .blog #contents .menu2 {
    padding: 0px 0px 70px 0;
  }
  .blog #contents .menu a {
    color: #333;
    font-size: 1.4rem !important;
    vertical-align: text-bottom;
  }
  .blog #contents .menu strong {
    color: #0861A8 !important;
    font-size: 150%;
  }
  .blog #contents .menu a.next, .blog #contents .menu a.prev {
    font-size: 86%;
    vertical-align: baseline;
  }
  .blog #contents .pdf_block {
    width: 862px;
    margin: 0 auto 40px;
  }
  .blog #contents .pdf_block .pdf_link a img {
    margin: 0 0 0 10px;
  }
  .blog #contents .btn_txt {
    font-weight: bold;
    padding: 5% 0 1%;
    text-align: center;
  }
  .blog #contents .btn {
    font-weight: bold;
    padding: 0 0 1%;
    text-align: center;
  }
  .blog #contents .tel_txt {
    font-weight: bold;
    padding: 2% 0 0.5%;
    text-align: center;
  }
  .blog #contents p.tel_btn {
    background: url(../img/img-blog/tel_icon.png) no-repeat 0 center;
    font-weight: bold;
    padding: 0 0 0 50px;
    line-height: 45px;
    font-size: 2.5rem;
    width: 270px;
    margin: 0 auto;
  }
  .blog #contents .block .day {
    text-align: left !important;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    float: none;
  }
  .blog #lightbox-container-image-data-box {
    width: 620px !important;
  }
}
/*-------------
        SP
---------------*/
@media screen and (max-width: 991px) {
  .blog #contents .cmn_block {
    padding: 0px 0 40px;
  }
  .blog #contents .menu {
    text-align: right;
    margin: 7% 0px 4% 2%;
    width: 100%;
  }
  .blog #contents .menu {
    font-size: 1.2rem !important;
  }
  .blog #contents .menu .all_count {
    font-size: 1.2rem !important;
  }
  .blog #contents .menu a {
    padding: 0 1%;
    font-size: 1.1rem !important;
  }
  .blog #contents .menu .disp_sp {
    line-height: 0;
  }
  .blog #contents .menu strong {
    color: #0861A8 !important;
    font-size: 1.4rem !important;
    padding: 0 1%;
  }
  .blog #contents .menu strong font {
    font-size: 1.4rem !important;
  }
  .blog #contents .menu2 {
    margin: 0% 0px 0% 0;
  }
  .blog #contents .menu a.next, .blog #contents .menu a.prev {
    font-size: 1.1rem;
    vertical-align: baseline;
  }
  .blog #contents .block {
    display: block !important;
    margin: 0 auto 15%;
  }
  .blog #contents .block00 h2 img {
    width: 50%;
  }
  .blog #contents .block00 h2 .sub {
    width: 9%;
  }
  .blog #contents .block h3 {
    font-size: 1.2rem;
    clear: none;
    text-align: left;
    background: #1E56AA;
    color: #fff;
    font-weight: bold;
    padding: 2% 4%;
    font-style: normal;
  }
  .blog #contents h3 em {
    font-style: normal;
  }
  .blog #contents .block .top, .blog #contents .block .block1 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
  }
  .blog #contents .block .day {
    text-align: left !important;
    color: #0861A8;
    background: url(../img/img-k_news/lin_02.gif) no-repeat left bottom;
    background-size: 100%;
    margin: 2% auto 2%;
    width: 95%;
  }
  .blog #contents .block .top {
    width: 95%;
    margin: 0 auto 3%;
  }
  .blog #contents .block {
    padding: 80px 0 22%;
    width: 97%;
    margin: -50px auto 0;
  }
  .blog #contents .block .block01 {
    width: 95%;
    margin: 0 auto 10%;
  }
  .blog #contents .block .block01:last-child {
    margin: 0 auto;
  }
  .blog #contents .block ul {
    width: 95%;
    margin: 0 auto 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px 10px;
  }
  .blog #contents .block ul li {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.0;
    padding: 4px 10px 3px;
  }
  .blog #contents .block ul li a {
    color: #fff;
  }
  .blog #contents .block .gallery {
    margin: 0;
    width: 48%;
    padding: 0;
  }
  .blog #contents .block .gallery img {
    width: 100%;
  }
  .blog #contents .block .right.gallery, .blog #contents .block .left.gallery {
    float: none;
  }
  .blog #contents .block01 .gallery {
    width: 100%;
    margin-bottom: 10px;
  }
  .blog #contents .pdf_block {
    width: 85%;
    margin: 0 auto;
  }
  .blog #contents .pdf_block .pdf_link a img {
    margin: 0 0 0 3%;
  }
  .blog #contents .btn_txt {
    font-weight: bold;
    padding: 4% 0 2%;
    text-align: center;
  }
  .blog #contents .btn {
    font-weight: bold;
    padding: 0 0 1%;
    text-align: center;
    width: 80%;
    margin: 0 auto
  }
  .blog #contents p.btn a {
    display: block;
  }
  .blog #contents p.btn img {
    max-width: 360px;
    width: 100%;
  }
  .blog #contents .block .text1 {
    width: 95%;
    margin: 0 auto 3%;
  }
  .blog #contents .block .text2 {
    width: 95%;
    margin: 0 auto 3%;
  }
  .blog #lightbox-container-image-data-box {
    width: 90% !important;
  }
}
/*=========================

  カテゴリーカラー設定

==========================*/
.category01 {
  background: #333 !important;
}
.category02 {
  background: #008C23 !important;
}
.category03 {
  background: #8500B2 !important;
}
.category04 {
  background: #D9A300 !important;
}
.category05 {
  background: #D93600 !important;
}
.category06 {
  background: #01BFF2 !important;
}