@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;
  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 */
.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  align-items: center;
}
.header__logo {
  width: 160px;
  height: auto;
}
/*隠れているナビリスト*/
.header__menu {
  display: block;
  width: 300px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  color: #fff;
  padding: 60px 25px;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
.open .header__menu {
  left: 0;
  opacity: 1;
}
.header__menuLogo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
}
.header__menuList {
  margin-bottom: 20px;
  color: #000;
}

/*ハンバーガーメニューボタン*/
.header__toggleBtn {
  width: 30px;
  height: 20px;
  z-index: 20;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
}
.header__hamburgerLine {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  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;
}

/*ハンバーガーのXを表示させる*/
.open .header__hamburgerLine:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.open .header__hamburgerLine:nth-child(2) {
  opacity: 0;
}
.open .header__hamburgerLine:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}
.open .header__hamburgerLine {
  background: #fff;
}

/*ハンバーガーを押すと背景が黒くなる*/
.header__mask {
  display: none;
  transition: all 0.5s;
}
.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 */
.footer__wrapper {
  background: #fff;
  display: flex;
}
.footer__logo {
  width: 160px;
  height: auto;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 50px;
  @media screen and (max-width:900px){
    flex-direction: column;
  }
}
.footer__innerUl {
  display: flex;
  padding-top: 25px;
  @media screen and (max-width:900px){
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
    margin-bottom: 40px;
    }
}
.footer__innerUl li {
  padding-right: 28px;
}
.footer__copyright {
  font-size: 14px;
}
/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
.grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  grid-template-areas: 
    "A B C D"
    "A E F G";
  gap: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-areas:
      "A A"
      "B C"
      "D E"
      "F G";
      gap: 28px 8px;
  }
}
.grid__item:nth-child(1) {
  grid-area: A;
}
.grid__item:nth-child(1) .grid__img {
  height: calc(100% - 50.78px);
  object-fit: cover;
  object-position: right;
}
.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__text {
  color: #fff;
}
.grid__btnWrap {
  text-align: center;
  margin-bottom: 120px;
}
.grid__btnText {
  color: #fff;
  border: 1px solid #fff;
  width: 240px;
  height: 50px;
  display: inline-block;
  margin: 0 auto;
  padding: 12px 0;
}
.grid__sideText {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: rotate(270deg) translate(-19%, 30%);
  transform-origin: left;
  display: flex;
  align-items: center;
}
.grid__sideText::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-right: 24px;
}
/*-------------------------------------------
aboutページ / about.html
-------------------------------------------*/
.about__wrapper {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}
  @media screen and (max-width: 900px) {
    .about__wrapper {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.about__title {
  color: #fff;
  font-size: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.about__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  display: block;
  margin-right: 24px;
}
.about__item {
  flex: 1;
}
.about__subTitle {
  color: #fff;
  font-size: 28px;
  padding-bottom: 24px;
}
.about__text {
  color: #fff;
  line-height: 1.9rem;
  padding-bottom: 25px;
}


/* ここから記述します。 */
/*-------------------------------------------
companyページ / company.html
-------------------------------------------*/
.company__title {
  color: #fff;
  font-size: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}
.company__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  display: block;
  margin-right: 24px;
}
.company__wrapper {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}
  @media screen and(max-width: 900px) {
    .company__wrapper {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.company__item {
  flex: 1;
}
.company__map {
  position: relative;
  width: 100%;
  padding-top: 50%;
}
  @media screen and(max-width: 900px) {
    .company__map {
    padding-top: 75%;
  }
}
.company__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company__dl {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.company__dt {
  width: 30%;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
}
.company__dd {
  width: 70%;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
}
.company__dt:last-of-type {
  border-bottom: none;
}
.company__dd:last-of-type {
  border-bottom: none;
}



/*-------------------------------------------
itemページ / item*.html
-------------------------------------------*/
/* main */
.item__wrapper {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  margin: 32px auto 120px;
  @media screen and (max-width:900px) {
    flex-direction: column;
  }
}
.item__title {
  color: #fff;
  font-size: 36px;
  padding-bottom: 24px;
  @media screen and (max-width:900px) {
    font-size: 26px;
  }
}

.item__price {
  color: #fff;
  font-size: 24px;
  padding-bottom:32px;
  @media screen and (max-width:900px) {
    font-size: 20px;
  }
}
.item__textSmall {
  color: #fff;
  font-size: 0.87rem;
  padding-bottom: 4px;
}
.item__number {
  background: #fff;
  width: 160px;
  height: 40px;
  padding: 6px;
}
.item__link {
  padding-top: 25px;
  padding-bottom: 63px;
}
.item__link a {
  background: rgba(196, 3, 3, 0.861);
  color: #fff;
  padding: 15px 20px;
}
.fa-solid {
  padding-left: 4px;
}
.item__text {
  color: #fff;
  line-height: 1.9rem;
  }
.item__text--marginBottom {
  padding-bottom: 15px;
}

/*-------------------------------------------
productsページ / products.html
-------------------------------------------*/
/*main {
  margin-top: 30px;;
}*/
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  margin-top: 30px;
  gap: 35px;
  @media screen and (max-width: 900px){
   grid-template-columns: repeat(2, 1fr);
   grid-template-rows: repeat(8, 1fr);
  }
}
.products__gridImg {
  padding-bottom: 3px;
}
.products__gridText {
  color: #fff;
}
.products__title {
  color: #fff;
  font-size: 30px;
  margin-top: 90px;
  display: flex;
  align-items: center;
}
.products__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  display: block;
  margin-right: 24px;
}
.products__gridPopular {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  margin-bottom: 122px;
  gap: 35px;
  @media screen and (max-width: 900px){
    grid-template-columns: repeat(1, 1fr);
  }
}