@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.5;
  color: #4d4d4d;
  font-family: 'Zen Kaku Gothic New', sans-serif,"游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",  'Meiryo UI', Meiryo, "ＭＳ ゴシック", Arial, sans-serif;
  
  
}
body {
  background-color: #f3f6d4;
}
header {
  position: relative;
  margin: 0 auto;
}
header h1 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 2.5% 0 0 2.5%;
  z-index: 110;
}
header h1 img {
  width: 65%;
  height: auto;
}
#nav-content {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 70%;
  max-width: 500px;
  height: 100%;
  overflow: auto;
  background-color: #00adaf;
  text-align: left;
  padding: 60px 0 30px;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.6);
}
#nav-content {
  left: -100%;
  transition: 0.5s;
}
.active + #nav-content {
  left: 0;
}
#nav-content ul li {
  margin-bottom: 30px;
  text-align: center;
}
#nav-content ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #f3f6d4;
}
#nav-content ul li.nav_top a {
  color: #fff209;
}
.header_menu {
  display: none;
}
@media(min-width: 1040px) {
  .header_menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    margin: 2.5% 2.5% 0 0;
    z-index: 110;
  }
  .header_menu a {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
}
.wrapper {
  max-width: 768px;
  margin: 0 auto;
}
@media(min-width: 1040px) {
  .wrapper {
    max-width: 1040px;
  }
}

.footer {
  background-color: #00adaf;
  margin-top: 100px;
  padding: 40px 20px 20px;
}
.footer a {
  color: inherit;
  font-family: "Arial";
  font-weight: 600;
  text-decoration: none;
}
.footer_top {
  font-size: 16px;
  color: #fff209;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 30px;
  max-width: 280px;
}
.footer ul li {
  font-size: 16px;
  color: #f3f6d4;
  margin: 0 5px;
}
.footer_icon {
  display: flex;
  justify-content: center;
}
.footer_icon img {
  width: auto;
  height: 35px;
  margin: 0 10px;
}
.footer_icon-shop {
  width: 80%;
  height: auto;
  max-width: 300px;
  display: block;
  margin: 40px auto;
}
.footer_copyright {
  font-size: 15px;
  color: #f3f6d4;
  text-align: center;
}
@media(min-width: 1040px) {
  .footer {
    margin-top: 120px;
  }
  .footer_top {
    font-size: 20px;
  }
  .footer ul {
    max-width: 1040px;
    margin-top: 10px;
  }
  .footer ul li {
    font-size: 20px;
    margin: 0 10px;
  }
}




@media(min-width: 1040px) {
  .openbtn1 {
    display: none;
  }
}
.openbtn1 {
  position: fixed;
  background: #f3f6d4;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1.5px solid #00adaf;
  border-radius: 5px;
  top: 10px;
  right: 10px;
  z-index: 100;
}
/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  bottom: 20px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: #eb613d;
  width: 50%;
}
.openbtn1 span:nth-of-type(1) {
  top: 10px;
}
.openbtn1 span:nth-of-type(2) {
  top: 18px;
}
.openbtn1 span:nth-of-type(3) {
  top: 26px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 12px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn1.active span:nth-of-type(3) {
  top: 24px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}




