@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Ropa+Sans&display=swap);
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
* {
  box-sizing: border-box;
}

.under {
  font-family: 'Noto Sans JP';
}

.breadCrumb {
  font-family: "Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  margin: 155px 0 0 0;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .breadCrumb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin: 50px 0 0 0;
  }
}

.breadCrumb nav {
  width: 50%;
  position: relative;
}

.breadCrumb nav:after {
  width: 50px;
  height: 130px;
  content: '';
  background: #FFF;
  position: absolute;
  right: -30px;
  transform: rotate(-25deg);
}

@media screen and (max-width: 768px) {
  .breadCrumb nav:after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .breadCrumb nav {
    width: 100%;
  }
}

.breadCrumb nav ul {
  width: 600px;
  height: 100px;
  float: right;
  padding-right: 10px;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .breadCrumb nav ul {
    width: 100%;
    height: auto;
    padding: 10px;
  }
}

.breadCrumb nav ul li {
  line-height: 2rem;
}

.breadCrumb nav ul li a {
  color: #000;
  text-decoration: underline;
  margin: 0 2.5em 0 0;
  position: relative;
}

.breadCrumb nav ul li a:after {
  content: '';
  position: absolute;
  right: -1.5em;
  top: .5em;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

.decoPh {
  width: 50%;
  height: 100px;
  overflow: hidden;
  transform: skew(20deg);
  position: relative;
  right: -20px;
}

@media screen and (max-width: 768px) {
  .decoPh {
    width: 100%;
    transform: skew(0deg);
    right: 0px;
    display: none;
  }
}

.decoPh img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  -ms-filter: blur(3px);
  filter: blur(3px);
  transform: scale(2) skew(-20deg);
}

@media screen and (max-width: 768px) {
  .decoPh img {
    transform: scale(2) skew(0deg);
  }
}

#contents {
  position: relative;
}

#contents #serchBox {
  width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #F1F1F1;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  #contents #serchBox {
    width: 100%;
    padding: 10px;
  }
}

#contents #serchBox h1, #contents #serchBox p {
  font-size: 2.4rem;
  width: 260px;
  padding: 20px;
  font-weight: 600;
  letter-spacing: .3rem;
  line-height: 50px;
}

.midori #contents #serchBox h1, .midori #contents #serchBox p {
  width: 420px;
}

@media screen and (max-width: 768px) {
  .midori #contents #serchBox h1, .midori #contents #serchBox p {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.5em;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  #contents #serchBox h1, #contents #serchBox p {
    width: 100%;
    font-size: 1.8rem;
  }
}

#contents #serchBox .selectNav {
  padding: 20px;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #contents #serchBox .selectNav {
    padding: 10px 0;
    width: 100%;
  }
}

#contents #serchBox .selectNav li {
  margin: 0 0 0 20px;
  width: 260px;
}

@media screen and (max-width: 768px) {
  #contents #serchBox .selectNav li {
    width: 30%;
    margin: 0 5px;
  }
}

#contents #serchBox .selectNav li button.choices {
  border: none;
  border-radius: 3px;
  background: #F1F1F1;
  font-size: 1.3rem;
  font-weight: bold;
  width: 260px;
  height: 50px;
  padding: 0 20px;
  cursor: pointer;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 768px) {
  #contents #serchBox .selectNav li button.choices {
    width: 100%;
  }
}

#contents #serchBox .selectNav li button.choices:after {
  content: '';
  width: 10%;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0px;
  background: #000;
  transition: all .3s;
}

#contents #serchBox .selectNav li button.choices:hover:after {
  width: 5%;
  transition: all .2s;
}

#contents #serchBox .selectNav li button.choices.active {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

#contents #serchBox .selectNav li ul {
  opacity: 0;
  width: 260px;
  position: absolute;
  z-index: -100;
  visibility: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#contents #serchBox .selectNav li ul.sub_visible {
  display: block;
  transition: .2s;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  #contents #serchBox .selectNav li ul {
    width: 30%;
  }
}

#contents #serchBox .selectNav li ul li {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #EEE;
  margin: 0;
  width: 100%;
}

#contents #serchBox .selectNav li ul li a {
  display: block;
  height: 40px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  line-height: 40px;
  width: 100%;
  position: relative;
  cursor: pointer;
  background: #FFF;
  color: #000;
}

#contents #serchBox .selectNav li ul li a:hover {
  color: #000 !important;
  text-decoration: underline;
  background: #EEE;
}

#contents #serchBox .selectNav li ul li a:focus {
  color: #000 !important;
  text-decoration: underline;
  background: #EEE;
}

@media screen and (max-width: 768px) {
  #contents #serchBox .selectNav li ul li a {
    width: 100%;
  }
}

.searchResult {
  width: 1200px;
  padding: 20px 0 0 20px;
  margin: 0 auto;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.searchResult dt {
  width: 5em;
}

.searchResult dd {
  width: calc(100% - 5em);
}

.searchResult dd h2 {
  font-size: 1.4rem;
  display: inline;
  background: none;
  border: none !important;
  padding: 0;
}

.facilitiesList h1 {
  font-size: 2.6rem;
  letter-spacing: .2em;
  text-align: center;
  font-weight: 400;
  padding: 67px 0;
}

.kyokai .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E4EFE4 0, #E4EFE4 100%);
}

.zoorasia .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EFF3E8 0, #EFF3E8 100%);
}

.nogeyama .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.makigahara .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.kanazawa .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F9F2EF 0, #F9F2EF 100%);
}

.seiyoukan .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F7F4F0 0, #F7F4F0 100%);
}

.park .facilitiesList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E9F0F3 0, #E9F0F3 100%);
}

.facilitiesList h2 {
  font-size: 2.6rem;
  letter-spacing: .2em;
  text-align: center;
  font-weight: 400;
  padding: 67px 0;
}

main {
  font-family: "Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}

@media screen and (max-width: 768px) {
  main {
    overflow-x: hidden;
  }
}

.voice {
  background: #F9F9F9;
}

.voice h1 {
  font-size: 2.6rem;
  letter-spacing: .2em;
  text-align: center;
  font-weight: 600;
  padding: 67px 0;
}

.kyokai .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E4EFE4 0, #E4EFE4 100%);
}

.zoorasia .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EFF3E8 0, #EFF3E8 100%);
}

.nogeyama .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.makigahara .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.kanazawa .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F9F2EF 0, #F9F2EF 100%);
}

.seiyoukan .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F7F4F0 0, #F7F4F0 100%);
}

.park .voice h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E9F0F3 0, #E9F0F3 100%);
}

.voice article {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .voice article {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

.voice article .voice_cnt {
  background: #FFF;
  margin: 40px 0;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .voice article .voice_cnt {
    padding: 20px;
  }
}

.voice article .voice_cnt h2 {
  font-size: 2.1rem;
  padding: 0 0 20px 0;
}

.voice article .voice_cnt .dates {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-top: 1px solid #F8F8F8;
  border-bottom: 1px solid #F8F8F8;
}

@media screen and (max-width: 768px) {
  .voice article .voice_cnt .dates {
    padding: 10px 0;
  }
}

.voice article .voice_cnt .dates dl {
  width: 33.3%;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.voice article .voice_cnt .dates dl dt {
  font-weight: bold;
  padding: 20px 20px 20px 0;
}

@media screen and (max-width: 768px) {
  .voice article .voice_cnt .dates dl dt {
    width: 100%;
    padding: 5px 0;
    text-align: center;
  }
}

.voice article .voice_cnt .dates dl dd {
  padding: 20px 20px 20px 0;
}

@media screen and (max-width: 768px) {
  .voice article .voice_cnt .dates dl dd {
    width: 100%;
    padding: 5px 0;
    text-align: center;
  }
}

.voice article .voice_cnt .details dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.voice article .voice_cnt .details dl dt {
  font-weight: bold;
  width: 6rem;
  padding: 20px 0 0 0;
  line-height: 1.8em;
}

.voice article .voice_cnt .details dl dd {
  width: calc(100% - 6rem);
  line-height: 1.8em;
  padding: 20px 0 0 0;
}

.facilitiesWrap {
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .facilitiesWrap {
    width: 100%;
  }
}

.facilitiesWrap ul {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.facilitiesWrap ul li {
  width: 260px;
  margin: 20px;
}

@media screen and (max-width: 768px) {
  .facilitiesWrap ul li {
    width: 100%;
    margin: 10px;
  }
}

.facilitiesWrap ul li a {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  color: #000;
  letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
  .facilitiesWrap ul li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.facilitiesWrap ul li a h3 {
  width: 100%;
  font-size: 1.6rem;
  padding: 20px 70px 20px 0;
  font-weight: 400;
  position: relative;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .facilitiesWrap ul li a h3 {
    width: calc(100% - 100px);
  }
}

.facilitiesWrap ul li a h3:after {
  content: '';
  width: 70px;
  height: 1px;
  border-top: 1px solid #000;
  position: absolute;
  right: 0px;
  top: 50%;
  transition: all .4s;
}

.facilitiesWrap ul li a h3 .category {
  display: block;
  font-size: 1.2rem;
  color: #555;
  font-weight: bold;
}

.facilitiesWrap ul li a .thumb {
  width: 260px;
  height: 260px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .facilitiesWrap ul li a .thumb {
    width: 80px;
    height: 80px;
    margin: 0 20px 0 0;
  }
}

.facilitiesWrap ul li a .thumb img {
  object-fit: cover;
  width: 260px;
  height: 260px;
  transition: transform .2s;
}

@media screen and (max-width: 768px) {
  .facilitiesWrap ul li a .thumb img {
    width: 80px;
    height: 80px;
  }
}

.facilitiesWrap ul li a:hover h3:after {
  width: 20px;
  transition: all .2s;
}

.facilitiesWrap ul li a:hover img {
  transform: scale(1.15);
  transition: transform .2s;
}

.postList {
  background: #F9F9F9;
  padding: 0 0 40px 0;
}

.postList h1 {
  font-size: 2.8rem;
  letter-spacing: .2em;
  text-align: center;
  font-weight: 400;
  padding: 67px 0;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .postList h1 {
    padding: 30px 0;
  }
}

.kyokai .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E4EFE4 0, #E4EFE4 100%);
}

.seiyoukan .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F7F4F0 0, #F7F4F0 100%);
}

.park .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E9F0F3 0, #E9F0F3 100%);
}

.zoorasia .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EFF3E8 0, #EFF3E8 100%);
}

.nogeyama .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.nogeyama .postList h1.mon {
  display: none;
}

.kanazawa .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F9F2EF 0, #F9F2EF 100%);
}

.kanazawa .postList h1.mon {
  display: none;
}

.makigahara .postList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.makigahara .postList h1.mon {
  display: none;
}

.postList #serchBox {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
}

.makigahara .postList #serchBox {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .postList #serchBox {
    width: 100%;
    height: 60px;
  }
}

.postList #serchBox .dropdown {
  display: block;
  margin: 0 auto;
  width: 120px;
}

.postList #serchBox .dropdown option {
  padding: 10px;
}

.postList #serchBox .title {
  display: none;
}

.postList .blog_list {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 1200px) {
  .postList .blog_list {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .postList .blog_list {
    padding: 0;
  }
}

.postList .blog_list ul {
  width: 100%;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 40px;
  background: #FFF;
}

@media screen and (max-width: 1200px) {
  .postList .blog_list ul {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul {
    padding: 10px;
  }
}

.postList .blog_list ul li {
  width: 100%;
  height: auto;
  margin: 0px;
}

.postList .blog_list ul li:first-child a {
  border-top: 1px solid #F8F8F8;
}

.postList .blog_list ul li.new a:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../images/new_list.svg) no-repeat center center;
  background-size: contain;
  top: 0px;
  right: 0px;
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul li.new a:after {
    top: 0px;
    right: -10px;
  }
}

.postList .blog_list ul li a {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #FFF;
  color: #000;
  height: 100%;
  transition: all .3s;
  padding: 15px;
  border-bottom: 1px solid #F8F8F8;
  position: relative;
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul li a {
    padding: 10px 0;
  }
}

