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

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

/* ここから記述します。 */
.header {
  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;
}
.header-menu {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 300px;
  color: #333;
  padding: 60px 25px;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
.header-menuLogo {
  width: 160px;
  margin-bottom: 24px;
}
.header-menuList {
  font-size: 16px;
  margin-bottom: 24px;
}
.header-menu.active {
  left: 0;
  opacity: 1;
}
.header-menuBtn {
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 20;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.header-menuBtn .header-hamburgerLine {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header-menuBtn .header-hamburgerLine:nth-child(1) {
  top: 2px;
}
.header-menuBtn .header-hamburgerLine:nth-child(2) {
  top: 12px;
}
.header-menuBtn .header-hamburgerLine:nth-child(3) {
  top: 22px;
}
.header-menuBtn.active .header-hamburgerLine:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-menuBtn.active .header-hamburgerLine:nth-child(2) {
  opacity: 0;
}
.header-menuBtn.active .header-hamburgerLine:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header-mask {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: fixed;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header-mask.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 160px;
}
.footer .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;
}
.footer .footer-inner .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.footer .footer-inner .footer-left .footer-logo {
  width: 160px;
}
.footer .footer-inner .footer-left .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.footer .footer-inner .footer-copyright {
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .footer {
    height: auto;
    text-align: center;
    padding: 48px 0;
  }
  .footer .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .footer .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
/* ここから記述します。 */
main {
  position: relative;
}
main .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  grid-template-areas: "A B C D" "A E F G";
  margin-bottom: 80px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  main .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "A A" "B C" "D E" "F G";
    gap: 28px 8px;
  }
}
main .grid .grid-item img {
  margin-bottom: 4px;
}
main .grid .grid-itemImg1 {
  height: calc(100% - 50.78px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
main .grid-item:nth-child(1) {
  grid-area: A;
}
main .grid-item:nth-child(2) {
  grid-area: B;
}
main .grid-item:nth-child(3) {
  grid-area: C;
}
main .grid-item:nth-child(4) {
  grid-area: D;
}
main .grid-item:nth-child(5) {
  grid-area: E;
}
main .grid-item:nth-child(6) {
  grid-area: F;
}
main .grid-item:nth-child(7) {
  grid-area: G;
}
main .grid .grid-text {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  main .grid .grid-text {
    font-size: 14px;
  }
}
main .grid-sideText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: rotate(270deg) translate(-19%, 30%);
          transform: rotate(270deg) translate(-19%, 30%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-origin: left;
          transform-origin: left;
  color: #fff;
  opacity: 0.4;
}
main .grid-sideText::before {
  content: "";
  margin-right: 24px;
  opacity: 0.4;
  background-color: #fff;
  width: 40px;
  height: 1px;
}
@media screen and (max-width: 900px) {
  main .grid-sideText::before {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  main .grid-sideText {
    display: none;
  }
}
main .grid-btn {
  text-align: center;
  margin-bottom: 120px;
}
main .grid-btnText {
  width: 240px;
  height: 50px;
  padding: 12px 0;
  border: 1px solid #E8E8E8;
  color: #fff;
  display: inline-block;
}

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

.about-inner {
  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-bottom: 120px;
  gap: 48px;
}
@media screen and (max-width: 900px) {
  .about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-inner .about-img {
  width: 100%;
}
.about-inner .about-item {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about-inner .about-item .about-textTitle {
  font-size: 28px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .about-inner .about-item .about-textTitle {
    font-size: 22px;
  }
}
.about-inner .about-item .about-text {
  font-size: 16px;
  line-height: 1.9;
}
.about-inner .about-item .about-text:first-of-type {
  margin-bottom: 32px;
}

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

.company-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .company-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company-inner .company-item {
  color: #fff;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 900px) {
  .company-inner .company-item {
    font-size: 14px;
  }
}
.company-inner .company-item .company-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.company-inner .company-item .company-dl .company-dt {
  width: 30%;
  padding: 20px 10px;
  border-bottom: 1px solid #cacaca;
}
.company-inner .company-item .company-dl .company-dt:last-of-type {
  border-bottom: none;
}
.company-inner .company-item .company-dl .company-dd {
  width: 70%;
  padding: 20px 10px;
  border-bottom: 1px solid #cacaca;
}
.company-inner .company-item .company-dl .company-dd:last-child {
  border-bottom: none;
}
.company-inner .company-map {
  width: 100%;
  position: relative;
  padding-top: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 900px) {
  .company-inner .company-map {
    padding-top: 75%;
  }
}
.company-inner .company-map .company__iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/*-------------------------------------------
itemページ / item*.html
-------------------------------------------*/
/* ここから記述します。 */
.item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.item-inner .item-title {
  font-size: 36px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .item-inner .item-title {
    margin-top: 48px;
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.item-inner .item-price {
  font-size: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .item-inner .item-price {
    font-size: 20px;
  }
}
.item-inner .item-textSmall {
  font-size: 15px;
  color: #d1d1d1;
}
@media screen and (max-width: 900px) {
  .item-inner .item-textSmall {
    font-size: 14px;
  }
}
.item-inner .item-number {
  width: 160px;
  height: 40px;
  padding: 6px;
  background-color: #fff;
  color: #333;
}
.item-inner .item-btn {
  width: 240px;
  height: 50px;
  background-color: #BA0808;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 48px;
  padding: 16px;
}
.item-inner .item-text {
  margin-bottom: 16px;
}
.item-inner .item-text:nth-last-child {
  margin-bottom: 0;
}

/*-------------------------------------------
productsページ / products.html
-------------------------------------------*/
/* ここから記述します。 */
.products-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 0;
}
@media screen and (max-width: 900px) {
  .products-title {
    font-size: 24px;
  }
}
.products-title::before {
  content: "";
  background-color: #e8e8e8;
  display: block;
  margin-right: 24px;
  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: 120px;
}
@media screen and (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 80px;
  }
}
.products-grid img {
  margin-bottom: 4px;
}

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

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