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

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

li {
  list-style: none;
}

img {
  display: block;
}

body, html {
  font-size: 14px;
  background: white;
  color: black;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

header .container .text-wrap {
  background: black;
  color: white;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
header .container .icon-wrap {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .icon-wrap .left-icon {
  flex: 1;
}
header .container .icon-wrap .left-icon img {
  width: 32px;
}
header .container .icon-wrap .logo-wrap {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .container .icon-wrap .logo-wrap img {
  width: 60px;
}
header .container .icon-wrap .right-icon {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
header .container .icon-wrap .right-icon img {
  width: 30px;
  height: auto;
  margin-left: 10px;
}
header .container nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 3;
}
header .container nav.open {
  display: flex;
}
header .container nav ul {
  margin-top: 40px;
  width: 100%;
  height: 100%;
}
header .container nav ul li {
  display: block;
  line-height: 25px;
  padding: 10px;
  border-bottom: 1px solid #eeeeee;
  text-transform: uppercase;
}
header .container nav ul li a {
  display: block;
}
header .container nav .close-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
header .container nav .close-icon img {
  width: 25px;
  height: 25px;
}

main .container .breadcrumb-wap {
  padding: 10px;
  font-weight: bold;
}
main .container .module-1-wrap .bg-image {
  width: 100%;
}
main .container .product-wrap {
  padding: 0 10px;
  text-align: center;
}
main .container .product-wrap .title {
  font-weight: bold;
  margin: 10px 0;
  text-align: left;
  text-transform: uppercase;
}
main .container .product-wrap .filter-wrap {
  margin-bottom: 10px;
}
main .container .product-wrap .filter-wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  padding: 7px 10px;
  background-color: white;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.05);
}
main .container .product-wrap .filter-wrap .container {
  display: flex;
  gap: 5px;
}
main .container .product-wrap .filter-wrap .filter-item {
  padding: 5px 7px;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
main .container .product-wrap .filter-wrap .filter-item img {
  height: 20px;
  margin-right: 3px;
}
main .container .product-wrap .product-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
main .container .product-wrap .product-box .product-item {
  width: calc(50% - 3px);
}
main .container .product-wrap .product-box .product-item img {
  width: 100%;
}
@media screen and (min-width: 700px) {
  main .container .product-wrap .product-box .product-item {
    width: calc(33.33% - 4px);
  }
}
main .container .product-wrap .number {
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
}
main .container .product-wrap .btn {
  border: 1px solid black;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 50px;
  cursor: pointer;
}
main .container .product-wrap .btn a {
  display: block;
  padding: 15px 30px;
}
main .container .footer {
  margin-top: 20px;
  border-top: 10px solid #333;
  padding: 20px 0;
}
main .container .footer .payment {
  padding: 0 10%;
  margin-bottom: 20px;
}
main .container .footer .payment img {
  width: 100%;
}
main .container .footer .copyright {
  text-align: center;
}/*# sourceMappingURL=home.css.map */