@charset "UTF-8";
/*
Theme Name: Simple
Theme URI:
Description:
Version: 2.0
Author: nw
*/
/* ==========================================================================

	お知らせ

========================================================================== */
/* --------------------------------------- 基本レイアウト --------------------------------------- */
section .container aside {
  display: flex;
  justify-content: space-between;
  border-top: 1px dotted #ccc;
  padding-top: 50px;
}
@media screen and (max-width: 812px) {
  section .container aside {
    display: block;
  }
}

section#article {
  padding-top: 6rem;
}
@media screen and (max-width: 812px) {
  section#article {
    padding-top: 3rem;
  }
}

/* --------------------------------------- ナビゲーション --------------------------------------- */
/*--------------------------------
    ブログナビ
--------------------------------*/
#cat_nav {
  padding: 0;
  margin: 2em auto;
}
#cat_nav .container {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  justify-content: space-between;
}
#cat_nav .container .category_toggle {
  display: none;
}
#cat_nav .container ul {
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
}
#cat_nav .container ul li {
  display: flex;
  flex: 1 0 auto;
  text-align: center;
}
#cat_nav .container ul li + li {
  margin-left: 2%;
}
#cat_nav .container ul li a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #000;
}
#cat_nav .container ul li a:link, #cat_nav .container ul li a:visited {
  color: #000;
  background-color: transparent;
}
@media (any-hover: hover) {
  #cat_nav .container ul li a:hover {
    color: #fff;
    background-color: #000;
  }
}
#cat_nav .container ul li a .current {
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 812px) {
  #cat_nav {
    margin: 1em auto;
  }
  #cat_nav .container {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 50px;
  }
  #cat_nav .container .category_toggle {
    display: block;
  }
  #cat_nav .container .category_toggle svg {
    max-width: 20px;
    max-height: 20px;
    fill: #666;
    margin-left: 0.5em;
    transition: 0.4s;
  }
  #cat_nav .container .category_toggle.open svg {
    transform: rotate(180deg);
    transform-origin: center;
  }
  #cat_nav .container ul {
    width: 100%;
    display: block;
    background-color: #eee;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
  }
  #cat_nav .container ul li {
    display: block;
    border-top: 1px solid #333;
  }
  #cat_nav .container ul li + li {
    margin-left: 0;
  }
  #cat_nav .container ul li a {
    padding: 10px;
    border: none;
  }
}
#cat_nav .container .search_btn {
  background-color: #333;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  padding: 5px;
  cursor: pointer;
  transition: 0.6s;
}
#cat_nav .container .search_btn svg {
  fill: #ffffff;
  width: 40px;
  height: 40px;
  transition: 0.6s;
}
@media (any-hover: hover) {
  #cat_nav .container .search_btn:hover {
    background-color: #fff;
  }
  #cat_nav .container .search_btn:hover svg {
    fill: #333;
  }
}
@media screen and (max-width: 812px) {
  #cat_nav .container .search_btn {
    border-radius: 5px;
    width: 40px;
    height: 40px;
    padding: 5px;
    position: absolute;
    top: 5px;
    right: 10px;
  }
  #cat_nav .container .search_btn svg {
    width: 30px;
    height: 30px;
  }
}

/*--------------------------------
    検索コンテンツ
--------------------------------*/
#search_overlay {
  position: fixed;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: 9991;
}

#search_cnt {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 100px 0;
  top: -100%;
  z-index: 9992;
  transition: top 0.8s ease;
  background-color: #ccc;
}
#search_cnt.on {
  top: 0;
}
#search_cnt .search_close {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: #333;
  transition: 0.6s;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#search_cnt .search_close span {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 1px);
  transform: rotate(45deg);
  display: block;
  width: 2px;
  height: 30px;
  line-height: 1;
  vertical-align: middle;
  background-color: #ffffff;
  transition: 0.6s;
}
#search_cnt .search_close span:before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  line-height: 1;
  vertical-align: middle;
  background-color: #ffffff;
  transition: 0.6s;
  transform: rotate(90deg);
}
@media (any-hover: hover) {
  #search_cnt .search_close:hover {
    background-color: #fff;
  }
  #search_cnt .search_close:hover span {
    background-color: #333;
  }
  #search_cnt .search_close:hover span::before {
    background-color: #333;
  }
}
#search_cnt .search_tag {
  text-align: center;
}
#search_cnt .search_tag li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
#search_cnt .search_tag li a::before {
  content: "#";
}