.postList .blog_list ul li a .thumb {
  width: 200px;
  height: 100px;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul li a .thumb {
    width: 30%;
    height: 70px;
  }
}

.postList .blog_list ul li a .thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul li a .thumb img {
    height: 70px;
  }
}

.postList .blog_list ul li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all .3s;
  z-index: 10;
}

.kyokai .postList .blog_list ul li a:hover {
  color: #006404;
}

.park .postList .blog_list ul li a:hover {
  color: #165697;
}

.postList .blog_list ul li a:hover img {
  transform: scale(1.15);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease-out;
}

.postList .blog_list ul li a span {
  display: block;
}

.postList .blog_list ul li a .wrap {
  width: calc(100% - 200px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul li a .wrap {
    width: 70%;
  }
}

.postList .blog_list ul li a .date {
  font-size: 1.2rem;
  color: #c9caca;
  padding: 0 15px;
}

.postList .blog_list ul li a .tit {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bold;
  padding: 15px;
}

.postList .blog_list ul li a .site {
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: -15px;
  bottom: 10px;
  border-radius: 15px 0 0 15px;
  display: block;
  min-width: 100px;
  padding: 0 10px;
}

.kyokai .postList .blog_list ul li a .site {
  background: #006404;
  color: #FFF;
}

.zoo .postList .blog_list ul li a .site {
  background: #87712B;
  color: #FFF;
}

.zoorasia .postList .blog_list ul li a .site {
  background: #688436;
  color: #FFF;
}

.nogeyama .postList .blog_list ul li a .site {
  background: #274EC0;
  color: #FFF;
}

.kanazawa .postList .blog_list ul li a .site {
  background: #CD4600;
  color: #FFF;
}

.seiyoukan .postList .blog_list ul li a .site {
  width: 150px;
  background: #A62557;
  color: #FFF;
}

.park .postList .blog_list ul li a .site {
  background: #165697;
  color: #FFF;
}

.kodomo .postList .blog_list ul li a .site {
  background: #0F633D;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .postList .blog_list ul li a .site {
    width: auto;
    height: 20px;
    line-height: 20px;
    right: -10px;
    bottom: -5px;
    font-size: 0.8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    /* Safari */
    -o-text-overflow: ellipsis;
    /* Opera */
  }
}

.postList .blog_list ul li a .term {
  display: flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 15px;
  border-top: 1px solid #F9F9F9;
}

.kyokai .postList .blog_list ul li a .term {
  background: #E4EFE4;
}

.seiyoukan .postList .blog_list ul li a .term {
  background: #E4EFE4;
}

.park .postList .blog_list ul li a .term {
  background: #E9F0F3;
}

.postList .blog_list ul li a .term dd br {
  display: none;
}

.postList .blog_list ul li.mankai a {
  background: #FFF url("../images/sakura/mankai.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.nanabuzaki a {
  background: #FFF url("../images/sakura/7buzaki.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.gobuzaki a {
  background: #FFF url("../images/sakura/5buzaki.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.sanbuzaki a {
  background: #FFF url("../images/sakura/3buzaki.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.kaika a {
  background: #FFF url("../images/sakura/kaika.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.tsubomi a {
  background: #FFF url("../images/sakura/tsubomi.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.chirihajime a {
  background: #FFF url("../images/sakura/chirihajime.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .blog_list ul li.hazakura a {
  background: #FFF url("../images/sakura/hazakura.svg") no-repeat right 15px top 15px;
  -webkit-background-size: 50px;
  background-size: 50px;
}

.postList .info_list {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .postList .info_list {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .postList .info_list {
    padding: 0;
    margin: 0;
  }
}

.postList .info_list ul {
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  .postList .info_list ul {
    margin: 15px 0;
  }
}

.postList .info_list ul li {
  border-bottom: 1px solid #F8F8F8;
}

.postList .info_list ul li:first-child {
  border-top: 1px solid #F8F8F8;
}

.postList .info_list ul li.new a:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../images/new_list.svg) no-repeat center center;
  background-size: contain;
  top: 0px;
  right: 0px;
}

@media screen and (max-width: 768px) {
  .postList .info_list ul li.new a:after {
    top: 0px;
    right: -10px;
  }
}

