@charset "UTF-8";

/* ------------------------------
　　ベース
------------------------------ */
body {
  color: #4c4c4c;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-size: 17px;
  line-height: 180%;
}

*:focus {
  outline: none;
}

/* リンクの設定 */
a {
  color: #47a270;
  text-decoration: none;
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

p a {
  text-decoration: underline;
}

a:visited {
  color: #47a270;
  text-decoration: none;
}

a:active {
  color: #47a270;
  text-decoration: none;
}

a:hover {
  color: #47a270;
  text-decoration: underline;
}

/* コンテナー */
.acms-container {
  max-width: 1000px;
  padding-right: 10px;
  padding-left: 10px;
  padding-right: calc(10px + constant(safe-area-inset-right));
  padding-left: calc(10px + constant(safe-area-inset-left));
}

.acms-container .acms-container {
  padding: 0;
}

.narrow-container {
  max-width: 980px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  padding-right: calc(10px + constant(safe-area-inset-right));
  padding-left: calc(10px + constant(safe-area-inset-left));
}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 160%;
  }

  .acms-container {
    width: 95%;
    padding-right: 0;
    padding-left: 0;
  }

  .body_width {
    width: 95%;
  }
}

/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  20% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  20% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  20% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: translate(0);
    opacity: 1;
  }
}

.js .js-animation .section-heading,
.js .js-animation .entry-heading-center {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.2s ease-out, transform 0.4s ease-out;
}

.js .js-animation .module-group-list,
.js .js-animation .entry-column,
.js .js-animation .module-section,
.js .js-animation .suggest-center-box {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.2s ease-out 0.4s, transform 0.4s ease-out 0.4s;
}

.js .js-animation .main-slider-text-wrap {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.2s ease-out 0.6s, transform 0.4s ease-out 0.6s;
}

.js-animation.is-show .section-heading,
.js-animation.is-show .entry-heading-center {
  opacity: 1;
  transform: translate(0);
}

.js-animation.is-show .module-group-list,
.js-animation.is-show .entry-column,
.js-animation.is-show .module-section,
.js-animation.is-show .suggest-center-box {
  opacity: 1;
  transform: translate(0);
}

.js-animation.is-show .main-slider-text-wrap {
  opacity: 1;
  transform: translate(0);
}

/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0 -10px 10px;
  padding: 0;
  list-style: none;
}

.banner a {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

.banner a:hover {
  opacity: 0.75;
}

.banner-item {
  margin: 0 0 10px 0;
}

.banner-img-center {
  margin: 0 auto;
}

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  background: #666;
  border: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}

.btn:hover,
.btn:visited {
  color: #fff;
  text-decoration: none;
}

