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

/* へッダー */
.header {
  width: 100%;
  height: 80px;
  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;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__logo {
  width: 160px;
  height: auto;
}

.header__menu {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 300px;
  padding: 60px 25px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}

.header__menuLogo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
}

.header__menuList {
  margin-bottom: 20px;
}

.header__menuLink {
  color: #353535;
}

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

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

.header__hamburgerLine:nth-child(1) {
  top: 2px;
}

.header__hamburgerLine:nth-child(2) {
  top: 12px;
}

.header__hamburgerLine:nth-child(3) {
  top: 22px;
}

.open .header__menu {
  left: 0;
  opacity: 1;
}
.open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.open .header__hamburgerLine:nth-child(2) {
  display: none;
}
.open .header__hamburgerLine:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.header__mask {
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.open .header__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 {
  background-color: #fff;
  color: #121212;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 160px;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 48px 0;
    height: auto;
  }
}

.footer__inner {
  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;
}
@media screen and (max-width: 900px) {
  .footer__inner {
    -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;
  }
}

.footer__logo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    margin-bottom: 24px;
  }
}

.footer__innerUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 900px) {
  .footer__innerUl {
    -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;
    gap: 24px;
    margin-bottom: 40px;
  }
}

.footer__copyright {
  font-size: 14px;
}

/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
/* ここから記述します。 */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8px;
  }
}

.grid__item:nth-child(1) {
  grid-row: span 2;
}
@media screen and (max-width: 900px) {
  .grid__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    height: auto;
  }
}

.grid__item:nth-child(1) .grid__img {
  height: calc(100% - 50.78px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 900px) {
  .grid__item:nth-child(1) .grid__img {
    height: auto;
  }
}

@media screen and (max-width: 900px) {
  .grid__item:nth-child(2) {
    grid-row-start: 2;
  }
}

@media screen and (max-width: 900px) {
  .grid__item:nth-child(3) {
    grid-row-start: 2;
  }
}

@media screen and (max-width: 900px) {
  .grid__item:nth-child(4) {
    grid-row-start: 3;
  }
}

@media screen and (max-width: 900px) {
  .grid__item:nth-child(5) {
    grid-row-start: 3;
  }
}

@media screen and (max-width: 900px) {
  .grid__item:nth-child(6) {
    grid-row-start: 4;
  }
}

@media screen and (max-width: 900px) {
  .grid__item:nth-child(7) {
    grid-row-start: 4;
  }
}

.grid__img {
  margin-bottom: 4px;
}

.grid__text {
  color: #fff;
}
@media screen and (max-width: 900px) {
  .grid__text {
    font-size: 14px;
  }
}

.grid__btn {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .grid__btn {
    margin-bottom: 80px;
  }
}

.grid__btnLink {
  width: 240px;
  height: 50px;
  color: #fff;
  display: inline-block;
  border: 1px solid #cacaca;
  padding: 12px 60px;
}

.grid__sideText {
  color: #fff;
  opacity: 0.4;
  position: absolute;
  font-size: 15px;
  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) {
  .grid__sideText {
    display: none;
  }
}
.grid__sideText::before {
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
  opacity: 0.4;
  margin-right: 24px;
}

/*-------------------------------------------
aboutページ / about.html
-------------------------------------------*/
/* ここから記述します。 */
.about__title {
  font-size: 32px;
  color: #fff;
  margin: 32px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .about__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  .about__title {
    gap: 16px;
  }
}
.about__title::before {
  display: block;
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
}
@media screen and (max-width: 900px) {
  .about__title::before {
    width: 32px;
  }
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}

.about__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}

.about__subTitle {
  font-size: 28px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .about__subTitle {
    font-size: 22px;
  }
}

.about__text:first-of-type {
  margin-bottom: 32px;
}

.about__text {
  line-height: 1.9;
}

/*-------------------------------------------
companyページ / company.html
-------------------------------------------*/
/* ここから記述します。 */
.company__title {
  font-size: 32px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px auto;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .company__title {
    font-size: 24px;
    gap: 16px;
  }
}
.company__title::before {
  display: block;
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
}
@media screen and (max-width: 900px) {
  .company__title::before {
    width: 32px;
  }
}

.company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .company__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}

.company__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company__map {
  width: 100%;
  position: relative;
  padding-top: 50%;
}
@media screen and (max-width: 900px) {
  .company__map {
    padding-top: 75%;
  }
}

.company__iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.company__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .company__dl {
    font-size: 14px;
  }
}

.company__dt {
  width: 30%;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
}

.company__dt:last-of-type {
  border-bottom: none;
}

.company__dd {
  width: 70%;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
}

.company__dd:last-of-type {
  border-bottom: none;
}

/*-------------------------------------------
itemページ / item*.html
-------------------------------------------*/
/* ここから記述します。 */
.item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin: 32px auto 120px;
}
@media screen and (max-width: 900px) {
  .item__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}

.item__title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .item__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.item__price {
  font-size: 24px;
  margin-bottom: 32px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .item__price {
    font-size: 20px;
  }
}

.item__quantity {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.item__number {
  width: 160px;
  height: 40px;
  background-color: #fff;
  padding: 6px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

.item__link {
  width: 240px;
  height: 50px;
  color: #fff;
  display: inline-block;
  background-color: #BA0808;
  margin: 12px 0 48px;
  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;
}

.item__text {
  color: #fff;
  line-height: 1.9;
}

.item__text--marginBottom {
  margin-bottom: 16px;
}

/*-----------------------------------
 スタイル効かない。なぜ？
.item__text:first-of-type {
    margin-bottom: 16px;
}
------------------------------------*/
/*-------------------------------------------
productsページ / products.html
-------------------------------------------*/
/* ここから記述します。 */
.products__title {
  font-size: 32px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px auto;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .products__title {
    font-size: 24px;
    gap: 16px;
  }
}
.products__title::before {
  display: block;
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
}
@media screen and (max-width: 900px) {
  .products__title::before {
    width: 32px;
  }
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8px;
  }
}

.products__gridImg {
  margin-bottom: 4px;
}

.products__gridText {
  color: #fff;
}
@media screen and (max-width: 900px) {
  .products__gridText {
    font-size: 14px;
  }
}

.grid__popularItem {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .grid__popularItem {
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
    margin-bottom: 80px;
  }
}