/*==================================================
    パンくず
==================================================*/
.breadcrumb {
  padding: 2.8rem 0;
}

/*==================================================
    ページタイトル
==================================================*/
.pageHead {
  padding-top: 2.2rem;

  .inner {
    width: 1100px;
  }
}

@media screen and (max-width: 767px) {
  .pageHead {
    padding: 17.8667vw 0 0 0;
  }
}


/*==================================================
    ページコンテンツ
==================================================*/
.sitemap {
  padding-block: 9rem 17rem;

  .sitemap__majorList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    row-gap: 6rem;
  }

  .sitemap__majorTtl {
    border-bottom: 1px solid rgb(0, 0, 0);
    display: block;
    font-size: 2.6rem;
    font-weight: 600;
    min-height: 4.6rem;
    line-height: 1;
    padding-left: 2.6rem;
    padding-bottom: 1.1rem;
    position: relative;
  }

  .sitemap__majorTtl::before {
    content: "";
    background-color: var(--color-orange);
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    left: 0px;
    top: 0.5rem;
    border-radius: 50%;
  }

  .sitemap__minorList {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2rem;
    padding-block: 2rem 2rem;
  }

  .sitemap__minorItem {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .sitemap__minorList.two-columns .sitemap__minorItem {
    width: 50%;
  }

  .sitemap__minorLink {
    font-size: 1.8rem;
    transition: all 0.3s;
  }

  .sitemap__minorLink::before {
    content: '';
    background: url(/wp-content/themes/pgfamily/asset/img/sitemap/arrow_orange.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    height: 1.15rem;
    margin-right: 1.1rem;
    width: 1.5rem;
  }

  @media (hover: hover) {
    .sitemap__minorLink:hover {
      color: var(--color-orange);
      opacity: 1;
    }
  }

  .sitemap__majorTtl.orange_dotted_arrow {
    display: flex;
    justify-content: space-between;
    transition: all 0.3s;
  }

  .sitemap__majorTtl.orange_dotted_arrow::after {
    background: url(/wp-content/themes/pgfamily/asset/img/sitemap/arrow_dot_white.svg), var(--color-orange);
    background-repeat: no-repeat;
    background-size: 2rem 1.1rem;
    background-position: center center;
    border-radius: 999px;
    content: '';
    height: 3.5rem;
    transition: all 0.3s;
    width: 5.6rem;
  }

  @media (hover: hover) {
    .sitemap__majorTtl.orange_dotted_arrow:hover {
      color: var(--color-orange);
      opacity: 1;
    }

    .sitemap__majorTtl.orange_dotted_arrow:hover::after {
      background: url(/wp-content/themes/pgfamily/asset/img/sitemap/arrow_dot_white.svg), #000;
      background-repeat: no-repeat;
      background-size: 2rem 1.1rem;
      background-position: center center;
    }
  }

  @media screen and (max-width: 767px) {
    padding-block: 13vw 20.67vw;

    .sitemap__majorList {
      grid-template-columns: 1fr;
      row-gap: 9.33vw;
    }

    .sitemap__majorTtl {
      font-size: 4.8vw;
      padding-bottom: 4.2667vw;
      padding-left: 3.2vw;
      margin-top: 0;
      min-height: unset;
    }

    .sitemap__majorTtl::before {
      width: 2.1333vw;
      height: 2.1333vw;
      top: 1.2vw;
    }

    .sitemap__minorList {
      padding-left: 4.4vw;
      row-gap: 3.33vw;
    }

    .sitemap__minorLink {
      font-size: 4vw;
    }

    .sitemap__minorLink::before {
      height: 2vw;
      margin-right: 1.87vw;
      width: 2.53vw;
    }

    .sitemap__majorTtl.orange_dotted_arrow::after {
      background-size: 3.47vw 1.93vw;
      border-radius: 2.33vw;
      height: 6vw;
      width: 9.6vw;
    }
  }
}