@charset "utf-8";
/* CSS Document */
/* /////////////////////////////// リセット / ノーマライズ / サニタイズ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* /////////////////////////////// 共通設定 */
body {
  background: #FDFDFD;
  line-height: 1.75;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #141414;
}
@media screen and (max-width: 480px) {
  body {
    min-width: initial;
  }
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .sp-no {
    display: block;
  }
  .pc-no {
    display: none;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
  .sp-no {
    display: none;
  }
  .pc-no {
    display: block;
  }
}
/*画像*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
/*文字*/
/* p:not(:first-child) {
  margin-top: 20px;
} */
/* /////////////////////////////// ヘッダー */
header {
  background-color: #CBEDFF;
}
.header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 16px;
}
@media print, screen and (min-width: 1000px) {
  .header_top {
    justify-content: space-between;
    padding: 20px 0;
  }
  .openbtn {
    display: none;
  }
  .header_pc {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .logo img {
    height: auto;
  }
}
@media screen and (max-width: 999px) {
  .header_sp {
    padding-left: 16px;
    padding-right: 16px;
    height: 70px;
}
}
@media screen and (max-width: 767px) {
  .header_sp {
    padding-left: 4%;
    padding-right: 4%;
  }
}
/* /////////////////////////////// ヒーロー */
.mv {
  background-color: #CBEDFF;
}
.mv_title {
  padding: 30px 4%;
  text-align: center;
}
.mv_img img {
  width: 100%;
}
@media print, screen and (min-width: 1000px) {
  .mv_title {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 60px 0 0;
  }
  .mv:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/mv_tree_left.png"), url("../images/mv_tree_right.png");
    background-repeat: no-repeat;
    background-position: left top, right top;
    z-index: 1;
  }
  .mv {
    position: relative;
  }
}
/* /////////////////////////////// ナビゲーション */
#g-nav {
  font-weight: normal;
  line-height: 1;
  margin-left: auto;
}
@media (min-width: 1000px) {
  #g-nav ul {
    z-index: 999;
    display: flex;
    justify-content: space-between;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
  }
  #g-nav li {
    line-height: 1;
    position: relative;
    letter-spacing: 0.05rem;
    text-align: center;
    white-space: nowrap;
    flex-grow: 1;
  }
  #g-nav li:last-child::after {
    width: 0;
  }
  #g-nav li a {
    display: block;
    padding: 20px 1.3vw;
    color: #141414;
    position: relative;
    transition: .3s;
  }
  #g-nav li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 4px;
    background-color: #fff;
    transition: .3s;
  }
  #g-nav li a:hover {
    font-weight: bold;
  }
  #g-nav li a:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  /*アクティブになったエリア*/
  #g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #3EB134;
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s; /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none; /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    display: block; /*クラスが付与されたら出現*/
  }
  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    padding-bottom: 10vh;
    width: 80%;
  }
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
  }
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s; /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
    padding: 10px 0;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= ボタンのためのCSS ===============*/
