@charset "utf-8";

/* << INDEX >> ----------------------------------------------------------------
*
* @ 共通
* @ トップページ
* @ ページ｜ため池に行こう
* @ サイトマップ
* @ 404
* @ 検索
* @ 投稿｜詳細
* @ カスタム投稿｜MITA通信　一覧
* @ カスタム投稿｜ため池紹介　概要
* @ カスタム投稿｜ため池紹介　詳細
* @ アーカイブ
*
* -------------------------------------------------------------------------- */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 共通
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ カテゴリーラベル
---------------------------------------------------------------------------- */
.post-data .cat_label {
  display: inline-block;
  width: 120px;
  padding: 4px 0;
  margin-left: 1em;
  color: #fff;
  border-radius: 3px;
  font-size: 0.875em;
  text-align: center;
}

/* @ リンクボタン（青背景・白文字）
---------------------------------------------------------------------------- */
.link_btn {
  margin-top: 100px;
  text-align: center;
}
.link_btn a {
  display: inline-block;
  text-align: center;
  background: #004da0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link_btn a:before {
  margin-right: 5px;
  content: '\f075';
  font-family: 'FontAwesome';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 480px) {
  .link_btn a span {
    display: none;
  }
}
a.alpha:hover {
  text-decoration: none;
}

/* @ カラム分割
---------------------------------------------------------------------------- */
.flex_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
/* >>>> 2カラム分割 */
@media screen and (min-width: 481px) {
  .col2 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col2:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .col2 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

.edit-col .col2,
.edit-col .col3,
.edit-col .col4 {
  text-align: center;
}
/* >>>> 3カラム分割 */
@media screen and (min-width: 769px) {
  .col3 {
    width: calc(((100% - 15px * 2) / 3) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col3:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) and ( max-width: 768px) {
  .col3 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col3:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .col3 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 4カラム分割 */
@media screen and (min-width: 769px) {
  .col4 {
    width: calc(((100% - 15px * 3) / 4) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col4:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) and ( max-width: 768px) {
  .col4 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }
  .col4:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .col4 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* @ タブ切り替え
---------------------------------------------------------------------------- */
.tab-hide {
  display: none;
}

/* @ もっと見るボタン
---------------------------------------------------------------------------- */
.more-btn {
  text-align: right;
}
.more-btn a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #95ceeb;
  font-size: 0.875rem;
}
.more-btn a::after {
  content: url(../img/more-btn.png);
  margin-left: 10px;
  font-weight: normal;
  font-family: 'Font Awesome 5 Solid';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* @ フロー
---------------------------------------------------------------------------- */
ul.flow {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.flow li {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  ul.flow li {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
}
ul.flow li p.flow-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  margin: 0 0 10px;
  text-align: center;
  background: #effff0;
  border: 1px solid #30ac38;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  font-size: 1.143rem;
  font-weight: bold;
  color: #564c4c;
}
@media screen and (max-width: 768px) {
  ul.flow li p.flow-title {
    max-width: 100%;
  }
}
ul.flow li p.flow-title::after {
  position: absolute;
  bottom: -9px;
  left: calc(50% - 9px);
  content: '';
  border-style: solid;
  border-width: 8px 8.5px 0 8.5px;
  border-color: #30ac38 transparent transparent transparent;
}
ul.flow li:last-of-type p.flow-title::after {
  content: none;
}
@media screen and (max-width: 768px) {
  ul.flow li p.flow-title::after {
    content: none;
  }
  ul.flow li::after {
    position: absolute;
    bottom: -9px;
    left: calc(50% - 9px);
    content: '';
    border-style: solid;
    border-width: 8px 8.5px 0 8.5px;
    border-color: #30ac38 transparent transparent transparent;
  }
  ul.flow li:last-of-type::after {
    content: none;
  }
}
ul.flow li p.flow-content {
  width: calc(100% - 20px - 300px);
  margin: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  ul.flow li p.flow-content {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px 0 0;
  }
}

/* @ キャプ
---------------------------------------------------------------------------- */
.wp-caption {
  width: auto !important;
  margin-bottom: 20px;
  text-align: center;
}
.wp-caption .wp-caption-text {
  margin: 0;
  text-align: center;
  font-size: 0.750rem;
  color: #444;
}
/* @ 投稿リスト
---------------------------------------------------------------------------- */
.news-list {
  margin-bottom: 50px;
  background-color: #fff;
}
.news-list ul {
  margin: 0;
  padding: 0;
}
.news-list ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.news-list ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 10px;
  border-bottom: dotted 1px #ccc;
}
.news-list ul li dl dt {
  width: 100px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.news-list ul li dl dd {
  margin: 0;
  padding: 0;
}
.news-list ul li dl dd:last-of-type {
  width: calc(100% - (140px + (120px + 10px)));
}
@media screen and (max-width: 768px) {
  .news-list ul li dl dd:last-of-type {
    margin-top: 5px;
    width: 100%;
  }
}
.news-list .cat_label {
  margin-right: 10px;
  width: 120px;
}
.news-list .cat_label span {
  display: block;
  padding: 3px 7px;
  background-color: #aaa;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* @ 画像のトリミングができる「object-fit」
---------------------------------------------------------------------------- */
.obj-fit-img {
  object-fit: cover;
  object-position: 0 100%;
  font-family: 'object-fit: cover; object-position: 0 100%;'
}

/* @ その他
---------------------------------------------------------------------------- */
.wp-pagenavi {
  clear: both;
}


/* @ デザイン タイプA
---------------------------------------------------------------------------- */
.f_3-7 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  .f_3-7 {
    display: block;
  }
}
.f_3-7 .L-box {
  width: 320px !important;
  margin-right: 30px;
  text-align: center;
}
.f_3-7 .L-box.img-box p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .f_3-7 .L-box {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
.f_3-7 .R-box {
  width: calc(100% - 320px - 30px);
}
.f_3-7 .R-box >:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .f_3-7 .R-box {
    width: 100%;
  }
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ トップページ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.home .more-btn {
  margin: -80px 0 45px;
}
@media screen and (max-width: 480px) {
  .home .more-btn {
    margin: 0 0 10px;
  }
}

/* @ キーイメージ
---------------------------------------------------------------------------- */
#index-keyimg .keyimg-wrap {
  background: #fff;
  background: linear-gradient(to bottom,  #fff 0%,#fff 0%,#fff 50%,#ddf1f9 75%,#abd7f0 100%);
}
@media screen and (max-width: 768px) {
  #index-keyimg .keyimg-wrap {
    min-height: 550px;
  }
}
@media screen and (max-width: 480px) {
  #index-keyimg .keyimg-wrap {
    min-height: 300px;
  }
}
@media screen and (max-width: 320px) {
  #index-keyimg .keyimg-wrap {
    min-height: 250px;
  }
}
#index-keyimg .keyimg-wrap .wrap {
  position: relative;
  bottom: -52px;
  margin-top: -52px;
}
#index-keyimg .keyimg-wrap .wrap .logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
#index-keyimg .keyimg-wrap .wrap .logo figure {
  text-align: center;
}
@media screen and (max-width: 480px) {
  #index-keyimg .keyimg-wrap .wrap .logo figure {
    width: calc(100vw - 40px);
  }
}
#index-keyimg .keyimg-wrap .wrap .logo figure.icon {
  margin-top: 10px;
  -webkit-animation:fuwafuwa 3s infinite linear alternate;
  animation:fuwafuwa 3s infinite linear alternate;
}
@media screen and (max-width: 768px) {
  #index-keyimg .keyimg-wrap .wrap .logo figure.icon {
    max-width: calc(100vw - 250px);
    min-width: 170px;
    margin: 0 auto;
  }
}
@-webkit-keyframes fuwafuwa {
  0% {-webkit-transform:translate(0, 0) rotate(-5deg);}
  50% {-webkit-transform:translate(0, -5px) rotate(0deg);}
  100% {-webkit-transform:translate(0, 0)rotate(5deg);}
}
@keyframes fuwafuwa {
  0% {transform:translate(0, 0) rotate(-5deg);}
  50% {transform:translate(0, -5px) rotate(0deg);}
  100% {transform:translate(0, 0)rotate(5deg);}
}
@media all and (-ms-high-contrast:none) and (max-width: 768px) {
  #index-keyimg .keyimg-wrap .wrap .logo .catch,
  #index-keyimg .keyimg-wrap .wrap .logo .icon {
    width: 100%;
  }
  #index-keyimg .keyimg-wrap .wrap .logo .catch img,
  #index-keyimg .keyimg-wrap .wrap .logo .icon img {
    width: 100%;
  }
}
#index-keyimg #nami1 {
  height: 52px;
  background: url('../img/wave-top.png') repeat-x left top;
}

