@charset "utf-8";

/* =========================================================
   1. Fonts Import
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Zen+Antique+Soft&family=Zen+Kaku+Gothic+Antique&display=swap");

/* =========================================================
   2. Variables (独自設定分)
   ※色関係は HTML側で先に読み込む _color.css に依存します
========================================================= */
:root {
  /* Font Families */
  --font-base: "Zen Kaku Gothic Antique", sans-serif;
  --font-heading: "Zen Antique Soft", serif;
  --font-code: "Fira Code", monospace;

  /* Layout & Spacing */
  --max-width: 1200px;
  --gap-section-pc: 100px;
  --gap-section-sp: 60px;
  --header-height: 70px;
}

/* =========================================================
   3. Reset & Base
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-body, #fbfdff);
  background-color: var(--color-bg-body, #0e1521);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height); /* ヘッダー固定分の余白 */
}

/* SP展開時の背景スクロールロック用 */
body.u-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
}

/* =========================================================
   4. Typography
========================================================= */
h1,
h2,
h3,
.c-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.u-en,
.c-spec-list,
.c-price,
.c-model-number,
code,
pre {
  font-family: var(--font-code);
  font-variant-ligatures: contextual;
}

/* =========================================================
   5. Layout (Flexbox)
========================================================= */
.l-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 4%;
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.l-flex--center {
  align-items: center;
  justify-content: center;
}

.l-section {
  padding: var(--gap-section-pc) 0;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding: var(--gap-section-sp) 0;
  }
}

