#container {
  min-width: 114.0rem;
}
@media screen and (max-width: 767px) {
  #container {
    min-width: 0;
  }
}

body {
  overflow: visible;
  width: 100%;
}

/* 縦スクロール無し */
html.scrolly-none {
  overflow-y: hidden;
}

/* ------------------------------------------
 *  PC - SP 表示非表示切り替え
 * ------------------------------------------ */
.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/* ------------------------------------------
 *  レイアウトパーツ
 * ------------------------------------------ */
.l-wrapper {
  width: 100%;
  max-width: calc(114.0rem + (1.5rem * 2));
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    max-width: 100%;
  }
}

.l-section {
  position: relative;
  z-index: var(--zindex-01);
}

/* ------------------------------------------
 *  汎用パーツ
 * ------------------------------------------ */
 /* 注釈 */
.u-anno {
  font-size: 1.0rem;
}

/* 上付き文字 */
.u-sup {
  font-size: 70%;
  vertical-align: super;
  letter-spacing: 0.1em;
}

/* アンダーライン */
.u-underline {
  position: relative;
  text-decoration: underline;
  text-decoration-color:  var(--color-base);
  text-decoration-thickness: 1.8rem;
  text-underline-offset: -1rem;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .u-underline {
    text-decoration-thickness: 1.5rem;
    text-underline-offset: -0.7rem;
  }
}

/* ------------------------------------------
 *  共通パーツ
 * ------------------------------------------ */
 /* 見出し */
.c-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
  margin-bottom: 5rem;
}

.c-head >.en {
  font-family: 'Cormorant Garamond';
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 3.334;
  position: relative;
  display: inline-block;
  color: var(--color-accent01);
}
.c-head >.en::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 3.0rem;
  height: 0.1rem;
  background-color: var(--color-accent01);
}
.c-head > .heading {
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.667;
  letter-spacing: 0.3rem;
}
.c-head.c-head--white >.en {
  color: var(--color-white);
}
.c-head.c-head--white >.en::after {
  background-color: var(--color-white);
}
.c-head.c-head--white > .heading {
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-head {
    row-gap: 3.6rem;
    margin-bottom: 3rem;
  }
  .c-head >.en {
    font-size: 1.4rem;
    line-height: 1;
  }
  .c-head >.en::after {
    bottom: -1.2rem;
  }
  .c-head > .heading {
    font-size: 2.0rem;
    line-height: 1.739;
    letter-spacing: 0.2rem;
  }
}

.c-point {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-accent01);
  width: 3.0rem;
  height: 3.0rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------
 *  ページコンテンツ
 * ------------------------------------------ */