/* @ 最新情報
---------------------------------------------------------------------------- */
#index-news {
  margin-bottom: 80px;
}
#index-news .tab-menu {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
#index-news .tab-menu li {
  position: relative;
  margin-right: 10px;
}
#index-news .tab-menu li:last-of-type {
  margin-right: 0;
}
#index-news .tab-menu li span.txt {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #index-news .tab-menu li span.txt {
    padding: 10px 10px;
    font-size: 0.875rem;
  }
}
#index-news .tab-menu li:hover span,
#index-news .tab-menu li.tab-select span {
  opacity: 1;
}
#index-news .tab-menu li:hover span.triangle::after,
#index-news .tab-menu li.tab-select span.triangle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

#index-news .tab-content .tab-item {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 769px) {
  #index-news .tab-content .tab-item li {
    width: calc(((100% - 50px * 2) / 3) - 0.1px);
    margin: 0 50px 30px 0;
  }
  #index-news .tab-content .tab-item li:nth-of-type(3n) {
    margin-right: 0;
  }
}
#index-news .tab-content .tab-item li dl {
  margin: 0;
}
#index-news .tab-content .tab-item li dl dt {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
#index-news .tab-content .tab-item li dl dt .date {
  color: #666;
}
#index-news .tab-content .tab-item li dl dd {
  margin: 10px 0 0;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#index-news .tab-content .tab-item li dl dd a {
  position: relative;
  display: inline-block;
  color: #444;
  text-decoration: none;
}
#index-news .tab-content .tab-item li:hover dl dd a {
  color: #004da0;
  transition: transform .3s;
}