/* =========================================================
   6. Header Navigation
========================================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-corp-base, #1c305c);
  color: var(--color-text-body, #fbfdff);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 4%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.l-header__logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: normal;
}

/* --- PC: Hover Dropdown --- */
@media screen and (min-width: 1025px) {
  .c-hamburger,
  .l-header__overlay {
    display: none;
  }

  .p-gnav {
    display: flex;
    list-style: none;
  }

  .p-gnav__item {
    position: relative;
  }

  .p-gnav__item > a {
    display: block;
    padding: 0 15px;
    line-height: var(--header-height);
    font-size: 0.95rem;
  }

  .p-gnav__item > a:hover {
    color: var(--color-highlight, #83ccd2);
  }

  /* 子階層 */
  .p-gnav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-corp-base, #1c305c);
    min-width: 240px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  /* 孫階層 */
  .p-gnav__grand {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--color-corp-base, #1c305c);
    min-width: 280px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
  }

  /* Hover Actions */
  .p-gnav__item.has-child:hover > .p-gnav__sub,
  .p-gnav__sub li.has-grandchild:hover > .p-gnav__grand {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
  }

  .p-gnav__sub a,
  .p-gnav__grand a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .p-gnav__sub a:hover,
  .p-gnav__grand a:hover {
    background-color: var(--color-primary, #65318e);
    color: #fff;
  }

  /* Arrows */
  .has-child > a::after {
    content: "▼";
    font-size: 0.6rem;
    margin-left: 6px;
  }
  .has-grandchild > a::after {
    content: "▶";
    float: right;
    font-size: 0.6rem;
    margin-top: 6px;
  }
}

/* --- SP: Side Menu & Accordion --- */
@media screen and (max-width: 1024px) {
  .c-hamburger {
    position: relative;
    z-index: 1002;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .c-hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-body, #fbfdff);
    transition: all 0.3s;
    left: 0;
  }
  .c-hamburger span:nth-child(1) {
    top: 0;
  }
  .c-hamburger span:nth-child(2) {
    top: 11px;
  }
  .c-hamburger span:nth-child(3) {
    bottom: 0;
  }

  .c-hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .c-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .c-hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-corp-base, #1c305c);
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.4s ease;
    padding: 80px 20px 40px;
  }
  .l-header__nav.is-active {
    right: 0;
  }

  .l-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  .l-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .p-gnav {
    list-style: none;
  }
  .p-gnav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .p-gnav__item > a {
    display: block;
    padding: 15px 0;
    position: relative;
  }

  /* Accordion Initial State */
  .p-gnav__sub,
  .p-gnav__grand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .p-gnav__sub a,
  .p-gnav__grand a {
    display: block;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  .p-gnav__sub li:last-child > a,
  .p-gnav__grand li:last-child > a {
    border-bottom: none;
  }

  /* Accordion Icons */
  .js-toggle::after,
  .js-toggle-grand::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .js-toggle.is-open::after,
  .js-toggle-grand.is-open::after {
    content: "－";
    color: var(--color-highlight, #83ccd2);
  }
}

/* =========================================================
   7. Footer
========================================================= */
.l-footer {
  background-color: #000; /* より深い黒へ */
  color: var(--color-text-body, #fbfdff);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.l-footer__inner {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =========================================================
   8. Components - Grid & Cards (CSS Grid)
========================================================= */
.c-grid-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1024px) {
  .c-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .c-grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.c-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 24px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.c-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-highlight, #83ccd2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.c-card__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-highlight, #83ccd2);
}

/* =========================================================
   9. Components - Buttons
========================================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.05em;
}

.c-btn--primary {
  background-color: var(--color-action, #d3381c);
  color: #fff;
}

.c-btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 56, 28, 0.4);
}

.c-btn--sub {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.c-btn--sub:hover {
  color: var(--color-highlight, #83ccd2);
  border-color: var(--color-highlight, #83ccd2);
  background-color: rgba(131, 204, 210, 0.1);
}

/* =========================================================
   10. Components - Headings & Labels
========================================================= */
.c-heading--lv2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  padding-left: 18px;
  border-left: 6px solid var(--color-primary, #65318e);
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .c-heading--lv2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-left: 14px;
    border-left-width: 4px;
  }
}

.c-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border: 1px solid var(--color-functional, #005243);
  color: var(--color-functional, #005243);
  border-radius: 2px;
}

/* =========================================================
   11. Utilities
========================================================= */
.u-text-center {
  text-align: center !important;
}
.u-text-right {
  text-align: right !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-20 {
  margin-top: 20px !important;
}
.u-mt-40 {
  margin-top: 40px !important;
}
.u-mb-20 {
  margin-bottom: 20px !important;
}
.u-mb-40 {
  margin-bottom: 40px !important;
}
.u-text-highlight {
  color: var(--color-highlight, #83ccd2) !important;
}
.u-text-action {
  color: var(--color-action, #d3381c) !important;
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}

/* =========================================================
   12. Project Specific (p-) & Component Extensions
========================================================= */
/* --- ヒーローセクション（基本・テキストのみ） --- */
.p-hero {
  background-color: var(--color-corp-base);
  color: var(--color-text-body);
}

/* --- ヒーローセクション（背景画像あり） --- */
.p-hero--with-bg {
  /* 画像の上に薄く「留紺」から「黒」へのグラデーションを被せ、白い文字を読みやすくする */
  background-image:
    linear-gradient(rgba(28, 48, 92, 0.6), rgba(14, 21, 33, 0.9)),
    url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 背景画像を広く見せるため、上下の余白（高さ）を多めに取る */
  padding: 140px 0 100px;
}

.p-hero__sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--color-highlight);
}

.p-hero__title {
  font-size: 2.8rem;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* 文字の視認性を高めるドロップシャドウ */
}

.p-hero__desc {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .p-hero--with-bg {
    padding: 100px 0 80px; /* スマホ時は少し高さを抑える */
  }
  .p-hero__title {
    font-size: 2rem;
  }
}
/* --- レイアウト拡張 --- */
.l-section--bg {
  background-color: rgba(255, 255, 255, 0.02);
}
.l-section--border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.l-flex__item {
  flex: 1;
  min-width: 300px;
}
.l-flex--row-reverse {
  flex-direction: row-reverse;
}

/* --- カード・リスト拡張 --- */
.c-grid-cards--auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.c-card__desc {
  flex-grow: 1;
  font-size: 0.95rem;
  opacity: 0.9;
}
.c-list--square {
  list-style-type: square;
  padding-left: 20px;
  font-size: 0.85rem;
}

/* --- 追加ユーティリティ --- */
.u-radius-4 {
  border-radius: 4px;
}
.u-fw-bold {
  font-weight: bold !important;
}
.u-text-lg {
  font-size: 1.6rem !important;
}
.u-text-xl {
  font-size: 2.4rem !important;
}
.u-opacity-9 {
  opacity: 0.9 !important;
}

/* =========================================================
   13. UI Components (Breadcrumb, Forms, Pagination)
========================================================= */
/* --- パンくずリスト --- */
.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  font-size: 0.85rem;
  opacity: 0.8;
}
.c-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  opacity: 0.5;
}
.c-breadcrumb a:hover {
  color: var(--color-highlight);
}

/* --- 汎用フォーム部品（検索窓・プルダウン） --- */
.c-form-control {
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text-body);
  font-family: var(--font-base);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.c-form-control:focus {
  border-color: var(--color-highlight);
}
.c-form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.c-form-control option {
  background-color: var(--color-corp-base); /* プルダウンの選択肢背景 */
  color: var(--color-text-body);
}

/* --- バッジ拡張 --- */
.c-badge--outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-body);
  background-color: transparent;
  font-weight: normal;
}

/* --- ニュースページ固有レイアウト --- */
.p-news-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* --- ページネーション (List.js連動) --- */
.c-pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 8px;
  margin-top: 50px;
}
.c-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-body);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.c-pagination li a:hover {
  background: rgba(131, 204, 210, 0.1);
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}
.c-pagination li.active a {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  font-weight: bold;
}

/* =========================================================
   14. Entry / News Detail Specific
========================================================= */
/* --- 記事詳細レイアウト --- */
.p-news-detail {
  max-width: 800px;
  margin: 0 auto;
}
.p-news-detail__header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}
.p-news-detail__date {
  font-size: 1rem;
  color: var(--color-highlight);
  margin-bottom: 10px;
}
.p-news-detail__title {
  font-size: 2.2rem;
  line-height: 1.4;
  color: #fff;
}
.p-news-detail__thumb {
  margin-bottom: 40px;
}
.p-news-detail__thumb img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