.btn:focus,
.btn:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn:hover {
  color: #fff;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}

.btn:active,
.btn:focus {
  background: #444;
}

/* ボタン　色付き */
.btn-attention {
  background: #47a270;
  border: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}

.btn-attention:hover,
.btn-attention:visited {
  color: #fff;
  text-decoration: none;
}

.btn-attention:focus,
.btn-attention:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention:hover {
  color: #fff;
  background-color: #47a270;
  background-image: linear-gradient(to bottom, #47a270, #47a270);
}

.btn-attention:active,
.btn-attention:focus {
  background: #47a270;
}

/* ボタンサイズ大 */
.btn-large {
  background: #666;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-large:hover,
.btn-large:visited {
  color: #fff;
  text-decoration: none;
}

.btn-large:focus,
.btn-large:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-large:hover {
  background: #444;
}

.btn-large:active,
.btn-large:focus {
  background: #444;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #47a270;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-attention-large:hover,
.btn-attention-large:visited {
  color: #fff;
  text-decoration: none;
}

.btn-attention-large:focus,
.btn-attention-large:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention-large:hover {
  background: #47a270;
}

.btn-attention-large:active,
.btn-attention-large:focus {
  background: #47a270;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  width: 100%;
  background: #666;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-block-large:hover,
.btn-block-large:visited {
  color: #fff;
  text-decoration: none;
}

.btn-block-large:focus,
.btn-block-large:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-block-large:hover {
  background: #444;
}

.btn-block-large:active,
.btn-block-large:focus {
  background: #444;
}

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
  width: 100%;
  background: #47a270;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
  border: solid 3px #fff;
}

.btn-attention-block-large:hover,
.btn-attention-block-large:visited {
  color: #fff;
  text-decoration: none;
}

.btn-attention-block-large:focus,
.btn-attention-block-large:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention-block-large:hover {
  border: solid 3px #47a270;
  background: #fff;
  color: #47a270;
}

.btn-attention-block-large:active,
.btn-attention-block-large:focus {
  background: #47a270;
}

@media (min-width: 768px) {
  .btn-block-large {
    max-width: 360px;
  }

  .btn-attention-block-large {
    max-width: 360px;
  }
}

.btn-search-block {
  width: 100%;
  max-width: 165px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 20px;
  }
}

/* ボーダーボタン */
.home-btn {
  margin: 20px auto 10px;
}

.btn-border {
  display: inline-block;
  padding: 7px 10px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.btn-border [class*="acms-icon-"] {
  color: #ccc;
  font-size: 14px;
}

.btn-border:hover {
  text-decoration: none;
}

/* 影付きボタン */
.btn-shadow {
  box-shadow: 0 1rem 1rem -0.75rem rgba(0, 0, 0, 0.4);
}

/* ------------------------------
　　カード
------------------------------ */
.card {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #e5e5e5;
}

.card-item {
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.card-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
}

.card-link:hover {
  text-decoration: none;
  background: #eee;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.card-link:hover,
.card-link:visited,
.card-link:active,
.card-link:focus {
  color: #333;
}

.card-img {
  margin: 0 0 10px 0;
}

.card-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.card-detail {
  font-size: 13px;
}

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  line-height: 1.5;
}

.headline-link {
  color: #333;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

.headline-link:hover,
.headline-link:visited,
.headline-link:active,
.headline-link:focus {
  color: #333;
}

.headline-link:hover {
  padding: 10px;
  text-decoration: underline;
}

.headline-title {
  margin: 0 10px;
}

@media screen and (max-width: 479px) {
  /* 画面幅が小さいとき */
  /* ヘッドライン */
  .headline-item {
    padding: 10px 0;
  }

  .headline-title {
    display: block;
    margin: 0;
  }
}

/* 1カラムページ用のヘッドライン */
.headline-1col {
  font-size: 16px;
}

/* ------------------------------
　　ページ上部のインフォーメーション
------------------------------ */
.info-bar {
  color: #fff;
  background: #666;
}

.info-bar-contents {
  display: flex;
  width: 100%;
  align-items: center;
}

.info-bar-icon {
  display: flex;
  font-size: 24px;
}

.info-bar-message {
  padding: 0 15px;
}

.info-bar-link-wrap {
  margin-left: auto;
}

.info-bar-link {
  color: #fff;
  padding: 5px 0;
}

.info-bar-link:link,
.info-bar-link:visited,
.info-bar-link:hover,
.info-bar-link:active,
.info-bar-link:focus {
  color: #fff;
}

.info-bar-link:hover {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.info-bar-link-icon {
  margin: 0 10px 0 0;
}

/* ------------------------------
　　リスト
------------------------------ */
@media screen and (min-width: 768px) {
  /* リスト */
  a.list-link.acms-list-group-item {
    padding: 10px 20px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }

  a.list-link.acms-list-group-item:hover {
    padding: 10px 10px 10px 20px;
    -webkit-transition: padding 0.25s ease-out;
    transition: padding 0.25s ease-out;
  }

  /* ラベルがあったとき */
  a.list-link.acms-list-group-label-parent {
    padding: 10px 30px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }

  a.list-link.acms-list-group-label-parent:hover {
    padding: 10px 30px 10px 20px;
  }
}

/* 検索結果 */
.list-results-wrap {
  margin: 15px 0 15px 0;
  padding: 10px;
  border: 1px solid #ccc;
}

.list-results-heading {
  margin: 0 0 10px 0;
  padding: 5px;
  background: #e5e5e5;
}

.list-results {
  position: relative;
  margin: 0;
}

.list-results-item {
  position: absolute;
  width: 100px;
}

.list-results-detail {
  margin: 0;
  padding: 0 0 0 100px;
  font-weight: bold;
}

/* ------------------------------
　　メインビジュアル
------------------------------ */
.main-visual_wrap {
  position: relative;
  background-color: #fffef2;
  z-index: -2;
}

.main-visual_wrap .main-visual_inner {
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.main-visual_wrap .main-visual_inner .main-visual_img {
  margin: 0 auto;
  max-width: 1923px;
}

.main-visual_wrap .main-visual_inner .main-visual_img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.main-visual-text {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.7;
}

.main-visual-center-btn {
  margin: 0;
}

.main-visual-title,
.main-visual-text,
.main-visual-center-btn {
  opacity: 0;
  animation: fadeUp 0.35s 1 both ease-out;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@media screen and (min-width: 768px) {
  .main-visual {
    height: 420px;
    padding: 50px 0;
  }

  .main-visual-title {
    margin: 0 0 30px 0;
    font-size: 30px;
  }

  .main-visual-text {
    margin: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 1023px) {
  .main-visual_wrap .main-visual_inner .main-visual_img {
    margin: 58.4px -15% 0;
  }

  .main-visual-center-btn .btn-attention-block-large {
    padding: 15px 15px;
    font-size: 16px;
  }
}

/* ------------------------------
　　各モジュール
------------------------------ */
.module-section {
  margin: 0 0 30px 0;
}

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: 2px solid #333;
}

.module-header + .thumbnail,
.module-header + .summary-default,
.module-header + .entry-column,
.module-header + .card,
.module-header + .search-form,
.module-header + .banner {
  margin-top: 10px;
}

.module-heading {
  margin: 0;
  font-size: 18px;
}

.module-heading [class*="acms-icon-"] {
  margin: 0 10px 0 0;
  vertical-align: baseline;
}

a.module-index-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #333;
  font-size: 16px;
}

a.module-index-link [class*="acms-icon-"] {
  color: #ccc;
  font-size: 14px;
}

/* カスタムフィールドグループ */
.module-group-list {
  margin: 0;
  padding: 0 10px;
  list-style: none;
}

.module-group-heading {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.2;
}

.module-group-detail {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* 行揃えの設定 */
/* 見出し */
.heading-align-left .module-group-heading {
  text-align: left;
}

.heading-align-center .module-group-heading {
  text-align: center;
}

.heading-align-right .module-group-heading {
  text-align: right;
}

/* 概要文 */
.detail-align-left .module-group-detail {
  text-align: left;
}

.detail-align-center .module-group-detail {
  text-align: center;
}

.detail-align-right .module-group-detail {
  text-align: right;
}

/* ボタン */
.btn-align-left .module-group-btn-wrap {
  text-align: left;
}

.btn-align-center .module-group-btn-wrap {
  text-align: center;
}

.btn-align-right .module-group-btn-wrap {
  text-align: right;
}

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: 100px;
  color: #fff;
  background-color: #47a270;
}

.page-title-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.page-title-inner {
  display: table-cell;
  padding: 25px 0 15px;
  vertical-align: middle;
}

/* 下層ページのタイトル　画像の設定
------------------------------ */
.page_title_icon {
  margin: 0 auto;
  text-align: center;
}

.page_title_icon .page-title {
  position: relative;
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 2px;
}

.page_title_icon .page-title img {
  position: absolute;
  top: -22px;
  left: 25%;
  max-width: 80px;
  width: 100%;
  height: auto;
}

.page-description {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ------------------------------
　　下層ページ　各園のページタイトル
------------------------------ */
.page-title-wrapper_blog {
  position: relative;
  display: table;
  width: 100%;
  height: 100px;
  color: #4c4c4c;
  background: url("../../images/kakuen.jpg") no-repeat center;
  background-size: cover;
  background-color: #47a270;
}

.page-title-filter_blog {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ------------------------------
　　ページタイトル　レスポンシブ
------------------------------ */
@media (min-width: 768px) {
  .page-title-wrapper {
    height: 160px;
  }

  .page-title-wrapper_blog {
    height: 230px;
  }
}

@media screen and (max-width: 768px) {
  .page-title-inner {
    padding: 15px 0 6px;
  }

  .page_title_icon .page-title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .page_title_icon .page-title img {
    top: -19px;
    left: 20%;
    max-width: 60px;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .page_title_icon .page-title img {
    top: -17px;
    left: 5%;
    max-width: 60px;
    width: 100%;
    height: auto;
  }
}

/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  margin: 60px auto 0;
  padding: 0 20% 0 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline-block;
  margin: 0 5px;
}

.pager li.cur {
  /* 現在いる位置 */
  padding: 2px 10px;
  color: #fff;
  background: #47a270;
  border-radius: 3px;
}

.pager-link {
  display: block;
  padding: 2px 10px;
  color: #919191;
  background: #e5e5e5;
  border-radius: 3px;
}

.pager-link:visited,
.pager-link:focus,
.pager-link:active {
  color: #919191;
}

.pager-link:hover {
  color: #fff;
  text-decoration: none;
  background: #919191;
}

.pager-link-forward {
  float: right;
}

.pager-link-prev {
  float: left;
}

@media screen and (min-width: 768px) {
  .pager-link {
    padding: 2px 10px;
  }

  .pager {
    padding: 0 0 0 0;
  }

  .pager li.cur {
    /* 現在いる位置 */
    padding: 2px 10px;
  }
}

/* 前後リンク */
.serial-nav {
  margin: -25px 0 60px 0;
  padding: 0;
  list-style: none;
}

.serial-nav .serial-nav-item {
  display: inline-block;
  width: 59%;
  float: none;
}

.serial-nav .serial-nav-item-prev {
  float: left;
  padding: 25px 0;
  width: 20%;
}

.serial-nav .serial-nav-item-next {
  float: right;
  text-align: right;
  padding: 25px 0;
  width: 20%;
}

.serial-nav a {
  display: inline-block;
  color: #333;
}

.serial-nav a:hover,
.serial-nav a:visited,
.serial-nav a:focus,
.serial-nav a:active {
  color: inherit;
  text-decoration: none;
}

.serial-nav a:hover {
  color: #47a270;
}

@media screen and (max-width: 768px) {
  .serial-nav {
    margin: 0 0 60px 0;
    border: 0;
  }

  .serial-nav .serial-nav-item .top_btn01 div {
    width: 170px;
  }

  .serial-nav .serial-nav-item-prev {
    padding: 18px 0;
  }

  .serial-nav .serial-nav-item-next {
    padding: 18px 0;
  }

  .serial-nav a {
    display: inline;
    border: 0;
  }

  .serial-nav a:hover {
    background: 0;
    color: #47a270;
  }
}

/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  color: #fff;
  background: #333;
  border: 1px solid #333;
  border-radius: 0 4px 4px 0;
  filter: none;
  /* IEでのグラデーションを上書き */
  font-size: 16px;
}

.search-form .btn-search:hover,
.search-form .btn-search:active,
.search-form .btn-search:focus {
  background: #666;
}

.search-form input[type="search"] {
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  box-sizing: border-box;
}

input[type="search"].search-form-input {
  padding-top: 5px;
  padding-bottom: 4px;
  font-size: 20px;
  box-sizing: border-box;
}

/* ------------------------------
　　セクション
------------------------------ */
/* 背景色 */
.section-bg {
  padding: 55px 0 40px;
  overflow: hidden;
}

.section-bg-top {
  padding: 17px 0 40px;
}

.section-bg-top02 {
  padding: 55px 0 60px;
}

.section-bg_yellow {
  padding: 40px 0;
  background: #fffef3;
  background-image: url(../../images/bg_dots.svg);
}

.section-space {
  padding: 20px 0;
}

/* カラムの中央寄せ */
.section-center-col {
  float: none;
  margin: 0 auto;
}

/* 見出し */
.section-heading {
  margin: 20px 0;
  font-size: 24px;
}

.section-heading a {
  color: #333;
}

@media screen and (min-width: 768px) {
  /* 背景色 */
  .section-space {
    padding: 80px 0;
  }

  /* 見出し */
  .section-heading {
    margin: 20px 0 40px 0;
    font-size: 25px;
  }
}

/* ########### 769px以下 ########### */
@media screen and (max-width: 760px) {
  .section-bg_yellow {
    padding: 10px 0 15px;
  }
}

/* ------------------------------
　　スライダー
------------------------------ */
.slick-slider {
  padding: 0 0 12px 0;
}

.slick-slider img {
  margin: 0 auto;
}

.fix-height {
  height: 300px;
  /* はじめのちらつき防止 */
  overflow: hidden;
  /* はじめのちらつき防止 */
}

.slick-slide:hover {
  cursor: pointer;
}

.slick-list:focus:focus {
  position: relative;
}

.slick-list:focus:focus:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border: 2px dotted #00c2ff;
  content: "";
}

.js-slider .slick-list:focus {
  position: relative;
}

.js-slider .slick-list:focus:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 2px dotted #00c2ff;
  content: "";
}

.main-slider-image {
  height: 300px;
  background: no-repeat center #333;
  background-size: cover;
}

.main-slider-image a:hover {
  text-decoration: none;
}

.main-slider-text-outer {
  height: 100%;
}

.main-slider-text-wrap {
  display: table;
  width: 100%;
  height: 100%;
}

.main-slider-text-inner {
  display: table-cell;
  padding: 0 20px;
  text-align: center;
  vertical-align: middle;
}

.main-slider-main-copy {
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}

.main-slider-side-copy {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

/* ちらつき防止 */
.slick-track,
.slick-list {
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
}

/* 矢印ナビゲーション */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 19px;
  height: 60px;
  margin-top: -29px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-prev:focus,
.slick-next:focus {
  border: 1px dotted #fff;
}

.slick-prev {
  left: 10px;
  background: url("../../images/marker/icon_white_arrow_left.png") no-repeat;
}

.slick-next {
  right: 10px;
  background: url("../../images/marker/icon_white_arrow_right.png") no-repeat;
}

/* ドットのナビゲーション */
.slick-dots {
  position: relative;
  clear: both;
  margin: -35px 0 0 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px;
  font-size: 0;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 7px;
  content: "";
}

.slick-dots li button:focus {
  border: 1px solid #47a270;
  outline: 0;
}

.slick-dots li:hover button {
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #47a270;
}

.slick-dots button {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

#autoplay-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  border-radius: 50%;
  outline: 0;
  right: calc(10px + constant(safe-area-inset-right));
}

#autoplay-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

#autoplay-btn:active:before,
#autoplay-btn:focus:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px dotted #fff;
  content: "";
}

#autoplay-btn:after {
  position: absolute;
  top: 15px;
  left: 17px;
  display: block;
  box-sizing: border-box;
  width: 16px;
  height: 20px;
  margin-left: 0;
  border-top: none;
  border-right: 5px solid #fff;
  border-bottom: none;
  border-left: 5px solid #fff;
  content: "";
}

#autoplay-btn.active:after {
  left: 15px;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 10px 0 10px 15px;
}

@media screen and (min-width: 768px) {
  .slick-prev {
    left: 50px;
  }

  .slick-next {
    right: 50px;
  }

  .fix-height {
    height: 400px;
    /* はじめのちらつき防止 */
  }

  .main-slider-image {
    height: 400px;
  }

  .main-slider-main-copy {
    font-size: 40px;
  }

  .main-slider-side-copy {
    font-size: 24px;
  }
}

/* ------------------------------
　　提案エリア
------------------------------ */
/* お問い合わせ提案エリア */
.suggest-box {
  background: #ddd;
}

.suggest-inner {
  display: table;
  width: 100%;
  padding: 15px 0;
}

.suggest-item {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.suggest-text {
  margin: 0 0 10px 0;
  line-height: 1.5;
  font-size: 14px;
}

.suggest-tel {
  margin: 0 0 10px 0;
  color: #666;
  font-weight: bold;
  font-size: 24px;
}

.suggest-tel a {
  color: inherit;
}

.suggest-btn {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .suggest-inner {
    padding: 0;
  }

  .suggest-item {
    padding: 30px 10px;
  }

  .suggest-tel {
    margin: 0;
  }

  .suggest-half {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
}

/* お問い合わせ提案エリア 中央寄せ */
.suggest-center-box {
  padding: 20px 0;
}

.suggest-center-item + .suggest-center-item {
  margin: 50px 0 0 0;
}

.suggest-center-text {
  margin: 30px 0 10px 0;
}

.suggest-center-tel {
  margin: 0;
  color: #c38a00;
  font-weight: bold;
  font-size: 34px;
}

.suggest-center-tel a {
  color: #c38a00;
}

@media screen and (min-width: 768px) {
  .suggest-center-box {
    padding: 50px 0;
  }
}

/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.summary-default:before,
.summary-default:after {
  display: table;
  content: " ";
}

.summary-default:after {
  clear: both;
}

.summary-default.slick-initialized {
  margin-right: -10px;
  margin-left: -10px;
  overflow: hidden;
  border: 0;
}

.summary-default .slick-list {
  padding: 0 0 0 20px;
  overflow: inherit;
}

.summary-default .slick-dots {
  margin: 0;
}

.summary-default .slick-dots button {
  background: #e5e5e5;
}

.summary-default .slick-dots .slick-active button {
  background: #47a270;
}

.summary-default-item {
  display: block;
  padding: 0 10px;
  color: #333;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

.acms-entry .summary-default-item {
  padding: 10px;
}

.slick-initialized .summary-default-item {
  width: 280px;
  margin: 2px 10px 2px 2px;
  border: 0;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08),
    -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
}

.summary-default-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
  transition: background 0.2s;
}

.summary-default-link:hover,
.summary-default-link:visited,
.summary-default-link:active,
.summary-default-link:focus {
  color: #333;
}

.summary-default-link:hover {
  text-decoration: none;
  background: #f1f1f1;
}

.summary-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: bold;
}

.summary-detail {
  margin: 0;
  line-height: 1.5;
  font-size: 13px;
}

@media screen and (min-width: 480px) {
  .summary-default {
    margin: 0 0 20px 0;
  }
}

/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thumbnail-row {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

.thumbnail-item {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 767px) {
  .thumbnail-row .thumbnail-item {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.thumbnail-link {
  display: block;
  color: #333;
  transition: opacity 0.2s;
}

.thumbnail-link:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.75;
}

.thumbnail-link:visited {
  color: #333;
}

.thumbnail-img {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  backface-visibility: hidden;
}

.thumbnail-title {
  margin: 10px 0;
  font-weight: bold;
  font-size: 15px;
}

.thumbnail-detail {
  margin: 0;
  line-height: 1.5;
  font-size: 12px;
}

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  padding: 10px 0;
  font-size: 12px;
}

.topicpath-list {
  margin: 0 auto;
  list-style: none;
}

.topicpath-item {
  float: left;
  padding: 0 10px 0 23px;
  background: url("../../images/marker/icon_arrow.png") no-repeat left center;
}

.topicpath-item:first-child {
  padding: 0 10px 0 0;
  background: 0;
}

.topicpath-link {
  color: #666;
  font-size: 12px;
}

.topicpath-link:visited,
.topicpath-link:focus,
.topicpath-link:active {
  color: #666;
}

@media (max-width: 1024px) {
  .topicpath {
    padding: 0;
    font-size: 10px;
  }

  .topicpath-link {
    font-size: 10px;
  }
}

/* ------------------------------
 ユニットグループ
------------------------------- */
/* ------------------------------
 フロート解除
------------------------------ */
.clearHidden {
  display: block;
  clear: both;
  height: 0;
  margin: 0;
  border: none;
  visibility: hidden;
}

/* ------------------------------
 動的フォーム
------------------------------ */
/* ------------------------------
 エントリー内 主な要素
------------------------------ */
.entry-column [class*="acms-col-"] {
  padding: 0;
}

/* ------------------------------
 テキストユニットの設定
------------------------------ */
.entry-column h2 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h3 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h4 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h5 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h6 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column dl {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column p {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column blockquote {
  margin: 0 0 20px 0;
  padding: 10px 20px;
  border-left: solid 5px #ccc;
}

/* ------------------------------
各種ユニットの設定
------------------------------ */
.entry-column [class*="column-image"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-file"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-map"] {
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  box-sizing: border-box;
}

.entry-column [class*="column-yolp"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-street-view"]:not(.column-street-view-inner) {
  padding-right: 10px;
  padding-left: 10px;
}

.entry-column [class*="column-youtube"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-video"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-eximage"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-media"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-column [class*="column-quote"] {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column [class*="column-module"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

[class*="column-image"] {
  margin-bottom: 20px;
}

[class*="column-file"] {
  margin-bottom: 20px;
}

[class*="column-map"] {
  margin-bottom: 20px;
}

[class*="column-yolp"] {
  margin-bottom: 20px;
}

[class*="column-street-view"] {
  margin-bottom: 20px;
}

[class*="column-youtube"] {
  margin-bottom: 20px;
}

[class*="column-video"] {
  margin-bottom: 20px;
}

[class*="column-eximage"] {
  margin-bottom: 20px;
}

[class*="column-media"] {
  margin-bottom: 20px;
}

[class*="column-quote"] {
  margin-bottom: 20px;
}

[class*="column-module"] {
  margin-bottom: 20px;
}

/* 画像・メディア・画像URLの共通設定 */
[class*="column-image"],
[class*="column-media"],
[class*="column-eximage"] {
  display: block;
}

[class*="column-image"].caption,
[class*="column-media"].caption,
[class*="column-eximage"].caption {
  margin-bottom: 10px;
}

[class*="column-image"] a,
[class*="column-media"] a,
[class*="column-eximage"] a {
  display: block;
}

[class*="column-image"] img,
[class*="column-media"] img,
[class*="column-eximage"] img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

[class*="column-image"] .caption,
[class*="column-media"] .caption,
[class*="column-eximage"] .caption {
  margin: 5px 0 0 0;
}

/* 画像ユニットの設定 */
[class*="column-image"][style*="width"] {
  max-width: 100%;
}

/* メディアの種類がファイルだった時の設定 */
[class*="column-media"] a[href*="media-download"] {
  display: inline-block;
  width: 100%;
}

/* 地図・Yahooo!地図の共通設定 */
[class*="column-map"] > img,
[class*="column-yolp"] > img {
  max-width: 100%;
}

[class*="column-map"] img,
[class*="column-yolp"] img {
  width: auto;
  height: auto;
}

[class*="column-map"] > div {
  max-width: 100%;
}

[class*="column-yolp"] {
  width: auto !important;
}

[class*="column-quote"] {
  /* 引用ユニット画像 */
  /* 引用ユニットテキスト */
}

[class*="column-quote"] blockquote {
  padding: 20px 10px 20px 20px;
}

[class*="column-quote"] .quoteImageContainer {
  position: relative;
  float: left;
  max-width: 154px;
  margin-right: 25px;
}

[class*="column-quote"] .quoteImage {
  display: block;
  max-width: 100%;
  height: auto;
}

[class*="column-quote"] .quoteTitle {
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.4;
  font-size: 18px;
}

[class*="column-quote"] .quoteTitleLink {
  color: #006cd8;
}

[class*="column-quote"] .quoteSiteName {
  margin: 0 0 10px 0;
  padding: 0;
  color: #666;
  font-size: 11px;
}

[class*="column-quote"] .quoteDescription {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  font-size: 12px;
}

/* 配置のスタイル */
.column-image-left {
  float: left;
  text-align: left;
}

.column-image-right {
  float: right;
  text-align: right;
}

.column-image-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-image-auto {
  float: none;
}

/* 配置のスタイル */
.column-file-left {
  text-align: left;
  float: left;
  text-align: left;
}

.column-file-left + .caption {
  text-align: left;
}

.column-file-right {
  text-align: right;
  float: right;
  text-align: right;
}

.column-file-right + .caption {
  text-align: right;
}

.column-file-center {
  text-align: center;
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-file-center + .caption {
  text-align: center;
}

.column-file-auto {
  text-align: auto;
  float: none;
}

.column-file-auto + .caption {
  text-align: auto;
}

/* 配置のスタイル */
.column-map-left {
  float: left;
  text-align: left;
}

.column-map-right {
  float: right;
  text-align: right;
}

.column-map-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-map-auto {
  float: none;
}

/* 配置のスタイル */
.column-yolp-left {
  float: left;
  text-align: left;
}

.column-yolp-right {
  float: right;
  text-align: right;
}

.column-yolp-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-yolp-auto {
  float: none;
}

/* 配置のスタイル */
.column-street-view-left {
  float: left;
  text-align: left;
}

.column-street-view-right {
  float: right;
  text-align: right;
}

.column-street-view-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-street-view-auto {
  float: none;
}

/* 配置のスタイル */
.column-youtube-left {
  float: left;
  text-align: left;
}

.column-youtube-right {
  float: right;
  text-align: right;
}

.column-youtube-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-youtube-auto {
  float: none;
}

/* 配置のスタイル */
.column-video-left {
  float: left;
  text-align: left;
}

.column-video-right {
  float: right;
  text-align: right;
}

.column-video-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-video-auto {
  float: none;
}

/* 配置のスタイル */
.column-eximage-left {
  float: left;
  text-align: left;
}

.column-eximage-right {
  float: right;
  text-align: right;
}

.column-eximage-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-eximage-auto {
  float: none;
}

/* 配置のスタイル */
.column-media-left {
  float: left;
  text-align: left;
}

.column-media-left :not([href*="media-download"]) + .caption {
  text-align: center;
}

.column-media-right {
  float: right;
  text-align: right;
}

.column-media-right :not([href*="media-download"]) + .caption {
  text-align: center;
}

.column-media-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-media-center :not([href*="media-download"]) + .caption {
  text-align: center;
}

.column-media-auto {
  float: none;
}

.column-media-auto :not([href*="media-download"]) + .caption {
  text-align: center;
}

/* 配置のスタイル */
.column-quote-left {
  float: left;
  text-align: left;
}

.column-quote-right {
  float: right;
  text-align: right;
}

.column-quote-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-quote-auto {
  float: none;
}

/* 配置のスタイル */
.column-module-left {
  float: left;
  text-align: left;
}

.column-module-right {
  float: right;
  text-align: right;
}

.column-module-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-module-auto {
  float: none;
}

/* .acms-entry-unit-fullの設定 */
.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-image"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-file"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-map"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-yolp"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit)
  [class*="column-street-view"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-youtube"] {
  width: 100% !important;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-video"] {
  width: 100% !important;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-eximage"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-media"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-quote"] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*="column-module"] {
  width: auto !important;
  max-width: 100%;
}

@media (max-width: 480px) {
  [class*="acms-col-"][class*="-right"] {
    float: left;
  }

  [class*="acms-col-"][class*="-right"] + * {
    clear: both;
  }
}

/* ------------------------------
 共通の要素
------------------------------ */
.entry-container {
  margin-right: 10px;
  margin-left: 10px;
}

/* PDFプレビュー */
.column-pdf-image {
  width: 100%;
  border: solid 1px #aaa;
}

/* ストリートビュー */
.column-inner-street-view {
  width: 100%;
  padding-bottom: 100%;
}

/* YouTube動画をレスポンシブ対応させるための記述 */
.column-youtube,
.column-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.column-youtube iframe,
.column-youtube object,
.column-youtube embed,
.column-iframe iframe,
.column-iframe object,
.column-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------
 検索
------------------------------ */
/* 検索結果のハイライト
------------------------------ */
.highlight1 {
  background-color: #ffff66;
}

.highlight2 {
  background-color: #a0ffff;
}

.highlight3 {
  background-color: #99ff99;
}

.highlight4 {
  background-color: #ff9999;
}

.highlight5 {
  background-color: #ff66ff;
}

.highlight6 {
  background-color: #880000;
}

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
  margin: 0 0 25px 0;
}

.page-header {
  margin: 0 0 20px 0;
}

.entry-info {
  margin-top: 0;
  font-size: 14px;
}

/* カテゴリーと新着ラベル */
.entry-category,
.entry-new {
  font-size: 14px;
}

/* タイトル */
.entry-title {
  margin: 10px 0;
}

.entry-title a {
  color: #333;
}

.acms-entry h2 .entry-title {
  padding: 0;
}

.entry-column-top {
  padding: 0 5px;
}

.entry-column-grid {
  margin: 0 -10px;
}

/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
}

.entry-column h2 {
  margin: 0 10px 25px 10px;
  padding: 5px 10px;
  font-size: 20px;
  color: #666;
  border-left: 4px solid #666;
}

.entry-column h2.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}

.entry-column h2.entry-heading-center {
  position: relative;
  margin: 20px 0 25px 0;
  font-size: 16px;
  text-align: center;
  border: 0;
  color: #333;
}

.entry-column h2.entry-heading-center:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  margin: 0 auto;
  background: #999;
}

.entry-column h3 {
  margin: 0 10px 20px 10px;
  padding: 5px 10px;
  font-size: 18px;
  color: #333;
  background: #e5e5e5;
}

.entry-column h4 {
  margin: 0 10px 20px 10px;
  font-size: 18px;
  color: #333;
}

.entry-column a:link {
  text-decoration: none;
}

.entry-column a:hover,
.entry-column a:focus,
.entry-column a:active {
  text-decoration: underline;
}

.entry-column a:visited {
  color: #7f5ad7;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .entry-column h2.entry-heading-center {
    margin: 0 20px 35px 0;
    font-size: 22px;
  }

  .entry-column h2.entry-heading-center:before {
    bottom: -15px;
  }
}

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
}

.entry-column p.entry-danger-text {
  color: #c41134;
  font-weight: bold;
}

.entry-column p.summary-title {
  margin: 0 0 10px 0;
}

.entry-column p.summary-detail {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.entry-column p.entry-lead-text {
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .entry-column p.entry-lead-text {
    margin: 0 0 40px 0;
    font-size: 30px;
  }
}

/* エントリー内コンテナー */
.entry-container {
  margin: 0 10px;
}

[class^="column-table"] .entry-container {
  margin-bottom: 30px;
  overflow-x: auto;
}

[class^="column-table"] table {
  margin-bottom: 0;
}

/* テーブル */
.entry-column table {
  width: 100%;
  border-collapse: collapse;
}

.entry-column th,
.entry-column td {
  display: block;
  padding: 5px 10px;
  color: #333;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dfdfdf;
  font-size: 16px;
}

.entry-column .acms-table-responsive {
  border-top: 0;
  border-bottom: 0;
}

.entry-column .acms-table-responsive th,
.entry-column .acms-table-responsive td {
  display: table-cell;
  white-space: nowrap;
}

.entry-column .acms-table-responsive table {
  margin: 0;
}

.entry-column th {
  background: #f5f5f5;
}

.entry-column .entry-custom-table {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .entry-column th,
  .entry-column td {
    display: table-cell;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    border-top: 1px solid #dfdfdf;
  }

  .entry-column th {
    background: inherit;
  }

  .entry-column tr:nth-child(odd) {
    background: #f5f5f5;
  }
}

/* リスト */
.entry-column ul {
  margin: 0 10px 25px 10px;
  padding: 0 0 0 2em;
}

.entry-column ul li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

.entry-column ul.summary-default {
  padding: 0;
}

.entry-column ul.summary-default li {
  margin: 0;
}

/* 番号付きリスト */
.entry-column ol {
  margin: 0 10px 25px 10px;
  padding: 0 0 0 2em;
}

.entry-column ol li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 定義リスト */
.entry-column dl {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}

.entry-column dt {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.entry-column dd {
  margin-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
  font-size: 16px;
}

/* 引用 */
.entry-column blockquote {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 10px 20px 20px;
  line-height: 1.8;
  background: #f5f5f5;
  border-left: 5px solid #dedede;
  font-size: 16px;
}

.entry-column .column-quote-auto blockquote {
  padding: 10px;
  border: 1px solid #d0d0d0;
}

.entry-column .column-quote-auto .quoteTitleLink {
  color: #333;
}

@media screen and (min-width: 480px) {
  /* 引用 */
  .entry-column blockquote {
    padding: 20px 20px 20px 30px;
  }

  .entry-column .column-quote-auto blockquote {
    padding: 15px;
  }
}

/* ソースコード */
.entry-column pre {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 30px 0;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  white-space: pre-wrap;
}

.entry-column pre ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}

.entry-column pre ol li {
  line-height: 1.5;
}

/* 区切り線 */
.entry-column hr {
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* ユニット */
.entry-column .caption {
  font-size: 13px;
}

.column-file-auto + .caption {
  margin-left: 10px;
}

[class*="column-media-"] a,
[class*="column-image-"] a {
  transition: opacity 0.2s;
}

[class*="column-media-"] a:hover,
[class*="column-image-"] a:hover {
  opacity: 0.8;
}

/* ユニットグループ */
.ug-bg-color {
  background-image: url(../../images/bg_dots.svg);
  margin: 60px auto 20px;
  padding: 40px 8px 60px;
  width: 100%;
  background-color: #fffef3;
}

.ug-bg-color h3:nth-last-of-type(1) {
  margin-top: 40px;
}

.ug-bg-color p {
  margin: 0 auto;
  line-height: 160%;
  width: 98%;
}

.ug-bg-color h2 {
  margin: 0 auto 50px;
}

.ug-bg-color:nth-last-of-type(1) {
  padding-bottom: 60px;
}

/* スタッフ紹介 */
/* 動的フォーム */
.entry-column ul.contact-form {
  margin: 0;
  padding: 0;
}

.entry-column ul.contact-form li {
  margin: 0;
}

.entry-column tr.contact-form-group:nth-child(odd) {
  background: inherit;
}

.entry-column .contact-form th,
.entry-column .contact-form td {
  background: inherit;
  border: 0;
}

/* エントリーフッター */
.entry-footer {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px 0;
  padding: 10px;
  background: #f5f5f5;
}

/* タグ */
.entry-tag {
  margin: 0 0 5px 0;
}

.entry-tag-icon {
  float: left;
  color: #707070;
}

.entry-tag-item {
  float: left;
  margin: 0 0 0 10px;
}

.entry-footer-item + .entry-footer-item {
  margin: 10px 0 0 0;
}

@media screen and (min-width: 768px) {
  .entry-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .entry-footer-item + .entry-footer-item {
    margin: 0 0 0 auto;
  }
}

/* SNSシェア */
.share-wrapper {
  display: flex;
  align-items: center;
}

.share-text {
  display: inline;
  float: left;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .share-wrapper {
    float: right;
  }
}

/* SNSシェアボタン */
.share-list {
  display: inline-flex;
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-item {
  display: inline-block;
  margin: 0 0 0 15px;
  vertical-align: top;
}

.share-item a {
  color: #999;
  text-decoration: none;
}

.share-item [class*="acms-icon"] {
  font-size: 22px;
  vertical-align: middle;
}

.share-item .share-item-facebook {
  /* Facebook */
  position: relative;
  color: #1877f2;
  line-height: 1.2;
}

.share-item .share-item-facebook:before {
  vertical-align: middle;
}

.share-item .share-item-facebook:focus:before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px dotted #333;
  content: "";
}

.share-item .share-item-twitter {
  /* Twitter */
  position: relative;
  color: #55acee;
  line-height: 1.2;
}

.share-item .share-item-twitter:before {
  vertical-align: middle;
}

.share-item .share-item-twitter:focus:before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px dotted #333;
  content: "";
}

/* 続きを読むボタン */
.continue-link {
  margin: 0;
  font-size: 16px;
}

.continue-link a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  background: #767676;
  border-radius: 3px;
}

.continue-link a [class*="acms-icon"] {
  margin: 0 10px 0 0;
}

.continue-link a:link,
.continue-link a:visited {
  color: #fff;
}

.continue-link a:hover,
.continue-link a:focus,
.continue-link a:active {
  color: #fff;
  text-decoration: none;
  background: #aaa;
}

@media screen and (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0;
  }

  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal;
  }
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
  /* ボタン内のアイコン */
}

