@charset "utf-8";
/*
theme Name: オリジナルテーマ
Author: I's Creation
Description: original theme
version： 1.0.0
*/
/*サイト全体の基準となるCSSを記述*/


/*============================================================================
  ヘッダー
============================================================================*/
.header-inner {
  width: 100%;
  max-width: 2048px;
  min-width: 1000px;
  padding: 15px 0;
  z-index: 10;
  display: table;
  position: fixed;
  background-color: #fff;
}
.header-nav li a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  position: relative;
}
.header-inner h1 {
  font-size: 5px;
}
.site-title a img {
  width: auto;
  display: table-cell;
  text-align: left;
  width: 197px;
  height: 44px;
}
.site-title-wrap {
  margin-left: 98px;
}
.header-nav-wrap {
  display: table-cell;
  vertical-align: middle;
  padding-right: 30px;
}
.header-nav-wrap ul {
  float: right;
}
.header-nav li {
  display: inline;
  list-style: none;
  float: left;
  padding-left: 30px;
  text-align: right;
}
.header-nav li a::after {
  position: absolute;
  bottom: -8px;
  left: 25%;
  content: '';
  width: 50%;
  height: 2px;
  border-radius: 20px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.header-nav li a:hover::after {
  transform: scale(1, 1);
}

/*============================================================================
  記事部分
============================================================================*/
/*記事＋サイドバー*/
.container {
  padding-top: 85px;
  width: 1100px;
  margin: 0 auto;
}
.bread-wrap {
  position: absolute;
  top: 74px;
  max-width: 2048px;
  width: 100%;
  background-color: #262626;
}
#breadcrumb {
  width: 1100px;
  margin: 0 auto;
  padding: 3px 34px;
}
#breadcrumb span {
  font-size: 13px;
  color: #fcfcfc;
}
#breadcrumb a {
  text-decoration: none;
  transition-duration: 0.3s;
}
#breadcrumb a span:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}

/*記事部分*/
.contents {
  float: left;
  width: 768px;
  padding: 0 34px;
  margin-bottom: 100px;
}
.article-img img {
  width: 100%;
  height: auto;
  display: block;
}
.article-info {
  margin: 50px 0 25px 0 ;
}
.cat-data a {
  padding: 0.4em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #262626;
  font-size: 13px;
  font-weight: 400;
  float: left;
  margin: 0 5px 5px 0;
  transition-duration: 0.3s;
  line-height: 16px;
}
.cat-data a:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}
.kiji-wrap {
  margin-top: 60px;
}
.kiji-wrap .article-info .article-date {
  font-size: 13px;
  color: #616161;
  float: right;
  padding: 0.4em;
}
.kiji-wrap h1 {
}
.kiji-wrap p {
  margin-bottom: 20px;
}
.honbun {
  margin: 50px 0;
}
.honbun h2 {
  color: #181d32;
  font-size: 20px;
  margin: 50px 0 20px 0;
  border-left: solid 2px #181d32;
  background-color: #FCFCFC;
  padding: 4px 15px;
  box-shadow:0px 0px 10px 0px #f5f5f5 inset;
}
.honbun h3 {
  margin: 50px 0 20px 0;
  border-bottom: solid 1px #777;
  color: #555;
  padding-left: 5px;
  font-weight: bold;
  font-size: 20px;
}


/*記事下タグ*/
.article-tag {
  margin: 50px 20px 50px 0;
}
.article-tag ul {
  display: inline;
  margin-left: 5px;
}
.article-tag li {
  display: inline;
  list-style: none;
  text-decoration: none;
  color: #000;
  margin: 0 5px;
}
.article-tag li:after {
  content: '/';
  padding-left: 15px;
}
.article-tag li:last-child:after {
  content: none;
}
.article-tag li a {
  font-size: 15px;
  text-decoration: none;
  color: #000;
  transition-duration: 0.3s;
}
.article-tag li a:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}

