@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.9;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.link {
  color: #111;
  text-decoration: none;
  font-size: 13px;
}

.link:hover {
  opacity: 0.7;
}

/* ===== Header ===== */
.header {
  padding: 28px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 18px;
}

/* ハンバーガー */
.hamburger {
  width: 40px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 0;
}

.hamburger span {
  height: 2px;
  background: #111;
  display: block;
}

/* ===== Overlay Menu ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.overlay__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.overlay__nav {
  position: absolute;
  top: 40px;
  left: 0;
  display: grid;
  gap: 12px;
}

.overlay__link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.overlay__link:hover {
  opacity: 0.7;
}

.overlay__close {
  position: absolute;
  top: 24px;
  right: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== Products (index) ===== */
.products {
  padding: 18px 0 60px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px 44px;
  margin-top: 8px;
}

.card {
  text-decoration: none;
  color: #111;
}

.card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.card__title {
  margin: 10px 0 2px;
  font-size: 12px;
}

.card__price {
  margin: 0;
  font-size: 12px;
}

.products__more {
  margin-top: 30px;
}

/* ===== Product detail ===== */
.product {
  padding: 22px 0 70px;
}

.product__title {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 600;
}

.product__body {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: start;
}

.product__image img {
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}

.product__text {
  margin: 0 0 18px;
  font-size: 12px;
}

.product__price {
  margin: 0 0 18px;
  font-size: 12px;
}

.spec {
  margin: 0;
  font-size: 12px;
}

.spec__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  margin: 6px 0;
}

.spec dt {
  font-weight: 600;
}

.spec dd {
  margin: 0;
}

.product__back {
  margin-top: 40px;
}

/* ===== Common Page (About / Company / Contact) ===== */
.page {
  padding: 34px 0 80px;
}

.page__label {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 600;
}

.page__inner {
  width: min(860px, 100%);
}

/* ABOUT：文章は幅狭めで左寄り（スクショっぽく） */
.about-text {
  width: min(720px, 100%);
  font-size: 13px;
}

.about-text p {
  margin: 0 0 46px;
}

/* COMPANY：表（左項目・右値）＋横線 */
.company-table {
  width: min(860px, 100%);
  border-collapse: collapse;
  font-size: 13px;
}

.company-table tr {
  border-bottom: 1px solid #ddd;
}

.company-table th,
.company-table td {
  padding: 18px 0;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  text-align: left;
  font-weight: 600;
}

.company-table td {
  padding-left: 24px;
}

/* 事業内容の複数行 */
.company-table .multiline {
  white-space: pre-line;
}

/* 地図 */
.map {
  margin-top: 28px;
  width: min(860px, 100%);
}

.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Contactページ簡易（必要なら後でスクショに合わせて調整） */
.contact-form {
  width: min(860px, 100%);
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bbb;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
}

.contact-actions {
  margin-top: 10px;
}

.contact-actions button {
  width: 180px;
  height: 46px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-actions button:hover {
  opacity: 0.85;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 34px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  gap: 30px;
}

.footer__link {
  color: #111;
  text-decoration: none;
  font-size: 12px;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__copy {
  font-size: 12px;
}

/* ===== Products label（スクショの Products） ===== */
.products__label {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== Pager（1 2） ===== */
.pager {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.pager__link {
  text-decoration: none;
  color: #111;
  font-size: 12px;
}

.pager__link.is-current {
  font-weight: 700;
}

/* 2ページ目は画像が1段だけなので、余白を少し多めに（スクショの空白感） */
.products__grid--short {
  grid-template-columns: repeat(4, 1fr);
}

/* 2ページ目：下に大きく余白を作って、フッターが下に来る感じにする */
.products--page2 {
  padding-bottom: 260px;
}

/* フッターを下に見せたい時の微調整（保険） */
.footer--push-bottom {
  margin-top: -140px; /* 空白が長すぎる時だけ効く。不要なら0にしてOK */
}/*# sourceMappingURL=style.css.map */