@media screen and (max-width: 812px) {
  #search_cnt {
    padding: 70px 0 50px;
  }
  #search_cnt.on {
    top: 0;
  }
  #search_cnt .search_close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  #search_cnt .search_close span {
    top: calc(50% - 10px);
    height: 20px;
  }
  #search_cnt .search_close span:before {
    height: 20px;
  }
}
/*--------------------------------
    検索窓
--------------------------------*/
.searchKeyword {
  max-width: 400px;
  position: relative;
  margin: 0 auto;
  padding: 0;
}
.searchKeyword form input[type=text] {
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: solid 2px #666;
  background-color: #ffffff;
  padding: 10px 40px 10px 20px;
}
.searchKeyword form input[type=text]:focus {
  outline: 0;
}
.searchKeyword form button[type=submit] {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  cursor: pointer;
  transition: 0.4s;
  will-change: opacity;
}
.searchKeyword form button[type=submit]:focus {
  outline: 0;
}
.searchKeyword form button[type=submit] svg {
  max-width: 30px;
  max-height: 30px;
  fill: #666;
}
@media (any-hover: hover) {
  .searchKeyword form button[type=submit]:hover {
    opacity: 0.6;
  }
}
.searchKeyword form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}
.searchKeyword form input::placeholder {
  color: #666;
  font-size: 16px;
}

@media screen and (max-width: 812px) {
  .searchKeyword form input[type=text] {
    height: 40px;
    font-size: 16px;
  }
  .searchKeyword form button[type=submit] {
    width: 30px;
    height: 30px;
  }
  .searchKeyword form button[type=submit] svg {
    max-width: 25px;
    max-height: 25px;
  }
}
/*--------------------------------
    検索結果なし
--------------------------------*/
section .container article .noresult {
  text-align: center;
}

