@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #333;
  min-height: 100vh;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  opacity: 0.7;
}

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

.wrapper__600 {
  max-width: 600px;
  margin: 0;
}

.page__title {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 1.4rem;
}

/*------------------------------
ヘッダー
------------------------------*/
#header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}
#header img {
  width: 70%;
}

/*------------------------------
ハンバーガーメニュー
メニューが閉じている時はleft: -300pxで画面左に隠し、
opacity:0;で非表示にしている
------------------------------*/
#gnav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  color: #fff;
  padding: 36px 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
#gnav a {
  color: #fff;
}
#gnav li {
  margin-bottom: 14px;
}

/*------------------------------
ハンバーガーメニュー
メニューが開いている時は、left:0;,
opacity:1;で、画面左に表示する
------------------------------*/
.open #gnav {
  left: 0;
  opacity: 1;
}

.hamburger__btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}
.hamburger__btn .hamburger__line {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger__btn .hamburger__line:nth-child(1) {
  top: 10px;
}
.hamburger__btn .hamburger__line:nth-child(2) {
  bottom: 10px;
}

#mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.open .hamburger__btn .hamburger__line {
  background-color: #fff;
}
.open .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}
.open .hamburger__line:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  z-index: 10;
  cursor: pointer;
}

/*------------------------------
フッター
------------------------------*/
#footer {
  margin-top: 110px;
  margin-bottom: 20px;
}
#footer .footer__nav {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer__nav .nav__item {
  margin-right: 3rem;
}
#footer .footer__copy {
  margin-top: 10px;
  font-size: 1rem;
}

@media screen and (min-width: 900px), print {
  #footer {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/*------------------------------
トップページ
------------------------------*/
#products {
  padding-top: 80px;
}
#products .product__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#products .product__container .product {
  width: 48%;
  margin-top: 24px;
}
#products .product__container .product h3.product__title {
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: normal;
}
#products .product__container .product .product__price {
  font-size: 1.4rem;
  margin-top: 6px;
}
#products .product__container .product:nth-child(1),
#products .product__container .product:nth-child(2) {
  margin-top: 0;
}
#products .btn__viewmore {
  margin-top: 35px;
  text-align: center;
}
#products .btn__viewmore a {
  font-size: 1.4rem;
}

@media screen and (min-width: 900px), print {
  #products .product__container .product {
    margin-top: 40px;
    width: 23%;
  }
  #products .product:nth-child(3),
  #products .product:nth-child(4) {
    margin-top: 0;
  }
}
/*------------------------------
プロダクトページ　ページネーション
------------------------------*/
.pagination {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
}
.pagination .pagination__number:nth-child(1) {
  padding-right: 20px;
}
.pagination .pagination__number:nth-child(2) {
  padding-left: 20px;
}

/*------------------------------
アイテム単一ページ
------------------------------*/
#item {
  padding-top: 80px;
}
#item .wrapper__800 {
  max-width: 800px;
}
#item .wrapper__800 .item__container img {
  width: 100%;
}
#item .wrapper__800 .item__container .item__content {
  width: 100%;
}
#item .wrapper__800 .item__container .item__content .item__txt {
  margin-top: 30px;
  font-size: 1.4rem;
}
#item .wrapper__800 .item__container .item__content .product__price {
  margin-top: 20px;
  font-size: 1.4rem;
}
#item .wrapper__800 .item__container .item__content .item__detail {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  font-size: 1.4rem;
}
#item .wrapper__800 .item__container .item__content .item__detail dt {
  width: 30%;
}
#item .wrapper__800 .item__container .item__content .item__detail dd {
  width: 70%;
}
#item .wrapper__800 .item__container .item__content .btn__back {
  font-size: 1.4rem;
  margin-top: 70px;
  text-align: center;
}

@media screen and (min-width: 900px), print {
  #item .item__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #item .item__container .item__image {
    margin-top: 30px;
  }
  #item .item__container .item__content {
    margin-left: 60px;
  }
  #item .item__container .item__txt:nth-child(2) {
    margin-top: 1em;
  }
}
/*------------------------------
ABOUT
------------------------------*/
#about {
  max-width: 600px;
  margin: 0;
  padding-top: 80px;
}
#about .about__text {
  font-size: 1.4rem;
}
#about .about__text .text-br {
  margin-top: 1em;
}

/*------------------------------
会社概要
------------------------------*/
#company {
  padding-top: 80px;
  font-size: 1.4rem;
}
#company dt {
  border-top: 1px solid #DCDBDB;
  padding-top: 20px;
}
#company dt.first {
  border-top: none;
  padding-top: 0;
}
#company dd {
  padding-bottom: 20px;
}
#company dd.last {
  padding-bottom: none;
}
#company .company__map iframe {
  margin-top: 45px;
  max-width: 600px;
  width: 100%;
  height: 300px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media screen and (min-width: 900px), print {
  #company .company__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #company .company__content dt {
    width: 30%;
  }
  #company .company__content dd {
    width: 70%;
    border-top: 1px solid #DCDBDB;
  }
  #company .company__content dt, #company .company__content :defined {
    padding-top: 20px;
  }
  #company .company__content dt.first,
  #company .company__content dd.first {
    border-top: none;
    padding-top: 0;
  }
  #company .company__content dd {
    padding-bottom: 20px;
  }
  #company .company__content dt.last,
  #company .company__content dd.last {
    padding-bottom: none;
  }
}/*# sourceMappingURL=style.css.map */