@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding-top: 10rem;
}
.mv-page__image {
  position: relative;
  height: 50rem;
}
.mv-page__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: min(80%, 29.5rem);
  width: min(55%, 57rem);
  margin: 0 auto;
}
/* 枠 */
.mv-page__item::before, .mv-page__item::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10rem;
  height: 10rem;
}
.mv-page__item::before {
  top: 0;
  left: 0;
  border-left: solid 3rem #ff6d00;
  border-top: solid 3rem #ff6d00;
}
.mv-page__item::after {
  bottom: 0;
  right: 0;
  border-right: solid 3rem #ff6d00;
  border-bottom: solid 3rem #ff6d00;
}
/* TITLE */
.mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100%, 29.5rem);
}
.mv-title h2 {
  color: #000;
  font-size: clamp(3.2rem, 3vw, 5rem);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page__item {
    height: min(50%, 29.5rem);
  }
  .mv-page__item::before, .mv-page__item::after {
    width: 5rem;
    height: 5rem;
  }
  .mv-page__item::before {
    border-left-width: 1.5rem;
    border-top-width: 1.5rem;
  }
  .mv-page__item::after {
    border-right-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
  .mv-title {
    width: 90%;
    margin: 0 auto;
    padding: 3.5rem 0;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page__image {
    position: relative;
    height: 20rem;
  }
  .mv-page__item {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -10%);
    height: min(80%, 13.6rem);
    width: max(33rem, 75%);
  }
  .mv-title {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .mv-title h2 {
    font-size: 3.2rem;
    text-align: center;
  }
}
/* Page Container
----------------------------------------------------------------------------------------------------*/
.container {
  width: 100%;
}
.contents {
  width: min(90%, 151rem);
  margin: 0 auto;
  text-align: left;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* 
----------------------------------------------------------------------------------------------------*/
.p-sitemap .contents {
  width: min(90%, 100rem);
  margin: 0 auto;
  padding: 0 0 18rem;
}
/* リスト全体の枠線管理 */
.p-sitemap__list {
  border-top: 1px solid #aac8c8;
  margin-bottom: 10rem;
}
/* 1行の基本スタイル */
.p-sitemap__row {
  border-bottom: 1px solid #aac8c8;
  width: 100%;
}
/* 共通のリンクスタイル */
.p-sitemap__link {
  display: block;
  padding: 2rem 0 2rem 16rem;
  font-size: 2.4rem;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-sitemap__link:hover {
  background-color: #f0f3f5;
}
/* 親要素のスタイル */
.p-sitemap__link.--parent {
  font-weight: 700;
}
/* 子要素のスタイル */
.p-sitemap__link.--child {
  font-weight: 500;
}
.p-sitemap__right {
  padding-left: calc(465 / 1200 * 100%);
}
.p-sitemap__left a {
  border-bottom: 1px solid #aac8c8;
}
.p-sitemap__right a {
  border-bottom: 1px solid #aac8c8;
}
.p-sitemap__right a:last-child {
  border-bottom: none;
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-sitemap .contents {
    padding: 0 0 14rem;
  }
  .p-sitemap__link {
    padding-left: 0;
    font-size: 2rem;
  }
  .p-sitemap__left .p-sitemap__link {
    padding-left: 0;
  }
  .p-sitemap__right {
    padding-left: calc(87 / 330 * 100%);
  }
  .p-sitemap__right .p-sitemap__link {
    padding: 2rem 0 2rem 2rem;
  }
}