@charset "utf-8";

:root {
    --headerWrapHeight-pc: 96px;
    --headerWrapHeight-sp: 76px;
    --headerWrapGridWidth-pc: 160px;
    --headerWrapGridWidth-sp: 108px;
}

/*
    header
*/
.headerWrap {
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr var(--headerWrapGridWidth-pc);
    padding: 0px 20px 0px 40px;
    width: 100%;
    height: var(--headerWrapHeight-pc);
    align-items: center;
    background-color: var(--colors-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.headerLogoArea h1 {
    color: #555555;
    margin-bottom: 0.1em; /* SVG化で詰まった produced by LANDIC との余白を補正（font-size追従でPC/SP自動） */
}
.headerLogoArea h1+span {
    color: #5C5C5C;
}
/* ヘッダーロゴのクリック領域を物件名の幅に限定 (h1 が block で 1fr 幅いっぱいに広がるのを抑制) */
.headerLogoArea a.link_op {
    display: inline-block;
}
/* ヘッダーロゴ: テキスト→SVG画像化（h1内・alt=カナ物件名でSEO）。高さは h1 の font-size 追従（fs28/fs16-sp で PC/SP 自動）。SVGは#555555でcolor指定と同色。 */
.headerLogoArea h1 .logo_svg {
    height: 0.9em;
    width: auto;
    vertical-align: middle;
}

.headerMenuArea .menuBox {
    position: relative;
    width:  var(--headerWrapGridWidth-pc);
    height: 56px;
    display: flex;
    align-items: center;
    background-color: #333333;
    color: #fff;
    padding-left: 32px;
    cursor: pointer;
}

.headerMenuArea .menuBox:hover {
    opacity: 0.8;
}

.headerMenuArea .menuBox .menuButton {
    position: absolute;
    top: 10px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-color: #525252;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
 }

.headerMenuArea .menuBox:hover .menuButton {
   transform: scale(1.05);
 }

 .headerMenuArea .menuButton .dotsContainer {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

.headerMenuArea .menuButton .dotsContainer span {
   width: 3px;
   height: 3px;
   background: rgba(255, 255, 255, 0.7);
   border-radius: 50%;
   position: absolute;
   transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

.headerMenuArea .menuButton .dotsContainer span:nth-child(1) {
   left: calc(50% - 4.5px);
   transform: translateX(-50%);
 }

.headerMenuArea .menuButton .dotsContainer span:nth-child(2) {
   left: 50%;
   transform: translateX(-50%);
 }

.headerMenuArea .menuButton .dotsContainer span:nth-child(3) {
   left: calc(50% + 4.5px);
   transform: translateX(-50%);
 }

 /* Hover時：中央に集まって一つの丸に */
 .headerMenuArea .menuBox:hover .menuButton .dotsContainer span {
   left: 50%;
   opacity: 0;
   transform: translateX(-50%) scale(3);
 }

 /* 中央の丸 */
 .centerCircle {
   width: 10px;
   height: 10px;
   background: rgba(255, 255, 255, 0.7);
   border-radius: 50%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0);
   opacity: 0;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .menuBox:hover .centerCircle {
   transform: translate(-50%, -50%) scale(1);
   opacity: 1;
 }


@media screen and (max-width: 767px) {

  .headerWrap {
      grid-template-columns: 1fr var(--headerWrapGridWidth-sp);
      padding: 0px 12px 0px 12px;
      height: var(--headerWrapHeight-sp);
  }

  .headerMenuArea .menuBox {
      width: var(--headerWrapGridWidth-sp);
      padding-left: 14px;
      height: 48px;
  }

  .headerMenuArea .menuBox .menuButton {
      top: 8px;
      right: 8px;
      width: 32px;
      height: 32px;
  }

}

/*
    footer
*/
.footerContentsWrap {
    background-color: #333;
    width: 100%;
    padding: 60px 0px;
}

.footerContentsWrap>div {
    width: 1160px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(213, 215, 217, 1);
}

.footerPropertyInfoWrap .footerPropertyInfoDetail {
    width: 100%;
    margin: 32px;
}

.footerPropertyInfoWrap .footerPropertyInfoDetail>div:nth-child(1) {
    /*flex-shrink: 0;*/
    width: calc(100% - 64px);
}

.footerPropertyInfoWrap .footerPropertyInfoDetail>div:nth-child(2) {
    flex: 0.9;
    min-width: 0;
}

.footerNaviMenu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 24px;
}

.footerNaviMenu ul li a {
  color: rgba(213, 215, 217, 1);
  font-size: 14px;
}

.footerNaviMenu ul li a:hover {
    opacity: 0.5;
}


@media (max-width: 768px) {

  .footerContentsWrap {
      box-sizing: border-box;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 80px;
  }

  .footerContentsWrap>div {
      width: 100%;
  }

  .footerPropertyInfoWrap .footerPropertyInfoDetail {
      margin-top: 40px;
      margin-bottom: 40px;
  }

  .footerNaviMenu ul {
      flex-direction: column;
      flex-wrap: nowrap;
      row-gap: 16px;
      column-gap: 0px;
  }

  .footerPropertyInfoWrap .footerPropertyInfoDetail>div:nth-child(2) {
      width: calc(100% - 64px);
      min-width: inherit;
  }

}



/* ドロワーオーバーレイ */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

/* ドロワーメニューエリア */
/* メニュー */
.drawer-menu .menu { margin:0 0 58px; }
.drawer-menu .menu a { font-size:20px; display:inline-block; padding:15px 0; pointer-events:auto; }
.drawer-menu .current-menu-item { }
.drawer-menu .menu li { margin:0; font-weight:600; position:relative; pointer-events:none; }
.drawer-menu .menu ul ul { margin:0; opacity:0; transition: height 0.35s ease; pointer-events:none; }
.drawer-menu .menu ul ul.active { opacity:1; pointer-events:auto; }
.drawer-menu .menu ul ul a { color:rgba( 0, 0, 0, 0.8) !important; pointer-events:none; }
.drawer-menu .menu li.menu-item-has-children > a > span { position:relative; }
.drawer-menu .menu ul ul li { opacity:0; transition: transform opacity 0.2s ease 0s; }
.drawer-menu .menu ul ul.active li { opacity:1; }
.drawer-menu .menu ul ul.active li a { pointer-events:auto; }
.drawer-menu .menu ul ul.active li:nth-child(1) { transition: opacity 0.4s ease 0.1s; }
.drawer-menu .menu ul ul.active li:nth-child(2) { transition: opacity 0.4s ease 0.15s; }
.drawer-menu .menu ul ul.active li:nth-child(3) { transition: opacity 0.4s ease 0.2s; }
.drawer-menu .menu ul ul.active li:nth-child(4) { transition: opacity 0.4s ease 0.25s; }
.drawer-menu .menu ul ul.active li:nth-child(5) { transition: opacity 0.4s ease 0.3s; }
.drawer-menu .menu ul ul.active li:nth-child(6) { transition: opacity 0.4s ease 0.35s; }
.drawer-menu .menu ul ul.active li:nth-child(7) { transition: opacity 0.4s ease 0.4s; }
.drawer-menu .menu ul ul.active li:nth-child(8) { transition: opacity 0.4s ease 0.45s; }
.drawer-menu .menu ul ul.active li:nth-child(9) { transition: opacity 0.4s ease 0.5s; }
.drawer-menu .menu ul ul.active li:nth-child(n + 10) { transition: opacity 0.4s ease 0.55s; }
.drawer-menu .menu a:hover { color:rgba( 0, 0, 0, 0.5) !important;  }

.drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 640px;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
    padding: 60px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer-menu .dButtonArea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*grid-template-columns: 1fr;*/
    gap: 40px;
    justify-items: center;
    margin-bottom: 48px;
}

.drawer-menu .dButtonArea a:first-child {
  margin-left: auto;
}

.drawer-menu .dButtonArea a:last-child {
  margin-right: auto;
}

@media screen and (max-width:750px) {
  .drawer-menu .dButtonArea {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
  }

  .drawer-menu .dButtonArea a {
    margin-left: auto;
    margin-right: auto;
  }
}

.drawer-menu nav.menu {
  width: calc(224px * 2 + 40px);
  /*width: calc(260px * 2 + 40px);*/
  margin-left: auto;
  margin-right: auto;
}

.drawer-menu nav.menu ul.menu {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.drawer-menu nav.menu ul.menu li {
  text-align: left;
}

.drawer-menu nav.menu ul.menu li ul.sub-menu li span {
  font-size: 16px;
}

.drawer-menu .menu li .title>span {
    font-size: 16px;
}

/*.drawer-menu .menu li.menu-item-has-children.active > a {
  pointer-events: none;
}

.drawer-menu .menu li.menu-item-has-children > a > .title {
    pointer-events: auto;
}

.drawer-menu .menu li.menu-item-has-children > a > .button {
    pointer-events: auto;
}*/

.drawer-menu .menu li.menu-item-has-children > a > span {
    position: relative;
}

.drawer-menu .menu li.menu-item-has-children > a > .button:after {
      color: #000;
      font-family: 'design_plus';
      content: '\e90e';
      font-size: 16px;
      display: block;
      width: 16px;
      height: 16px;
      position: absolute;
      right: -32px;
      top: 1px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 750px) {

  .drawer-menu nav.menu {
    width: 312px !important;
    margin-bottom: 200px !important;
  }

  .drawer-menu nav.menu ul.menu {
      gap: 0px 8px;
  }

  .drawer-menu nav.menu ul.menu li span,
  .drawer-menu nav.menu ul.menu li ul.sub-menu li span {
    font-size: 14px;
  }

  .drawer-menu .menu li .title>span {
      font-size: 13px;
  }
}


/* クローズボタン */
.drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
    padding: 0;
}

.drawer-close:hover {
    color: #0066cc;
}

/* メニューが開いている状態 */
body.openDrawerMenu {

}

body.openDrawerMenu .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

body.openDrawerMenu .drawer-menu {
  transform: translateX(0);
}

/* ナビゲーションスタイル */
.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav li {
  margin-bottom: 20px;
}

.drawer-nav a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.drawer-nav a:hover {
  background-color: rgba(0, 102, 204, 0.1);
}

/* メニューボタン（サンプル） */

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .drawer-menu {
    width: 80%;
    max-width: none;
  }
}



/*
    contentsTopWrap
*/
.contentsTopWrap {
    padding-top: var(--headerWrapHeight-pc);
}

@media screen and (max-width: 767px) {

  .contentsTopWrap {
      padding-top: var(--headerWrapHeight-sp);
  }

}

/* bodyに常にpadding-topを設定 */
body:not(.home) {
  padding-top: var(--headerWrapHeight-pc);
}

@media screen and (max-width: 767px) {
  body:not(.home) {
    padding-top: var(--headerWrapHeight-sp);
  }
}

/* パンくずは padding-top を持たない */
.breadcrumb-wrapper, #bread_crumb {
  padding-top: 0;
  margin-top: 0;
}



