/*
* sitemap.css
*
*/
:root {
  --color-black: #231200;
  --color-white: #fff;
  --color-ktn-yellow: #ffbf00;
  --color-yellow-01: #ffcb31;
  --color-yellow-02: #ffdb4f;
  --color-yellow-03: #ffe84f;
  --color-yellow-04: #fff8b5;
  --color-orange: #ff8f00;
  --color-orange-01: #ff4c00;
  --color-bg: #fff5e1;
  --color-bg-overlay: color-mix(in srgb, var(--color-black-btn) 30%, transparent);
  --color-line-dashed: #999;
  --color-line-solid: #d6d5d5;
  --color-panel: #f3f3f3;
  --color-black-btn: #333;
  --color-black-txt: #666;
  --color-accent-red: #ff4949;
  --color-accent-pink: #e23a9a;
  --color-accent-yellowgreen: #95d542;
  --color-accent-emerald: #09cd96;
  --color-accent-turquoise: #26d1db;
  --color-accent-blue: #3139e8;
  --color-accent-bluegray: #c5cfd6;
  --color-error: #c00;
  --weight-thin: 100;
  --weight-extra-light: 200;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semi-bold: 600;
  --weight-bold: 700;
  --weight-extra-bold: 800;
  --weight-black: 900;
  --color-hover-gray: #f2f0f0;
}

/* --------------------------------
  Sitemap
-------------------------------- */
@media (min-width: 768px) {
  .l-hero_inner {
    height: 240px;
  }
}

@media (min-width: 768px) {
  .sitemap_wrapper {
    -moz-column-count: 2;
         column-count: 2;
    gap: 10px 50px;
  }
}
.sitemap_wrapper a {
  display: block;
  position: relative;
  text-decoration: none;
}
.sitemap_wrapper a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  border-radius: 3.2px;
  width: calc(100% + 10px);
  height: 100%;
  transition: background-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: transparent;
  pointer-events: none;

  mix-blend-mode: multiply;
}

.sitemap_block {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.sitemap_block:not(:first-child) {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .sitemap_block:not(:first-child) {
    margin-top: 100px;
  }
}
@media (min-width: 768px) {
  .sitemap_block._no_mt {
    margin-top: 0;
  }
}

.sitemap_links {
  display: grid;
}

.sitemap_link > a {
  position: relative;
  padding: 10px 0;
}

.sitemap_link_txt,
.sitemap_child_link_txt {
  display: block;
  position: relative;
  word-break: keep-all;
}
[target=_blank] .sitemap_link_txt::after,
[href$=".pdf"] .sitemap_link_txt::after,
[target=_blank] .sitemap_child_link_txt::after,
[href$=".pdf"] .sitemap_child_link_txt::after {
  content: "";
  display: inline-block;
  position: relative;
  top: calc((1lh - 1em) / 2 + 0.5em - 0.5em);
  margin: 0 0.15em 0 0.3125rem;
  width: 1em;
  height: 1em;
  background-color: var(--color-black);
  vertical-align: top;

  -webkit-mask: url("/assets_2025/img/common/icon/blank.svg") no-repeat center/contain;

          mask: url("/assets_2025/img/common/icon/blank.svg") no-repeat center/contain;
}

.sitemap_link_txt {
  padding-left: 20px;
  font-size: 0.875rem;
  font-weight: var(--weight-bold);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .sitemap_link_txt {
    padding-left: 22px;
    font-size: 1rem;
  }
}
.sitemap_link_txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
  background-color: var(--color-orange);

  -webkit-mask: url("/assets_2025/img//common/icon/arw.svg") no-repeat center/contain;

          mask: url("/assets_2025/img//common/icon/arw.svg") no-repeat center/contain;
}

.sitemap_child_links {
  display: grid;
  margin-left: 20px;
}

.sitemap_child_link > a {
  padding: 10px 0;

  text-spacing-trim: space-all;
}

.sitemap_child_link_txt {
  padding-left: 20px;
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .sitemap_child_link_txt {
    padding-left: 22px;
    font-size: 0.875rem;
  }
}
.sitemap_child_link_txt::before {
  content: "";
  position: absolute;
  top: calc((1lh - 1em) / 2 + 0.5em - 1px);
  left: 3px;
  border-radius: 100vmax;
  width: 8px;
  height: 2px;
  background-color: var(--color-accent-bluegray);
}

.sitemap_cat {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-line-dashed);
  font-size: 1rem;
  font-weight: var(--weight-bold);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .sitemap_cat {
    font-size: 1.25rem;
  }
}
.sitemap_cat + .sitemap_links {
  margin-top: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .sitemap_wrapper a:hover::before {
    transition: background-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: var(--color-hover-gray);
  }
}