.nav-global-property-link.nav-design::after {
  bottom: 3px;
  background-color: #000;
  border-bottom: none;
  opacity: 0.7;
}
.panel_item_design .panel_item_anchor {
  pointer-events: none;
}
.panel_item_design .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_design

*************************************************/
.contents_design {
  padding-top: 160px;
  padding-bottom: 80px;
}

/* =========================================================== */

/* =========================================================
   WIDE VISUAL SCROLL (複数セクション対応・安定版)
   ========================================================= */

/* シーン全体：高さは中身任せ（sticky部分とpad部分で構成） */
.wide_scene {
  position: relative;
}

/* sticky 本体：常にビューポートぴったり */
.wide_img_area {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  /* padding-top は付けない */
  --stickY: 0px; /* 通常時は0 */
}

/* sticky中だけヘッダー分を下げる（JSで .is-stuck を付与） */
.wide_img_area.is-stuck {
  --stickY: var(--headerH, 0px);
}

/* 画像レイヤーは stickY をそのまま適用 */
.wide_img {
  position: relative;
  height: 100%;
  --mask: 0;
  transform: translateY(var(--stickY));
  will-change: transform;
}
.wide_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--mask));
  z-index: 1;
  pointer-events: none;
}

/* figure 既定マージン除去 */
.wide_img figure {
  margin: 0;
}

