@charset "UTF-8";
/* カラー設定 */
/* コンテンツ幅 */
/* googleフォントの読み込み */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+1p");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;500;800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Gothic");
/* IE/Edge用のフォント読み込み
----------------------------------------*/
/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP otf";
  font-style: normal;
  font-weight: 300;
  src: url(../wf/NotoSansJP-Light.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP otf";
  font-style: normal;
  font-weight: 500;
  src: url(../wf/NotoSansJP-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP otf";
  font-style: normal;
  font-weight: 700;
  src: url(../wf/NotoSansJP-Bold.otf) format("opentype");
}
/* M PLUS 1p */
@font-face {
  font-family: "M PLUS 1p ttf";
  font-style: normal;
  font-weight: 300;
  src: url(../wf/MPLUS1p-Light.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS 1p ttf";
  font-style: normal;
  font-weight: 500;
  src: url(../wf/MPLUS1p-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS 1p ttf";
  font-style: normal;
  font-weight: 700;
  src: url(../wf/MPLUS1p-Bold.ttf) format("truetype");
}
/* M PLUS Rounded 1c */
@font-face {
  font-family: "M PLUS Rounded 1c ttf";
  font-style: normal;
  font-weight: 300;
  src: url(../wf/MPLUSRounded1c-Light.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS Rounded 1c ttf";
  font-style: normal;
  font-weight: 500;
  src: url(../wf/MPLUSRounded1c-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS Rounded 1c ttf";
  font-style: normal;
  font-weight: 700;
  src: url(../wf/MPLUSRounded1c-Bold.ttf) format("truetype");
}
/* Sawarabi Gothic */
@font-face {
  font-family: "Sawarabi Gothic ttf";
  font-style: normal;
  font-weight: 500;
  src: url(../wf/SawarabiGothic-Regular.ttf) format("truetype");
}
/* Sawarabi Mincho */
@font-face {
  font-family: "Sawarabi Mincho ttf";
  font-style: normal;
  font-weight: 500;
  src: url(../wf/SawarabiMincho-Regular.ttf) format("truetype");
}
/* フォントの設定 */
/* ブレイクポイントの定義 */
/* 全体.css */
* {
  color: #000;
  font-family: "Noto Sans JP", "Noto Sans JP otf";
  font-size: 0.8rem;
}

html {
  font-size: 20px;
}

/*
** 各パーツcssの読み込み
************************************************/
/* common.scss 共通css */
/* wordpress標準 */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* body */
body {
  background-color: #FFECEC;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 220px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  body {
    padding-left: 0;
  }
}

/* レイアウト */
.main-wrap {
  padding-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .main-wrap {
    padding-bottom: 0;
  }
}
.main-wrap > .inner-wrap {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 30px auto;
  background-color: white;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}
@media screen and (max-width: 1000px) {
  .main-wrap > .inner-wrap {
    width: 100%;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.has_sidebar-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .has_sidebar-main {
    display: block;
  }
}
.has_sidebar-main .main_contents {
  width: calc(100% - 340px);
}
@media screen and (max-width: 1000px) {
  .has_sidebar-main .main_contents {
    width: 100%;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ボックスデザイン */
.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex_box.around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex_box.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* ボタンデザイン */
.btn01 {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 190px;
  background-color: #FFF18E;
  text-align: center;
  color: #7F5C42;
  font-size: 0.9rem;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.btn01:link {
  color: #7F5C42;
}
.btn01:visited {
  color: #7F5C42;
}

.btn02 {
  display: inline-block;
  text-align: center;
  border: solid 5px #89CFC5;
  background-color: white;
  border-radius: 40px;
  padding: 15px;
  width: auto;
  min-width: 230px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #7F5C42;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn02:link {
  color: #7F5C42;
}
.btn02:visited {
  color: #7F5C42;
}
.btn02.hover {
  border: solid 5px #EE859A;
}
.btn02 .circle {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #F18D00;
  color: white;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-radius: 100%;
  text-align: center;
}
.btn02 .circle i {
  color: white;
  margin-left: 2px;
}

.btn03 {
  display: inline-block;
  padding: 10px 20px;
  min-width: 190px;
  text-align: center;
  background-color: #97D247;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn03:link {
  color: white;
}
.btn03:visited {
  color: white;
}
.btn03.hover {
  background-color: #618D23;
}

.btn04 {
  display: inline-block;
  padding: 15px;
  min-width: 210px;
  text-align: center;
  color: white;
  background-color: #EB3745;
  color: white;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.8rem;
}
.btn04:link {
  color: white;
}
.btn04:visited {
  color: white;
}

/* 見出し設定
------------------------------------------------*/
.title02 {
  font-size: 1.25rem;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  border-radius: 3px;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: normal;
}

/* リンク設定 */
.g-over_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a:link {
  color: blue;
}

a:visited {
  color: blueviolet;
}

/* 404 */
.error-404 {
  text-align: center;
  font-size: 2.5rem !important;
  margin: 30px 0;
}

/* 画像周り
------------------------------------*/
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* ウォーターマーク */
.water_mark, .modal-water_mark {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
}

.insta-img {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border: solid 2px transparent;
}
.insta-img .water_mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.insta-img .modal_desc {
  display: none;
}
.insta-img .insta_desc {
  position: absolute;
  top: 0%;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.6rem;
  height: 100%;
  padding: 5px;
  color: white;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  line-height: 1.2em;
}
.insta-img .insta_desc .center {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 90%;
  display: inline-block;
  width: 100%;
  color: white;
  text-align: center;
}
.insta-img.hover {
  z-index: 1;
  border: solid 2px white;
}
.insta-img.hover.zoom {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.insta-img.hover .insta_desc {
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

/* モーダル */
#x-modal_list {
  position: fixed;
  width: 100vw;
  height: 110vh;
  z-index: 999;
  display: none;
  top: 50%;
  left: 50%;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#x-modal_list li {
  position: absolute;
  top: 50%;
  left: calc(50% + 110px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  border-radius: 10px;
  background-color: white;
  display: none;
  max-width: auto;
}
@media screen and (max-width: 1000px) {
  #x-modal_list li {
    left: 50%;
  }
}
#x-modal_list li img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 400px);
  max-height: 80vh;
}
@media screen and (max-width: 1000px) {
  #x-modal_list li img {
    max-width: 80vw;
  }
}
#x-modal_list li > .close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
  background-color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#x-modal_list li > .close i {
  font-size: 1.2rem;
}
#x-modal_list li.insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#x-modal_list li.insta .modal-water_mark {
  width: 50%;
}
#x-modal_list li.insta .modal-water_mark img {
  max-width: 100%;
}
#x-modal_list li.insta .insta_desc {
  padding: 20px;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#x-modal_list li.insta .insta_desc .date {
  font-size: 0.8rem;
  margin-bottom: 30px;
}
#x-modal_list li.insta .insta_desc .prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
#x-modal_list li.insta .insta_desc .prof .icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 20px;
  position: relative;
}
#x-modal_list li.insta .insta_desc .prof .icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#x-modal_list li.insta .insta_desc .desc {
  line-height: 1.5em;
  font-size: 0.9rem;
}
#x-modal_list li.insta .insta_desc .link {
  margin-top: 20px;
}
#x-modal_list li.insta .insta_desc .link a {
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  border: solid 1px #ccc;
  padding: 10px;
}
#x-modal_list li.x-prev, #x-modal_list li.x-next {
  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;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: white;
  position: absolute;
  left: 240px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #x-modal_list li.x-prev, #x-modal_list li.x-next {
    width: 50px;
    height: 50px;
    left: calc(50% - 70px);
    top: auto;
    bottom: calc(5vh + 20px);
  }
}
#x-modal_list li.x-prev i, #x-modal_list li.x-next i {
  font-size: 1.6rem;
}
#x-modal_list li.x-next {
  left: auto;
  right: 20px;
}
@media screen and (max-width: 1000px) {
  #x-modal_list li.x-next {
    left: auto;
    right: calc(50% - 70px);
  }
}

.modal_img {
  cursor: pointer;
}

/* テキスト */
.annotation {
  color: red;
}

/* snsアイコン */
.sns_icon {
  width: auto;
  height: auto;
  max-width: 50px;
  max-height: 50px;
}

/* snsシェアボタン */
.lcw_social_book {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 20px;
}
.lcw_social_book .list {
  margin-right: 5px;
  padding: 3px 8px;
  border-radius: 5px;
}
.lcw_social_book .list a {
  font-size: 0.6rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 14px;
}
.lcw_social_book .list a img {
  width: auto;
  height: auto;
  max-width: 13px;
  max-height: 13px;
  margin-right: 5px;
}
.lcw_social_book .list.facebook {
  background-color: #4267B2;
}
.lcw_social_book .list.facebook a {
  color: white;
}
.lcw_social_book .list.twitter {
  background-color: #1B95E0;
}
.lcw_social_book .list.twitter a {
  color: white;
}
.lcw_social_book .list.line {
  background-color: #eee;
  border: solid 1px #ccc;
}
.lcw_social_book .list.line a {
  color: black;
}

/* ページネーション */
.pagination {
  margin: 90px auto 20px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .pagination {
    margin: 20px auto;
  }
}
.pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  margin: 0 5px;
  color: #6F4924;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFCCCC;
}
@media screen and (max-width: 1000px) {
  .pagination a {
    width: 30px;
    height: 30px;
    margin: 0 3px;
    line-height: 30px;
  }
}
.pagination a.angle {
  border: solid 2px #D3C5B2;
  background-color: white;
}
.pagination i {
  color: #6F4924;
  font-weight: bold;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}
.pagination span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  margin: 0 5px;
  color: white;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: bold;
  background-color: #EB3745;
}
@media screen and (max-width: 1000px) {
  .pagination span {
    width: 30px;
    height: 30px;
    margin: 0 3px;
    line-height: 30px;
  }
}

/* PREV NEXT */
.prev_next-wrap {
  text-align: center;
  margin: 90px 0;
}
@media screen and (max-width: 1000px) {
  .prev_next-wrap {
    margin: 40px 0;
  }
}
.prev_next-wrap a {
  display: inline-block;
  margin: 0 5px;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #EB3745;
  border: solid 1px #EB3745;
  color: white;
  font-size: 0.8rem;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .prev_next-wrap a {
    padding: 8px 10px 10px;
    font-size: 0.7rem;
    margin: 3px;
    width: 80%;
  }
}
.prev_next-wrap a.hover {
  background-color: white;
  color: #7F5C42;
}

/* WP Social Bookmarking Light */
.wsbl_line img {
  height: 20px;
}

