@charset "UTF-8";
html {
    width: 100%;
    overflow-x: hidden;
  }
  body {
    background-color: #FBFBFB;
    color: #333; /* RGB */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    z-index: -2;
  }
  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }
  a {
    cursor: pointer;
  }
  a:hover {
    text-decoration: none;
    color: var(--main-color__green);
  }
  *, *:before, *:after {
    box-sizing: border-box;
  }
  main {
    z-index: 0;
  }
  .br__span {
    display: inline-block;
  }
  li {
    list-style: none;
  }
  p {
    margin-bottom: 0;
  }
  .br__sp {
    display: none;
  }
  .br__span__sp {
    display: inline;
  }
  .sp__show {
    display: none;
  }
  @media screen and  (max-width: 759px) {
    body {
      font-size: 15px;
    }
    .br__sp {
      display: block;
    }
    .br__pc {
      display: none;
    }
    .br__span__sp {
      display: inline-block;
    }
    .pc__show {
      display: none;
    }
    .sp__show {
      display: block;
    }
  }
.pankuzu--list a {
    color: var(--main-font-color);
}
/*----------------------------------------------------------
  背景と内側の幅(共通)
-----------------------------------------------------------*/
.common__bg {
    max-width: 1130px;
    background-color: #fff;
    width: 100%;
    margin: 3rem auto 0;
    box-shadow: 0px 3px 6px #00000029;
    padding: 40px 0 150px;
    border-radius: 4px;
}
@media (min-width: 760px) and (max-width: 1200px) {
    .common__bg {
      width: 90%;
  }
}
.common__width--inner {
    width: 92%;
    margin: 0 auto;
    padding-left: 2rem;
}
@media screen and  (max-width: 759px) {
  .common__bg {
    width: 92%;
    margin-top: 2.5rem;
}
  .common__width--inner {
    width: 92%;
    margin: 0 auto;
    padding: 0 1rem;
  }  
}
/*----------------------------------------------------------
  サイトマップ
-----------------------------------------------------------*/
.sitemap__section {
    width: 92%;
    margin: 0 auto;
}
.sitemap__section--margin {
  margin-top: 60px;
}
.sitemap__h2__area {
    display: flex;
    align-items: center;
}
.sitemap__h2__area h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 0 1rem;
}
.line--green {
    width: 10px;
    height: 36px;
    background-color: var(--main-color__green);
}
.sitemap__items {
    margin: 1.5rem 0 0 1.7rem;
}
.sitemap__h3__area {
    display: flex;
    align-items: center;
}
.circle--green {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--main-color__green);
}
.sitemap__h3__area h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 0.75rem;
}
.sitemap__contents__area--flex--first {
    margin: 21px 0 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 990px;
    gap: 20px 0;
    flex-wrap: wrap;
    padding: 0;
}
.sitemap__contents__not--flex {
  margin-top: 14px;
}
.sitemap__contents__area {
    display: flex;
    align-items: baseline;
    color: var(--main-font-color);
    width: fit-content;
}
.sitemap__contents__area p {
    margin-left: 10px;
}
.sitemap__contents {
  width: 280px;
}
.sitemap__contents__area--flex {
  margin: 21px 0 0 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 65px;
  flex-wrap: wrap;
  padding: 0;
}
.not--flex {
  display: block;
}
.sitemap__contents__area.under__h {
  margin: 21px 0 0 30px;
}
.sitemap__contents__area--flex.under__p {
  margin-top: 14px;
}
@media screen and  (max-width: 759px) {
  .common__bg {
    padding: 34px 0 70px;
  }
  .sitemap__h2__area h2 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0 1rem;
  }
  .line--green {
    height: 32px;
  }
  .sitemap__items {
    margin: 1rem 0 0 0.7rem;
  }
  .sitemap__contents__area--flex {
    margin: 10px 0 0 30px;
    gap: 5px 80px;
  }
  .sitemap__contents__not--flex {
    margin-top: 5px;
  }
  .sitemap__section--margin {
    margin-top: 24px;
  }
  .sitemap__contents__area.under__h {
    margin: 10px 0 0 30px;
  }
  .sitemap__contents__area--flex.under__p {
    margin-top: 5px;
  }
}