.postList .info_list ul li a {
  padding: 20px;
  color: #555;
  transition: all .3s;
  background: #FFF;
  position: relative;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.postList .info_list ul li a:hover, .postList .info_list ul li a:focus, .postList .info_list ul li a:active {
  transition: all .3s;
}

.postList .info_list ul li a:hover .tit, .postList .info_list ul li a:focus .tit, .postList .info_list ul li a:active .tit {
  text-decoration: underline;
}

.kyokai .postList .info_list ul li a:hover, .kyokai .postList .info_list ul li a:focus, .kyokai .postList .info_list ul li a:active {
  color: #006404;
  background: #E4EFE4;
}

.zoorasia .postList .info_list ul li a:hover, .zoorasia .postList .info_list ul li a:focus, .zoorasia .postList .info_list ul li a:active {
  color: #688436;
  background: #EFF3E8;
}

.nogeyama .postList .info_list ul li a:hover, .nogeyama .postList .info_list ul li a:focus, .nogeyama .postList .info_list ul li a:active {
  color: #274EC0;
  background: #EBF3F7;
}

.kanazawa .postList .info_list ul li a:hover, .kanazawa .postList .info_list ul li a:focus, .kanazawa .postList .info_list ul li a:active {
  color: #CD4600;
  background: #F9F2EF;
}

.park .postList .info_list ul li a:hover, .park .postList .info_list ul li a:focus, .park .postList .info_list ul li a:active {
  color: #165697;
  background: #E9F0F3;
}

.postList .info_list ul li a .date {
  display: inline-block;
  letter-spacing: .1em;
  margin-right: 10px;
  width: 9rem;
}

@media screen and (max-width: 768px) {
  .postList .info_list ul li a .date {
    width: 100%;
    margin-bottom: 1em;
  }
}

.postList .info_list ul li a .tit {
  display: inline-block;
  width: calc(100% - 250px);
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .postList .info_list ul li a .tit {
    width: 100%;
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 768px) {
  .postList .info_list ul li a .site {
    width: 100%;
    text-align: right;
  }
}

.postList .event_list {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 1200px) {
  .postList .event_list {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .postList .event_list {
    padding: 0;
  }
}

.nogeyama .postList .event_list.mon {
  display: none;
}

.kanazawa .postList .event_list.mon {
  display: none;
}

.postList .event_list ul {
  width: 100%;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (max-width: 1200px) {
  .postList .event_list ul {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .postList .event_list ul {
    padding: 10px;
  }
}

.postList .event_list ul li {
  width: 340px;
  height: auto;
  margin: 0px 20px 40px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .postList .event_list ul li {
    width: calc(50% - 10px);
    margin: 5px;
  }
}

.postList .event_list ul li.new:after {
  content: '';
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 6;
  background: url("../images/new.svg") no-repeat;
}

.postList .event_list ul li a {
  background: #FFF;
  color: #000;
  height: 100%;
  transition: all .3s;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.postList .event_list ul li a .thumb {
  width: 100%;
  height: 200px;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .postList .event_list ul li a .thumb {
    height: 100px;
  }
}

.postList .event_list ul li a .thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .postList .event_list ul li a .thumb img {
    height: 100px;
  }
}

.postList .event_list ul li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all .3s;
}

.kyokai .postList .event_list ul li a:hover {
  color: #006404;
}

.zoorasia .postList .event_list ul li a:hover {
  color: #688436;
}

.nogeyama .postList .event_list ul li a:hover {
  color: #274EC0;
}

.makigahara .postList .event_list ul li a:hover {
  color: #274EC0;
}

.kanazawa .postList .event_list ul li a:hover {
  color: #CD4600;
}

.park .postList .event_list ul li a:hover {
  color: #165697;
}

.postList .event_list ul li a:hover img {
  transform: scale(1.15);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease-out;
}

.postList .event_list ul li a span {
  display: block;
}

.postList .event_list ul li a .date {
  font-size: 1.2rem;
  color: #c9caca;
  padding: 15px;
  width: 50%;
}

.postList .event_list ul li a .site {
  display: block;
  width: 50%;
  padding: 15px;
  text-align: center;
}

.postList .event_list ul li a .site.kyokai {
  background: #006404;
}

.postList .event_list ul li a .site.zoorasia {
  background: #688436;
}

.postList .event_list ul li a .site.nogeyama {
  background: #274EC0;
}

.postList .event_list ul li a .site.makigahara {
  background: #274EC0;
}

.postList .event_list ul li a .site.kanazawa {
  background: #CD4600;
}

.postList .event_list ul li a .site.seiyoukan {
  background: #A62557;
}

.postList .event_list ul li a .site.park {
  background: #165697;
}

.postList .event_list ul li a .site.kodomo {
  background: #0F633D;
}

.postList .event_list ul li a .tit {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bold;
  padding: 15px;
  display: block;
  width: 100%;
}

.postList .event_list ul li a .term {
  display: flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 15px;
  border-top: 1px solid #F9F9F9;
  width: 100%;
}

.kyokai .postList .event_list ul li a .term {
  background: #E4EFE4;
}

.zoorasia .postList .event_list ul li a .term {
  background: #EFF3E8;
}

.nogeyama .postList .event_list ul li a .term {
  background: #EBF3F7;
}

.makigahara .postList .event_list ul li a .term {
  background: #EBF3F7;
}

.kanazawa .postList .event_list ul li a .term {
  background: #F9F2EF;
}

.seiyoukan .postList .event_list ul li a .term {
  background: #F7F4F0;
}

.park .postList .event_list ul li a .term {
  background: #E9F0F3;
}

.postList .event_list ul li a .term dd br {
  display: none;
}

.calendarCnt {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 1200px) {
  .calendarCnt {
    width: 100%;
    padding: 10px;
  }
}

.post {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .post {
    width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .post {
    width: 100%;
    padding: 10px;
  }
}

.post p:first-child {
  width: 100%;
  display: block;
}

.post .label_new {
  position: absolute;
  right: 10px;
  top: -7px;
  width: 50px;
}

.post article {
  width: calc(70% - 20px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .post article {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

.post article .eye_catch {
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .post article .eye_catch {
    height: 200px;
  }
}

.post article .eye_catch img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .post article .eye_catch img {
    height: 200px;
  }
}

.post article .eye_catch h1 {
  display: none;
}

.post article .event_cnt {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.post article .event_cnt h1 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .05rem;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .post article .event_cnt h1 {
    line-height: 3rem;
  }
}

.post article .event_cnt dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 20px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.post article .event_cnt dl #kaikaLv {
  top: -80px;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .post article .event_cnt dl {
    margin: 0 0 20px 0;
  }
}

.post article .event_cnt dl dt {
  width: 15%;
  padding: 15px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .post article .event_cnt dl dt {
    width: 30%;
  }
}

.kyokai .post article .event_cnt dl dt {
  background: #E4EFE4;
  border-bottom: 1px solid #FFF;
}

.kyokai .post article .event_cnt dl dt:last-child {
  border: none;
}

.zoorasia .post article .event_cnt dl dt {
  background: #EFF3E8;
  border-bottom: 1px solid #FFF;
}

.zoorasia .post article .event_cnt dl dt:last-child {
  border: none;
}

.nogeyama .post article .event_cnt dl dt {
  background: #EBF3F7;
  border-bottom: 1px solid #FFF;
}

.nogeyama .post article .event_cnt dl dt:last-child {
  border: none;
}

.makigahara .post article .event_cnt dl dt {
  background: #EBF3F7;
  border-bottom: 1px solid #FFF;
}

.makigahara .post article .event_cnt dl dt:last-child {
  border: none;
}

.kanazawa .post article .event_cnt dl dt {
  background: #F9F2EF;
  border-bottom: 1px solid #FFF;
}

.kanazawa .post article .event_cnt dl dt:last-child {
  border: none;
}

.park .post article .event_cnt dl dt {
  background: #E9F0F3;
  border-bottom: 1px solid #FFF;
}

.park .post article .event_cnt dl dt:last-child {
  border: none;
}

.post article .event_cnt dl dd {
  width: 85%;
  padding: 15px;
  background: #FFF;
  border-bottom: 1px solid #F8F8F8;
}

@media screen and (max-width: 768px) {
  .post article .event_cnt dl dd {
    width: 70%;
  }
}

.post article .event_cnt dl dd:last-child {
  border: none;
}

.post article .event_cnt dl dd .date1 {
  display: inline-block;
}

.post article .event_cnt h2 {
  font-size: 2.4rem;
  letter-spacing: .2em;
  font-weight: 600;
  display: block;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  z-index: 0;
  background: #F9F9F9;
}

.kyokai .post article .event_cnt h2 {
  border-left: 3px solid #006404;
}

.zoorasia .post article .event_cnt h2 {
  border-left: 3px solid #688436;
}

.nogeyama .post article .event_cnt h2 {
  border-left: 3px solid #274EC0;
}

.makigahara .post article .event_cnt h2 {
  border-left: 3px solid #274EC0;
}

.kanazawa .post article .event_cnt h2 {
  border-left: 3px solid #CD4600;
}

.seiyoukan .post article .event_cnt h2 {
  border-left: 3px solid #A62557;
}

.park .post article .event_cnt h2 {
  border-left: 3px solid #165697;
}

.post article .event_cnt h2:before {
  width: 5px;
  height: 100%;
  content: '';
  position: relative;
}

.kyokai .post article .event_cnt h2:before {
  background: #006404;
}

.zoorasia .post article .event_cnt h2:before {
  background: #688436;
}

.nogeyama .post article .event_cnt h2:before {
  background: #274EC0;
}

.makigahara .post article .event_cnt h2:before {
  background: #274EC0;
}

.kanazawa .post article .event_cnt h2:before {
  background: #CD4600;
}

.seiyoukan .post article .event_cnt h2:before {
  background: #A62557;
}

.park .post article .event_cnt h2:before {
  background: #165697;
}

.post article .event_cnt h3 {
  font-size: 2.1rem;
  margin: 20px 0;
  letter-spacing: .1em;
  padding: 20px;
  display: block;
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.post article .event_cnt h4 {
  font-size: 1.8rem;
  margin: 20px 0;
  letter-spacing: .1em;
}

.post article .event_cnt h5 {
  font-size: 1.6rem;
  margin: 20px 0;
  letter-spacing: .1em;
}

.post article .event_cnt h6 {
  font-size: 1.6rem;
  letter-spacing: .1em;
}

.post article .event_cnt p {
  font-size: 1.6rem;
  margin: 10px 0;
}

.post article .event_cnt a {
  text-decoration: underline;
  position: relative;
  display: inline-block;
}

.kyokai .post article .event_cnt a {
  color: #006404;
}

.zoorasia .post article .event_cnt a {
  color: #688436;
}

.nogeyama .post article .event_cnt a {
  color: #274EC0;
}

.makigahara .post article .event_cnt a {
  color: #274EC0;
}

.kanazawa .post article .event_cnt a {
  color: #CD4600;
}

.park .post article .event_cnt a {
  color: #165697;
}

.kyokai .post article .event_cnt a:hover {
  color: #1D542C;
  background: #E4EFE4;
  transition: .3s;
}

.zoorasia .post article .event_cnt a:hover {
  color: #5A722D;
  background: #EFF3E8;
  transition: .3s;
}

.nogeyama .post article .event_cnt a:hover {
  color: #1F41A2;
  background: #EBF3F7;
  transition: .3s;
}

.makigahara .post article .event_cnt a:hover {
  color: #1F41A2;
  background: #EBF3F7;
  transition: .3s;
}

.kanazawa .post article .event_cnt a:hover {
  color: #903302;
  background: #F9F2EF;
  transition: .3s;
}

.park .post article .event_cnt a:hover {
  color: #0D4D7D;
  background: #E9F0F3;
  transition: .3s;
}

.kyokai .post article .event_cnt a:focus {
  color: #1D542C;
}

.zoorasia .post article .event_cnt a:focus {
  color: #5A722D;
}

.nogeyama .post article .event_cnt a:focus {
  color: #1F41A2;
}

.makigahara .post article .event_cnt a:focus {
  color: #1F41A2;
}

.kanazawa .post article .event_cnt a:focus {
  color: #903302;
}

.park .post article .event_cnt a:focus {
  color: #0D4D7D;
}

.post article .event_cnt a[href$='.pdf'] {
  padding: 0 25px 0 0;
}

.post article .event_cnt a[href$='.pdf']:after {
  font-family: icomoon;
  content: "\e91a";
  font-size: 1.8rem !important;
  bottom: 10px !important;
  right: 2px;
  position: absolute;
}

.post article .event_cnt a[target='_blank'] {
  padding: 0 25px 0 0;
}

.post article .event_cnt a[target='_blank']:after {
  font-family: icomoon;
  content: "\e972";
  font-size: 0.9rem;
  bottom: 0;
  right: 2px;
  position: absolute;
}

.post article .event_cnt a.btnBase[target='_blank'] {
  content: none;
  content: '';
}

.post article .event_cnt table {
  width: 100%;
  margin-bottom: 20px;
}

.post article .event_cnt table th {
  padding: 15px;
  border: 1px solid #c9caca;
  font-weight: normal;
}

.kyokai .post article .event_cnt table th {
  background: #E4EFE4;
  border: 1px solid #BDDBC6;
}

.zoorasia .post article .event_cnt table th {
  background: #EFF3E8;
  border: 1px solid #e3ead8;
}

.nogeyama .post article .event_cnt table th {
  background: #EBF3F7;
  border: 1px solid #d7e4eb;
}

.makigahara .post article .event_cnt table th {
  background: #EBF3F7;
  border: 1px solid #d7e4eb;
}

.kanazawa .post article .event_cnt table th {
  background: #F9F2EF;
  border: 1px solid #ede2dd;
}

.seiyoukan .post article .event_cnt table th {
  background: #F7F4F0;
  border: 1px solid #EEE;
}

.park .post article .event_cnt table th {
  background: #E9F0F3;
  border: 1px solid #BCD0DD;
}

.post article .event_cnt table td {
  background: #FFF;
  padding: 15px;
  border: 1px solid #c9caca;
}

.kyokai .post article .event_cnt table td {
  border: 1px solid #BDDBC6;
}

.zoorasia .post article .event_cnt table td {
  border: 1px solid #e3ead8;
}

.nogeyama .post article .event_cnt table td {
  border: 1px solid #d7e4eb;
}

.makigahara .post article .event_cnt table td {
  border: 1px solid #d7e4eb;
}

.kanazawa .post article .event_cnt table td {
  border: 1px solid #ede2dd;
}

.seiyoukan .post article .event_cnt table td {
  border: 1px solid #EEE;
}

.park .post article .event_cnt table td {
  border: 1px solid #BCD0DD;
}

.post article .event_cnt ul {
  font-size: 1.6rem;
  list-style: disc outside;
  padding: 10px 40px;
  margin: 0 0 20px 0;
}

.post article .event_cnt ul li {
  margin: 0.5em 0;
  line-height: 2.8rem;
}

.post article .event_cnt .sns_btns {
  width: 380px;
  margin: 40px auto;
  padding: 20px 0;
  background: #F9F9F9;
  border-radius: 3px;
  list-style: none;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  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;
}

@media screen and (max-width: 768px) {
  .post article .event_cnt .sns_btns {
    width: 100%;
  }
}

.post article .event_cnt .sns_btns li {
  width: 40px;
  margin: 0 5px;
}

.post article .event_cnt .sns_btns li:first-child {
  width: 180px;
}

.post article .event_cnt .sns_btns li a {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  color: #000;
}

.post article .event_cnt .sns_btns li a span {
  display: none;
}

.post article .event_cnt .sns_btns li a.fb-btn:after {
  font-family: icomoon;
  content: "\e90e";
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post article .event_cnt .sns_btns li a.twitter-btn:after {
  font-family: icomoon;
  content: "\e920";
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post article .event_cnt .sns_btns li a.line-btn:after {
  font-family: icomoon;
  content: "\e969";
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post aside {
  width: calc(30% - 20px);
}

@media screen and (max-width: 768px) {
  .post aside {
    width: 100%;
  }
}

.post aside h2 {
  padding: 15px;
  text-align: center;
  font-size: 1.8rem;
}

.kyokai .post aside h2 {
  background: #E4EFE4;
}

.zoo .post aside h2 {
  background: #f9f1d4;
}

.zoorasia .post aside h2 {
  background: #EFF3E8;
}

.nogeyama .post aside h2 {
  background: #EBF3F7;
}

.makigahara .post aside h2 {
  background: #EBF3F7;
}

.kanazawa .post aside h2 {
  background: #F9F2EF;
}

.seiyoukan .post aside h2 {
  background: #F7F4F0;
}

.park .post aside h2 {
  background: #E9F0F3;
}

.post aside h3 {
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  border: 1px solid #F8F8F8;
  border-top: none;
  position: relative;
}

.post aside h3:last-child {
  border-bottom: 1px solid #F8F8F8;
}

.post aside h3:before {
  content: '';
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  display: inline-block;
  margin: 0 1em 0 0;
}

.kyokai .post aside h3:before {
  border-top: 1px solid #006404;
  border-right: 1px solid #006404;
}

.zoo .post aside h3:before {
  border-top: 1px solid #87712B;
  border-right: 1px solid #87712B;
}

.zoorasia .post aside h3:before {
  border-top: 1px solid #688436;
  border-right: 1px solid #688436;
}

.nogeyama .post aside h3:before {
  border-top: 1px solid #274EC0;
  border-right: 1px solid #274EC0;
}

.makigahara .post aside h3:before {
  border-top: 1px solid #274EC0;
  border-right: 1px solid #274EC0;
}

.kanazawa .post aside h3:before {
  border-top: 1px solid #CD4600;
  border-right: 1px solid #CD4600;
}

.seiyoukan .post aside h3:before {
  border-top: 1px solid #A62557;
  border-right: 1px solid #A62557;
}

.park .post aside h3:before {
  border-top: 1px solid #165697;
  border-right: 1px solid #165697;
}

.post aside h3:hover {
  background: #F9F9F9;
}

.post aside ul {
  border: 1px solid #F8F8F8;
}

.post aside ul li {
  border-bottom: 1px solid #F8F8F8;
}

.post aside ul li:last-child {
  border: none;
}

.post aside ul li a {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 15px;
  color: #000;
  transition: all .3s;
}

.post aside ul li a:hover {
  text-decoration: underline;
  background: #F9F9F9;
  transition: all .3s;
}

.post aside ul li a .link_thumb {
  width: 60px;
  display: block;
}

.post aside ul li a .link_thumb img {
  width: 100%;
}

.post aside ul li a .wrap {
  width: calc(100% - 60px);
  display: block;
  padding-left: 15px;
}

.post aside ul li a .wrap .link_tit {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.post aside ul li a .wrap .link_term {
  display: block;
  font-size: 1.2rem;
  color: #c9caca;
}

.detailPage {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .detailPage {
    width: 100%;
  }
}

.detailPage h1 {
  font-size: 2.4rem;
  text-align: center;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .detailPage h1 {
    padding: 20px 0;
  }
}

.detailPage iframe {
  border: 1px solid #F1F1F1;
}

.detailPage .detailList {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.detailPage .detailList li {
  width: 360px;
}

@media screen and (max-width: 1200px) {
  .detailPage .detailList li {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .detailPage .detailList li {
    width: 100%;
    padding: 0 10px;
  }
}

.detailPage .detailList li h2 {
  font-size: 1.5rem;
  padding: 15px 0;
  border-bottom: 1px solid #F1F1F1;
  position: relative;
  letter-spacing: .1em;
}

.detailPage .detailList li h2:after {
  content: '';
  width: 40px;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.kyokai .detailPage .detailList li h2:after {
  background: #006404;
}

.zoorasia .detailPage .detailList li h2:after {
  background: #688436;
}

.nogeyama .detailPage .detailList li h2:after {
  background: #274EC0;
}

.kanazawa .detailPage .detailList li h2:after {
  background: #CD4600;
}

.park .detailPage .detailList li h2:after {
  background: #165697;
}

.detailPage .detailList li img {
  display: block;
  border-radius: 5px;
  margin: 0 0 20px 0;
  width: 50px;
  height: 50px;
}

.detailPage .detailList span.cnt {
  padding: 20px 0;
  line-height: 1.6em;
  letter-spacing: .1em;
  display: block;
}

@media screen and (max-width: 768px) {
  .detailPage .others {
    padding: 0 10px;
  }
}

.detailPage .others h2 {
  font-size: 1.5rem;
  padding: 15px 0;
  border-bottom: 1px solid #F1F1F1;
  position: relative;
  letter-spacing: .1em;
}

.detailPage .others h2:after {
  content: '';
  width: 40px;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.kyokai .detailPage .others h2:after {
  background: #006404;
}

.zoorasia .detailPage .others h2:after {
  background: #688436;
}

.nogeyama .detailPage .others h2:after {
  background: #274EC0;
}

.kanazawa .detailPage .others h2:after {
  background: #CD4600;
}

.park .detailPage .others h2:after {
  background: #165697;
}

.detailPage .others ul {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 20px 0;
}

.detailPage .others ul li {
  width: 360px;
  margin: 20px 20px 0 0;
}

@media screen and (max-width: 1200px) {
  .detailPage .others ul li {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .detailPage .others ul li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #F1F1F1;
  }
}

.detailPage .others ul li a {
  padding: 10px;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detailPage .others ul li a .link_thumb {
  width: 60px;
  height: 60px;
}

.detailPage .others ul li a .link_thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.detailPage .others ul li a .link_tit {
  font-weight: bold;
  padding: 0 0 0 20px;
}

.staticPage,
.blogList {
  color: #444;
}

.staticPage h1,
.blogList h1 {
  font-size: 2.8rem;
  letter-spacing: .2em;
  text-align: center;
  font-weight: 400;
  padding: 67px 0;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .staticPage h1,
  .blogList h1 {
    font-size: 2.1rem;
    padding: 30px 0;
  }
}

.kyokai .staticPage h1, .kyokai
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E4EFE4 0, #E4EFE4 100%);
}

.zoo .staticPage h1, .zoo
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #f9f1d4 0, #f9f1d4 100%);
}

.zoorasia .staticPage h1, .zoorasia
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EFF3E8 0, #EFF3E8 100%);
}

.nogeyama .staticPage h1, .nogeyama
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.makigahara .staticPage h1, .makigahara
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #EBF3F7 0, #EBF3F7 100%);
}

.kanazawa .staticPage h1, .kanazawa
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F9F2EF 0, #F9F2EF 100%);
}

.seiyoukan .staticPage h1, .seiyoukan
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #F7F4F0 0, #F7F4F0 100%);
}

.park .staticPage h1, .park
.blogList h1 {
  background: linear-gradient(180deg, #FFF 50%, #FFF 0, #E9F0F3 0, #E9F0F3 100%);
}

.staticPage h2,
.blogList h2 {
  font-size: 2.4rem;
  letter-spacing: .2em;
  font-weight: 600;
  display: block;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  z-index: 0;
  background: #F9F9F9;
}

.kyokai .staticPage h2, .kyokai
.blogList h2 {
  border-left: 3px solid #006404;
}

.zoorasia .staticPage h2, .zoorasia
.blogList h2 {
  border-left: 3px solid #688436;
}

.nogeyama .staticPage h2, .nogeyama
.blogList h2 {
  border-left: 3px solid #274EC0;
}

.makigahara .staticPage h2, .makigahara
.blogList h2 {
  border-left: 3px solid #274EC0;
}

.kanazawa .staticPage h2, .kanazawa
.blogList h2 {
  border-left: 3px solid #CD4600;
}

.seiyoukan .staticPage h2, .seiyoukan
.blogList h2 {
  border-left: 3px solid #A62557;
}

.park .staticPage h2, .park
.blogList h2 {
  border-left: 3px solid #165697;
}

.staticPage h2:before,
.blogList h2:before {
  width: 5px;
  height: 100%;
  content: '';
  position: relative;
}

.kyokai .staticPage h2:before, .kyokai
.blogList h2:before {
  background: #006404;
}

.zoorasia .staticPage h2:before, .zoorasia
.blogList h2:before {
  background: #688436;
}

.nogeyama .staticPage h2:before, .nogeyama
.blogList h2:before {
  background: #274EC0;
}

.makigahara .staticPage h2:before, .makigahara
.blogList h2:before {
  background: #274EC0;
}

.kanazawa .staticPage h2:before, .kanazawa
.blogList h2:before {
  background: #CD4600;
}

.seiyoukan .staticPage h2:before, .seiyoukan
.blogList h2:before {
  background: #A62557;
}

.park .staticPage h2:before, .park
.blogList h2:before {
  background: #165697;
}

.staticPage article,
.blogList article {
  width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #FFF;
  font-size: 1.6rem;
  line-height: 1.8em;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  letter-spacing: 0.05em;
  line-height: 2em;
}

@media screen and (max-width: 1200px) {
  .staticPage article,
  .blogList article {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .staticPage article,
  .blogList article {
    width: calc(100% - 20px);
    padding: 10px;
  }
}

.staticPage article h3,
.blogList article h3 {
  font-size: 2.1rem;
  margin: 20px 0;
  letter-spacing: .1em;
  padding: 20px;
  display: block;
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.staticPage article h4,
.blogList article h4 {
  font-size: 1.8rem;
  margin: 20px 0;
  letter-spacing: .1em;
}

.staticPage article h5,
.blogList article h5 {
  font-size: 1.6rem;
  margin: 20px 0;
  letter-spacing: .1em;
}

.staticPage article h6,
.blogList article h6 {
  font-size: 1.6rem;
  letter-spacing: .1em;
}

.staticPage article p,
.blogList article p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 20px 0;
}

.staticPage article p,
.blogList article p {
  line-height: 2em;
  margin: 1em 0;
}

.staticPage article a,
.blogList article a {
  text-decoration: underline;
  position: relative;
  display: inline-block;
}

.kyokai .staticPage article a, .kyokai
.blogList article a {
  color: #006404;
}

.zoorasia .staticPage article a, .zoorasia
.blogList article a {
  color: #688436;
}

.nogeyama .staticPage article a, .nogeyama
.blogList article a {
  color: #274EC0;
}

.makigahara .staticPage article a, .makigahara
.blogList article a {
  color: #274EC0;
}

.kanazawa .staticPage article a, .kanazawa
.blogList article a {
  color: #CD4600;
}

.park .staticPage article a, .park
.blogList article a {
  color: #165697;
}

.kyokai .staticPage article a:hover, .kyokai
.blogList article a:hover {
  color: #1D542C;
  background: #E4EFE4;
  transition: .3s;
}

.zoorasia .staticPage article a:hover, .zoorasia
.blogList article a:hover {
  color: #5A722D;
  background: #EFF3E8;
  transition: .3s;
}

.nogeyama .staticPage article a:hover, .nogeyama
.blogList article a:hover {
  color: #1F41A2;
  background: #EBF3F7;
  transition: .3s;
}

.makigahara .staticPage article a:hover, .makigahara
.blogList article a:hover {
  color: #1F41A2;
  background: #EBF3F7;
  transition: .3s;
}

.kanazawa .staticPage article a:hover, .kanazawa
.blogList article a:hover {
  color: #903302;
  background: #F9F2EF;
  transition: .3s;
}

.park .staticPage article a:hover, .park
.blogList article a:hover {
  color: #0D4D7D;
  background: #E9F0F3;
  transition: .3s;
}

.kyokai .staticPage article a:focus, .kyokai
.blogList article a:focus {
  color: #1D542C;
}

.zoorasia .staticPage article a:focus, .zoorasia
.blogList article a:focus {
  color: #5A722D;
}

.nogeyama .staticPage article a:focus, .nogeyama
.blogList article a:focus {
  color: #1F41A2;
}

.makigahara .staticPage article a:focus, .makigahara
.blogList article a:focus {
  color: #1F41A2;
}

.kanazawa .staticPage article a:focus, .kanazawa
.blogList article a:focus {
  color: #903302;
}

.park .staticPage article a:focus, .park
.blogList article a:focus {
  color: #0D4D7D;
}

.staticPage article a[href$='.pdf'],
.blogList article a[href$='.pdf'] {
  padding: 0 25px 0 0;
}

.staticPage article a[href$='.pdf']:after,
.blogList article a[href$='.pdf']:after {
  font-family: icomoon;
  content: "\e91a";
  font-size: 1.8rem !important;
  bottom: 10px !important;
  right: 2px;
  position: absolute;
}

.staticPage article a[target='_blank'],
.blogList article a[target='_blank'] {
  padding: 0 25px 0 0;
}

.staticPage article a[target='_blank']:after,
.blogList article a[target='_blank']:after {
  font-family: icomoon;
  content: "\e972";
  font-size: 0.9rem;
  bottom: 0;
  right: 2px;
  position: absolute;
}

.staticPage article a.btnBase[target='_blank'],
.blogList article a.btnBase[target='_blank'] {
  content: none;
  content: '';
}

.staticPage article table,
.blogList article table {
  width: 100%;
  margin-bottom: 20px;
}

.staticPage article table th,
.blogList article table th {
  padding: 15px;
  border: 1px solid #c9caca;
  font-weight: normal;
  vertical-align: middle;
}

.kyokai .staticPage article table th, .kyokai
.blogList article table th {
  background: #E4EFE4;
  border: 1px solid #BDDBC6;
}

.zoorasia .staticPage article table th, .zoorasia
.blogList article table th {
  background: #EFF3E8;
  border: 1px solid #e3ead8;
}

.nogeyama .staticPage article table th, .nogeyama
.blogList article table th {
  background: #EBF3F7;
  border: 1px solid #d7e4eb;
}

.makigahara .staticPage article table th, .makigahara
.blogList article table th {
  background: #EBF3F7;
  border: 1px solid #d7e4eb;
}

.kanazawa .staticPage article table th, .kanazawa
.blogList article table th {
  background: #F9F2EF;
  border: 1px solid #ede2dd;
}

.seiyoukan .staticPage article table th, .seiyoukan
.blogList article table th {
  background: #F7F4F0;
  border: 1px solid #EEE;
}

.park .staticPage article table th, .park
.blogList article table th {
  background: #E9F0F3;
  border: 1px solid #BCD0DD;
}

.staticPage article table td,
.blogList article table td {
  background: #FFF;
  padding: 2rem;
  border: 1px solid #c9caca;
}

.kyokai .staticPage article table td, .kyokai
.blogList article table td {
  border: 1px solid #BDDBC6;
}

.zoorasia .staticPage article table td, .zoorasia
.blogList article table td {
  border: 1px solid #e3ead8;
}

.nogeyama .staticPage article table td, .nogeyama
.blogList article table td {
  border: 1px solid #d7e4eb;
}

.makigahara .staticPage article table td, .makigahara
.blogList article table td {
  border: 1px solid #d7e4eb;
}

.kanazawa .staticPage article table td, .kanazawa
.blogList article table td {
  border: 1px solid #ede2dd;
}

.seiyoukan .staticPage article table td, .seiyoukan
.blogList article table td {
  border: 1px solid #EEE;
}

.park .staticPage article table td, .park
.blogList article table td {
  border: 1px solid #BCD0DD;
}

.staticPage article ul,
.blogList article ul {
  font-size: 1.6rem;
  list-style: disc outside;
  padding: 10px 40px;
  margin: 0 0 20px 0;
}

.staticPage article ul li,
.blogList article ul li {
  margin: 0.5em 0;
  line-height: 2.6rem;
}

.staticPage article img,
.blogList article img {
  vertical-align: bottom;
}

.staticPage article a,
.blogList article a {
  text-decoration: underline;
  position: relative;
  display: inline-block;
}

.kyokai .staticPage article a, .kyokai
.blogList article a {
  color: #006404;
}

.zoorasia .staticPage article a, .zoorasia
.blogList article a {
  color: #688436;
}

.nogeyama .staticPage article a, .nogeyama
.blogList article a {
  color: #274EC0;
}

.makigahara .staticPage article a, .makigahara
.blogList article a {
  color: #274EC0;
}

.kanazawa .staticPage article a, .kanazawa
.blogList article a {
  color: #CD4600;
}

.seiyoukan .staticPage article a, .seiyoukan
.blogList article a {
  color: #A62557;
}

.park .staticPage article a, .park
.blogList article a {
  color: #165697;
}

.kyokai .staticPage article a:hover, .kyokai
.blogList article a:hover {
  color: #1D542C;
  background: #E4EFE4;
  transition: .3s;
}

.zoorasia .staticPage article a:hover, .zoorasia
.blogList article a:hover {
  color: #5A722D;
  background: #EFF3E8;
  transition: .3s;
}

.nogeyama .staticPage article a:hover, .nogeyama
.blogList article a:hover {
  color: #1F41A2;
  background: #EBF3F7;
  transition: .3s;
}

.makigahara .staticPage article a:hover, .makigahara
.blogList article a:hover {
  color: #1F41A2;
  background: #EBF3F7;
  transition: .3s;
}

.kanazawa .staticPage article a:hover, .kanazawa
.blogList article a:hover {
  color: #903302;
  background: #F9F2EF;
  transition: .3s;
}

.seiyoukan .staticPage article a:hover, .seiyoukan
.blogList article a:hover {
  color: #90204E;
  background: #F7F4F0;
  transition: .3s;
}

.park .staticPage article a:hover, .park
.blogList article a:hover {
  color: #0D4D7D;
  background: #E9F0F3;
  transition: .3s;
}

.kyokai .staticPage article a:focus, .kyokai
.blogList article a:focus {
  color: #1D542C;
}

.zoorasia .staticPage article a:focus, .zoorasia
.blogList article a:focus {
  color: #5A722D;
}

.nogeyama .staticPage article a:focus, .nogeyama
.blogList article a:focus {
  color: #1F41A2;
}

.makigahara .staticPage article a:focus, .makigahara
.blogList article a:focus {
  color: #1F41A2;
}

.kanazawa .staticPage article a:focus, .kanazawa
.blogList article a:focus {
  color: #903302;
}

.seiyoukan .staticPage article a:focus, .seiyoukan
.blogList article a:focus {
  color: #90204E;
}

.park .staticPage article a:focus, .park
.blogList article a:focus {
  color: #0D4D7D;
}

.staticPage article a[href$='.pdf'],
.blogList article a[href$='.pdf'] {
  padding: 0 25px 0 0;
}

.staticPage article a[href$='.pdf']:after,
.blogList article a[href$='.pdf']:after {
  font-family: icomoon;
  content: "" !important;
  font-size: 1.8rem !important;
  bottom: 10px !important;
  right: 2px;
  position: absolute;
}

.staticPage article a[target='_blank'],
.blogList article a[target='_blank'] {
  padding: 0 25px 0 0;
}

.staticPage article a[target='_blank']:after,
.blogList article a[target='_blank']:after {
  font-family: icomoon;
  content: "\e972";
  font-size: 0.9rem;
  bottom: 0;
  right: 2px;
  position: absolute;
}

.staticPage article a.btnBase,
.blogList article a.btnBase {
  text-decoration: none;
}

.staticPage article a.btnBase[target='_blank']:after,
.blogList article a.btnBase[target='_blank']:after {
  content: none;
  content: '';
}

.staticPage .sdgs-icons,
.blogList .sdgs-icons {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.staticPage .sdgs-icons img,
.blogList .sdgs-icons img {
  width: 100px;
  height: 100px;
  margin: 10px 0 10px 10px;
}

.staticPage .sdgs-icons-dl,
.blogList .sdgs-icons-dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  border-top: 1px dashed #c9caca;
}

.staticPage .sdgs-icons-dl dt,
.blogList .sdgs-icons-dl dt {
  width: 70px;
  height: 100%;
}

.staticPage .sdgs-icons-dl dt img,
.blogList .sdgs-icons-dl dt img {
  width: 100%;
}

.staticPage .sdgs-icons-dl dd,
.blogList .sdgs-icons-dl dd {
  width: calc(100% - 70px);
  padding: 0 10px;
}

.staticPage .flexWrap,
.blogList .flexWrap {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .staticPage .flexWrap,
  .blogList .flexWrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .staticPage .flexWrap,
  .blogList .flexWrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.staticPage .linkBlock,
.blogList .linkBlock {
  padding: 40px 0;
}

@media screen and (max-width: 1200px) {
  .staticPage .linkBlock,
  .blogList .linkBlock {
    width: 33%;
    padding: 20px 10px;
  }
  .staticPage .linkBlock.siteMap,
  .blogList .linkBlock.siteMap {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .staticPage .linkBlock,
  .blogList .linkBlock {
    width: 49%;
    padding: 20px 10px;
  }
  .staticPage .linkBlock.siteMap,
  .blogList .linkBlock.siteMap {
    width: 100%;
  }
}

.staticPage .linkBlock h3,
.blogList .linkBlock h3 {
  font-size: 1.6rem;
  border: none;
  padding: 0;
  margin: 0;
}

.staticPage .linkBlock ul,
.blogList .linkBlock ul {
  margin: 20px 0;
  padding: 0 20px;
  list-style: none;
}

.staticPage .linkBlock ul li,
.blogList .linkBlock ul li {
  position: relative;
  margin: 0;
}

.staticPage .linkBlock ul li a,
.blogList .linkBlock ul li a {
  color: #000;
  display: inline-block;
  padding: 1em;
  position: relative;
  line-height: 2rem;
}

.staticPage .linkBlock ul li a:before,
.blogList .linkBlock ul li a:before {
  border-top: 1px solid #c9caca;
  width: 15px;
  height: 1px;
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
}

.staticPage .linkBlock ul li a:hover,
.blogList .linkBlock ul li a:hover {
  color: #00478C;
  text-decoration: underline;
}

.staticPage .linkBlock ul li:before,
.blogList .linkBlock ul li:before {
  border-left: 1px solid #c9caca;
  height: 100%;
  width: 1px;
  position: absolute;
  left: -15px;
  top: 0;
  content: '';
}

.staticPage .linkBlock ul li:last-child:before,
.blogList .linkBlock ul li:last-child:before {
  height: 50%;
}

.staticPage .individualBox,
.blogList .individualBox {
  border: 1px solid #F8F8F8;
  padding: 40px;
  position: relative;
  margin: 55px 0 40px 0;
}

.staticPage .individualBox *:first-child,
.blogList .individualBox *:first-child {
  position: absolute;
  display: inline-block;
  background: #FFF;
  top: -25px;
  padding: 10px;
  margin: 0;
  left: 30px;
  border: none;
}

.staticPage .individualBox *:first-child .kyokai,
.blogList .individualBox *:first-child .kyokai {
  color: #006404;
}

.staticPage .individualBox *:first-child .zoorasia,
.blogList .individualBox *:first-child .zoorasia {
  color: #688436;
}

.staticPage .individualBox *:first-child .nogeyama,
.blogList .individualBox *:first-child .nogeyama {
  color: #274EC0;
}

.staticPage .individualBox *:first-child .makigahara,
.blogList .individualBox *:first-child .makigahara {
  color: #274EC0;
}

.staticPage .individualBox *:first-child .kanazawa,
.blogList .individualBox *:first-child .kanazawa {
  color: #CD4600;
}

.staticPage .individualBox *:first-child .seiyoukan,
.blogList .individualBox *:first-child .seiyoukan {
  color: #A62557;
}

.staticPage .individualBox *:first-child .park,
.blogList .individualBox *:first-child .park {
  color: #165697;
}

.staticPage .individualBox h4,
.blogList .individualBox h4 {
  border-bottom: 1px solid #F8F8F8;
  display: inline-block;
}

.staticPage .individualBox address,
.blogList .individualBox address {
  font-style: normal;
  line-height: 1.5em;
  margin: 1em 0;
}

.staticPage .individualBox .note,
.blogList .individualBox .note {
  line-height: 1.5em;
  padding-left: 1.5em;
  position: relative;
}

.staticPage .individualBox .note:before,
.blogList .individualBox .note:before {
  content: '※';
  position: absolute;
  left: 0;
}

.staticPage .formGate,
.blogList .formGate {
  background: #F8F8F8;
  padding: 40px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .staticPage .formGate,
  .blogList .formGate {
    padding: 20px;
  }
}

.staticPage .formGate h3,
.blogList .formGate h3 {
  border-top: none;
  border-bottom: 1px solid #666;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}

.staticPage .formGate h3 span,
.blogList .formGate h3 span {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .staticPage .formGate h3,
  .blogList .formGate h3 {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
  }
}

.staticPage .formGate address,
.blogList .formGate address {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: bold;
  padding: 0 0 20px 0;
}

.staticPage .formGate address span,
.blogList .formGate address span {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .staticPage .formGate address span,
  .blogList .formGate address span {
    display: block;
  }
}

.staticPage .formGate address ul,
.blogList .formGate address ul {
  list-style: disc outside;
}

.staticPage .formGate address ul li,
.blogList .formGate address ul li {
  font-weight: bold;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.staticPage .formGate address ul li span,
.blogList .formGate address ul li span {
  display: block;
}

.staticPage .formGate address dl,
.blogList .formGate address dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.staticPage .formGate address dl dt,
.blogList .formGate address dl dt {
  width: calc(60% - 2rem);
  padding-left: 2rem;
  text-indent: -2rem;
}

.staticPage .formGate address dl dt:before,
.blogList .formGate address dl dt:before {
  content: '・';
}

@media screen and (max-width: 768px) {
  .staticPage .formGate address dl dt,
  .blogList .formGate address dl dt {
    width: calc(100% - 2rem);
  }
}

.staticPage .formGate address dl dd,
.blogList .formGate address dl dd {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .staticPage .formGate address dl dd,
  .blogList .formGate address dl dd {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0 0 1rem 2rem;
    border-bottom: 1px dashed #c9caca;
  }
}

.staticPage dl.contact_form_body,
.blogList dl.contact_form_body {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  border-top: 1px solid #EEE;
}

.staticPage dl.contact_form_body dt,
.blogList dl.contact_form_body dt {
  padding: 10px;
  position: relative;
  width: 28rem;
  background: #F8F8F8;
  border-bottom: 1px solid #EEE;
}

.staticPage dl.contact_form_body dt .required,
.blogList dl.contact_form_body dt .required {
  background: #b60005;
  color: #FFF;
  display: block;
  font-size: 1.0rem;
  position: absolute;
  font-weight: bold;
  line-height: 1.5rem;
  border-radius: 3px;
  right: 10px;
  top: 10px;
  padding: 3px;
}

@media screen and (max-width: 768px) {
  .staticPage dl.contact_form_body dt,
  .blogList dl.contact_form_body dt {
    width: 100%;
  }
}

.staticPage dl.contact_form_body dd,
.blogList dl.contact_form_body dd {
  width: calc(100% - 28rem);
  padding: 10px;
  border-bottom: 1px solid #EEE;
}

@media screen and (max-width: 768px) {
  .staticPage dl.contact_form_body dd,
  .blogList dl.contact_form_body dd {
    width: 100%;
  }
}

.staticPage .aform-radio-ul,
.blogList .aform-radio-ul {
  margin: 0;
  padding: 0;
}

.staticPage .aform-radio-ul:after,
.blogList .aform-radio-ul:after {
  clear: both;
  content: '';
  display: inline-block;
}

.staticPage .aform-radio-ul li,
.blogList .aform-radio-ul li {
  float: left;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.staticPage .aform-content,
.blogList .aform-content {
  border-top: 1px solid #EEE;
}

.staticPage .aform-content dl,
.blogList .aform-content dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  border-bottom: 1px solid #EEE;
  margin: 0;
  padding: 0;
}

.staticPage .aform-content dl dt,
.blogList .aform-content dl dt {
  padding: 10px;
  position: relative;
  width: 30rem;
  background: #F8F8F8;
  font-weight: normal;
}

.staticPage .aform-content dl dt .required,
.blogList .aform-content dl dt .required {
  background: #b60005;
  color: #FFF;
  display: block;
  font-size: 1.0rem;
  position: absolute;
  font-weight: bold;
  line-height: 1.5rem;
  border-radius: 3px;
  right: 10px;
  top: 10px;
  padding: 3px;
}

@media screen and (max-width: 768px) {
  .staticPage .aform-content dl dt,
  .blogList .aform-content dl dt {
    width: 100%;
  }
}

.staticPage .aform-content dl dd,
.blogList .aform-content dl dd {
  width: calc(100% - 30rem);
  padding: 10px;
  margin: 0;
}

.staticPage .aform-content dl dd .aform-name-ul,
.staticPage .aform-content dl dd .aform-kana-ul,
.blogList .aform-content dl dd .aform-name-ul,
.blogList .aform-content dl dd .aform-kana-ul {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.staticPage .aform-content dl dd .aform-name-ul li,
.staticPage .aform-content dl dd .aform-kana-ul li,
.blogList .aform-content dl dd .aform-name-ul li,
.blogList .aform-content dl dd .aform-kana-ul li {
  width: 40%;
  padding: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .staticPage .aform-content dl dd .aform-name-ul li,
  .staticPage .aform-content dl dd .aform-kana-ul li,
  .blogList .aform-content dl dd .aform-name-ul li,
  .blogList .aform-content dl dd .aform-kana-ul li {
    width: 100%;
  }
}

.staticPage .aform-content dl dd .aform-name-ul li label,
.staticPage .aform-content dl dd .aform-kana-ul li label,
.blogList .aform-content dl dd .aform-name-ul li label,
.blogList .aform-content dl dd .aform-kana-ul li label {
  padding-bottom: 10px;
  display: block;
}

@media screen and (max-width: 768px) {
  .staticPage .aform-content dl dd,
  .blogList .aform-content dl dd {
    width: 100%;
  }
}

.staticPage .aform-content .submit,
.blogList .aform-content .submit {
  background: none;
}

.staticPage .aform-content .submit ul,
.blogList .aform-content .submit ul {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.staticPage .aform-content .submit ul li,
.blogList .aform-content .submit ul li {
  width: 30%;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .staticPage .aform-content .submit ul li,
  .blogList .aform-content .submit ul li {
    width: 100%;
  }
}

.staticPage .aform-content .submit ul li input[type="submit"],
.staticPage .aform-content .submit ul li input[type="button"],
.blogList .aform-content .submit ul li input[type="submit"],
.blogList .aform-content .submit ul li input[type="button"] {
  width: 100% !important;
}

.staticPage .extra-bnr,
.blogList .extra-bnr {
  width: 800px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .staticPage .extra-bnr,
  .blogList .extra-bnr {
    width: 100%;
    display: block;
  }
}

.staticPage .extra-bnr li,
.blogList .extra-bnr li {
  width: 380px;
  height: 70px;
}

@media screen and (max-width: 768px) {
  .staticPage .extra-bnr li,
  .blogList .extra-bnr li {
    margin: 20px auto;
  }
}

.staticPage .extra-bnr li a,
.blogList .extra-bnr li a {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(22, 86, 151, 0.3);
  text-decoration: none;
}

.staticPage .extra-bnr li a figure,
.blogList .extra-bnr li a figure {
  border-radius: 5px;
  margin: 0;
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
}

.staticPage .extra-bnr li a figure img,
.blogList .extra-bnr li a figure img {
  idth: 100%;
  height: 100%;
  object-fit: cover;
}

.staticPage .extra-bnr li a .wrap,
.blogList .extra-bnr li a .wrap {
  width: 300px;
}

.staticPage .extra-bnr li a .wrap em:first-child,
.blogList .extra-bnr li a .wrap em:first-child {
  font-size: 2rem;
  letter-spacing: .1rem;
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: bold;
  color: #165697;
}

.staticPage .extra-bnr li a .wrap em:last-child,
.blogList .extra-bnr li a .wrap em:last-child {
  font-size: 1.4rem;
  display: block;
  background: #165697;
  color: #FFF;
  padding: 5px 10px;
  position: relative;
  font-style: normal;
  width: 250px;
  transform: translate(60px, 0px);
  text-align: center;
  transition: all .3s;
  line-height: 1.4rem;
}

.staticPage .extra-bnr li a .wrap em:last-child:before,
.blogList .extra-bnr li a .wrap em:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  border-style: solid;
  border-color: transparent transparent transparent #165697;
  border-width: 12px 0 12px 5px;
  z-index: 10;
}

.staticPage .extra-bnr li a .wrap em:last-child:after,
.blogList .extra-bnr li a .wrap em:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 12px 0px 12px 5px;
}

.staticPage .extra-bnr li a:hover .wrap em:last-child,
.blogList .extra-bnr li a:hover .wrap em:last-child {
  transform: translate(70px, 0px);
  transition: all .3s;
}

.staticPage .extra-explanation,
.blogList .extra-explanation {
  font-size: 1.2rem;
  color: #666;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  .staticPage .extra-explanation,
  .blogList .extra-explanation {
    width: calc(100% - 20px);
  }
}

.staticPage input,
.blogList input {
  padding: 5px;
  font-size: 1.6rem;
}

.staticPage input[type="text"], .staticPage input[type="tel"], .staticPage input[type="email"],
.blogList input[type="text"],
.blogList input[type="tel"],
.blogList input[type="email"] {
  border: 1px solid #EEE;
  border-radius: 3px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .staticPage input[type="text"], .staticPage input[type="tel"], .staticPage input[type="email"],
  .blogList input[type="text"],
  .blogList input[type="tel"],
  .blogList input[type="email"] {
    width: 100%;
  }
}

.staticPage input[type="submit"], .staticPage input[type="button"],
.blogList input[type="submit"],
.blogList input[type="button"] {
  display: block;
  width: 200px;
  margin: 0 auto !important;
  position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 10px 25px !important;
  text-decoration: none;
  border: none;
}

.kyokai .staticPage input[type="submit"], .kyokai .staticPage input[type="button"], .kyokai
.blogList input[type="submit"], .kyokai
.blogList input[type="button"] {
  background: #006404;
  color: #FFF !important;
}

.zoorasia .staticPage input[type="submit"], .zoorasia .staticPage input[type="button"], .zoorasia
.blogList input[type="submit"], .zoorasia
.blogList input[type="button"] {
  background: #688436;
  color: #FFF !important;
}

.nogeyama .staticPage input[type="submit"], .nogeyama .staticPage input[type="button"], .nogeyama
.blogList input[type="submit"], .nogeyama
.blogList input[type="button"] {
  background: #274EC0;
  color: #FFF !important;
}

.makigahara .staticPage input[type="submit"], .makigahara .staticPage input[type="button"], .makigahara
.blogList input[type="submit"], .makigahara
.blogList input[type="button"] {
  background: #274EC0;
  color: #FFF !important;
}

.kanazawa .staticPage input[type="submit"], .kanazawa .staticPage input[type="button"], .kanazawa
.blogList input[type="submit"], .kanazawa
.blogList input[type="button"] {
  background: #CD4600;
  color: #FFF !important;
}

.seiyoukan .staticPage input[type="submit"], .seiyoukan .staticPage input[type="button"], .seiyoukan
.blogList input[type="submit"], .seiyoukan
.blogList input[type="button"] {
  background: #A62557;
  color: #FFF !important;
}

.park .staticPage input[type="submit"], .park .staticPage input[type="button"], .park
.blogList input[type="submit"], .park
.blogList input[type="button"] {
  background: #165697;
  color: #FFF !important;
}

.kodomo .staticPage input[type="submit"], .kodomo .staticPage input[type="button"], .kodomo
.blogList input[type="submit"], .kodomo
.blogList input[type="button"] {
  background: #0F633D;
  color: #FFF !important;
}

.kyokai .staticPage input[type="submit"]:hover, .kyokai .staticPage input[type="button"]:hover, .kyokai
.blogList input[type="submit"]:hover, .kyokai
.blogList input[type="button"]:hover {
  background: #1D542C !important;
  color: #FFF !important;
}

.zoorasia .staticPage input[type="submit"]:hover, .zoorasia .staticPage input[type="button"]:hover, .zoorasia
.blogList input[type="submit"]:hover, .zoorasia
.blogList input[type="button"]:hover {
  background: #5A722D !important;
  color: #FFF !important;
}

.nogeyama .staticPage input[type="submit"]:hover, .nogeyama .staticPage input[type="button"]:hover, .nogeyama
.blogList input[type="submit"]:hover, .nogeyama
.blogList input[type="button"]:hover {
  background: #1F41A2 !important;
  color: #FFF !important;
}

.makigahara .staticPage input[type="submit"]:hover, .makigahara .staticPage input[type="button"]:hover, .makigahara
.blogList input[type="submit"]:hover, .makigahara
.blogList input[type="button"]:hover {
  background: #1F41A2 !important;
  color: #FFF !important;
}

.kanazawa .staticPage input[type="submit"]:hover, .kanazawa .staticPage input[type="button"]:hover, .kanazawa
.blogList input[type="submit"]:hover, .kanazawa
.blogList input[type="button"]:hover {
  background: #903302 !important;
  color: #FFF !important;
}

.seiyoukan .staticPage input[type="submit"]:hover, .seiyoukan .staticPage input[type="button"]:hover, .seiyoukan
.blogList input[type="submit"]:hover, .seiyoukan
.blogList input[type="button"]:hover {
  background: #90204E !important;
  color: #FFF !important;
}

.park .staticPage input[type="submit"]:hover, .park .staticPage input[type="button"]:hover, .park
.blogList input[type="submit"]:hover, .park
.blogList input[type="button"]:hover {
  background: #0D4D7D !important;
  color: #FFF !important;
}

.kodomo .staticPage input[type="submit"]:hover, .kodomo .staticPage input[type="button"]:hover, .kodomo
.blogList input[type="submit"]:hover, .kodomo
.blogList input[type="button"]:hover {
  background: #0F5332 !important;
  color: #FFF !important;
}

.staticPage input[type="submit"]:after, .staticPage input[type="button"]:after,
.blogList input[type="submit"]:after,
.blogList input[type="button"]:after {
  content: '';
  width: 10%;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0px;
  background: #FFF;
  transition: all .3s;
}

.staticPage input[type="submit"]:hover:after, .staticPage input[type="button"]:hover:after,
.blogList input[type="submit"]:hover:after,
.blogList input[type="button"]:hover:after {
  width: 5%;
  transition: all .2s;
}

.staticPage textarea,
.blogList textarea {
  border: 1px solid #EEE;
  border-radius: 3px;
  width: 100%;
}

.staticPage select,
.blogList select {
  font-size: 1.6rem;
  padding: 5px;
  border: 1px solid #EEE;
  height: 4rem;
  width: auto !important;
}

.staticPage .submitBtn,
.blogList .submitBtn {
  padding: 20px 0 0 0;
}

.staticPage div.wpcf7-validation-errors,
.blogList div.wpcf7-validation-errors {
  border: none !important;
  background: #b60005;
  color: #FFF;
}

.description_cnt {
  width: 1200px;
  margin: 40px auto;
  padding: 40px 0 0 0;
  border-top: 1px solid #F1F1F1;
}

@media screen and (max-width: 1200px) {
  .description_cnt {
    width: 100%;
    padding: 20px 10px 0 10px;
  }
}

.description_cnt p {
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}

.blogList ul {
  width: 1200px;
  margin: 0 auto;
}

.blogList ul li {
  border-bottom: 1px solid #F8F8F8;
}

.blogList ul li a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #000;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blogList ul li a .thumb {
  width: 240px;
  height: 160px;
  object-fit: cover;
  display: block;
}

.blogList ul li a .thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.blogList ul li a .date {
  display: block;
  width: calc(100% - 240px);
}

.blogList ul li a .site {
  display: block;
  width: calc(100% - 240px);
}

.blogList ul li a .tit {
  display: block;
  width: calc(100% - 240px);
  font-size: 1.8rem;
}

.blogList ul li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all .3s;
}

.localGate {
  width: 100%;
  height: 400px;
  padding: 50px 0;
}

.localGate.hakubuntei {
  background: url("../images/kyokai/localGate_hakubuntei.jpg") no-repeat center center;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .localGate.hakubuntei {
    background: url("../images/kyokai/localGate_hakubuntei.jpg") no-repeat center center;
    background-size: auto 100%;
  }
}

.localGate.kyakuden {
  height: 500px;
  background: url("/park/gongenyama/tvkcoms/localGate_kyakuden.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 768px) {
  .localGate.kyakuden {
    background: url("/park/gongenyama/tvkcoms/localGate_kyakuden.jpg") no-repeat center center;
    background-size: auto 100%;
  }
}

.localGate nav {
  background: rgba(255, 255, 255, 0.6);
  width: 1200px;
  padding: 100px;
  margin: 0 auto;
}

.gongenyama .localGate nav {
  position: absolute;
  padding: 0;
  width: 1120px;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
}

@media screen and (max-width: 768px) {
  .gongenyama .localGate nav {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .localGate nav {
    width: calc(100% - 40px);
    height: auto;
    padding: 20px;
  }
}

.localGate nav ul {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gongenyama .localGate nav ul {
  width: 100%;
  height: 100%;
}

.localGate nav ul li {
  width: 33.25%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .localGate nav ul li {
    height: auto;
    margin-bottom: 1px;
  }
}

.localGate nav ul li a {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 100px;
  position: relative;
  background: #FFF;
  color: #000;
  font-size: 1.8rem;
}

.gongenyama .localGate nav ul li a {
  line-height: 80px;
}

@media screen and (max-width: 768px) {
  .gongenyama .localGate nav ul li a {
    font-size: 1.4rem;
  }
}

.localGate nav ul li a:before {
  content: '';
  width: 100%;
  height: 0px;
  background: #165697;
  transition: all .2s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.gongenyama .localGate nav ul li a:before {
  height: 2px;
}

.localGate nav ul li a:after {
  position: absolute;
  right: 30px;
  top: calc(50% - 5px);
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #165697;
  border-bottom: 2px solid #165697;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .2s;
}

.gongenyama .localGate nav ul li a:after {
  right: calc(50% - 10px);
  top: calc(100% - 25px);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.localGate nav ul li a:hover:before {
  content: '';
  width: 100%;
  height: 5px;
  background: #165697;
  transition: all .2s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.localGate nav ul li a:hover:after {
  right: 20px;
  transition: all .2s;
}

.gongenyama .localGate nav ul li a:hover:after {
  right: calc(50% - 10px);
  top: calc(100% - 20px);
}

.block-wrap {
  padding: 20px 40px 40px;
  border-radius: 5px;
  margin: 30px 0;
  background: #E9F0F3;
}

@media screen and (max-width: 768px) {
  .block-wrap {
    padding: 1px 20px 20px;
  }
}

.block-wrap .double_flex:first-child {
  background: #FFF;
  padding: 0 40px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .block-wrap .double_flex:first-child {
    padding: 0 20px;
  }
}

.block-wrap .double_flex.valign-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#next_prev {
  margin: 0 auto;
  padding: 60px 0;
}

#next_prev .btn_wrap {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#next_prev .btn_wrap a {
  display: block;
  width: 180px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: relative;
  color: #000;
  transition: all .3s;
}

#next_prev .btn_wrap a:hover {
  text-decoration: underline;
  transition: all .3s;
}

.kyokai #next_prev .btn_wrap a:hover {
  color: #006404;
}

.zoorasia #next_prev .btn_wrap a:hover {
  color: #688436;
}

.nogeyama #next_prev .btn_wrap a:hover {
  color: #274EC0;
}

.makigahara #next_prev .btn_wrap a:hover {
  color: #274EC0;
}

.kanazawa #next_prev .btn_wrap a:hover {
  color: #CD4600;
}

.seiyoukan #next_prev .btn_wrap a:hover {
  color: #A62557;
}

.park #next_prev .btn_wrap a:hover {
  color: #165697;
}

#next_prev .btn_wrap a.link_prev:after {
  font-family: icomoon;
  content: "\e95f";
  font-size: 1.8rem;
  bottom: 0;
  left: 2px;
  position: absolute;
  transition: all .3s;
}

#next_prev .btn_wrap a.link_prev:hover:after {
  left: 0;
  transition: all .3s;
}

#next_prev .btn_wrap a.link_next:after {
  font-family: icomoon;
  content: "\e961";
  font-size: 1.8rem;
  bottom: 0;
  right: 2px;
  position: absolute;
  transition: all .3s;
}

#next_prev .btn_wrap a.link_next:hover:after {
  right: 0;
  transition: all .3s;
}

.faqCnt .faqLinks {
  margin-bottom: 20px;
}

.faqCnt .faqLinks h2 {
  padding: 0;
  background: none;
  border: none;
  font-size: 1.8rem;
  margin: 0;
}

.faqCnt .faqLinks ul {
  border-bottom: 1px solid #F8F8F8;
  padding: 20px;
  margin: 0 0 20px 0;
}

.faqCnt .faqLinks ul li {
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
}

.faqCnt .faqLinks ul li:before {
  content: 'Q.';
  position: absolute;
  left: 0;
}

.faqCnt .qandaBox {
  padding: 40px;
  margin-bottom: 40px;
  background: #F8F8F8;
  transition: all .2s;
}

@media screen and (max-width: 768px) {
  .faqCnt .qandaBox {
    margin-bottom: 20px;
    padding: 20px;
  }
}

.faqCnt .qandaBox:hover {
  transition: all .2s;
}

.kyokai .faqCnt .qandaBox:hover {
  background: #E4EFE4;
}

.zoorasia .faqCnt .qandaBox:hover {
  background: #EFF3E8;
}

.nogeyama .faqCnt .qandaBox:hover {
  background: #EBF3F7;
}

.makigahara .faqCnt .qandaBox:hover {
  background: #EBF3F7;
}

.kanazawa .faqCnt .qandaBox:hover {
  background: #F9F2EF;
}

.seiyoukan .faqCnt .qandaBox:hover {
  background: #F7F4F0;
}

.park .faqCnt .qandaBox:hover {
  background: #E9F0F3;
}

.faqCnt .qandaBox p {
  position: relative;
  padding-left: 1.5em;
}

.faqCnt .qandaBox p:first-child {
  margin: 0 0 10px 0;
  font-weight: bold;
}

.faqCnt .qandaBox p:first-child:before {
  content: 'Q.';
  position: absolute;
  left: 0;
}

.faqCnt .qandaBox p:last-child {
  margin: 0;
}

.faqCnt .qandaBox p:last-child:before {
  content: 'A.';
  position: absolute;
  left: 0;
}

.plantCnt {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-top: 1px solid #F8F8F8;
}

.plantCnt .plantBox {
  width: 50%;
  padding: 20px;
  border-bottom: 1px solid #F8F8F8;
  border-left: 1px solid #F8F8F8;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.plantCnt .plantBox:nth-child(even), .plantCnt .plantBox:last-child {
  border-right: 1px solid #F8F8F8;
}

@media screen and (max-width: 1200px) {
  .plantCnt .plantBox {
    width: 100%;
    padding: 20px;
    border: 1px solid #F8F8F8;
    border-top: none;
  }
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox {
    width: 100%;
    padding: 10px;
    border: 1px solid #F8F8F8;
    border-top: none;
  }
}

.plantCnt .plantBox .thumb {
  width: 230px;
  height: 230px;
  margin: 0 20px 0 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .thumb {
    width: 150px;
    height: 150px;
    margin: 0 10px 0 0;
  }
}

.plantCnt .plantBox .thumb img {
  width: 230px;
  height: 230px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .thumb img {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }
}

.plantCnt .plantBox .wrap {
  width: calc(100% - 250px);
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .wrap {
    width: calc(100% - 160px);
  }
}

.plantCnt .plantBox .wrap h2 {
  margin: 0 0 20px 0;
  padding: 0;
  background: none;
  border: none;
  letter-spacing: .1rem;
  position: relative;
}

.kyokai .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #E4EFE4 50%);
}

.zoorasia .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #EFF3E8 50%);
}

.nogeyama .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #EBF3F7 50%);
}

.makigahara .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #EBF3F7 50%);
}

.kanazawa .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #F9F2EF 50%);
}

.seiyoukan .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #F7F4F0 50%);
}

