@charset "UTF-8";
/* =========================
    ブレークポイントとmixin
  ========================= */
/* =========================
    共通
  ========================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
}
body.is-fixed {
  overflow: hidden;
}

.page-title {
  padding-top: 40px;
  padding-bottom: 30px;
  font-size: 14px;
}

/* =========================
    ヘッダー
  ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  /* =========================
    ハンバーガーメニュー
  ========================= */
  /* =========================
    ドロワー
  ========================= */
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.header__container {
  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: 180px;
}
.header__logo img {
  width: 100%;
}
.header__menu-button {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}
.header__menu-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-button span:nth-child(1) {
  top: 10px;
}
.header__menu-button span:nth-child(2) {
  top: 20px;
}
.header__menu-button.is-checked span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__menu-button.is-checked span:nth-child(2) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__menu-button.is-checked span {
  background-color: #fff;
}
.header__contents {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.header__contents.is-open {
  opacity: 1;
  visibility: visible;
}
.header__nav {
  position: absolute;
  top: 36px;
  left: 50px;
}
.header__nav-link {
  display: block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 16px;
}

/* =========================
    main
  ========================= */
.main {
  padding-top: 80px;
}
.main__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.main__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.main__contents a {
  display: block;
}
.main__contents img {
  width: 100%;
  height: auto;
}
.main__contents img:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.main__contents--title {
  font-size: 12px;
  padding-top: 10px;
}
.main__contents--price {
  font-size: 12px;
  padding-bottom: 40px;
}

/* =========================
  各商品ページ
========================= */
.product__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.product__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
}
.product__container img {
  width: 400px;
  margin-right: 64px;
}
.product__container--text {
  width: 336px;
  font-size: 14px;
}
.product__container--text-1 + .product__container--text-1 {
  padding-top: 30px;
}
.product__container--price {
  padding: 30px 0;
}
.product__container--table {
  border-collapse: separate;
  border-spacing: 14px 0; /* 横 縦 */
}

/* =========================
  About
========================= */
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
}
.about__container--text {
  width: 600px;
  font-size: 14px;
}
.about__container--text-1 + .about__container--text-1 {
  padding-top: 30px;
}
.about__container--text-1:nth-child(2) {
  padding-bottom: 122px;
}

/* =========================
  COMPANY
========================= */
.company__map iframe {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.company__container {
  width: 600px;
  margin-top: 20px;
  padding-bottom: 122px;
}
.company__container--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
  padding-bottom: 20px;
  border-bottom: #dcdbdb 1px solid;
  margin-bottom: 20px;
  font-size: 14px;
}
.company__container--row dt {
  width: 30%;
  text-align: left;
}
.company__container--row dd {
  width: 70%;
}
.company__container--row:last-child {
  border-bottom: none;
}

/* =========================
  ページ遷移
========================= */
.view-more {
  font-size: 14px;
  text-align: center;
  padding-bottom: 121px;
}

.pagination {
  font-size: 14px;
  text-align: center;
  padding-bottom: 121px;
}
.pagination__link + .pagination__link {
  padding-left: 40px;
}

.back-to {
  font-size: 14px;
  text-align: center;
  padding-bottom: 121px;
}

/* =========================
  フッター
========================= */
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 38px;
}
.footer__sns--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 30px;
}
.footer__copy-right {
  font-size: 10px;
}

/*----------------------------------------------
// sp
--------------------------------------------*/
@media screen and (max-width:899px) {
  /* =========================
    main
  ========================= */
  .main__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .main__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
    width: 100%;
  }
  .main__contents a {
    display: block;
  }
  .main__contents img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* =========================
    各商品ページ
  ========================= */
  .product__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .product__container {
    width: 100%;
    display: block;
    padding-bottom: 60px;
  }
  .product__container img {
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .product__container--text {
    font-size: 14px;
    width: 100%;
    padding-top: 30px;
  }
  .product__container--text-1 + .product__container--text-1 {
    padding-bottom: 0px;
  }
  .product__container--price {
    padding: 30px 0;
    width: 100%;
  }
  .product__container--table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  .product__container--table td {
    text-align: left;
  }
  /* =========================
    COMPANY
  ========================= */
  .company__map iframe {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    width: 100%;
  }
  .company__container {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 102px;
  }
  .company__container--row {
    display: block;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: #dcdbdb 1px solid;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .company__container--row dt {
    width: 30%;
    text-align: left;
  }
  .company__container--row dd {
    width: 70%;
  }
  .company__container--row:last-child {
    border-bottom: none;
  }
  /* =========================
    フッター
  ========================= */
  .footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: block;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    height: 58px;
  }
  .footer__sns--container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    gap: 30px;
    padding-bottom: 5px;
  }
  .footer__copy-right {
    font-size: 10px;
  }
  /* =========================
    ページ遷移
  ========================= */
  .view-more {
    padding-bottom: 102px;
  }
  .pagination {
    padding-bottom: 102px;
  }
  .back-to {
    padding-bottom: 102px;
  }
}