@charset "UTF-8";

/*
 Theme Name:   xeory_base Child
 Theme URI:    http://xeory.jp
 Description:  xeory_base Child Theme
 Author:       hashiba
 Author URI:   https://www.dirpedia.com
 Template:     xeory_base
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  xeory_base-child
*/

body{
  background:#FFF;
  /* font-family: 'Arial','YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','ＭＳ ゴシック','sans-serif'; */
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  margin: 0px;
  padding: 0px;
}

/* ヘッダー上部
------------------------------ */
header{
  width: 100%;
}

.head{
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

.head h1{
  margin: 10px;
}

.head h1 img{
  width: 280px;
}

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

.head_inner{
  display: flex;
  align-items:center;
  width: 50%;
  justify-content:flex-end;
}

#nav-drawer{
  display: none;
}

#nav-content{
  display: none;
}

/* ヘッダーナビゲーション外側
------------------------------ */
.head_nav{
  padding: 30px;
}

.head_nav p{
  position: relative;
  padding: 35px 30px;
  text-decoration: none;
  color: #000;
  font-weight:bold;
}

.head_nav p:hover{
  color: #c71585;
}

/* ヘッダーナビゲーション内側
------------------------------ */
.head_nav2{
  background: #c71585;
  text-align: center;
  height: 100px;
  display:none;
  position: absolute;
  z-index: 9999;
  top: 70px;
  left: 0px;
  width: 100%;
}

.head_nav :hover + .head_nav2{
  display: block;
}
.head_nav2:hover{
  display: block;
}

.head_nav2:hover + .head_nav p{
  color: #c71585;
}

.head_nav2 li{
  list-style: none;
  display: inline-block;
  margin: 30px 0px;
}
.head_nav2 li a{
  text-decoration: none;
  color: #000;
  padding: 35px 30px;
  font-weight:bold;
}

.head_nav2 li :hover{
  color: #FFF;
}

/* ヘッダー人気サイトを見るボタン
------------------------------ */
.head_popularity span{
  background: #000;
  padding: 15px 30px;
  border-radius: 25px;
  margin-right: 20px;
}

.head_popularity span:hover{
  background: #c71585;
}

.head_popularity a{
  color: #FFF;
  text-decoration: none;
}


/*コンテンツ部分
------------------------------ */
.content{
  width: 100%;
  margin: 0 auto;
  padding-top:20px;
  padding-bottom:20px;
  display: flex;
  justify-content: center;
}

/*メイン部分
------------------------------ */
.main{
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;
  align-content:flex-start;
}

/*サイドバー部分
------------------------------ */
.side{
  width: 290px;
  margin-left: 10px;
}

.side-title-inner{
  display: block;
  text-align:center;
  font-weight:bold;
  font-size: 1.5rem;
}

.side-title-inner::after{
  content: "";
  display: block;
  background: #c71585;
  width: 40px;
  height: 3px;
  margin: 0 auto;
}

/*サイドバー人気記事調整
------------------------------ */

.wpp-list img{
  width: 40%;
  height: auto;
  margin-right: 10px;
}

.wpp-post-title{
  font-size:1.0rem;
  font-weight: bold;
}

.wpp-list li:hover{
  opacity: 0.5;
}

.wpp-list li a:hover{
  color: #5e6265;
}



/*フッター部分
------------------------------ */
.foot_area{
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.foot_area a img{
  width: 280px;
}

.foot_area p{
  font-size: 12px;
}

/*記事一覧表示
------------------------------ */

#content_bg{
  background-color: #f0f0f0;
}

article{
  width: 45%;
  height: 500px;
  box-shadow:5px 5px 15px 1px #ededed;
}

article.post{
  border: none;
}

article:hover a{
  text-decoration: none;
}

article:hover{
  box-shadow:5px 5px 15px 1px #c9c9c9;
}

.img-wrap {
  position: relative;
}

/*  アイキャッチ */
.img-wrap img{
  width: 100%;
}

/*  カテゴリー */
.cat-data{
  position: absolute;
  top:0px;
  background: #c71585;
  padding: 3px;
  color: #FFF;
  font-size: 12px;
}

.text{
  padding: 30px;
}

/*  記事タイトル */
.text h2{
  color: #000;
  font-size:  1.5rem;
}

/*  投稿日 */
.article-date{
  font-size: 0.75rem;
  color: #999;
}

