@charset "UTF-8";
/**
 * SCSS Mixins
 *
 * 利用例:
 * @use 'mixin' as m;
 *
 * .example {
 *   font-size: 14px;
 *   @include m.mq('pc') {
 *     font-size: 18px;
 *   }
 * }
 */
/**
 * フォント
 *
 * 各ファイルで font-family 文字列を直書きせず、これらの mixin を使う。
 * 利用例:
 * .example { @include m.serif; }
 *
 * - serif    … 英字セリフ（EB Garamond）
 * - serif-jp … 和文明朝（Noto Serif JP）
 * - sans-jp  … 和文ゴシック（Noto Sans JP）
 */
/**
 * 固定ページ：サイトマップ（page-sitemap）
 */
.l-sitemap__inner {
  padding-block: 48px 72px;
}
@media screen and (min-width: 768px) {
  .l-sitemap__inner {
    padding-block: 72px 110px;
  }
}

.p-sitemap {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-sitemap {
    max-width: 930px;
  }
}

/* TOP（見出し・ダッシュなし） */
.p-sitemap__top {
  margin: 0 0 18px;
}
@media screen and (min-width: 768px) {
  .p-sitemap__top {
    margin-bottom: 24px;
  }
}

.p-sitemap__top-link {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #4c4948;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-sitemap__top-link {
    font-size: 24px;
  }
}

/* 2カラム（PC） */
@media screen and (min-width: 768px) {
  .p-sitemap__cols {
    display: flex;
    align-items: flex-start;
    gap: 0 250px;
  }
}

.p-sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-sitemap__item {
    margin-bottom: 20px;
  }
}

/* トップレベル項目（— ダッシュ付き） */
.p-sitemap__link {
  position: relative;
  display: inline-block;
  padding: 8px 0 8px 24px;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #4c4948;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-sitemap__link {
    padding: 10px 0 10px 30px;
    font-size: 25px;
    letter-spacing: 0.12em;
  }
}
.p-sitemap__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: #4C4948;
}
@media screen and (min-width: 768px) {
  .p-sitemap__link::before {
    width: 20px;
  }
}

/* サブ項目（NEWS & COLUMN / Shu・ita・kuranch） */
.p-sitemap__sublist {
  list-style: none;
  margin: 0 0 4px;
  padding-left: 2.6em;
}

.p-sitemap__subitem {
  position: relative;
}

.p-sitemap__sublink {
  position: relative;
  display: inline-block;
  padding: 6px 0 6px 24px;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #999999 !important;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-sitemap__sublink {
    font-size: 25px;
    letter-spacing: 0.12em;
  }
}

/* サブの先頭だけ — を付け、以降（ita / kuranch）は字下げで揃える */
.p-sitemap__subitem:first-child .p-sitemap__sublink::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .p-sitemap__subitem:first-child .p-sitemap__sublink::before {
    width: 20px;
  }
}
/*# sourceMappingURL=sitemap.css.map */