@charset "utf-8";

/*
Theme Name: こども食堂のブログ
Theme URI:
Description:
Version: 2.0
Author: nw
*/

/* ==========================================================================

	BLOG

========================================================================== */

/* ------------------------------------------------------------ 基本レイアウト ------------------------------------------------------------ */

section .container article {
  padding-bottom: 100px;
}

section .container aside {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-top: 1px dotted #ccc;
  padding-top: 50px;
}

@media only screen and (max-width: 812px) {
  section .container article {
    padding-bottom: 50px;
  }
  section .container aside {
    display: block;
  }
}

/* ------------------------------------------------------------ ナビゲーション ------------------------------------------------------------ */

/*--------------------------------
    ブログナビ
--------------------------------*/

#cat_nav {
  padding: 0;
  margin: 2em auto;
}

#cat_nav .container {
  /* padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between; */
}

#cat_nav .container .category_toggle {
  display: none;
}

#cat_nav .container ul {
  /* width: calc(100% - 60px); */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#cat_nav .container ul li {
  display: -webkit-flex;
  display: flex;
  text-align: center;
  margin: 0 0.75%;
  min-width: 180px;
}

/* #cat_nav .container ul li + li {
  margin-left: 2%;
} */

#cat_nav .container ul li a {
  width: 100%;
  height: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 1em;
  border-radius: 25px;
}

/* #cat_nav .container ul li a.current {
  color:#fff;
  background-color: #000;
} */


#cat_nav .container ul li a:link,
#cat_nav .container ul li a:visited {
  color: #fff;
  background-color: var(--color-highlight1);
}

@media only screen and (min-width: 813px) {
  #cat_nav .container ul li a:hover,
  #cat_nav .container ul li a:active {
    color: #fff;
    background-color: var(--color-highlight1-hover);
  }
}

#cat_nav .container ul li.kodomo_syokudo a:link,
#cat_nav .container ul li.kodomo_syokudo a:visited {
  background-color: var(--color-highlight1);
}

@media only screen and (min-width: 813px) {
  #cat_nav .container ul li.kodomo_syokudo a:hover,
  #cat_nav .container ul li.kodomo_syokudo a:active {
    background-color: var(--color-highlight1-hover);
  }
}

#cat_nav .container ul li.hebe a:link,
#cat_nav .container ul li.hebe a:visited {
  background-color: var(--color-highlight2);
}

@media only screen and (min-width: 813px) {
  #cat_nav .container ul li.hebe a:hover,
  #cat_nav .container ul li.hebe a:active {
    background-color: var(--color-highlight2-hover);
  }
}

#cat_nav .container ul li.art_salon a:link,
#cat_nav .container ul li.art_salon a:visited {
  background-color: var(--color-highlight4);
}

@media only screen and (min-width: 813px) {
  #cat_nav .container ul li.art_salon a:hover,
  #cat_nav .container ul li.art_salon a:active {
    background-color: var(--color-highlight4-hover);
  }
}

#cat_nav .container ul li.news a:link,
#cat_nav .container ul li.news a:visited {
  background-color: var(--color-highlight3);
}

@media only screen and (min-width: 813px) {
  #cat_nav .container ul li.news a:hover,
  #cat_nav .container ul li.news a:active {
    background-color: var(--color-highlight3-hover);
  }
}

@media only screen and (max-width: 812px) {
  #cat_nav {
    margin: 1em auto;
  }

  #cat_nav .container {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    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;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  #cat_nav .container .category_toggle.open svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  #cat_nav .container ul {
    width: 100vw;
    display: block;
    /* background-color: #eee; */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
  }

  #cat_nav .container ul li {
    display: block;
    margin: 0;
  }

  #cat_nav .container ul li + li {
    margin-left: 0;
  }

  #cat_nav .container ul li a {
    padding: 10px;
    border-radius: 0;
  }
}

/* 検索ボタン */

#cat_nav .container .search_btn {
  background-color: #333;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#cat_nav .container .search_btn svg {
  fill: #ffffff;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

@media only screen and (min-width: 813px) {
  #cat_nav .container .search_btn:hover {
    background-color: #fff;
  }

  #cat_nav .container .search_btn:hover svg {
    fill: #333;
  }
}

@media only 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_cnt,
#search_overlay {
  position: fixed;
  left: 0;
}

#search_overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: 9991;
}

#search_cnt {
  width: 100%;
  padding: 100px 0;
  top: -100%;
  z-index: 9992;
  -webkit-transition: top 0.8s ease;
  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;
  -webkit-transition: 0.6s;
  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);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#search_cnt .search_close span,
