@charset "UTF-8";
/* ============================================================
   business.css - 事業案内ページ固有スタイル
   ============================================================ */

/* ===== 導入文 ===== */
.business-intro {
  background: #ffffff;
  padding: 60px 0 40px;
}

.business-lead {
  font-size: clamp(1rem, 2vw, 1.5625rem);
  color: #102487;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
  padding-left: 20px;
}

/* ===== 各事業セクション ===== */
.business-section {
  background: #ffffff;
  padding: 60px 0;
}

.business-section--gray {
  background: #f5f5f5;
}

/* 案B：左画像・右テキスト交互レイアウト */
.business-layout {
  display: flex;
  gap: 56px;
  align-items: center;
}

.business-layout--reverse {
  flex-direction: row-reverse;
}

.business-photo {
  flex-shrink: 0;
  width: 45%;
}

.business-body {
  flex: 1;
}

/* カテゴリー名 */
.business-category {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #102487;
  margin-bottom: 16px;
  padding-bottom: 12px;
  line-height: 1.5;
}

.business-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 20px;
}

.business-body h4 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* 製品リスト */
.business-product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.business-product-list li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  padding: 6px 0 6px 20px;
  border-bottom: 1px dashed #e8e8e8;
  position: relative;
}

.business-product-list li:first-child {
  border-top: 1px dashed #e8e8e8;
}

.business-product-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f79824;
  border-radius: 50%;
}

/* 詳細ボタン */
.business-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #54a1ed;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.business-btn i {
  transition: transform 0.2s;
}

.business-btn:hover {
  background: #0b1a6a;
}

.business-btn:hover i {
  transform: translateX(6px);
}


/* ===== 事業詳細ページ共通 ===== */
.business-detail-section {
  background: #ffffff;
  padding: 60px 0;
}

/* パンくずリスト */
.breadcrumb-wrap {
  background: #f5f5f5;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 0.8125rem;
  color: #888;
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 4px;
  color: #aaa;
}

.breadcrumb a {
  color: #102487;
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb a:hover { opacity: 0.7; }

/* ===== 繊維ブロック ===== */
.fiber.d-flex {
  margin-top: 60px;
  gap: 20px;
}
/* 大カテゴリー */
.fiber-category {
  margin-bottom: 32px;
}

.fiber-cat-badge {
  display: inline-block;
  background: #f79824;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.fiber-cat-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #102487;
  border-bottom: 2px solid #f79824;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.fiber-cat-intro {
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  padding: 14px 18px;
  background: #f5f5f5;
  border-left: 4px solid #102487;
}

/* 中カテゴリー */
.fiber-sub-section {
  margin-bottom: 48px;
}

.fiber-sub-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  background: #102487;
  padding: 10px 18px;
  margin-bottom: 24px;
}

.fiber-sub-title + p {
  margin-bottom: 20px;
}

/* 2カラム：左画像・右テキスト */
.fiber-product-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #e8e8e8;
}

.fiber-product-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fiber-product-img {
  flex-shrink: 0;
  width: 320px;
}
.fiber-product-img div {
  margin-bottom: 10px;
}

.fiber-product-body {
  flex: 1;
}

.fiber-product-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 16px;
}

.fiber-product-body p:last-child {
  margin-bottom: 0;
}

.fiber-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: #102487;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8e8e8;
}

/* 規格表ボタン */
.kikaku-table {
  margin-top:20px;
  display: inline-block;
}

.kikaku-table button {
  display: inline-flex;
  align-items: center;
  background-color: #54a1ed;
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.kikaku-table button:hover {
  background-color: #122a44;
}

.kikaku-table button:active {
  background-color: #102487;
  transform: translateY(1px);
}

.kikaku-table button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.kikaku-table button a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 65% 0, 100% 25%, 100% 100%, 0 100%);
  flex-shrink: 0;
}

.kikaku-table button a::after {
  font-size: 13px;
  margin-left: 2px;
}

/* 製品タグ */
.fiber-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.fiber-product-body h4.product-tags {
  font-weight: 500;
}

.fiber-tag {
  font-size: 0.8125rem;
  background: #f5f5f5;
  border: 0.5px solid #d0d0d0;
  color: #102487;
  padding: 4px 12px;
}

/* PP袋：フル幅 説明文＋画像2枚横並び */
.fiber-product-block-full {
  margin-bottom: 32px;
}

.fiber-product-block-full p {
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 20px;
}

.fiber-img-row {
  display: flex;
  gap: 20px;
}

/* 区切り線 */
.fiber-divider {
  border: none;
  border-top: 2px solid #e8e8e8;
  margin: 48px 0;
}

/* ===== 石油・ロープページ追加 ===== */

/* リンクボタン配置 */
.fiber-link-btn-wrap {
  margin-top: 20px;
}

/* ===== 賃貸ブロック ===== */
.rental-block {
  margin-bottom: 56px;
}

.rental-block:last-of-type {
  margin-bottom: 40px;
}

.rental-heading {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: #102487;
  padding: 10px 16px;
  background: #f5f5f5;
  margin-bottom: 20px;
}

.rental-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.rental-table-wrap {
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rental-photo {
  flex-shrink: 0;
  width: 220px;
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.rental-table th,
.rental-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  text-align: left;
  font-size: 1rem;
  line-height: 1.9;
}

.rental-table th {
  width: 140px;
  white-space: nowrap;
  color: #102487;
  font-weight: 400;
  background: #f9f9f9;
}

.rental-table td {
  color: var(--text);
}

.fiber-img-row .caption {
	font-size: 1vw;
	padding-left: 5px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .business-layout,
  .business-layout--reverse {
    flex-direction: column;
  }

  .business-photo {
    width: 100%;
  }

  .business-btn {
    width: 100%;
    justify-content: center;
  }

    .fiber-product-block {
    flex-direction: column;
  }

  .fiber-product-img {
    width: 100%;
  }

  .fiber-img-row {
    flex-direction: column;
  }

  /* ===== 繊維加工製品ページ追加 ===== */

/* スペック表 */
.fiber-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}

.fiber-spec-table th,
.fiber-spec-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}

.fiber-spec-table th {
  white-space: nowrap;
  color: #102487;
  font-weight: 500;
  width: 160px;
  background: #f9f9f9;
}

.fiber-spec-table td {
  color: var(--text);
}

/* 写真注記リスト */
.fiber-note-list {
  list-style: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: #f5f5f5;
  border-left: 3px solid #d0d0d0;
}

.fiber-note-list li {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.8;
  padding-left: 12px;
  position: relative;
}

.fiber-note-list li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: #888;
}

/* メリットリスト */
.fiber-merit-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #102487;
  margin: 16px 0 8px;
  padding-left: 10px;
  border-left: 3px solid #f79824;
}

.fiber-merit-list {
  padding-left: 20px;
  margin: 0;
}

.fiber-merit-list li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 4px;
}

  .rental-layout {
    flex-direction: column;
  }

  .rental-photo {
    width: 100%;
  }

  .rental-table th,
  .rental-table td {
    display: block;
    width: 100%;
  }

  .rental-table th {
    border-bottom: none;
    background: #f5f5f5;
  }
  
.fiber-img-row .caption {
	font-size: 1rem;
}
  
}