@media screen and (max-width: 999px) {
  .openbtn {
    /*position: absolute;
    top: 10px;
    right: 10px;*/
    position: relative;
    z-index: 9999; /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #3EB134;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* /////////////////////////////// コンテンツ */
/*共通見出し設定*/
.head_alphabet {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 4px;
}
.head_alphabet span {
  display: block;
  font-size: 0.75rem;
  color: #3EB134;
}
.head_article {
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.head_fill {
  background-color: #F8F5E8;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 10px;
}
* + .head_fill {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .head_alphabet {
    font-size: 2rem;
  }
  .head_alphabet span {
    font-size: 1.125rem;
  }
}
/*ボタン設定*/
.btn {
  width: 320px;
  margin: 40px auto 0;
  background-color: #3EB134;
  border-radius: 999px;
}
.btn a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 10px;
}
/*カラム設定*/
.col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.col2 > li + li {
  margin-top: 30px;
}
.col2 > li p {
  margin-top: 10px;
}
.col3 img {
  width: 100%;
}
.col3_title, .col2_title {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .col3 {
    flex-direction: column;
    justify-content: center;
  }
  .col3 > li {
    width: 100%;
    padding: 0;
  }
  .col3 > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .col3 > li:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .col2 > li {
    width: calc((100% - 30px) / 2);
    margin-top: 30px;
  }
  .col3 > li {
    margin-bottom: 0;
  }
  .col3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .col3 > li, .col3 > div {
    width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
  }
  .col3 > li img {
    width: 100%;
    object-fit: cover;
  }
}
/*動画*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*Gmap*/
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-top: 30px;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/*TOPコンテンツ*/
.top_lead h2 {
  text-align: center;
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: 6px;
}
.top_news {
  background-color: #F8F5E8;
  background-image: url("../images/bg_town.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 40px 0;
}
.news_list li > a {
  display: block;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
.news_list li {
  border-bottom: 1px solid #C9C5B4;
}
.news_date, .event_date {
  font-size: 0.875rem;
  padding-bottom: 0.3em;
  color: #3EB134;
}
.event_date {
  margin-top: 10px;
}
.event_title {
  font-weight: bold;
}
.top_about {
  background-color: #F8F5E8;
  padding: 40px 0;
}
@media print, screen and (min-width: 768px) {
  .top_lead h2 {
    font-size: 2.625rem;
  }
  .top_lead h2 + p {
    text-align: center;
    font-size: 1.125rem;
    line-height: 2.5;
  }
  .news_list li a {
    display: flex;
    align-items: center;
  }
  .news_date {
    padding-bottom: 0;
  }
  .news_title {
    margin-left: 50px;
  }
}
/*bl_media*/
.bl_media h3 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.bl_media_img {
  margin-top: 20px;
}
.bl_media + .bl_media {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .bl_media {
    display: flex;
  }
  .bl_media.reverse {
    flex-direction: row-reverse;
  }
  .bl_media_img {
    flex: 0 0 400px;
    margin-top: 0;
    margin-left: 50px;
  }
  .bl_media.reverse .bl_media_img {
    margin-left: 0;
    margin-right: 50px;
  }
  .bl_media + .bl_media {
    margin-top: 60px;
  }
}
/*お知らせページ・イベントページ*/
.sub_mv {
  background-color: #CBEDFF;
  width: 100%;
}
.sub_mv .inner {
  position: relative;
}
.sub_mv_img img {
  width: 100%;
}
.sub_mv_title {
  position: absolute;
  left: 4%;
  display: inline-block;
  font-weight: bold;
  font-size: 1.875rem;
  border-bottom: 4px solid #fff;
  letter-spacing: 4px;
}
article figure {
  text-align: center;
  margin: 30px 0;
}
article a {
  text-decoration: underline;
}
article .news_date {
  margin-bottom: 30px;
}
article p + p {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .sub_mv_title {
    font-size: 2.75rem;
    top: 30px;
    left: 16px;
  }
}
/* /////////////////////////////// フッター */
footer {
  background-color: #333;
  color: #fff;
}
footer h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer_inner {
  padding: 0 4%;
  max-width: 1000px;
  margin: 0 auto;
}
.footer_nav {
  display: none;
}
.copyright {
  margin-top: 20px;
  padding-bottom: 10px;
  text-align: center;
}
.copyright p {
  font-size: 0.8125rem;
  letter-spacing: 1px;
}
.footer_logo img {
  width: 300px;
  margin: 0 auto;
}
.footer_logo {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .footer_logo {
    margin-right: 20px;
    margin-top: 0;
  }
}
/* /////////////////////////////// テーブル */
table {
  width: 100%;
}
p + table, h3 + table {
  margin-top: 30px;
}
/*@media screen and (max-width: 767px) {
  .table_line th, .table_line td {
    width: 100%;
    display: block;
  }
}*/
/*table_underline*/
.table_underline th, .table_underline td {
  padding: 10px;
}
.table_underline th {
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
}
@media (max-width: 768px) {
  .table_underline th {
    border-bottom: 1px solid #C9C5B4;
  }
  .table_underline th, .table_underline td {
    display: block;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .table_underline th, .table_underline td {
    border-bottom: 1px solid #C9C5B4;
  }
  .table_underline th {
    width: 30%;
    padding-left: 1em;
  }
}
/*table_fill*/
.table_fill th, .table_fill td {
  border: none;
  background: inherit;
  font-size: 0.9375rem;
  padding: 14px;
  vertical-align: top;
}
.table_fill th {
  border-top: 1px solid #3EB134;
  border-left: 1px solid #3EB134;
  border-bottom: 1px solid #fff;
  background-color: #3EB134;
  color: #fff;
  text-align: left;
}
.table_fill td {
  border: 1px solid #3EB134;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .table_fill th {
    width: 30%;
  }
  .table_fill td {
    padding: 10px;
  }
}
/* /////////////////////////////// コンテンツ */
/* セクション */
section, article {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  section, article {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}