* {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
html {
  scroll-behavior: smooth;
}

body {
  color: #383838;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;

}

a{
  color: #333333;
}
.none{
  display: none !important;
}

@media(min-width:768px){
  .pc_none{
    display: none !important;
  }
}

@media(max-width:767px){
  .sp_none{
    display: none !important;
  }
}

/*********************************

header

*********************************/

header {
  position: fixed;
  left: -280px;
  height: 100%;
  background-color: #00cca3;
  width: 280px;
  z-index: 9998;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

header::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

header.act {
  animation: navAct 0.4s ease-in-out 0.2s forwards;
}

header.off {
  animation: navOff 0.4s ease-in-out 0s forwards;
}

@keyframes navAct {
  0% {
    left: -280px;
  }
  100% {
    left: 0px;
  }
}

@keyframes navOff {
  0% {
    left: 0px;
  }
  100% {
    left: -280px;
  }
}

header nav {
  margin-top: calc(50vh - 220px);
  margin-left: 90px;
}

header nav li {
  margin-bottom: 20px;
  opacity: 0;
}

header.act nav li {
  animation: navLi 0.3s ease 0.8s 1 forwards;
}

@-webkit-keyframes navLi {
  100% {
    opacity: 0;
  }
}
@keyframes navLi {
  100% {
    opacity: 1;
  }
}

header nav a {
  color: #fff;
  font-family: Helvetica, HelveticaNeuel, sans-serif;
  font-size: 25px;
}

.header--main {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
    header {
      background: transparent;
      height: calc(100vh - 100px);
    }
    header nav {
      /*display: none;*/
      margin-left: 0;
      text-align: center;
    }
    header.act {
      width: 100%;
      left: 0;
      animation: none;
    }
    header.off {
      animation: none;
    }
    header nav li {
      animation: none;
      transition: opacity 0.3s 0.2s;
    }
    header.act nav li {
      margin-bottom: 50px;
      opacity: 1;
      animation: none;
    }
  
}

/**********************"***********

blog-header

*********************************/

.blog_header{
  position: relative;
  background-color: transparent;
  left: auto;
  height: auto;
  width: 100%;
    z-index: 100;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
}

.h_container{
    max-width: 1300px;
    width: 93%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 60px;
 
}

.h_right{
  display: flex;
  align-items: center;
}

.h_breadcrumb{
  display: flex;
}

.h_breadcrumb li{
  color: #747474;
  font-size: 16px;
  padding: 10px 0;
}

.h_breadcrumb li:after{
  content: "/";
  color: #747474;
  font-size: 16px;
  display: inline-block;
}

.h_breadcrumb li:first-child a:first-child{
  padding-left: 56px;
    background: url(//blog.socialis.co.jp/wp-content/uploads/2020/03/ci_icon.svg) no-repeat left / 36px;
}


.h_breadcrumb li a{
  color: #747474;
  font-size: 16px;
  transition: all 0.7s;
  padding: 10px 0;

}

.h_breadcrumb li a:hover{
  color: #747474;
  font-size: 16px;
  text-decoration: underline;
}

.search_form_icn{
  display: none;
}

.search_form_icn a{
  width: 16px;
  height: 16px;
  background: url(//blog.socialis.co.jp/wp-content/uploads/2020/03/search_icn.png) no-repeat right center / 16px;
  display: block;
}

.h_logo img{
  height: 40px;
}

/**********************"***********

footer

*********************************/


#footer {
  padding-top: 50px;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;

}
#footer nav ul {
  font-size: 0.9rem;
  text-align: center;
  padding-bottom: 30px;
}
#footer nav ul li {
  display: inline-block;
}
#footer nav a {
  color: #999999;
}
#footer nav a:hover {
  text-decoration: underline;
}

#copyright {
  text-align: center;
  padding-bottom: 10px;
  font-size: 0.9rem;
  color: #999999;
}

/**********************"***********

archive-blog

*********************************/

.blog_content {
  max-width: 1300px;
  width: 93%;
  margin: 0 auto;
}

.blog_mv_card {
  width: 100%;
  height: 770px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 56px;
}

.blog_mv_card a {
  transition: all 0.2s ease-in;
  cursor: pointer;
}



.blog_card_shadow {
  
  width: 100%;
  height: 100%;
  opacity: 0.89;
  position: relative;
  display: block;
}
.blog_card_shadow:after{
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.2s;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 31.53%, #000 100%);
}
a.blog_card_shadow:hover:after {
  opacity: 0.75;
  /* background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 80%, #000 100%); */
}

