@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.blue {
  color: #2953ED;
}

.orange {
  color: #D56300;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
table,
tr,
th,
td,
a,
figure {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #000;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  body,
  ul,
  ol,
  dl,
  li,
  dt,
  dd,
  p,
  div,
  img,
  svg,
  a,
  table,
  tr,
  th,
  td,
  figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 共通
--------------------------------------------------*/
body {
  word-break: break-word;
}

a {
  transition-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

section {
  position: relative;
  z-index: 1;
}

span.word {
  display: inline-block;
}

/* 404
--------------------------------------------------*/
/* KVは共通パーツ（module/_parts.scss）を使用 */
/* ---------- Sitemap ---------- */
.sitemap {
  background: #FAFBFF;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .sitemap {
    padding: 60px 0;
  }
}
.sitemap .container {
  width: calc(100% - 42.9vw);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sitemap .container {
    width: 90%;
  }
}
.sitemap .sitemap-list {
  display: grid;
  gap: 30px;
}
.sitemap .sitemap-list li {
  list-style: none;
  border-bottom: 1px solid #2953ED;
  padding-bottom: 12px;
}
.sitemap .sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-decoration: none;
  width: 100%;
  justify-content: space-between;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  .sitemap .sitemap-list a {
    font-size: 16px;
  }
}
.sitemap .sitemap-list a:hover {
  color: #2953ED;
}
.sitemap .sitemap-list a:hover .arrow {
  transform: translateX(10px);
}
.sitemap .sitemap-list .arrow {
  color: #2953ED;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}/*# sourceMappingURL=sitemap.css.map */