html {
  font-size: 100%;
}

body {
  color: #333;
  font-size: 0.875rem;
  min-height: 100vh;
  position: relative;
}

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

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

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

.content {
  padding-top: 120px;
  padding-bottom: 160px;
}

.site-ttl a {
  width: 180px;
  line-height: 1px;
  display: block;
}

.page-ttl {
  font-size: 0.875rem;
  font-weight: normal;
  margin-bottom: 30px;
}
/* ------------------- */
#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #fff;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}
/* ------------------- */
#header-navi {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  padding: 36px 50px;
  color: #fff;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}

#header-navi a {
  color: #fff;
}

#header-navi li {
  margin-bottom: 14px;
}
/* ----------------------- */
.open #header-navi {
  left: 0;
  opacity: 1;
}

.toggle_btn {
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}

.toggle_btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 10px;
}

.toggle_btn span:nth-child(2) {
  bottom: 10px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate (-45deg);
}

.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}

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

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

/* ------------------------------ */
#top {
  padding-top: 80px;
  padding-bottom: 160px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-list li {
  width: 23%;
  margin-bottom: 40px;
}

.product-list img {
  margin-bottom: 10px;
  vertical-align: top;
}

.product-list p {
  font-size: 0.75rem;
}

.link-ttl {
  display: block;
  text-align: center;
}

.pagenation {
  display: flex;
  justify-content: center;
}

.pagenation li {
  padding: 0 20px;
}
/* ---------------- */
#item {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.item-desc {
  width: 42%;
  /* margin-left: 40px; */
}

.item-desc p {
  margin-bottom: 30px;
  text-align: justify;
}

.item-desc dl {
  display: flex;
  flex-wrap: wrap;
}

.item-desc dt {
  width: 30%;
}

.item-desc dd {
  width: 70%;
}

.item-img {
  width: 50%;
}
/* ----------------- */
#about {
  max-width: 600px;
}

#about p {
  margin-bottom: 30px;
  line-height: 1.9;
}
/* --------------- */
#company {
  max-width: 600px;
}

#company dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#company dt {
  width: 30%;
  border-bottom: solid 1px #dcdbdb;
  padding: 20px 10px;
}

#company dt:last-of-type {
  border-bottom: none;
}

#company dd {
  width: 70%;
  border-bottom: solid 1px #dcdbdb;
  padding: 20px 10px;
}

#company dd:last-of-type {
  border-bottom: none;
}

#company .location-map {
  filter: grayscale(1);
}

#company .location-map iframe {
  height: 300px;
  width: 100%;
  border: 0;
}

/* #mask {
  display: none;
  transition: all 0.5s;
}

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

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

.footer-menu {
  display: flex;
}

.footer-menu li {
  font-size: 0.875rem;
  margin-right: 30px;
}

#footer .copylight {
  font-size: 0.625rem;
}
/* ---------------------- */
@media screen and (max-width: 900px) {
  .product-list li{
    width: 47%;
  }

  #item {
    flex-direction: column;
  }

  #item-desc {
    width: 100%;
  }

  .item-img {
    width: 100%;
    margin-bottom: 30px;
  }
  /* ---------------------- */
  #company dl {
    flex-direction: column;
  }

  #company dt {
    width: 100%;
    margin-bottom: 5px;
    border-bottom: none;
  }

  #company dd {
    width: 100%;
    padding-top: 10px;
  }

  #hoote {
    flex-direction: column;
  }

  .footer-menu {
    margin-bottom: 5px;
  }
}
