@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 通常16px を 62.5% = 10px */
  width: 100%;
  box-sizing: border-box; /*余白の測り方borderを含めたサイズ*/
}
body {
  color: #606060; /* RGB */
  font-family: 'Noto Serif JP', serif;
  font-weight: 500; /*太さ*/
  font-size: 1.8em; /*em=親要素基準のサイズ*/
  line-height: 3.0rem; /*改行幅　rem=html基準のサイズ*/
  background-color: #F9F9F9;
  position: relative;
}
h2 {
  font-weight: 400;
  font-size: 3.0rem;
  line-height: 4.2rem;
}
@media (max-width: 400px){
  h2 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
p {
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-weight: 400;
}
a:hover {
  opacity: 0.7; /*a(link)にカーソルを乗せたときのopadity透明度*/
}
.none {
  display: none;/*.none というclassをふったら表示しない*/
}
@media (max-width:680px) {
  .section-nav {
    display: none;
  }
}
@media (min-width:680px) {
.section-nav {
  width: 100%;
  height: 150px;
  background-color: #464646;
  text-align: center;
  padding: 15px 0 0 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.section-nav__logo {
 height: 50px;
 width: 80%;
 border-bottom: solid 1px #F2F4F6;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 gap: 10px;
}
.section-nav__shop {
  height: 45px;
}
.section-nav__instagram {
  height: 30px;
}
.section-nav ul li {
    display: inline-block;
    padding: 25px 25px;
  }
.section-nav ul li a {
    text-decoration: none;
    color: #f2f4f6;
  }
}
.header {
  height: 70px;
  width: 100%;
  background-color: #464646;
  z-index: 900;
  position: fixed;
}
.header h1 {
  padding: 15px 5px;
  text-align: center;
  color: #F2F4F6;
  font-size: 2.4rem;
}
.header__title {
  width: 80%;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.header__title .section-nav__instagram{
  position: absolute;
  padding-top: 15px;
  right: 0;
}

.header__title img {
  height: 50px;
  padding-top: 15px;
}
.header__title a img {
  padding: 0;
  height: 30px;
}

.header__nav {
  display: none;
}

/* ドロワーメニュー */
  #nav-drawer {
    padding: 0px 24px;
    text-align: left;
    position: relative;  
  }
  #nav-open {
    width: 26px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 15px;
    left: 24px;
  }
  #nav-open span,#nav-open span:before,#nav-open span:after {
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #F2F4F6;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -12px;
  }
  #nav-open span:after {
    bottom: -24px;
  }
  #nav-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 32px;
    left: 35px;
    z-index: 999;
  }
  #nav-close::before, #nav-close::after {
    position: absolute;
    height: 35px;
    width: 3px;
    background-color: #f2f4f6;
    content: "";
  }
  #nav-close::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  #nav-close::after{
    transform: translate(-50%,-50%) rotate(-45deg);
  }

@media (max-width:680px) {
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 350px;
    height: 600px;
    background-color: #464646;
    background-image: url("../image/drawer.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 40vh;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    opacity: 0.9;
  }
  .nav-drawer__title {
    height: 50px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .nav-drawer__title img {
    height: 45px;
  }
  #nav-content ul {
    padding-top: 20px;
  }
  #nav-content ul li {
    padding-top: 30px;
    padding-left: 20px;
  }
  #nav-content ul li a {
    text-decoration: none;
    color: #f2f4f6;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
/* PSドロワー */
@media (min-width:680px) {
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 100%;
    height: 150px;
    background-color: #464646;
    text-align: center;
    padding: 15px 0 0 24px;
    transform: translateY(-105%);
    transition: 0.3s ease-in-out;
  }
  .nav-drawer__title {
    height: 50px;
    width: 80%;
    border-bottom: solid 1px #F2F4F6;
    margin: 0 auto;
  }
  .nav-drawer__title img {
    height: 45px;
  }
  #nav-content ul li {
    display: inline-block;
    padding: 25px 25px;
  }
  #nav-content ul li a {
    text-decoration: none;
    color: #f2f4f6;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateY(0%);
  }
}
/* footer */
.wave{
  background-color: #F9F9F9;
  position:relative;
  height:300px;
}
canvas{
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  z-index: 0;
}
.footer {
  background-color: #F9F9F9;
  height: 300px;
  position: relative;
}
.footer small {
  font-size: 1.4rem;
  color: #F2F4F6;
  position: absolute;
  bottom: 10px;
  right: 50px;
}

@media (max-width:480px) {
  .footer small {
    right: 20px;
  }
}