/* --- 記事本文 (CMSリッチテキスト出力用) --- */
.p-entry-content {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--color-text-body);
}
.p-entry-content p {
  margin-bottom: 1.5em;
}
.p-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 30px 0;
}
.p-entry-content h2,
.p-entry-content h3 {
  font-family: var(--font-heading);
  color: var(--color-highlight);
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(131, 204, 210, 0.2);
}
.p-entry-content a {
  color: var(--color-highlight);
  text-decoration: underline;
}
.p-entry-content a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.p-entry-content ul,
.p-entry-content ol {
  margin: 20px 0 20px 20px;
}
.p-entry-content li {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .p-news-detail__title {
    font-size: 1.6rem;
  }
}

/* =========================================================
   15. Tables (c-table)
========================================================= */
/* スマホでの横スクロール用ラッパー */
.c-table-wrapper {
  overflow-x: auto;
}

/* 汎用テーブル */
.c-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 600px;
  font-size: 0.95rem;
  color: var(--color-text-body);
}
.c-table th,
.c-table td {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.c-table thead th {
  background-color: var(--color-corp-base);
  color: #fff;
  border-color: rgba(131, 204, 210, 0.3);
}
.c-table tbody th {
  background-color: rgba(28, 48, 92, 0.4);
  font-weight: normal;
  text-align: left;
}

/* =========================================================
   16. Utilities (追加分)
========================================================= */
.u-d-block {
  display: block !important;
}
.u-max-w-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.u-flex-gap-20 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* パディング拡張 */
.u-p-20 {
  padding: 20px !important;
}
.u-p-40 {
  padding: 40px !important;
}
@media screen and (max-width: 768px) {
  .u-p-40 {
    padding: 24px !important;
  }
}

/* 背景・ボーダー拡張 */
.u-bg-transparent {
  background-color: transparent !important;
}
.u-bg-dark {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.u-bg-corp {
  background-color: var(--color-corp-base) !important;
}
.u-border-highlight {
  border: 1px solid rgba(131, 204, 210, 0.3) !important;
}

/* --- 背景・文字色拡張 --- */
.u-bg-action {
  background-color: var(--color-action) !important;
}
.u-text-white {
  color: #fff !important;
}

/* --- レイアウト調整 --- */
.u-mt-auto {
  margin-top: auto !important;
} /* カード内のボタンや画像を一番下に押しやる */

/* =========================================================
   16. Utilities (追加・拡張分)
========================================================= */
/* （既存のユーティリティ...） */

/* --- フォーム・サイズ拡張 --- */
.u-w-100 {
  width: 100% !important;
}
.u-min-h-200 {
  min-height: 200px !important;
}
.u-resize-y {
  resize: vertical !important;
}

/* --- テキスト装飾拡張 --- */
.u-text-white {
  color: #fff !important;
}
.u-text-danger {
  color: var(--color-action, #d3381c) !important;
}
.u-bg-action {
  background-color: var(--color-action, #d3381c) !important;
  border-color: var(--color-action, #d3381c) !important;
}

/* --- フォーム内のテーブル（確認画面用） --- */
.c-table--left td,
.c-table--left th {
  text-align: left;
}
.u-pre-wrap {
  white-space: pre-wrap;
}

/* =========================================================
   17. Product Lineup & BTO (製品一覧・カスタマイズ画面)
========================================================= */
/* --- 製品カード (c-cardの白背景拡張) --- */
.c-card--product {
  background-color: #fff;
  border: 1px solid var(--color-light-border-light, #e5e7eb);
  color: #333;
}
.c-card--product:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-highlight);
}
.c-card--product__img {
  background-color: #f8f9fa;
  border: 1px solid #f1f3f5;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-card--product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-card--product__name {
  font-size: 1.15rem;
  color: var(--color-corp-base);
  line-height: 1.4;
  margin-bottom: 4px;
}
.c-card--product__specs {
  font-size: 0.85rem;
  background: #f1f3f5;
  padding: 15px;
  border-radius: 8px;
  color: #495057;
  margin-bottom: 20px;
  line-height: 1.6;
}
.c-card--product__specs strong {
  display: inline-block;
  width: 70px;
  color: #212529;
}
.c-card--product__price-area {
  margin-top: auto;
  border-top: 1px dashed #dee2e6;
  padding-top: 15px;
  margin-bottom: 20px;
}

/* --- BTOカスタマイズ画面 --- */
.p-bto-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.p-bto-visual {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.p-bto-category {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  color: #333;
}
.p-bto-category__title {
  border-left: 4px solid var(--color-primary);
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--color-corp-base);
  font-weight: bold;
}
.p-bto-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-corp-base);
  color: #fff;
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .p-bto-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media print {
  .p-bto-sticky,
  .l-header,
  .l-footer,
  .c-breadcrumb {
    display: none !important;
  }
  body {
    padding: 0 !important;
    background: #fff !important;
    color: #000 !important;
  }
  .p-bto-category {
    page-break-inside: avoid;
    border: 1px solid #ccc !important;
  }
}

/* 追加ユーティリティ */
.u-text-corp {
  color: var(--color-corp-base) !important;
}
.u-text-dark {
  color: #333 !important;
}
.u-text-gray {
  color: #666 !important;
}
