@charset "UTF-8";
/*【目次】
・[A]─全ページ共通
  ├──[A-0] Sass関数設定
  ├──[A-1] 汎用設定
  ├──[A-2] 共通BEM・OOCSSブロック
  ├──[A-3] トップ・ヘッダー
  ├──[A-4] グローバル・ヘッダー
  ├──[A-5] ページ・イントロダクション
  ├──[A-6] メインコンテンツ【共通】
  └──[A-7] グローバル・フッター
・[1]─メインコンテンツ【トップページ】
・[2]─メインコンテンツ【プロフィール】
・[3]─メインコンテンツ【ギャラリー】
・[4]─メインコンテンツ【ブログ（アーカイブ・カテゴリ共用）】
・[5]─メインコンテンツ【検索結果】
 ******************************
*/
/* 【目次】 */
/* ****************************** */
/* [A-0] Sass関数設定 */
/* ****************************** */
/*このテキストが表示されていれば、function.scssが読み込まれています。*/
/*サイドバーのFlex共通設定*/
/*サイドバーの縦書き設定*/
/*余白設定*/
/*矢印のパーツ共通設定（垂直アロー）*/
/*矢印のパーツ共通設定（傾斜アロー）*/
/* ****************************** */
@import url(btn_effect.css);
*:root {
  --rgba_wa: rgba(255, 255, 255, 0.4);
  --borderColor: #969696;
  --cateColor1: #e67f7f;
  --cateColor1a: rgba(230, 127, 127, 0.8);
  --cateColor2: #7f8be6;
  --cateColor2a: rgba(127, 139, 230, 0.8);
  --cateColor3: #a7e67f;
  --cateColor3a: rgba(167, 230, 127, 0.8);
  --cateColor4: #e6d27f;
  --cateColor4a: rgba(230, 210, 127, 0.8);
  --cateColor5: #e69f7f;
  --cateColor5a: rgba(230, 159, 127, 0.8);
  --cateColor-news: #82d8ff;
  --cateColor-news-A: rgba(130, 216, 255, 0.8);
  --cateColor-astronomy: #40d8a3;
  --cateColor-astronomy-A: rgba(64, 216, 163, 0.8);
  --cateColor-travel: #f2ac4e;
  --cateColor-travel-A: rgba(242, 172, 78, 0.8);
  --cateColor-work: #e67f7f;
  --cateColor-work-A: rgba(230, 127, 127, 0.8);
  --cateColor-book: #40a023;
  --cateColor-book-A: rgba(64, 160, 35, 0.8);
  --cateColor-miscellaneous: #771c1c;
  --cateColor-miscellaneous-A: rgba(119, 28, 28, 0.8);
  --cateColor-none: #ccc;
  --cateColor-none-A: rgba(204, 204, 204, 0.8);
  --currentColor: rgb(0, 0, 0);
}

/*テーマカラー【変数】*/
/* ****************************** */
/* [A-1] 汎用設定 */
/* ****************************** */
body {
  margin: 0 auto;
  font-size: 12px;
  font-family: "Mplus 1p";
  letter-spacing: 1.6px;
  line-height: 1.6;
  background: url(../res/image/body_bgi-darken.png) no-repeat center;
  background-size: cover;
  display: grid;
  grid-template-areas: "header-area  header-area header-area  " "intro-area   intro-area  intro-area   " "wrap-area    wrap-area   wrap-area    " "footer-area  footer-area footer-area  ";
  grid-template-columns: 50px 3fr 1fr;
  grid-template-rows: auto auto auto auto;
}

/* ****************************** */
/* [A-2] 共通BEM・OOCSSブロック */
/* ****************************** */
.uppercase {
  text-transform: uppercase;
}

/*大文字にするクラス*/
.categoryColor-1 {
  background-color: var(--cateColor1);
}

/*カテゴリカラー【1:RGB】*/
.categoryColor-2 {
  background-color: var(--cateColor2);
}

/*カテゴリカラー【2:RGB】*/
.categoryColor-3 {
  background-color: var(--cateColor3);
}

/*カテゴリカラー【3:RGB】*/
.categoryColor-4 {
  background-color: var(--cateColor4);
}

/*カテゴリカラー【4:RGB】*/
.categoryColor-5 {
  background-color: var(--cateColor5);
}

/*カテゴリカラー【5:RGB】*/
.categoryColor-1a {
  background-color: var(--cateColor1a);
}

/*カテゴリカラー【1:RGBa】*/
.categoryColor-2a {
  background-color: var(--cateColor2a);
}

/*カテゴリカラー【2:RGBa】*/
.categoryColor-3a {
  background-color: var(--cateColor3a);
}

/*カテゴリカラー【3:RGBa】*/
.categoryColor-4a {
  background-color: var(--cateColor4a);
}

/*カテゴリカラー【4:RGBa】*/
.categoryColor-5a {
  background-color: var(--cateColor5a);
}

/*カテゴリカラー【5:RGBa】*/
.categoryType-news {
  background-color: var(--cateColor-news);
}

.categoryType-news-A {
  background-color: var(--cateColor-news-A);
}

.categoryType-astronomy {
  background-color: var(--cateColor-astronomy);
}

.categoryType-astronomy-A {
  background-color: var(--cateColor-astronomy-A);
}

.categoryType-travel {
  background-color: var(--cateColor-travel);
}

.categoryType-travel-A {
  background-color: var(--cateColor-travel-A);
}

.categoryType-work {
  background-color: var(--cateColor-work);
}

.categoryType-work-A {
  background-color: var(--cateColor-work-A);
}

.categoryType-book {
  background-color: var(--cateColor-book);
}

.categoryType-book-A {
  background-color: var(--cateColor-book-A);
}

.categoryType-miscellaneous {
  background-color: var(--cateColor-miscellaneous);
}

.categoryType-miscellaneous-A {
  background-color: var(--cateColor-miscellaneous-A);
}

.categoryType-none {
  background-color: var(--cateColor-none);
}

.categoryType-none-A {
  background-color: var(--cateColor-none-A);
}

.wp-pagenavi {
  text-align: center;
  padding: 10px 10px;
  box-sizing: border-box;
  border-top: 1px dotted var(--currentColor);
}
.wp-pagenavi .current {
  background-color: var(--currentColor);
  color: #fff;
  border-radius: 50%;
  border: 1px solid var(--currentColor);
  padding: 5px 10px;
  box-sizing: border-box;
  margin: 0 10px;
  border: 1px solid #f00;
}
.wp-pagenavi .smaller:hover, .wp-pagenavi .larger:hover, .wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  background-color: var(--currentColor);
  border: 1px solid #333;
  color: #fff;
}

/*ページナビ*/
.searchForm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  transition: all .2s;
  font-size: 12px;
}