/* アニメーション
---------------------------------------*/
/* フェードイン */
.fade_in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.fade_in.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 順番にフェードイン(上からフェードイン) */
.fade_in_order_list li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.fade_in_order_list.active li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fade_in_order_list.active li:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.fade_in_order_list.active li:nth-of-type(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fade_in_order_list.active li:nth-of-type(4) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

@-webkit-keyframes fuwa3 {
  0% {
    -webkit-transform: translate(-50%, 0) rotateZ(0deg);
            transform: translate(-50%, 0) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(-50%, -8px) rotate(3deg);
            transform: translate(-50%, -8px) rotate(3deg);
  }
  50% {
    -webkit-transform: translate(-50%, -10px) rotate(0deg);
            transform: translate(-50%, -10px) rotate(0deg);
  }
  75% {
    -webkit-transform: translate(-50%, -8px) rotate(-3deg);
            transform: translate(-50%, -8px) rotate(-3deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
}

@keyframes fuwa3 {
  0% {
    -webkit-transform: translate(-50%, 0) rotateZ(0deg);
            transform: translate(-50%, 0) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(-50%, -8px) rotate(3deg);
            transform: translate(-50%, -8px) rotate(3deg);
  }
  50% {
    -webkit-transform: translate(-50%, -10px) rotate(0deg);
            transform: translate(-50%, -10px) rotate(0deg);
  }
  75% {
    -webkit-transform: translate(-50%, -8px) rotate(-3deg);
            transform: translate(-50%, -8px) rotate(-3deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
}
/* header.scss ヘッダー要素のcss */
.header-wrap {
  position: absolute;
  width: auto;
  min-width: 230px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 1000px) {
  .header-wrap {
    position: fixed;
    padding-bottom: 0;
    background-image: none;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-box-shadow: 0 0 5px #ccc;
            box-shadow: 0 0 5px #ccc;
    height: 70px;
  }
}
.header-wrap.sticky .header-inner_wrap {
  height: auto;
  position: sticky;
  top: 0;
  min-height: 100vh;
}
@media screen and (max-width: 1000px) {
  .header-wrap.sticky .header-inner_wrap {
    height: 70px;
    min-height: 0;
  }
}

.header-inner_wrap {
  display: block;
  width: 220px;
  height: 100%;
  background-color: #FFECEC;
  -webkit-box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap {
    width: 100%;
    height: 70px;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .logo-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 70px;
    position: relative;
  }
}
.header-inner_wrap .logo-nav .sp-toggle {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .logo-nav .sp-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70px;
    height: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #eb3745;
    position: relative;
  }
  .header-inner_wrap .logo-nav .sp-toggle .bars {
    display: block;
    width: 40px;
    height: 25px;
    position: relative;
  }
  .header-inner_wrap .logo-nav .sp-toggle .bars span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    left: 0;
  }
  .header-inner_wrap .logo-nav .sp-toggle .bars span.top {
    top: 0;
  }
  .header-inner_wrap .logo-nav .sp-toggle .bars span.middle {
    top: calc(50% - 1px);
  }
  .header-inner_wrap .logo-nav .sp-toggle .bars span.bottom {
    bottom: 0;
  }
  .header-inner_wrap .logo-nav .sp-toggle .text {
    font-size: 0.6rem;
    color: white;
    font-weight: bold;
    margin-top: -20px;
    margin-bottom: 0;
  }
}
.header-inner_wrap .logo-wrap {
  height: 190px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .logo-wrap {
    width: calc(100% - 70px);
    height: 100%;
    padding-left: 10px;
    display: block;
  }
}
.header-inner_wrap .logo-wrap a {
  text-align: center;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .logo-wrap a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    height: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header-inner_wrap .logo-wrap picture {
  width: 100%;
  max-height: 100%;
}
.header-inner_wrap .logo-wrap img {
  width: auto;
  height: auto;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .logo-wrap img {
    max-width: 100%;
    max-height: calc(100% - 20px);
  }
}
.header-inner_wrap .logo-wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: url(../img/common/border-colorful.gif);
  background-repeat: repeat-x;
  background-position: left center;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .logo-wrap:after {
    display: none;
  }
}
.header-inner_wrap .kanren-wrap {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .header-inner_wrap .kanren-wrap {
    display: none;
  }
}
.header-inner_wrap .kanren-wrap .list {
  margin: 10px 0;
}

/* グローバルメニュー */
.global_nav-wrap {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap {
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: scroll;
    position: relative;
  }
  .global_nav-wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-image: url(../img/common/border-colorful.gif);
    background-repeat: repeat-x;
    background-position: left center;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.global_nav-wrap .menu {
  display: block;
}
.global_nav-wrap .menu li {
  width: 100%;
  height: 60px;
  background-color: white;
  border-top: solid 1px #ccc;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li {
    border-color: white;
    position: relative;
    height: auto;
    min-height: 60px;
  }
}
.global_nav-wrap .menu li:first-of-type {
  border-top: none;
}
.global_nav-wrap .menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li a {
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1rem;
    background-color: #fd9e9e;
    height: 60px;
  }
}
.global_nav-wrap .menu li a .text {
  font-size: 0.8rem;
  color: #7F5C42;
  display: inline-block;
  width: calc(100% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 5px;
  line-height: 1.4em;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li a .text {
    color: white;
  }
}
.global_nav-wrap .menu li a:link {
  text-decoration: none;
}
.global_nav-wrap .menu li a:visited {
  text-decoration: none;
}
.global_nav-wrap .menu li a:before {
  content: "\f105";
  font-family: FontAwesome;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  background-color: #EB3745;
  border-radius: 100%;
  font-size: 0.6rem;
  width: 18px;
  height: 18px;
  margin-left: 20px;
  margin-right: 15px;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li a:before {
    display: none;
  }
}
.global_nav-wrap .menu li a.hover {
  color: #EB3745;
}
.global_nav-wrap .menu li.current-menu-item {
  background-image: url(../img/common/bg-square-yellow.gif);
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li.current-menu-item a {
    background-image: none;
    background-color: #ffcfbf;
  }
  .global_nav-wrap .menu li.current-menu-item a .text {
    color: #eb3745;
  }
}
.global_nav-wrap .menu li.menu-item-has-children > a {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li.menu-item-has-children > a {
    width: calc(100% - 50px);
    padding-right: 0;
  }
}
.global_nav-wrap .menu li.menu-item-has-children .toggle {
  display: none;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li.menu-item-has-children .toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    padding: 10px;
    cursor: pointer;
  }
}
.global_nav-wrap .menu li.menu-item-has-children .toggle i {
  color: white;
  font-size: 1.5rem;
}
.global_nav-wrap .menu li.menu-item-has-children .toggle i.fa-minus-circle {
  display: none;
}
.global_nav-wrap .menu li.menu-item-has-children .toggle.open i.fa-plus-circle {
  display: none;
}
.global_nav-wrap .menu li.menu-item-has-children .toggle.open i.fa-minus-circle {
  display: inline-block;
}
.global_nav-wrap .menu li .sub-menu-wrap {
  position: absolute;
  top: 0;
  left: 220px;
  width: 300px;
  background-image: url(../img/common/bg-square-yellow.gif);
  z-index: -1;
  display: none;
  min-height: 100vh;
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li .sub-menu-wrap {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    min-height: 0;
  }
}
.global_nav-wrap .menu li .sub-menu-wrap .title-wrap {
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.global_nav-wrap .menu li .sub-menu-wrap .title-wrap > .inner {
  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;
  width: 225px;
  height: 150px;
  background-image: url(../img/header/sub-menu-title.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #7F5C42;
  font-size: 1rem;
  font-weight: bold;
}
.global_nav-wrap .menu li .sub-menu-wrap .sub-menu {
  height: auto;
}
.global_nav-wrap .menu li .sub-menu-wrap .sub-menu li {
  background-color: transparent;
  border: none;
}
.global_nav-wrap .menu li .sub-menu-wrap .sub-menu li a:before {
  background-color: transparent;
  color: #FF9900;
}
.global_nav-wrap .menu li .sub-menu-wrap .sub-menu li.current-menu-item {
  background-image: url(../img/common/bg-square-pink.gif);
}
.global_nav-wrap .menu li .sub-menu-wrap .sub-menu li.hover {
  background-image: url(../img/common/bg-square-pink.gif);
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .menu li .sub-menu {
    border-top: solid 1px white;
  }
  .global_nav-wrap .menu li .sub-menu li a {
    background-color: #c16262;
  }
  .global_nav-wrap .menu li .sub-menu li a .text {
    color: white;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .global_nav-wrap .menu li .sub-menu li.current-menu-item a {
    background-image: none;
    background-color: #ffcfbf;
  }
  .global_nav-wrap .menu li .sub-menu li.current-menu-item a .text {
    color: #eb3745;
  }
}
@media screen and (max-width: 1000px) {
  .global_nav-wrap .contact-wrap {
    display: none;
  }
}

/* お問い合わせ欄 */
.contact-wrap {
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../img/common/bg-marble-blue.gif);
  text-align: center;
}
.contact-wrap > .text {
  font-size: 0.7rem;
  display: inline-block;
  text-align: center;
}
.contact-wrap > .tel_number {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #7F5C42;
  font-size: 1.3rem;
  text-decoration: none;
  margin: 15px 0;
}
.contact-wrap > .tel_number:link {
  color: #7F5C42;
  text-decoration: none;
}
.contact-wrap > .tel_number:visited {
  color: #7F5C42;
  text-decoration: none;
}
.contact-wrap > .contact_mail {
  position: relative;
  margin-top: 5px;
  background-color: #FFF18E;
  border-radius: 5px;
  display: inline-block;
  padding: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.contact-wrap > .contact_mail.hover {
  background-color: #FFE006;
}
.contact-wrap > .contact_mail .mail_icon {
  position: relative;
  width: 27px;
  height: 27px;
  background-color: white;
  border-radius: 100%;
  display: block;
  margin-right: 5px;
}
.contact-wrap > .contact_mail .mail_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.contact-wrap > .contact_mail .mail_text {
  font-size: 0.7rem;
  color: #7F5C42;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: bold;
}
.contact-wrap.sis-wrap > .contact_mail {
  margin-top: 10px;
}

/* TOPページスライダー
-------------------------------------------------*/
.slide-outer_wrap {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .slide-outer_wrap {
    margin-top: 70px;
    margin-bottom: 20px;
  }
}
.slide-outer_wrap > .slide_before {
  display: block;
  width: 250px;
  height: 120px;
  background-image: url(../img/home/slide-before.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: center;
  position: absolute;
  top: 15px;
  right: 40px;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .slide-outer_wrap > .slide_before {
    display: none;
  }
}
.slide-outer_wrap > .slide_after {
  display: block;
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  bottom: 22px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .slide-outer_wrap > .slide_after {
    bottom: -1px;
  }
}
.slide-outer_wrap > .slide_after:before {
  content: "";
  display: block;
  padding-top: 16%;
}
.slide-outer_wrap > .slide_after--bottom0 {
  bottom: 0;
}
.slide-outer_wrap .slide_text {
  position: absolute;
  top: 60px;
  left: 90px;
}
@media screen and (max-width: 1000px) {
  .slide-outer_wrap .slide_text {
    left: 15px;
    top: 20px;
    width: auto;
    height: auto;
    max-width: calc(100% - 80px);
  }
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .slider-wrap .slick-list {
    padding: 0 !important;
  }
}
.slider-wrap .slide {
  position: relative;
  width: 100%;
}
.slider-wrap .slide:before {
  content: "";
  display: block;
  padding-top: 59%;
}
@media screen and (max-width: 1000px) {
  .slider-wrap .slide:before {
    padding-top: 67%;
  }
}
.slider-wrap .slide .img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .slider-wrap .slide .img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.slider-wrap .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
@media screen and (max-width: 1000px) {
  .slider-wrap .slick-dots {
    margin-top: 0;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    top: 100%;
  }
}
.slider-wrap .slick-dots li {
  width: 10px;
  height: 10px;
  display: block;
  margin: 0 5px;
  background-color: #CCCCCC;
  border-radius: 100%;
}
.slider-wrap .slick-dots li.slick-active {
  background-color: #DD9CC3;
}
.slider-wrap.youtube-slider-wrap > .slide {
  opacity: 1;
}
.slider-wrap.youtube-slider-wrap > .slide > .img {
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.slider-wrap.youtube-slider-wrap > .slide > .youtube {
  display: none;
}

.under-slide__page_list-wrap {
  padding: 0 10px;
}
.under-slide__page_list-wrap .page_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.under-slide__page_list-wrap .page_list a {
  width: calc(50% - 5px);
}

/* パンくずリスト
------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0;
}
@media screen and (max-width: 1000px) {
  .breadcrumbs {
    padding: 10px;
  }
}
.breadcrumbs .bread-inner {
  width: 1100px;
  max-width: calc(100% - 20px);
  margin: auto;
  font-size: 0.7rem;
}
@media screen and (max-width: 1000px) {
  .breadcrumbs .bread-inner {
    width: 100%;
  }
}
.breadcrumbs .bread-inner a {
  color: #EB3745;
  text-decoration: none;
}
.breadcrumbs .bread-inner a span {
  color: #EB3745;
}
.breadcrumbs .bread-inner i {
  color: #EB3745;
}

/* humberger.scss ハンバーガーメニューのcss */
/* home.scss フロントページのメインコンテンツcss */
.float_link {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 11;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .float_link {
    right: 10px;
    bottom: 10px;
  }
  .float_link img {
    max-width: 150px;
    max-height: 150px;
  }
}
.float_link > .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 1000px) {
  .float_link > .close {
    top: 0px;
    right: 0px;
  }
}
.float_link.top {
  bottom: 200px;
}
@media screen and (max-width: 1000px) {
  .float_link.top {
    bottom: 150px;
  }
}
.float_link.hide {
  opacity: 0;
  visibility: hidden;
}

/* 新着情報部分
---------------------------------------------*/
.news_section-wrap, .month_event_section-wrap {
  width: 100%;
  margin: auto;
  padding: 0 30px;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap, .month_event_section-wrap {
    width: 100%;
    display: block;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .news_section-wrap.mb_large, .mb_large.month_event_section-wrap {
    margin-bottom: 50px;
  }
}
.news_section-wrap .news_list-wrap, .month_event_section-wrap .news_list-wrap {
  width: 100%;
  padding: 0px 35px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap, .month_event_section-wrap .news_list-wrap {
    width: 100%;
    background-image: none;
    background-color: white;
    border-radius: 0px;
    padding: 0 20px 20px;
    -webkit-box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.1);
    position: relative;
  }
}
.news_section-wrap .news_list-wrap .news_title, .month_event_section-wrap .news_list-wrap .news_title {
  text-align: center;
  margin: 20px 0 10px;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap .news_title, .month_event_section-wrap .news_list-wrap .news_title {
    margin: 0;
    position: absolute;
    top: -30px;
    width: 100%;
    left: 0;
  }
}
.news_section-wrap .news_list-wrap .news_list, .month_event_section-wrap .news_list-wrap .news_list {
  list-style: none;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap .news_list, .month_event_section-wrap .news_list-wrap .news_list {
    padding-top: 30px;
  }
}
.news_section-wrap .news_list-wrap .news_list:before, .month_event_section-wrap .news_list-wrap .news_list:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: url(../img/common/dotted_border1.png);
  background-position: left;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap .news_list:before, .month_event_section-wrap .news_list-wrap .news_list:before {
    display: none;
  }
}
.news_section-wrap .news_list-wrap .news_list .list, .month_event_section-wrap .news_list-wrap .news_list .list {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.4em;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap .news_list .list, .month_event_section-wrap .news_list-wrap .news_list .list {
    line-height: 1.2em;
  }
}
.news_section-wrap .news_list-wrap .news_list .list:before, .month_event_section-wrap .news_list-wrap .news_list .list:before {
  content: "";
  display: block;
  border: solid 4px transparent;
  border-left: solid 8px #F19A53;
  width: 0;
  height: 0;
}
.news_section-wrap .news_list-wrap .news_list .list:after, .month_event_section-wrap .news_list-wrap .news_list .list:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: url(../img/common/dotted_border1.png);
  background-position: left;
  left: 0;
  bottom: 0;
}
.news_section-wrap .news_list-wrap .news_list .list span, .month_event_section-wrap .news_list-wrap .news_list .list span {
  font-size: 0.8rem;
}
.news_section-wrap .news_list-wrap .news_list .list span.cat, .month_event_section-wrap .news_list-wrap .news_list .list span.cat {
  color: white;
  display: inline-block;
  width: auto;
  min-width: 120px;
  text-align: center;
  background-color: #FABF2E;
  margin: 0 15px;
  padding: 3px 0;
  line-height: 1em;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap .news_list .list span.cat, .month_event_section-wrap .news_list-wrap .news_list .list span.cat {
    width: auto;
    min-width: 100px;
    padding: 3px 10px 5px;
    font-size: 0.7rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .news_list-wrap .news_list .list span.title, .month_event_section-wrap .news_list-wrap .news_list .list span.title {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
  }
}
.news_section-wrap .news_list-wrap .news_list .list.hover span.date, .month_event_section-wrap .news_list-wrap .news_list .list.hover span.date {
  color: #EB3745;
}
.news_section-wrap .news_list-wrap .news_list .list.hover span.title, .month_event_section-wrap .news_list-wrap .news_list .list.hover span.title {
  color: #EB3745;
}
.news_section-wrap .news_list-wrap .btn-wrap, .month_event_section-wrap .news_list-wrap .btn-wrap {
  margin-top: 12px;
  text-align: center;
}
.news_section-wrap .page_list-wrap, .month_event_section-wrap .page_list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap, .month_event_section-wrap .page_list-wrap {
    margin-top: 20px;
  }
}
.news_section-wrap .page_list-wrap.schedule_plus, .month_event_section-wrap .page_list-wrap.schedule_plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news_section-wrap .page_list-wrap.schedule_plus .page_list, .month_event_section-wrap .page_list-wrap.schedule_plus .page_list {
  max-width: 40%;
}
.news_section-wrap .page_list-wrap > .class-btn, .month_event_section-wrap .page_list-wrap > .class-btn, .news_section-wrap .page_list-wrap > .guide-btn, .month_event_section-wrap .page_list-wrap > .guide-btn {
  display: inline-block;
  width: calc(50% - 10px);
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap > .class-btn, .month_event_section-wrap .page_list-wrap > .class-btn, .news_section-wrap .page_list-wrap > .guide-btn, .month_event_section-wrap .page_list-wrap > .guide-btn {
    width: 48%;
  }
}
.news_section-wrap .page_list-wrap > .class-btn img, .month_event_section-wrap .page_list-wrap > .class-btn img, .news_section-wrap .page_list-wrap > .guide-btn img, .month_event_section-wrap .page_list-wrap > .guide-btn img {
  vertical-align: bottom;
}
.news_section-wrap .page_list-wrap > .class-btn.hover, .month_event_section-wrap .page_list-wrap > .class-btn.hover, .news_section-wrap .page_list-wrap > .hover.guide-btn, .month_event_section-wrap .page_list-wrap > .hover.guide-btn {
  opacity: 0.8;
}
.news_section-wrap .page_list-wrap > .guide-btn, .month_event_section-wrap .page_list-wrap > .guide-btn {
  margin-top: 15px;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap > .guide-btn, .month_event_section-wrap .page_list-wrap > .guide-btn {
    margin-top: 0;
  }
}
.news_section-wrap .page_list-wrap .this_month-schedule_list, .month_event_section-wrap .page_list-wrap .this_month-schedule_list {
  width: 445px;
  max-width: 55%;
  position: relative;
  background-image: url(../img/home/home-schedule_list_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .this_month-schedule_list, .month_event_section-wrap .page_list-wrap .this_month-schedule_list {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
  }
}
.news_section-wrap .page_list-wrap .this_month-schedule_list:before, .month_event_section-wrap .page_list-wrap .this_month-schedule_list:before {
  content: "";
  display: block;
  width: 62px;
  height: 39px;
  background-image: url(../img/icon/icon_clip.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: -5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .this_month-schedule_list-header, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .this_month-schedule_list-header {
  position: absolute;
  text-align: center;
  height: 53px;
  top: -29px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 180px;
  display: inline-block;
  background-image: url(../img/home/home-schedule_title-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: round;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .this_month-schedule_list-header:after, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .this_month-schedule_list-header:after {
  content: "";
  display: block;
  width: 48px;
  height: 35px;
  background-image: url(../img/home/home-schedule_title_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .this_month-schedule_list-header > .title, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .this_month-schedule_list-header > .title {
  font-size: 1.15rem;
  color: #664B3F;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: bold;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list {
  list-style: none;
  margin: 10px 0;
  background-color: white;
  padding: 10px 20px;
  max-height: 164px;
  overflow-y: scroll;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:before, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:before {
  content: "";
  display: block;
  border: solid 4px transparent;
  border-left: solid 8px #F19A53;
  width: 0;
  height: 0;
  margin-right: 5px;
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:before, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:before {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:first-of-type:before, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:first-of-type:before {
    display: block;
    border: none;
    width: 100%;
    height: 2px;
    background-image: url(../img/common/dotted_border1.png);
    background-position: left;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:after, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: url(../img/common/dotted_border1.png);
  background-position: left;
  left: 0;
  bottom: 0;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span {
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span {
    font-size: 0.7rem;
  }
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span.date, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span.date {
  margin-right: 10px;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span.title, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span.title {
  max-width: calc(100% - 90px);
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span.title, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list span.title {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    font-size: 0.8rem;
  }
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list.hover span.date, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list.hover span.date {
  color: #EB3745;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list.hover span.title, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .schedule_list > .list.hover span.title {
  color: #EB3745;
}
.news_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .archive_link, .month_event_section-wrap .page_list-wrap .this_month-schedule_list .this_month-schedule_list-body .archive_link {
  text-align: center;
}
.news_section-wrap .page_list-wrap .page_list, .month_event_section-wrap .page_list-wrap .page_list {
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .page_list, .month_event_section-wrap .page_list-wrap .page_list {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.news_section-wrap .page_list-wrap .page_list a, .month_event_section-wrap .page_list-wrap .page_list a {
  display: inline-block;
  margin: 10px 0;
}
@media screen and (max-width: 1000px) {
  .news_section-wrap .page_list-wrap .page_list a, .month_event_section-wrap .page_list-wrap .page_list a {
    width: calc(50% - 5px);
  }
}

/* カスタムHTML
---------------------------------------------*/
.home-custom-html-wrap {
  margin-top: 60px;
  padding: 0 65px;
}
@media screen and (max-width: 1000px) {
  .home-custom-html-wrap {
    padding: 0 10px;
    margin-top: 30px;
  }
}

/* 月間行事部分
---------------------------------------------*/
.month_event_section-wrap {
  margin-top: 60px;
}

/* 当園についての部分
---------------------------------------------*/
.about_us_section-wrap {
  margin-top: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap {
    padding: 10px 0 0;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
.about_us_section-wrap .about_us_title {
  text-align: center;
  padding: 0 20px;
}
.about_us_section-wrap .about_us-content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin-top: 30px;
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap .about_us-content_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}
.about_us_section-wrap .about_us-content_list .list {
  width: 25%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 35px;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap .about_us-content_list .list {
    width: calc(50% - 5px);
    padding: 0;
    margin-bottom: 20px;
    margin-top: 0;
  }
}
.about_us_section-wrap .about_us-content_list .list:nth-of-type(2n) {
  margin-top: 0;
}
.about_us_section-wrap .about_us-content_list .list .thumb {
  width: calc(100% - 20px);
  mask-image: url(../img/common/mask2.png);
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/mask2.png);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
}
.about_us_section-wrap .about_us-content_list .list .thumb:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap .about_us-content_list .list .thumb {
    width: 100%;
    height: auto;
  }
}
.about_us_section-wrap .about_us-content_list .list .thumb .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.about_us_section-wrap .about_us-content_list .list .btn-wrap {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap .about_us-content_list .list .btn-wrap {
    margin-top: 5px;
  }
}
.about_us_section-wrap .about_us-content_list .list .btn-wrap .btn02 {
  min-width: 150px;
  width: calc(100% - 20px);
  padding: 15px 5px;
  padding-right: 25px;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap .about_us-content_list .list .btn-wrap .btn02 {
    min-width: auto;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.6rem;
    padding: 5px 8px;
    font-size: 0.8rem;
    border-width: 3px;
  }
}
.about_us_section-wrap .about_us-content_list .list .btn-wrap .btn02 .circle {
  right: 10px;
}
@media screen and (max-width: 1000px) {
  .about_us_section-wrap .about_us-content_list .list .btn-wrap .btn02 .circle {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
    margin-left: 5px;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
  }
}
.about_us_section-wrap .about_us-content_list .list.hover .thumb .img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* 新着ブログ一覧
------------------------------------*/
.new_post_section-wrap {
  margin: 80px 0 0;
  position: relative;
  padding: 0 30px;
  padding-top: 10px;
  padding-bottom: 30px;
  background-image: url(../img/common/bg-marble-green.gif);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .new_post_section-wrap {
    margin: 40px 0 0;
    padding: 10px 10px 30px;
  }
}
.new_post_section-wrap:before {
  content: "";
  display: block;
  width: 208px;
  height: 96px;
  background-image: url(../img/home/blog_before.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 40px;
  top: 20px;
}
@media screen and (max-width: 1000px) {
  .new_post_section-wrap:before {
    display: none;
  }
}
.new_post_section-wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/common/border-colorful.png);
  background-position: left top;
  background-repeat: repeat-x;
}
.new_post_section-wrap .new_post_title {
  text-align: center;
  font-size: 1.4rem;
  color: #694135;
  font-weight: normal;
  padding: 20px 0;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
}
@media screen and (max-width: 1000px) {
  .new_post_section-wrap .new_post_title {
    margin: 0;
  }
}
.new_post_section-wrap .btn-wrap {
  margin: 30px 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .new_post_section-wrap .btn-wrap {
    margin-bottom: 0;
  }
}
.new_post_section-wrap .btn-wrap .btn01 {
  background-color: #FFCC01;
}

.new_post_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .new_post_list {
    width: 100%;
    margin: 10px auto;
  }
}
.new_post_list .list {
  width: calc(25% - 15px);
  padding: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
          box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
  border: solid 1px transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin-right: 20px;
  background-color: white;
  /*
      .cat {
          display: inline-block;
          padding: 1px 8px 3px;
          background-color: #FABF2E;
          color: white;
          font-size: 0.7rem;
          border-radius: 5px;
          margin: 5px 0;
      }
      */
}
@media screen and (max-width: 1000px) {
  .new_post_list .list {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
  }
  .new_post_list .list:nth-of-type(2n) {
    margin-right: 0;
  }
}
.new_post_list .list:last-of-type {
  margin-right: 0;
}
.new_post_list .list .inner {
  width: 100%;
}
@includ emq("sp") {
  .new_post_list .list .inner {
    clear: both;
  }
}
.new_post_list .list .img-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .new_post_list .list .img-wrap {
    width: 100%;
  }
}
.new_post_list .list .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.new_post_list .list .img-wrap .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.new_post_list .list .date {
  font-size: 0.6rem;
  margin: 15px 0 10px;
  color: #694135;
}
@media screen and (max-width: 1000px) {
  .new_post_list .list .date {
    padding: 5px 10px;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
  }
}
.new_post_list .list .list_title {
  font-size: 0.8rem;
  line-height: 1.2em;
  color: #694135;
}
@media screen and (max-width: 1000px) {
  .new_post_list .list .list_title {
    padding: 10px;
    padding-top: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.new_post_list .list.hover {
  border: solid 1px #EB3745;
}
.new_post_list .list.hover .img-wrap .img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* ギャラリー部分
------------------------------------------------*/
.gallery_section-wrap {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap {
    max-width: 100vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    background-image: url(../img/common/bg-dotted01.gif);
    padding-bottom: 30px;
    margin-top: 20px;
  }
}
.gallery_section-wrap:before {
  content: "";
  display: block;
  width: 400px;
  height: 25px;
  background-image: url(../img/home/gallery_top.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap:before {
    display: none;
  }
}
.gallery_section-wrap:after {
  content: "";
  display: block;
  width: 400px;
  height: 25px;
  background-image: url(../img/home/gallery_top.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap:after {
    width: 100%;
  }
}
.gallery_section-wrap .gallery_title {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap .gallery_title {
    max-width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.gallery_section-wrap .home-gallery_list {
  position: relative;
  margin-top: 30px;
  padding: 0 60px;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap .home-gallery_list {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.gallery_section-wrap .home-gallery_list .slick-list {
  padding-right: 75%;
}
.gallery_section-wrap .home-gallery_list .slick-arrow {
  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;
  width: 50px;
  height: 50px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #FF9900;
  border-radius: 100%;
  z-index: 1;
  color: white;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.gallery_section-wrap .home-gallery_list .slick-arrow:link {
  color: white;
  text-decoration: none;
}
.gallery_section-wrap .home-gallery_list .slick-arrow:visited {
  color: white;
  text-decoration: none;
}
.gallery_section-wrap .home-gallery_list .slick-arrow i {
  font-size: 2.3rem;
  color: white;
}
.gallery_section-wrap .home-gallery_list .slick-arrow.slick-prev {
  top: 75px;
  left: 10px;
  padding-right: 5px;
}
.gallery_section-wrap .home-gallery_list .slick-arrow.slick-next {
  top: 75px;
  right: 10px;
  padding-left: 5px;
}
.gallery_section-wrap .home-gallery_list .list {
  padding: 0 10px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap .home-gallery_list .list {
    width: calc(50% - 10px);
    padding: 0;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .gallery_section-wrap .home-gallery_list .list:nth-of-type(2n) {
    margin-right: 0;
  }
}
.gallery_section-wrap .home-gallery_list .list .thumb-wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.gallery_section-wrap .home-gallery_list .list .thumb-wrap:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gallery_section-wrap .home-gallery_list .list .thumb-wrap .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery_section-wrap .home-gallery_list .list .thumb-wrap.hover .img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery_section-wrap .home-gallery_list .list .thumb_text {
  padding: 10px;
  text-align: center;
  font-size: 0.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .gallery_section-wrap .home-gallery_list .list .thumb_text {
    padding: 5px 0;
  }
}
.gallery_section-wrap .btn-wrap {
  margin-top: 20px;
  text-align: center;
}
.gallery_section-wrap .btn-wrap .btn03 {
  font-size: 1rem;
  padding: 20px;
}

/* Facebook部分
------------------------------------------------*/
.facebook_section-wrap {
  margin: 30px 0;
}
.facebook_section-wrap .fb_title {
  text-align: center;
  margin-bottom: 20px;
}
.facebook_section-wrap .timeline {
  text-align: center;
}

/* post.scss 固定・投稿の共通css */
@media screen and (max-width: 1000px) {
  .post-wrap {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .post-wrap .main_contents {
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.post-wrap p {
  font-size: 0.8rem;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.main_section-wrap {
  width: 100%;
}

/* 見出し */
.post_title01 {
  font-size: 1.4rem;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf", "Meyrio";
  line-height: 1.2em;
  color: #7F5C42;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .post_title01 {
    font-size: 1rem;
    margin-top: 0;
  }
}

.post_title02 {
  font-size: 1.4rem;
  padding-bottom: 20px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 40px;
}
.post_title02:before {
  content: "\f105";
  font-family: FontAwesome;
  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;
  color: #EB3745;
  border: solid 1px #EB3745;
  border-radius: 100%;
  margin-right: 10px;
  width: 24px !important;
  height: 24px !important;
  padding-left: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1rem;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.post_title02:after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-image: url(../img/common/border-dots-blue.gif);
  background-repeat: repeat-x;
  background-position: bottom left;
  position: absolute;
  bottom: 0;
  left: 0;
}
.post_title02:first-of-type {
  margin-top: 0;
}

.post_title03 {
  position: relative;
  font-size: 1.2rem;
  padding-bottom: 15px;
  padding-left: 20px;
  margin: 40px 0 20px;
}
.post_title03:before {
  content: "";
  display: block;
  border: solid 4px transparent;
  border-left: solid 8px #EB3745;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.post_title03:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: url(../img/common/border-dashed-green.gif);
  background-repeat: repeat-x;
  background-position: bottom left;
  position: absolute;
  bottom: 0;
  left: 0;
}

.content .post_title03 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .content .post_title03 {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.post_title04 {
  font-size: 1.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2em;
}
.post_title04:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
  border: solid 6px #FF9999;
  margin-right: 12px;
  margin-bottom: 5px;
}

/* 関連記事 */
.related_post-wrap {
  width: 100%;
  padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap {
    padding: 0 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.related_post-wrap .post_title_related {
  font-size: 1.4rem;
  font-weight: bold;
  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;
  margin-bottom: 30px;
  color: #68A842;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap .post_title_related {
    font-size: 1.1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0px;
  }
}
.related_post-wrap .post_title_related:before {
  content: "";
  display: block;
  margin-right: 20px;
  width: 156px;
  height: 43px;
  background-image: url(../img/post/related_before.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap .post_title_related:before {
    width: 100px;
  }
}
.related_post-wrap .post_title_related:after {
  content: "";
  display: block;
  margin-left: 20px;
  width: 151px;
  height: 44px;
  background-image: url(../img/post/related_after.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap .post_title_related:after {
    width: 100px;
  }
}
.related_post-wrap .related_post_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap .related_post_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
}
.related_post-wrap .related_post_list .list {
  width: calc(25% - 9px);
  padding: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
          box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
  border: solid 1px transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background-color: white;
  margin-right: 12px;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap .related_post_list .list {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.related_post-wrap .related_post_list .list:last-of-type {
  margin-right: 0;
}
.related_post-wrap .related_post_list .list .inner {
  width: 100%;
}
@includ emq("sp") {
  .related_post-wrap .related_post_list .list .inner {
    clear: both;
  }
}
.related_post-wrap .related_post_list .list .img-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .related_post-wrap .related_post_list .list .img-wrap {
    width: 30%;
    margin-right: 10px;
    float: left;
  }
}
.related_post-wrap .related_post_list .list .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.related_post-wrap .related_post_list .list .img-wrap .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.related_post-wrap .related_post_list .list .date {
  font-size: 0.6rem;
  margin: 15px 0 10px;
}
.related_post-wrap .related_post_list .list .date > .cat {
  display: inline;
  padding: 1px 8px;
  background-color: #FABF2E;
  color: white;
  font-size: 0.7rem;
  margin-left: 10px;
  border-radius: 5px;
}
.related_post-wrap .related_post_list .list .list_title {
  font-size: 0.8rem;
  line-height: 1.2em;
}
.related_post-wrap .related_post_list .list.hover {
  border: solid 1px #EB3745;
}
.related_post-wrap .related_post_list .list.hover .img-wrap .img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* page.scss 固定ページのメインコンテンツcss */
/* 共通
----------------------------------------*/
.single-wrap.page_post-wrap .content {
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .single-wrap.page_post-wrap .content {
    padding: 20px 10px;
  }
}

/* 年間行事
----------------------------------------*/
/* ヘッダー部分 */
.year_event_header {
  text-align: center;
}
.year_event_header .sub_title {
  font-size: 0.8rem;
}

/* 行事リスト */
.event_list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .event_list-wrap {
    padding-bottom: 0;
  }
}
.event_list-wrap .list {
  width: calc(33% - 20px);
  padding: 10px;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
          box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .event_list-wrap .list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.event_list-wrap .list .head {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.event_list-wrap .list .head:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 26px;
  background-color: #FADDE0;
  border-radius: 30px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: -1;
}
.event_list-wrap .list .head:after {
  content: "";
  display: block;
  width: 110px;
  height: 82px;
  background-image: url(../img/page/event_title_img1.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.event_list-wrap .list .head .month {
  margin: 0;
  font-size: 1.3rem;
  color: #FF9999;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
}
.event_list-wrap .list .head .month .number {
  display: inline-block;
  margin-left: 10px;
  font-size: 2.3rem;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: normal;
  color: white;
  width: 69px;
  height: 69px;
  line-height: 69px;
  background-image: url(../img/page/event_title_pink.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  letter-spacing: -8px;
  text-indent: -8px;
}
.event_list-wrap .list .img-wrap {
  width: 100%;
  height: 225px;
  position: relative;
  border: solid 2px #FF7777;
  margin-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.event_list-wrap .list .img-wrap .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.event_list-wrap .list .desc {
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.event_list-wrap .list .desc p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3em;
}
.event_list-wrap .list:nth-of-type(2) .head:after {
  background-image: url(../img/page/event_title_img2.png);
}
.event_list-wrap .list:nth-of-type(3) .head:after {
  background-image: url(../img/page/event_title_img3.png);
}
.event_list-wrap .list:nth-of-type(n+4) .head:before {
  background-color: #E8F2CE;
}
.event_list-wrap .list:nth-of-type(n+4) .head .month {
  color: #99CC00;
}
.event_list-wrap .list:nth-of-type(n+4) .head .month .number {
  background-image: url(../img/page/event_title_green.png);
}
.event_list-wrap .list:nth-of-type(n+4) .img-wrap {
  border: solid 2px #99CC00;
}
.event_list-wrap .list:nth-of-type(4) .head:after {
  background-image: url(../img/page/event_title_img4.png);
}
.event_list-wrap .list:nth-of-type(5) .head:after {
  background-image: url(../img/page/event_title_img5.png);
}
.event_list-wrap .list:nth-of-type(6) .head:after {
  background-image: url(../img/page/event_title_img6.png);
}
.event_list-wrap .list:nth-of-type(n+7) .head:before {
  background-color: #FFF3C4;
}
.event_list-wrap .list:nth-of-type(n+7) .head .month {
  color: #FFCC00;
}
.event_list-wrap .list:nth-of-type(n+7) .head .month .number {
  background-image: url(../img/page/event_title_yellow.png);
}
.event_list-wrap .list:nth-of-type(n+7) .img-wrap {
  border: solid 2px #FFCC00;
}
.event_list-wrap .list:nth-of-type(7) .head:after {
  background-image: url(../img/page/event_title_img7.png);
}
.event_list-wrap .list:nth-of-type(8) .head:after {
  background-image: url(../img/page/event_title_img8.png);
}
.event_list-wrap .list:nth-of-type(9) .head:after {
  background-image: url(../img/page/event_title_img9.png);
}
.event_list-wrap .list:nth-of-type(n+10) .head:before {
  background-color: #E6F7FF;
}
.event_list-wrap .list:nth-of-type(n+10) .head .month {
  color: #66CCFF;
}
.event_list-wrap .list:nth-of-type(n+10) .head .month .number {
  background-image: url(../img/page/event_title_blue.png);
}
.event_list-wrap .list:nth-of-type(n+10) .img-wrap {
  border: solid 2px #66CCFF;
}
.event_list-wrap .list:nth-of-type(10) .head:after {
  background-image: url(../img/page/event_title_img10.png);
}
.event_list-wrap .list:nth-of-type(11) .head:after {
  background-image: url(../img/page/event_title_img11.png);
}
.event_list-wrap .list:nth-of-type(12) .head:after {
  background-image: url(../img/page/event_title_img12.png);
}

/* 月間行事 */
.event_list {
  list-style: none;
  margin-top: 25px;
}
@media screen and (max-width: 1000px) {
  .event_list {
    padding: 0 10px;
  }
}
.event_list .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}
.event_list .list:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/flower.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

/* 公開情報
-----------------------------------------------------*/
.pdf_list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding-top: 60px;
}
@media screen and (max-width: 1000px) {
  .pdf_list {
    padding-top: 20px;
  }
}
.pdf_list .list {
  position: relative;
  width: 30%;
  background-color: #63C0AB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  padding: 15px;
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
  margin-right: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .pdf_list .list {
    width: 100%;
    margin-right: 0;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
}
.pdf_list .list span {
  color: white;
  font-size: 1rem;
}
.pdf_list .list img {
  margin-right: 40px;
}
@media screen and (max-width: 1000px) {
  .pdf_list .list img {
    margin-right: 20px;
    width: 30px;
    height: auto;
  }
}
.pdf_list .list:nth-of-type(2n) {
  margin-right: 0px;
}
.pdf_list .list.hover {
  background-color: #FE3D42;
}

/* 園の一日
---------------------------------------------------------*/
.day_schedule_title02 {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .day_schedule_title02 {
    margin-top: 20px;
  }
}

.day_schedule_list-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  margin: 20px 0 40px;
  border-bottom: solid 8px #FF9A95;
}
.day_schedule_list-tab.tab2 {
  border-color: #81C6C1;
}
.day_schedule_list-tab.tab3 {
  border-color: #9AD362;
}
.day_schedule_list-tab .tab {
  width: 25%;
  border-radius: 10px 10px 0 0/10px 10px 0 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background-color: #FF9A95;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0 10px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.day_schedule_list-tab .tab::before {
  content: "";
  display: block;
  width: 27px;
  height: 22px;
  background-image: url(../img/icon/icon_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 1000px) {
  .day_schedule_list-tab .tab::before {
    display: none;
  }
}
.day_schedule_list-tab .tab::after {
  content: "";
  display: block;
  width: 100px;
  height: 22px;
  background-image: url(../img/icon/icon_click.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-animation: fuwa3 3s linear infinite;
          animation: fuwa3 3s linear infinite;
  pointer-events: none;
}
.day_schedule_list-tab .tab br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .day_schedule_list-tab .tab {
    font-size: 0.8rem;
    width: calc(33% - 7px);
    padding: 15px 10px;
    margin: 0 5px;
  }
  .day_schedule_list-tab .tab br {
    display: block;
  }
}
.day_schedule_list-tab .tab:nth-of-type(2) {
  background-color: #81C6C1;
}
.day_schedule_list-tab .tab:nth-of-type(3) {
  background-color: #9AD362;
}
.day_schedule_list-tab .tab.current {
  height: 70px;
}
.day_schedule_list-tab .tab.current::before {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.day_schedule_list-tab .tab.current::after {
  display: none;
}

.day_schedule-outer_wrap > .inner {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.day_schedule-outer_wrap > .inner.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.day_schedule-outer_wrap > .inner .schedule-wrap {
  width: calc(100% - 335px);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap {
    width: 100%;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap:before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: calc(100% - 50px);
  background-image: url(../img/page/day_dotted.png);
  background-repeat: repeat-y;
  left: 40px;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap:before {
    display: none;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row:first-of-type .time:before {
    display: none;
  }
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row:first-of-type .time > .inner {
    margin-top: 0;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap > .row.top_large {
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row.top_large {
    margin-top: 0;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap > .row .time {
  width: 80px;
  height: 60px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row .time {
    width: 100%;
    height: auto;
  }
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row .time:before {
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    background-image: url(../img/page/day_dotted.png);
    background-position: center top;
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row .time.bottom_margin {
    margin-bottom: 10px;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap > .row .time > .inner {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: white;
  text-align: center;
  line-height: 80px;
  background-color: #0080CC;
  border-radius: 100%;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row .time > .inner {
    display: inline-block;
    position: relative;
    -webkit-transform: none;
            transform: none;
    top: auto;
    left: auto;
    margin-top: 20px;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap > .row .schedule {
  width: calc(100% - 125px);
  line-height: 60px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap > .row .schedule {
    width: 100%;
    font-size: 0.8rem;
    line-height: 45px;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap > .row:nth-child(2n) .schedule {
  background-color: #DEF2FC;
}
.day_schedule-outer_wrap > .inner .schedule-wrap .illustration {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .schedule-wrap .illustration {
    display: none;
  }
}
.day_schedule-outer_wrap > .inner .schedule-wrap .illustration:nth-of-type(1) {
  top: 5%;
  right: 70px;
}
.day_schedule-outer_wrap > .inner .schedule-wrap .illustration:nth-of-type(2) {
  top: 35%;
  right: 0;
}
.day_schedule-outer_wrap > .inner .schedule-wrap .illustration:nth-of-type(3) {
  top: 65%;
  right: 70px;
}
.day_schedule-outer_wrap > .inner .schedule-wrap .illustration:nth-of-type(4) {
  top: 92%;
  right: 0;
}
.day_schedule-outer_wrap > .inner .img-wrap {
  width: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .img-wrap {
    width: 100%;
    margin-top: 60px;
  }
}
.day_schedule-outer_wrap > .inner .img-wrap > .row {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .day_schedule-outer_wrap > .inner .img-wrap > .row {
    text-align: center;
  }
}
.day_schedule-outer_wrap > .inner .img-wrap > .row img {
  border: solid 3px #FCB4BD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.day_schedule-outer_wrap > .inner .img-wrap > .row p {
  margin: 20px 0 0;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.3em;
}

.day_schedule_content {
  margin: 50px 0 100px;
  width: 100%;
}
.day_schedule_content p {
  margin-bottom: 20px;
  line-height: 1.3em;
}
@media screen and (max-width: 1000px) {
  .day_schedule_content {
    margin: 40px 0;
  }
}

/* (template)スタッフ紹介一覧
-------------------------------------------*/
.staff_list-wrap {
  width: calc(100% - 180px);
  margin: auto;
  list-style: none;
  padding-top: 20px;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap {
    width: 100%;
  }
}
.staff_list-wrap > .list {
  width: 100%;
  border-radius: 50px;
  border: solid 6px #89CFC5;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 20px 0;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap > .list {
    padding: 40px 10px 20px;
    border-radius: 30px;
  }
}
.staff_list-wrap > .list:first-of-type {
  margin-top: 0;
}
.staff_list-wrap > .list:before {
  content: "";
  display: block;
  width: 40px;
  height: 50px;
  background-image: url(../img/icon/clip.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 40px;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap > .list:before {
    left: 10px;
  }
}
.staff_list-wrap > .list > .inner {
  position: relative;
}
.staff_list-wrap > .list > .inner .name {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 1.3rem;
  color: #286359;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: normal;
  margin-bottom: 40px;
  padding-bottom: 20px;
  line-height: 1.3em;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap > .list > .inner .name {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.staff_list-wrap > .list > .inner .name:after {
  content: "";
  direction: block;
  width: 70%;
  height: 1px;
  background-color: #296359;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.staff_list-wrap > .list > .inner .prof-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.staff_list-wrap > .list > .inner .prof-wrap .thumb-wrap {
  display: block;
  width: 340px;
  height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap > .list > .inner .prof-wrap .thumb-wrap {
    width: 100%;
    height: auto;
  }
  .staff_list-wrap > .list > .inner .prof-wrap .thumb-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
.staff_list-wrap > .list > .inner .prof-wrap .thumb-wrap .thumb {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap {
  width: calc(100% - 380px);
  margin-left: 40px;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap > .list > .inner .prof-wrap .desc-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .position {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .position {
    margin-bottom: 20px;
  }
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .prof {
  margin-bottom: 20px;
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .prof p {
  font-size: 0.8rem;
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .prof p:last-of-type {
  margin-bottom: 0;
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .prof_under {
  width: 100%;
  height: 30px;
  background-image: url(../img/common/onpu_border01.png);
  background-repeat: repeat-x;
  background-position: left center;
  margin-bottom: 30px;
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .comment p {
  font-size: 0.8rem;
}
.staff_list-wrap > .list > .inner .prof-wrap .desc-wrap .comment p:last-of-type {
  margin-bottom: 0;
}

.login-form-wrap {
  text-align: center;
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .login-form-wrap {
    padding: 40px 0 0;
  }
}
.login-form-wrap .error {
  color: red;
  font-size: 1rem;
  margin: 20px 0;
}
@incldue mq("sp") {
  .login-form-wrap .error {
    font-size: 0.8rem;
  }
}
.login-form-wrap .logout {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 40px;
  background-color: #FFBFBF;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  text-decoration: none;
}
.login-form-wrap .login-form {
  border-radius: 20px;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #e9f7ff;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
}
.login-form-wrap .login-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px auto;
}
.login-form-wrap .login-form label span {
  display: inline-block;
  width: 150px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: right;
}
.login-form-wrap .login-form label input {
  width: 80%;
  max-width: 350px;
}
.login-form-wrap .login-form button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 40px;
  background-color: #76caff;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

/* single.scss 投稿ページのメインコンテンツcss */
/* ギャラリー（カスタム投稿）
----------------------------------------------*/
.gallery_title01 {
  font-size: 1.4rem;
  color: #7F5C42;
  padding-left: 65px;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 40px 0 20px;
}
@media screen and (max-width: 1000px) {
  .gallery_title01 {
    font-size: 1rem;
    padding-left: 40px;
  }
}
.gallery_title01:before {
  content: "";
  display: block;
  width: 56px;
  height: 62px;
  background-image: url(../img/icon/reaf.gif);
  background-size: contain;
  background-position: bottom center;
  position: absolute;
  bottom: 8px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .gallery_title01:before {
    width: 40px;
    height: 40px;
    bottom: calc(50% + 5px);
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
.gallery_title01:after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-image: url(../img/common/border-dots-green.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  bottom: 0;
  left: 0;
}

.gallery_header {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .gallery_header {
    padding-top: 10px;
  }
}
.gallery_header .gallery_title01 {
  margin-top: 0;
  margin-bottom: 10px;
}

.gallery_post-wrap {
  padding-top: 40px;
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap {
    padding-top: 0px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap .content {
    padding: 0 10px;
    width: calc(100% - 20px);
    margin: auto;
  }
}
.gallery_post-wrap .content .date {
  text-align: right;
  font-size: 0.8rem;
  margin-bottom: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap .content .date {
    text-align: left;
    font-size: 0.6rem;
  }
}
.gallery_post-wrap .content .click_remark {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap .content .click_remark {
    text-align: left;
    font-size: 0.8rem;
  }
}
.gallery_post-wrap .content .gallery_list-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap .content .gallery_list-wrap {
    padding: 0;
    margin-top: 20px;
  }
}
.gallery_post-wrap .content .gallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin-top: 10px;
}
.gallery_post-wrap .content .gallery_list:after {
  content: "";
  display: block;
  width: calc(33% - 20px);
  height: 0;
}
.gallery_post-wrap .content .gallery_list .list {
  width: calc(33% - 20px);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap .content .gallery_list .list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.gallery_post-wrap .content .gallery_list .list .thumb {
  width: 100%;
  height: 235px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: solid 5px white;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(152, 152, 152, 0.6);
          box-shadow: 0px 0px 8px 0px rgba(152, 152, 152, 0.6);
}
@media screen and (max-width: 1000px) {
  .gallery_post-wrap .content .gallery_list .list .thumb {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.gallery_post-wrap .content .gallery_list .list .gallery_title {
  margin: 15px 0;
  font-size: 0.8rem;
}
.gallery_post-wrap .content .gallery_list .list .btn-wrap {
  margin-top: 20px;
  text-align: center;
}

/* 投稿
----------------------------------------------*/
.single-wrap {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .single-wrap {
    width: 100%;
  }
}
.single-wrap .content {
  background-color: white;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
  padding: 40px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .single-wrap .content {
    padding: 0 10px 20px;
  }
}
.single-wrap .content .post_head {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .single-wrap .content .post_head {
    padding-top: 10px;
  }
}
.single-wrap .content .post_head .post_sub_title {
  margin-top: 40px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: solid 2px #F0646E;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .single-wrap .content .post_head .post_sub_title {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}
.single-wrap .content .post_head .post_sub_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 70px;
  height: 42px;
  background-image: url(../img/post/single_header_sub_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .single-wrap .content .post_head .post_sub_title:after {
    display: none;
  }
}
.single-wrap .content .post_head .post_sub_title .date {
  font-size: 0.7rem;
  margin-right: 20px;
}
.single-wrap .content .post_head .post_sub_title .cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.7rem;
  color: white;
  background-color: #FABF2E;
  border-radius: 5px;
  padding: 0px 20px;
  margin-right: 5px;
}
@media screen and (max-width: 1000px) {
  .single-wrap .content .post_head .post_sub_title .cat {
    padding: 0px 10px 3px;
    font-size: 0.6rem;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.single-wrap .content .post_footer {
  background-image: url(../img/common/bg-marble-pink.gif);
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-wrap .content .post_footer .list {
  margin-right: 10px;
  font-size: 0.8rem;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .single-wrap .content .post_footer .list {
    width: 100%;
    margin-bottom: 10px;
  }
  .single-wrap .content .post_footer .list:last-of-type {
    margin-bottom: 0;
  }
}
.single-wrap .content .post_footer .list img {
  width: auto;
  height: auto;
  max-width: 22px;
  max-height: 22px;
  margin-right: 15px;
}
.single-wrap .content .post_footer .list a {
  color: #EB3745;
  margin: 0 5px;
  text-decoration: none;
}

/* お知らせ
---------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .news_post-wrap .content {
    padding: 0 10px 20px;
  }
}

/* スケジュール詳細ページ */
.entry-meta {
  min-height: 20px;
}

.cats-wrap {
  padding: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cats-wrap .cat {
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .cats-wrap .cat {
    margin-top: 5px;
    position: relative;
    z-index: 11;
  }
}
.cats-wrap .cat a {
  color: white;
  background-color: #FABF2E;
  border-radius: 5px;
  padding: 5px 25px 3px;
  margin-right: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .cats-wrap .cat a {
    font-size: 0.7rem;
    padding: 1px 10px 5px;
  }
}

.event_date {
  border: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #eee;
  margin: 20px 0;
}
.event_date dt, .event_date dd {
  margin-bottom: 0;
  border: none;
  padding: 15px;
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .event_date dt {
    padding-bottom: 0;
  }
}

/* archive.scss アーカイブページのcss */
.bg_header {
  position: relative;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  text-align: center;
  overflow: hidden;
  height: 190px;
}
@media screen and (max-width: 1000px) {
  .bg_header {
    padding: 60px 30px;
    margin-top: 70px;
    background-color: black;
    height: 100px;
  }
}
.bg_header .archive_title01 {
  display: inline-block;
  font-size: 1.8rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: center;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: normal;
  text-shadow: 1px 1px 10px rgb(0, 0, 0);
}
@media screen and (max-width: 1000px) {
  .bg_header .archive_title01 {
    font-size: 1rem;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1;
  }
}
.bg_header .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
@media screen and (max-width: 1000px) {
  .bg_header .bg {
    opacity: 0.8;
    z-index: 1;
  }
}

.archive-wrap {
  padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .archive-wrap {
    padding: 10px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 30px;
  }
}
.archive-wrap > .inner-wrap {
  width: calc(100% - 200px);
  max-width: 960px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap {
    width: 100%;
  }
}
.archive-wrap > .inner-wrap .main_contents {
  background-color: white;
  padding: 50px 30px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents {
    padding: 20px 10px;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap {
  width: calc(100% - 20px);
  margin: 20px auto;
  position: relative;
  padding: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
          box-shadow: 0px 0px 10px rgba(145, 145, 145, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 1px transparent;
  background-color: white;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 10px auto;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap:first-of-type {
  margin-top: 0;
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .img-wrap {
  width: 160px;
  height: 160px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .img-wrap {
    width: 30%;
    height: auto;
  }
  .archive-wrap > .inner-wrap .main_contents .post-wrap .img-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .img-wrap .img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .img-wrap .img {
    top: 0;
    left: 0;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap {
  width: calc(100% - 160px);
  padding: 17px;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap {
    width: calc(70% - 10px);
    padding: 0;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .date-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 5px;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .date-wrap .date {
  font-size: 0.7rem;
  margin-right: 15px;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .date-wrap .date {
    width: 100%;
    margin-right: 0;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .date-wrap .cat {
  font-size: 0.8rem;
  color: white;
  background-color: #FABF2E;
  border-radius: 5px;
  padding: 5px 25px 3px;
  margin-right: 5px;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .date-wrap .cat {
    -webkit-font-feature-settings: 0.7rem;
            font-feature-settings: 0.7rem;
    padding: 3px 10px 5px;
    margin-top: 5px;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .archive_post_title {
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5em;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .archive_post_title {
    margin-bottom: 5px;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .excerpt {
  font-size: 0.7rem;
  line-height: 1.5em;
}
@media screen and (max-width: 1000px) {
  .archive-wrap > .inner-wrap .main_contents .post-wrap .desc-wrap .excerpt {
    font-size: 0.6rem;
  }
}
.archive-wrap > .inner-wrap .main_contents .post-wrap.hover {
  border: solid 1px #EB3745;
}
.archive-wrap > .inner-wrap .main_contents .post-wrap.hover .img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* お知らせ
-------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .news_archive {
    width: calc(100% - 20px);
    margin: auto;
  }
}
.news_archive .news_archive_list {
  list-style: none;
}
.news_archive .news_archive_list .list {
  padding: 20px 10px;
  position: relative;
  border-bottom: solid 1px #EE859A;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .news_archive .news_archive_list .list {
    padding: 15px 0;
  }
}
.news_archive .news_archive_list .list span {
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .news_archive .news_archive_list .list span.date {
    margin-right: 0;
  }
}
.news_archive .news_archive_list .list span.cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  background-color: #FABF2E;
  width: 120px;
  margin: 0 20px;
  padding: 5px 0;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .news_archive .news_archive_list .list span.cat {
    padding: 2px 10px;
    font-size: 0.7rem;
    width: auto;
    min-width: 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 1000px) {
  .news_archive .news_archive_list .list span.title {
    display: block;
    margin-top: 5px;
    padding-right: 20px;
  }
}
.news_archive .news_archive_list .list span.arrow {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #EB3745;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  line-height: 25px;
}
@media screen and (max-width: 1000px) {
  .news_archive .news_archive_list .list span.arrow {
    background-color: transparent;
    right: 0;
  }
}
.news_archive .news_archive_list .list span.arrow i {
  color: white;
  font-size: 1.2rem;
  -webkit-transform: translate(2px, -1px);
          transform: translate(2px, -1px);
}
@media screen and (max-width: 1000px) {
  .news_archive .news_archive_list .list span.arrow i {
    color: #EB3745;
    font-size: 1rem;
  }
}
.news_archive .news_archive_list .list.hover {
  background-color: #FFFFBB;
}

/* ギャラリー
--------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .gallery_archive {
    padding: 0 10px;
  }
}
.gallery_archive .archive_head {
  width: 100%;
  position: relative;
  padding-top: 60px;
  padding-bottom: 35px;
}
@media screen and (max-width: 1000px) {
  .gallery_archive .archive_head {
    padding: 20px 0 0;
  }
}
.gallery_archive .archive_head .gallery_archive_title {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .gallery_archive .archive_head .gallery_archive_title {
    margin-bottom: 0px;
  }
}
.gallery_archive .archive_head .sub_title {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 0.8rem;
  line-height: 40px;
}
@media screen and (max-width: 1000px) {
  .gallery_archive .archive_head .sub_title {
    display: block;
    padding-bottom: 15px;
    text-align: center;
  }
}
.gallery_archive .main_contents {
  display: block;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .gallery_archive .main_contents {
    padding: 0;
  }
}
.gallery_archive .main_contents .archive_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin-top: 10px;
}
.gallery_archive .main_contents .archive_list .list {
  width: calc(33% - 20px);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
  margin-right: 30px;
}
@media screen and (max-width: 1000px) {
  .gallery_archive .main_contents .archive_list .list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.gallery_archive .main_contents .archive_list .list:nth-of-type(3n) {
  margin-right: 0;
}
.gallery_archive .main_contents .archive_list .list .thumb {
  width: 100%;
  height: 235px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: solid 5px white;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(152, 152, 152, 0.6);
          box-shadow: 0px 0px 8px 0px rgba(152, 152, 152, 0.6);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .gallery_archive .main_contents .archive_list .list .thumb {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.gallery_archive .main_contents .archive_list .list .gallery_title {
  margin: 15px 0;
  font-size: 0.8rem;
}
.gallery_archive .main_contents .archive_list .list .btn-wrap {
  margin-top: 20px;
  text-align: center;
}

/* ブログ記事一覧 
---------------------------------------------------*/
.post_archive-wrap > .inner-wrap .main_contents {
  background-color: transparent;
  padding: 0;
}

/* スケジュールリスト（カレンダー）
-----------------------------------------------------*/
.schedule_archive {
  padding-bottom: 60px;
}
.schedule_archive .year_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin-top: 0;
  margin-bottom: 30px;
}
.schedule_archive .year_list > .list {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .schedule_archive .year_list > .list {
    margin-bottom: 0;
  }
}
.schedule_archive .year_list > .list.this_year {
  font-size: 35px;
  font-weight: bold;
}
.schedule_archive .year_list > .list.before_year, .schedule_archive .year_list > .list.after_year {
  font-size: 20px;
  font-weight: bold;
}
.schedule_archive .year_list > .list.before_year i, .schedule_archive .year_list > .list.after_year i {
  margin-right: 10px;
}
.schedule_archive .year_list > .list.after_year i {
  margin-right: 0;
  margin-left: 10px;
}
.schedule_archive .year_list > .list a {
  text-decoration: none;
  color: #337AB7;
}
.schedule_archive .year_list > .list a:link {
  color: #337AB7;
}
.schedule_archive .year_list > .list a:visited {
  color: #337AB7;
}
.schedule_archive .month_list-toggle {
  display: none;
}
@media screen and (max-width: 1000px) {
  .schedule_archive .month_list-toggle {
    display: block;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: white;
    background-color: #337AB7;
    font-weight: bold;
    border-radius: 5px;
    position: relative;
  }
  .schedule_archive .month_list-toggle:after {
    content: "\f107";
    font-family: FontAwesome;
    color: white;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    font-size: 24px;
  }
  .schedule_archive .month_list-toggle:hover {
    color: white;
    text-decoration: none;
  }
}
.schedule_archive .month_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .schedule_archive .month_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 0;
    display: none;
  }
}
.schedule_archive .month_list > .list {
  width: calc(8% - 3px);
  display: inline-block;
  margin-bottom: 0;
  background-color: #E9EBE9;
  border-radius: 3px 3px 0 0/3px 3px 0 0;
}
@media screen and (max-width: 1000px) {
  .schedule_archive .month_list > .list {
    width: 100%;
    border-radius: 0;
  }
  .schedule_archive .month_list > .list:last-of-type {
    border-bottom: solid 1px black;
  }
}
.schedule_archive .month_list > .list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 16px;
  border: solid 1px black;
  border-bottom: none;
  color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0/3px 3px 0 0;
}
@media screen and (max-width: 1000px) {
  .schedule_archive .month_list > .list a {
    border-radius: 0;
  }
}
.schedule_archive .month_list > .list.current {
  background-color: #337AB7;
  border: solid 1px #337AB7;
  border-bottom: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.schedule_archive .current_month {
  background-color: #337AB7;
  padding: 15px;
  font-size: 20px;
  color: white;
}
@media screen and (max-width: 1000px) {
  .schedule_archive .current_month {
    margin-top: 30px;
  }
}
.schedule_archive .day_schedule-list {
  margin-top: 10px;
}
.schedule_archive .day_schedule-list > .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 60px;
  margin: 0;
  border: solid 1px black;
  border-bottom: none;
}
.schedule_archive .day_schedule-list > .list:last-of-type {
  border-bottom: solid 1px black;
}
.schedule_archive .day_schedule-list > .list.sat {
  background-color: #EEEEFF;
  color: #0000D4;
}
.schedule_archive .day_schedule-list > .list.sun {
  background-color: #FFEEEE;
  color: #CC0000;
}
.schedule_archive .day_schedule-list > .list dt, .schedule_archive .day_schedule-list > .list dd {
  margin: 0;
  padding: 0;
  border: none;
}
.schedule_archive .day_schedule-list > .list > .day {
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: solid 1px black;
}
.schedule_archive .day_schedule-list > .list > .day .week {
  font-weight: normal;
  font-size: 12px;
  margin-left: 4px;
}
.schedule_archive .day_schedule-list > .list > .schedule {
  width: calc(100% - 70px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  font-size: 16px;
}
.schedule_archive .day_schedule-list > .list > .schedule .data {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.schedule_archive .day_schedule-list > .list > .schedule .data:last-of-type {
  margin-bottom: 0;
}
.schedule_archive .day_schedule-list > .list > .schedule .data:before {
  content: "\f0da";
  font-family: FontAwesome;
  color: orange;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.schedule_archive .day_schedule-list > .list > .schedule .data .cat_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
}
.schedule_archive .day_schedule-list > .list > .schedule .data .cat_list > .list {
  display: inline-block;
  margin: 0;
  margin-right: 5px;
}
.schedule_archive .day_schedule-list > .list > .schedule .data .cat_list > .list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  border-radius: 20px;
  padding: 0 10px;
  color: white;
  background-color: #337AB7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.schedule_archive .day_schedule-list > .list > .schedule .data > a {
  margin: 5px 0;
}

/* sidebar.scss サイドバーのコンテンツcss */
.sidebar-wrap {
  width: 220px;
}
@media screen and (max-width: 1000px) {
  .sidebar-wrap {
    display: none;
  }
}
.sidebar-wrap ul {
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sidebar-wrap ul li {
  line-height: 1.4em;
  font-size: 0.8rem;
  margin-bottom: 3px;
  position: relative;
  padding: 10px;
  padding-left: 15px;
  border-bottom: dashed 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-wrap ul li:before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 10px;
}
.sidebar-wrap ul li:last-of-type {
  border-bottom: hidden;
}
.sidebar-wrap ul li a {
  font-size: 0.8rem;
  text-decoration: none;
}
.sidebar-wrap ul li a:link {
  color: black;
}
.sidebar-wrap ul li a:visited {
  color: black;
}
.sidebar-wrap .sidebar-inner_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: white;
  border-bottom: solid 1px #ccc;
}
.sidebar-wrap .sidebar-inner_wrap .sidebar-title {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  padding: 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  color: #EB3745;
}
.sidebar-wrap .sidebar-inner_wrap .sidebar-title img {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: auto;
  height: auto;
  max-width: 60px;
}
.sidebar-wrap .sidebar-inner_wrap.theme_news-post_list, .sidebar-wrap .sidebar-inner_wrap.theme_schedule-post_list, .sidebar-wrap .sidebar-inner_wrap.theme-archive_list {
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sidebar-wrap .sidebar-inner_wrap.theme_news-post_list .sidebar-title, .sidebar-wrap .sidebar-inner_wrap.theme_schedule-post_list .sidebar-title, .sidebar-wrap .sidebar-inner_wrap.theme-archive_list .sidebar-title {
  font-size: 1rem;
}
.sidebar-wrap .sidebar-inner_wrap.theme_news-post_list li, .sidebar-wrap .sidebar-inner_wrap.theme_schedule-post_list li, .sidebar-wrap .sidebar-inner_wrap.theme-archive_list li {
  font-size: 0.8rem;
  line-height: 1.2em;
  background-color: white;
  margin-bottom: 0;
}
.sidebar-wrap .sidebar-inner_wrap.theme_news-post_list li:last-of-type, .sidebar-wrap .sidebar-inner_wrap.theme_schedule-post_list li:last-of-type, .sidebar-wrap .sidebar-inner_wrap.theme-archive_list li:last-of-type {
  border-bottom: hidden;
  border-bottom: none;
}
.sidebar-wrap .sidebar-inner_wrap.theme_news-post_list li a, .sidebar-wrap .sidebar-inner_wrap.theme_schedule-post_list li a, .sidebar-wrap .sidebar-inner_wrap.theme-archive_list li a {
  text-decoration: underline;
}
.sidebar-wrap .sidebar-inner_wrap.theme_news-post_list li .date, .sidebar-wrap .sidebar-inner_wrap.theme_schedule-post_list li .date, .sidebar-wrap .sidebar-inner_wrap.theme-archive_list li .date {
  display: inline-block;
  width: 100%;
  font-size: 0.6rem;
}
.sidebar-wrap .sidebar-inner_wrap.theme-cat_list {
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sidebar-wrap .sidebar-inner_wrap.theme-cat_list .sidebar-title {
  font-size: 1rem;
}
.sidebar-wrap .sidebar-inner_wrap.theme-cat_list li {
  margin-bottom: 0;
}
.sidebar-wrap .sidebar-inner_wrap.theme-cat_list li:last-of-type {
  border-bottom: hidden;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li {
  padding-bottom: 5px;
  padding-top: 5px;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li:before {
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li:after {
  display: none;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li.date_archive_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li.date_archive_year:before {
  display: none;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li.date_archive_year > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 10px;
  padding-left: 15px;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul li.date_archive_year > a:before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul.x-month_list {
  display: none;
  width: 100%;
  border: none;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul.x-month_list li {
  padding: 10px;
  padding-left: 30px;
  border: none;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul.x-month_list li:before {
  content: "";
  display: block;
  width: calc(100% - 40px);
  position: absolute;
  bottom: -20px;
  left: 30px;
  border-bottom: dashed 1px #ccc;
}
.sidebar-wrap .sidebar-inner_wrap.theme-archive_list ul.x-month_list li a {
  text-decoration: none;
}
.sidebar-wrap .sidebar-inner_wrap .searchform .screen-reader-text {
  display: none;
}
.sidebar-wrap .sidebar-inner_wrap .searchform > div {
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-wrap .sidebar-inner_wrap .searchform input {
  border-radius: 3px;
  border: solid 1px #ccc;
}
.sidebar-wrap .sidebar-inner_wrap .searchform input[type=text] {
  width: calc(100% - 50px);
}

/* footer.scss フッター要素のcss */
.footer-wrap {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap {
    margin-top: 0;
  }
}
.footer-wrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-image: url(../img/common/border-marble-blue.gif);
  background-repeat: repeat-x;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
}
.footer-wrap .page_top {
  position: fixed;
  bottom: 100px;
  right: 10px;
  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;
  width: 60px;
  height: 60px;
  background-color: #EB3745;
  border-radius: 100%;
  text-decoration: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1000;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .page_top {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 10px;
    padding-bottom: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.footer-wrap .page_top i {
  font-size: 2rem;
  color: white;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .page_top i {
    font-size: 1.5rem;
  }
}
.footer-wrap .page_top.active {
  opacity: 1;
}
.footer-wrap .footer-kanren_list {
  width: 1150px;
  max-width: calc(100% - 20px);
  margin: auto;
  padding: 0 0 45px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@inclde mq("sp") {
  .footer-wrap .footer-kanren_list {
    width: 100%;
    padding: 0 0 35px;
  }
}
.footer-wrap .footer-kanren_list > .list {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .footer-wrap .footer-kanren_list > .list {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}
.footer-wrap .footer-inner_wrap {
  background-image: url(../img/common/bg-marble-blue.gif);
  padding: 65px;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap {
    padding: 40px 0 0;
  }
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap {
  width: calc(100% - 320px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .logo_menu-wrap {
    width: 100%;
    text-align: center;
  }
  .footer-wrap .footer-inner_wrap .logo_menu-wrap img {
    width: auto;
    height: auto;
    max-width: 250px;
  }
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .address-wrap {
  margin-top: 35px;
  font-size: 0.8rem;
  color: #7F5A40;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .logo_menu-wrap .address-wrap {
    margin-top: 5px;
    line-height: 1.4em;
  }
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .address-wrap span {
  color: #7F5A40;
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .address-wrap span.post_number {
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .logo_menu-wrap .address-wrap span.post_number {
    margin-right: 0;
    display: inline-block;
    width: 100%;
  }
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail {
  position: relative;
  background-color: #FFF18E;
  border-radius: 5px;
  display: inline-block;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  margin: 10px auto 0;
  margin-top: 0;
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail.hover {
  background-color: #FFE006;
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail .mail_icon {
  position: relative;
  width: 27px;
  height: 27px;
  background-color: white;
  border-radius: 100%;
  display: block;
  margin-right: 5px;
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail .mail_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail .mail_text {
  font-size: 0.7rem;
  color: #7F5C42;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail {
    width: auto;
    min-width: 280px;
    border-radius: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footer-wrap .footer-inner_wrap .logo_menu-wrap .contact_mail .mail_text {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .footer_nav-wrap {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.footer-wrap .footer-inner_wrap .footer_nav-wrap .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0;
}
.footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li {
  margin-right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  .footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li:before {
  content: "\f105";
  font-family: FontAwesome;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  color: white;
  font-size: 0.6rem;
  background-color: #FF6633;
  border-radius: 100%;
  padding-left: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
}
.footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li a {
  font-size: 0.7rem;
  color: #724E26;
  text-decoration: none;
}
.footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li a:link {
  color: #724E26;
}
.footer-wrap .footer-inner_wrap .footer_nav-wrap .menu li a:visited {
  color: #724E26;
}
.footer-wrap .footer-inner_wrap .contact-wrap {
  width: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .contact-wrap {
    width: 100%;
    margin-top: 20px;
  }
}
.footer-wrap .footer-inner_wrap .contact-wrap .tel_number {
  margin-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .contact-wrap .tel_number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    min-width: 280px;
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 0;
    background-color: #F57E87;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.3rem;
  }
  .footer-wrap .footer-inner_wrap .contact-wrap .tel_number a {
    color: white;
    text-decoration: none;
  }
  .footer-wrap .footer-inner_wrap .contact-wrap .tel_number a:link {
    color: white;
    text-decoration: none;
  }
}
.footer-wrap .footer-inner_wrap .contact-wrap .tel_number i {
  margin-right: 5px;
  color: #7F5C42;
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .contact-wrap .tel_number i {
    color: white;
  }
}
.footer-wrap .footer-inner_wrap .contact-wrap .contact_mail {
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap .contact-wrap .contact_mail {
    width: auto;
    min-width: 280px;
    border-radius: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footer-wrap .footer-inner_wrap .contact-wrap .contact_mail .mail_text {
    font-size: 0.9rem;
  }
}
.footer-wrap .footer-inner_wrap .kanren-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto;
  width: calc(100% - 20px);
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-wrap .footer-inner_wrap .kanren-wrap .list {
  margin: 10px 0;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .logo_menu-wrap {
  width: 300px;
  padding-top: 50px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap.sis_inner_wrap .logo_menu-wrap {
    width: 100%;
  }
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .logo_menu-wrap .logo-wrap {
  text-align: center;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .logo_menu-wrap .contact-wrap {
  width: calc(100% - 20px);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap.sis_inner_wrap .logo_menu-wrap .contact-wrap {
    margin: 10px auto;
  }
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .logo_menu-wrap .contact-wrap .contact_mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap {
  width: calc(100% - 360px);
  margin: 0 30px;
  min-width: 500px;
}
@media screen and (max-width: 1400px) {
  .footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap {
    width: calc(100% - 20px);
    margin: auto;
    margin-top: 30px;
    min-width: 0;
  }
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .title {
  font-size: 1rem;
  color: #2E84B8;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-inline: auto;
  max-width: 640px;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap {
  display: inline-block;
  width: 310px;
  max-width: calc(50% - 10px);
  background-color: white;
  border-radius: 20px;
  border-bottom: solid 10px #A2D6E9;
  padding: 10px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap {
    display: block;
    width: 100%;
    max-width: none;
  }
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap > .name {
  font-size: 1.1rem;
  color: #7F5A40;
  margin-bottom: 10px;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap > .desc {
  font-size: 0.8rem;
  color: #7F5A40;
  margin-bottom: 20px;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap > .desc span {
  color: #7F5A40;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap > .desc p {
  color: #7F5A40;
  margin-top: 5px;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap > .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", "M PLUS Rounded 1c ttf";
  text-decoration: none;
  color: #7F5A40;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .sis-wrap > .inner-wrap .nursery-wrap > .tel:before {
  content: "\f095";
  font-family: FontAwesome;
  font-size: 1rem;
  color: white;
  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;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #A2D6E9;
  margin-right: 5px;
}
.footer-wrap .footer-inner_wrap.sis_inner_wrap .footer_nav-wrap {
  max-width: 800px;
}
.footer-wrap .footer-inner_wrap.full .logo_menu-wrap {
  width: 100%;
  text-align: center;
}
.footer-wrap .footer-inner_wrap.full .logo_menu-wrap .footer_nav-wrap .menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-wrap .footer-inner_wrap.full .contact-wrap {
  display: none;
}
.footer-wrap .footer_copyright {
  text-align: center;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFECEC;
  font-size: 0.7rem;
  color: #666666;
}
@media screen and (max-width: 1000px) {
  .footer-wrap .footer_copyright {
    background-color: transparent;
    width: 100%;
  }
}
.footer-wrap .footer_copyright a {
  color: #666666;
}
.footer-wrap .footer_copyright a:link {
  color: #666666;
}
.footer-wrap .footer_copyright a:visited {
  color: #666666;
}