@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: 100%;
}
body {
  background-color: #fff;
  padding-top: 150px;
}

/* --------- header ------- */
header {
  position: fixed;
  width: 100vw;
  margin: 0 auto;
  padding: 20px;
  top: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  justify-content: center;
}
#logo img {
  width: 330px;
  height: auto;
}
.pc-nav {
  display: flex;
  align-items: center;
}
.pc-nav_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-nav_list li {
  max-width: 120px;
  padding: 0 5px;
}
.pc-nav_list a {
  height: auto;
}
#insta-1 img {
  max-width: 45px;
  min-width: 33px;
}
.sp-nav {
  display: none;
}
#sp-burger {
  display: none;
}

/* --------- top ------- */

#top {
  margin: 250px 0px 200px 0px;
}
#top-img {
  width: 220px;
  height: auto;
  margin: auto;
}
#title {
  font-size: 1.1em;
  margin: 0px;
  color: rgb(84, 77, 66);
  text-align: center;
  /* フォント変更 */
}

/* --------- pic ------- */

.pic {
  max-width: 1150px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Work-img {
  max-width: 350px;
  margin: 20px auto;
}

/* --------- last ------- */

.last {
  width: 650px;
  margin: 2em auto;
}
.last p {
  margin: 0 auto;
  text-align: center;
  font-size: 1.4em;
}
#last {
  text-align: center;
}
.last a img {
  width: 3em;
  margin: 3em;
}

/* --------- footer ------- */

footer {
  background-color: rgba(221, 203, 171, 0.4);
}
#footer-1 {
  width: 400px;
  height: auto;
  margin: auto;
  padding: 100px 0px 30px 0px;
}
#footer-2 {
  color: rgb(84, 77, 66);
  text-align: center;
  letter-spacing: 2px;
}
#footer-3 {
  margin: 30px auto;
  display: flex;
  justify-content: center;
}
#footer-3 img {
  width: 25px;
  height: auto;
  margin: 10px;
}
#footer-4 {
  color: rgb(84, 77, 66);
  padding: 0px 0px 60px 0px;
  text-align: center;
}

@media (max-width: 768px) {
  header {
    margin: 0;
    padding: 30px;
    display: flex;
  }
  #logo {
    width: 50%;
  }
  #top {
    margin: 200px 0 5em 0;
  }
  #top-img {
    width: 9em;
  }
  #title {
    font-size: 1em;
  }
  .last {
    width: 60%;
    font-size: 0.7em;
  }
  #footer-1 {
    width: 50%;
  }
  #footer-2 {
    font-size: 0.8em;
  }
  #footer-4 {
    font-size: 0.7em;
  }

  /* ----- spメニュー ----- */
  .pc-nav {
    display: none;
  }
  #sp-burger {
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../images/png/sp-menu.png);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    cursor: pointer;
    position: relative;
    z-index: 9;
  }
  #sp-burger.is-active {
    background-image: url(../images/png/sp-close.png);
    z-index: 9;
    margin-right: 0;
  }

  .sp-nav {
    display: none;
  }
  .sp-nav.is-active {
    display: flex;
    justify-content: center;
    width: 80vw;
    height: 100vh;
    padding: 10vh 5vh;
    margin: 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 8;
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateX(100px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .sp-nav_list li {
    max-width: none;
    width: 60vw;
    border-bottom: 1px solid;
  }
  .sp-nav_list a {
    text-decoration: none;
    font-size: 1em;
    color: rgba(84, 77, 66);
    display: block;
    padding: 1em 0.25em;
  }
  #insta-1 {
    width: 24px;
    align-items: center;
  }

  .sp-cover {
    display: none;
  }
  .sp-cover.is-active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 7;
    background: rgba(3, 3, 3, 0.5);
    display: block;
  }
}

@media (min-width: 768px) {
  .tel {
    pointer-events: none;
  }
}
