@charset "UTF-8";


/* 入園案内 子メニュー */
#top-head #global-nav ul li.has-child {
  position: relative;
}

/* 子メニュー外枠 */
#top-head #global-nav ul li.has-child > .child-nav {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 140px;
  padding: 15px;
  background: #f8fae9;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 100;
}

/* hover表示 */
#top-head #global-nav ul li.has-child:hover > .child-nav {
  opacity: 1;
  visibility: visible;
}
/* 子項目 */
#top-head #global-nav ul li.has-child > .child-nav > li {
  width: 100%;
  display: block;
  border: none;
}
/* ボタン */
#top-head #global-nav ul li.has-child > .child-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  border-radius: 8px;
  color: #4f4034;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* 項目間 */
#top-head #global-nav ul li.has-child > .child-nav > li + li {
  margin-top: 10px;
}

/* 矢印 */
#top-head #global-nav ul li.has-child > .child-nav > li > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #97c642;
  border-right: 2px solid #97c642;
  transform: rotate(45deg);
}

/* hover */
#top-head #global-nav ul li.has-child > .child-nav > li > a:hover {
  background: #97c642;
  color: #fff;
}

#top-head #global-nav ul li.has-child > .child-nav > li > a:hover::after {
  border-color: #fff;
}