@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
@import url(../fonts/Noto/load.css);
#wrapper {
  position: relative;
  overflow: hidden;
}

.ff01 {
  font-family: 'Kosugi Maru', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic" , sans-serif;
}

a {
  color: #442800;
}

a::before,
a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

a,
a::before,
a::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

p {
  word-break: break-all;
}

a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
投稿画像トリミング
===========================================*/
.cmn-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cmn-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  -o-object-position: bottom;
  object-position: bottom;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .cmn-img img {
    position: static;
    height: 100%;
    width: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -webkit-transform: none;
    transform: none;
  }
}
/*==========================================
ページネーション
===========================================*/
.pagenation {
  color: #1c3281;
  font-size: 12px;
  position: relative;
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
  margin-top: 10px;
}
.pagenation a {
  position: relative;
  color: #1c3281;
}
.pagenation li {
  background: #fff;
  color: #1c3281;
  font-size: 16px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  margin-right: 10px;
}
.pagenation li a {
  display: block;
  color: #1c3281;
  padding: 5px 10px;
  border: 1px solid #1c3281;
}
.pagenation li a:hover {
  background: #1c3281;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}
.pagenation .current {
  background: #1c3281;
  color: #fff !important;
  padding: 5px 10px;
}
.pagenation .right,
.pagenation .left {
  position: absolute;
  z-index: 2;
  top: 5px;
}
.pagenation .right a,
.pagenation .left a {
  position: relative;
}
.pagenation .right {
  right: 2%;
}
.pagenation .right a span {
  position: relative;
}
.pagenation .right a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: -20px;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #1c3281;
  border-right: 1px solid #1c3281;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pagenation .center {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: bold;
  top: 5px;
}
.pagenation .left {
  left: 2%;
}
.pagenation .left a span {
  position: relative;
}
.pagenation .left a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #1c3281;
  border-right: 1px solid #1c3281;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}

/*==========================================
site.php
===========================================*/
#site-map li {
  border-bottom: 1px solid #1c3281;
  text-align: left;
  font-weight: bold;
}
#site-map li a {
  padding: 15px 25px 15px 35px;
  display: block;
  position: relative;
}
#site-map li a:before, #site-map li a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#site-map li a:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 1px solid #1c3281;
  border-radius: 50%;
}
#site-map li a:after {
  left: 5px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #1c3281;
  border-right: 1px solid #1c3281;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#site-map li a:hover {
  color: #1c3281;
  letter-spacing: 2px;
}