.park .plantCnt .plantBox .wrap h2 {
  background: linear-gradient(transparent 50%, #E9F0F3 50%);
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .wrap h2 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
  }
}

.plantCnt .plantBox .wrap p {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .wrap p {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
  }
}

.plantCnt .plantBox .wrap dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  font-size: 1.3rem;
  border: 1px solid #F8F8F8;
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .wrap dl {
    font-size: 1.2rem;
  }
}

.plantCnt .plantBox .wrap dl dt {
  width: 9rem;
  background: #F8F8F8;
  padding: 10px;
  line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .wrap dl dt {
    width: 100%;
  }
}

.plantCnt .plantBox .wrap dl dd {
  width: calc(100% - 9rem);
  padding: 10px;
  line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
  .plantCnt .plantBox .wrap dl dd {
    width: 100%;
  }
}

#serchBox .selectNav {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px;
}

.go_form {
  background: #F9F9F9;
  padding: 40px;
  border-radius: 3px;
}

.go_form a {
  margin: 0 auto;
}

.linkForm {
  border-top: 1px solid #F0F0F0;
  padding: 40px;
}

.linkForm p {
  text-align: center;
}

.aside_event_list {
  margin-bottom: 40px;
}

.aside_event_list:last-child {
  margin: 0;
}

.aside_blog_list {
  margin: 0;
  display: none;
}