/* 画像を全面敷き詰め */
.wide_img figure,
.wide_img_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wide_img_img {
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* テキスト：中央(-50%)基準に stickY を上乗せ */
.wide_img_body {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateY(calc(-50% + var(--stickY)));
  width: min(50%, 820px);
  color: #fff;
  will-change: transform;
}

/* タイトル・サブタイトル・テキスト */
.wide_img_title {
  font-family: "Cormorant Infant", serif;
  font-size: clamp(42px, 9vw, 100px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.wide_img_subtitle {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.wide_img_text {
  margin-top: 40px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}

/* スワイプアイコン */
.parts-spscroll-icon {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  opacity: 0.8;
}

/* 下側のpadでスクロール尺を確保 */
.wide_pad {
  height: 120vh; /* 見せ時間を調整する場合はこの値を変更 */
}

/* モーション軽減ユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .wide_img {
    --mask: 0.5;
  }
  .wide_img_img {
    transform: none;
  }
}

/* SP向け微調整 */
@media (max-width: 767px) {
  .wide_img_body {
    width: min(86%, 720px);
  }
  .wide_img_text {
    width: 100%;
  }
}


/* ========================================================== */

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

  /* sticky解除 */
  .wide_img_area {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    isolation: auto;
    --stickY: 0;
  }
  .wide_img {
    position: static;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto;
    margin-inline: -20px;
    padding-top: 40px;
  }
  .wide_img figure {
    position: relative;
    box-sizing: border-box;
    width: 750px;
    height: auto;
    margin: 0;
    display: block;
    height: auto;
  }
  .wide_img--special figure {
    margin-left: -25vw;
  }

  .wide_img_img {
    position: static;
    width: 100%;
    object-fit: contain;
    display: block;
    height: auto;
  }
  .wide_img::before {
    content: none;
  }
  .wide_img_body {
    position: static;
    transform: none !important;
    width: calc(100% - 40px);
    margin-inline: auto;
    color: #2c241d;
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .wide_img_title {
    font-size: 48px;
  }
  .wide_img_subtitle {
    margin-top: 10px;
    font-size: 12px;
  }
  .wide_img_text {
    margin-top: 40px;
    width: 100%;
  }
  .wide_pad {
    height: auto;
  }
}



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

contents_material

*************************************************/
.contents_material {
  padding-top: 160px;
  padding-bottom: 80px;
}
.material_wrap {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.material_item_title {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-block: 20px;
}

@media only screen and (max-width: 767px) {
  .contents_material {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .material_wrap {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

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

contents_landhead

*************************************************/
.contents_landhead {
  padding-top: 160px;
  padding-bottom: 80px;
}
.contents_landhead .fix_nav_text {
  color: rgba(44, 36, 29, 0.1);
  font-size: 100px;
}
.fix_nav_wrap {
  position: relative;
  width: calc(100% - 40px);
  margin-inline: auto;
  z-index: 2;
}
.contents_landhead .fix_nav {
  position: relative;
  margin-left: 90px;
  margin-left: clamp(0rem, -32.143rem + 21.429vw, 9rem);
}
.contents_landhead .fix_nav_item {
  margin-bottom: 40px;
}
.landscape_head_img {
  margin-top: -10%;
}

@media only screen and (max-width: 767px) {
  .contents_landhead {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .contents_landhead .fix_nav_text {
    font-size: 40px;
  }
  .contents_landhead .fix_nav_item {
    margin-bottom: 20px;
  }
  .landscape_head_img {
    margin-top: 20px;
  }
}

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

contents_landscape

*************************************************/
.contents_landscape {
  padding-top: 80px;
  padding-bottom: 80px;
}
.landscape_wrap {
  width: calc(100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.landscape_img {
  position: sticky;
  top: 200px;
  width: 100%;
  max-width: 880px;
}
.landscape_img figure {
  position: absolute;
  top: 0;
  left: 0;
}
.landscape_img .relative {
  position: relative;
}
.landscape_body {
  width: 100%;
  max-width: 480px;
}
.landscape_head {
  margin-bottom: 80px;
}
.landscape_head .fix_nav_item {
  margin-bottom: 40px;
}
.landscape_item + .landscape_item {
  margin-top: 80px;
}
.landscape_item_title {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-block: 20px;
}
.landscape_item_title span {
  color: #fff;
  background-color: #117960;
  width: 2em;
  aspect-ratio: 1 / 1;
  display: inline-block;
  text-align: center;
  margin-right: 0.5em;
}

@media only screen and (max-width: 767px) {
  .contents_landscape {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .landscape_wrap {
    width: 100%;
    margin-inline: auto;
    flex-direction: column;
  }
  .landscape_img {
    position: static;
    order: 1;
    margin-bottom: 30px;
  }
  .landscape_img-sp {
    margin-top: 20px;
  }
  .landscape_body {
    display: contents;
  }
  .landscape_head {
    order: 0;
    width: calc(100% - 40px);
    margin-inline: auto;
    margin-bottom: 40px;
  }
  .landscape_head .fix_nav_item {
    margin-bottom: 20px;
  }
  .landscape_sp_body {
    width: 100%;
    overflow-x: auto;
    order: 2;
    padding-inline: 20px;
  }
  .landscape_body_wrap {
    width: 1200px;
    display: flex;
    column-gap: 20px;
  }
  .landscape_item + .landscape_item {
    margin-top: 0px;
  }
  .landscape_item_title {
    font-size: 19px;
    letter-spacing: 0.08em;
    line-height: 1.7;
    margin-block: 20px;
  }
}

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

contents_planting

*************************************************/
.contents_planting {
  padding-top: 160px;
  padding-bottom: 160px;
}
.planting_wrap {
  display: flex;
  align-items: center;
  column-gap: 10%;
  padding-inline: 40px;
}
.planting_wrap--special {
  width: calc(100% - 40px);
  max-width: 1440px;
  margin-inline: auto;
  margin-block: 40px;
}
.planting_imgs {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.planting_imgs p {
  grid-column: span 3;
}
.planting_img_ABINC {
  width: 25%;
}
.planting_body {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 640px;
  row-gap: 56px;
}
.planting_body .fix_nav {
  padding-top: 8px;
}
.planting_body_right {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contents_planting {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .planting_wrap {
    flex-direction: column-reverse;
    padding-inline: 0px;
    row-gap: 40px;
  }
  .planting_wrap--special {
    flex-direction: column;
  }
  .planting_imgs {
    width: 100%;
  }
  .planting_img_ABINC {
    width: 50%;
  }
  .planting_body {
    flex-direction: column;
    row-gap: 20px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .planting_body .fix_nav {
    padding-top: 0px;
  }
}

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

contents_designer

*************************************************/
.contents_designer {
  padding-top: 160px;
  padding-bottom: 200px;
  background: url(../../common/img/design/contents_designer_bg.jpg) no-repeat
    center center / cover;
}
.designer_wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.designer_body {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: space-between;
}
.designer_img {
  width: 100%;
  max-width: 584px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
.designer_title {
  font-family: "Cormorant Infant", serif;
  font-size: 56px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(44, 36, 29, 0.1);
}
.designer_body_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}
.designer_body_img {
  width: 100%;
  max-width: 200px;
}
.designer_meta {
  width: 100%;
  max-width: 400px;
}
.designer_meta .name {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 40px;
}
.designer_meta .name span {
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}

@media only screen and (max-width: 767px) {
  .contents_designer {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .designer_wrap {
    flex-direction: column;
    row-gap: 30px;
  }
  .designer_body {
  }
  .designer_img {
    column-gap: 10px;
  }
  .designer_title {
    font-size: 32px;
  }
  .designer_body_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .designer_body_img {
    margin-inline: auto;
  }
  .designer_meta .name {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .designer_meta .name span {
    font-size: 12px;
  }
}

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


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

contents_garden

*************************************************/
.contents_garden {
  padding-top: 0px;
  padding-bottom: 160px;
}
.garden_head {
  position: relative;
}
.garden_head_wrap {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10%;
  padding-right: 20px;
  position: absolute;
  bottom: 0;
}
.garden_head_wrap .fix_nav_text {
  color: rgba(255, 255, 255, 0.1);
  font-size: 160px;
}
.garden_body {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 640px;
  row-gap: 56px;
  color: #fff;
}
.garden_body_right {
  width: 100%;
}
.garden_contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.garden_item {
  position: relative;
  color: #fff;
}
.garden_item figure {
}
.garden_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  gap: 10%;
}
.garden_title {
  font-size: min(48px, 3vw);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: "vert";
  font-weight: normal;
  white-space: nowrap;

}
.garden_title span {
  font-size: 70%;
}
.garden_text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  width: min(350px, 90%);
}

@media only screen and (max-width: 1200px) {
    .garden_contents{
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .contents_garden {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .garden_head_img  {
    height: 450px;
  }
  .garden_head_img img {
    height: 100%;
    width: 100%;
    height: min(600px, 100%);
    object-fit: cover;
  }
  .garden_head_wrap {
    flex-direction: column;
    padding-right: unset;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 30px;
  }
  .garden_head_wrap .fix_nav_text {
    color: rgba(255, 255, 255, 0.2);
    font-size: 60px;
  }
  .garden_body {
    flex-direction: column;
    row-gap: 20px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .garden_item img {
    aspect-ratio: 1 / 1.6;
  }
  .garden_item .parts-imagephoto__cap {
    color: #000;
    bottom: -2em;
  }
  .garden_wrap {
    padding: 10px;
  }
  .garden_title {
    font-size: 24px;
  }
  .garden_text {
    font-size: 10px;
    line-height: 1.7;
    position: relative;
  }
  .garden_text small {
    display: inline-block;
    font-size: 80%;
    line-height: 1.4;
    position: absolute;
    bottom: -2.8em;
  }
}