.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #666;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}

.entry-column .entry-btn-default:hover,
.entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  color: #fff;
  text-decoration: none;
}

.entry-column .entry-btn-default:focus,
.entry-column .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #fff;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}

.entry-column .entry-btn-default:active,
.entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #444;
}

.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #47a270;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}

.entry-column .entry-btn-attention:hover,
.entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  color: #fff;
  text-decoration: none;
}

.entry-column .entry-btn-attention:focus,
.entry-column .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
  color: #fff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #fff;
  background-color: #47a270;
  background-image: linear-gradient(to bottom, #47a270, #47a270);
}

.entry-column .entry-btn-attention:active,
.entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #47a270;
}

.entry-column .entry-btn-icon-before,
.entryFormLiteEditor .entry-btn-icon-before {
  margin: 0 10px 0 0;
}

.entry-column .entry-btn-icon-after,
.entryFormLiteEditor .entry-btn-icon-after {
  margin: 0 0 0 10px;
}

/* ------------------------------
　　編集ページ
------------------------------ */
.field-title {
  padding: 0 10px;
}

.field-title:first-child {
  margin: 0 0 10px 0;
}

.field-table-inner {
  width: 100%;
}

.field-table-inner th,
.field-table-inner td {
  border: 0;
}

/* ------------------------------
　　メインカラム
------------------------------ */
.main:before,
.main:after {
  display: table;
  content: " ";
}