/* --------------------------------------- 記事 --------------------------------------- */
/*--------------------------------
    記事ページ
--------------------------------*/
section .container article .post {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}
section .container article .post .postInfo {
  margin: 0 0 10px 0;
}
section .container article .post .postInfo span {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 2em 0 0;
}
section .container article .post .postInfo em {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 1.5em 0 0;
}
section .container article .post .postInfo em:last-of-type {
  margin: 0;
}
section .container article .post .postInfo em a:link, section .container article .post .postInfo em a:visited {
  color: var(--color-highlight-link);
}
@media (any-hover: hover) {
  section .container article .post .postInfo em a:hover {
    color: var(--color-highlight-hover);
  }
}
@media screen and (max-width: 812px) {
  section .container article .post .postInfo {
    margin: 0 0 5px 0;
  }
  section .container article .post .postInfo span {
    font-size: 1.2rem;
    margin: 0 1em 0 0;
  }
  section .container article .post .postInfo em {
    font-size: 1.2rem;
    margin: 0 1em 0 0;
  }
}
section .container article .post .postTitle {
  font-size: 2.2rem;
  line-height: 1.7;
  font-weight: normal;
  text-align: left;
  margin: 0 auto 3em;
}
@media screen and (max-width: 812px) {
  section .container article .post .postTitle {
    font-size: 2rem;
    margin: 0 auto 1.2em;
  }
}
section .container article .post .postTag {
  margin: 100px 0 0;
}
@media screen and (max-width: 812px) {
  section .container article .post .postTag {
    margin: 50px 0 0;
  }
}
section .container article .post .postTag em {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 1.5em 0 0;
}
@media screen and (max-width: 812px) {
  section .container article .post .postTag em {
    font-size: 1.3rem;
  }
}
section .container article .post .postTag em:last-of-type {
  margin: 0;
}
section .container article .post .postTag em a::before {
  content: "#";
}
section .container article .post .postTag em a:link, section .container article .post .postTag em a:visited {
  color: var(--color-highlight-link);
}
@media (any-hover: hover) {
  section .container article .post .postTag em a:hover {
    color: var(--color-highlight-hover);
  }
}
section .container article .post .postContents {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  word-break: break-all; /* 英語の時は消す */
  overflow-wrap: break-word;
}
@media screen and (max-width: 812px) {
  section .container article .post .postContents {
    font-size: 1.5rem;
  }
}
section .container article .post .postContents:after {
  content: "";
  display: block;
  clear: both;
}
section .container article .post .postContents a:link, section .container article .post .postContents a:visited {
  color: #000;
  text-decoration: underline;
}
@media (any-hover: hover) {
  section .container article .post .postContents a:hover {
    color: var(--color-highlight-hover);
    text-decoration: none;
  }
}
section .container article .post .postContents img {
  display: block;
  max-width: 100%;
  height: auto;
}
section .container article .post .postContents p {
  margin: 0 auto 1.5em;
  /* clear: both; */ /* 回り込みを禁止する場合 */
}
section .container article .post .postContents p > img {
  margin: 0 auto 1.5em;
}
section .container article .post .postContents .wp-caption {
  margin: 0 auto 1.5em;
  max-width: 100%;
}
section .container article .post .postContents .wp-caption img {
  margin: 0 auto;
}
section .container article .post .postContents .wp-caption .wp-caption-text {
  margin: 0.8em auto 0;
  font-size: 90%;
  text-align: center;
}
section .container article .post .postContents .aligncenter {
  margin: 0 auto 1em;
}
section .container article .post .postContents .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
section .container article .post .postContents .alignright {
  float: right;
  margin: 0 0 1em 1em;
}
section .container article .post .postContents strong {
  font-weight: bold;
}
section .container article .post .postContents em {
  font-style: italic;
}
section .container article .post .postContents blockquote {
  font-style: italic;
  margin: 1.12em 40px;
  color: #666;
}
section .container article .post .postContents pre {
  white-space: normal;
}
section .container article .post .postContents ul {
  margin: 1.12em 0;
}
section .container article .post .postContents ul li {
  list-style-type: disc;
}
section .container article .post .postContents ol {
  margin: 1.12em 0;
}
section .container article .post .postContents ol li {
  list-style-type: decimal;
}
section .container article .post .postContents h1,
section .container article .post .postContents h2 {
  font-size: 2.4rem;
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents h3 {
  font-size: 2rem;
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents h4 {
  font-size: 1.8rem;
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents h5,
section .container article .post .postContents h6 {
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents iframe[src*=youtube] {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  min-height: 474px; /* ポストエリア幅843pxのとき画角16:9想定で */
}
section .container article .post .postContents *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 812px) {
  section .container article .post .postContents h1,
  section .container article .post .postContents h2 {
    font-size: 2rem;
  }
  section .container article .post .postContents h3 {
    font-size: 1.8rem;
  }
  section .container article .post .postContents h4 {
    font-size: 1.6rem;
  }
  section .container article .post .postContents iframe[src*=youtube] {
    min-height: 190px; /* ポストエリア幅337pxのとき画角16:9想定で */
  }
}

/*--------------------------------
    目次（TOC）
--------------------------------*/
#toc_container {
  font-weight: bold;
  padding: 40px;
  border: solid 1px #333;
  margin-bottom: 4em;
}
#toc_container .toc_title {
  font-size: 2rem;
  margin-bottom: 1em;
}
#toc_container .toc_list > li {
  margin-bottom: 1.5em;
  list-style-type: none;
}
#toc_container .toc_list > li:last-child {
  margin-bottom: 0;
}
#toc_container .toc_list > li > a {
  font-weight: bold;
}
#toc_container .toc_list > li > ul {
  margin-top: 1em;
  padding-left: 2em;
}
#toc_container .toc_list > li > ul > li {
  margin-bottom: 1.5em;
  list-style-type: none;
}
#toc_container .toc_list > li > ul > li:last-child {
  margin-bottom: 0;
}
#toc_container a:link, #toc_container a:visited {
  color: #333;
  text-decoration: none;
}
@media (any-hover: hover) {
  #toc_container a:hover {
    color: #999;
    text-decoration: none;
  }
}

