@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-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__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-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}

.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 {
  background-color: #fff;
}
.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 0;
  }
}
.footer__wrapper .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__wrapper .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__wrapper .footer__inner .footer__logo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
}
.footer__wrapper .footer__inner .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__wrapper .footer__inner .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__wrapper .footer__inner .footer__copyright {
  font-size: 14px;
}

/*-------------------------------------------
TOP gridレイアウト
-------------------------------------------*/
/* ここから記述します。 */
.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 .grid__item:nth-child(1) {
  grid-area: A;
}
.grid .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 .grid__item:nth-child(1) .grid__img {
    height: auto;
  }
}
.grid .grid__img {
  margin-bottom: 4px;
  vertical-align: top;
}
.grid .grid__text {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .grid .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__btnWrap .grid__btnText {
  width: 240px;
  height: 50px;
  color: #fff;
  display: inline-block;
  padding: 12px 0;
  border: solid 1px #cacaca;
}

.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;
}
.grid__sideText::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-right: 24px;
}
@media screen and (max-width: 900px) {
  .grid__sideText {
    display: none;
  }
}

/*-------------------------------------------
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;
  }
}
.about__title::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin-right: 24px;
}
@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__wrapper .about__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__wrapper .about__item .about__subTitle {
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .about__wrapper .about__item .about__subTitle {
    font-size: 22px;
  }
}
.about__wrapper .about__item .about__text {
  color: #fff;
  line-height: 1.9;
}
.about__wrapper .about__item .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__wrapper .company__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company__wrapper .company__map {
  width: 100%;
  position: relative;
  padding-top: 50%;
}
@media screen and (max-width: 900px) {
  .company__wrapper .company__map {
    padding-top: 75%;
  }
}
.company__wrapper .company__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company__wrapper .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__wrapper .company__dl {
    font-size: 14px;
  }
}
.company__wrapper .company__dl .company__dt {
  width: 30%;
  border-bottom: solid 1px #cacaca;
  padding: 20px 10px;
}
.company__wrapper .company__dl .company__dd {
  width: 70%;
  border-bottom: solid 1px #cacaca;
  padding: 20px 10px;
}

/*-------------------------------------------
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__wrapper .item__title {
  font-size: 36px;
  color: #fff;
  margin: 0 auto 24px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .item__wrapper .item__title {
    font-size: 24px;
    margin: 0 auto 16px;
  }
}
.item__wrapper .item__price {
  font-size: 24px;
  color: #fff;
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .item__wrapper .item__price {
    font-size: 20px;
  }
}
.item__wrapper .item__textSmall {
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.item__wrapper .item__number {
  width: 160px;
  height: 40px;
  background: #fff;
  padding: 6px;
}
.item__wrapper .item__link {
  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 0 48px;
}
.item__wrapper .fa-solid {
  margin-left: 4px;
}
.item__wrapper .item__text {
  color: #fff;
  line-height: 1.9;
}
.item__wrapper .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__grid .products__gridImg {
  margin-bottom: 4px;
  vertical-align: top;
}
.products__grid .products__gridText {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .products__grid .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;
  }
}

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