/*============================================================================
  関連記事（記事下）
============================================================================*/
.under-list {
  margin: 70px 0 50px 0;
  padding-top: 5px;
}
.under-list h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #181d32;
  padding: 30px 0;
}
.under-list .article-list {
  width: 340px;
  height: 365px;
  overflow: hidden;
  float: left;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
  -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
  margin-bottom: 20px;
}
.under-list .article-list:nth-child(2n) {
  margin-right: 20px;
}
.under-list .article-list .img-wrap {
  width: 340px;
  height: 204px;
  overflow: hidden;
}
.under-list .article-list .img-wrap div {
  height: 204px;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition-duration: 1s;
}
.under-list .article-list .img-wrap div:hover {
  transform: scale(1.1);
  transition-duration: 1s;
}
.under-list .article-list .article-date {
  margin: 0 10px;
}
.under-list .article-list .article-date time {
  font-size: 13px;
  color: #555;
  display: inline-block;
  padding: 16.5px 0;
}
.under-list .article-list .article-date time:after {
  content: '|';
  padding: 0 5px;
}
.under-list .article-list .article-date a {
  color: #555;
  font-size: 13px;
  text-decoration: none;
  transition-duration: 0.3s;
  min-width: 48px;
  display: inline-block;
  padding: 16.5px 0;
}
.under-list .article-list .article-date a:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}
.under-list .article-list .text {
  margin: 0 10px;
}
.under-list .article-list a {
  text-decoration: none;
}
.under-list .article-list a .text:hover {
  opacity: 0.7;
}
.under-list .article-list a .text span {
  font-size: 16px;
  padding: 10px 5px 5px 0;
  color: #181d32;
  font-weight: bold;
}

.under-list .article-list a .text p {
  font-size: 14px;
  text-decoration: none;
  color: #333;
}
/*アーカイブページのボーダートップ削除*/
.under-list.kiji-list {
  border: none;
}
/*検索結果ページのマージン設定*/
.under-list .search-wrap .article-list:nth-child(2n) {
  margin-right: 0;
}
.under-list .search-wrap .article-list:nth-child(2n+1) {
  margin-right: 20px;
}
/*============================================================================
  サイドバー
============================================================================*/
#sidebar {
  float: left;
  width: 332px;
  padding: 0 16px;
}
/*新着記事*/
.side-new {
  width: 100%;
  max-width: 300px;
  margin: 155px 0 0 0; 
}
.side-new .article-list {
  margin-bottom: 20px;
  border: none;
  display: block;
  position: relative;
}
.side-new .article-list:hover {
  background-color: #eee;
}
.side-new .article-list a {
  text-decoration: none;
}
.side-new .article-list .img-wrap {
  width: 300px;
  height: 180px;
  overflow: hidden;
}
.side-new .article-list .img-wrap div {
  position: relative;
  height: 180px;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition-duration: 1s;
  }
.side-new .article-list .img-wrap div:hover {
  transform: scale(1.1);
  transition-duration: 1s;
}
.side-new .article-list .img-wrap div::before{
  background-color: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}
.side-new .article-list .text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform:translate(-50%, 0);
  width: 80%;
}
.side-new .article-list .text span {
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  color: #fff;
  text-align: center;
}
.side-new .article-list .text p {
  font-size: .8125rem;
  line-height: 1.7;
}
/*カレンダー*/
#wp-calendar {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
#wp-calendar a {
  text-decoration: none;
  color: #004DA2;
}
#wp-calendar #prev {
  text-align: left;
  padding-top: 10px;
}
#wp-calendar #next {
  text-align: right;
  padding-top: 10px;
}

/*ウィジェット*/
.sidebar-inner {
  width: 100%;
  max-width: 300px;
}
.sidebar-wrapper {
  margin: 50px 0;
  padding: 0;
}
.sidebar-wrapper li {
  list-style: none;
  padding: 5px 10px;
}
.sidebar-wrapper li a {
  text-decoration: none;
  color: #181d32;
  transition-duration: 0.3s;
}
.sidebar-wrapper li a:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}
.sidebar-title {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #181d32;
  margin: 20px 0;
  border-bottom: solid 0.5px #CCCED0;
}
.sidebar-inner .cat-item a:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f07c";
  padding-right:5px; 
  color: #777;
}

