@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  color: #333333;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: black;
}

a:hover {
  opacity: 0.8;
}

p {
  color: #333333;
  font-size: 12px;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

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

.title-logo a {
  display: block;
  width: 180px;
  line-height: 1px;
}

.menu-title {
  color: white;
  display: block;
  width: 100px;
  margin-bottom: 15px;
  font-size: 14px;
}

.navi {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  color: #fff;
  padding: 36px 36px;
  z-index: 20;
  visibility: hidden;
  background-color: black;
}

.nav-menu {
  position: fixed;
  top: 30px;
  left: -100px;
  visibility: hidden;
}

.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;
}

/*
1本目の線の位置を設定
*/
.toggle_btn span:nth-child(1) {
  top: 10px;
}

/*
2本目の線の位置を設定
*/
.toggle_btn span:nth-child(2) {
  bottom: 10px;
}

.active .navi {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  opacity: 0.8;
  visibility: visible;
}

.active .nav-menu {
  position: fixed;
  top: 30px;
  left: 30px;
  visibility: visible;
  opacity: 1;
  transform: translateX(20px);
  width: 20%;
  transition: 0.6s all ease;
}

.active .toggle_btn span {
  z-index: 100;
  background-color: white;
}

.active .toggle_btn span:first-child {
  top: 10px;
  transform: rotate(45deg);
}

.active .toggle_btn span:last-child {
  top: 10px;
  transform: rotate(-45deg);
}

.main {
  margin-top: 100px;
  display: block;
  padding-bottom: 30px;
}

.contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.contents img {
  margin-bottom: 10px;
}

.view-title {
  margin-top: 40px;
  margin-bottom: 40px;
}

.view-btn {
  text-align: center;
}

.view-text {
  font-size: 15px;
}

.footer {
  display: flex;
  justify-content: space-between;
  color: #333333;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.footer-icon {
  font-size: 10px;
}

.product-title {
  font-size: 15px;
  margin-bottom: 30px;
  color: black;
  font-weight: normal;
}

.products2 {
  margin-top: -90px;
}

.page {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.product-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  max-width: 800px;
}

.content-image img {
  width: 85%;
}

.back-product {
  font-size: 15px;
}

.item-content {
  margin-top: -20px;
  width: 100%;
}

.cpntent-image {
  width: 100%;
}

.content-right {
  width: 70%;
  display: block;
}

.content-t {
  font-size: 14px;
  margin-bottom: 30px;
  text-align: justify;
}

.size-text {
  display: flex;
  flex-wrap: wrap;
}

.size-text dt {
  width: 30%;
}

.size-text dd {
  width: 70%;
  margin-left: 0;
}

.about-text {
  width: 600px;
}

.about-p {
  font-size: 15px;
  margin-bottom: 50px;
}

.company-text dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 60px;
  width: 600px;
  font-size: 14px;
}

.company-text dt {
  width: 30%;
  border-bottom: 1px solid #dcdbdb;
}

.company-text dd {
  width: 70%;
  margin-left: 0;
  border-bottom: 1px solid #dcdbdb;
}

.company-text dt:nth-child(11) {
  border-bottom: none;
}

.company-text dd:last-child {
  border-bottom: none;
}

.company-text p {
  line-height: 30px;
  font-size: 14px;
  align-items: center;
}

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

.company-map iframe {
  width: 600px;
  height: 300px;
  margin-top: 50px;
}

.company-content {
  padding-top: 100px;
  padding-bottom: 150px;
}

.email-link {
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 900px) {
  .contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer {
    display: block;
  }
  .product-text {
    flex-direction: column;
  }
  .content-image img {
    margin-bottom: 30px;
    width: 100%;
  }
  .content-right {
    flex-direction: column;
    width: 100%;
  }
  .main {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */