﻿/* ======================================
区画ネットページ専用CSS
業務用・直線的・高視認性デザイン
====================================== */
.kukaku-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 10px 50px;
  color: #222;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  background: #fff;
}
.kukaku-page * {
  box-sizing: border-box;
}
.kukaku-breadcrumb {
  font-size: 14px;
  margin: 0 0 12px;
  color: #555;
}
.kukaku-breadcrumb a {
  color: #005bac;
  text-decoration: underline;
}
/* 上部メイン */
.kukaku-main-visual {
  border: 1px solid #222;
  margin-bottom: 0;
  background: #fff;
}
.kukaku-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}
/* タイトル帯 */
.kukaku-title-box {
  border-left: 10px solid #d71920;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  border-top: none;
  padding: 18px 20px;
  background: #f5f5f5;
  margin-bottom: 24px;
}
.kukaku-label {
  display: inline-block;
  background: #d71920;
  color: #fff;
  font-weight: bold;
  padding: 4px 12px;
  font-size: 15px;
  margin-bottom: 8px;
}
.kukaku-title-box h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  color: #111;
  font-weight: 800;
}
.kukaku-title-box p {
  margin: 0;
  font-size: 19px;
  font-weight: bold;
  color: #222;
}

/* 問い合わせ帯 */
.kukaku-contact-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  background: #003f73;
  color: #fff;
  padding: 16px 18px;
  margin-bottom: 30px;
}

.kukaku-contact-bar strong {
  display: block;
  font-size: 20px;
  line-height: 1.5;
}

.kukaku-contact-bar span {
  font-size: 15px;
}

.kukaku-btn {
  display: inline-block;
  min-width: 210px;
  text-align: center;
  background: #d71920;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 18px;
  border: 2px solid #fff;
  font-size: 17px;
}

.kukaku-btn:hover {
  background: #b00000;
}

/* 共通見出し */
.kukaku-section {
  margin: 34px 0;
}

.kukaku-section h2 {
  margin: 0 0 16px;
  padding: 10px 14px;
  background: #003f73;
  color: #fff;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.35;
  border-left: 8px solid #d71920;
}

.kukaku-section h3 {
  margin: 20px 0 10px;
  padding: 7px 10px;
  font-size: 21px;
  color: #111;
  border-left: 6px solid #003f73;
  background: #eeeeee;
}

/* 本文 */
.kukaku-text {
  border: 1px solid #999;
  padding: 18px 20px;
  background: #fff;
}

.kukaku-text p {
  margin: 0 0 12px;
}

.kukaku-text p:last-child {
  margin-bottom: 0;
}

/* 重要ポイント */
.kukaku-point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}

.kukaku-point {
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 16px 14px;
  background: #fff;
}

.kukaku-point-num {
  display: block;
  color: #d71920;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 4px;
}

.kukaku-point strong {
  display: block;
  font-size: 20px;
  color: #111;
  margin-bottom: 6px;
}

.kukaku-point p {
  margin: 0;
}

/* 用途 */
.kukaku-use-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}

.kukaku-use-list div {
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 12px;
  font-weight: bold;
  background: #fafafa;
  min-height: 68px;
  display: flex;
  align-items: center;
}
/* 画像配置 */
.kukaku-image-row {
  margin-top: 16px;
}
.kukaku-image-box {
  border: 1px solid #333;
  background: #fff;
  margin-top:16px;
}

.kukaku-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.kukaku-caption {
  padding: 8px 10px;
  background: #333;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.kukaku-caption-img{
	    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 14px; */
    grid-auto-flow: column;
}
/* 規格表 */
.kukaku-table-wrap {
  overflow-x: auto;
  border: 1px solid #333;
}

.kukaku-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 16px;
}

.kukaku-spec-table th {
  background: #003f73;
  color: #fff;
  padding: 11px 8px;
  border: 1px solid #fff;
  text-align: center;
  white-space: nowrap;
}

.kukaku-spec-table td {
  padding: 10px 8px;
  border: 1px solid #999;
  text-align: center;
  background: #fff;
}

.kukaku-spec-table tbody tr:nth-child(even) td {
  background: #f2f2f2;
}

.kukaku-color-yellow {
  background: #ffe100 !important;
  font-weight: bold;
}

.kukaku-color-green {
  background: #008a45 !important;
  color: #fff;
  font-weight: bold;
}

.kukaku-color-red {
  background: #d71920 !important;
  color: #fff;
  font-weight: bold;
}

.kukaku-stock {
  color: #d71920;
  font-weight: bold;
}

.kukaku-order {
  color: #b35400;
  font-weight: bold;
}

/* 注意書き */
.kukaku-note {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #d71920;
  background: #fff4f4;
  font-weight: bold;
}

/* FAQ */
.kukaku-faq details {
  border: 1px solid #999;
  margin-bottom: 8px;
  background: #fff;
}

.kukaku-faq summary {
  cursor: pointer;
  padding: 12px 14px;
  background: #eeeeee;
  font-weight: bold;
  color: #111;
}

.kukaku-faq p {
  margin: 0;
  padding: 14px;
}

/* 下部問い合わせ */
.kukaku-bottom-contact {
  margin-top: 36px;
  padding: 22px 18px;
  background: #003f73;
  color: #fff;
  text-align: center;
  border-top: 6px solid #d71920;
}

.kukaku-bottom-contact h2 {
  margin: 0 0 10px;
  padding: 0;
  background: none;
  border: none;
  color: #fff;
}

.kukaku-bottom-contact p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: bold;
}
/* スマホ対応 */
@media (max-width: 850px) {
  .kukaku-contact-bar {
    grid-template-columns: 1fr;
  }

  .kukaku-point-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kukaku-use-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .kukaku-image-row {
    grid-template-columns: 1fr;
  }

  .kukaku-btn {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .kukaku-page {
    font-size: 16px;
  }

  .kukaku-title-box {
    padding: 14px;
  }

  .kukaku-point-grid,
  .kukaku-use-list {
    grid-template-columns: 1fr;
  }
}
.auto-style1 {
	font-size: xx-small;
}
.auto-style2 {
	font-size: small;
}
.auto-style3 {
	font-size: xx-small;
	text-align: center;
}