.blog_mv_content {
  position: absolute;
  bottom: 33px;
  width: 93%;
  left: 50%;
  transform: translateX(-50%);
}

.blog_mv_ttl {
  font-size: 35px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.4;
  /* max-width: 440px; */
  padding-bottom: 50px;
}

.blog_meta {
  display: flex;
  align-items: center;
  height: 60px;
}

.blog_meta_img {
  height: 60px;
  margin-right: 20px;
}

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


.blog_writer_name {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.blog_date {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
}

.blog_section_ttl {
  color: #747474;
  font-size: 40px;
  font-weight:200;
  text-transform:uppercase;
  /* font-family: Helvetica,Arial,  sans-serif; */
  letter-spacing: -0.05em;
  line-height: 1.25;
  margin-bottom: 28px;
}

.blog_topics-sec {
  margin-bottom: 73px;
}

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

.blog_topics {
  width: 48%;
  height: 430px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog_topics a {
  transition: all 0.2s ease-in;
  cursor: pointer;
}


.blog_topics a:hover {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 80%, #000 100%);
}

.blog_topics_content {
  position: absolute;
  left: 20px;
  bottom: 30px;
}

.blog_topics_ttl {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  max-width: 380px;
  padding-bottom: 20px;
}

.blog_backnum-sec {
  padding-bottom: 140px;
}

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

.blog_backnum {
  width: 32%;
  margin-right:2%;
  height: 430px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 23px;
}
.blog_backnum:nth-of-type(3n){
  margin-right:0;
}

.blog_backnum a {
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.blog_backnum a:hover {
  /* background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 80%, #000 100%); */
}

.blog_backnum_content {
  position: absolute;
  left: 20px;
  bottom: 25px;
}

.blog_backnum_ttl {
  font-size: 20px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.4;
  max-width: 380px;
  padding-bottom: 20px;
}

.blog_member_sec {
  border-top: 1px solid #ebebeb;
}

.blog_member_wrapper {
  padding: 56px 50px 30px;
}

.blog_member_sec_ttl {
  color: #000000;
  font-size: 24px;
  margin-bottom: 40px;
  padding-left: 20px;
}

.blog_member_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.blog_member {
  width: 11%;
  margin-right: 10px;
  margin-bottom: 45px;
}
.blog_member a {
  cursor: pointer;
}

.blog_member_img {
  width: 100%;
  max-width: 100px;
  margin: 0 auto 27px;
  text-align: center;
}

.blog_member_img img {
  width: 100%;
  /* max-width: 100px; */
}

.blog_member_info {
  color: #747474;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  /* height: 60px; */
  /* display: table-cell; */
  /* vertical-align: middle; */
  width: 100%;
}


.blog_member_info span{
  display: block;
}

.blog_member a *{
  transition: all 0.3s;
}

.blog_member a:hover *{
  opacity: 0.8;
}



/**********************"***********

single-blog

*********************************/

.blog_catch_img {
  width: 100%;
}

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

.blog_article {
  display: flex;
  justify-content: space-between;
  padding: 60px 10px 100px 35px;
}

.blog_article_head {
  width: 475px;

  /* margin-right: 32px; */
}

.blog_article_ttl {
  font-size: 35px;
  font-weight: 200;
  line-height: 1.4;
  color: #00cca3;
  margin-bottom: 40px;
}

.blog_article_meta {
  display: flex;
  align-items: center;
  height: 60px;
  margin-bottom: 30px;
}

.blog_article_meta_img {
  height: 60px;
  margin-right: 20px;
}

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

.blog_article_writer {
  font-size: 16px;
  margin-bottom: 5px;
}
.blog_article_writer a:hover{
  text-decoration: underline;
}

.blog_article_date {
  font-size: 14px;
}

.blog_category_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.blog_category_list li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog_category_list li > a:before {
  content: "#";
  display: inline-block;
  margin-right: 3px;
}

.blog_category_list li > a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  padding: 5px 13px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}

.blog_category_list li > a:hover {
  background: #e8e8e8;
}

.sns_icn_list {
  display: flex;
}

.sns_icn_list li a:hover .sns_icn {
  opacity: 0.8;
}

.sns_icn {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  display: block;
  transition: all 0.3s;
}

.sns_icn--twitter {
  background: url(//blog.socialis.co.jp/wp-content/uploads/2020/03/icn_twitter.png) no-repeat;
  background-size: contain;
}

.sns_icn--fb {
  background: url(//blog.socialis.co.jp/wp-content/uploads/2020/03/icn_fb.png) no-repeat;
  background-size: contain;
}

.sns_icn--line {
  background: url(//blog.socialis.co.jp/wp-content/uploads/2020/03/icn_line.png) no-repeat;
  background-size: contain;
}

.sns_icn--share {
  background: url(//blog.socialis.co.jp/wp-content/uploads/2020/03/icn_share.png) no-repeat;
  background-size: contain;
}
.addtoany_list a,
.widget .addtoany_list a{
  margin-right:10px
}
.blog_article_body {
  max-width: 750px;
  width: calc(100% - 500px);
}
.blog_article_body h2,
.blog_article_body h3,
.blog_article_body h4 {
  font-weight: 400;
  line-height: 1.7;
}

.blog_article_body h2 {
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.blog_article_body h3{
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.blog_article_body h4{
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog_article_body ul,
.blog_article_body ol{
  margin-top: 20px;
  margin-bottom: 45px;
  margin-left: 25px;
}
.blog_article_body ul{
  list-style: disc;
}
.blog_article_body ol{
  list-style: decimal;
}
.blog_article_body ul li,
.blog_article_body ol li{
  margin-bottom: 10px;
}
.blog_article_body p {
  margin-bottom: 45px;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
}
.blog_article_body p+ul,
.blog_article_body p+ol{
  margin-top: -10px;
}
.blog_article_body a{
  text-decoration: underline;
}
.blog_article_body a:hover{
  text-decoration: none;
}
.blog_article_body strong {
  font-weight: 500;
}
figure{
  max-width: 100%;
}
.blog_article_body img {
  max-width: 100%;
  width: 100%;
  height: auto;
  /* margin-bottom: 35px; */
}

.blog_writer_sec {
  border-top: 1px solid #ebebeb;
}

.blog_writer_wrapper {
  padding: 56px 50px 30px;
}

.blog_writer_sec_ttl {
  color: #000000;
  font-size: 24px;
  margin-bottom: 40px;
  padding-left: 20px;
  font-family: HelveticaNeue, Helvetica, Arial,  sans-serif;
  font-weight: bolder;
  letter-spacing: 0;
}

.blog_writer_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 710px;
  margin: 0 auto;
}

.blog_writer {
  width: 18%;
  margin-bottom: 45px;
  margin-right: 10px;
}

.blog_writer a {
  cursor: pointer;
}


.blog_writer_img {
  width: 100%;
  max-width: 100px;
  margin: 0 auto 10px;
  text-align: center;
}

.blog_writer_img img {
  width: 100%;
  height: auto;
  transition: all 0.1s;
}
.blog_writer a:hover .blog_writer_img img{
  transform: scale(1.05);
}

.blog_writer_info {
  color: #747474;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5em;
}

.blog_writer_info span{
  display: block;
}


.blog_writer a *{
  transition: all 0.3s;
}

.blog_writer a:hover *{
  opacity: 0.8;
}


/**********************"***********

responsive

*********************************/


@media (max-width: 767px) {
  .blog_content {
    padding: 0 0px;
    width:auto;
  }

  .blog_mv_card {
    height: calc( 100vh - 90px);
    margin-bottom: 40px;
  }

  .blog_mv_content {
    padding: 0px 20px 30px;
    bottom: 0;
    width: auto;
    left:0;
    transform: none;
  }

  .blog_mv_ttl {
    font-size: 24px;
    padding-bottom: 40px;
  }
  .blog_mv_ttl br{
    display: none;
  }

  .blog_topics-sec {
    margin-bottom: 60px;
  }

  .blog_topics_wrapper {
    flex-direction: column;
  }

  .blog_topics {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
  }

  .blog_topics_content {
    padding: 20px;
    left: 0;
    bottom: 0;
  }

  .blog_topics_ttl {
    font-size: 18px;
    max-width: none;
  }

  .blog_backnum-sec {
    padding-bottom: 50px;
  }

  .blog_backnum_wrapper {
    flex-direction: column;
  }

  .blog_backnum {
    width: 100%;
    height: 180px;
    overflow: visible;
    /* height: auto; */
    margin-bottom: 30px;
  }
  .blog_backnum{
    height:auto;
    margin-bottom: 20px;
    background-image: none !important;
  }
  .blog_backnum .blog_card_shadow:after{
    display:none;
  }
  .blog_backnum .blog_backnum_content{
    padding:0 0 0 110px;
    bottom:auto;
    position: relative;
  }
  .blog_backnum .blog_backnum_ttl{
    padding-bottom: 5px;
    min-height: 4.5em;
  }
  .blog_backnum .blog_backnum_ttl,
  .blog_backnum .blog_writer_name,
  .blog_backnum .blog_date{
    color: #747474;
  }
  .blog_backnum .blog_writer_name,
  .blog_backnum .blog_date{
    font-size: 12px;
    display: inline-block;
    white-space: nowrap;
    font-weight: 400;
  }
  .blog_backnum .blog_writer_name{
    margin-left: 10px;

  }
  .blog_backnum .blog_meta{
    height:auto;
  }
  .blog_backnum .blog_meta_img{
    display: none;
  }
  .blog_card_thumbnail{
    display: none;
  }

  .blog_backnum .blog_card_thumbnail{
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    background-position: center;
    background-size: cover;
  }

  .blog_backnum_content {
    padding: 15px;
    left: 0;
    bottom: 0;
  }

  .blog_backnum_ttl {
    font-size: 16px;
    max-width: none;
  }
  .blog_backnum_ttl br{
    display: none;
  }

  .blog_member_wrapper {
    padding: 20px 0 30px;
  }

  .blog_member_sec_ttl {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 10px;
  }

  .blog_member_list{
    justify-content: space-around;
  }

  .blog_member {
    margin-bottom: 30px;
    width: 30%;
    margin-right: 0;
  }

  .blog_article {
    flex-direction: column;
    padding: 25px 20px 40px;
  }

  .blog_article_head {
    width: 100%;
    margin-right: 0;
  }
  #blog_article_head_inner{
    position: relative;
    padding-bottom:30px;  
  }

  .blog_article_ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .blog_article_writer{
    font-size: 15px;
  }

  .blog_article_date{
    font-size: 15px;
  }


  .blog_category_list {
    margin-bottom: 20px;
  }

  .blog_category_list li {
    margin-bottom: 10px;
  }
  

  .blog_category_list li > a {
    font-size: 12px;
    padding: 4px 8px;
  }

  .sns_icn_list {
    margin-bottom: 30px;
  }

  .blog_article_body {
    max-width: none;
    width: 100%;
  }


  .blog_article_body h2,
  .blog_article_body h3,
  .blog_article_body h4 {
    line-height: 1.5;
  }

  .blog_article_body h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .blog_article_body h3{
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .blog_article_body h4{
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .blog_article_body ul,
  .blog_article_body ol{
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .blog_article_body ul li,
  .blog_article_body ol li{
    margin-bottom: 5px;
    font-size: 14px;
  }
  .blog_article_body p+ul,
  .blog_article_body p+ol{
    margin-top: -10px;
  }

  .blog_article_body p {
    margin-bottom: 30px;
    font-size: 14px;

  }

  .blog_article_body img {
    margin-bottom: 20px;
  }

  .blog_writer_wrapper {
    padding: 20px 0 30px;

  }

  .blog_writer_sec_ttl {
    font-size: 16px;
    padding-top:10px;
    margin-bottom: 30px;
    padding-left: 0px;
    text-align: center;
  }


  .blog_writer_list {
    /* justify-content: space-around; */
    max-width: none;
  }

  .blog_writer {
    margin-bottom: 30px;
    width: 30%;
    margin-right: 7px;
  }

  .blog_writer_img {
    margin: 0 auto 10px;
  }
  .blog_writer_info{
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5em;
  }
  .blog_writer_info span{
    
    line-height: 1.4;
  }
}


@media(max-width:767px){
  .h_breadcrumb li+li{
    display: none;
  }
  .h_breadcrumb li a{
    font-size: 14px;
    padding-top:13px;
    padding-bottom:13px;
  }
  .h_breadcrumb li:after{
    font-size: 14px;
    color:#999999
  }
  .h_right{
    display:none;
  }
  .h_container{
    width:auto;
    padding:27px 25px 18px;
  }
  .blog_article_meta{
    margin-bottom: 15px;
  }
  .blog_category_list{
    margin-bottom: 10px;
  }

  #copyright{
    font-size: 12px;
    padding-bottom:20px
  }
  .blog_catch_img {
    overflow: hidden;
  }

  .blog_catch_img img{
    transform: scale(1.1);
  }

  .blog_section_ttl{
    text-align: center;
    font-size: 30px;
    margin-bottom: 35px;
  }

  /* トップページ */
  .page-id-2 .blog_content{
      padding:20px;
  }

}


.nav-previous,
.nav-next{
  display:inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

iframe{
  max-width: 100%;
  max-height: 50vw;
}