@charset "utf-8";
/* CSS Document */
html{
  scroll-behavior: smooth;
}
body{
   text-align: center;
   font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic",  sans-serif;
    }

h1 img{
  width: 100%;
  max-width: 220px;
  min-width: 200px;
  margin-top: 35px;
}
#design img{
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    }
/*--------------------------------------------------
btn
--------------------------------------------------*/
#btn{
  margin: 80px auto;
}
#btn div{
  display: flex;
  justify-content: center;
}
#btn a{
  display: block;
  padding: 10px 30px;
  background-color: #49cbde;
  color:#fff;
  border-radius: 20px;
  font-weight: 500;
  margin: 0 15px;
}
#btn a:hover{
  opacity: 0.7;
}
@media screen and (max-width:500px){
  #btn div{
  display:block!important;
}
 #btn a{
  padding: 10px 30px;
  margin:10px;
  font-size: 14px;
  display: inline-block;
} 
}
/*--------------------------------------------------
nav
--------------------------------------------------*/
#g-nav{
    position:fixed;
    z-index: 999;
	  top:0;
    right: -120%;
	  width:100%;
    height: 100vh;
	  background:#fbfbfb;
	  transition: all 0.6s;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
#g-nav li{
	list-style: none;
  text-align: center;
}
#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
  white-space: nowrap;
  text-align: left;
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
  z-index: 9999;
	top:20px;
	right: 10px;
	cursor: pointer;
  width: 50px;
   height:50px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	  background-color: #333;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
#g-nav-list .shop-search{
    background-color: #49cbde;
    color: #fff;
    padding:10px 30px 10px 60px;
    border-radius: 20px;
    margin-top: 30px;
  text-align: center!important;
  position: relative;
  transition: 0.3s ease;
  border:solid 2px #49cbde;
  box-sizing:border-box;
}
#g-nav-list .shop-search:hover{
  border:solid 2px #54D4D6;
  color: #fff;
  background-color: #54D4D6;
  
}
#g-nav-list .shop-search::before{
  content:"";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../design/icon-shop.png");
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: 31px;
  top: 11px;
}
#g-nav-list .shop-search:hover:before{
  background-image: url("../design/icon-shop.png");
  }


footer{
    background-color: #7c7c7c;
    padding: 15px 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1.8px;
}