.main:after {
  clear: both;
}

.main-inner {
  width: 100%;
  max-width: 820px;
}

.main-inner.is-space-left {
  float: right;
}

.main-inner.is-space-right {
  float: left;
}

.main-inner.is-space-center {
  margin: 0 auto;
}

/* ------------------------------
　　サイドカラム
------------------------------ */
.side-title {
  margin-top: 0;
  font-size: 18px;
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 35px 0;
}

.contact-box .message-text {
  font-size: 18px;
}

.contact-box .message-text-red {
  margin-bottom: 50px;
  color: #e83418;
  font-size: 18px;
}

.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 30px;
}

.contact-box .contact-no a {
  color: inherit;
}

.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #47a270;
}

.contact-box .contact-box-firsttext {
  padding-bottom: 30px;
}

.contact-box p {
  line-height: 1.6;
}

.contact-box p span {
  color: #e83418;
}

.contact-form {
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.contact-form-heading {
  margin: 40px 0 10px 0;
}

.contact-form-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  background: #e5e5e5;
  border-bottom: 1px solid #fff;
}

.contact-form-group fieldset {
  display: contents;
  border: 0;
}

.contact-form-label {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 0 0 0;
  text-align: left;
  box-sizing: border-box;
}

.contact-form-label span {
  padding-left: 0.5em;
  color: #e83418;
}

.contact-form-control {
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.contact-form-grid {
  margin: 0 -5px;
}

.contact-form-col,
.acms-entry .contact-form-col {
  margin: 0 0 10px 0;
  padding: 0 5px;
}

.contact-form-col:last-child,
.acms-entry .contact-form-col:last-child {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .contact-form {
    width: 100%;
  }

  .contact-form-label {
    padding: 10px 0;
    vertical-align: top;
  }

  .contact-form-control {
    padding: 5px 15px 15px 15px;
  }

  .contact-form-col {
    margin: 0;
  }
}

/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 25px 0;
  padding: 0 10px;
  background: #e5e5e5;
  /* カウンターの設定 */
  counter-reset: mailStep;
}

.contact-box .mail-step-item {
  float: left;
  margin: 0 5px;
  padding: 14px 0 10px;
  color: #999;
  font-weight: bold;
  list-style: none;
  border-bottom: 4px solid transparent;
  font-size: 14px;
}

.contact-box .mail-step-item:before {
  content: counter(mailStep) ".";
  /* カウンターの設定 */
  counter-increment: mailStep;
}

.contact-box .mail-step-item-current {
  color: #333;
  border-bottom: 4px solid #333;
}

@media screen and (min-width: 768px) {
  .contact-box .mail-step-item {
    margin: 0 10px;
    padding: 18px 0 14px;
    font-size: 16px;
  }
}

/* 送信ボタン
------------------------------ */
.form-btn-box {
  margin: 0 10px 50px 10px;
  text-align: center;
}

.form-btn {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .form-btn-send {
    width: 100%;
    max-width: 360px;
  }
}

/* ラベル
------------------------------ */
.label-required {
  margin: 0 5px;
  padding: 2px 8px;
  color: #fff;
  background: #47a270;
  border-radius: 3px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .label-required {
    margin: 0 5px;
  }
}

/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
  border: 1px solid #c49511;
}

.contact-box select.focused:invalid {
  border: 1px solid #c41134;
}

.contact-box select[required]:valid {
  border: 1px solid #a7a7aa;
}

.contact-box input[required]:required,
.contact-box textarea[required]:required {
  background: #fffdeb;
}

.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
  background: #ffebee;
}

.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
  background: #fff;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="datetime"],
.contact-box input[type="datetime-local"],
.contact-box input[type="date"],
.contact-box input[type="month"],
.contact-box input[type="time"],
.contact-box input[type="week"],
.contact-box input[type="number"],
.contact-box input[type="email"],
.contact-box input[type="url"],
.contact-box input[type="search"],
.contact-box input[type="tel"] {
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 5px;
}