#search_cnt .search_close span:before {
  display: block;
  width: 2px;
  height: 30px;
  line-height: 1;
  vertical-align: middle;
  background-color: #ffffff;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#search_cnt .search_close span:before {
  content: "";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media only screen and (min-width: 813px) {
  #search_cnt .search_close:hover {
    background-color: #fff;
  }

  #search_cnt .search_close:hover span,
  #search_cnt .search_close:hover span:before {
    background-color: #333;
  }
}

#search_cnt .searchKeyword {
  margin-bottom: 2em;
}

#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 only 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);
  }

  #search_cnt .search_close span,
  #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 button[type="submit"] {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  will-change: opacity;
}

.searchKeyword form button[type="submit"] svg {
  max-width: 30px;
  max-height: 30px;
  fill: #666;
}

@media only screen and (min-width: 813px) {
  .searchKeyword form button[type="submit"]:hover {
    opacity: 0.6;
  }
}

.searchKeyword form input::placeholder,
.searchKeyword form input::-webkit-input-placeholder,
.searchKeyword form input:-ms-input-placeholder,
.searchKeyword form input::-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}

.searchKeyword form input[type="text"]:focus,
.searchKeyword form button[type="submit"]:focus {
  outline: 0;
}

@media only 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;
}
@media only screen and (max-width: 812px) {
  section .container article .post {
  }
}

/* 記事情報（日付・カテゴリー） */

section .container article .post .postInfo {
  margin: 0 0 20px 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.3rem;
  margin: 0 0.7em 0 0;
}
section .container article .post .postInfo em:last-of-type {
  margin: 0;
}
section .container article .post .postInfo em a {
  width: 100%;
  height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 15px;
  border-radius: 15px;
}

section .container article .post .postInfo em a:link,
section .container article .post .postInfo em a:visited {
  color: #fff;
  background-color: var(--color-highlight1);
}

@media only screen and (min-width: 813px) {
  section .container article .post .postInfo em a:hover,
  section .container article .post .postInfo em a:active {
    color: #fff;
    background-color: var(--color-highlight1-hover);
  }
}

section .container article .post .postInfo em.kodomo_syokudo a:link,
section .container article .post .postInfo em.kodomo_syokudo a:visited {
  background-color: var(--color-highlight1);
}

@media only screen and (min-width: 813px) {
  section .container article .post .postInfo em.kodomo_syokudo a:hover,
  section .container article .post .postInfo em.kodomo_syokudo a:active {
    background-color: var(--color-highlight1-hover);
  }
}

section .container article .post .postInfo em.hebe a:link,
section .container article .post .postInfo em.hebe a:visited {
  background-color: var(--color-highlight2);
}

@media only screen and (min-width: 813px) {
  section .container article .post .postInfo em.hebe a:hover,
  section .container article .post .postInfo em.hebe a:active {
    background-color: var(--color-highlight2-hover);
  }
}

section .container article .post .postInfo em.art_salon a:link,
section .container article .post .postInfo em.art_salon a:visited {
  background-color: var(--color-highlight4);
}

@media only screen and (min-width: 813px) {
  section .container article .post .postInfo em.art_salon a:hover,
  section .container article .post .postInfo em.art_salon a:active {
    background-color: var(--color-highlight4-hover);
  }
}

section .container article .post .postInfo em.news a:link,
section .container article .post .postInfo em.news a:visited {
  background-color: var(--color-highlight3);
}

@media only screen and (min-width: 813px) {
  section .container article .post .postInfo em.news a:hover,
  section .container article .post .postInfo em.news a:active {
    background-color: var(--color-highlight3-hover);
  }
}

@media only screen and (max-width: 812px) {
  section .container article .post .postInfo {
    margin: 0 0 10px 0;
  }
  section .container article .post .postInfo span {
    display: block;
    font-size: 1.3rem;
    margin: 0 2em 0.4em 0;
  }
  section .container article .post .postInfo em {
    font-size: 1.1rem;
    margin: 0 1em 0 0;
  }
  section .container article .post .postInfo em a {
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
  }
}

/* 記事タイトル */

section .container article .post .postTitle {
	font-size: 2.6rem;
	line-height: 1.6;
	/* font-weight: normal; */
	text-align: left;
	margin: 0 auto 3em;
}
@media only screen and (max-width: 812px) {
  section .container article .post .postTitle {
    font-size: 2.0rem;
    margin: 0 auto 1.2em;
  }
}