@media screen and (max-width: 812px) {
  #toc_container {
    padding: 20px;
  }
  #toc_container .toc_title {
    font-size: 18px;
  }
  #toc_container .toc_list > li > ul {
    padding-left: 1em;
  }
}
/* --------------------------------------- 操作系 --------------------------------------- */
/*--------------------------------
    前後記事リンク
--------------------------------*/
.pagelink {
  padding-top: 15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
}
.pagelink .pageprev a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagelink .pageprev a img {
  width: 100px;
  height: auto;
}
.pagelink .pageprev a span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagelink .pageprev a span svg {
  width: 40px;
  height: 9px;
  margin: 0 10px 0 40px;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .pagelink .pageprev a:hover svg {
    transform: translate(-2px, 0);
  }
}
.pagelink .pageprev.pagedisable {
  opacity: 0;
  pointer-events: none;
}
.pagelink .pagenext a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.pagelink .pagenext a img {
  width: 100px;
  height: auto;
}
.pagelink .pagenext a span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagelink .pagenext a span svg {
  width: 40px;
  height: 9px;
  margin: 0 40px 0 10px;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .pagelink .pagenext a:hover svg {
    transform: translate(2px, 0);
  }
}
.pagelink .pagenext.pagedisable {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 812px) {
  .pagelink {
    padding-top: 6rem;
    font-size: 1.3rem;
  }
  .pagelink .pageprev a,
  .pagelink .pagenext a {
    display: block;
  }
  .pagelink .pageprev a img,
  .pagelink .pagenext a img {
    display: none;
  }
  .pagelink .pageprev a span svg,
  .pagelink .pagenext a span svg {
    width: 22px;
    height: 6px;
    margin: 0 10px;
  }
}
/*--------------------------------
    ページネーション
--------------------------------*/
.pagination {
  margin-top: 10rem;
  text-align: center;
}
.pagination ul {
  padding: 0;
  list-style: none;
  font-size: 0;
}
.pagination ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  width: 20px;
  height: 50px;
  line-height: 50px;
}
.pagination ul li:first-child {
  width: auto;
  margin-right: 100px;
}
.pagination ul li:last-child {
  width: auto;
  margin-left: 100px;
}
.pagination ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.pagination ul li a.prev span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination ul li a.prev span svg {
  width: 40px;
  height: 9px;
  margin: 0 10px 0 40px;
  transition: 0.3s;
}
.pagination ul li a.prev i {
  font-style: normal;
}
@media (any-hover: hover) {
  .pagination ul li a.prev:hover svg {
    transform: translate(-2px, 0);
  }
}
.pagination ul li a.prev.pagedisable {
  opacity: 0;
  pointer-events: none;
}
.pagination ul li a.next span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination ul li a.next span svg {
  width: 40px;
  height: 9px;
  margin: 0 40px 0 10px;
  transition: 0.3s;
}
.pagination ul li a.next i {
  font-style: normal;
}
@media (any-hover: hover) {
  .pagination ul li a.next:hover svg {
    transform: translate(2px, 0);
  }
}
.pagination ul li a.next.pagedisable {
  opacity: 0;
  pointer-events: none;
}
.pagination ul li span.current {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-highlight);
  border-bottom: 4px solid var(--color-highlight);
}