.contact-box textarea {
  font-size: 16px;
  padding: 5px 5px 4px;
}

.contact-box select {
  background-color: #f7f7f7;
  min-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .contact-box input[type="text"],
  .contact-box input[type="password"],
  .contact-box input[type="datetime"],
  .contact-box input[type="datetime-local"],
  .contact-box input[type="date"],
  .contact-box input[type="month"],
  .contact-box input[type="time"],
  .contact-box input[type="week"],
  .contact-box input[type="number"],
  .contact-box input[type="email"],
  .contact-box input[type="url"],
  .contact-box input[type="search"],
  .contact-box input[type="tel"] {
    padding: 5px 8px;
  }

  .contact-box textarea {
    padding: 5px 8px;
  }

  .contact-box select {
    padding-left: 8px;
    min-height: 40px;
  }
}

/* バリデーター
------------------------------ */
.valid-mark {
  display: none;
}

.valid-mark.valid {
  display: inline;
  float: right;
  color: #5cb85c;
}

.invalid {
  background-color: #ffebee !important;
}

/* 追加
------------------------------ */
.contact-form_box {
  margin: 20px auto;
}

.contact-form_box .acms-admin-col-md-3 {
  padding: 0;
}

.contact-h4 {
  margin: 55px auto 30px;
  padding: 10px 1em;
  color: #fff;
  background: #adadad;
  border-bottom: none;
  font-weight: bold;
  font-size: 20px;
}

.contact_about_box {
  margin: 0 0 100px 0;
}

.contact_tablebox {
  margin: 0 auto 50px;
}

.contact_tablebox .contact-form-group {
  width: 100%;
  background-color: #ffff;
  color: #4c4c4c;
}

.contact_tablebox .contact-form-group tr {
  border-bottom: solid 1px #919191;
}

.contact_tablebox .contact-form-group tr:nth-of-type(1) {
  border-top: solid 1px #919191;
}

.contact_tablebox .contact-form-group .contact-form-label {
  display: inline-block;
  width: 20%;
  padding: 20px 0 20px 20px;
  vertical-align: middle;
  background-color: #e9e9e9;
  font-size: 17px;
}

.contact_tablebox .contact-form-group .contact-form-control {
  display: inline-block;
  padding: 20px 0 20px 20px;
  width: 80%;
  vertical-align: middle;
  background-color: #ffff;
}

@media screen and (max-width: 768px) {
  .contact_tablebox .contact-form-group .contact-form-label {
    display: inline-block;
    width: 100%;
    padding: 20px 0 20px 20px;
    vertical-align: middle;
    background-color: #e9e9e9;
    font-size: 15px;
  }

  .contact_tablebox .contact-form-group .contact-form-control {
    display: inline-block;
    padding: 20px 0 20px 20px;
    width: 100%;
    vertical-align: middle;
    background-color: #ffff;
  }
}

.contact-thanks_title {
  margin: 0 auto 42px;
  font-size: 25px;
  color: #4c4c4c;
  font-weight: bold;
}

/* ------------------------------
　　h　タイトル
------------------------------ */
/* h2のタイトル
------------------------------ */
h2.h2_title01 {
  position: relative;
  padding: 0.2rem 0 0.4em;
  letter-spacing: 0.1em;
  text-align: center;
}

h2.h2_title01:before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  width: 30px;
  height: 2px;
  content: "";
  border-radius: 3px;
  background: #47a270;
}

.h2_title01 p {
  margin: 0 auto 0.5em;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #47a270;
  font-weight: bold;
}

/* h2のタイトル　画像付き　入園案内
------------------------------ */
h2.h2_title02 {
  position: relative;
  margin: 120px auto 60px;
  padding: 0 0 0.4em;
  text-align: center;
  letter-spacing: 0.1em;
}

h2.h2_title02:before {
  content: "";
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 55px;
  height: 61px;
  background: url(../../images/sakura02.png) no-repeat;
  background-size: contain;
}

h2.h2_title02:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  width: 30px;
  height: 2px;
  content: "";
  border-radius: 3px;
  background: #47a270;
}

/* h3のタイトル
------------------------------ */
h3 {
  margin: 0 auto 25px;
  padding: 11px 0 12px 20px;
  border-top-right-radius: 20px;
  background-color: #f2c43c;
  color: #fff;
  font-size: 22px;
}

/* h3のタイトル 02
------------------------------ */
h3.h3_title02 {
  background-color: #47a270;
}

/* h3のタイトル 03 入園案内
------------------------------ */
h3.h3_title03 {
  margin: 50px auto 0;
}

/* h3のタイトル 04
------------------------------ */
h3.h3_title04 {
  margin: 20px auto 10px;
  padding-left: 100px;
  background-color: #47a270;
}

.h3_title04_box {
  position: relative;
  margin-top: 20px;
}

.h3_title04_box .h3_title04_box_img {
  position: absolute;
  left: 0;
  top: -17px;
}

.h3_title04_box .h3_title04_box_img img {
  margin-left: 10px;
  width: 84px;
  height: auto;
}

/* h4のタイトル
------------------------------ */
h4 {
  margin: 45px auto 30px;
  padding: 12px 1em;
  color: #f2c43c;
  background: #fef9eb;
  border-bottom: solid 5px #f2c43c;
  font-weight: bold;
  font-size: 20px;
}

/* ########### 769px以上 ########### */
@media screen and (max-width: 768px) {
  /* h2のタイトル
------------------------------ */
  h2.h2_title01 {
    font-size: 18px;
    padding: 0.1rem 0 0.2em;
  }

  .h2_title01 p {
    margin: 0 auto;
    font-size: 9px;
    letter-spacing: 0.05em;
    font-weight: bold;
  }

  /* h3のタイトル
------------------------------ */
  h3 {
    font-size: 18px;
  }

  h3.h3_title04 {
    padding: 6px 20px 6px 70px;
  }

  .h3_title04_box .h3_title04_box_img {
    left: 0;
    top: -15px;
  }

  .h3_title04_box .h3_title04_box_img img {
    margin-left: 10px;
    width: 60px;
    height: auto;
  }
}

/* ------------------------------
　　ボタン　追加
------------------------------ */
button:focus {
  outline: 0;
}

/* ボタン01 02　共通
------------------------------ */
.top_btn01,
.top_btn02 {
  margin: 0 auto;
}

.top_btn01 div,
.top_btn02 div {
  position: relative;
  width: 320px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  padding: 20px 0;
  color: #fff;
  background-color: #47a270;
  border-radius: 5px;
  border: solid 3px #fff;
  transition: 0.1s all;
  text-align: center;
}

.top_btn01 div a,
.top_btn01 div a:visited,
.top_btn02 div a,
.top_btn02 div a:visited {
  text-decoration: none;
  color: #fff;
}

.top_btn01 div:hover,
.top_btn02 div:hover {
  color: #47a270;
  background-color: #fff;
  border: solid 3px #47a270;
}

.top_btn01 div:hover a,
.top_btn01 div:hover a:visited,
.top_btn02 div:hover a,
.top_btn02 div:hover a:visited {
  color: #47a270;
}

.top_btn01 div span,
.top_btn02 div span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
}

.top_btn01 div:hover > span,
.top_btn02 div:hover > span {
  transform: translateX(4px) translateY(-8px);
  transition: all 300ms 0s ease;
}

/* ボタン02のみ
------------------------------ */
.top_btn02 div {
  color: #47a270;
  background-color: #fff;
  border: solid 3px #47a270;
}

.top_btn02 div a,
.top_btn02 div a:visited {
  text-decoration: none;
  color: #47a270;
}

.top_btn02 div:hover {
  color: #fff;
  background-color: #47a270;
  border: solid 3px #fff;
}

.top_btn02 div:hover a,
.top_btn02 div:hover a:visited {
  color: #fff;
}

/* ボタン03 04　共通
------------------------------ */
.top_btn03,
.top_btn04 {
  position: relative;
  width: 305px;
  font-size: 17px;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 5px;
  transition: 0.1s all;
  text-align: center;
}

.top_btn03:hover,
.top_btn04:hover {
  background-color: #fff;
  border: solid 3px #47a270;
  color: #47a270;
}

.top_btn03 span,
.top_btn04 span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
}

.top_btn03:hover > span,
.top_btn04:hover > span {
  transform: translateX(4px) translateY(-8px);
  transition: all 300ms 0s ease;
}

/* ボタン03
------------------------------ */
.top_btn03 {
  margin: 0 auto;
  color: #fff;
  background-color: #47a270;
  border: solid 3px #fff;
}

/* ボタン04
------------------------------ */
.top_btn04 {
  margin: 0 auto 18px;
  color: #919191;
  background-color: #fff;
  border: solid 3px #919191;
}

/* ########### 769px以下 ########### */
@media screen and (max-width: 768px) {
  .top_btn01 div,
  .top_btn02 div {
    width: 180px;
    font-size: 15px;
    margin: 0 auto;
    padding: 12px 0;
  }

  .top_btn03,
  .top_btn04 {
    width: 220px;
    font-size: 15px;
  }
}

/* ------------------------------
　　トップページ　追加
------------------------------ */
/* 安城市こども未来事業団とは
------------------------------ */
.top_about_wrap .top_about_inner .top_about_text {
  margin: 50px auto 30px;
  width: 100%;
}

.top_about_wrap .top_about_inner .top_about_text p {
  line-height: 200%;
}

/* ########### 769px以下 ########### */
@media screen and (max-width: 768px) {
  .top_about_wrap .top_about_inner .top_about_text {
    margin: 50px auto 30px;
    width: 90%;
  }

  .top_about_wrap .top_about_inner .top_about_text p {
    font-size: 15px;
    line-height: 160%;
  }
}

/* トップページのお知らせ
------------------------------ */
.top_news_wrap {
  width: 94%;
}

ul.top_news_box {
  margin: 10px auto 30px;
}

ul.top_news_box .top_news_line {
  display: block;
  padding: 20px 10px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
}

ul.top_news_box .top_news_line .headline-title span {
  padding: 0 0 4px 6px;
}

ul.top_news_box .top_news_line .headline-title:hover {
  color: #47a270;
  text-decoration: underline;
}

ul.top_news_box .top_news_line .headline-title:hover > span {
  transform: translateX(4px) translateY(0);
  transition: all 300ms 0s ease;
  text-decoration: none;
  color: #47a270;
}

.top_news-label {
  font-size: 12px;
  margin: 0 9px;
  padding: 3px 25px;
  color: #ffa500;
  font-weight: bold;
  background-color: #fff;
  border-radius: 12px;
  border: solid 2px #ffa500;
}

.acms-label-danger {
  font-size: 12px;
  margin: 0 9px;
  padding: 3px 9px;
  color: #fff;
  font-weight: bold;
  background-color: #47a270;
  border-radius: 18px;
}

img.top_news_arrow {
  width: 8px;
  height: auto;
}

/* ########### 769px以下 ########### */
@media screen and (max-width: 768px) {
  ul.top_news_box {
    margin: 45px auto 40px;
    font-size: 15px;
  }

  ul.top_news_box .top_news_line {
    display: block;
    padding: 12px 10px;
  }
}

/* トップページ　各園一覧へ
------------------------------ */
.enlist_wrap .enlist_inner {
  width: 100%;
  height: 653px;
  position: relative;
}