/*サーチフォーム*/
.searchBox {
  display: flex;
  width: 90%;
  height: 40px;
  position: relative;
}
.searchBox__form {
  width: 100%;
  padding: .5em .5em .5em 3.5em;
  border: none;
  border-bottom: 1px solid;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
}
.searchBox__form:focus {
  padding-left: .5em;
  outline: none;
}
.searchBox__form:focus + .searchBox__label {
  top: -.5em;
  left: 0em;
  color: #000;
}
.searchBox__label {
  position: absolute;
  top: .7em;
  left: .5em;
  color: #aaa;
  line-height: 1;
  transition: all .2s;
  font-size: 15px;
}
.searchBox__btn {
  width: 50px;
  height: 40px;
  padding: 5px 10px;
  border: 1px solid #000;
  box-sizing: border-box;
  font-weight: 300;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.searchBox__btn:hover {
  color: #fff;
  background-color: #000;
}

/*サーチ機能*/
.snumber {
  width: 100%;
}

/* ****************************** */
/*[A-3]トップ・ヘッダー*/
/* ****************************** */
.topHeader {
  width: 100%;
  font-size: 0;
  line-height: 0;
  text-align: center;
  position: relative;
  grid-area: header-area;
  /*ファーストビューコンテンツ*/
}
.topHeader .firstViewBox {
  width: 100%;
  position: relative;
  height: 300px;
  overflow: hidden;
  /*サイトタイトル*/
  /*ディスクリプション*/
}
.topHeader .firstViewBox__video, .topHeader .firstViewBox__image {
  object-fit: cover;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.topHeader .firstViewBox__siteTitle {
  position: absolute;
  bottom: 20px;
  width: 100%;
  font-size: 3vw;
  color: #CCC;
  font-weight: 100;
  /* ここで、字間を設定しています。意図的に最後の一文字を<RUBY>タグの外側に置くことで、文末に発生する字間スペースを回避しています。 */
  /* ルビのフォントサイズを個別に指定 */
}
.topHeader .firstViewBox__siteTitle-ruby {
  letter-spacing: 1em;
}
.topHeader .firstViewBox__siteTitle-rubyText {
  font-size: 1vw;
}
.topHeader .firstViewBox__description {
  width: 100%;
  position: absolute;
  top: 10px;
  left: 0;
  letter-spacing: 1.0px;
  font-size: 8px;
  color: #CCC;
  font-family: "Poiret One";
}

/*トップ・ヘッダー*/
/* ****************************** */
/*[A-4]グローバル・ヘッダー*/
/* ****************************** */
.globalHeader {
  width: 100%;
  background-image: url(../res/image/nav_bgi.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  grid-area: header-area;
}
.globalHeader__image {
  width: 100%;
  object-fit: cover;
  height: 200px;
}
.globalHeader .siteTitle {
  margin-top: 10px;
  position: relative;
  display: block;
  margin-bottom: 60px;
  /*サイトタイトル*/
}
.globalHeader .siteTitle__title {
  width: 100%;
  font-size: 50px;
  color: #fff;
  font-weight: 100;
  padding-left: 10px;
  letter-spacing: 10px;
  /* ここで、字間を設定しています。意図的に最後の一文字を<RUBY>タグの外側に置くことで、文末に発生する字間スペースを回避しています。 */
  /* ルビのフォントサイズを個別に指定 */
}
.globalHeader .siteTitle__title-rubyText {
  font-size: 1vw;
}
.globalHeader .siteTitle__description {
  width: 100%;
  position: absolute;
  top: 80%;
  left: 10px;
  letter-spacing: 1.2px;
  font-size: 8px;
  color: #CCC;
  font-family: "Poiret One";
}

/*グローバル・ヘッダー*/
/*
.fuwaButton {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -50px;
  //ここまでボタンの位置設定
  width: 100px;
  height: 100px;
  border: 2px dotted #fff;
  border-radius: 50%;
  box-sizing: border-box;
  //ここまでボタンの大きさや外観の設定
  font-family: "Mplus 1p";
  font-weight: 300;
  font-size: 25px;
  color: #BBB;
  letter-spacing: -1px;
  line-height: 3.7;
  text-align: center;
  text-decoration: none;

  //ここまでボタン内テキストの設定
  animation: fuwafuwa 5s ease infinite;
  //ここまでアニメーション起動の設定
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, -15px)
  }
  50% {
    transform: translate(0, 15px)
  }
  100% {
    transform: translate(0, -15px)
  }
  //ここまでアニメーション処理の設定
}
.fuwaButton:hover {
  border: 3px solid #CCC;
  color: #CCC;
  background-color: rgba(3, 3, 3, 0.5);
}
*/
/*ふわボタン*/
.globalNavi {
  width: 100%;
  height: 50px;
  z-index: 100;
}

.globalNavi__list {
  display: table;
  width: 90%;
  max-width: 1000px;
  height: 100%;
  margin: auto;
}

.globalNavi__listItem {
  display: table-cell;
  width: 20%;
  color: #fff;
  vertical-align: middle;
  transform: skew(-210deg);
}
.globalNavi__listItem:hover {
  background: rgba(45, 133, 186, 0.5);
  text-shadow: 1px 1px 10px #fff;
}
.globalNavi__listItem::first-child {
  border-radius: 3px 0 0 3px;
}
.globalNavi__listItem::last-child {
  border-radius: 0 3px 3px 0;
}

.globalNavi__listItem a,
.globalNavi__link {
  display: block;
  transform: skew(210deg);
  /* ここで、親要素から継承された傾斜を、文字だけ相殺します。相殺する為にブロック要素にしています。 */
  font-family: "Rounded Mplus 1c";
  font-weight: 300;
  font-size: 13px;
  color: #EEE;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  /* ここまでの7行は、テキストの設定 */
}

.naviColor-top {
  background-color: #000;
}

.naviColor-pages {
  background-color: transparent;
}

.naviPosition {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ****************************** */
/*[A-5]ページ・イントロダクション*/
/* ****************************** */
.intro {
  background-color: transparent;
  width: 90%;
  padding: 10px;
  box-sizing: border-box;
  margin: 10px auto 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 40px auto 40px;
  grid-area: intro-area;
}
.intro__title {
  font-size: 20px;
}

/*ページ・イントロダクション*/
/* ****************************** */
/*[A-6]メインコンテンツ【共通】*/
/* ****************************** */
.wrap {
  width: 100%;
  font-size: 16px;
  background-color: transparent;
  grid-area: wrap-area;
  display: grid;
  grid-template-areas: "sideBar-area   main-area" "sideLink-area  sideLink-area";
  grid-template-columns: 50px 3fr;
  grid-template-rows: auto auto;
}

/*コンテンツ領域インナー*/
.mainContents {
  grid-area: main-area;
  background-color: #fff;
  width: 100%;
  min-height: 700px;
  padding: 0px 10px;
  box-sizing: border-box;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.mainContents__title {
  background-color: #fff;
  font-size: 20px;
  letter-spacing: 5px;
  border-bottom: 1px solid;
  padding: 5px 5px 5px 10px;
  box-sizing: border-box;
  margin: 20px auto 40px;
}

/*メインコンテンツ領域*/
.sideBar {
  grid-area: sideBar-area;
  width: 50px;
  margin-bottom: 40px;
  display: grid;
  grid-template-areas: "goB-area" "navi-area" "goT-area";
  grid-template-columns: 50px;
  grid-template-rows: 200px auto 200px;
}

/*サイドバー*/
.sideNavi {
  grid-area: navi-area;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50px;
  align-items: center;
}
.sideNavi__list {
  display: grid;
  grid-template-columns: 1ft;
  grid-template-rows: 20px 100px 20px 100px 20px 100px 20px 100px 20px;
  width: 50px;
}
.sideNavi__listItem {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.sideNavi__listItem:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.sideNavi__listItem:nth-of-type(2) {
  grid-column: 1/2;
  grid-row: 4/5;
}
.sideNavi__listItem:nth-of-type(3) {
  grid-column: 1/2;
  grid-row: 6/7;
}
.sideNavi__listItem:nth-of-type(4) {
  grid-column: 1/2;
  grid-row: 8/9;
}
.sideNavi__link {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: rotate(180deg);
  border-left: 2px dashed transparent;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 200;
  color: inherit;
  text-shadow: 1px 1px 1px #000;
  position: relative;
  padding-left: 4px;
}
.sideNavi__link::after {
  background-color: #fff;
  content: '';
  width: 2px;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: .5s all;
}
.sideNavi__link:hover:after {
  height: 100%;
}

/*サイドバー・ナビゲーション*/
.sideNavi__listItem-currentPage {
  background-color: #fff;
}

.sideNavi__listItem-currentPage .sideNavi__link {
  color: #000;
  font-weight: 500;
  text-shadow: none;
}

.goBth {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /*ボタン・リンク*/
}
.goBth__link {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: rotate(180deg);
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.goBth__linkText {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35.28px;
  margin-left: -6.25px;
}

/*トップへ戻る／ボトムへ進むボタン共通設定*/
.goBth-top {
  grid-area: goT-area;
  height: 150px;
  transition: .5s;
  /*矢印のパーツ（垂直アロー）*/
  /*矢印のパーツ（傾斜アロー）*/
}
.goBth-top__arrow-v {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  border: 3px solid transparent;
  border-right: 3px solid #fff;
}
.goBth-top__arrow-h {
  width: 100%;
  position: absolute;
  left: -10px;
  border: 3px solid transparent;
  top: 16.2px;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
}

/*トップへ進むボタン*/
.goBth-bottom {
  grid-area: goB-area;
  height: 150px;
  /*矢印のパーツ（垂直アロー）*/
  /*矢印のパーツ（傾斜アロー）*/
}
.goBth-bottom__arrow-v {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  border: 3px solid transparent;
  border-right: 3px solid #fff;
}
.goBth-bottom__arrow-h {
  width: 100%;
  position: absolute;
  left: -10px;
  border: 3px solid transparent;
  bottom: 12.2px;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

/*ボトムへ戻るボタン*/
.sideBox {
  grid-area: sideLink-area;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  margin: 0 0 40px 20px;
}
.sideBox__inner {
  background-color: #fff;
  width: 90%;
  border: 1px solid #333;
  padding: 5px;
  box-sizing: border-box;
  margin: 0 0 40px 40px;
}
.sideBox__title {
  color: #fff;
  text-shadow: 1px 1px 3px #969696;
  text-align: center;
  background-color: #212121;
  margin-bottom: 10px;
}
.sideBox__list li {
  padding: 2px;
  box-sizing: border-box;
}
.sideBox__list li a {
  border-left: 5px solid #212121;
  padding-left: 5px;
}
.sideBox__list li a:hover {
  border-bottom: 1px solid #212121;
}
.sideBox .tag ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 12px;
}
.sideBox .tag ul li {
  padding: 2px;
  border: 1px solid;
  box-sizing: border-box;
  margin: 0 2px 10px 2px;
}
.sideBox .tag ul li a {
  display: block;
  border-left: none;
  box-sizing: border-box;
}
.sideBox .tag ul li a:hover {
  animation: hurueru 1s  infinite;
  border-bottom: none;
}

/*サイドボックス*/
.sideProfile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sideProfile__title {
  order: 2;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.sideProfile__avatar {
  order: 1;
  display: block;
  width: 100px;
  height: 100px;
  background-color: #000;
  border-radius: 15px;
}
.sideProfile__text {
  order: 3;
  width: 95%;
  margin-bottom: 5px;
  font-size: 12px;
}
.sideProfile__textLink {
  padding: 2px;
  box-sizing: border-box;
  color: #5454ef;
}

/*サイド・プロフィール*/
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/*サイドバーの固定処理用クラス*/
/* ****************************** */
/*[A-7]グローバル・フッター*/
/* ****************************** */
.globaleFooter {
  width: 100%;
  grid-area: footer-area;
}

.footerNavi {
  width: auto;
  background-color: #fff;
  max-width: 800px;
  margin: 0 40px 40px 0;
  /*垂直の区切り線*/
}
.footerNavi__inner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px 0 10px;
  box-sizing: border-box;
}
.footerNavi__list {
  width: 30%;
}
.footerNavi__listItem-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.footerNavi__listItem {
  font-size: 13px;
}
.footerNavi__listItem:before {
  content: "-";
  color: #2d2dcc;
  font-size: 20px;
}
.footerNavi__link:hover {
  background-color: rgba(45, 45, 204, 0.5);
  color: #fff;
}
.footerNavi .verticalLine {
  width: 1px;
  height: 100px;
  background-color: #000;
}
.footerNavi .footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
}
.footerNavi .footerLogo__logo {
  width: 40px;
  margin-right: 5px;
}
.footerNavi .footerLogo__text {
  width: 100%;
}
.footerNavi .footerLogo__mail {
  padding: 0 2px;
  box-sizing: border-box;
  color: #2d2dcc;
  font-weight: 700;
}
.footerNavi .footerLogo__mail:hover {
  background-color: rgba(45, 45, 204, 0.5);
  color: #fff;
}

/*フッター・ナビゲーション*/
.adFooter {
  width: 100%;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /*広告*/
}
.adFooter__adbox {
  width: 100px;
  height: 100px;
}

/*広告バー（フッター）*/
.copyrightBar {
  width: 100%;
  color: #000;
  margin: 0 auto 40px;
  padding-left: 40px;
  box-sizing: border-box;
}
.copyrightBar__copyright {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 30px;
  padding-right: 10px;
  border-radius: 20px 0 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  line-height: 2.5;
  text-align: right;
  /*(C)マークをFontAwesomeで追加。*/
}
.copyrightBar__copyright:before {
  display: inline;
  content: "\f1f9";
  font-size: 11px;
  font-family: "FontAwesome";
}

/*コピーライトバー*/
/* ************************************************** */
/* ************************************************** */
/* ************************************************** */
/* ****************************** */
/*[1]メインコンテンツ【トップページ】*/
/* ****************************** */
.postBox {
  width: 90%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  margin: 10px auto 40px;
  border-left: 1px solid var(--borderColor);
  /*カテゴリ・リンク*/
}
.postBox__date {
  grid-column: 1/2;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 100px auto auto;
  text-align: center;
  font-size: 16px;
}
.postBox__date-year {
  grid-column: 1/3;
  grid-row: 3/4;
  font-family: "Audiowide";
}
.postBox__date-year::after {
  content: "";
}
.postBox__date-month {
  grid-column: 1/3;
  grid-row: 2/3;
  font-family: "Shrikhand";
}
.postBox__date-month::after {
  content: "";
}
.postBox__date-day {
  grid-column: 1/3;
  grid-row: 1/2;
  font-size: 35px;
  position: relative;
  font-family: "Source Code Pro";
}
.postBox__date-day::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f00;
  box-sizing: border-box;
  position: absolute;
  top: 20%;
  right: -12.5%;
  right: -12%;
}
.postBox__image {
  grid-column: 2/4;
  grid-row: 1/4;
  width: 100%;
}
.postBox__title {
  grid-column: 2/4;
  grid-row: 1/2;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
  font-size: 16px;
  width: 100%;
  height: 55%;
}
.postBox__titleLink {
  display: block;
}
.postBox__categorys {
  grid-column: 1/3;
  grid-row: 3/4;
  position: relative;
}
.postBox__category {
  display: block;
  width: 100%;
  min-width: 100px;
  max-width: 150px;
  padding: 1px;
  border-radius: 0px 10px 10px 0px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin-top: -11px;
  font-size: 14px;
  color: #fefefe;
  text-align: center;
}

/*最新記事一覧*/
.postBox__categorys .post-categories li {
  color: #f00;
  display: block;
  width: 100%;
  min-width: 100px;
  max-width: 150px;
  padding: 1px;
  border-radius: 0px 10px 10px 0px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin-top: -11px;
  font-size: 14px;
  text-align: center;
}

.innerFlex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.newPostBox {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  max-width: 300px;
  border: 1px solid #000;
  box-sizing: border-box;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 2px 2px 2px #000;
}
.newPostBox__image {
  grid-column: 1/3;
  grid-row: 1/4;
  width: 300px;
  height: 300px;
  font-size: 0;
  line-height: 0;
}
.newPostBox__imageThum {
  width: 100%;
  height: 100%;
}
.newPostBox__title {
  grid-column: 1/3;
  grid-row: 3/4;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.newPostBox__titleLink {
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.newPostBox__date {
  grid-column: 1/2;
  grid-row: 1/4;
  display: grid;
  grid-template-areas: "day" "month" "year";
  background-color: rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 25%;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  border-radius: 0 0 10px 0;
  box-sizing: border-box;
  text-align: center;
}
.newPostBox__date-year {
  grid-area: year;
  height: 20px;
  font-size: 12px;
  font-family: "Audiowide";
}
.newPostBox__date-month {
  grid-area: month;
  font-size: 14px;
  font-family: "Shrikhand";
  line-height: 0;
}
.newPostBox__date-day {
  grid-area: day;
  font-size: 24px;
  font-family: "Source Code Pro";
}
.newPostBox__category {
  grid-column: 2/3;
  grid-row: 1/2;
  position: relative;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
}
.newPostBox__categoryLink {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
  border-radius: 0px 0px 0px 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #fefefe;
  text-shadow: 1px 1px 1px #000;
  text-align: center;
}

/* ****************************** */
/*[2]メインコンテンツ【プロフィール】*/
/* ****************************** */
.profile {
  width: 100%;
  /*年*/
  /*内容*/
}
.profile__list {
  display: table;
  background-color: #00f;
  margin: 0 auto 40px;
  box-sizing: border-box;
}
.profile__title {
  background-color: rgba(114, 114, 114, 0.5);
  width: 100px;
  padding: 5px;
  border: 1px dotted #000;
  border-radius: 15px;
  box-sizing: border-box;
  margin: 20px 0;
  color: #000;
  text-align: center;
}
.profile__data {
  padding: 5px;
  border-bottom: 1px dotted #000;
  border-left: 5px solid #000;
  box-sizing: border-box;
  margin: 0 auto 10px 5px;
}

/*プロフィール*/
/* ****************************** */
/*[3]メインコンテンツ【ギャラリー】*/
/* ****************************** */
.gallery {
  width: 100%;
}

.galleryBox {
  display: block;
  width: 100%;
  height: 300px;
  border: 5px solid #000;
  box-sizing: border-box;
  margin: 0 auto 40px;
  position: relative;
}
.galleryBox:hover .galleryBox__btn {
  display: block;
}
.galleryBox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s 5s;
}
.galleryBox__caption {
  background-color: rgba(64, 64, 64, 0.7);
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  color: #fff;
}
.galleryBox__btn {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 15px;
  box-sizing: border-box;
  transition: .2s ease;
}

/*ギャラリー・ボックス*/
/* ****************************** */
/*[4]メインコンテンツ【アーカイブ・カテゴリ・タグ）】*/
/* ****************************** */
.categoryList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 auto 40px;
  position: relative;
}
.categoryList::after {
  display: block;
  content: "クイックナロー";
  background-color: #fff;
  padding: 2px;
  border: 1px solid #000;
  box-sizing: border-box;
  position: absolute;
  top: -12px;
  left: 10px;
  font-size: 10px;
}
.categoryList li {
  padding: 5px 10px;
  box-sizing: border-box;
  margin: 10px;
}
.categoryList li a {
  color: #000;
  text-shadow: 1px 1px 1px #969696;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
    color: #000;
    text-shadow: 1px 1px 1px #fff;
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(1deg);
  }
}
/* ****************************** */
/*[5]メインコンテンツ【検索結果】*/
/* ****************************** */
.resultText {
  width: 100%;
  text-align: center;
  /*検索結果画面に表示される検索キーワード用の装飾*/
}
.resultText__keyword {
  font-weight: 500;
  color: #ed7f7f;
}

/*検索結果表示*/
/* ****************************** */
/*[6]メインコンテンツ【個別投稿】*/
/* ****************************** */
.postContents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0  40px;
  border-bottom: 1px solid var(--borderColor);
  box-sizing: border-box;
  margin-bottom: 80px;
}

/*投稿コンテンツ領域*/
.postTitle {
  order: 3;
  width: 100%;
  padding: 5px;
  border-left: 5px solid var(--cateColor1);
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 3px;
}

/*投稿タイトル*/
.postMainText {
  order: 5;
  width: 100%;
}
.postMainText p {
  width: 95%;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}
.postMainText p:first-letter {
  margin-left: 14px;
}

/*投稿テキスト（本文）*/
.postImage {
  order: 4;
  align-self: flex-start;
  margin-bottom: 10px;
  background-color: #f00;
}
.postImage__image {
  display: block;
  max-width: 100%;
}

/*投稿イメージ*/
.postMeta {
  order: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 15px;
  /*投稿年月日*/
  /*投稿カテゴリ*/
}
.postMeta .postTime {
  order: 1;
  display: grid;
  grid-template-columns: 60px 70px;
  font-size: 18px;
  text-align: center;
}
.postMeta .postTime__year {
  grid-column: 1/2;
  grid-row: 1/2;
  border-bottom: 1px solid;
  box-sizing: border-box;
  font-family: "Audiowide";
}
.postMeta .postTime__month {
  grid-column: 1/2;
  grid-row: 2/3;
  font-family: "Shrikhand";
}
.postMeta .postTime__day {
  grid-column: 2/3;
  grid-row: 1/3;
  font-family: "Source Code Pro";
  font-size: 60px;
  line-height: 50px;
}
.postMeta .postCategory {
  order: 2;
  align-self: center;
}
.postMeta .postCategory__link {
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
}

/*投稿年月日とカテゴリの枠*/
.postNavi {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-bottom: 40px;
}
.postNavi__pre {
  display: block;
  max-width: 45%;
  padding: 5px 10px;
  border: 2px solid transparent;
  border-bottom: 2px solid #969696;
  border-left: 2px solid #969696;
  box-sizing: border-box;
}
.postNavi__pre:hover {
  border: 2px solid transparent;
  border-top: 2px solid #969696;
  border-right: 2px solid #969696;
  color: #fff;
  background-color: #ccc;
}
.postNavi__next {
  display: block;
  max-width: 45%;
  padding: 5px 10px;
  border: 2px solid transparent;
  border-bottom: 2px solid #969696;
  border-right: 2px solid #969696;
  box-sizing: border-box;
}
.postNavi__next:hover {
  border: 2px solid transparent;
  border-top: 2px solid #969696;
  border-left: 2px solid #969696;
  color: #fff;
  background-color: #ccc;
}

/*次の記事と前の記事へナビゲーション*/
.archiveList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.archiveList li {
  text-align: center;
  width: 150px;
  padding: 5px;
  border: 1px solid #969696;
  box-sizing: border-box;
  border-radius: 15px;
  margin: 10px auto;
}
.archiveList li a:hover {
  color: #3fffcb;
}
.archiveList__more {
  background-color: #ccc;
}

/****************************************/
/****************************************/
/****************************************/
/* ****************************** */
/*[7]メインコンテンツ【このサイトについて】*/
/* ****************************** */
.sheet {
  margin: 0 auto 40px;
}
.sheet__title {
  text-align: left;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 20px auto;
  font-size: 20px;
}
.sheet .sheetList__title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;
  font-family: "Sawarabi Gothic";
  font-size: 18px;
}
.sheet .sheetList__title:before, .sheet .sheetList__title:after {
  content: "-";
  padding: 0 10px;
}
.sheet .sheetList__data {
  margin-bottom: 40px;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #969696;
}
.sheet .sheetList__dataText {
  width: 90%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
}

/**********************************************/
/***********************/
/*デスクトップ用CSS*/
/***********************/
/**********************************************/
@media all and (min-width: 768px) {
  /* ****************************** */
  /*[A-5]メインコンテンツ【共通】*/
  /* ****************************** */
  .wrap {
    width: 100%;
    font-size: 16px;
    margin: 0 auto 40px;
    grid-template-areas: "sideBar-area main-area sideLink-area";
    grid-template-columns: 50px 3fr 1fr;
    grid-template-rows: auto;
  }

  .wrap .sideBox {
    margin-left: 10px;
    margin-bottom: 40px;
  }

  /* ****************************** */
  /*[A-5]メインコンテンツ【共通】*/
  /* ****************************** */
  /* ****************************** */
  /*[A-6]グローバル・フッター*/
  /* ****************************** */
  .adFooter {
    /*広告*/
  }
  .adFooter__adbox {
    width: 200px;
    height: 200px;
  }

  /*広告領域*/
  /* ****************************** */
  /*[1]メインコンテンツ【トップページ】*/
  /* ****************************** */
  .sideBox__inner {
    margin: 0 auto 40px;
  }

  /* ****************************** */
  /*[A-5]ページ・イントロダクション*/
  /* ****************************** */
  .intro {
    background-color: transparent;
    width: 80%;
    max-width: 500px;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px auto 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 40px 100px 0px;
    margin-bottom: 40px;
    grid-area: intro-area;
  }
  .intro__title {
    font-size: 20px;
  }

  /*ページ・イントロダクション*/
}

/*# sourceMappingURL=style.css.map */