/*
mainVisual

*/
#mainVisualWrap {
    position: relative;
    z-index: 0;
    width: 100%;
    height: calc(100vh - var(--headerWrapHeight-pc));
    padding-top: 0;
    margin-top: var(--headerWrapHeight-pc);
    overflow: hidden;
}

.mainVisualContents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--headerWrapHeight-pc));
    opacity: 0;
    visibility: hidden;
}

.mainVisualContents.mvActive {
    opacity: 1;
    visibility: visible;
}

.mainVisualImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--headerWrapHeight-pc));
    overflow: hidden;
}

.mainVisualImage img {
    width: 100%;
    height: calc(100vh - var(--headerWrapHeight-pc));
    object-fit: cover;
    object-position: center;
    /* モアレ/チラつき対策: 写真の大幅縮小では crisp-edges/optimize-contrast が
       スムーズ縮小を無効化しエイリアシング(モアレ)を生むため auto に戻す。
       3D合成(preserve-3d/perspective)もサブピクセル再標本化でチラつく為に外す。
       レイヤー昇格は translateZ(0)+will-change のみで十分。 */
    transform: scale(1) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: auto;
    pointer-events: none;
}

.mainVisualCatch {
    position: absolute;
    top: 40%;
    left: 8%;
    max-width: 360px;
    width: 20vw;
    transform: translateY(-40%);
    z-index: 5;
    opacity: 0;
}

.mainVisualCatch img {
    width: 100%;
}

.mainVisualContents.mvActive .mainVisualCatch {
    animation: mvFadeInUp 1.5s ease forwards 0.8s;
}

@keyframes mvFadeInUp {
  from {
      opacity: 0;
      transform: translateY(-40%) translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(-40%) translateY(0);
  }
}



.mainVisualImage figure {
    /*height: calc(100vh - var(--headerWrapHeight-pc));*/
}

.mainVisualImage figure img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;*/
}

.mainVisualCatch {
    /*position: absolute;
    top: 40%;
    left: 8%;
    max-width: 360px;
    width: 20vw;*/
    /*background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-50%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;*/
}

.mainVisualCatch img {
    /*width: 100%;*/
}

.loaded .mainVisualCatch {
  /*opacity: 1;*/
}

.mainVisualCatch p, .mainVisualCatch img {
  /*filter: blur(10px);*/
  /*opacity: 0;
  transform: translateY(10%);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;*/
}

.loaded .mainVisualCatch p, .loaded .mainVisualCatch img {
  /*filter: blur(0);
  opacity: 1;
  transform: translateY(0);*/
}

/*.mainVisualPrContents {
    position: absolute;
    height: 240px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 48px;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-wrap: nowrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.mainVisualPrContents>div {
    width: calc(25% - 12px);
    text-align: center;
}

.mainVisualPrContents>div img {
    width: 90%;
}*/