.enlist_wrap .enlist_inner .enlist_bgcolor {
  position: absolute;
  top: 175px;
  width: 100%;
  height: 478px;
  background-color: #ecf6f0;
  z-index: -1;
  background-image: url(../../images/bg_dots.svg);
}

.enlist_wrap .enlist_inner .enlist_img {
  max-width: 960px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.enlist_wrap .enlist_inner .enlist_img img {
  width: 100%;
  height: auto;
}

.enlist_wrap .enlist_inner .enlist_btn_box {
  position: absolute;
  top: 295px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
  background-color: #fff;
  text-align: center;
}

.enlist_wrap .enlist_inner .enlist_btn_box p.enlist_btn_box_text {
  line-height: 160%;
  padding: 10px 0 10px;
}

/* ########### 769px以下 ########### */
@media (max-width: 960px) {
  .enlist_wrap .enlist_inner {
    height: 650px;
  }

  .enlist_wrap .enlist_inner .enlist_bgcolor {
    top: 0;
    height: 650px;
  }

  .enlist_wrap .enlist_inner .enlist_btn_box {
    top: calc(100vw * 300 / 960);
    max-width: 480px;
    width: 86%;
  }
}

@media (max-width: 769px) {
  .enlist_wrap .enlist_inner {
    height: 540px;
  }

  .enlist_wrap .enlist_inner .enlist_bgcolor {
    top: 0;
    height: 540px;
  }

  .enlist_wrap .enlist_inner .enlist_btn_box p.enlist_btn_box_text {
    padding: 10px 0 10px;
    font-size: 15px;
  }
}

@media (max-width: 478px) {
  .enlist_wrap .enlist_inner {
    height: 450px;
  }

  .enlist_wrap .enlist_inner .enlist_bgcolor {
    top: 0;
    height: 450px;
  }
}

/* ------------------------------
　　トップページ以外　追加
------------------------------ */
/* ------------------------------
　　お知らせページ
------------------------------ */
.news_box {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #919191;
}

.news_title_box {
  margin: 0 auto 42px;
}

.news_title_box .news_title {
  font-size: 25px;
  font-weight: bold;
  margin: 0 auto 31px;
}

.news_title_box time {
  font-size: 18px;
}

.news_text {
  padding: 20px 0;
  display: block;
  color: #4c4c4c;
  border-bottom: 1px solid #919191;
}

.news_text time {
  display: inline-block;
  width: 88px;
}

.news_text a {
  display: inline-block;
  margin: 0 10px 0 20px;
  color: #4c4c4c;
}

.news_text a:hover {
  color: #47a270;
}

.news_text a:hover > span {
  transform: translateX(4px) translateY(0);
  transition: all 300ms 0s ease;
  text-decoration: none;
}

.news_text span {
  padding: 0 0 5px 6px;
  margin: 0;
  vertical-align: middle;
}

.news_pager {
  margin: 150px auto 0;
}

.news_pager.pager_span {
  margin: 0;
  padding: 0.3em 0.5em;
  border: solid 1px #e9e9e9;
  border-radius: 0.4em;
}

@media screen and (max-width: 768px) {
  .news_text {
    padding: 20px 10px;
  }

  .news_text time {
    width: 76px;
  }

  .news_text a {
    margin: 0 0 0 0;
  }
}

/* ------------------------------
　　法人概要・事業内容ページの設定
------------------------------ */
.seturitu_wrap {
  margin: 50px auto 0;
}

.seturitu_wrap p {
  margin: 50px auto 0;
  line-height: 180%;
  text-align: justify;
  text-justify: inter-ideograph;
}

.seturitu_wrap .sign_box {
  margin: 0 auto 60px;
  max-width: 300px;
  width: 100%;
}

.overview_houjin .houjin_box {
  padding: 30px 0 0;
}

.overview_houjin .houjin_box span.nen {
  display: inline-block;
  width: 8em;
  text-align: right;
}

.overview_houjin .houjin_box span.tuki {
  display: inline-block;
  width: 2.3em;
  text-align: right;
}

.overview_houjin .houjin_box span.hi {
  display: inline-block;
  width: 2.3em;
  text-align: right;
}

.overview_houjin .houjin_box span.indent {
  display: inline-block;
  padding-left: 13.6em;
  text-align: left;
}

.overview_houjin table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.overview_houjin table tr {
  border-top: solid 1px #999;
  text-align: left;
  line-height: 160%;
}

.overview_houjin table th {
  width: 22%;
  padding: 20px 0;
}

.overview_houjin table td {
  width: 78%;
  padding: 20px 0;
}

.overview_houjin table td .hidari {
  display: inline-block;
  width: 35%;
  vertical-align: top;
}

.overview_houjin table td .migi {
  display: inline-block;
  width: 60%;
}

.overview_houjin .houjin_map {
  margin: 20px auto 30px;
}

.overview_houjin .houjin_map iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 1024px) {
  .overview_houjin .houjin_box table td .hidari {
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }

  .overview_houjin .houjin_box table td .migi {
    display: inline-block;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .seturitu_wrap {
    font-size: 15px;
  }

  .seturitu_wrap p {
    width: 90%;
    margin: 30px auto 0;
    line-height: 160%;
  }

  .seturitu_wrap .sign_box {
    margin: 0 auto 60px;
    max-width: 240px;
  }

  .seturitu_wrap .sign_box p {
    font-size: 14px;
  }

  .overview_houjin {
    margin: 0 auto;
    width: 90%;
    font-size: 15px;
  }

  .overview_houjin .houjin_box span.indent {
    padding-left: 0;
  }
}

/* ------------------------------
　　子ブログ
------------------------------ */
/* 子ブログ　園の詳細ページ
------------------------------ */
.en_details {
  overflow: hidden;
}

.en_details .facilities_img_box {
  margin: 60px auto 55px;
  text-align: center;
}

.en_details .facilities_img_box img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.en_details table.table01 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.en_details table.table01 tr {
  border-top: solid 1px #999;
  text-align: left;
  line-height: 160%;
}

.en_details table.table01 th {
  width: 22%;
  padding: 20px 0;
}

.en_details table.table01 td {
  width: 78%;
  padding: 20px 0;
}

/* 子ブログトップページのリンクボタン
------------------------------ */
.blog_link_warp {
  margin: 0;
  padding: 0;
}

.blog_link_inner {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  background-color: #fffcdb;
}

.blog_link_box_half {
  display: inline;
  width: 100%;
}

.blog_link_box {
  display: inline-block;
  max-width: 200px;
  width: 50%;
}

.blog_link_box .blog_link_box_inner {
  position: relative;
  margin: 42px 6px 0;
}

.blog_link_box .blog_link_box_inner .blog_link_box_img {
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.blog_link_box .blog_link_box_inner .blog_link_box_img div {
  padding: 20px 20px 0;
  overflow: hidden;
}

.blog_link_box .blog_link_box_inner .blog_link_box_img div img {
  max-height: 60px;
}

.blog_link_box .blog_link_box_inner .blog_link_box_text {
  position: relative;
  padding: 21px 0;
  width: 100%;
  font-size: 16px;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  color: #47a270;
}

.blog_link_box .blog_link_box_inner .blog_link_box_text span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
}

.blog_link_box .blog_link_box_inner .blog_link_box_text:hover {
  opacity: 1;
}

.blog_link_box .blog_link_box_inner a div.blog_link_box_text {
  background-color: #47a270;
  color: #fff;
}

.blog_link_box .blog_link_box_inner a div.blog_link_box_text:hover {
  opacity: 0.8;
}

.blog_link_box
  .blog_link_box_inner
  a
  div.blog_link_box_text:hover
  .blog_link_box_img
  img {
  transform: translateY(-10px) scale(1.2, 1.2);
  transition: 0.5s all;
}

@media screen and (max-width: 1020px) {
  .blog_link_box {
    margin: 0 5vw;
    padding: 0;
    font-size: 14px;
  }

  .blog_link_box .blog_link_box_inner {
    margin: 20px auto;
  }

  .blog_link_box .blog_link_box_inner .blog_link_box_text {
    border-radius: 0;
  }

  .blog_link_box .blog_link_box_inner .blog_link_box_text .blog_link_box_img {
    top: -10px;
    left: 0;
  }

  .blog_link_box
    .blog_link_box_inner
    .blog_link_box_text
    .blog_link_box_img
    img {
    height: 50px;
    width: auto;
  }

  .blog_link_box .blog_link_box_inner .blog_link_box_text,
  .blog_link_box .blog_link_box_inner a div.blog_link_box_text {
    border-radius: 5px;
  }

  .blog_link_box_half {
    display: inline-block;
    width: 100%;
  }
}

/*追加*/
@media screen and (max-width: 767px) {
  .blog_img_item .facilities_img_box {
    margin: 0 auto 40px;
  }

  .blog_img_item:nth-of-type(1) .facilities_img_box {
    margin: 40px auto 16px;
  }

  .en_details .facilities_img_box img {
    max-width: 100%;
  }
}
/*追加ここまで*/

@media screen and (max-width: 600px) {
  .blog_link_box {
    margin: 0 1vw;
    max-width: 150px;
    width: 49%;
    font-size: 12px;
  }

  .blog_link_box .blog_link_box_inner {
    margin: 10px auto;
  }

  .blog_link_box .blog_link_box_inner .blog_link_box_text {
    padding: 14px 0;
  }

  .blog_link_box .blog_link_box_inner .blog_link_box_text span {
    right: 8px;
    margin: auto;
  }

  .blog_link_box_img img {
    display: none;
  }
}

/* ------------------------------
園の一覧
------------------------------ */
.childblog_wrap {
  margin: 32px auto 5px;
}

.childblog_wrap p {
  margin: 0 auto;
  color: #4c4c4c;
  font-weight: lighter;
  font-size: 15px;
}

.childblog_wrap .childblog_inner {
  margin: 0 auto;
  padding: 40px 0 25px;
  width: 100%;
  clear: both;
  text-align: center;
}

.childblog_wrap .childblog_box {
  display: inline-block;
  width: 24.5%;
}

.childblog_wrap .childblog_box div {
  margin: 0 auto;
}

.childblog_wrap .childblog_box:hover {
  opacity: 0.8;
}

.childblog_wrap .childblog_box .childblog_box_img {
  max-width: 220px;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.childblog_wrap .childblog_box .childblog_box_img img {
  transition: 0.5s all;
}

.childblog_wrap .childblog_box .childblog_box_img img:hover {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}

.childblog_wrap a {
  display: block;
  padding: 10px 0 25px;
  color: #4c4c4c;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .childblog_wrap {
    font-size: 15px;
  }

  .childblog_wrap .childblog_inner {
    padding: 20px 0 50px;
  }

  .childblog_wrap .childblog_box {
    width: 49%;
  }

  .childblog_wrap .childblog_box .childblog_box_img {
    height: 180px;
  }
}

/* ------------------------------
子ブログ　園からのお知らせ
------------------------------ */
.blog_title_box {
  text-align: center;
}

.blog_title_box img {
  margin: 50px auto 10px;
  max-width: 110px;
  width: 100%;
  height: auto;
}

.blog_title_box h2 {
  margin-top: 0;
}

.section-bg_blog {
  padding: 25px 0 60px;
}

.ennews_emerinfo_box {
  margin: 0 auto 70px;
}

.ennews_emerinfo_box .ennews_emerinfo_title {
  margin: 0 auto;
  text-align: center;
  background-color: #f4f4f4;
}

.ennews_emerinfo_box .ennews_emerinfo_title p {
  line-height: 50px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.en_news_notfound {
  width: 100%;
  border-top: solid 1px #919191;
  border-bottom: solid 1px #919191;
  line-height: 240%;
}

.new_label {
  display: inline-block;
  padding: 2px 5px;
  line-height: 1.5;
  vertical-align: middle;
  border-radius: 3px;
  font-size: 11px;
  color: #fff;
  background-color: #f2c43c;
}

@media screen and (max-width: 768px) {
  .en_news_box {
    margin: 0 auto;
    width: 100%;
  }

  .ennews_emerinfo_box {
    margin: 0 auto 40px;
  }
}

/* ------------------------------
子ブログ　園の1日
------------------------------ */
.timeline_box {
  margin: 50px auto 10px;
}

.timeline_box dt {
  width: 6em;
  float: left;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.timeline_box dt::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #47a270;
  position: absolute;
  right: 10px;
  top: 0;
}

.timeline_box dd {
  padding: 0 0 60px 6em;
  background-image: url(../../images/line.png);
  background-repeat: repeat-y;
  background-position: left 59px top;
  font-size: 18px;
}

.timeline_box dd:last-child {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .timeline_box {
    margin: 50px 5% 0;
  }

  .timeline_box dt {
    width: 5.2em;
    font-size: 16px;
  }

  .timeline_box dt::after {
    width: 16px;
    height: 16px;
    border-radius: 22px;
  }

  .timeline_box dd {
    padding: 0 0 45px 4em;
    font-size: 15px;
    background-position: left 24px top;
  }
}

.en_day_imgbox {
  margin: 0 auto;
  text-align: center;
}

.en_day_imgbox img {
  width: 50%;
  height: auto;
}

.en_day_imgbox img:nth-child(1) {
  padding: 100px 0 50px;
}

.en_day_imgbox img:nth-child(2) {
  padding: 220px 0 0;
}

.en_day_imgbox img:nth-child(3) {
  padding: 50px 0 0;
}

/* ------------------------------
子ブログ　年間行事
------------------------------ */
.events_box .imgbox {
  position: sticky;
  position: -webkit-sticky;
  top: 40%;
  float: left;
}

.events_box .imgbox img {
  width: 140px;
  height: auto;
}

.events_box_month {
  margin: 0 auto 35px;
  width: 60%;
}

.events_box_month h3 {
  margin-bottom: 0;
}

.events_box:nth-last-of-type(1) .events_box_month:nth-last-of-type(1) {
  margin: 0 auto 15px;
}

.events_top_text {
  margin: 40px auto 70px;
}

.events_top_text p {
  line-height: 160%;
}

.events_box_text {
  padding: 20px 20px;
  background-color: #f4f4f4;
  border-bottom-left-radius: 20px;
}

span.month {
  float: right;
  padding-right: 18px;
  font-size: 15px;
  font-weight: lighter;
}

@media screen and (max-width: 768px) {
  .events_top_text {
    width: 96%;
    margin: 40px auto 50px;
  }

  .events_top_text p {
    line-height: 160%;
  }

  .events_box {
    width: 100%;
  }

  .events_box .imgbox {
    top: 50vh;
    float: left;
  }

  .events_box .imgbox img {
    width: 80px;
    height: auto;
  }

  .events_box_month {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .events_box .imgbox img {
    display: none;
  }

  .events_box .events_box_month {
    width: 90%;
  }
}

/* ------------------------------
園のフッター画像
------------------------------ */
.footer_enbg_img {
  width: 100%;
}

.footer_enbg_img img {
  width: 100%;
  vertical-align: bottom;
}

/* ------------------------------
// 子ブログ　園詳細ページのユニットテーブル
------------------------------ */
.table_details table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.table_details table tr {
  border-top: solid 1px #999;
  text-align: left;
  line-height: 160%;
}

.table_details table th {
  display: inline-block;
  width: 30%;
  padding: 20px 0;
  vertical-align: top;
}

.table_details table td {
  display: inline-block;
  width: 69%;
  padding: 20px 0;
}

iframe.table_details_map {
  width: 100%;
  height: 680px;
}

@media screen and (max-width: 768px) {
  .table_details table {
    font-size: 15px;
  }

  .table_details table th {
    padding: 10px 0 5px;
    width: 100%;
  }

  .table_details table td {
    padding: 0 0 10px;
    width: 100%;
  }

  iframe.table_details_map {
    height: 50vh;
  }
}

/* ------------------------------
添付ファイルユニット(unit_file)
------------------------------ */
.fileup_unit_wrap {
  margin: 0 auto 60px;
  width: 100%;
}

.fileup_unit_wrap .fileup_unit_box:nth-of-type(1) {
  border-top: solid 1px #919191;
}

.fileup_unit_wrap .fileup_unit_box {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  padding: 18px 0;
  border-bottom: solid 1px #919191;
}

.fileup_unit_wrap .fileup_unit_box a {
  vertical-align: middle;
}

.fileup_unit_wrap .fileup_unit_box a img {
  padding: 0;
  max-width: 24px;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.fileup_unit_wrap .fileup_unit_box p {
  margin: 0 auto;
  padding: 3px 15px 0 30px;
  vertical-align: middle;
  width: 94%;
}

.fileup_unit_wrap .fileup_unit_box p span {
  padding: 0 0 5px 6px;
  margin: 0;
  vertical-align: middle;
}

.fileup_unit_wrap .fileup_unit_box p img {
  margin-left: 15px;
  vertical-align: middle;
}

.fileup_unit_wrap .fileup_unit_box:hover > p.fileup_unit_p {
  color: #47a270;
  text-decoration: underline;
}

.fileup_unit_wrap .fileup_unit_box:hover > p.fileup_unit_p > span {
  transform: translateX(4px) translateY(0);
  transition: all 300ms 0s ease;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .fileup_unit_wrap .fileup_unit_box p {
    width: 83.33333%;
  }
}

/* ------------------------------
// 追加ユニット　ファイルからの拡張(custom_file)
// 入園案内
------------------------------ */
.unit_file_box {
  margin: 10px 0 20px;
  display: table;
}

.unit_file_box div {
  display: table-cell;
  margin: 0;
  padding: 0;
  height: auto;
  vertical-align: middle;
}

.unit_file_box div img {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  width: 24px;
  height: auto;
}

.unit_file_box a:hover {
  text-decoration: none;
}

.unit_file_box p {
  display: table-cell;
  width: 100%;
  margin: 0 0 0 15px;
  vertical-align: middle;
}

.unit_file_box p:hover {
  color: #47a270;
  text-decoration: underline;
}

/* ------------------------------
// 追加ユニット　フロート 解除
------------------------------ */
.float_clear {
  clear: both;
  margin: 60px auto;
}

/* ------------------------------
　　追加
------------------------------ */
li a.top_news_line time.headline-dat {
  display: inline-block;
  width: 88px;
}

li a.top_news_line span.headline-title {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  li a.top_news_line time.headline-dat {
    width: 76px;
  }
}

/* ------------------------------
　　フッター
------------------------------ */
/* フッター内会社情報 */
.foot-wrapper {
  padding: 50px 0 30px;
  background: #47a270;
}

.footer_logo_box img {
  padding: 0 0 20px 0;
  max-width: 390px;
  width: 100%;
}

.company-about {
  margin: 0 0 30px 0;
  color: #fff;
}

.company-name {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 20px;
  font-style: normal;
}

.company-detail {
  margin: 0 0 0 0;
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  line-height: 180%;
}

.company-detail a {
  color: #fff;
}

.company-detail a:hover {
  text-decoration: underline;
}

/* フッターナビゲーション */
.footer-nav {
  float: right;
  width: 650px;
  max-width: 100%;
  margin: 0 -10px;
}

.footer-nav-item {
  display: block;
  float: left;
  width: 33%;
  margin: 0 0 10px 0;
  padding: 0 10px;
  vertical-align: top;
  box-sizing: border-box;
}

.footer-nav-title {
  margin: 0 0 5px 0;
  color: #fff;
  font-size: 14px;
}

.footer-nav-list {
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
  font-size: 14px;
}

.footer-nav-list li {
  line-height: 1.7;
}

.footer-nav-list a {
  color: #fff;
}

span.left {
  display: inline-block;
  width: 60px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .foot-wrapper {
    padding: 20px 0 20px;
  }

  .footer-nav {
    display: none;
  }
}

/* ページの上に戻るボタン */
.page-top a {
  text-decoration: none;
}

.page-top a:focus {
  display: block;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 1000;
  display: block;
  width: 85px;
  height: 85px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url("../../images/top-btn.png") no-repeat center;
  transform: translateZ(0);
  right: calc(20px + constant(safe-area-inset-right));
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.no-js .page-top-btn {
  /* jsが無効の環境のとき */
  opacity: 0.6;
}

.page-top-btn-appear {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .page-top-btn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .page-top-btn:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
  }
}

/* フッター内各SNSアカウントのリンク集 */
.sns-list {
  margin: 0 -5px 30px 15px;
  padding: 0;
  list-style: none;
}

.sns-list-item {
  float: left;
  margin: 0 5px;
}

.sns-list-item a:hover,
.sns-list-item a:visited,
.sns-list-item a:active,
.sns-list-item a:focus {
  text-decoration: none;
}

/* 各種SNSボタン */
.sns-list-item .sns-list-facebook {
  /* Facebook */
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background: #1877f2;
  border-radius: 4px;
  font-size: 19px;
}

.sns-list-item .sns-list-facebook:before {
  vertical-align: middle;
}

.sns-list-item .sns-list-twitter {
  /* Twitter */
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background: #55acee;
  border-radius: 4px;
  font-size: 19px;
}

.sns-list-item .sns-list-twitter:before {
  vertical-align: middle;
}

.sns-list-item .sns-list-youtube {
  /* YouTube */
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background: #cd201f;
  border-radius: 4px;
  font-size: 19px;
}

.sns-list-item .sns-list-youtube:before {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .sns-list {
    float: right;
    margin: 0 -10px;
  }

  .sns-list-item {
    margin: 10px;
  }

  .sns-list-item a:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
  }
}

.footer_citylogo_box {
  margin: 0 auto;
  width: 160px;
  height: 50px;
  float: right;
  margin-right: 1%;
  background-color: #fff;
  text-align: center;
}

.footer_citylogo_box .footer_citylogo_img {
  padding: 6px 0 0 0;
}

.footer_citylogo_box img {
  max-width: 120px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .footer_citylogo_box {
    width: 140px;
    height: 46px;
  }

  .footer_citylogo_box .footer_citylogo_img {
    padding: 6px 0 0;
  }

  .footer_citylogo_box img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }
}

/* 著作権表示 */
.copyright {
  background: #7d7d7d;
  padding: 22px 0;
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.copyright-text {
  margin: 0 auto;
}

.copryright-logo {
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .copyright {
    padding: 12px 0;
    font-size: 10px;
  }

  .copyright p {
    line-height: 120%;
  }
}

/* ------------------------------
　　ヘッダー
------------------------------ */
.head-wrapper-sp {
  position: fixed;
  top: 0;
  box-shadow: 0 12px 10px -10px #d3d3d3;
  z-index: 100;
  background-color: #fff;
  width: 100%;
}

/* サイト名 */
.site-name {
  margin: 0 0;
}

.header-stack .site-name {
  margin: 30px 0 20px;
}

.site-name a {
  color: #47a270;
}

.site-name a:hover,
.site-name a:focus,
.site-name a:active,
.site-name a:visited {
  color: #47a270;
}

.site-logo {
  display: inline-block;
  width: 240px;
  height: auto;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

.site-name-text {
  display: inline;
  vertical-align: middle;
}

.edit-link {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

@media (min-width: 768px) {
  .head-wrapper {
    box-shadow: 0 12px 10px -10px #d3d3d3;
    z-index: 100;
  }

  .site-name {
    font-size: 24px;
  }

  .header-stack .site-name {
    text-align: center;
  }

  .header {
    display: table;
    width: 100%;
  }

  .header-stack .header {
    display: block;
  }

  .header-logo {
    width: 100%;
    vertical-align: middle;
  }

  .header-stack .header-logo {
    display: block;
  }

  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}

@media (min-width: 1024px) {
  .head-wrapper-sp {
    position: relative;
    box-shadow: none;
  }

  .site-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 10px 0 0;
  }

  .header-logo {
    width: 40%;
  }

  .header-stack .header-logo {
    display: block;
    width: 100%;
  }

  .header-nav {
    width: 100%;
  }

  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}

/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
  /* 固定したときの高さを保つ */
  padding: 6px 0 8px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
  font-size: 17px;
  line-height: 180%;
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0
    calc(5px + constant(safe-area-inset-left));
  box-sizing: border-box;
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
  display: inline-block;
  padding: 9px 12px;
  background: #47a270;
  color: #fff;
  box-sizing: border-box;
}

a .nav-menu-btn {
  color: #fff;
}

.nav-menu-btn:hover {
  color: #fff;
  text-decoration: none;
}

.nav-menu-btn .acms-icon-sort {
  display: inline-block;
}

.nav-menu-btn-text {
  display: inline-block;
  margin: 0 0 0 5px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}

/* モバイル時ヘッダー アイコン */
.nav-menu-action {
  display: table;
  float: right;
  margin: 0;
  padding: 0;
}

.nav-menu-action-item {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
}

.nav-menu-action-link {
  color: #333;
}

.nav-menu-action-link:hover,
.nav-menu-action-link:active,
.nav-menu-action-link:visited,
.nav-menu-action-link:focus {
  color: #333;
  text-decoration: none;
}

.navbar li a {
  display: block;
  padding: 10px;
  color: #333;
  font-size: 16px;
}

.navbar li a:hover,
.navbar li a:focus,
.navbar li a:active {
  color: #fff;
  text-decoration: none;
  background: #47a270;
}

@media (min-width: 1024px) {
  .header-stack .navbar li {
    display: table-cell;
    float: none;
    border-left: 1px solid #eee;
  }

  .navbar li ul {
    /* 二階層目 */
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
  }

  .navbar li li {
    margin: 0;
  }

  .header-stack .navbar li li {
    display: block;
    border: 0;
  }

  .navbar li a {
    /* 一階層目のリンクのみ */
    padding: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    -webkit-transition: border 0.25s ease-out;
    transition: border 0.25s ease-out;
  }

  .navbar li a:hover,
  .navbar li a:focus,
  .navbar li a:active {
    color: #333;
    background: transparent;
  }

  .header-stack .navbar li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }

  .navbar li.stay a {
    /* 一階層目のリンクのみ */
    border-bottom: 4px solid #47a270;
    margin: 0 auto;
    width: 80%;
    text-align: center;
  }

  .navbar li.stay a.btn-attention {
    border: 0;
  }

  .navbar li:hover ul {
    /* 二階層目 */
    z-index: 10000;
    display: block;
    -webkit-animation: 0.8s fade-in;
    animation: 0.8s fade-in;
  }

  .navbar li li {
    /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: #47a270;
    border: 0;
    border-top: 1px solid #47a270;
  }

  .navbar li li:first-child {
    border: 0;
  }

  .navbar li li a {
    margin: 0;
    padding: 10px 15px;
    color: #fff;
    border: 0;
  }

  .navbar li li a:hover {
    color: #fff;
    background: #47a270;
    border: 0;
  }

  .navbar a.btn-attention {
    /* ボタン（色付き） */
    background: #47a270;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    border: 0;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 3px;
    border: 0;
  }

  .navbar a.btn-attention:hover,
  .navbar a.btn-attention:visited {
    color: #fff;
    text-decoration: none;
  }

  .navbar a.btn-attention:focus,
  .navbar a.btn-attention:active {
    color: #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  }

  .navbar a.btn-attention:hover {
    color: #fff;
    background-color: #47a270;
    background-image: linear-gradient(to bottom, #47a270, #47a270);
    border: 0;
  }

  .navbar a.btn-attention:active,
  .navbar a.btn-attention:focus {
    background: #47a270;
  }
}

.mobile-navbar-list li {
  border-bottom: solid 1px #e5e5e5;
  width: 100%;
}

.mobile-navbar-list li a {
  margin: 0 auto;
  padding: 20px 0;
  line-height: 100%;
  width: 160px;
  text-align: center;
  font-size: 16px;
}

.mobile-navbar-list li a:hover {
  text-decoration: none;
}

.mobile-navbar-list .stay a {
  /* 一階層目のリンクのみ */
  border-bottom: 4px solid #47a270;
}

.mobile-nav-inner .site-name {
  margin: 0 auto 10%;
  text-align: center;
}

@media (min-width: 1024px) {
  .header-logo {
    padding: 12px 0 0;
  }

  .navbar ul li a {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .navbar ul li a {
    font-size: 16px;
  }
}

/* ------------------------------
　　サイドメニュー
------------------------------ */
/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 2px;
  margin: 8px 0;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 1px;
  transition: 0.1s all;
}

.icon-toggle-menu:before,
.icon-toggle-menu:after {
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: 0.3s all;
  content: "";
}

.icon-toggle-menu:before {
  top: -8px;
}

.icon-toggle-menu:after {
  bottom: -8px;
}

[aria-expanded="true"] .icon-toggle-menu {
  background: transparent;
}

[aria-expanded="true"] .icon-toggle-menu:before {
  width: 32px;
  transform: translate(-4px, 7px) rotate(45deg);
}

[aria-expanded="true"] .icon-toggle-menu:after {
  width: 32px;
  transform: translate(-4px, -9px) rotate(-45deg);
}

.icon-toggle-menu02 {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 100%;
}

[aria-expanded="true"] .icon-toggle-menu02 {
  display: none;
}

.icon-toggle-menu03 {
  display: block;
  color: #fff;
  font-size: 0px;
  line-height: 100%;
}

[aria-expanded="true"] .icon-toggle-menu03:after {
  font-size: 10px;
  content: "CLOSE";
  line-height: 100%;
}

[aria-expanded="true"] .nav-menu-btn {
  background-color: #d3d3d3;
  padding: 9px 10.4px;
}

/* ナビゲーションバー */
@media (max-width: 1023px) {
  .is-locked {
    overflow: hidden;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 6px;
    background-color: #fff;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.3s;
    transition-property: all;
  }

  .mobile-nav.is-active {
    display: block;
  }

  .mobile-nav.is-opened {
    opacity: 1;
    transform: translate(0, 58px);
  }

  .mobile-nav-wrap {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-inner {
    padding: 0;
  }

  .mobile-nav-inner + .mobile-nav-inner {
    border-top: 1px solid #ccc;
  }

  .mobile-navbar {
    width: 100%;
  }

  .mobile-navbar-list {
    display: block;
    margin: 20px 0;
    padding: 0;
    line-height: 2.4;
    list-style: none;
    font-size: 18px;
  }

  .mobile-navbar-list li {
    display: block;
  }

  .mobile-navbar-list .navbar-btn {
    margin-top: 10px;
  }

  .mobile-navbar-list a {
    display: block;
  }

  .mobile-navbar-list a:not(.btn-attention),
  .mobile-navbar-list a:not(.btn-attention):hover,
  .mobile-navbar-list a:not(.btn-attention):visited,
  .mobile-navbar-list a:not(.btn-attention):active,
  .mobile-navbar-list a:not(.btn-attention):focus {
    color: #333;
  }

  .mobile-navbar-list a.btn-attention {
    font-weight: normal;
    background: transparent;
    border: 1px solid #47a270;
    color: #47a270;
    text-align: center;
    font-size: 16px;
  }

  .mobile-navbar-list .mobile-navbar-list {
    margin: -5px 0 10px 10px;
    line-height: 2;
    font-size: 14px;
  }

  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention),
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):hover,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):visited,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):active,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):focus {
    color: #666;
  }

  .mobile-nav-side {
    margin: 20px 0;
  }

  .mobile-nav-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav-side-item {
    display: block;
    margin: 0 0 10px 0;
  }

  .mobile-nav-side-link {
    color: #333;
    display: block;
  }

  .mobile-nav-side-link:hover,
  .mobile-nav-side-link:visited,
  .mobile-nav-side-link:active,
  .mobile-nav-side-link:focus {
    color: #333;
  }

  .mobile-navbar-footer {
    margin: 15px 0 0 0;
  }

  .mobile-navbar-footer .sns-list {
    margin: 0 0 30px;
  }
}

