@charset "utf-8";

/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, img, object {
    max-width: 100%;
    height: auto;
}

/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34{
    width:100%;   /*横幅いっぱいにwidthを指定*/
    height:0px;   /*高さはpaddingで指定するためheightは0に*/
    position: relative;
}
.video169{padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/}
.video34 {padding-bottom: 75%;  /*高さをpaddingで指定(4:3)*/}

.video169 iframe, .video34 iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*-----------------------------------------------------
@@ メディア
------------------------------------------------------*/
/* @@ トップ */
@media (min-width: 768px) {/* PC ここから-------------------------------- */
  .media-title-area{
    background: #2f64b3;
    border-radius: 3px;
    padding: 36px 24px;
    margin: 0 0 48px;
  }
  .media-title-area h1{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    font-family: "FOT-筑紫ゴシック Pro B","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  }
  .media-title-area h1 a{
    color: white;
  }
  .media-title-area p{
    font-size: 14px;
    line-height: 1.5;
    color: white;
    margin: 0;
  }
}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */
  .media-title-area{
    background: #2f64b3;
    /*border-radius: 2px;*/
    padding: 10px 10px;
    margin: 0 0 32px;
  }
  .media-title-area h1{
    font-size: 19px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    margin-bottom: 18px;
    font-family: "FOT-筑紫ゴシック Pro B","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  }
  .media-title-area h1 a{
    color: white;
  }
  .media-title-area p{
    font-size: 12px;
    line-height: 1.5;
    color: white;
    margin: 0;
  }
}/* スマホ ここまで================================ */




/* @@ ナビ */
@media (min-width: 768px) {/* PC ここから-------------------------------- */
  ul.media-category-list{
    font-size: 0;
    margin: 0 0 48px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    /*border: 1px solid #474b59;*/
    border-left: 1px solid #8d8e91;
    
  }
  ul.media-category-list > li{
    font-size: 14px;
    line-height: 1.2;
    padding: 0;
    border-top: 1px solid #8d8e91;
    border-right: 1px solid #8d8e91;
    border-bottom: 1px solid #8d8e91;/**/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
  }
  ul.media-category-list > li > a{
    display: block;
    width: 100%;
    text-align: center;
    line-height: 46px;
    background-color: white;
    transition-duration:0.3s;
  }
  ul.media-category-list > li.current-cat a,
  ul.media-category-list > li a:hover{
    background-color: #474b59;
    color: white;
  }
}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */
  ul.media-category-list{
    font-size: 0;
    margin: 0 0 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /*border: 1px solid #474b59;
    border-left: 1px solid #8d8e91;*/
    
  }
  ul.media-category-list > li{
    font-size: 14px;
    line-height: 1.2;
    padding: 0;
    border: 1px solid #8d8e91;/**/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 0 5px 5px 0;
  }
  ul.media-category-list > li > a{
    display: block;
    width: 100%;
    text-align: center;
    line-height: 38px;
    background-color: white;
    transition-duration:0.3s;
    padding: 0 2px;
  }
  ul.media-category-list > li.current-cat a,
  ul.media-category-list > li a:hover{
    background-color: #474b59;
    color: white;
  }
}/* スマホ ここまで================================ */




