@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,ol {
  list-style: none;
}

body {
  font-family: "Poiret One", sans-serif;
  font-size: 16px;
  color: #352b32;
  line-height: 1;
  background-color: #fff6fe;
}

.header-inner {
max-width: 1200px;
height: 150px;
margin-left: auto;
margin-right: auto;
padding-left: 40px;
padding-right: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 150px;
}

.site-menu  ul {
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu li {
  font-weight: bold;
  letter-spacing: 3px;
}

.footer {
  background-color: #dec9ec;
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.footer-logo {
  display: block;
  width: 300px;  
  align-items: center;
}

.copyright {
  margin-top: 90px;
text-align: center;
  /* margin-left: 40px; */

}

.sns-icon {
  display: flex;
  align-items: center;
  margin-top: 40px;
  /* margin-left: 40px;
  margin-top: 30px; */
}

.twitter {
  width: 80px;
  height: 80px;
  margin-right: 30px;
}

.insta {
  width: 80px;
  height: 80px;
  margin-right: 30px;
}

.youtube {
  width: 80px;
  height: 80px;
  margin-right: 30px;
}

.tiktok {
  width: 80px;
  height: 80px;
}

/* media */
@media (max-width: 800px) {
  
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff6fe;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(240, 240, 240, 0.5);
  }

    .header-inner {
      padding-left: 20px;
      padding-right: 20px;
      height: 100%;
      position: relative;
    }
    
    .header-logo img {
      width: 100px;
      height: 50px;
    }

    .header-site-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      color: #dd9292;
      background-color: #736E62;
      padding-top: 30px;
      padding-bottom: 50px;
      display: none;
    }

    .header-site-menu.is-show {
      display: block;
    }

    .toggle-menu-button {
      display: block;
      width: 50px;
      height: 40px;
      background-image: url(../images/hambaga.png);
      background-size: 50%;
      background-position: center;
      background-repeat: no-repeat;
      background-color: transparent;
      border: none;
      border-radius: 0;
      outline: none;
    }

    .main {
      padding-top: 50px;
    }
    .footer-logo {
      margin-top: 60px;
    }

    .copyright {
      margin-top: 50px;
    }
    
}