@media screen and (max-width: 812px) {
  .pagination {
    margin: 5rem auto 0;
  }
  .pagination ul li {
    margin: 0 8px;
    font-size: 1.2rem;
    width: 15px;
    height: 40px;
    line-height: 40px;
  }
  .pagination ul li:first-child {
    margin-right: 10px;
  }
  .pagination ul li:last-child {
    margin-left: 10px;
  }
  .pagination ul li span.current {
    border-bottom: 2px solid var(--color-highlight);
  }
  .pagination ul li a.prev span {
    display: block;
  }
  .pagination ul li a.prev span svg {
    width: 22px;
    height: 6px;
    margin: 0 10px 0 0;
  }
  .pagination ul li a.prev i {
    display: none;
  }
  .pagination ul li a.next span {
    display: block;
  }
  .pagination ul li a.next span svg {
    width: 22px;
    height: 6px;
    margin: 0 0 0 10px;
  }
  .pagination ul li a.next i {
    display: none;
  }
}
/* --------------------------------------- サイドカラム --------------------------------------- */
/*--------------------------------
	サイドカラム
--------------------------------*/
section .container aside .linksCategory {
  width: 48%;
  max-width: 48%;
  flex: 0 0 48%;
}
section .container aside .linksCategory div {
  font-size: 1.3rem;
  letter-spacing: 0.6px;
  margin: 0 0 2em;
  font-weight: bold;
}
section .container aside .linksCategory ul li {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 812px) {
  section .container aside .linksCategory {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 2em;
  }
  section .container aside .linksCategory div {
    font-size: 1.2rem;
  }
  section .container aside .linksCategory ul li {
    font-size: 1.4rem;
  }
}
section .container aside .selectWrapper {
  width: 24%;
  max-width: 24%;
  flex: 0 0 24%;
  height: 50px;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  border: 1px solid #ccc;
}
section .container aside .selectWrapper::after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: solid 2px #666;
  border-right: solid 2px #666;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -5px;
  z-index: 2;
  pointer-events: none;
}
section .container aside .selectWrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 48px;
  padding: 0 40px 0 10px;
  border: none;
  background-color: #fff;
  font-size: 1.4rem;
  color: #666;
}
section .container aside .selectWrapper select:focus {
  outline: none;
}
@media screen and (max-width: 812px) {
  section .container aside .selectWrapper {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    height: 40px;
    margin-bottom: 2em;
  }
  section .container aside .selectWrapper select {
    /* iOSの拡大阻止 */
    font-size: 16px;
    /* transform: scale(0.9); */
    /* transform-origin: top left; */
    /* width: 111%; */
    height: 38px;
  }
}
section .container aside .searchKeyword {
  width: 24%;
  max-width: 24%;
  flex: 0 0 24%;
  position: relative;
  margin: 0 auto;
  padding: 0;
}
section .container aside .searchKeyword form input[type=text] {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 10px 40px 10px 20px;
  font-size: 1.6rem;
}
section .container aside .searchKeyword form input[type=text]:focus {
  outline: 0;
}
section .container aside .searchKeyword form input::-moz-placeholder {
  color: #ccc;
  font-size: 1.6rem;
}
section .container aside .searchKeyword form input::placeholder {
  color: #ccc;
  font-size: 1.6rem;
}
section .container aside .searchKeyword form input[type=submit] {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  right: 5px;
  transition: 0.4s;
  will-change: opacity;
  background: url(/assets/images/icon_search.svg) center center no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  section .container aside .searchKeyword form input[type=submit]:hover {
    opacity: 0.6;
  }
}
section .container aside .searchKeyword form input[type=submit]:focus {
  outline: 0;
}
@media screen and (max-width: 812px) {
  section .container aside .searchKeyword {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  section .container aside .searchKeyword form input[type=text] {
    /* iOSの拡大阻止 */
    font-size: 16px;
    height: 40px;
    border-radius: 20px;
  }
  section .container aside .searchKeyword form input[type=submit] {
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
  }
}