.menu-btn-wrap {
  position: relative;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 3;
  cursor: pointer;
  transition: all 0.5s ease-out;
}
.menu-btn .btn-line {
  width: 28px;
  height: 3px;
  margin: 0 0 5px 0;
  background: #333;
}
.menu-btn.close {
  transform: rotate(180deg);
}
.menu-btn.close .btn-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #fff;
}
.menu-btn.close .btn-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.close .btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: #fff;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0.7;
  visibility: hidden;
}
.menu.show {
  visibility: visible;
}
.menu-nav {
  position: fixed;
  top: -16px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: black;
}
.menu .nav-item {
  padding-top: 12px;
  transform: translate3d(-40px, 0, 0);
  transition: all 0.5s ease-out;
}
.menu .nav-item:first-child {
  padding-top: 36px;
}
.menu .nav-item.show {
  transform: translate3d(0, 0, 0);
}
.menu .nav-item.current > a {
  color: #eece1a;
}
.menu .nav-link {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.menu .nav-link:hover {
  color: #eece1a;
}

.nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

* {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #333;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.5;
  position: relative;
  margin: 0;
  min-height: 100vh;
}

.wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

img {
  max-width: 100%;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 400;
}
h1.lg-heading, h2.lg-heading, h3.lg-heading {
  width: 200px;
  height: auto;
  line-height: 0;
}
h1.sm-heading, h2.sm-heading, h3.sm-heading {
  margin-bottom: 32px;
}

a {
  color: #333;
  text-decoration: none;
}

li {
  list-style: none;
}

#header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 2;
}

.wrapper-header {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}

.products-wrapper {
  padding-top: 80px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.7%;
}
.products-wrappera {
  display: inline-block;
}

.product-item img {
  vertical-align: bottom;
}
.product-item p {
  margin-top: 10px;
  font-size: 12px;
}

.product-item:hover > .product-image {
  opacity: 0.7;
  transition: all 0.5s ease-out;
}

.detailLink-parent {
  text-align: center;
}
.detailLink-parent .detailLink-item {
  display: inline-block;
  margin: 40px auto 160px auto;
  text-align: center;
}

.section-title {
  padding-top: 120px;
  font-size: 14px;
  margin-bottom: -50px;
}

.pagenation {
  margin-top: 80px;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 160px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.detail-wrapper {
  max-width: 800px;
  padding-top: 80px;
  display: flex;
}
.detail-wrapper .product-image {
  width: 50%;
}
.detail-wrapper .text-area {
  width: 50%;
  padding-left: 65px;
  font-size: 14px;
}
.detail-wrapper .text-area .text-detail, .detail-wrapper .text-area .product-price {
  margin-top: 0;
  margin-bottom: 30px;
}
.detail-wrapper .text-area dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.detail-wrapper .text-area dl dt {
  width: 30%;
}
.detail-wrapper .text-area dl dd {
  margin-left: 0;
  width: 70%;
}

.backProducts {
  margin-top: 50px;
  text-align: center;
}

.about-wrapper {
  max-width: 600px;
  padding-top: 80px;
}
.about-wrapper .text-about {
  font-size: 14px;
  line-height: 27px;
  margin-top: 0;
  margin-bottom: 30px;
}

.info-list {
  font-size: 14px;
  margin-bottom: 40px;
}
.info-list dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.info-list dl dt {
  width: 30%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
}
.info-list dl dd {
  width: 70%;
  margin-left: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
}
.info-list dl .first {
  padding-top: 10px;
}
.info-list dl .work-responsive {
  padding-bottom: 0;
  border-bottom: none;
}
.info-list dl .work {
  margin-left: 180px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.iframe-wrp {
  height: 300px;
  position: relative;
  width: 100%;
  filter: grayscale(100%);
}
.iframe-wrp iframe {
  width: 100%;
  height: 100%;
}

.company {
  padding-bottom: 160px;
}

#footer {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.sns {
  padding: 0;
  display: flex;
  gap: 30px;
  font-size: 12px;
}

.copy {
  font-size: 10px;
}

@media screen and (max-width: 900px) {
  main .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 6%;
  }
  main .products-wrapper .product-price {
    margin-bottom: 0;
  }
  main .detailLink-parent .detailLink-item {
    margin: 30px auto 160px auto;
  }
  main .pagenation {
    margin-top: 40px;
    padding-bottom: 160px;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  main .detail-wrapper {
    display: flex;
    flex-direction: column;
  }
  main .detail-wrapper .product-image {
    width: 100%;
    margin-bottom: 30px;
  }
  main .detail-wrapper .text-area {
    width: 100%;
    padding-left: 0;
  }
  main .backProducts {
    margin-top: 40px;
    padding-bottom: 160px;
    text-align: center;
  }
  main .info-list dl dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 5px;
  }
  main .info-list dl dd {
    width: 100%;
    padding-top: 5px;
  }
  main .info-list .work {
    margin-left: 0;
  }

  #footer {
    display: block;
  }
  #footer .sns {
    margin-bottom: 0;
  }
  #footer .copy {
    margin-top: 0;
  }
}
/*# sourceMappingURL=main.css.map */