@charset "utf-8";
/* ドロップダウンメニュー*/
/*===================================*/

/*ナビゲーションメニューグレーアウト*/
#g-nav-list > ul > li.m10 > a,
#g-nav-list > ul > li.m20 > a,
#g-nav-list > ul > li.m30 > a{
	color: #B0B0B0;
	pointer-events: none;
}
#g-nav-list > ul > li.m10 > a::after,
#g-nav-list > ul > li.m20 > a::after,
#g-nav-list > ul > li.m30 > a::after{
	content: none;
}
#g-nav {
	font-family: 'Zen Maru Gothic', sans-serif!important;
}
#g-nav ul {
  position: relative;
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	gap: 20px;
	font-size: 16px;
	margin-right: 1em;
}
#g-nav ul ul {
  display: block;
  margin: 0;
}
#g-nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #494949;
  padding: 0 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  text-align: center;
}
/*
#g-nav ul li a:hover {
  color: #69655E !important;
  font-weight: bold;
}
*/
#g-nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

#g-nav ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ff7b89;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#g-nav ul li a:hover::after {
  transform: scale(1, 1);
}


#g-nav ul > li > ul > li > a {
  padding: 20px 10px;
  text-align: center;
}
#g-nav ul > li > ul > li > a span {
  /*margin-left: 20px;*/
}
#g-nav li.has-child ul {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	gap:0;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ECE3D3;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 70vw;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
}
#g-nav li.has-child.m10 ul {
		background: #F4DADA;
	}
#g-nav li.has-child.m20 ul {
		background: #BCD9D9;
	}
#g-nav li.has-child.m30 ul {
		background: #DBE9B7;
	}
#g-nav li.has-child.m40 ul {
		background: #E4DCCB;
	}
#g-nav li.has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}
#g-nav li.has-child:hover > ul > li {
  box-sizing: border-box;
  border-right: 2px solid #D7CEBE;
}
#g-nav li.has-child:hover > ul > li:last-child {
  border-right: none;
}
#g-nav li.has-child ul li {
  width: 50%;
}

#g-nav li.has-child ul li.triple {
  width: 33.3%;
}
#g-nav li.has-child ul li.p_smp_item010 {
  width: 50%;
}
/* misc */
#g-nav ul li.sp_misc {
  display: none;
}
#g-nav li.has-child ul li a {
  margin-left: 0;
  color: #726E68 !important;
  font-size: 1em;
}
#g-nav li.has-child ul li a:hover {
  background-color: #D4CBBB;
  color: #fff;
}
@media screen and (max-width:1200px) {
  #g-nav ul li a {
    padding: 5px;
  }
  #g-nav li.has-child ul {
    top: 49px;
  }
}
@media screen and (max-width:1024px) {
  /* misc */
  #g-nav ul li.sp_misc {
    display: block;
  }
  #g-nav p {
    display: block;
    margin: 30px auto 0 auto;
    width: 80px;
  }
  #g-nav ul {
    display: block;
    margin: 0;
  }
  #g-nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    border-radius: 0;
    padding: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
	
  #g-nav ul li {
    border-bottom: 1px solid #ccc;
  }
  #g-nav li.has-child ul li,#g-nav li.has-child ul li.triple  {
    width: 100%;
    text-align: left;
  }
  #g-nav ul li a {
    padding: 15px 20px 15px 40px;
    margin-left: 0;
    text-align: left;
  }
  #g-nav ul > li > ul > li > a {
    padding: 15px;
    text-align: left;
  }
  #g-nav ul li a:hover {
    color: #fff;
  }
  #g-nav ul li li a {
    padding: 0;
  }
  #g-nav ul li.has-child > a::before {
    top: 29px;
    left: 20px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

	#g-nav {
    display: none;
  }
  #g-nav.panelactive {
    display: block;
    position: fixed;
    z-index: 99;
    top: 0;
	right: 0;
    width: 50%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #g-nav-list {
    opacity: 0;
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    opacity: 1;
  }
  #g-nav ul {
    opacity: 0;
    width: 90%;
    margin: 3em auto;
  }
  #g-nav ul ul {
    margin: 0;
  }
  #g-nav.panelactive ul {
    opacity: 1;
  }
  #g-nav li.has-child ul li.p_smp_item010 {
    width: 100%;
  }
}
@media screen and (max-width:530px) {
  #g-nav.panelactive {
    width: 60%;
  }
}
@media screen and (max-width:450px) {
  #g-nav.panelactive {
	  width: 100%;
	}

}

.openbtn {
  display: none;
}
@media screen and (max-width:1024px) {
  /*ボタン外側*/
  .openbtn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #CF9393;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 13px;
  }
  .openbtn span:nth-of-type(2) {
    top: 19px;
  }
  .openbtn span:nth-of-type(3) {
    top: 25px;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -2px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    -webkit-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }
}
/*内側の線*/
.pushcircle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /*線の形状*/
  width: 90%;
  height: 90%;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.sub-btn-list li:first-child a {
  background: #6ea924;
}
.sub-btn-list li:last-child a {
  background: #457703;
}
.sub-btn-list li:first-child a.pushcircle:after {
  border: 1px solid #6ea924;
}
.sub-btn-list li:last-child a.pushcircle:after {
  border: 1px solid #457703;
}
/*hoverをしたら枠線が小さくなる*/
.sub-btn-list li:first-child a.pushcircle:hover:after, .sub-btn-list li:last-child a.pushcircle:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(255, 255, 255, 0.8);
}