@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;
}
.header__logo {
  width: 160px;
  height: auto;
}
.header__menu {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 300px;
  color: #fff;
  background-color: #fff;
  padding: 60px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
.header__menuLogo {
  margin-bottom: 20px;
}
.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__toggleBtnLine {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__mask {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__toggleBtnLine:nth-child(1) {
  top: 2px;
}
.header__toggleBtnLine:nth-child(2) {
  top: 12px;
}
.header__toggleBtnLine:nth-child(3) {
  top: 22px;
}

.open .header__toggleBtnLine {
  background-color: #fff;
}

.open .header__toggleBtnLine:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.open .header__toggleBtnLine:nth-child(2) {
  opacity: 0;
}

.open .header__toggleBtnLine:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.open .header__menu {
  left: 0;
  opacity: 1;
}

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

.footer__wrapper {
  background-color: #fff;
  color: #353535;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .footer__wrapper {
    height: auto;
    padding: 50px 0;
  }
}
.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;
}
.footer__innerUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@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;
}
.footer div {
  display: block;
}

/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
/* ここから記述します。 */
.main {
  position: relative;
}
.main__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  color: #fff;
  margin: 32px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 80px;
  grid-template-areas: "A B C D" "A E F G";
}
@media screen and (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8px;
    grid-template-areas: "A A" "B C" "D E" "F G";
  }
}
.grid__item:nth-child(1) {
  grid-area: A;
}
.grid__item:nth-child(2) {
  grid-area: B;
}
.grid__item:nth-child(3) {
  grid-area: C;
}
.grid__item:nth-child(4) {
  grid-area: D;
}
.grid__item:nth-child(5) {
  grid-area: E;
}
.grid__item:nth-child(6) {
  grid-area: F;
}
.grid__item:nth-child(7) {
  grid-area: G;
}
.grid__img {
  margin-bottom: 4px;
  vertical-align: top;
}
.grid__text {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .grid__text {
    font-size: 14px;
  }
}
.grid__btnWrap {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .grid__btnWrap {
    margin-bottom: 80px;
  }
}
.grid__btnText {
  display: inline-block;
  color: #fff;
  border: #fff 1px solid;
  padding: 12px 0px;
  width: 240px;
  height: 50px;
}
.grid__sideText {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  left: 14px;
  top: 50%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  -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: "";
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-right: 24px;
}

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

/*-------------------------------------------
aboutページ / about.html
-------------------------------------------*/
/* ここから記述します。 */
.about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  margin: 32px auto;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .about__title {
    font-size: 24px;
  }
}
.about__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin-right: 24px;
}
@media screen and (max-width: 900px) {
  .about__title::before {
    width: 30px;
    margin-right: 16px;
  }
}
.about__detail {
  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: 50px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .about__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}
.about__detailImg {
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .about__detailImg {
    width: 100%;
    height: auto;
  }
}
.about__detailTitle {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
}
@media screen and (max-width: 900px) {
  .about__detailTitle {
    font-size: 22px;
  }
}
.about__detailText {
  color: #fff;
}
.about__detailText:first-of-type {
  margin-bottom: 35px;
}

/*-------------------------------------------
companyページ / company.html
-------------------------------------------*/
/* ここから記述します。 */
.company__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  margin: 32px auto;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .company__title {
    font-size: 24px;
  }
}
.company__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin-right: 24px;
}
@media screen and (max-width: 900px) {
  .company__title::before {
    width: 30px;
    margin-right: 16px;
  }
}
.company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  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;
    gap: 80px;
    margin-bottom: 80px;
  }
}
.company__map {
  position: relative;
  width: 100%;
  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__item {
  color: #fff;
}
.company__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.company__dt {
  width: 30%;
  border-bottom: #fff 1px solid;
  padding: 20px 10px;
}
.company__dt:last-of-type {
  border-bottom: none;
}
.company__dd {
  width: 70%;
  padding: 20px 10px;
  border-bottom: #fff 1px solid;
}
.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: 50px;
  margin: 32px auto 120px;
}
@media screen and (max-width: 900px) {
  .item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}
.item img {
  max-width: 100px;
}
.item__title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .item__title {
    font-size: 24px;
    margin: 0 auto 16px;
  }
}
.item__price {
  color: #fff;
  font-size: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .item__price {
    font-size: 20px;
  }
}
.item__textSmall {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
  cursor: pointer;
}
.item__number {
  background-color: #fff;
  width: 160px;
  height: 40px;
  padding: 6px;
}
.item__link {
  background-color: #BA0808;
  color: #fff;
  width: 240px;
  height: 50px;
  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;
}
.item__text {
  color: #fff;
  margin-bottom: 16px;
}
.item__text:first-of-type {
  margin-bottom: 16px;
}

/*-------------------------------------------
productsページ / products.html
-------------------------------------------*/
/* ここから記述します。 */
.products {
  color: #fff;
}
.products__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  margin: 32px auto;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .products__title {
    font-size: 24px;
  }
}
.products__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin-right: 24px;
}
@media screen and (max-width: 900px) {
  .products__title::before {
    width: 30px;
    margin-right: 16px;
  }
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8px;
    margin-bottom: 80px;
  }
}
.products__gridPopular {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .products__gridPopular {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.products__img {
  margin-bottom: 5px;
}
.products__text {
  color: #fff !important;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .products__text {
    color: #fff !important;
    font-size: 14px;
  }
}