@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;
}
.headerLogoArea h1+span {
    color: #5C5C5C;
}

.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: 0px;
    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: 0px;
    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;
    transform: scale(1) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000px;
    transform-style: preserve-3d;
    pointer-events: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.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: rgba(0, 0, 0, 0.25);
    background-image: url("../images/top/mv_pr_bg.jpg");
	background-position: 15% center;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.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 (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 (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%);
    }

}

/*
  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 img {
    width: 90%;
    height: auto;
}

.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;
  }

}

/*
  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 {
    background: #C9A961;
    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;
    }
}

.buttonLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  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: #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) );
    }
}
