@charset "UTF-8";
/* ==========================================================================
   site-map.css : サイトマップ（/site-map/）
   全ページのリンク一覧。print-way.css / order-way.css の設計を踏襲
   ========================================================================== */

:root {
  --sm-navy:   #0d457c;
  --sm-text:   #222;
  --sm-muted:  #5b6470;
  --sm-line:   #e3e6ea;
  --sm-bg:     #f7f9fc;
  --sm-radius: 14px;

  --sm-blue:   #2f80ed;
  --sm-font:   system-ui, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  --sm-inner:  1040px;
}

/* サイト共通CSSは box-sizing を全体指定していないため、当ページの構成要素だけに付与する */
.sm-hero,
.sm-hero *,
.sm-body,
.sm-body * {
  box-sizing: border-box;
}

/* ==========================================================================
   ヘッダー（H1エリア）
   ========================================================================== */
.sm-hero {
  font-family: var(--sm-font);
  line-height: 1.7;
  color: var(--sm-text);
  background: var(--sm-bg);
  padding: 36px 0 40px;
  margin: 0 0 36px;
}

.sm-hero__inner {
  max-width: var(--sm-inner);
  margin-inline: auto;
  padding-inline: 16px;
  text-align: center;
}

.sm-hero__label {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--sm-blue);
  font-weight: 700;
  margin: 0 0 10px;
}

.sm-hero__heading {
  font-size: 26px;
  line-height: 1.5;
  color: var(--sm-navy);
  font-weight: 700;
  margin: 0 0 14px;
}

.sm-hero__lead {
  font-size: 15px;
  color: var(--sm-muted);
  margin: 0;
}

/* ==========================================================================
   本文：カテゴリ別リンク一覧
   ========================================================================== */
.sm-body {
  font-family: var(--sm-font);
  line-height: 1.7;
  color: var(--sm-text);
  max-width: var(--sm-inner);
  margin-inline: auto;
  padding-inline: 16px;
  padding-bottom: 50px;
}

.sm-section {
  margin: 0 0 40px;
}

.sm-section__title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  background: var(--sm-navy);
  border-radius: var(--sm-radius) var(--sm-radius) 0 0;
  margin: 0;
  padding: 12px 18px;
}

.sm-section__body {
  border: 1px solid var(--sm-line);
  border-top: none;
  border-radius: 0 0 var(--sm-radius) var(--sm-radius);
  background: #fff;
  padding: 20px 18px 6px;
}

/* サブ見出し（商品グループなど） */
.sm-group {
  margin: 0 0 18px;
}

.sm-group__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sm-navy);
  border-left: 4px solid var(--sm-blue);
  padding-left: 10px;
  margin: 0 0 10px;
}

/* リンクリスト本体 */
.sm-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px 20px;
}

.sm-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted var(--sm-line);
}

.sm-list a {
  display: block;
  position: relative;
  padding: 10px 8px 10px 20px;
  font-size: 14px;
  color: var(--sm-text);
  text-decoration: none;
}

.sm-list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-top: 2px solid var(--sm-blue);
  border-right: 2px solid var(--sm-blue);
  transform: rotate(45deg);
}

.sm-list a:hover {
  color: var(--sm-blue);
  text-decoration: underline;
}

/* 補足テキスト */
.sm-note {
  font-size: 13px;
  color: var(--sm-muted);
  margin: 0 0 16px;
}

/* ==========================================================================
   SP
   ========================================================================== */
@media screen and (max-width: 767px) {
  .sm-hero {
    padding: 26px 0 30px;
    margin-bottom: 26px;
  }

  .sm-hero__heading {
    font-size: 20px;
  }

  .sm-hero__lead {
    font-size: 14px;
    text-align: left;
  }

  .sm-section__title {
    font-size: 17px;
    padding: 11px 14px;
  }

  .sm-section__body {
    padding: 16px 14px 4px;
  }

  .sm-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