/* ------------------------------
　　// 追記
------------------------------ */
.nav_wrap {
  width: 100%;
}

.nav_inner {
  margin: 0 auto;
  text-align: center;
}

.nav_box nav {
  list-style-type: none;
}

.nav_box nav ul {
  padding: 0;
}

.nav_box nav ul li {
  width: 13.5%;
  display: inline-block;
  line-height: 30px;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}

.nav_box nav ul li a {
  color: #333;
  font-size: 16px;
}

.nav_box nav ul li a:hover,
.nav_box nav ul li a:visited,
.nav_box nav ul li a:active,
.nav_box nav ul li a:focus {
  color: #333;
  text-decoration: none;
}

.nav_box nav ul li + li {
  border-left: 0;
  border-right: 1px solid #999;
}

.nav_box nav li {
  display: inline-block;
  position: relative;
  color: #555;
  text-decoration: none;
}

.nav_box nav li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 80%;
  height: 4px;
  margin: 0 10%;
  background: #47a270;
  transform: scale(0, 1);
  transition: 0.4s;
}

.nav_box nav li:hover:before {
  transform: scale(1);
}

.header_space {
  padding: 0;
}

.header_space-no1 {
  padding: 0;
}

@media (max-width: 1024px) {
  .header_space {
    padding: 40px 0;
  }

  .header_space-no1 {
    padding: 35px 0;
  }

  .head-wrapper {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 9999999;
  }
}

/* ------------------------------
20221101追加
園の画像を左右に追加
------------------------------ */

.blog_img_wrap {
  display: flex;
}

.blog_img_wrap .blog_img_item:nth-of-type(1) {
  order: 2;
}

.blog_img_wrap .blog_img_item:nth-of-type(2) {
  order: 1;
}

.blog_img_wrap .blog_img_item:nth-of-type(3) {
  order: 3;
}

@media screen and (max-width: 767px) {
  .blog_img_wrap {
    display: inline-block;
  }

  .blog_img_wrap .blog_img_item:nth-of-type(1) {
    order: 1;
  }

  .blog_img_wrap .blog_img_item:nth-of-type(2) {
    order: 2;
  }

  .blog_img_wrap .blog_img_item:nth-of-type(3) {
    order: 3;
  }
}