.aside_blog_list:last-child {
  margin-bottom: 40px;
}

.center {
  text-align: center;
}

.flexCol2 {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
}

.flexCol2 .img_lft,
.flexCol2 .img_rgt {
  width: 50%;
}

.flexCol2 .img_lft img,
.flexCol2 .img_rgt img {
  width: 100%;
  margin: 0 0 15px 0;
}

.flexCol2 .w50per {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .flexCol2 .w50per {
    width: 100%;
  }
}

.flexCol2 .w50per img {
  width: calc(100% - 20px);
}

@media screen and (max-width: 768px) {
  .flexCol2 .w50per img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.imgCol2 {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.imgCol2 div {
  width: calc(50% - 20px);
  height: auto;
}

@media screen and (max-width: 768px) {
  .imgCol2 div {
    width: 100%;
  }
}

.imgCol2 div img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.imgCol2 div p {
  margin: 10px 0;
}

.volunteerCnt dl {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.volunteerCnt dl dt {
  width: 25rem;
  padding-left: 2rem;
  text-indent: -2rem;
  font-weight: bold;
}

.volunteerCnt dl dt:before {
  content: '・';
}

.volunteerCnt dl dd {
  width: calc(100% - 25rem);
}

#weeklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 1200px;
  margin: 40px auto 0;
}

@media screen and (max-width: 1200px) {
  #weeklist {
    width: 100%;
  }
}

#weeklist li {
  width: 12.5%;
}

