@charset "UTF-8";
/*-------------------------------------------
共通クラス
-------------------------------------------*/
body {
  font-family: "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, HGS明朝E, メイリオ, Meiryo, serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a:hover {
  opacity: 0.85;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.body {
  background: #353535;
}

.main {
  position: relative;
}

/*-------------------------------------------
共通パーツの指定
-------------------------------------------*/
.u-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 900px) {
  .u-wrapper {
    padding: 0px 15px;
  }
}

/* ここから記述します。 */
/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
/* ここから記述します。 */
.u-wrapper {
  max-width: 1360px;
}

.myModal {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 270px;
  background-color: #fff;
  z-index: 100;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 20px;
  gap: 20px;
}
.myModal__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.myModal__text {
  font-size: 14px;
}
.myModal__logo {
  width: 160px;
  height: auto;
}

.myModal.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.myModal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -100;
  display: none;
}

.myModal-overlay.active {
  z-index: 98;
  display: block;
}

.hamburger {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 20px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger span:nth-of-type(1) {
  top: 20px;
}
.hamburger span:nth-of-type(2) {
  top: 30px;
}
.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span {
  z-index: 99;
}
.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  width: 100%;
  padding: 0 150px;
}
@media screen and (max-width: 900px) {
  .header {
    padding: 0 15px;
  }
}
.header__logo {
  width: 160px;
  height: auto;
}

.goods {
  padding: 0 150px;
}
@media screen and (max-width: 900px) {
  .goods {
    padding: 0 15px;
  }
}
.goods__side {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: rotate(270deg) translate(-19%, 30%);
          transform: rotate(270deg) translate(-19%, 30%);
  -webkit-transform-origin: left;
          transform-origin: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .goods__side {
    display: none;
  }
}
.goods__side::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-right: 24px;
}
.goods__text {
  color: #fff;
  font-size: 16px;
}
.goods__img {
  -o-object-position: right;
     object-position: right;
  height: 100%;
  margin-bottom: 4px;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
.goods__img, .goods__list__item1 {
  height: calc(100% - 24.5px);
  -o-object-position: right;
     object-position: right;
}
.goods__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 35px;
  margin-bottom: 80px;
}
.goods__list__item1 {
  grid-row: span 2/span 2;
}
.goods__list__item5 {
  grid-column-start: 2;
}
.goods__list__item6 {
  grid-column-start: 3;
}
.goods__list__item7 {
  grid-column-start: 4;
}

@media screen and (max-width: 900px) {
  .goods__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 2fr 1fr 1fr 1fr;
    gap: 28px 8px;
    margin-bottom: 80px;
  }
  .goods__list__item1 {
    grid-column: span 2/span 2;
    grid-row: 1;
  }
  .goods__list__item2 {
    grid-row-start: 2;
  }
  .goods__list__item3 {
    grid-row-start: 2;
  }
  .goods__list__item4 {
    grid-row-start: 3;
  }
  .goods__list__item5 {
    grid-row-start: 3;
    grid-column-start: 2;
  }
  .goods__list__item6 {
    grid-row-start: 4;
    grid-column-start: 1;
  }
  .goods__list__item7 {
    grid-row-start: 4;
    grid-column-start: 2;
  }
}
.readmore {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 75px;
  color: #fff;
  margin-bottom: 120px;
}

.footer {
  height: 160px;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .footer {
    height: auto;
    padding-bottom: 40px;
  }
}
.footer__container {
  padding: 0 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .footer__container {
    padding: 0 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__img {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .footer__img {
    margin-top: 50px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
}

/*-------------------------------------------
aboutページ / about.html
-------------------------------------------*/
/* ここから記述します。 */
.about {
  padding: 0 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .about {
    padding: 0 15px;
  }
}
.about__title {
  font-size: 28px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 32px auto;
}
.about__title::before {
  content: "";
  width: 40px;
  height: 0.5px;
  background-color: rgb(255, 255, 255);
  margin-right: 24px;
  display: block;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__text {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 20px;
}
.about__text1 {
  font-size: 26px;
}

/*-------------------------------------------
companyページ / company.html
-------------------------------------------*/
/* ここから記述します。 */
.company {
  padding: 0 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .company {
    padding: 0 15px;
  }
}
.company__title {
  font-size: 28px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 32px auto;
}
.company__title::before {
  content: "";
  width: 40px;
  height: 0.5px;
  background-color: rgb(255, 255, 255);
  margin-right: 24px;
  display: block;
}
.company__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .company__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__map {
  width: 100%;
  position: relative;
  padding-top: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company__text1 {
  font-size: 26px;
}
.company__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  width: 50%;
}
.company__dl__div {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  border-bottom: 0.5px solid #fff;
  width: 100%;
}
.company__dl__div:last-child {
  border: none;
}
.company__dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .company__dt {
    width: 25%;
  }
}
.company__dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 400px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .company__dd {
    width: 75%;
  }
}

/*-------------------------------------------
itemページ / item*.html
-------------------------------------------*/
/* ここから記述します。 */
.itemInf {
  margin: 35px 0 100px 0;
  padding: 0 150px;
}
.itemInf__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
.itemInf__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.itemInf__img2 {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.itemInf__texts2 {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.itemInf__title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
}
.itemInf__price {
  color: #fff;
  font-size: 23px;
  margin-bottom: 30px;
}
.itemInf__numbers__1 {
  font-size: 12px;
  color: #fff;
  margin-bottom: 4px;
}
.itemInf__number {
  width: 150px;
  height: 34px;
  padding: 6px;
  background: #fff;
}
.itemInf__buy {
  width: 230px;
  height: 45px;
  color: #fff;
  background: #BA0808;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 12px 0 48px;
}
.itemInf__text {
  color: #fff;
}

.fa-cart-shopping::before {
  content: "\f07a";
}

/*-------------------------------------------
productsページ / products.html
-------------------------------------------*/
/* ここから記述します。 */
.goods2 {
  padding: 0 110px;
}
@media screen and (max-width: 900px) {
  .goods2 {
    padding: 0 15px;
  }
}
.goods2__text {
  color: #fff;
  font-size: 16px;
}
.goods2__img {
  -o-object-position: right;
     object-position: right;
  height: 100%;
  margin-bottom: 4px;
  vertical-align: top;
}
.goods2__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .goods2__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 28px 8px;
  }
}
.goods2__list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .goods2__list2 {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
.goods2__title {
  font-size: 32px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 32px auto;
}
@media screen and (max-width: 900px) {
  .goods2__title {
    font-size: 24px;
  }
}
.goods2__title::before {
  content: "";
  width: 40px;
  height: 0.5px;
  background-color: rgb(255, 255, 255);
  margin-right: 24px;
  display: block;
}
@media screen and (max-width: 900px) {
  .goods2__title::before {
    width: 32px;
    margin-right: 20px;
  }
}