@charset "UTF-8";
:root {
  --nav-bg: #333;
  --nav-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 20px;
  font-family: "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  color: #333;
}

header {
  position: sticky;
  display: flex;
  top: 0px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  background-color: #ffffff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px 100px;
  height: 80px;
}
header h1 {
  font-size: 20px;
  top: 0px;
  letter-spacing: 0.1em;
  margin-left: 40px;
  height: 40px;
}
header a {
  text-decoration: none;
  color: inherit;
}
header .menu-btn {
  width: 30px;
  height: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 20px;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.product-name-top {
  margin-bottom: 30px;
  margin-left: 35px;
}

.item a {
  text-decoration: none;
  color: #333;
  display: block;
}
.item a img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  margin-bottom: 10px;
}
.item a .title {
  font-size: 14px;
  margin-bottom: 5px;
}
.item a .price {
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.menu-btn.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.view-more {
  text-align: center;
  margin: 60px 0 100px;
}
.view-more a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  border: none;
}
.view-more a:hover {
  opacity: 0.5;
}

.footer {
  padding: 0 40px 0px;
}
.footer .footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-top: 90px;
}
.footer .sns-links {
  display: flex;
  list-style: none;
}
.footer .sns-links li {
  margin-right: 30px;
}
.footer .sns-links li a {
  color: #333;
  text-decoration: none;
}
.footer .sns-links li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  color: #333;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-inner .sns-links {
    margin-right: 0;
    justify-content: center;
  }
}
.item-detail {
  max-width: 1000px;
  margin-left: 0;
  padding: 40px 20px;
  margin-right: auto;
}
.item-detail .product-name-top {
  font-size: 16px;
  margin-bottom: 40px;
}

.detail-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.detail-container .detail-image {
  flex: 1;
}
.detail-container .detail-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.detail-container .detail-info {
  flex: 1;
}
.detail-container .detail-info .description {
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 40px;
}
.detail-container .detail-info .description p {
  margin-bottom: 40px;
  font-weight: 500;
}
.detail-container .detail-info .price {
  margin-bottom: 40px;
}
.detail-container .detail-info .spec-list {
  font-size: 12px;
  margin-bottom: 60px;
}
.detail-container .detail-info .spec-list div {
  display: flex;
  margin-bottom: 10px;
}
.detail-container .detail-info .spec-list div dt {
  width: 80px;
}
.detail-container .detail-info .back-link {
  display: block;
  color: #333;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .detail-container {
    flex-direction: column;
    gap: 40px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 60px 0;
  gap: 20px;
}
.pagination li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}
.pagination li a:hover {
  opacity: 0.7;
}
.pagination li a.active {
  font-weight: bold;
}

.about {
  font-size: 14px;
  margin: 30px 40px;
}

.text {
  max-width: 600px;
  font-size: 14px;
  margin: 0 40px;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.text2 {
  max-width: 600px;
  font-size: 14px;
  margin: 0 40px;
  padding: 0;
  text-align: left;
  margin-bottom: 160px;
  font-weight: 500;
  line-height: 1.8;
}

:root {
  --nav-bg-color: rgba(0, 0, 0, 0.9);
  --nav-text-color: #ffffff;
  --nav-font-size: 24px;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--nav-bg-color);
  display: flex;
  align-items: center;
  justify-content: left;
  z-index: 9999;
  transition: right 0.5s ease;
}

.nav-menu.open {
  right: 0;
}

#menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  cursor: pointer;
}

.nav-menu ul {
  list-style: none;
  padding: 50px;
  margin-top: -400px;
}

.nav-menu ul li {
  margin-bottom: 10px;
  text-align: left;
}

.nav-menu ul li a {
  color: var(--nav-text-color);
  text-decoration: none;
  font-size: var(--nav-font-size);
  font-weight: bold;
  font-size: 14px;
}

:root {
  --close-btn-size: 40px;
  --close-btn-color: #ffffff;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: var(--close-btn-size);
  color: var(--close-btn-color);
  cursor: pointer;
  line-height: 1;
}

:root {
  --company-max-width: 600px; /* 表の最大幅 */
  --border-color: #ddd; /* 線の色 */
  --title-margin: 60px; /* タイトル下の余白 */
  --row-padding: 20px; /* 行の上下余白 */
  --label-width: 160px; /* 左側（社名など）の幅 */
}

.company-section {
  max-width: var(--company-max-width);
  margin: 80px auto; /* 画面中央に配置 */
  padding: 0 20px;
}

.page-title {
  font-size: 20px;
  margin-bottom: var(--title-margin);
  font-weight: normal;
}

.company-list {
  border-top: 1px solid var(--border-color); /* 一番上の線 */
}

.company-row {
  display: flex;
  border-bottom: 1px solid var(--border-color); /* 各行の下線 */
  padding: var(--row-padding) 0;
}

.company-row dt {
  width: var(--label-width);
  font-size: 14px;
}

.company-row dd {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}/*# sourceMappingURL=fd.css.map */