#weeklist li a {
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1e1e1;
  border-right: 1px solid #FFF;
  background: #FFF;
}

#weeklist li a#keyEvery {
  border-radius: 3px 0 0 3px;
  color: #c759c1 !important;
}

#weeklist li a#keyMon {
  color: #287dc2 !important;
}

#weeklist li a#keyTue {
  color: #f59000 !important;
}

#weeklist li a#keyWed {
  color: #29b3e6 !important;
}

#weeklist li a#keyThu {
  color: #65c430 !important;
}

#weeklist li a#keyFri {
  color: #9fa930 !important;
}

#weeklist li a#keySat {
  color: #ac6a1d !important;
}

#weeklist li a#keySun {
  border-radius: 0 3px 3px 0;
  color: #dd0311 !important;
  border-right: 1px solid #e1e1e1;
}

#weeklist li a#keyEvery:hover {
  border-radius: 3px 0 0 3px;
  border-color: #c759c1 !important;
}

#weeklist li a#keyMon:hover {
  border-color: #287dc2 !important;
}

#weeklist li a#keyTue:hover {
  border-color: #f59000 !important;
}

#weeklist li a#keyWed:hover {
  border-color: #29b3e6 !important;
}

#weeklist li a#keyThu:hover {
  border-color: #65c430 !important;
}