/* @ MITA通信
---------------------------------------------------------------------------- */
#index-mita ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#index-mita ul li a {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 380px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 480px) {
  #index-mita ul.slider li a {
    max-width: 300px;
  }
}
#index-mita ul li a::before {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  content: '';
  border-left: 30px solid transparent;
  border-bottom: 30px solid #1f9fd6;
}
#index-mita ul li a::after {
  position: absolute;
  display: block;
  bottom: -1px;
  right: 4px;
  color: #fff;
  content: '\f061';
  font-family: "Font Awesome 5 Solid", "FontAwesome";
  font-size: .75rem;
  font-weight: normal;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#index-mita ul li a figure {
  max-height: 255px;
  margin: 0;
  text-align: center;
  overflow: hidden;
}
#index-mita ul li a figure img {
  transition-duration: 0.5s; /*変化の時間*/
  width: 385px;
  height: 255px;
}
#index-mita ul li a:hover figure img {
  transform: scale(1.2,1.2); /*画像の拡大*/
  cursor: pointer; /*カーソルをポインターにする*/
}
@media screen and (max-width: 480px) {
  #index-mita ul li a figure {
    max-height: 200px;
  }
}
#index-mita ul li a .box {
  padding: 20px;
  border: solid 1px #ccc;
  border-top: none;
  box-sizing: border-box;
}
#index-mita ul li a .box p {
  margin: 0;
}
#index-mita ul li a .box .date {
  margin: 10px 0 0;
  color: #666;
  font-size: 0.875rem;
}


/* @ フッター
---------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  #footer-nav {
    display: none;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ページ｜ため池に行こう
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-go-to-the-pond .flex_cols {
  margin-top: 40px;
}
.page-go-to-the-pond .flex_cols .col4 .ttl {
  margin: 0;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-go-to-the-pond .flex_cols .col4 .map1 .ttl {
  background: #c01e5c;
}
.page-go-to-the-pond .flex_cols .col4 .map2 .ttl {
  background: #368acf;
}
.page-go-to-the-pond .flex_cols .col4 .map3 .ttl {
  background: #339c5b;
}
.page-go-to-the-pond .flex_cols .col4 .map4 .ttl {
  background: #f37c23;
}
.page-go-to-the-pond .flex_cols .col4 .map5 .ttl {
  background: #9b2fae;
}
.page-go-to-the-pond .flex_cols .col4 ol {
  margin-bottom: 30px;
  padding-left: 0;
  counter-reset: li;
}
.page-go-to-the-pond .flex_cols .col4 ol > li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 2.5em;
  list-style: none;
}
.page-go-to-the-pond .flex_cols .col4 ol > li::before {
  counter-increment: li;
  content: counter(li);
  margin-right: 1em;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0em;
  top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.750rem;
}
.page-go-to-the-pond .flex_cols .col4 .map1 ol > li::before {
  background: #c01e5c;
}
.page-go-to-the-pond .flex_cols .col4 .map2 ol > li::before {
  background: #368acf;
}
.page-go-to-the-pond .flex_cols .col4 .map3 ol > li::before {
  background: #339c5b;
}
.page-go-to-the-pond .flex_cols .col4 .map4 ol > li::before {
  background: #f37c23;
}
.page-go-to-the-pond .flex_cols .col4 .map5 ol > li::before {
  background: #9b2fae;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ サイトマップ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-sitemaps .sitemaps-list {
  width: 48%;
  float: left;
  margin-left: 4%;
}
.page-sitemaps .sitemaps-list:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .page-sitemaps .sitemaps-list {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.page-sitemaps .sitemaps-list ul {
  padding: 0;
}
.page-sitemaps .sitemaps-list ul ul {
  padding-left: 1.5em;
}
.page-sitemaps .sitemaps-list li {
  list-style: none;
}
.page-sitemaps .sitemaps-list li a {
  display: block;
  padding: 0.5em;
  color: inherit;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
}
.page-sitemaps .sitemaps-list li a:hover {
  text-decoration: none;
  background-color: #f4f9fe;
}
.page-sitemaps .sitemaps-list li a:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f105";
  margin-right: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 404
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ メッセージ
---------------------------------------------------------------------------- */
.error404 .er404-message {
  text-align: center;
}
.error404 .er404-message:before {
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 140px;
  content: "\f071";
  color: #f66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .error404 .er404-message:before {
    font-size: 112px;
  }
}
.error404 .er404-message p:first-child {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .error404 .er404-message p:first-child {
    font-size: 2.25em;
  }
}
.error404 .er404-message p:first-child span {
  font-size: 0.5em;
}

