@charset "UTF-8";
/*======*/
/* グローバルメニュー */
/*======*/
/* PCメニュー */
 @media (min-width: 991px) { 
/* チェックボックスを非表示 */
.menu-checkbox, .menu-button {
  display: none;
}
/* グローバルメニューの装飾 */
.drawer-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.drawer-menu > ul > li {
  /* 均等にする場合は100%に */
  /* width: 100%; */
  cursor: pointer;
  margin-left: .5em;
  margin-right: .5em;
	font-size: 15px;
}
.drawer-menu > ul > li > a {
  text-align: center;
  padding: 0.2em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
	color: #3F3D3C;
	text-decoration: none;
	position: relative;
	
	
}
	 .slider a{
		 text-decoration: none;
	 }
.drawer-menu > ul > li > a::after {
  content: '';
	width: 0%;
	height: 1px;
	background-color: #D6C677;
	position: absolute;
	left: 0;
	bottom: 0;
	transition : all 0.5s ease 0s;
}
.drawer-menu > ul > li > a:hover::after {
	width: 100%;
}
/* 背景色は　liで装飾 */
.menu-background {
  display: none;
}
/* dropdown　ilにクラス入れる */
/* WordPressのクラス使うならmenu-item-has-children　ilにクラス入れる */
.dropdown > a, .menu-item-has-children > a {
  pointer-events: none;
}
.dropdown, .menu-item-has-children {
  position: relative;
}
.dropdown ul, .menu-item-has-children ul {
    display: none;
    width: 140px;
    position: absolute;
    top: 99% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    padding: 0.5em;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid #E6E7E8;
	box-shadow: -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.30);
    box-shadow: 3px 3px 3px rgba(0,0,0,0.30);
}
.dropdown:hover ul, .menu-item-has-children:hover ul {
  display: block;
  animation: dropdown .7s ease;
}
.dropdown ul li, .menu-item-has-children ul li {
  border-bottom: 1px solid #E6E7E8;
}
.dropdown ul li a, .menu-item-has-children ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  text-decoration: none;
  position: relative;
  padding: .6em 0;
}
.dropdown ul li a:hover, .menu-item-has-children ul li a:hover {
  color: rgba(51, 51, 51, 0.7);
}
}
@keyframes dropdown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* スマホメニュー */
@media (max-width: 992px) {
  /* チェックボックスを非表示 */
  .menu-checkbox {
    display: none;
  }
  /* メニューボタンの装飾 */
  .menu-button {
    display: block;
    position: absolute;
	  top: 36px;
	  right: 30px;
    z-index: 210;
    height: 30px;
    width: 40px;
    cursor: pointer;
  }
	.menu-checkbox:checked ~ .menu-button {
    position: fixed;
  }
  .menu-button::before, .menu-button::after {
    content: '';
    transition: .3s;
  }
  .menu-button::before, .menu-button::after, .menu-button span {
    display: block;
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    margin-top: -1px;
    background-color: #3F3D3C;
  }
  .menu-button::before {
    top: 0;
  }
  .menu-button::after {
    bottom: 0;
  }
  .menu-button span {
    top: 50%;
  }
  /* メニューボタンのアニメーション */
  .menu-checkbox:checked ~ .menu-button::before {
    top: 50%;
    transform: rotate(45deg);
	  background-color: #333;
  }
  .menu-checkbox:checked ~ .menu-button::after {
    top: 50%;
    transform: rotate(-45deg);
	  background-color: #333;
  }
  .menu-checkbox:checked ~ .menu-button span {
    display: none;
  }
  /* ドロワーメニューの装飾 */
  .drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 100vh;
    width: 100vw;
    transform: translateY(-100%);
    transition: .5s;
    background-color: #fff;
	  transition: .3s;
  }
  .drawer-menu > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
	  position: absolute;
	  top:50%;
		left:50%;
		transform: translate(-50%, -50%);
	  height: auto;
  }
  .drawer-menu > ul > li {
  }
  .drawer-menu > ul > li > a {
    display: block;
    padding: 15px;
    color: #3F3D3C;
    text-decoration: none;
	  text-align: center;
  }
  /* ドロワーメニューの開閉 */
  .menu-checkbox:checked ~ .drawer-menu {
    transform: translateY(0);
  }
  /* ドロワーメニューの背景 */
  .menu-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }
  .menu-checkbox:checked ~ .menu-background {
    display: block;
  }
  /* dropdown　ilにクラス入れる */
  .dropdown > a, .menu-item-has-children > a {
    padding-bottom: 0em !important;
	 
  }
	
  .dropdown ul, .menu-item-has-children ul {
    margin-left: 1em;
    margin-bottom: 1em;
    margin-right: 1em;
    list-style-type: none;
  }
	.menu-item-has-children ul {
		padding: 0 1.5em;
  }
  .dropdown ul li a, .menu-item-has-children span {
    color: #3F3D3C;
	   padding: 15px;
	  text-decoration: none;
	  display: block;
	  
  }
	.menu-item-has-children ul li a {
		text-decoration: none;
  }
	.menu-item-has-children ul li a span {
		  color: #3F3D3C;
		display: block;
	   padding: 5px 0;
  }
	.menu-item-has-children > span {
		  padding: 15px 0px 10px 0px;
		text-align: center;
  }
}
@media (max-width: 768px) {
.menu-button {
	  top: 25px;
	  right: 30px;
  }
}

@media (max-width: 576px) {
	.menu-button {
	  top: 25px;
	  right: 20px;
  }
	
	}