#weeklist li a#keyFri:hover {
  border-color: #9fa930 !important;
}

#weeklist li a#keySat:hover {
  border-color: #ac6a1d !important;
}

#weeklist li a#keySun:hover {
  border-radius: 0 3px 3px 0;
  border-color: #dd0311 !important;
}

#weeklist li a#keyEvery:active,
#weeklist li a#keyEvery.clicked {
  border-radius: 3px 0 0 3px;
  background: #c759c1 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keyMon:active,
#weeklist li a#keyMon.clicked {
  background: #287dc2 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keyTue:active,
#weeklist li a#keyTue.clicked {
  background: #f59000 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keyWed:active,
#weeklist li a#keyWed.clicked {
  background: #29b3e6 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keyThu:active,
#weeklist li a#keyThu.clicked {
  background: #65c430 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keyFri:active,
#weeklist li a#keyFri.clicked {
  background: #9fa930 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keySat:active,
#weeklist li a#keySat.clicked {
  background: #ac6a1d !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

#weeklist li a#keySun:active,
#weeklist li a#keySun.clicked {
  border-radius: 0 3px 3px 0;
  background: #dd0311 !important;
  color: #FFF !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) inset;
}

span.nolink {
  display: block;
  text-align: center;
  line-height: 40px;
  background: #FFF;
  border: 1px solid #e1e1e1;
  border-right: none;
  color: #EEE;
}