/* @@ 表示エリア */
@media (min-width: 768px) {/* PC ここから-------------------------------- */

  .media-column-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .media-column-area-content{
    width: 680px;
    position: relative;
  }
  .media-column-area-popular{
    width: 200px;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

  .media-column-area-content{
    margin-bottom: 60px;
  }

}/* スマホ ここまで================================ */



/* @@ ピックアップ */
.media-pickup-area{
  background-color: #474b59;
  padding: 5px 5px 8px;
  /*border-radius: 3px;*/
  margin-bottom: 80px;
}
.media-pickup-area h2{
  font-size: 24px;
  color: white;
  margin: 0 0 5px 0;
  line-height: 46px;
  padding-left: 10px;
  position: relative;
  font-family: "FOT-筑紫ゴシック Pro B";
}
/*.media-pickup-area h2:before{
  content: "";
  width: 45px;
  height: 56px;
  top: -10px;
  left: 2px;
  display: block;
  position: absolute;
  background: url(img/media/yubi.png) no-repeat 0 0;
  background-size: contain;
}*/



.slick-arrow{
  width: 50px;
  height: 50px;
}
.slick-prev{
  left: -20px;
  z-index: 10;
}
.slick-next{
  right: -20px;
}
.slick-prev:before,
.slick-next:before{
  font-size: 50px;
  opacity: 0.9;
  color: #aaaaaa;
}

.slider-prev,
.slider-next{
  width: 44px;
  height: 44px;
  position: absolute;
  top: 25%;
  background-size: 44px 44px !important;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.slider-prev{
  background: url(img/media/arrow1-left.png) no-repeat 0 0;
  z-index: 10;
  left: -20px;
}
.slider-next{
  background: url(img/media/arrow1-right.png) no-repeat 0 0;
  z-index: 11;
  right: -20px;
}

@media (min-width: 768px) {/* PC ここから-------------------------------- */

.slider {
  display:none;
  background-color: white;
}
.slider.slick-initialized {
  display: block;
}

ul.slider > li{
  margin: 0 2px 0 2px;
  position: relative;
}
.article-list-picup{
  width: 320px;
  /*height: 444px;*/
  height: 100%;
  margin: 0 2px 0 2px;
  padding: 18px 5px 20px 5px;
  position: relative;
  display: block;
  background-color: white;
  /*border-radius: 3px;*/
}
.article-list-cat-picup{
  color: #375eb0;
  font-size: 11px;
  font-weight: bold;
  padding: 0 8px;
  line-height: 2;
  background-color: white;
  display: inline-block;
  position: absolute;
  top: 19px;
  right: 6px;
  z-index: 10;
}
.article-list-img-pikup{
  width: 320px;
  height: 213px;
/*  object-fit: cover;
  object-position: 50% 50%;*/
  overflow: hidden;
  background-color: #707070;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

.slider {
  display:none;
  background-color: white;
}
.slider.slick-initialized {
  display: block;
}

ul.slider > li{
  margin: 0 2px 0 2px;
  position: relative;
}
.article-list-picup{
  height: 100%;
  margin: 0;
  padding: 10px 5px 20px 5px;
  position: relative;
  display: block;
  background-color: white;
  /*border-radius: 3px;*/
}
.article-list-cat-picup{
  color: #375eb0;
  font-size: 11px;
  font-weight: bold;
  padding: 0 8px;
  line-height: 2;
  background-color: white;
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 6px;
  z-index: 10;
}
.article-list-img-pikup{
  width: 100%;
  height: auto;
/*  object-fit: cover;
  object-position: 50% 50%;*/
  overflow: hidden;
  background-color: #707070;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 66.67%;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

}/* スマホ ここまで================================ */



/* @@ 記事一覧 サムネイル */
@keyframes piko1 {
    0% {transform: translate(0, 0);}
    4% {transform: translate(0, -3px);}
    8% {transform: translate(0, 0);}
  100% {transform: translate(0, 0);}
}

@media (min-width: 768px) {/* PC ここから-------------------------------- */

  h2.page-title1,
  h2.page-title2{
    font-size: 24px;
    color: white;
    line-height: 1.2;
    min-height: 57px;
    margin: 0 0 18px;
    padding: 14px 24px 15px 24px;
    position: relative;
    border-radius: 3px;
    font-family: "FOT-筑紫ゴシック Pr5N D","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    /*text-shadow: 1px 1px 8px black;*/
    box-sizing: border-box;
  }
  h2.page-title1{
    background-color: #474b59;
  }
  h2.page-title2{
    background-color: #ef651b;
  }
  .back-media{
    background-color: white;
    font-size: 11px;
    line-height: 1.2;
    padding:  4px 8px;
    border-radius: 3px;
    position: absolute;
    top: 20px;
    right: 5px;
  }

  .article-list-box1{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 40px;
  }
  .article-list-box1 a:hover{
    opacity: 0.8;
    transition-duration:0.3s;
  }

  .article-list{
    width: 330px;
    padding: 0 5px 5px 5px;
    margin-bottom: 60px;
    position: relative;
    display: block;
    box-sizing: border-box;
    background: white;
  }
  .article-list-cat{
    color: #375eb0;
    background-color: white;
    /*color: white;
    background-color: #375eb0;*/
    font-size: 10.5px;
    font-weight: bold;
    padding: 0 8px;
    line-height: 2;
    display: inline-block;
    position: absolute;
    top: 1px;
    right: 6px;
    z-index: 10;
  }
  .article-list-new{
    color: #e60033;
    font-size: 11px;
    font-weight: bold;
    padding: 0 8px;
    line-height: 2;
    background-color: #fad4d2;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 6px;
    z-index: 11;

    animation-name: piko1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
  }

  .article-list-img{
    width: 320px;
    height: 213px;
    margin: 0 auto;
  /*  object-fit: cover;
    object-position: 50% 50%;*/
    overflow: hidden;
    background-color: #707070;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .article-list-date{
    color: #8d8e91;
    font-size: 11px;
    margin: 18px 0 4px;
  }
  .article-list-title{
    color: #474b59;
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 18px;
    line-height: 1.5;
    font-family: "FOT-筑紫ゴシック Pr5N D","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    max-height: 4.3em;
    overflow: hidden;
  }
  .article-list-tag{
    font-size: 0;
  }
  .article-list-tag-category{
    font-size: 0;
    margin-bottom: 60px;
  }
  .article-list-tag > li,
  .article-list-tag-category > li{
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    font-weight: normal;
    margin: 0 19px 2px 0;
  }
  .article-list-tag-category > li.li-cat{
    margin: 0 8px 2px 0;
  }
  .article-list-tag > li > a,
  .article-list-tag-category > li.li-tag > a{
    display: block;
    color: white;
    line-height: 1.3;
    background-color: #ef651b;
    padding: 4px 6px 4px 6px;
    position: relative;
    border-radius: 2px;
    border-radius: 2px 0 0 2px;
  }
  .article-list-tag-category > li.li-cat > a{
    display: inline-block;
    color: white;
    line-height: 1.3;
    background-color: #474b59;
    padding: 4px 6px 4px 6px;
    position: relative;
    border-radius: 2px;
  }

  .article-list-tag > li > a:after,
  .article-list-tag-category > li.li-tag > a:after{
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 10px solid #ef651b;
    content: '';
    display: block;
    margin-right: -10px;
    position: absolute;
    top: 0;
    right: 0;/**/
/*  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #ef651b;
  border-width: 11px 0 11px 12px;*/
/*  content: "";
  position:absolute;
  top:0;
  right:0;
  width:0;
  height:0;
  border-style: solid;
  border-color: transparent #fff #f6ad49 transparent;
  border-width: 0 8px 8px 0;*/
  }
  .article-list-tag > li > a:hover,
  .article-list-tag-category > li.li-tag > a:hover{
    color: #333;
    background-color: #f6ad49;
    transition-duration:0.3s;
    border-width: 0 0 0 0;
  }
  .article-list-tag-category > li.li-cat > a:hover{
    color: #333;
    background-color: #8b92ae;
    transition-duration:0.3s;
  }
  .article-list-tag > li > a:hover:after,
  .article-list-tag-category > li.li-tag > a:hover:after{
   border-left: 10px solid #f6ad49;
    transition-duration:0.3s;
  }
  .article-list-tag > li > a.current-tag,
  .article-list-tag-category > li > a.current-tag{
    color: #333;
    background-color: #f6ad49;
  }
  .article-list-tag > li > a.current-tag:after,
  .article-list-tag-category > li > a.current-tag:after{
    border-left: 10px solid #f6ad49;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

  h2.page-title1,
  h2.page-title2{
    font-size: 22px;
    color: white;
    line-height: 1.2;
    /*min-height: 57px;*/
    margin: 0 0 18px;
    padding: 10px 16px;
    position: relative;
    border-radius: 3px;
    /*font-family: "FOT-筑紫ゴシック Pr5N D","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
    /*text-shadow: 1px 1px 8px black;*/
    box-sizing: border-box;
  }
  h2.page-title1{
    background-color: #474b59;
  }
  h2.page-title2{
    background-color: #ef651b;
  }

  .back-media{
    font-size: 11px;
    line-height: 1.2;
    padding:  4px 8px;
    text-align: right;
    margin: 0 0 18px;
  }

  .article-list-box1{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 40px;
  }
  .article-list-box1 a:hover img,
  .article-list-box1 a:hover .article-list-title{
    opacity: 0.8;
    transition-duration:0.3s;
  }

  .article-list{
    width: 100%;
    margin: 0 auto;
    padding: 0 5px 5px 5px;
    margin-bottom: 60px;
    position: relative;
    display: block;
    box-sizing: border-box;
    background: white;
  }
  .article-list-cat{
    color: #375eb0;
    font-size: 11px;
    font-weight: bold;
    padding: 0 8px;
    line-height: 2;
    background-color: white;
    display: inline-block;
    position: absolute;
    top: 1px;
    right: 6px;
    z-index: 10;
  }
  .article-list-new{
    color: #e60033;
    font-size: 11px;
    font-weight: bold;
    padding: 0 8px;
    line-height: 2;
    background-color: #fad4d2;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 6px;
    z-index: 11;

    animation-name: piko1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
  }

  .article-list-img{
    width: 100%;
    height: 213px;
    margin: 0 auto;
  /*  object-fit: cover;
    object-position: 50% 50%;*/
    overflow: hidden;
    background-color: #707070;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .article-list-date{
    color: #8d8e91;
    font-size: 11px;
    margin: 18px 0 4px;
  }
  .article-list-title{
    color: #474b59;
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 18px;
    line-height: 1.5;
    font-family: "FOT-筑紫ゴシック Pr5N D","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    max-height: 4.3em;
    overflow: hidden;
  }
  .article-list-tag{
    font-size: 0;
  }
  .article-list-tag-category{
    font-size: 0;
    margin-bottom: 30px;
  }
  .article-list-tag-single{
    font-size: 0;
    margin-bottom: 30px;
  }
  .article-list-tag > li,
  .article-list-tag-category > li{
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    margin: 0 16px 2px 0;
  }
  .article-list-tag-category > li.li-cat{
    margin: 0 8px 2px 0;
  }
  .article-list-tag > li > a,
  .article-list-tag-category > li.li-tag > a{
    display: block;
    color: white;
    line-height: 2;
    background-color: #ef651b;
    padding: 0 0 0 6px;
    position: relative;
    border-radius: 2px 0 0 2px;
  }
  .article-list-tag-category > li.li-cat > a{
    display: inline-block;
    color: white;
    line-height: 2;
    background-color: #474b59;
    padding: 0 6px;
    position: relative;
    border-radius: 2px;
  }

  .article-list-tag > li > a:after,
  .article-list-tag-category > li.li-tag > a:after{
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 10px solid #ef651b;
    content: '';
    display: block;
    margin-right: -10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .article-list-tag > li > a:hover,
  .article-list-tag-category > li.li-tag > a:hover{
    color: #333;
    background-color: #f6ad49;
    transition-duration:0.3s;
  }
  .article-list-tag > li > a:hover:after,
  .article-list-tag-category > li.li-tag > a:hover:after{
   border-left: 10px solid #f6ad49;
    transition-duration:0.3s;
  }
  .article-list-tag > li > a.current-tag,
  .article-list-tag-category > li > a.current-tag{
    color: #333;
    background-color: #f6ad49;
  }
  .article-list-tag > li > a.current-tag:after,
  .article-list-tag-category > li > a.current-tag:after{
   border-left: 10px solid #f6ad49;
  }

}/* スマホ ここまで================================ */


/* @@ 人気記事 */

  h2.title-popular{
    color: white;
    font-size: 16px;
    background-color: #282828;
    padding: 15px 0;
    text-align: center;
    border-radius: 3px 3px 0 0;
  }
  h2.title-popular:before{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(img/media/crown.png) no-repeat 0 2px;
    background-size: 20px 20px;
    margin-right: 2px;
  }

@media (min-width: 768px) {/* PC ここから-------------------------------- */


  .wpp-list{
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 18px 10px 10px;
    background-color: #eeeeee;
    border-radius: 0 0 3px 3px;
    margin-bottom: 36px;
    counter-reset: my-counter;
  }
  .wpp-list > li{
    margin: 0 0 30px;
    position: relative;
  }
  .wpp-list > li:nth-child(1):after,
  .wpp-list > li:nth-child(2):after,
  .wpp-list > li:nth-child(3):after,
  .wpp-list > li:nth-child(4):after,
  .wpp-list > li:nth-child(5):after{
    content: "";
    position: absolute;
    top: -8px;
    left: -4px;
    width: 60px;
    height: 60px;
    display: inline-block;
  }
  .wpp-list > li:nth-child(1):after{
    background: url(img/media/ranking1.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(2):after{
    background: url(img/media/ranking2.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(3):after{
    background: url(img/media/ranking3.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(4):after{
    background: url(img/media/ranking4.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(5):after{
    background: url(img/media/ranking5.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li > a{
    display: block;
    position: relative;
  }

  .wpp-list > li > a img{
    display: block;
    margin: 0 auto;
  }
  .wpp-list > li > a:hover{
    opacity: 0.8;
    transition-duration:0.3s;
  }
  .wpp-list > li > a p{
    color: #474b59;
    font-size: 12px;
    font-weight: bold;
    display: block;
    height: 2.7em;
    overflow: hidden;
    margin: 12px 0;
  }
  .wpp-list > li > a span{
    display: inline-block;
    font-size: 11px;
    margin: 0;
    background-color: #375eb0;
    color: white;
    line-height: 1.2;
    padding: 2px 4px;
  /*  border-radius: 3px;*/
    position: absolute;
    top: 0;
    right: 0;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

  .wpp-list{
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 18px 10px 10px;
    background-color: #eeeeee;
    margin-bottom: 24px;
  }
  .wpp-list > li{
    margin: 0 0 16px;
    min-height: 68px;
    position: relative;
  }
  .wpp-list > li:nth-child(1):after,
  .wpp-list > li:nth-child(2):after,
  .wpp-list > li:nth-child(3):after,
  .wpp-list > li:nth-child(4):after,
  .wpp-list > li:nth-child(5):after{
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 60px;
    height: 60px;
    display: inline-block;
  }
  .wpp-list > li:nth-child(1):after{
    background: url(img/media/ranking1.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(2):after{
    background: url(img/media/ranking2.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(3):after{
    background: url(img/media/ranking3.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(4):after{
    background: url(img/media/ranking4.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li:nth-child(5):after{
    background: url(img/media/ranking5.png) no-repeat 0 0;
    background-size: 30px 30px;
  }
  .wpp-list > li > a{
    display: block;
    position: relative;
  }

  .wpp-list > li > a img{
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: auto;
  }
  .wpp-list > li > a:hover{
    opacity: 0.8;
    transition-duration:0.3s;
  }
  .wpp-list > li > a p{
    color: #474b59;
    font-size: 12px;
    font-weight: bold;
    display: block;
    height: 5.4em;
    overflow: hidden;
    /*background: pink;*/
    margin: 0;
    margin-left: 110px;
    
  }
  .wpp-list > li > a span{
    display: inline-block;
    font-size: 11px;
    margin: 0;
    background-color: #375eb0;
    color: white;
    line-height: 1.2;
    padding: 2px 4px;
  /*  border-radius: 3px;*/
    position: absolute;
    top: 0;
    left: 0;
  }

}/* スマホ ここまで================================ */



/* @@ タグクラウド */

h2.title-tag{
  background-color: #282828;
  color: white;
  padding: 4px 8px;
  margin-bottom: 16px;
  border-radius: 3px;
}

/*
.tag-cloud{
}
.tag-cloud a{
  margin-right: 8px;
}
.tag-cloud a:hover{
  color: #ef651b;
  text-decoration: underline;
}
*/


/* @@ Simple Tags を使ったタグのリスト */

  .st-tag-cloud{
    font-size: 0;
  }
  .st-tag-cloud > li{
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    font-weight: normal;
    /*margin: 0 16px 2px 0;*/
    margin: 0 6px 6px 0;
  }
  .st-tag-cloud > li > a{
    display: block;
    color: white;
    line-height: 1.3;
    background-color: #ef651b;
    padding: 5px 7px;
    position: relative;
    /*border-radius: 2px 0 0 2px;*/
    border-radius: 2px;
  }
  .st-tag-cloud > li > a:hover{
    color: #333;
    background-color: #f6ad49;
    transition-duration:0.3s;
    /*border-width: 0 0 0 0;*/
  }



/* @@ 記事ページ */
@media (min-width: 768px) {/* PC ここから-------------------------------- */

  .header-single{
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 12px 4px;
  }
  h1.c-article-tit-lv1{
    line-height: 1.3;
  }
  .header-single-image{
    text-align: center;
    margin-top: 24px;
  }
  .c-article-info{
    line-height: 1.2;
    margin:  12px 0 0 !important;
  }
  .c-article-info-item.inline{
    margin: 0 0 4px !important;
  }

  .c-article-section {
      margin: 20px 0 50px;
  }

  .c-article-header-col{
    width: 50%;
    padding: 8px;
    margin: 0 auto;
  }

  .c-article-share-new {
    margin: 38px 0 60px;
    overflow: hidden;
  }

  h3.h3-single-header{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #707070;
    padding-bottom: 12px;
    margin-bottom: 18px;
    margin-top: 60px;
  }

  h4.column-footer{
    font-size: 14px;
    font-weight: bold;
  } 

  ul.related-posts-list{
    font-size: 0;
  }
  ul.related-posts-list > li{
    padding: 0 0 15px 0;
    margin: 0 5px 15px 5px;
    list-style-type: none;
    border-bottom: 1px solid #dddddd;
  }
  ul.related-posts-list > li > a{
    display: flex ;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  ul.related-posts-list > li > a > div:nth-child(1){
    width: 97px;
    margin-right: 15px;
  }
  ul.related-posts-list > li > a > div:nth-child(2){
    flex: 1;
  }
  ul.related-posts-list > li > a > div:nth-child(2) h4{
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 4px;
  }
  ul.related-posts-list > li > a > div:nth-child(2) p{
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
  }

  ul.article-share-list{
    font-size: 0;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  ul.article-share-list > li{
    font-size: 15px;
    margin-right: 25px;
  }


/* 既存のCSSの置換え（記事の幅が狭くなるので修正）*/

  /*インタビュー画像右側にあるのを真ん中に*/
  .media-column-area-content .c-article-side {
    width: auto;
    float: none;
  }
  .media-column-area-content .c-pic-square {
    margin: 0 auto;
  }

   /*表の見出し　幅固定解除、改行させない*/
  .media-column-area-content .c-table > tbody th {
    background: #f5f5f5;
    width: auto;
    white-space: nowrap;
    padding: 28px;
  }

  /*インタビューの先頭の画像が並んでる所*/
  .media-column-area-content .c-article-header {
    display: block;
    margin-top: 12px;
  }

  /*画像幅固定を解除*/
  .media-column-area-content .c-article-pic {
    width: auto;
  }

  .media-column-area-content .c-recruit-table > tbody > tr > th {
    white-space: nowrap;
  }



}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

  .header-single{
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 12px 4px;
  }
  h1.c-article-tit-lv1{
    line-height: 1.3;
  }
  .header-single-image{
    text-align: center;
    margin-top: 20px;
  }
  .c-article-info{
    line-height: 1.2;
    margin:  12px 0 0 !important;
  }
  .c-article-info-item.inline{
    margin: 0 0 4px !important;
  }

  .c-article-section {
      margin: 0px;
  }

  .c-article-header-col{
    width: 50%;
    padding: 8px;
  }

  .c-article-share-new {
    margin: 38px 0 60px;
    overflow: hidden;
  }

  h3.h3-single-header{
    font-size: 17px;
    font-weight: bold;
    border-bottom: 2px solid #707070;
    padding-bottom: 12px;
    margin-bottom: 18px;
    margin-top: 60px;
  }

  ul.related-posts-list{
    font-size: 0;
  }
  ul.related-posts-list > li{
    padding: 0 0 15px 0;
    margin: 0 5px 15px 5px;
    list-style-type: none;
    border-bottom: 1px solid #dddddd;
  }
  ul.related-posts-list > li > a{
    display: flex ;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  ul.related-posts-list > li > a > div:nth-child(1){
    width: 97px;
    margin-right: 15px;
  }
  ul.related-posts-list > li > a > div:nth-child(2){
    flex: 1;
  }
  ul.related-posts-list > li > a > div:nth-child(2) h4{
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 4px;
  }
  ul.related-posts-list > li > a > div:nth-child(2) p{
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
  }

  ul.article-share-list{
    font-size: 0;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  ul.article-share-list > li{
    font-size: 15px;
    margin-right: 25px;
  }



/* 既存のCSSの置換え（記事の幅が狭くなるので修正） */

  /*インタビューの先頭の画像が並んでる所*/
  .media-column-area-content .c-article-header {
    margin-top: 12px;
  }

  /*インタビュー受けた人　左右の線削除*/
  .media-column-area-content .c-box {
    border-left: none;
    border-right: none;
  }


}/* スマホ ここまで================================ */

.fb-like,.fb-like span,.fb-like iframe{
 /*width:100% !important;*/
}

/* 既存のCSSの置換え（記事の幅が狭くなるので修正）　PC、スマホ共通*/

  /*目次がtable-cellになってるので解除*/
  .media-column-area-content .c-article-index-list > li > a {
    display: inline;
  }




/*-----------------------------------------------------
@@ トップに戻る
------------------------------------------------------*/
@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

  #jsPageTop{
    position: fixed;
    z-index: 200;
  }

}/* スマホ ここまで================================ */




/*-----------------------------------------------------
@@ 位置固定 「新規会員登録」ボタン
------------------------------------------------------*/
@media (min-width: 768px) {/* PC ここから-------------------------------- */

  .fixed-area1{
    position: fixed;
    bottom: -200px; /*始めは隠しておく*/
    right: 0;
    background-color: rgba(0,0,0, 0.7);
    padding: 10px;
    z-index:100;
    text-align: center;
  }
  .fixed-area1 p.fixed-area1-text1{
    margin: 10px auto 0;
    padding: 0;
    color: white;
    text-indent: 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    display:contents;
  }
  .fixed-area1 p.fixed-area1-text2{
    margin: 10px auto 0;
    padding: 0;
    color: white;
    text-indent: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    display: none;
  }
  a.fixed-area1-btn1{
    color: #fff;
    /*font-family: "FOT-筑紫ゴシック Pro B";*/
    font-size: 15px;
    line-height: 1;
    background: #2f64b3;
    display: inline-block;
    padding: 14px 34px 14px 12px;
    margin: 10px auto 0px;
    text-shadow: 0 1px 2px rgba(4, 0, 0, 0.15);
    position: relative;
    width:100%;
  }
  a.fixed-area1-btn1:after {
    content: '';
    display: inline-block;
    background: url("/common/img/ic_btn_cv.png") no-repeat;
    width: 16px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
  }

  a.fixed-area1-btn2{
    color: #fff;
    /*font-family: "FOT-筑紫ゴシック Pro B";*/
    font-size: 14px;
    line-height: 1;
    background: #ff8000;
    display: none;
    padding: 15px;
    margin: 15px auto;
    text-shadow: 0 1px 2px rgba(4, 0, 0, 0.15);
    position: relative;
    width: 100%;
  }
  a.fixed-area1-btn2:after {
    content: '';
    display: inline-block;
    background: url("/common/img/ic_btn_cv.png") no-repeat;
    width: 16px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -8px;
  }

  .fixed-area1-close-btn{
    position: absolute;
    display: inline-block;
    background-color: #e81123;
    color: white;
    top: 2px;
    right: 2px;
    cursor: pointer;
    padding: 3px 6px;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

  body.use-fixed-area1{
    padding-bottom: 114px;
  }

  .fixed-area1{
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: rgba(0,0,0, 0.7);
    padding: 10px;
    z-index: 10;
    text-align: center;
    box-sizing: border-box;
  }
  .fixed-area1 p.fixed-area1-text1{
    margin: 10px auto 0;
    padding: 0;
    color: white;
    text-indent: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    display:contents;
  }
  .fixed-area1 p.fixed-area1-text2{
    margin: 10px auto 0;
    padding: 0;
    color: white;
    text-indent: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    display: none;
  }
  a.fixed-area1-btn1{
    color: #fff;
    /*font-family: "FOT-筑紫ゴシック Pro B";*/
    font-size: 14px;
    line-height: 1;
    background: #2f64b3;
    display: inline-block;
    padding: 14px 34px 14px 12px;
    margin: 10px auto 0px;
    text-shadow: 0 1px 2px rgba(4, 0, 0, 0.15);
    position: relative;
    width:100%;
  }
  a.fixed-area1-btn1:after {
    content: '';
    display: inline-block;
    background: url("/common/img/ic_btn_cv.png") no-repeat;
    width: 16px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
  }

  a.fixed-area1-btn2{
    color: #fff;
    /*font-family: "FOT-筑紫ゴシック Pro B";*/
    font-size: 14px;
    line-height: 1;
    background: #ff8000;
    display: none;
    padding: 15px;
    margin: 15px auto;
    text-shadow: 0 1px 2px rgba(4, 0, 0, 0.15);
    position: relative;
    width: 100%;
  }
  a.fixed-area1-btn2:after {
    content: '';
    display: inline-block;
    background: url("/common/img/ic_btn_cv.png") no-repeat;
    width: 16px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
  } 

}/* スマホ ここまで================================ */


/*-----------------------------------------------------
@@ 箇条書き
------------------------------------------------------*/
/* @@ なんか */

@media (min-width: 768px) {/* PC ここから-------------------------------- */

}/* PC ここまで================================ */

@media screen and (max-width: 767px) {/* スマホ ここから-------------------------------- */

}/* スマホ ここまで================================ */