/*タグクラウド*/
.tagcloud {
  padding: 0 10px 20px 10px;
}
.tagcloud a {
  display: inline;
  text-decoration: none;
  color: #262626;
  font-size: 16px!important;
  padding-right: 10px;
}
.tagcloud a:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}
.tagcloud a:before {
  content: '#';
}

/*サイト内検索*/
.searchform {
  position: relative;
} 
.searchfield {
  font-size: 14px;
  width: 100%;
  margin: 3px;
  padding: 10px;
  border: solid 1px #bbb;
  border-radius: 4px;
  background-color: #efefef;
}
.searchsubmit {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4em;
  color: #777;
  position: absolute;
  top: 0;
  right: 10px;
  margin-top: 10px;
  padding: 0;
  cursor: pointer;
  border: none;
  background: transparent;
}
.searchsubmit:hover {
  opacity: .6;
}

/*============================================================================
  リスト、テーブル
============================================================================*/
/*リスト*/
.honbun ul {
  margin: 10px 20px;
  list-style: none; 
}
.honbun ul li {
  padding: 5px 0;
}
.honbun ul li:before {
    content:  "";
    width:  10px;               
    height:  10px;              
    display:  inline-block;     
    background-color: #555;  
    border-radius:  50%;        
    position:  relative;        
    top: -1px;                  
    margin-right: 5px;          
}
.honbun ol {
    counter-reset:number;
    list-style-type: none!important;
    margin: 10px 20px;
}
.honbun ol li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5em;
    padding: 0.5em 0.5em 0.5em 30px;
}
.honbun ol li:before{
    position: absolute;
    counter-increment: number;
    content: counter(number);
    display:block;
    background: #555;
    color: #fff;
    font-weight:bold;
    font-size: 14px;
    border-radius: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*テーブル*/
.honbun table {
  margin:30px auto 50px auto;
  min-width: 480px;
  border:1px solid #262626;
  border-spacing: 0;
  overflow:hidden;
}
.honbun td,.honbun th {
  border-bottom:1px solid #262626;
  padding:10px;
}
.honbun th {
  background:#ECEFF2;
  color: #555;
  border-right:1px solid #262626;
}
.honbun tr:last-child th,
.honbun tr:last-child td {
  border-bottom: none;
}
.honbun td {
  border-right:1px solid #262626;
}
.honbun td:last-child,
.honbun th:last-child {
  border-right: none;
}

/*============================================================================
  ソーシャルボタン
============================================================================*/
.social {
  width: 400px;
  height: 40px;
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 50px 0 30px 0;
  margin: 0 auto;
}
.social li {
  list-style-type: none;
  display: inline-block;
  margin: 0 0 0 -10px;
  padding: 0;
}
.social li a {
  text-align: center;
  color: #444444;
}
.social li a i {
  display: inline-block;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  width: 50px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  color: #444444;
  z-index: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social li a i:before {
  font-size: 20px;
  z-index: 2;
  position: relative;
}
.social li a i:after {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 4.6px;
  top: 0;
  width: 80%;
  height: 100%;
  border-radius: 100%;
  content: "";
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social li a i:hover {
  color: #ffffff;
}
.social li a i:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.social .facebook .fab:after {
  background: #3b5998;
}
.social .twitter .fab:after {
  background: #55acee;
}
.social .instagram .fab:after {
  background: #CD007A;
}
.social .hatena .fa:after {
  background: #1F85C5;
}
.social .pocket .fab:after {
  background: #ED3951;
}
.social .rss .fa:after {
  background: #ff6600;
}
.social .line .fab:after {
  background: #00B900;
}
/* Font Awesome hatena bookmark */
.fa-hatena:before {
    content: "B!";
    font-family: Verdana;
    font-weight: bold
}