/* タグ */

section .container article .post .postTag {
  margin: 100px 0 0;
}
section .container article .post .postTag em {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 1.5em 0 0;
}
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:#999;
}
@media only screen and (min-width: 813px) {
  section .container article .post .postTag em a:hover,
  section .container article .post .postTag em a:active {
    color:#333;
  }
}
@media only screen and (max-width: 812px) {
  section .container article .post .postTag {
    margin: 50px 0 0;
  }
  section .container article .post .postTag em {
    font-size: 1.3rem;
  }
}

/* 記事部分 */

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;
}
section .container article .post .postContents:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 812px) {
  section .container article .post .postContents {
    font-size: 1.5rem
  }
}

/* 記事内のスタイル */

section .container article .post .postContents a:link,
section .container article .post .postContents a:visited {
  color:#000;
  text-decoration:underline;
}

@media only screen and (min-width: 813px) {
  section .container article .post .postContents a:hover,
  section .container article .post .postContents a:active	{
    color:#999;
    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 {
  max-width: 100%;
}
section .container article .post .postContents .wp-caption.alignnone,
section .container article .post .postContents .wp-caption.aligncenter {
  margin: 0 auto 1.5em;
}

section .container article .post .postContents .wp-caption.alignleft {
	/* float: left;
  margin: 0 1em 1em 0; */
  float: none;
  margin: 0 auto 1.5em 0;
}

section .container article .post .postContents .wp-caption.alignright {
	/* float: right;
  margin: 0 0 1em 1em; */
  float: none;
  margin: 0 0 1.5em auto;
}

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 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,
section .container article .post .postContents ol {
	margin: 1.12em 0;
}

section .container article .post .postContents ul li {
	list-style-type: disc;
}

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 .75em;
	font-weight: bold;
	text-align: left;
}
section .container article .post .postContents h3 {
	font-size: 2.0rem;
	margin: 1.5em 0 .75em;
	font-weight: bold;
	text-align: left;
}
section .container article .post .postContents h4 {
	font-size: 1.8rem;
	margin: 1.5em 0 .75em;
	font-weight: bold;
	text-align: left;
}
section .container article .post .postContents h5,
section .container article .post .postContents h6 {
	margin: 1.5em 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;
  min-height: 474px; /* ポストエリア幅843pxのとき画角16:9想定で */
}

section .container article .post .postContents *:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 812px) {
  section .container article .post .postContents h1,
  section .container article .post .postContents h2 {
    font-size: 2.0rem;
  }
  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）
--------------------------------*/

.postContents #toc_container {
  font-weight: bold;
  padding: 40px;
  border: solid 1px #333;
  margin-bottom: 4em;
}
.postContents #toc_container .toc_title {
  font-size: 2rem;
  margin-bottom: 1em;
}
.postContents #toc_container .toc_list > li {
  margin-bottom: 1.5em;
  list-style-type: none;
}
.postContents #toc_container .toc_list > li:last-child {
  margin-bottom: 0;
}
.postContents #toc_container .toc_list > li > a {
  font-weight: bold;
}
.postContents #toc_container .toc_list > li > ul {
  margin-top: 1em;
  padding-left: 2em;
}
.postContents #toc_container .toc_list > li > ul > li {
  margin-bottom: 1.5em;
  list-style-type: none;
}
.postContents #toc_container .toc_list > li > ul > li:last-child {
  margin-bottom: 0;
}
.postContents #toc_container a:link,
.postContents #toc_container a:visited	{
  color:#333;
  text-decoration:none;
}
@media only screen and (min-width: 813px) {
  .postContents #toc_container a:hover,
  .postContents #toc_container a:active	{
    color:#999;
    text-decoration:none;
  }
}
@media only screen and (max-width: 812px) {
  .postContents #toc_container {
    padding: 20px;
  }
  .postContents #toc_container .toc_title {
    font-size: 18px;
  }
  .postContents #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,
.pagelink .pagenext a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagelink .pagenext a {
  flex-direction: row-reverse
}
.pagelink .pageprev a img,
.pagelink .pagenext a img {
  width: 100px;
  height: auto;
}
.pagelink .pageprev a span,
.pagelink .pagenext a span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagelink .pageprev a span svg,
.pagelink .pagenext a span svg {
  width: 24px;
  height: 24px;
  margin: 0 10px 0 40px;
  transition: 0.3s;
}
.pagelink .pagenext a span svg {
  margin: 0 40px 0 10px;
}