/* @ 検索フォーム
---------------------------------------------------------------------------- */
#er404-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  min-width: 280px;
  max-width: 680px;
  margin: 5em auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #er404-search {
    margin: 2em auto;
  }
}
#er404-search label:first-of-type {
  width: 100%;
}
#er404-search input[type='text'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #eee;
}
#er404-search input[type='submit'] {
  font-family: 'FontAwesome';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.5em 0.75em;
  height: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #2d3339;
  color: #fff;
  font-weight: normal;
  font-size: 1.25em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 検索
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.search #er404-search {
  margin: 3em auto;
}
.search .search-list {
  border-top: 1px solid #ccc;
}
.search .search-list ul {
  display: block;
  margin: 0;
  padding: 0;
}
.search .search-list > a {
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
  transition: opacity 0.3s;
}
.search .search-list > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.search .search-list h3 {
  margin-top: 0;
}
.search .search-list p:last-child {
  text-align: right;
  margin-bottom: 0;
  padding-top: 1em;
  border-top: 1px dotted #ccc;
  font-size: 0.875em;
  color: #999;
}
.search .search-count {
  margin: 2em 0;
}
.search-everything-highlight {
  font-weight: bold;
  text-decoration: underline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.search-everything-highlight:before {
  display: none;
}
.search .wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search .permalink {
  overflow: hidden;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 投稿｜詳細
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.single .post-data {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1em;
  margin-bottom: 3em;
  font-weight: bold;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ カスタム投稿｜MITA通信　一覧
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.post-type-archive-mita #index-mita ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .post-type-archive-mita #index-mita ul li {
    width: calc(((100% - 30px * 2) / 3) - 0.1px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .post-type-archive-mita #index-mita ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .post-type-archive-mita #index-mita ul li {
    width: calc(((100% - 20px) / 2) - 0.1px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .post-type-archive-mita #index-mita ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .post-type-archive-mita #index-mita ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ カスタム投稿｜MITA通信　詳細
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.single-mita .post-data {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-mita .wp-caption-text {
  font-size: 0.875rem;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ カスタム投稿｜ため池紹介　概要
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.reservoir-template-single-reservoir-php .child-links {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 25px;
  padding: 0;
}
.reservoir-template-single-reservoir-php .child-links {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .reservoir-template-single-reservoir-php .child-links li {
    width: calc(((100% - 5px * 3) / 4) - 0.1px);
    margin: 0 5px 10px 0;
  }
  .reservoir-template-single-reservoir-php .child-links li:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) and ( max-width: 768px) {
  .reservoir-template-single-reservoir-php .child-links li {
    width: calc(((100% - 10px) / 2) - 0.1px);
    margin: 0 10px 10px 0;
  }
  .reservoir-template-single-reservoir-php .child-links li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .reservoir-template-single-reservoir-php .child-links li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.reservoir-template-single-reservoir-php .child-links li a {
  display: block;
  padding: 12px 10px;
  border: 1px solid #666;
  border-radius: 3px;
  text-align: center;
  color: #444;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity .3s;
}
.reservoir-template-single-reservoir-php .child-links li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.reservoir-template-single-reservoir-php .child-links li a::after {
  margin-left: 7px;
  content: '\f13a';
  font-weight: normal;
  font-family: 'Font Awesome 5 Solid';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ カスタム投稿｜ため池紹介　詳細
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.reservoir-template-single-reservoir_detail .detail-ttl {
  margin: 20px 0 25px;
  padding: 10px 10px;
  background-color: #bbe3fc;
  color: #3366ff;
  font-size: 1.375rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.reservoir-template-single-reservoir_detail .table_default ul {
  margin: 0;
  padding-left: 1.5em;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ アーカイブ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
.category #main #contents > div > a,
.page-information #main #contents > div > a,
.search #main #contents > div > a {
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
}
.category #main #contents > div > a:hover,
.page-information #main #contents > div > a:hover,
.search #main #contents > div > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.category #main h3,
.page-template-page-archive #main h3,
.search #main h3 {
  margin-top: 0;
}
.category .post-data,
.page-template-page-archive .post-data,
.search .post-data {
  border-top: 1px dotted #ccc;
  padding-top: 1em;
  margin-bottom: 0;
  text-align: right;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*/