.event_list ul li a.every:after {
  content: url(../images/tag_every.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.sun:after {
  content: url(../images/tag_sun.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.mon:after {
  content: url(../images/tag_mon.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.tue:after {
  content: url(../images/tag_tue.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.wed:after {
  content: url(../images/tag_wed.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.thu:after {
  content: url(../images/tag_thu.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.fri:after {
  content: url(../images/tag_fri.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.sat:after {
  content: url(../images/tag_sat.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.event_list ul li a.every:after {
  content: url(../images/tag_every.png);
  position: absolute;
  right: 10px;
  top: -5px;
}

.img_lft {
  width: 48%;
  float: left;
  margin: 1% 4% 2% 0;
}

.img_rgt {
  width: 48%;
  float: right;
  margin: 3.5% 0 2% 4%;
}

.img_lft img,
.img_rgt img {
  width: 100%;
  margin-bottom: 10px;
}

.img_lft p,
.img_rgt p {
  margin: 0;
  padding: 0;
}

@media (max-width: 599px) {
  .img_lft {
    width: 100%;
    float: none;
    margin: 0 0 1% 0;
  }
  .img_rgt {
    width: 100%;
    float: none;
    margin: 0 0 1% 0;
  }
  .img_lft img {
    width: 100%;
  }
  .img_rgt img {
    width: 100%;
  }
}

.kodomo .button a {
  color: #FFF !important;
  background-color: #0F633D;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;

}


.kyokai .button a {
  color: #FFF !important;
  background-color: #006404;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.zoo .button a {
  color: #FFF !important;
  background-color: #87712B;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.zoorasia .button a {
  color: #FFF !important;
  background-color: #688436;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.nogeyama .button a {
  color: #FFF !important;
  background-color: #274EC0;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.makigahara .button a {
  color: #FFF !important;
  background-color: #274EC0;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.kanazawa .button a {
  color: #FFF !important;
  background-color: #CD4600;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.seiyoukan .button a {
  color: #FFF !important;
  background-color: #A62557;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}



.park .button a {
  color: #FFF !important;
  background-color: #165697;
    position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}




a.button {
  position: relative;
  border-radius: 3px;
  /*line-height: 52px;*/
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 10px 25px !important;
  margin: 0 10px;
  　text-decoration: none;
}

.kyokai a.button {
  background: #006404;
  color: #FFF !important;
}

.zoo a.button {
  background: #87712B;
  color: #FFF !important;
}

.zoorasia a.button {
  background: #688436;
  color: #FFF !important;
}

.nogeyama a.button {
  background: #274EC0;
  color: #FFF !important;
}

.makigahara a.button {
  background: #274EC0;
  color: #FFF !important;
}

.kanazawa a.button {
  background: #CD4600;
  color: #FFF !important;
}

.seiyoukan a.button {
  background: #A62557;
  color: #FFF !important;
}

.park a.button {
  background: #165697;
  color: #FFF !important;
}

.kodomo a.button {
  background: #0F633D;
  color: #FFF !important;
}

.kyokai a.button:hover {
  background: #1D542C !important;
  color: #FFF !important;
}

.zoo a.button:hover {
  background: #6F5C24 !important;
  color: #FFF !important;
}

.zoorasia a.button:hover {
  background: #5A722D !important;
  color: #FFF !important;
}

.nogeyama a.button:hover {
  background: #1F41A2 !important;
  color: #FFF !important;
}

.makigahara a.button:hover {
  background: #1F41A2 !important;
  color: #FFF !important;
}

.kanazawa a.button:hover {
  background: #903302 !important;
  color: #FFF !important;
}

.seiyoukan a.button:hover {
  background: #90204E !important;
  color: #FFF !important;
}

.park a.button:hover {
  background: #0D4D7D !important;
  color: #FFF !important;
}

.kodomo a.button:hover {
  background: #0F5332 !important;
  color: #FFF !important;
}

@media (max-width: 599px) {
  a.button {
    display: block;
    text-align: center;
    margin: 10px;
  }
}

a.button:active {
  top: 3px;
  box-shadow: none !important;
}

a.button:after {
  font-family: icomoon;
  content: "\e956";
  font-size: 14px;
  padding-left: 20px;
}

a.button.btn_pdf:after {
  font-family: icomoon;
  content: "" !important;
  font-size: 3rem;
  padding-left: 20px;
}

.button_list li {
  list-style-type: none !important;
  margin-bottom: 2em !important;
  width: 50%;
  float: left;
}

.double_flex {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.double_flex .half_img {
  width: calc(50% - 10px);
}

@media screen and (max-width: 768px) {
  .double_flex .half_img {
    width: 100%;
  }
}

.double_flex .half_img img {
  width: 100%;
  margin: 0;
}

.double_flex .half_img p {
  margin: 10px 0;
}

.double_flex.valign-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quadruple_flex {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quadruple_flex figure {
  width: calc((100% - 60px) / 4);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .quadruple_flex figure {
    width: 100%;
  }
}

.quadruple_flex figure a {
  display: block;
}

.quadruple_flex figure img {
  width: 100%;
  height: auto;
}

.quadruple_flex figure figcaption a {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: bold;
  padding: 10px;
  margin: 10px 0;
  color: #FFF;
  background: #B55138;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.quadruple_flex figure figcaption a:hover {
  background: #FFF;
  color: #B55138;
  border: 1px solid #B55138;
}

.quadruple_flex figure figcaption a span {
  font-size: 1rem;
}

.quadruple_flex figure p {
  margin: 10px 0;
}

/**/
.half_table img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.event_cnt .half_table p {
  margin: 0;
  padding: 0;
}

.half_table {
  width: 48%;
  margin-right: 4%;
}

.half_table:nth-child(even) {
  margin-right: 0;
}

.event_cnt.static .half_table table {
  table-layout: auto;
}

.half_table table tr td:first-child {
  white-space: nowrap;
}

.bus .tbody tr td:nth-child(2) {
  background: #ffcccc;
}

.bus .tbody tr td:nth-child(3) {
  background: #c0e6e6;
}

@media (max-width: 599px) {
  .double_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .half_table {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

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

.slider-for .slick-slide div div {
  width: 1200px;
  height: 600px;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .slider-for .slick-slide div div {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .slider-for .slick-slide div div {
    background: #000;
  }
}

.slider-for .slick-slide div div img {
  width: auto;
  height: 600px;
  object-fit: cover;
  display: block;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .slider-for .slick-slide div div img {
    width: auto;
    height: 300px;
    object-fit: cover;
  }
}

.slider-nav {
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .slider-nav {
    padding: 10px 0;
  }
}

.slider-nav .slick-track {
  display: flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: nowrap;
  /* Safari */
  flex-wrap: nowrap;
}

.slider-nav .slick-track .slick-slide {
  width: 200px;
  margin: 0 10px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .slider-nav .slick-track .slick-slide {
    margin: 0 5px;
    width: 100px;
    height: 70px;
  }
}

.slider-nav .slick-track .slick-slide div div {
  background: #000;
}

.slider-nav .slick-track .slick-slide img {
  width: auto;
  height: 100px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .slider-nav .slick-track .slick-slide img {
    width: auto;
    height: 70px;
    object-fit: cover;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.outlineArea img {
  width: 100%;
}

.outlineArea h2 {
  border: none !important;
  background: none;
  font-weight: bold;
  color: #B55138;
  font-size: 2.4rem;
  padding: 15px 0 0 0;
}

.outlineArea h2:before {
  display: none;
}

.outlineArea h3 {
  border: none !important;
  color: #B55138;
  font-weight: bold;
  position: relative;
  padding: 0 !important;
}

.outlineArea h3 span {
  display: inline-block;
  background: #FFF !important;
  position: relative;
  z-index: 3;
  padding: 0 20px 0 0;
}

.outlineArea h3:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #B55138;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: 2;
}

.outlineArea p.bold {
  font-size: 1.6rem;
  font-weight: bold;
}

.outlineArea .doublebox {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.outlineArea .doublebox .txt {
  width: calc(50% - 10px);
}

@media screen and (max-width: 768px) {
  .outlineArea .doublebox .txt {
    width: 100%;
    order: 2;
  }
}

.outlineArea .doublebox .photo {
  width: calc(50% - 10px);
}

@media screen and (max-width: 768px) {
  .outlineArea .doublebox .photo {
    width: 100%;
    order: 1;
  }
}

.tableScroll {
  overflow-x: auto;
}

.sdgsTable {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sdgsTable {
    width: 200% !important;
  }
}

.sdgsTable span {
  display: block;
  text-align: center;
}

.sdgsTable .iconFlex {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  width: 220px;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .sdgsTable .iconFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 110px;
  }
}

.sdgsTable .iconFlex span {
  display: block;
  width: 100px;
  height: 100px;
  margin: 5px;
}

.sdgsTable .iconFlex span img {
  width: 100%;
}

.sdgsTable .iconFlexSingle {
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  width: 220px;
  overflow: visible;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .sdgsTable .iconFlexSingle {
    width: 110px;
  }
}

.sdgsTable .iconFlexSingle span {
  display: block;
  width: 100px;
  height: 100px;
  margin: 5px auto;
}

.sdgsTable .iconFlexSingle span img {
  width: 100%;
}