/* スマホ、タブレット
------------------------------ */
@media screen and (max-width: 991px){
  header{
    width: 100%;
    position: fixed;
    z-index: 9998;
    background: #FFF;
    top:0px;
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  }

  .head_inner{
    display:none;
  }

  /*コンテンツ部分 スマホ、タブレット
  ------------------------------ */
  .content{
    margin-top:90px;
    display: block;
    padding-top: 0px;
  }

  /*メイン部分 スマホ、タブレット
  ------------------------------ */
  .main{
    display: block;
  }

  /*記事一覧表示 スマホ、タブレット
  ------------------------------ */
  article{
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /*サイドバー部分 スマホ、タブレット
  ------------------------------ */
  .side{
    width: 80%;
    margin: 0 auto;
  }

  /*フッター部分 スマホ、タブレット
  ------------------------------ */
  .foot_area{
    padding-left: 10px;
  }

  /* ハンバーガーメニュー スマホ、タブレット
  ------------------------------ */
  /*チェックボックス非表示*/
  .nav-unshown {
    display:none;
  }

  #nav-drawer{
    display:block;
    position: absolute;
    right:0px;
    top: 30px;
    width: 100%;
  }

  /*アイコンのスペース*/
  #nav-open {
    display: block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: absolute;
    right: 5px;
    cursor: pointer;
  }

  /*ハンバーガーアイコンをCSSで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #000;
    display: block;
    content: '';
  }

  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }

  /*中身*/
  #nav-content {
    position:fixed;
    top: 70px;
    left: 0px;
    right: 0px;
    z-index: 9997;
    width: 100%;
    height:100%;
    background: rgba(255, 255, 255, 0.9);
    }

  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
  }

  #nav-input:checked ~ #nav-content {
    display: block;
  }


  /*ハンバーガーメニュー内のナビゲーション*/

  #nav-content p{
    text-align: center;
    margin: 0px;
    font-size: 20px;
    background: #FFF;
  }

  #nav-content ul{
    margin: 0 auto;
    padding: 0px;
    margin-bottom: 5px;
    background: #FFF;
  }

  #nav-content li {
    display: block;
    list-style: none;
    position: relative;
    border-bottom: 1px solid #d9d9d9;
  }

  #nav-content li a{
    text-decoration: none;
    display: block;
    color: #000;
    padding: 10px;
  }

  #nav-content li a:hover{
    text-decoration: underline;
  }

  #nav-content li ::after{
    font-family: "Font Awesome 5 Free";
    content: '\f054';
    font-weight: 900;
    margin-right: 5px;
    font-size: 10px;
    position: absolute;
    right: 10px;
    top:15px;
  }

  /* ヘッダー人気サイトを見るボタン スマホ、タブレット
  ------------------------------ */
  .head_popularity{
    text-align: center;
    margin-top: 30px;
  }
}/* スマホ、タブレットここまで


/*個別表示ページ single.php
------------------------------ */
.post-header{
  position: static;
  box-shadow: none;
  width: 100%;
  padding: 30px 50px 0;
}

article[id^="post-"]{
  box-shadow:none;
  width: 100%;
  height: 100%;
  margin-right: 20px;
}
#content{
  background:#f0f0f0;
  height: 100%;
  display:flex;
  }

.post-meta{
  border: none;
  color:#999;
  display: flex;
  justify-content:flex-end;
  margin-bottom: 5px;
}
.post-meta li{
  font-size: 12px;
  padding: 0px;
  margin: 0px;
}

.post-content{
  background: #FFF;
}

.post-thumbnail{
  width: -webkit-calc(100% + 128px);
  width: calc(100% + 128px);
  position: relative;
  left: 64px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.post-thumbnail img{
  width: 100%;
  margin: 0 auto;
}

/* /*個別表示ページの上部のカテゴリー
------------------------------ */
.post_cat-data{
display: inline-block;
background: #c71585;
padding: 3px;
font-size: 12px;
}
.post_cat-data a{
  color: #FFF;
}

/* /*個別表示ページの目次
------------------------------ */
#toc_container{
  border: none;
  width: 100%;
  padding: 30px;
}

#toc_container p.toc_title{
  font-size: 1.5rem;
  font-weight: normal;
}

.toc_list li a{
  color: #000;
  text-decoration: none;
}

.toc_list li a:hover{
  color: #0580c4;
  text-decoration: none;
}

a[href^="#h2"]{
  font-size: 1.5rem;
}

a[href^="#h3"]{
  font-size: 1rem;
}


/* h2
------------------------------ */
.post-content h2{
  border-bottom: 1px solid #c71585;
}

/* h3
------------------------------ */
.post-content h3{
  border-left: 5px solid #c71585;
}

/* /*個別表示ページ下部
------------------------------ */
.post-footer{
  background: #FFF;
  border-top: solid 1px #f0f0f0;
}


/* /*固定ページ
------------------------------ */
article.page{
  border: none;
}

/* /*個別表示ページ single.php スマホ、タブレット
------------------------------ */
@media screen and (max-width: 991px){

  .wrap{
    margin: 0 auto;
    margin-top: 70px;
  }

  article[id^="post-"]{
    box-shadow:none;
    width: 100%;
  }

  .post-header{
    padding: 10px;
  }

  .post-thumbnail{
    position: static;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 20px;
  }

  .post-thumbnail img{
    width: 100%;
  }

  .breadcrumb{
    display: none;
  }


  /* /*個別表示ページ下部 スマホ、タブレット
  ------------------------------ */
  .bzb-sns-btn {
    margin-top: 30px;
  }
}

/* Pagenation
------------------------------ */
.pagenation {
  margin: 0 auto;
  margin: 1em 0;
  width: 100%;
}
.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.pagenation ul {
  margin: 0 auto;
  display:flex;
  justify-content: center;
}
.pagenation li {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
  background-color: #999999;
  border-radius: 3px;
  color: #FFFFFF;
  cursor: not-allowed;
  padding: 10px 20px;
}
.pagenation li a {
  background: none repeat scroll 0 0 #CCCCCC;
  border-radius: 3px;
  color: #FFFFFF;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.pagenation li a:hover {
  background-color: #c71585;
  color: #FFFFFF;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
  box-shadow:5px 5px 15px 1px #c9c9c9;
}