.mainVisualPrContentsWrap {
    min-height: 240px;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 48px;
    background-color: var(--c-main); /* 単色 #221815 (mv_pr_bg.jpg 画像+blur は廃止) */
    position: relative;              /* FV下部に重ねる(figma_new 2026-06-23) */
    z-index: 2;                      /* FVスライダーより前面 */
    margin-top: -20px;               /* FV画像の下部に帯を被せる(重なり量) */
}
@media screen and (max-width: 767px) {
    .mainVisualPrContentsWrap { margin-top: -40px; }   /* SPは重なりを浅く */
}

.mainVisualPrContentsWrap .mainVisualPrContents {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.mainVisualPrContentsWrap .mainVisualPrContents>div {
    width: calc(25% - 12px);
    text-align: center;
}

.mainVisualPrContentsWrap .mainVisualPrContents>div img {
    width: 90%;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .mainVisualPrContentsWrap {
        padding: 32px 24px;
        min-height: 0;
    }

    .mainVisualPrContentsWrap .mainVisualPrContents {
        gap: 24px;
    }

    .mainVisualPrContentsWrap .mainVisualPrContents>div {
        width: calc(33.333% - 16px);
    }

    .mainVisualPrContentsWrap .mainVisualPrContents>div img {
        width: 100%;
        display: block;
    }
}

@media screen and (max-width: 767px) {

    #mainVisualWrap {
        /*height: calc(100vh - var(--headerWrapHeight-sp));*/
    }

    #mainVisualWrap.contentsTopWrap {
        padding-top: 0;
    }


    /*.mainVisualContents {
        position: sticky;
        top: 0;
    }*/

    .mainVisualImage figure {
        /*height: calc(100vh - var(--headerWrapHeight-sp));*/
    }

    .mainVisualImage img {
        /*min-height: revert;
        width: 100%;
        height: 100vh;
        object-fit: cover;*/
    }


    .mainVisualCatch {
        /*max-width: inherit;
        width: 200px;
        top: calc( 5% + var(--headerWrapHeight-sp) );
        left: 4%;*/
    }

    /*.mainVisualPrContents {
      position: sticky;
      top: 0;
      bottom: auto;
      height: 100vh;
      flex-direction: column;
      z-index: 1;
    }

    .mainVisualPrContents>div {
        width: 100%;
    }*/

    #mainVisualWrap {
        /*height: calc(100vh - var(--headerWrapHeight-sp));*/
        height: 100vw;
        margin-top: var(--headerWrapHeight-sp);
        padding-top: var(--headerWrapHeight-sp);
    }

    .mainVisualContents {
        /*height: calc(100vh - var(--headerWrapHeight-sp));*/
        height: 100vw;
    }

    .mainVisualImage {
        /*height: calc(100vh - var(--headerWrapHeight-sp));*/
        height: 100vw;
    }

    .mainVisualImage img {
        /*height: calc(100vh - var(--headerWrapHeight-sp));*/
        height: 100vw;
    }

    .mainVisualCatch {
        max-width: inherit;
        width: 200px;
        top: calc( 5% + var(--headerWrapHeight-sp) );
        left: 4%;
    }

    .mainVisualPrContentsWrap {
        min-height: inherit;
    }

    .mainVisualPrContentsWrap .mainVisualPrContents {
        flex-direction: column;
    }

    .mainVisualPrContentsWrap .mainVisualPrContents>div,
    .mainVisualPrContentsWrap .mainVisualPrContents>div img {
        width: 100%;
    }



}

/*
  .topPickupFullWrap
*/
.topPickupFullWrap {
    position: relative;
}

.topPickupFullContents {
    position: sticky;
    top: var(--headerWrapHeight-pc);
    height: 100vh;
    overflow: hidden;
}

.topPickupFullContents img {
    width: 100%;
}

.topPickupFullImage {
    position: relative;
    width: 100%;
    height: 100vh;
}

.topPickupFullImage figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.topPickupFullImage picture, .topPickupFullImage img {
    width: 100%;
    height: 100%;
    display: block;
}

.topPickupFullImage img {
    object-fit: cover;
}

.topPickupFullImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.7);
    pointer-events: none;
    z-index: 1;
}

.topPickupFullText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    filter: blur(10px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    opacity: 0;
    z-index: 2;
    width: 520px;
}

