.nav-global-property-link.nav-location::after {
  bottom: 3px;
  background-color: #000;
  border-bottom: none;
  opacity: 0.7;
}
.panel_item_location .panel_item_anchor {
  pointer-events: none;
}
.panel_item_location .panel_item_anchor .panel_item_bg::before {
  opacity: 0.8;
  z-index: 10;
}

/*************************************************

wrapper

*************************************************/
#wrapper,
.wrapper {
  overflow: visible;
}

/*************************************************

kv_area

*************************************************/
.kv_area {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 160px;
  border-bottom: 1px solid rgba(44, 36, 29, 0.3);
}
.kv_wrap {
  width: calc(100% - 80px);
  margin-left: auto;
  display: flex;
  column-gap: 3%;
  align-items: end;
}
.kv_body {
  flex: 1 1 18%;
}
.kv_img {
  flex: 1 1 75%;
}
.kv_title_en {
  font-family: "Cormorant Infant", serif;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.kv_title {
  margin-top: 40px;
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.kv_text {
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .kv_area {
    padding-bottom: 60px;
  }
  .kv_wrap {
    width: 100%;
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 30px;
  }
  .kv_body {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .kv_title {
    margin-top: 20px;
  }
  .kv_text {
    margin-top: 20px;
  }
}

/*************************************************

contents_local

*************************************************/
.contents_local {
  padding-top: 160px;
  padding-bottom: 80px;
}
.wide_img_area {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .contents_local {
    padding-top: 80px;
  }
}

/*************************************************

slide_area

*************************************************/
.flow-slides {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}
.row + .row {
  margin-top: 10px;
}

.row {
  --row-h: clamp(140px, 14vw, 220px); /* 高さ */
  --gap: 12px; /* 画像間隔 */
  --duration: 36s; /* 速度（小さい=速い）*/
}

.track {
  display: inline-flex;
  gap: var(--gap);
  white-space: nowrap;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: marquee var(--duration) linear infinite;
}

/* 直下の figure をフラットにする */
.flow-slides .track > figure {
  margin: 0;          /* デフォルトの上下1emを消す */
  flex: 0 0 auto;     /* 画像の幅に合わせて流す */
}

.track > figure > img {
  height: var(--row-h);
  width: auto;
  display: block;
  object-fit: cover;
}
.row--bottom .track {
  animation-direction: reverse;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .track {
    animation: none;
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  .track {
    gap: 8px;
    animation: marquee 12s linear infinite;
  }
  .flow-slides figcaption {
    font-size: 8px;
  }
}

/*************************************************

contents_area

*************************************************/
.contents_area {
  padding-top: 200px;
  padding-bottom: 40px;
}
.area_map {
  width: calc(100% - 40px);
  max-width: 1920px;
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .contents_area {
    padding-top: 80px;
  }
}

.js-modalBtn {
  display: none;
}
@media (max-width: 767px) {
  .js-modalBtn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .js-modalBtn .in-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

.map-modal-map {
  overflow-x: auto;
  width: 100%;
  line-height: 0;
}
.map-modal-map * {
  display: block;
  margin: 0;
  padding: 0;
}
.map-modal-map figure {
  display: block;
  width: 200%;
}

/*************************************************

contents_park

*************************************************/
.contents_park {
  padding-top: 200px;
}
.park_wrap {
  width: calc(100% - 40px);
  max-width: 1480px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.park_wrap_lead {
  width: 50%;
}
.park_wrap_lead .main_lead {
  margin-bottom: 0;
}
.park_title {
  width: 50%;
  display: block;
  font-family: "Cormorant Infant", serif;
  font-size: 88px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(44, 36, 29, 0.1);
}

@media only screen and (max-width: 767px) {
  .contents_park {
    padding-top: 100px;
  }
  .park_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .park_wrap_lead {
    width: 100%;
  }
  .park_title {
    width: 100%;
    font-size: 40px;
  }
}

/* gallery_wrap
==================================== */
.gallery_wrap {
  position: relative;
  margin-inline: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 2;
}
.gallery_item {
  overflow: hidden;
}
.gallery_item a {
  display: block;
  position: relative;
  transition: all 0.5s ease-out;
}
.gallery_item a::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 40px;
  font-weight: 100;
  line-height: 1;
  z-index: 2;
}
.gallery_item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.16);
  z-index: 1;
  transition: all 0.5s ease-out;
}
.gallery_item img {
  transition: all 0.5s ease-out;
}
.gallery_item a:hover img {
  transform: scale(1.05);
}
.gallery_item a:hover::after {
  background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 767px) {
  .gallery_wrap {
    margin-top: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery_item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .gallery_item a::before {
    font-size: 20px;
  }
  .gallery_item .parts-imagephoto__cap {
    font-size: 100%;
  }
  .gallery_text {
    padding: 1em;
  }
}

/* ===== LightGalleryModal ===== */
:root {
  --lgm-backdrop: rgba(255, 255, 255, 0.7);
  --lgm-maxw: min(90vw, 1000px);
  --lgm-maxh: 84vh;
}
.lgm {
  opacity: 0;
}
.lgm.is-open {
  display: flex;
}
.lgm.is-open.is-enter {
  opacity: 1;
  transition: opacity 0.22s ease;
}
.lgm {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--lgm-backdrop);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 24px;
}
.lgm.is-open {
  display: flex;
}

.lgm__dialog {
  width: 100%;
  max-width: var(--lgm-maxw);
  outline: none;
  color: #2c241d;
  position: relative;
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.lgm.is-open.is-enter .lgm__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.lgm__figure {
  position: relative;
  width: 100%;
  max-height: var(--lgm-maxh);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lgm__imageWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 4;
  height: auto;
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* 2枚のimgでスライド */
.lgm__img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.lgm__img.is-current {
  opacity: 1;
}
.lgm__img.is-next {
  opacity: 0;
}
.lgm__img.is-fading-in {
  opacity: 1;
}
.lgm__img.is-fading-out {
  opacity: 0;
}

.lgm__caption {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  line-height: 1.7;
}
.lgm__title {
  font-family: YakuHanMP, "Noto Serif JP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, 游ゴシック, "Yu Gothic",
    游ゴシック体, YuGothic, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin: 0 0 6px;
}
.lgm__meta {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.lgm__text {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
.lgm__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.lgm__nav:hover {
  background: rgba(255, 255, 255, 0.8);
}
.lgm__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.lgm__prev {
  left: -60px;
}
.lgm__next {
  right: -60px;
}

.lgm__nav svg {
  width: 22px;
  height: 22px;
}
.lgm__prev svg {
  transform: scaleX(-1);
} /* 左向きに反転 */

.lgm__close {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 44px;
  height: 44px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lgm__close:before {
  content: "×";
  font-size: 18px;
  line-height: 1;
  color: #222;
}
@media (prefers-reduced-motion: reduce) {
  .lgm,
  .lgm__dialog {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* スマホ */
@media (max-width: 900px) {
  .lgm {
    padding: 12px;
  }
  .lgm__close {
    width: 32px;
    height: 32px;
    top: -42px;
    right: 0;
  }
  .lgm__nav {
    top: 20%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
  }
  .lgm__prev {
    left: -8px;
  }
  .lgm__next {
    right: -8px;
  }
}

/* 背景スクロール固定 */
body.lgm-lock {
  overflow: hidden;
  touch-action: none;
}

@media only screen and (max-width: 767px) {
  .contents_park {
    padding-top: 80px;
  }
}

/*************************************************

contents_data

*************************************************/
.contents_data {
  padding-block: 160px;
  background-color: #efefef;
}
.data_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
}
.data_head_img {
  width: 100%;
  max-width: 720px;
  display: flex;
  column-gap: 40px;
}
.data_head_body {
  width: 100%;
  max-width: 480px;
}
.data_lead {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 40px;
}
.data_wrap {
  margin-top: 40px;
  display: grid;
  width: 75%;
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.data_link {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
.data_img {
  overflow: hidden;
}
.data_img,
.data_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease-out;
}
.data_link:hover .data_img img {
  transform: scale(1.05);
}
.data_body {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000088;
  transition: all 0.5s ease-out;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: min(2em, 1.6vw)
}
.data_link:hover .data_body {
  background-color: #00000044;
}
.data_title {
  letter-spacing: 0.08em;
  padding-top: min(2em, 1.6vw);
  text-align: center;
}
.data_text01 {
  display: block;
  font-size: min(24px, 4vw);
}
.data_text02 {
  display: block;
  font-size: min(28px, 4.4vw);
}
.data_text03 {
  line-height: 1.1;
  font-size: min(80px, 12vw);
  padding-inline: 0.1em;
}
.date_more {
  font-size: min(20px, 3.4vw);
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(1em, 1vw)
}
.date_more_plus {
  display: inline-block;
  width: min(2em, 3vw);
  height: min(2em, 3vw);
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.date_more_plus::after {
  content: "+";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(2em, 3vw);
  line-height: 1;
}


@media only screen and (max-width: 767px) {
  .contents_data {
    padding-block: 60px;
  }
  .data_wrap {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 90%;
  }
  .data_img,
  .data_img img {
    aspect-ratio: 1.8 / 1;
  }
}

/*************************************************

contents_data_modal

*************************************************/
body.js-data-modal-lock {
  overflow: hidden;
  touch-action: none;
}
.data_modal_item {
  width: 100%;
  height: 100%;
  background-color: #ffffffaa;
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .28s ease-out,
    visibility 0s linear .28s;
}
.data_modal_item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity .28s ease-out,
    visibility 0s; /* すぐ見えるように */
}
.data_modal_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: all .28s ease-out;
}
.data_modal_item.is-active .data_modal_bg {
  opacity: 1;
  backdrop-filter: blur(6px);
}
.data_modal_inner {
  width: min(1200px, calc(100% - 40px));
  background-color: #fff;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}
.data_modal_body {
  display: flex;
  flex-direction: column;
  gap: 3em;
  padding-right: 2em;
}
.data_modal_title {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1em
}
/* .data_modal_texts {} */
/* .data_modal_text {} */
.data_mofdal_cap {
  font-size: 12px;
  color: #6f6f6f;
  margin-top: 1em;
}
.data_modal_close {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.data_modal_close::before {
  content: "×";
  font-size: 18px;
  line-height: 1;
  color: #222;
}

@media only screen and (max-width: 767px) {
  .data_modal_inner {
    width: calc(92% - 40px);
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: auto;
    max-height: 80dvh;
  }
  .data_modal_body {
    padding-right: 0;
    gap: 2em;
  }
  .data_modal_img {
    width: 80%;
    margin-inline: auto;
  }
  .data_modal_close {
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
  }
}


/*************************************************

contents_lifeinfo

*************************************************/
.contents_lifeinfo {
  padding-top: 160px;
  padding-bottom: 200px;
}
.lifeinfo_wrap {
  width: calc(100% - 40px);
  max-width: 1760px;
  margin-inline: auto;
  display: flex;
}
.lifeinfo_wrap + .lifeinfo_wrap {
  padding-top: 200px;
}
.lifeinfo_wrap_title {
  width: calc(100% - 40px);
  max-width: 1760px;
  margin-inline: auto;
}
.lifeinfo_wrap_title:after {
  margin-left: 100px;
}
.lifeinfo_inwrap {
  padding-top: 120px;
  width: 100%;
  max-width: 1520px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 30px;
}
.lifeinfo_inwrap.border-top {
  border-top: 1px solid rgba(44, 36, 29, 0.1);
  margin-top: -10px;
}

.lifeinfo_body {
  width: 100%;
  max-width: 760px;
}
.lifeinfo_body_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 80px;
}
.lifeinfo_head {
  position: sticky;
  top: 200px;
  width: 100%;
  max-width: 880px;
  margin-bottom: 80px;
}
.lifeinfo_head .fix_nav_item {
  margin-bottom: 40px;
}
.lifeinfo_item_title {
  font-size: 19px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-top: 16px;
}
.lifeinfo_item_meta {
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #6f6f6f;
}
.lifeinfo_item .main_text {
  margin-top: 12px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .contents_lifeinfo {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .lifeinfo_wrap + .lifeinfo_wrap {
    padding-top: 60px;
  }
  .lifeinfo_wrap_title {
    width: calc(100% - 40px);
    max-width: 1760px;
    margin-inline: auto;
  }
  .lifeinfo_wrap_title:after {
    margin-left: 100px;
  }
  .lifeinfo_inwrap {
    padding-top: 50px;
    flex-direction: column;
  }
  .lifeinfo_inwrap.border-top {
    border-top: none;
    margin-top: 0px;
  }
  .lifeinfo_body_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 40px;
  }
  .lifeinfo_head {
    position: static;
    margin-bottom: 40px;
  }
  .lifeinfo_head .fix_nav_item {
    margin-bottom: 20px;
  }
  .lifeinfo_item_title {
    font-size: 18px;
    margin-top: 10px;
  }
  .lifeinfo_item_meta {
    margin-top: 8px;
  }
  .lifeinfo_item .main_text {
    margin-top: 10px;
  }
}

/* redevelopment-endcaption
=========================================== */
.parts-endcaption {
  padding-block: 40px;
}