/*--- KV ---*/
.p-kv {
  width: 100%;
  height: calc(100vh - (var(--height-header) + 3.2rem));
  position: relative;
  background: url(../img/img_kv.webp) no-repeat center / cover;
}
.p-kv::before {
  content: "";
  display: inline-block;
  background: linear-gradient(0deg, var(--color-white), #82B2FF);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  mix-blend-mode: multiply;
}
.p-kv .p-kv__title {
  width: clamp(30rem, 16.182rem + 69.09vw, 68rem);
  height: auto;
  aspect-ratio: 340 / 71;
  position: absolute;
  top: 6.0rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  filter: drop-shadow(0 0 1rem var(--color-black));
}
.p-kv .p-kv__txt {
  width: 100%;
  position: absolute;
  bottom: 1.3rem;
}
.p-kv .p-kv__txt .text {
  font-size: 1.0rem;
  font-weight: 900;
  color: var(--color-white);
  filter: drop-shadow(1px 1px 5px var(--color-black));
}
@media screen and (max-width: 767px) {
  .p-kv {
    width: 100%;
    height: auto;
    aspect-ratio: 125 / 124;
    background-image: url(../img/img_kv_sp.webp);
  }
  .p-kv::before {
    height: 35%;
  }
  .p-kv .p-kv__title {
    top: 2.6rem;
    bottom: inherit;
    width: 80%;
  }
}

/*--- ページ内リンク ---*/
.p-link {
  /* position: sticky; */
  width: 100%;
  /* top: var(--height-header);
  z-index: var(--zindex-follow); */
}
.p-link .p-link-block {
  width: 100%;
  display: flex;
}
.p-link .p-link-block > .link {
  position: relative;
  width: calc(100% / 3);
  min-height: 6.0rem;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.0rem;
  background-color: var(--color-accent02);
  transition: color 0.3s, background-color 0.3s;
  padding: 1.0rem;
  box-sizing: border-box;
}
.p-link .p-link-block > .link::after {
  content: "";
  display: inline-block;
  color: var(--color-white);
  width: 1.0rem;
  height: 1.0rem;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  transition: color 0.3s;
}
.p-link .p-link-block > .link:last-child {
  background-color: var(--color-accent01);
}
.p-link .p-link-block > .link:not(:last-child)::before {
  content: "";
  width: 0.1rem;
  height: calc(100% - (2.0rem * 2));
  display: inline-block;
  background-color: var(--color-white);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 768px) {
  .p-link .p-link-block > .link:hover {
    background-color: #4A423A;
  }
  .p-link .p-link-block > .link:last-child:hover {
    background-color: #140E07;
  }
}
@media screen and (max-width: 767px) {
  .p-link .p-link-block > .link {
    min-height: auto;
    font-size: 1.2rem;
    flex-direction: column;
    column-gap: 0.8rem;
  }
  .p-link .p-link-block > .link:first-child::before {
    content: none;
  }
  .p-link .p-link-block > .link:active {
    background-color: #4A423A;
  }
  .p-link .p-link-block > .link:last-child:active {
    background-color: #140E07;
  }
  .p-link .p-link-block > .link:not(:last-child)::before {
    content: none;
  }
}

/*--- コンセプト ---*/
.p-concept {
  padding-top: 6.0rem;
  position: relative;
}
.p-concept::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: var(--zindex-base);
  width: 100%;
  height: calc(100% - 3.5rem);
  background-color: var(--color-sub02);
}
.p-concept .l-wrapper {
  position: relative;
  z-index: var(--zindex-01);
}
.p-concept .lead {
  word-break: keep-all;
  text-align: center;
}
.p-concept .p-concept-contents {
  max-width: 90.2rem;
  margin: 5rem auto 0;
  display: grid;
  grid-template: calc(50% - 0.5rem) calc(50% - 0.5rem) / min(67%, 60rem) calc(33% - 1rem);
  gap: 1rem;
}
.p-concept .p-concept-contents::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: var(--zindex-02);
  background-color: var(--color-base);
  max-width: 96.2rem;
  width: 100%;
  height: 29.3rem;
  bottom: -3.5rem;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.p-concept .p-concept-contents figure {
  position: relative;
  z-index: var(--zindex-03);
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.2));
}
.p-concept .p-concept-contents figure:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.p-concept .p-concept-contents figure:nth-child(2) {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.p-concept .p-concept-contents figure:last-child {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
@media screen and (max-width: 767px) {
  .p-concept .p-concept-contents {
    max-width: 100%;
    margin-top: 2.5rem;
    grid-template: auto auto / calc(50% - 0.25rem) calc(50% - 0.25rem);
    gap: 0.5rem;
  }
  .p-concept .p-concept-contents::after {
    height: 22.8rem;
    bottom: -4rem;
  }
  .p-concept .p-concept-contents figure:first-child {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .p-concept .p-concept-contents figure:nth-child(2) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .p-concept .p-concept-contents figure:last-child {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

/*--- 特長 ---*/
.p-features {
  margin-top: 9.5rem;
  padding-bottom: 8rem;
  overflow: hidden;
}
.p-features .c-head {
  margin-bottom: 2rem;
}
.p-features .u-anno {
  text-align: center;
}
.p-features .p-features-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 2rem;
  margin-bottom: 1rem;
}
.p-features .p-features-title dl {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.2rem;
  position: relative;
}
.p-features .p-features-title dl:nth-child(odd)::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  background-color: var(--color-accent02);
  right: -1rem;
  bottom: 0;
}
.p-features .p-features-title dl:nth-child(2)::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-accent02);
  transform: rotate(45deg);
  bottom: calc((4rem + 0.25rem)* -1);
  left: calc((1rem + 0.25rem)* -1);
  position: absolute;
}
.p-features .p-features-title dl:first-child::after,
.p-features .p-features-title dl:nth-child(2)::after {
  content: "";
  position: absolute;
  width: calc(100% - 9rem);
  height: 0.1rem;
  background-color: var(--color-accent02);
  bottom: -4rem;
}
.p-features .p-features-title dl dt {
  text-align: center;
  font-family: 'Cormorant';
  font-weight: 600;
  font-size: 3.0rem;
  line-height: 2;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color:  var(--color-base);
  text-decoration-thickness: 1.8rem;
  text-underline-offset: -0.6rem;
  text-decoration-skip-ink: none;
  letter-spacing: 0.1em;
}
.p-features .p-features-title dl dd {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-features {
    margin-top: 9rem;
    padding-bottom: 5rem;
  }
  .p-features .c-head {
    margin-bottom: 3rem;
  }
  .p-features .u-anno {
    text-align: left;
  }
  .p-features .p-features-title {
    gap: 5rem 2rem;
    margin-bottom: 2rem;
  }
  .p-features .p-features-title dl {
    padding-bottom: 0;
  }
  .p-features .p-features-title dl:nth-child(2)::before {
    bottom: calc((2.5rem + 0.25rem)* -1);
  }
  .p-features .p-features-title dl:first-child::after,
  .p-features .p-features-title dl:nth-child(2)::after {
    bottom: -2.5rem;
    width: 88%;
  }
  .p-features .p-features-title dl:first-child::after {
    left: 0;
  }
  .p-features .p-features-title dl:nth-child(2)::after {
    right: 0;
  }
  .p-features .p-features-title dl dt {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 2rem;
    text-decoration-thickness: 0.7rem;
    text-underline-offset: -0.3rem;
  }
  .p-features .p-features-title dl dd {
    font-size: 1rem;
  }
}
.p-features .p-features-contents {
  margin-top: 10rem;
}
.p-features .p-features-contents .p-features-contents-block {
  display: grid;
  justify-content: space-between;
  width: calc(100% - ((100% - 115.5rem) / 2));
  position: relative;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(odd) {
  grid-template: auto auto auto / 57% calc(21.5% - 1rem) calc(21.5% - 1rem);
  margin-right: auto;
  margin-top: 16rem;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) {
  grid-template: auto auto auto / calc(21.5% - 1rem) calc(21.5% - 1rem) 57%;
  margin-left: auto;
  margin-top: 8rem;
}
.p-features .p-features-contents .p-features-contents-block:first-child {
  margin-top: 0;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even)::after {
  content: "";
  width: calc(100% + (100% - 114rem));
  height: calc(100% + 4rem);
  background-color: var(--color-sub03);
  display: inline-block;
  position: absolute;
  z-index: var(--zindex-02);
  top: 4rem;
  right: 0;
  margin: auto;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--heading {
  grid-row: 1 / 2;
  font-family: 'Cormorant';
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-accent02);
  position: relative;
  z-index: var(--zindex-03);
  width: calc(100% - 5rem);
  margin-bottom: 5rem;
  padding-bottom: 0.6rem;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--heading {
  grid-column: 2 / 4;
  margin-top: 4rem;
  margin-left: auto;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--heading {
  grid-column: 1 / 3;
  margin-top: 10rem;
  margin-right: auto;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--heading::after {
  content: "";
  position: absolute;
  width: calc(100% + 10rem);
  height: 0.1rem;
  background-color: var(--color-accent02);
  display: inline-block;
  bottom: 0;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--heading::after {
  right: 0;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--heading::after {
  left: 0;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image {
  grid-row: 1 / 4;
  grid-column: 1 / 4;
  position: relative;
  z-index: var(--zindex-03);
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image .carousel {
  display: grid;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0 1rem;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image .carousel.is-max {
  transform: none!important;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--image .carousel {
  grid-template-columns: 57% calc(21.5% - 1rem) calc(21.5% - 1rem);
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image .carousel {
  grid-template-columns: calc(21.5% - 1rem) calc(21.5% - 1rem) 57%;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--image figure:first-child {
  margin-right: 4rem;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image figure:first-child {
  margin-left: 4rem;
  order: 3;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image figure:nth-child(2) {
  order: 2;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image figure:last-child {
  order: 1;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image figure {
  position: relative;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image figure figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-white);
  filter: drop-shadow(0 0 0.5rem var(--color-black));
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--text {
  grid-row: 2 / 3;
  width: calc(100% - 5rem);
  position: relative;
  z-index: var(--zindex-03);
}
.p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--text {
  grid-column: 2 / 4;
  margin-left: auto;
}
.p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--text {
  grid-column: 1 / 3;
  margin-right: auto;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--text dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--text dt > span {
  color: var(--color-accent03);
}
.p-features .p-features-contents .p-features-contents-block .p-features-contents-block--text dd .u-anno {
  margin-top: 3rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-features .p-features-contents {
    margin-top: 5rem;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd),
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) {
    margin-top: 10rem;
    width: 100%;
    grid-template: auto auto auto / 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 1.5rem;
  }
  .p-features .p-features-contents .p-features-contents-block:first-child {
    margin-top: 0;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(even)::after {
    width: 100vw;
    height: calc(100% + 10rem);
    top: -5rem;
    margin-left: -1.5rem;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--heading,
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--heading {
    width: 100%;
    grid-column: 1 / 2;
    margin: 0 0 2rem 0;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--heading::after,
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--heading::after {
    width: 100%;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--image,
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--image .carousel,
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image .carousel {
    grid-template-columns: 100%;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--image figure:first-child,
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image figure:first-child {
    margin: 0;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(odd) .p-features-contents-block--text,
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--text {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    margin: 3rem 0 0 0;
    width: 100%;
  }
  .p-features .p-features-contents .p-features-contents-block .p-features-contents-block--text dt {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .p-features .p-features-contents .p-features-contents-block .p-features-contents-block--text dd .u-anno {
    margin-top: 2rem;
  }

  /*--- カルーセル ---*/
  .p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image.js-carousel .carousel {
    transition: transform 0.3s;
    display: flex;
    gap: 0 1.5rem;
  }
  .p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image.js-carousel .carousel figure {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    overflow: hidden;
  }
  .p-features .p-features-contents .p-features-contents-block .p-features-contents-block--image.js-carousel .carousel figure {
    object-fit: cover;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image.js-carousel figure:first-child {
    order: 1;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image.js-carousel figure:nth-child(2) {
    order: 3;
  }
  .p-features .p-features-contents .p-features-contents-block:nth-child(even) .p-features-contents-block--image.js-carousel figure:last-child {
    order: 2;
  }

  /* スライダーボタン */
  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
  }
  /* スライダーボタン - 矢印 */
  .carousel-btn .carousel-btn-arrow {
    width: 4.0rem;
    height: 4.0rem;
    flex-shrink: 0;
    position: relative;
    background-color: var(--color-sub01);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }
  .carousel-btn .carousel-btn-arrow::before,
  .carousel-btn .carousel-btn-arrow::after {
    content: "";
    display: inline-block;
    position: absolute;
    color: var(--color-white);
  }
  .carousel-btn .carousel-btn-arrow::before {
    width: 1.3rem;
    height: 0.1rem;
    background-color: currentColor;
  }
  .carousel-btn .carousel-btn-arrow::after {
    width: 0.7rem;
    height: 0.7rem;
    border: 0.1rem solid currentColor;
    transform: rotate(45deg);
    transform-origin: top right;
    top: 50%;
    box-sizing: border-box;
  }
  .carousel-btn .carousel-btn-arrow.carousel-btn-arrow--prev::after {
    border-right: 0;
    border-top: 0;
    left: calc(50% - (1.2rem / 2));
  }
  .carousel-btn .carousel-btn-arrow.carousel-btn-arrow--next::after {
    border-left: 0;
    border-bottom: 0;
    right: calc(50% - (1.2rem / 2));
  }
  .carousel-btn .carousel-btn-arrow:active {
    background-color: var(--color-accent01);
  }
  /* スライダーボタン - ドット */
  .carousel-btn .carousel-btn-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.75rem;
  }
  .carousel-btn-dot .carousel-btn-dot--btn {
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
    background-color: var(--color-sub02);
    border-radius: 50%;
  }
  .carousel-btn-dot .carousel-btn-dot--btn.is-on {
    background-color: var(--color-accent01);
  }
}

/*--- モデルプラン ---*/
.p-plan {
  margin-top: 6.5rem;
}
.p-plan .lead {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}
.p-plan .lead .text {
  padding: 1rem;
  border-top: 0.1rem solid var(--color-black);
  border-bottom: 0.1rem solid var(--color-black);
  text-align: center;
}
.p-plan .p-plan-contents {
  margin-top: 5rem;
}
.p-plan .p-plan-contents .p-plan-contents-house {
  max-width: 100rem;
  margin: 0 auto;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.8rem 2.0rem;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house:first-child {
  width: 52%;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house:last-child {
  width: 42.4%;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .heading {
  font-family: 'Cormorant';
  font-size: 6.0rem;
  font-weight: 300;
  line-height: 0.5;
  text-align: center;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .heading > small {
  font-size: 2.2rem;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map {
  margin-top: 3.5rem;
  position: relative;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--zindex-03);
  width: 3rem;
  height: 3rem;
  background-color: var(--color-accent01);
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button[data-mapbtn="1"] {
  bottom: 36.5%;
  right: 25.5%;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button[data-mapbtn="2"] {
  bottom: -2%;
  left: 22.5%;
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button::before {
  font-family: 'Noto Serif JP';
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--color-white);
  z-index: var(--zindex-03);
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button[data-mapbtn="1"]::before {
  content: "1";
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button[data-mapbtn="2"]::before {
  content: "2";
}
.p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button::after {
  content: "";
  background-color: var(--color-accent01);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  filter: blur(5px);
  z-index: var(--zindex-02);
  animation: circleAnime 3s linear infinite;
}
@keyframes circleAnime{
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-plan {
    margin-top: 6rem;

  }
  .p-plan .p-plan-contents {
    margin-top: 2rem;
  }
  .p-plan .p-plan-contents .p-plan-contents--note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.3rem;
  }
  .p-plan .p-plan-contents .p-plan-contents--note .c-point {
    width: 2rem;
    height: 2rem;
    font-size: 1.333rem;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map {
    flex-direction: column;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house:first-child {
    width: 100%;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house:last-child {
    width: 85.25%;
    margin: 0 auto;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .heading {
    font-size: 4.5rem;
    line-height: 0.66;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .heading > small {
    font-size: 1.6rem;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map {
    margin-top: 1.6rem;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button[data-mapbtn="1"] {
    bottom: 35.5%;
    right: 26%;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button[data-mapbtn="2"] {
    bottom: 0%;
    left: 22%;
  }
  .p-plan .p-plan-contents .p-plan-contents-house .p-plan-contents-house--map .house .house-map button::before {
    font-size: 1.6rem;
  }
}

.p-planModal {
  z-index: var(--zindex-01);
  position: relative;
  width: 100%;
  max-width: calc(100rem + (1.5rem * 2));
  padding: 0 1.5rem;
  margin: 6rem auto 0;
  box-sizing: border-box;
}
.p-planModal .u-anno {
  margin-top: 1rem;
}
.p-plan-contents-house--detail {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.0rem;
  position: relative;
}
.p-plan-contents-house--detail .detail {
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.p-plan-contents-house--detail .detail .detail-text .heading {
  display: flex;
  gap: 0 1.5rem;
  align-items: baseline;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.19rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.1rem solid var(--color-accent02);
}
.p-plan-contents-house--detail .detail .detail-image {
  position: relative;
}
.p-plan-contents-house--detail .detail .detail-image figcaption {
  position: absolute;
  color: var(--color-white);
  filter: drop-shadow(0 0 0.6rem var(--color-black));
  top: 1rem;
  right: 1rem;
  font-family: 'Cormorant';
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .p-planModal {
    display: none;
    margin: 0;
    z-index: var(--zindex-modal);
    padding: 0;
  }
  .p-planModal.is-active {
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-plan-contents-house--detail {
    flex-direction: column;
  }
  .p-plan-contents-house--detail .detail {
    background-color: var(--color-white);
    padding: 2.5rem 2rem 3rem;
    width: 100%;
    flex-direction: column-reverse;
    gap: 2rem 0;
    display: none;
    max-width: 60rem;
    position: relative;
  }
  .p-plan-contents-house--detail .detail.is-active {
    display: flex;
  }
  .p-plan-contents-house--detail .detail .detail-text .heading {
    font-size: 1.8rem;
  }
  .p-plan-contents-house--detail .detail .detail-text .heading .c-point {
    font-size: 1.8rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  .p-plan-contents-house--detail .detail-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    border-radius: 50%;
    top: -1.5rem;
    right: 1.0rem;
    width: 3.0rem;
    height: 3.0rem;
    transition: background-color 0.3s;
  }
  .p-plan-contents-house--detail .detail-close::before,
  .p-plan-contents-house--detail .detail-close::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0.1rem;
    height: 50%;
    background-color: var(--color-white);
  }
  .p-plan-contents-house--detail .detail-close::before {
    transform: rotateZ(45deg);
  }
  .p-plan-contents-house--detail .detail-close::after {
    transform: rotateZ(-45deg);
  }
  .p-plan-contents-house--detail .detail-close:active {
    background-color: var(--color-white);
  }
  .p-plan-contents-house--detail .detail-close:active::before,
  .p-plan-contents-house--detail .detail-close:active::after {
    background-color: var(--color-black);
  }
}