@media only screen and (min-width: 813px) {
  .pagelink .pageprev a:hover svg {
    -webkit-transform:translate(-2px, 0);
    transform:translate(-2px, 0);
  }
  .pagelink .pagenext a:hover svg {
    -webkit-transform:translate(2px, 0);
    transform:translate(2px, 0);
  }
}

.pagelink .pageprev.pagedisable,
.pagelink .pagenext.pagedisable {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 812px) {
  .pagelink {
    padding-top: 10rem;
  }
  .pagelink {
    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: 18px;
    height: 18px;
    margin: 0 10px;
  }
}

/*--------------------------------
    ページネーション
--------------------------------*/

.pagination {
  margin-top: 100px;
  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,
.pagination ul li:last-child {
  width: auto;
}
.pagination ul li:first-child {
  margin-right: 100px;
}
.pagination ul li:last-child {
  margin-left: 100px;
}
.pagination ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.pagination ul li span.current {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-highlight);
  border-bottom: 4px solid var(--color-highlight);
}
.pagination ul li a.prev span,
.pagination ul li a.next span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination ul li a.prev i,
.pagination ul li a.next i {
  font-style: normal;
}
.pagination ul li a.prev span svg,
.pagination ul li a.next span svg {
  width: 24px;
  height: 24px;
  margin: 0 10px 0 40px;
  transition: 0.3s;
}
.pagination ul li a.next span svg {
  margin: 0 40px 0 10px;
}

@media only screen and (min-width: 813px) {
  .pagination ul li a.prev:hover svg {
    -webkit-transform:translate(-2px, 0);
    transform:translate(-2px, 0);
  }
  .pagination ul li a.next:hover svg {
    -webkit-transform:translate(2px, 0);
    transform:translate(2px, 0);
  }
}

.pagination ul li a.prev.pagedisable,
.pagination ul li a.next.pagedisable {
  opacity: 0;
  pointer-events: none;
}


@media only screen and (max-width: 812px) {

  .pagination {
    margin: 50px auto;
  }
  .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,
  .pagination ul li a.next span {
    display: block;
  }
  .pagination ul li a.prev i,
  .pagination ul li a.next i {
    display: none;
  }
  .pagination ul li a.prev span svg,
  .pagination ul li a.next span svg {
    width: 18px;
    height: 18px;
    margin: 0 10px 0 0;
  }
  .pagination ul li a.next span svg {
    margin: 0 0 0 10px;
  }
}


/* ------------------------------------------------------------ サイドカラム ------------------------------------------------------------ */

/*--------------------------------
	サイドカラム
--------------------------------*/

/* カテゴリーリスト */

section .container aside .linksCategory {
  width: 48%;
  max-width:48%;
  -ms-flex: 0 0 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 only screen and (max-width: 812px) {
  section .container aside .linksCategory {
    width: 100%;
    max-width:100%;
    -ms-flex: 0 0 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%;
  -ms-flex: 0 0 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;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -5px;
	z-index: 2;
	pointer-events: none;
}

section .container aside .selectWrapper select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	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;
}

section .container aside .selectWrapper select::-ms-expand {
  display: none;
}

@media only screen and (max-width: 812px) {
  section .container aside .selectWrapper {
    width: 100%;
    max-width:100%;
    -ms-flex: 0 0 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%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  position: relative;
  margin: 0 auto;
  padding: 0;
}

section .container aside .searchKeyword form {
}

section .container aside .searchKeyword form input[type="text"] {
  width: 100%;
  height: 50px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #fff;
  padding:10px 40px 10px 20px;
  font-size: 1.6rem;
}

/* placeholderスタイル */

section .container aside .searchKeyword form input::placeholder,
section .container aside .searchKeyword form input::-webkit-input-placeholder,
section .container aside .searchKeyword form input::-ms-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;
  -webkit-transition: 0.4s;
  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 only screen and (min-width: 813px) {
  section .container aside .searchKeyword form input[type="submit"]:hover {
    opacity: 0.6;
  }
}

/* focus外す */

section .container aside .searchKeyword form input[type="text"]:focus,
section .container aside .searchKeyword form input[type="submit"]:focus {
  outline: 0;
}


@media only screen and (max-width: 812px) {
  section .container aside .searchKeyword {
    width: 100%;
    max-width:100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  section .container aside .searchKeyword form input[type="text"] {
    /* iOSの拡大阻止 */
    font-size: 16px;
    height: 40px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
  section .container aside .searchKeyword form input[type="submit"] {
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
  }
}

