@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;
  color: #fff;
  padding: 60px 25px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}

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

.header__menuLink {
  color: #353535;
}

.header__menuList {
  margin-bottom: 20px;
}

/*----ハンバーガーメニュー*/
.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 {
  background-color: #fff;
}
.open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.open .header__hamburgerLine:nth-child(2) {
  opacity: 0;
}
.open .header__hamburgerLine:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

/*----*/
.header__mask {
  display: none;
  -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: #000;
  opacity: 0.8;
  z-index: 10;
  cursor: pointer;
}

/* フッター*/
.footer__wrapper {
  background: #fff;
  color: #353535;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .footer__wrapper {
    height: auto;
    padding: 48px 0px;
  }
}

.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;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-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;
    row-gap: 24px;
    margin-bottom: 40px;
  }
}

.footer__copyright {
  font-size: 14px;
}

/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
/* ここから記述します。 */
.u-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 900px) {
  .u-wrapper {
    padding: 0px 15px;
  }
}

.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;
}
@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__img {
  margin-bottom: 4px;
  vertical-align: top;
  max-width: 100%;
}

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

/*------------------------
.grid__item{
    &nth__child(1) {
        grid-area: A;

    .grid__img{
        height: calc(-100% - 50.78px);
        object-fit: cover;
        object-position: right;
        margin-bottom: 4px;
        vertical-align: top;
        max-width: 100%;

        @media screen and  (max-width: 900px){
            height: auto;
        }
    }
}
}
----------------------------------*/
.grid__item:nth-child(1) {
  grid-area: A;
}

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

/*
.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__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__btnWrap {
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .grid__btnWrap {
    margin-bottom: 80px;
  }
}

.grid__btnText {
  width: 240px;
  height: 50px;
  color: #fff;
  display: inline-block;
  padding: 12px 0px;
  border: solid 1px #cacaca;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.grid__btnText:hover {
  opacity: 0.85;
}

.grid__sideText {
  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) {
  .grid__sideText {
    display: none;
  }
}

.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__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;
}
@media screen and (max-width: 900px) {
  .about__title {
    font-size: 24px;
  }
}

.u-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 900px) {
  .u-wrapper {
    padding: 0px 15px;
  }
}

.about__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 900px) {
  .about__title::before {
    width: 32px;
    margin-right: 16px;
  }
}

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

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

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

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

/*-------------------------------------------
companyページ / company.html
-------------------------------------------*/
/* ここから記述します。 */
.company__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;
}
@media screen and (max-width: 900px) {
  .company__title {
    font-size: 24px;
  }
}

.company__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin-right: 24px;
}
@media screen and (max-width: 900px) {
  .company__title::before {
    width: 32px;
    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: 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;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

/*-------------------------------------------
itemページ / item*.html
-------------------------------------------*/
.u-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 900px) {
  .u-wrapper {
    padding: 0px 15px;
  }
}

.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 {
  font-size: 36px;
  color: #fff;
  margin: 0px auto 24px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .item__title {
    font-size: 24px;
    margin: 0px auto 16px;
  }
}

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

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

.item__number {
  width: 160px;
  height: 40px;
  background: #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;
  width: 240px;
  height: 50px;
  color: #fff;
  display: inline-block;
  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 0px 48px;
}

/*お買い物かごicon*/
.fa-solid,
.fas {
  margin-left: 4px;
}

/*icon end*/
.item__text {
  color: #fff;
  line-height: 1.9;
}

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

/*-------------------------------------------
productsページ / products.html
-------------------------------------------*/
/* ここから記述します。 */
.products__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;
}
@media screen and (max-width: 900px) {
  .products__title {
    font-size: 24px;
  }
}

.products__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin-right: 24px;
}
@media screen and (max-width: 900px) {
  .products__title::before {
    width: 32px;
    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__gridImg {
  margin-bottom: 4px;
  vertical-align: top;
}

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

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