.topPickupFullText.inMotion {
    filter: blur(0px);
    opacity: 1;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* topCommonArea: 和名を fw500 で細く */
    .topCommonAreaContents p:nth-child(2) {
        font-weight: 500;
    }

    /* topPickupHalf: 画像と右コラムの gap を詰め、和名を縮小、natural flow 化で下線重なり解消 (JS は TB 帯で wrap 高さリセット)
       ※ .topPickupHalfContents の元宣言がファイル後方にあり同 specificity だと負けるため、親込みで specificity を上げる */
    .topPickupHalfWrap .topPickupHalfEle {
        gap: 60px;
    }

    .topPickupHalfWrap .topPickupHalfText p:nth-child(2) {
        font-size: 20px;
    }

    .topPickupHalfWrap .topPickupHalfContentsWrap {
        padding: 60px 0;
    }

    .topPickupHalfWrap .topPickupHalfContents {
        position: static;
        transform: none;
        top: auto;
        left: auto;
    }

    /* INFORMATION: ボタンを中央寄せ (tac-sp が SP only のため TB で補完) */
    .postContentRow.bgColorWhite > div:last-child {
        text-align: center;
    }

    /* NEWS: PC スタイルの固定幅 (320px + 240px) がタブレット幅で破綻するため、landic.com TOPICS 風に整理
       ※ 元宣言がファイル後方にあり同 specificity + !important で負けるため、section. を付けて specificity を上げる */
    section.topNewsWrapper {
        margin-left: 5vw;
        margin-right: 5vw;
    }

    section.flexBox.topNewsWrapper > div:nth-child(1) {
        width: 200px !important;
    }

    section.flexBox.topNewsWrapper .content_inner.pl130 {
        padding-left: 0;
    }

    section.flexBox.topNewsWrapper > div.mr130 {
        margin-right: 0;
    }

    section.flexBox.topNewsWrapper .top_news_link {
        gap: 24px;
    }

    section.flexBox.topNewsWrapper .top_news_link > div:nth-child(1) {
        width: 120px !important;
        flex-shrink: 0;
    }

    section.flexBox.topNewsWrapper .top_news_link > div:nth-child(2) {
        width: auto !important;
        flex: 1;
    }

    /* ドロワーメニュー: 子テーマ独自実装の .drawer-menu (width: 50%, max-width: 640px)
       「ホームカスタマイス」等が見切れるため 75% / 720px に拡張 */
    .drawer-menu {
        width: 75%;
        max-width: 720px;
    }

    /* ROOM PLAN: 専有面積/バルコニーの値が改行するため折返し禁止 */
    .roomInfoDetail span:nth-child(2) {
        white-space: nowrap;
    }

    /* フッター: PC は width:1160px 固定で viewport 834px を超え左右ベタ詰め+右見切れ。SP 風に padding + 100% */
    .footerContentsWrap {
        box-sizing: border-box;
        padding-left: 40px;
        padding-right: 40px;
    }

    .footerContentsWrap > div {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {

    .topPickupFullWrap {
        position: relative;
        z-index: 100; /* footer-barより低く */
    }

    .topPickupFullContents {
        top: var(--headerWrapHeight-sp);
        z-index: 101;
        overflow: hidden;
    }

    .topPickupFullText {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        transform: translate(-50%, -50%);
    }

    .topPickupFullText.inMotion {
        transform: translate(-50%, -60%);
    }

}

/* TOP CONCEPT/LOCATION/DESIGN: PC は Figma 通り左右交互配置 (2026-06-19)。
   nth-of-type で自動判定=記事(.topPickupFullContents)を並べ替え/追加すると左右も自動で追従 */
@media screen and (min-width: 1025px) {
    .topPickupFullText { left: auto; right: auto; transform: translateY(-45%); }   /* 中央配置(left:50%)を解除しX移動をやめる */
    .topPickupFullContents:nth-of-type(odd)  .topPickupFullText { left: 7vw; }      /* 奇数(CONCEPT/DESIGN)=左 */
    .topPickupFullContents:nth-of-type(even) .topPickupFullText { right: 7vw; }     /* 偶数(LOCATION)=右 */
    .topPickupFullText.inMotion { transform: translateY(-50%); }                    /* 出現アニメは Y のみ */
    /* グレーオーバーレイも全面でなく文字側だけ(Figma)。反対側は画像を見せる */
    .topPickupFullContents:nth-of-type(odd)  .topPickupFullImage::after {
        background: linear-gradient(to right, rgba(34,34,34,0.72) 0%, rgba(34,34,34,0.58) 35%, rgba(34,34,34,0) 68%);
    }
    .topPickupFullContents:nth-of-type(even) .topPickupFullImage::after {
        background: linear-gradient(to left,  rgba(34,34,34,0.72) 0%, rgba(34,34,34,0.58) 35%, rgba(34,34,34,0) 68%);
    }
}

/*
  topCommonArea
*/
.topCommonArea {
    background-color: #ECE2D4;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    height: 480px;
}

.topCommonArea>div:nth-child(1) {
    width: calc( 45% - 32px );
    height: 100%;
}

.topCommonArea>div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topCommonArea>div:nth-child(2) {
    width: calc( 55% - 32px );
}

.topCommonArea>div:nth-child(2) p:nth-child(1) {
    position: relative;
    display: inline-block;
}

.topCommonArea>div:nth-child(2) p:nth-child(1)::after {
  content: '';
  position: absolute;
  left: calc(100% + 24px);
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 0.8px;
  background-color: var(--colors-black);
}

@media screen and (max-width: 767px) {
    .topCommonArea {
       flex-direction: column;
       gap: 32px;
       height: inherit;
       padding-bottom: 32px;
    }

    .topCommonArea>div:nth-child(1),
    .topCommonArea>div:nth-child(2) {
        width: 100%;
    }

    .topCommonArea>div:nth-child(2) p:nth-child(1)::after {
        width: calc(100vw - 200px);
        max-width: 180px;
    }

}

/*
  .topPickupHalfWrap
*/
.topPickupHalfWrap {
    width: 100%;
    margin-top: var(--headerWrapHeight-pc);
    margin-bottom: var(--headerWrapHeight-pc);
}

.topPickupHalfEle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.topPickupHalfImage-pc {
    position: sticky;
    top: var(--headerWrapHeight-pc);
    z-index: 0;
}

.topPickupHalfImage-pc figure, .topPickupHalfImage-pc figure img {
  width: 100%;
  height: auto;
}

.topPickupHalfImage-pc figure img {
  display: block;
}
.topPickupHalfImage-pc>figure {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.topPickupHalfImage-pc>figure + figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.topPickupHalfImage-pc>figure.show_img {
    opacity: 1;
}

.topPickupHalfEle>div:nth-child(2) {
}

.topPickupHalfContentsWrap {
    position: relative;
}

.topPickupHalfContentsWrap:not(:last-child)::after {
    content: '';
    position: absolute;
    display: block;
    width: 75%;
    height: 0.8px;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
}

.topPickupHalfContents {
    width: 75%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
@media screen and (max-width: 767px) {

  .topPickupHalfWrap {
      margin-top: 40px;
      margin-bottom: 40px;
  }

  .topPickupHalfEle {
      grid-template-columns: 1fr;
      gap: 0px;
  }

  .topPickupHalfContentsWrap {
      width: 90%;
      padding-top: 40px;
      padding-bottom: 40px;
      margin-left: auto;
      margin-right: auto;
  }

  .topPickupHalfContentsWrap:not(:last-child)::after {
      left: 50%;
      width: 100%;
      transform: translateX(-50%);
   }

   .topPickupHalfImage-sp figure, .topPickupHalfImage-sp figure img {
      width: 100%;
      height: auto;
   }

  .topPickupHalfContents {
      width: 100%;
      position: static;
      top: auto;
      transform: none;
      left: auto;
  }

  .topPickupHalfText {
      margin-top: 40px;
  }


}

/*
.topPickUpRoom
*/
.topPickUpRoom {
    background-color: rgba(241, 244, 247, 1);
    color: rgba(51, 51, 51, 1);
    margin: 60px auto;
}

.topPickUpRoomPartsWrap {
    box-sizing: border-box;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.topPickUpRoomPartsWrap:hover {
  border-color: rgba(0, 0, 0, 0.8);
}

.topPickUpRoomPartsWrap .roomTypeText {
    width: 120px;
    background-color: rgba(255, 255, 255, 0.8);
    color: rgba(51, 51, 51, 1);

}

.topPickUpRoomPartsWrap .roomTypeImage {
    /* 標準間取り画像(≈1640×2370・img幅90%表示)の高さでコンテナを固定し、
       高さ2370未満の間取り画像(M/N等)は上下中央に配置して不足分を白余白で補う。
       画像自体は無加工(=詳細ページと共用のためズレない)。SP/TB共通。 */
    aspect-ratio: 1 / 1.30;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.topPickUpRoomPartsWrap .roomTypeImage img {
    width: 90%;
    height: auto;
    max-height: 100%;
}

.topPickUpRoomPartsWrap .roomTypeInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    background-color: #fff;
}

.topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(1) {
    width: 33%;
    color: rgba(241, 244, 247, 1);
    background-color: rgba(51, 51, 51, 1);
}

.topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(2) {
    width: 67%;
    background-color: #fff;
}

.topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(2) .roomInfoDetail {
    color: #000 !important;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
}

.topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(2) .roomInfoDetail>span:nth-child(1) {
    width: 90px;
}

.topLayoutSliderContainer {
  max-width: 1200px;
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

.topLayoutSliderWrap {
  display: flex;
  gap: 20px;
  width: 100%;
}

.topLayoutSlideItem {
  flex-shrink: 0;
}

/* PC表示: 3枚表示 */
@media (min-width: 768px) {

  .topLayoutSlideItem {
    width: calc( (100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
  }

  .topLayoutSliderContainer {
    position: relative;
  }

  .topLayoutSliderContainer::before,
  .topLayoutSliderContainer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background-color: rgba(241, 244, 247, 1);
    z-index: 10;
  }

  .topLayoutSliderContainer::before {
    left: 0;
  }

  .topLayoutSliderContainer::after {
    right: 0;
  }

}

.topLayoutSliderControls {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.topLayoutSliderDots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.topLayoutSliderDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.topLayoutSliderDot:hover {
  background: #999;
  transform: scale(1.2);
}

.topLayoutSliderDot.active {
  background: rgba(51, 51, 51, 1);
  transform: scale(1.3);
}

@media screen and (max-width: 767px) {
  .topPickUpRoom {
      padding-left: 20px;
      padding-right: 20px;
  }

  .topLayoutSliderContainer {
      width: 100%;
      padding: 0 10px;
  }

  .topLayoutSliderWrap {
      gap: 10px;
  }

  .topPickUpRoomPartsWrap {
      width: calc( 100% - 40px );
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
  }

  .topLayoutSlideItem {
      width: 98%;
  }

  .topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(1) {
      width: 30%;
  }

  .topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(2) {
      width: 70%;
  }

  .topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(2) .roomInfoDetail {
      padding-left: 8px;
      padding-right: 8px;
  }

  .topPickUpRoomPartsWrap .roomTypeInfo>div:nth-child(2) .roomInfoDetail>span:nth-child(1) {
      width: 76px;
  }

}

/*  フリースぺース@News  */
.topNewsWrapper {
    margin-left: 12vw;
    margin-right: 12vw;
}

.flexBox.topNewsWrapper>div:nth-child(1) {
  width: 320px !important;

}

.flexBox.topNewsWrapper>div:nth-child(2) {
  flex: 1;
}

.flexBox.topNewsWrapper .top_news_link>div:nth-child(1) {
  width: 240px !important;
}

.flexBox.topNewsWrapper .top_news_link>div:nth-child(2) {
  width: calc(100% - 300px) !important;
}

.flexBox.topNewsWrapper .link_more:hover {
  opacity: 0.8;
}

.flexBox.topNewsWrapper .top_news_link:hover {
  color: rgba(0, 0, 0, 0.5) !important;
}

@media screen and (max-width: 767px) {
  .topNewsWrapper {
      margin-left: 20px;
      margin-right: 20px;
  }

  .flexBox.topNewsWrapper .top_news_link>div:nth-child(1) {
    width: 40% !important;
  }

  .flexBox.topNewsWrapper .top_news_link>div:nth-child(2) {
    flex: 1;
  }

  .flexBox.topNewsWrapper .topNewsWrapper .content_inner.dspGrid {
    grid-template-columns: 1fr 1fr;
  }

}

/*::::::::::::::::::::::::::::::::

  Child pages

::::::::::::::::::::::::::::::::*/
.contentsPageTitleWrap {
    margin: 0;
    padding-top: 80px;
}

.contentsPageTitle {
    margin-left: 12vw;
    /*color: #4c4948;*/
}

@media screen and (max-width: 767px) {

  .contentsPageTitleWrap {
      padding-top: 48px;
  }

  .contentsPageTitle {
      margin-left: inherit;
  }

}

/* 下層ヘッダー帯: パンくず + ページタイトル(contentsPageTitle) をグレージュ背景で一体化 (2026-06-17) */
.breadcrumb-wrapper { background-color: var(--c-sub); }
.contentsPageTitleWrap { background-color: var(--c-sub); padding-bottom: 40px; }         /* 帯下もグレージュで満たし白を消す */
/* タイトル帯は常にブラウザ幅フル(#container overflow:clip で横スクロール無し)。blog/category archive は #main_contents=1130px に収まり両サイドが白くなるため */
.contentsPageTitleWrap { position: relative; left: 50%; transform: translateX(-50%); width: 100vw; max-width: 100vw; }
#bread_crumb { border-bottom: 1px solid var(--c-border); }                              /* パンくず⇔タイトルの区切り線 (hakata7踏襲、グレージュ地で見える色) */
#bread_crumb li a, #bread_crumb li.home a:before, #bread_crumb li:after { color: var(--c-main); }  /* リンク/ホーム/区切りは濃色 */
#bread_crumb, #bread_crumb li.last { color: var(--c-text-muted); }                      /* 現在地は弱める */
.contentsPageTitle { color: var(--c-heading); }                                         /* 見出しは濃色で可読性確保 */
.contentsPageTitleWrap + .postContentRow { padding-top: 0 !important; }                 /* タイトル直後コンテンツの白い上余白を解消(帯下グレージュに接続) */

/*
  Layout - LIST -
*/

.layoutList_inner_v02 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.layoutItemWrap {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    position: relative;
}

.layoutItemWrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4c4948;
    transition: width 0.4s ease;
    z-index: 0;
}

.layoutItemWrap:hover::before {
    width: 100%;
}

.layoutItemWrap:hover .layoutItemLink {
    color: #fff;
}

.layoutItemWrap:hover .layoutItemType,
.layoutItemWrap:hover .layoutItemData,
.layoutItemWrap:hover .layoutItemData > div:nth-child(1) span::first-letter,
.layoutItemWrap:hover .layoutItemViewMore span {
    color: #fff;
}

.layoutItemWrap:hover .arrowTxt svg path {
    stroke: #fff;
}

.layoutItemWrap.isSoldout {
    cursor: default;
}

.layoutItemWrap.isSoldout .layoutItemLink {
    pointer-events: none;
}

.layoutItemWrap.isSoldout::before {
    /*background: rgba(76, 73, 72, 0.3);*/
    width: 100%;
    background: rgba(76, 73, 72, 0.3);
    transition: none;
}

/*.layoutItemWrap.isSoldout:hover .layoutItemType,
.layoutItemWrap.isSoldout:hover .layoutItemData,
.layoutItemWrap.isSoldout:hover .layoutItemViewMore span {*/
.layoutItemWrap.isSoldout .layoutItemType,
.layoutItemWrap.isSoldout .layoutItemData,
.layoutItemWrap.isSoldout .layoutItemViewMore span {
    color: rgba(255, 255, 255, 0.4);
}

/*.layoutItemWrap.isSoldout:hover .featureParts {*/
.layoutItemWrap.isSoldout .featureParts {
    opacity: 0.5;
}

/*.layoutItemWrap.isSoldout:hover .layoutItemDivider {*/
.layoutItemWrap.isSoldout .layoutItemDivider {
    background: rgba(255, 255, 255, 0.4);
}

/*.layoutItemWrap.isSoldout:hover .arrowTxt svg path {*/
.layoutItemWrap.isSoldout .arrowTxt svg path {
    stroke: rgba(255, 255, 255, 0.4);
}

.layoutItemWrap.isSoldout::after {
    content: 'SOLD OUT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: rgba(76, 73, 72, 0.9);
    padding: 12px 24px;
    z-index: 10;
    letter-spacing: 0.1em;
    /*opacity: 0;
    transition: opacity 0.3s ease;*/
    opacity: 1;
    white-space: nowrap;
}

/*.layoutItemWrap.isSoldout:hover::after {
    opacity: 1;
}*/

.layoutItemLink {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    z-index: 1;
}

.layoutItemMain {
    padding: 24px 20px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.layoutItemType {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.layoutItemDivider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.layoutItemData {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.layoutItemData > div {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.layoutItemData > div:nth-child(1) span::first-letter {
  font-size: 150%;
  font-weight: 600;
  padding-right: 0.25em;
  color: #333;
}

.layoutItemWrap.isSoldout .layoutItemData > div:nth-child(1) span::first-letter {
  color: rgba(255, 255, 255, 0.4);
}

.layoutItemData span {
    font-size: 14px;
}

.layoutItemFeatures {
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.featureParts {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    background: #f5f5f5;
    color: #666;
}

.featureParts-direction {
    background: #f5f5f5;
    color: #666;
}

.featureParts-option01 {
    background: #ECE2D4;
    color: #555;
}

.featureParts-premium {
    /* ohori3 風のゴールド grad に変更 (2026-05-28) */
    background: linear-gradient(45deg, #d5be95 35%, #c19e51);
    color: #fff;
    font-weight: bold;
}

/* premium 13階/14階 フロアバッジ (txt_type1/2 で JS タブ連動切替)
   ohori2 .headBlockInfo_icon_maisonette と同系の黒グラデ + 白太字。
   左右余白を広めに取りラベルの存在感を強調。 */
.featureParts-floor {
    background: linear-gradient(45deg, #4d4d4d 35%, #333333);
    color: #fff;
    font-weight: bold;
    padding: 4px 20px;
}

/* PLAN LIST (一覧カード) の floor バッジは他ラベルと同じ標準 padding・太字なしに。
   詳細 (single-news) は .featuresBlock 側の高 specificity ルールで広め余白・太字を維持。 */
.layoutItemWrap .featureParts-floor {
    padding: 4px 12px;
    font-weight: normal;
}

/* hover 時はカード背景が暗色(#4c4948)になり floor バッジ(黒系)が埋もれるため、
   背景を透過し白い枠線(box-shadow=サイズ不変)のアウトライン表示にして視認性を確保。 */
.layoutItemWrap:hover .featureParts-floor {
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* flex 改行用: floor バッジ(13階/最上階14階)を専用の行へ落とす(2つは同じ行に並ぶ) */
.layoutItemWrap .layoutItemFeatures .featureBreak {
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}

/* featuresBlock 内 (single-news ページ) では style.css の 3-class セレクタ
   `.featuresBlock .layoutItemFeatures .featureParts` (padding 6px 12px / font-weight 500)
   が specificity で勝つため、同じ 3-class で上書き。
   floor + premium 両方を bold 化、floor は左右余白拡張。 */
.featuresBlock .layoutItemFeatures .featureParts-floor {
    background: linear-gradient(45deg, #4d4d4d 35%, #333333);
    color: #fff;
    font-weight: bold;
    padding: 6px 24px;
}
.featuresBlock .layoutItemFeatures .featureParts-premium {
    background: linear-gradient(45deg, #d5be95 35%, #c19e51);
    color: #fff;
    font-weight: bold;
}

.layoutItemViewMore {
    padding: 16px 20px;
    text-align: right;
    margin-top: auto;
}

.layoutItemViewMore span {
    font-size: 13px;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.layoutItemWrap:hover .layoutItemViewMore span {
    color: #fff;
}

@media (max-width: 767px) {
    .layoutList_inner_v02 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .layoutItemMain {
        padding: 20px 16px 16px;
    }

    .layoutItemType {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .layoutList_inner_v02 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* TB (768-1024px): plan 一覧を 2 列 */
@media (min-width: 768px) and (max-width: 1024px) {
    .layoutList_inner_v02 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.buttonLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 12px 0;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  line-height: 2;
  background-color: var(--colors-white);
  border: 1px solid #4c4948;
  color: #4c4948;
  font-size: 16px;
  width: 520px;
}

.buttonLink::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 0;
   height: 100%;
   background-color: var(--c-main); /* hover fill → #221815 (旧 #4c4948) */
   transition: width .35s cubic-bezier(0.65, 0.05, 0.36, 1);
   z-index: -1;
}

.buttonLink:hover::before {
   width: 100%;
 }

.buttonLinkContent {
   display: flex;
   align-items: center;
   position: relative;
   z-index: 2;
   transition: color 0.2s ease 0.2s;
}

 .buttonLink:hover .buttonLinkContent {
   color: white;
 }

.buttonLinkContent .arrowTxt {
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arrowTxt svg {
    display: block;
    width: 24px;
    height: 24px;
}

.arrowTxt.arrowTxt-l svg {
  width: 28px;
}

.buttonLinkContent .arrowTxt svg path {
    stroke: #4c4948;
    transition: stroke 0.8s ease;
}

.buttonLink:hover .arrowTxt svg path {
    stroke: #fff;
}

.layoutButton .buttonLinkContent .arrowTxt {
    top: 0px;
}

@media screen and (max-width: 767px) {
  .buttonLink {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.viewMoreLink01 {
    display: flex;
    align-items: flex-end;
    position: relative;
    flex-direction: column;
    gap: 24px;
}

.viewMoreLink01 .linkTxt {
    display: flex;
    align-items: center;
}

.viewMoreLink01 .arrowTxt {
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arrowTxt.arrowTxt-type1 svg,
.arrowTxt.arrowTxt-type2 svg  {
    width: 28px;
    height: 28px;
}

.arrowTxt.arrowTxt-type1 svg circle {
    fill: rgba(255, 255, 255, 0.8);
}

.arrowTxt.arrowTxt-type1 svg path {
    stroke: #555;
}

.arrowTxt.arrowTxt-type2 svg circle {
    fill: #555;
}

.arrowTxt.arrowTxt-type2 svg path {
    stroke: rgba(255, 255, 255, 0.8);
}

.viewMoreLink01 .linkBorder {
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--colors-white);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.viewMoreLink01:hover .linkBorder {
    clip-path: inset(0 0 0 100%);
}

.viewMoreLink01:hover .linkTxt {
    opacity: 0.7;
}

.layoutItemWrap .arrowTxt {
    display: inline-flex;
    align-items: center;
}

.layoutItemWrap .arrowTxt svg {
    width: 20px;
    height: 20px;
}

.mobile_device a[href^="tel:"] {
  text-decoration: none !important;
}

body.admin-bar {
    margin-top: 0 !important;
}

body.admin-bar .headerWrap {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .headerWrap {
        top: 46px;
    }
}

body.admin-bar .breadcrumb-wrapper {
    padding-top: calc( var(--headerWrapHeight-pc) );
}

@media screen and (max-width: 782px) {
    body.admin-bar .breadcrumb-wrapper {
        padding-top: calc( var(--headerWrapHeight-sp) );
    }
}

/* ============================================================
   ohashi4 TOP 第1パス配色（body.home スコープ / 2026-06-16）
   メイン #221815 ・ サブ #D7D0C9 基調。地色＝サブ／文字基調＝メイン。
   白セクション(bgColorWhite)・画像上の白文字(colorWhite)・CVボタン黄色 は維持。
   ※第1パス＝地色と文字トーンのみ。セクション別の作り込み(濃色帯/アクセント等)は確認後に追補。
   トークンは colors.css（単一管理ソース）。色変更は colors.css のみ編集すれば連動。
   ============================================================ */
body.home { background-color: var(--c-bg); color: var(--c-text); }
body.home .clrBlack02,
body.home .colorBlack { color: var(--c-text) !important; }
body.home .clrMainGray { color: var(--c-text-muted) !important; }
/* 白/寒色グレー面 → 地色(サブ)に統一。白で残したい箇所は後で個別に戻す。 */
body.home .postContentRow { background-color: var(--c-bg) !important; }   /* INFORMATION等の白面 */
body.home .topPickUpRoom,
body.home .topPickupHalfWrap { background-color: var(--c-bg) !important; } /* ROOM PLAN/半セクションの寒色グレー */

/* ---- ヘッダー/フッター/ドロワー chrome 配色 + 物件名(仮称)サイズ（2026-06-16 TOPレビュー反映・全ページ共通chrome） ---- */
.headerWrap { background-color: var(--c-bg) !important; }                  /* ヘッダー背景 白→greige */
.drawer-menu { background-color: var(--c-bg) !important; }                 /* ドロワー背景 白→greige */
.headerMenuArea .menuBox { background-color: var(--c-main) !important; }   /* MENUボタン →濃茶(メイン) */
.headerMenuArea .menuBox .menuButton { background-color: rgba(255,255,255,0.2) !important; }  /* 3点リーダーの丸: 旧グレー#525252→箱(暖色)に馴染む半透明白。白ドットの視認性維持 (2026-06-19) */
.footerPrBanner { background-color: var(--c-bg-light) !important; }        /* 4点バナー帯 →白 */
body.home #footer { background-color: var(--c-bg-light) !important; }      /* バナー〜暗フッター間のグレージュ→白 (#footer無背景でbody greigeが透ける) */
body.home .topLayoutSliderContainer::before,
body.home .topLayoutSliderContainer::after { background-color: var(--c-bg) !important; } /* 間取りカルーセル両サイド(20px擬似要素)の寒色グレー→地色 */
/* 物件名(仮称)サイズは各テンプレに inline 直書き(!important)で確実適用（fs utility が module.css で!important のためCSS上書きが噛み合わない） */

/* PREMIUM FLOOR セクション(ROOM PLAN下)「詳しく見る」: hover フィル #D7D0C9 + 暗色文字/矢印 */
.premiumDetailBtn::before { background-color: var(--c-sub) !important; }
.premiumDetailBtn:hover .buttonLinkContent { color: var(--c-main) !important; }
.premiumDetailBtn:hover .arrowTxt svg path { stroke: var(--c-main) !important; }

/* PREMIUM FLOOR セクション: 背景黒(メイン)・文字白・ラベル横下線削除・ラベル拡大（2026-06-17 レビュー反映） */
.topPremiumArea { background-color: var(--c-main) !important; }                           /* 背景: 濃カラー #331c0b (2026-06-19 #000→キーカラー濃) */
.topPremiumArea .topCommonAreaContents p { color: #ffffff !important; }
.topPremiumArea > div:nth-child(2) p:nth-child(1)::after { display: none !important; }   /* ラベル横の下線削除 */
.topPremiumArea .topCommonAreaContents p:nth-child(1) { font-size: 40px !important; }     /* PREMIUM FLOOR 拡大 */
/* 詳しく見るボタン: inline-flex の左寄せを block 化して左右中央配置 */
.topPremiumArea .premiumDetailBtn { display: flex !important; margin-left: auto !important; margin-right: auto !important; }
/* PC(desktop)のみ 縦幅 480→540px (2026-06-25。TB 768-1024 は縦積みで height:inherit / SP は max-width:767 のため非適用。min-width:1025 で desktop 限定) */
@media screen and (min-width: 1025px) {
    .topPremiumArea { height: 540px; }
}
/* TB (768-1024): SP 同様に縦配置 + 文字縮小 + 文字セクション上下余白 (base の column 切替は max-width:767 のため TB 帯を補完) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .topPremiumArea { flex-direction: column; gap: 32px; height: inherit; padding-bottom: 32px; }
  .topPremiumArea > div:nth-child(1),
  .topPremiumArea > div:nth-child(2) { width: 100%; }
  .topPremiumArea .topCommonAreaContents { padding-top: 48px !important; padding-bottom: 48px !important; padding-right: 0 !important; }  /* pr80 を解除し詳しく見るボタンを中央化 */
  .topPremiumArea .topCommonAreaContents p:nth-child(1) { font-size: 26px !important; }   /* PREMIUM FLOOR ラベル TB 縮小 (40→26) */
  .topPremiumArea .topCommonAreaContents p:nth-child(2) { font-size: 20px !important; }   /* 見出し TB 縮小 (28→20) */
}
@media screen and (max-width: 768px) {
  .topPremiumArea .topCommonAreaContents { padding-top: 40px !important; padding-bottom: 40px !important; }  /* 文字セクション SP 上下余白 */
  .topPremiumArea .topCommonAreaContents p:nth-child(1) { font-size: 22px !important; }   /* PREMIUM FLOOR ラベル SP 縮小 (28→22) */
  .topPremiumArea .topCommonAreaContents p:nth-child(2) { font-size: 18px !important; }   /* 見出し SP 縮小 (20→18) */
}
/* ドロワー: 資料請求のみ→中央配置 / 固定CVバー: 単独ボタンを幅いっぱい */
.drawer-menu .dButtonArea { display: flex !important; justify-content: center !important; }
.cvArea .cvArea_item { flex: 1; }

/* 上へ戻るボタン(return_top): 背景 #221815/hover #D7D0C9、矢印アイコンは逆(#D7D0C9/hover #221815) */
#return_top a { background-color: var(--c-main) !important; }
#return_top a:hover { background-color: var(--c-sub) !important; }
#return_top a:before { color: var(--c-sub) !important; }
#return_top a:hover:before { color: var(--c-main) !important; }

/* TOP CONCEPT/LOCATION/DESIGN: 日本語キャッチ縦書き(段差) + View More ボタン(左→右ワイプ) (2026-06-17) */
.topPickupFullText .topCatchVertical {
    display: flex;
    flex-direction: row-reverse;        /* 縦書きの読み順=右→左に列を並べる */
    justify-content: center;
    gap: 0.9em;                         /* 列間(行間) */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;                    /* 大きく(旧24) */
    font-weight: 400;                   /* 明朝の細さで上品に */
    line-height: 1;
}
.topPickupFullText .topCatchVertical .cvCol {
    writing-mode: vertical-rl;          /* 各列を縦書き */
    letter-spacing: 0.45em;             /* 字間 */
}
.topPickupFullText .topCatchVertical .cvStep {
    margin-top: 2.2em;                  /* 段差: 2列目を約1.5文字下げる */
}
@media screen and (max-width: 767px) {
    .topPickupFullText .topCatchVertical { font-size: 22px; gap: 0.8em; }
    .topPickupFullText .topCatchVertical .cvStep { margin-top: 2em; }
}

.topViewMoreBtn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 260px;
    box-sizing: border-box;
    padding: 16px 32px;
    border: 1px solid #fff;             /* border は常時白 */
    background-color: #000;             /* 既定: 背景黒 */
    color: #fff;                        /* 既定: 文字白 */
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    transition: color .25s ease .15s;   /* 文字色はワイプ通過に合わせ遅延反転 */
}
.topViewMoreBtn::before {               /* 白背景を左→右へワイプ */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width .35s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: -1;
}
.topViewMoreBtn:hover::before { width: 100%; }
.topViewMoreBtn:hover { color: #000; }                  /* hover: 文字/矢印(currentColor)を黒へ */
.topViewMoreBtn .btnTxt,
.topViewMoreBtn .btnArrow { position: relative; z-index: 2; }
.topViewMoreBtn .btnArrow { display: inline-flex; align-items: center; }
.topViewMoreBtn .btnArrow svg { display: block; }       /* stroke=currentColor で色追従 */

/* ===== location ティザー仮配置 (2026-06-18) ===== */
/* 背景ユーティリティ (semantic token) */
.bgGreige { background-color: var(--c-sub); }           /* グレージュ #D7D0C9 */
.bgBrown  { background-color: var(--c-main); }          /* 濃ブラウン #221815 */
/* 濃色面エリア(再利用・サイト共通): コンテンツ全体を包む div/section に当てる。
   背景=メイン濃色 / 内側 .postContentRow の白(--colors-white)を透過化し包みの色を連続させ白を出さない / テキスト明色 */
.bgMainArea { background-color: var(--c-main); }
.bgMainArea .postContentRow { background-color: transparent; }
.bgMainArea, .bgMainArea p, .bgMainArea span, .bgMainArea h2, .bgMainArea h3, .bgMainArea figcaption { color: var(--c-on-dark); }
/* 薄色面エリア(bgMainAreaの対): 背景=サブ薄色 / 子.postContentRowの白を透過 / テキスト=本文濃色を明示。包むdiv/sectionに当てる */
.bgSubArea { background-color: var(--c-sub); }
.bgSubArea .postContentRow { background-color: transparent; }
.bgSubArea, .bgSubArea p, .bgSubArea span, .bgSubArea h2, .bgSubArea h3, .bgSubArea figcaption { color: var(--c-text); }
/* 3点横並び画像: PC～SP共通・アスペクト揃えて高さ統一 */
.locTeaser3col { display: flex; gap: 16px; }
.locTeaser3col_item { flex: 1; margin: 0; }
.locTeaser3col_item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
@media screen and (max-width: 767px) { .locTeaser3col { gap: 8px; } }
/* 文章ブロック②: PC=左コピー/右画像 1:1, TB・SP=画像→文章(縦) */
.locCopyImg_img img { width: 100%; display: block; }
.locCopyImg_txt { margin-top: 32px; }
@media screen and (min-width: 1025px) {
    .locCopyImg { display: flex; flex-direction: row-reverse; align-items: center; gap: 56px; }
    .locCopyImg_img, .locCopyImg_txt { width: 50%; }
    .locCopyImg_txt { margin-top: 0; }
}
/* LIFE INFORMATION 見出し囲い線 (文字幅+余白) */
.lifeInfoHeadBox { display: inline-block; border: 1px solid var(--c-main); padding: 18px 48px; font-size: 26px; line-height: 1; letter-spacing: 0.12em; }
@media screen and (max-width: 767px) { .lifeInfoHeadBox { padding: 14px 28px; font-size: 18px; } }
/* 交通図2 4カラム: PC=4 / TB=2+2 / SP=縦 */
.lifeInfo4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; }
.lifeInfo4col_item img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
@media screen and (min-width: 768px) and (max-width: 1024px) { .lifeInfo4col { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 767px) { .lifeInfo4col { grid-template-columns: 1fr; gap: 24px; } }

/* design ページ本体は既存utility + body.page-id-79(style.css)で構成。専用class撤去 (2026-06-23) */

/* ===== 下層ページ FVヘッダー: FV全幅 + 下部中央タイトル + グレーグラデ (2026-06-23) ===== */
.lowerFvHeader {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);   /* ブラウザ幅一杯(full-bleed)・#container overflow:clipで横スクロール無し */
    max-width: 100vw;
    line-height: 0;
}
.lowerFvHeader > picture { display: block; }
.lowerFvHeader img {
    display: block;
    width: 100%;
    margin: 0;
    aspect-ratio: 2 / 1;           /* PC=2:1(統一) */
    max-height: 760px;             /* 大画面で大きくなりすぎ防止 */
    object-fit: cover;
}
.lowerFvTitle {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
    padding: 110px 24px 44px;      /* 上下に余白(洗練感)・上を広く */
    /* グレーグラデ: 上=透明 → 下=濃い */
    background: linear-gradient(to bottom, rgba(45,45,45,0) 0%, rgba(38,38,38,0.5) 100%);
}
.lowerFvTitle h2, .lowerFvTitle h3, .lowerFvTitle span { color: #ffffff; }
@media screen and (max-width: 767px) {
    .lowerFvHeader img { aspect-ratio: 3 / 2; max-height: none; }   /* SP=3:2(PCと離れすぎない) */
    .lowerFvTitle { padding: 72px 16px 24px; }
}

/* ============================================================
   段階公開 (2026-07-10/17/24): 未公開コンテンツの View More を
   Coming Soon 表記(span・クリック不可)に切替 (front-page.php)。
   ページ公開ステータスに連動し、公開すると自動で通常表示に戻る */
.is-comingSoon {
    opacity: .55;
    pointer-events: none;
    cursor: default;
}
