@charset "UTF-8";

body *{
  font-family: "Noto Serif JP", serif;
}


/* -----------------------------
   共通：最初は透明
----------------------------- */
.fade,
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade { /* fade（その場でopacityだけ） */
  transform: none;
}
.fade-up { /* fade-up（下から上へ） */
  transform: translateY(30px);
}
.fade-left { /* fade-left（左から） */
  transform: translateX(-40px);
}
.fade-right { /* fade-right（右から） */
  transform: translateX(40px);
}
/* delayクラス（秒数はお好みで増やせる） */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* 表示されたら共通で戻す */
.fade-in {
  opacity: 1;
  transform: translate(0, 0);
}
/* fadeだけは transform を完全に無効化 */
.fade.fade-in {
  transform: none;
}

/*---------------------------
LINEUP（実績一覧）物件詳細
---------------------------*/

.sec-BukkenContents img {
  vertical-align: bottom;
}


/* 20251001 new lineup
---------------------------------------------- */
/* ----------  header ---------- */
header.l-header02 {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  margin: 0;
  padding: 15px 3% 0;
  height: 120px;
}

header.l-header02 .logo_utility_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header02 .l-header__branding {
  width: 15%;
}

.l-header02 .l-header__logo {
  width: 210px;
  max-width: 210px;
  font-size: unset;
  margin: 0 0 0 auto;
}

.l-header02 .l-header__utility {
  width: 80%;
}

.l-header02 .l-gNav {}

.l-header02 .l-gNav__inner {}

.l-header02 .l-gNav__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.l-header02 .l-gNav__link .l-gNav__item {
  margin: 0.5em 0 0.5em 2em;
  letter-spacing: 0.1em;
  font-size: 0.8625em;
}

.l-header02 .l-gNav__link .l-gNav__item a {
  position: relative;
  color: #000000;
  display: inline-block;
  padding-left: 15px;
  transition: .3s;
}

.l-header02 .l-gNav__link .l-gNav__item a::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000000;
  border-right: solid 1px #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: .3s;
}
.l-header02 .l-gNav__link .l-gNav__item a:hover {
  opacity: .6;
}
.l-header02 .l-gNav__link .l-gNav__item a:hover::before {
  left: 3px;
}

.l-header02 .l-gNav__link .l-gNav__item2 a {
  display: block;
  box-sizing: border-box;
  padding: 0.8em 1em;
  min-width: 150px;
  transition: .3s;
}
.l-header02 .l-gNav__link .l-gNav__web {
  margin: 0 0 0 0.75em;
  margin: 0 0 0 2em
}
.l-header02 .l-gNav__link .l-gNav__search {
  margin: 0 0 0 2em;
}
.l-header02 .l-gNav__link .l-gNav__web a {
  background: #515F82;
  background: linear-gradient(90deg, rgba(81, 95, 130, 1) 0%, rgba(60, 75, 115, 1) 100%);
}
.l-header02 .l-gNav__link .l-gNav__search a {
  background: #9F967F;
  background: linear-gradient(90deg, rgba(159, 150, 127, 1) 0%, rgba(133, 121, 103, 1) 100%);
}
.l-header02 .l-gNav__link .l-gNav__item2 a:hover {
  opacity: .6;
}
.l-header02 .l-gNav__link .l-gNav__item2 span {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.825em;
}
.l-header02 .l-gNav__link .l-gNav__item2 span::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  margin-right: 0.5em;
}
.l-header02 .l-gNav__link .l-gNav__web span::before {
  background: url(../img/fix_mail.svg) no-repeat center center;
  background-size: contain;
}
.l-header02 .l-gNav__link .l-gNav__search span::before {
  background: url(../img/ic_search.svg) no-repeat center center;
  background-size: contain;
}

.l-header02 .l-gNav__bukkenNav {
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);

  width: 70%;
}

.l-header02 .l-gNav__bukkenNav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-header02 .l-gNav__bukkenNav ul li {
  position: relative;
}
.l-header02 .l-gNav__bukkenNav ul li:first-child::before,
.l-header02 .l-gNav__bukkenNav ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #d7d7d7;
  position: absolute;
  bottom: 0.5em;
  right: 0;
}
.l-header02 .l-gNav__bukkenNav ul li:first-child::before {
  left: 0;
}

.l-header02 .l-gNav__bukkenNav ul li a {
  position: relative;
  display: inline-block;
  padding: 0 1.8em 0;
  /*font-size: 0.825em;*/
  font-size: 1em;
  letter-spacing: 0.2em;
}

.l-header02 .l-gNav__bukkenNav ul li a span {
  position: relative;
  display: inline-block;
  padding: 0.5em 0;
  font-family: 'Cinzel', serif;
}

/* currentライン　ページ毎 */
#index .l-header02 .l-gNav__bukkenNav ul li.nav-index a span::after,
#location .l-header02 .l-gNav__bukkenNav ul li.nav-location a span::after,
#design .l-header02 .l-gNav__bukkenNav ul li.nav-design a span::after,
#quality .l-header02 .l-gNav__bukkenNav ul li.nav-quality a span::after,
#plan .l-header02 .l-gNav__bukkenNav ul li.nav-plan a span::after,
#brand .l-header02 .l-gNav__bukkenNav ul li.nav-brand a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 3px;
  background: #315066;
  /* 下線の色 */
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 1;
}

/* currentライン　ホバー時 */
.l-header02 .l-gNav__bukkenNav ul li a span {
  position: relative; /* ::after の位置基準にするため */
  display: inline-block;
}

.l-header02 .l-gNav__bukkenNav ul li a span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 20px;
  height: 3px;
  background: #315066;
  transition: transform 0.3s ease;
  opacity: 0;
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

.l-header02 .l-gNav__bukkenNav ul li a:hover span::after {
  bottom: 0;
  opacity: 1;
}

/* .l-header02 .l-gNav__bukkenNav ul li a:hover span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  width: 100%;
  height: 3px;
  background: #808080;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.l-header02 .l-gNav__bukkenNav ul li a:hover span::after,
.l-header02 .l-gNav__bukkenNav ul li a.curr span::after {
  width: 100%;
} */




/* ----------  contents ---------- */
.l-main img {
  width: 100%;
  vertical-align: middle;
}
/* 下層共通 */
.breadcrumbs {
  max-width: 1100px;
}



.attention {
  margin: 50px auto;
}
.attention li {
  font-size: 12px;
  color: #000000;
  text-indent: -1em;
  line-height: 1.3;
  padding-left: 1em;
}
.attention li:nth-of-type(n+2) {
  margin-top: 5px;
}








.sec-Contact {
  /* margin-bottom: 50px;
  text-align: center; */
  padding: 40px 0;
  border-top: 1px solid #808080;
  text-align: center;
  letter-spacing: 0.03em;
}
.sec-Contact h4 {
  font-size: 1em;
  font-weight: 400;
  color: #000000;
}
.sec-Contact .tel {
  /* font-size: 1.4375em; */
  font-size: 2.4375em;
  font-weight: 400;
  line-height: 0.8;
  /* margin: 1.15em 0; */
  margin: 0.5em 0;
}
.sec-Contact .tel a {
  font-size: 1.4em;
  pointer-events: none;
}
.sec-Contact .tel span {
  font-size: 35%;
  font-weight: 400;
}
.sec-Contact .saw {
  font-size: 0.8em;
  line-height: 1.5;
}

/* company */
.sec-Company {
  padding: 0 0 40px;
  border-bottom: 1px solid #808080;
  margin: 0 auto;
}
.sec-Company .resident_logo {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  width: 100%;
  margin: 0 auto 1%;
  gap: 1em 5em;
}
.sec-Company .resident_logo div.logo{
  font-size: 12px;
}
.sec-Company .resident_logo div.logo p{
  display: flex;
  flex-direction: column;
  align-items: center;
  /*gap: 16px;*/
  gap: 8px;
}
.sec-Company .resident_logo div.logo a{
  font-size: 16px;
  margin: 0;
}
.sec-Company .resident_logo div.txt{
  display: flex;
  justify-content:flex-start;
  gap: 3em;
}
.sec-Company .resident_logo div.txt dl dt{
  width:6em;
}
.sec-Company .resident_logo div.txt dl dd{
}
.sec-Company .jr_logo {
  max-width: 300px;
  width: 100%;
}
.sec-Company ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:20px 40px;
}
.sec-Company ul li a {
  transition: 0.3;
}
.sec-Company ul li:nth-child(1) a {
  margin-left: 0.5em;
}
.sec-Company ul li a:hover {
  opacity: 0.5;
}
.sec-Company ul li:nth-child(1) img {
  max-width: 100%;
  width: 216px;
}
.sec-Company ul li:nth-child(2) img {
  max-width: 100%;
  width: 288px;
}
.sec-Company ul li:nth-child(3) img {
  max-width: 100%;
  width: 250px;
}
.sec-Company p {
  color: #000;
  font-size: 13px;
  text-align: center;
}
.sec-Company ul li p {
  margin-bottom: 16px;
}

#pageTop {
  bottom: 110px;
}




/* ----------  footer ---------- */
/* footer.l-footer {
width: 100%;
background: #fff;
} */
.l-footer .l-footer__top02 {
  /*  padding: 10% 0 5%;*/
  padding: 4% 0;
}

.l-footer .l-footer__top02 .l-footer__logo-mjr {
  width: 164px;
  /*  margin: 0 auto 5%;*/
  margin: 0 auto 2.5%;
}

.l-footer .l-footer__top02 .l-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.l-footer .l-footer__top02 .l-footer__nav .l-footer__navItem {
  margin: 0.5em 1.5em;
}

.l-footer .l-footer__top02 .l-footer__nav .l-footer__navItem a {
  font-size: 0.875em;
  color: #828487;
  letter-spacing: 0.1em;
  transition: .3s;
}

.l-footer .l-footer__top02 .l-footer__nav .l-footer__navItem a:hover {
  opacity: .5;
}




/*---------------------------
PC・TABのみ
---------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {}

/*---------------------------
Tab
---------------------------*/
@media screen and (max-width: 1024px) {}

/*---------------------------
sp
---------------------------*/
@media only screen and (max-width: 768px) {


  /* 20250709 new lineup
  ---------------------------------------------- */
  /* ----------  header ---------- */
  header.l-header02 {
    padding: 0;
    border-bottom: none;
    height: 60px;
    background: transparent;
  }
  header.l-header02::before {
    content: "";
    display: block;
    width: 100%;
    height: 140px;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    position: fixed;
    top: 0;
    left: 0;
  }

  .l-header02 .l-header__branding {
    /*background: #fff;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.75% 10% 2.65% 5%;
    height: 60px;
    /*border-bottom: 2px solid #d9dbdd;*/
    z-index: 10001;
  }

  .l-header02 .l-header__logo {
    width: 185px;
    max-width: 185px;
    margin: 0;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
  }

  .l-header02 .l-header__utility {
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    background: #fff;
    z-index: 10000;
    overflow: scroll;
    transition: .5s;
    padding-top: 60px;
  }

  .l-header02 .l-gNav {}

  .l-header02 .l-gNav__inner {}

  .l-header02 .l-gNav__bukkenNav__sp {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
  }

  .l-header02 .l-gNav__bukkenNav__sp li {
    margin: 0;
    padding: 1.25em;
    font-size: 1.0625em;
    width: calc((100% - 1px) / 2);
    text-align: center;
    border-bottom: 1px solid #ddd;
  }
  .l-header02 .l-gNav__bukkenNav__sp li:nth-child(odd) {
    border-right: 1px solid #ddd;
  }
  .l-header02 .l-gNav__bukkenNav__sp li span {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
  }

  .l-header02 .l-gNav__link {
    flex-direction: column;
    /* border-bottom: 1px solid #d9dbdd; */
    width: 88%;
    margin: 0 auto;
    padding-bottom: 2em;
    display: none;
  }

  .l-header02 .l-gNav__link .l-gNav__item {
    margin: 0 0 1em 0;
    padding: 0.625em;
    font-size: 0.8625em;
    width: 100%;
    border: 2px solid #808080;
  }

  .l-header02 .l-gNav__link .l-gNav__item a::after {
    content: none;
  }

  .l-header02 .l-gNav__inq__sp {
    padding: 0 0 10%;
  }

  .l-header02 .l-gNav__inq__sp ul li {
    border-bottom: 1px solid #fff;
  }
  .l-header02 .l-gNav__inq__sp ul li a {
    width: 100%;
    color: #fff;
    padding: 1.5em 2.5em;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-header02 .l-gNav__inq__sp ul li .search {
    background: #9F967F;
    background: linear-gradient(90deg, rgba(159, 150, 127, 1) 0%, rgba(133, 121, 103, 1) 100%);
  }
  .l-header02 .l-gNav__inq__sp ul li .search::before {
    content: '';
    display: inline-block;
    width: 1.7em;
    height: 1.5em;
    background: url('../img/ic_search.svg') center center no-repeat;
    background-size: contain;
    margin-right: 0.8em;
    vertical-align: middle;
  }

  .l-header02 .l-gNav__inq__sp ul li .mail,
  .l-header02 .l-gNav__inq__sp ul li .tel {
    background: #515F82;
    background: linear-gradient(90deg, rgba(81, 95, 130, 1) 0%, rgba(60, 75, 115, 1) 100%);
  }
  .l-header02 .l-gNav__inq__sp ul li .mail::before {
    content: '';
    display: inline-block;
    width: 2.0em;
    height: 2.0em;
    background: url('../img/fix_mail.svg') center center no-repeat;
    background-size: contain;
    margin-right: 0.8em;
    vertical-align: middle;
  }
  .l-header02 .l-gNav__inq__sp ul li .tel::before {
    content: '';
    display: inline-block;
    width: 1.6em;
    height: 2.0em;
    background: url('../img/fix_tel.svg') center center no-repeat;
    background-size: contain;
    margin-right: 0.8em;
    vertical-align: middle;
  }


  .toggle_btn {
    display: block;
    position: fixed;
    top: 23px;
    right: 26px;
    width: 28px;
    height: 14px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 28px;
    height: 1px;
    background-color: #877b69;
    border-radius: 4px;
    transition: all .5s;
  }

  .toggle_btn span:nth-child(1) {
    top: 0px;
  }

  .toggle_btn span:nth-child(2) {
    top: 6px;
    transition: all .25s;
  }

  .toggle_btn span:nth-child(3) {
    bottom: 0px;
  }

  .toggle_btn.active span:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(-335deg);
    transform: translateY(6.5px) rotate(-335deg);
  }

  .toggle_btn.active span:nth-child(2) {
    opacity: 0;
    left: 28px;
  }

  .toggle_btn.active span:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(335deg);
    transform: translateY(-6.5px) rotate(335deg);
  }

  .l-header02 .l-header__utility.active {
    top: 0;
  }



  /* ----------  contents ---------- */





  .sec-Contact {
    width: 90%;
    margin: 55px auto 0;
    padding: 40px 0;
  }
  .sec-Contact h4 {
    font-size: 0.75em;
  }

  .sec-Contact .tel {
    font-size: 1.3em;
    line-height: 1.0;
  }

  .sec-Contact .tel a {
    font-size: 2.0em;
    pointer-events: auto;
  }

  .sec-Contact .tel span {
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
    line-height: 1.25;
  }

  .sec-Contact .saw {
    font-size: 0.7em;
    line-height: 1.5;
  }

  .sec-Contact ul {
    font-size: 0.875em;
    line-height: 1.636363636363636;
  }

  .sec-Contact ul {
    font-size: 0.6875em;
    line-height: 1.636363636363636;
  }

  /* company */
  .sec-Company {
    margin: 0 auto;
    padding: 0 0 40px;
  }
  .sec-Company ul {
    flex-direction: column;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    gap: 10px 40px;
  }
  .sec-Company ul li {
    margin: 0 auto;
  }
  .sec-Company ul li p {
    margin-bottom: 6px;
  }
  .sec-Company .resident_logo {
    flex-direction: column;
    font-size: 11px;
    line-height: 1.3;
    margin: 0 auto;
    width: 100%;
  }
  .sec-Company ul li:nth-child(1) p {
    margin-bottom: 0;
  }
  .sec-Company ul li:nth-child(1) a {
    margin-left: 0;
    margin-top: 12px;
  }
  .sec-Company ul li:nth-child(1) img {
    width: 266px;
  }
  .sec-Company .resident_logo div.logo{
    width:100%;
    font-size: 11px;
    margin-bottom: 10px;
  }
  .sec-Company .resident_logo div.logo p {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .sec-Company .resident_logo div.logo a{
    width: 100%;
    margin: 0;
  }
  .sec-Company .resident_logo div.txt{
    display: block;
    text-align: center;
  }
  .sec-Company .resident_logo div.txt dl{
    margin-bottom: 0.5em;
  }
  .sec-Company .resident_logo div.txt dl dt {
    width: 100%;
  }
  .sec-Company .jr_logo {
    max-width: 100%;
    width: 54%;
  }
  .sec-Company p {
    color: #000;
    font-size: 12px;
    text-align: center;
  }



  footer {
    margin-bottom: 60px;
  }

  .fixed-Menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    z-index: 10;
  }

  .fixed-Menu ul {
    display: flex;
    border-top: 1px solid #fff;
    font-size: 0.625em;
  }

  .fixed-Menu ul li {
    width: 50%;
  }

  .fixed-Menu ul li.w33 {
    /*width: 33%;*/
    width: calc((100% - 2px) / 3);
  }

  .fixed-Menu ul li.w100 {
    width: 100%;
  }

  .fixed-Menu ul li.w100 a {
    padding: 1.85em;
  }

  .fixed-Menu ul li:not(:first-child) {
    border-left: 1px solid #fff;
  }

  .fixed-Menu ul li a {
    display: block;
    padding: 1.2em 0em;
    transition: .3s;
    background: #515F82;
    background: linear-gradient(90deg, rgba(81, 95, 130, 1) 0%, rgba(60, 75, 115, 1) 100%);
    color: #fff;
  }
  .fixed-Menu ul li.linkSearch a {
    background: #9F967F;
    background: linear-gradient(90deg, rgba(159, 150, 127, 1) 0%, rgba(133, 121, 103, 1) 100%);
  }

  .fixed-Menu ul li a:hover {
    opacity: .5;
  }

  .fixed-Menu ul li a span {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
  }

  .fixed-Menu ul li a span::before {
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 0.75em;
  }

  .fixed-Menu ul li.linkWeb a span::before {
    background: url(../img/fix_mail.svg) no-repeat center center;
    background-size: contain;
  }

  .fixed-Menu ul li.linkTel a span::before {
    background: url(../img/fix_tel.svg) no-repeat center center;
    background-size: contain;
  }

  .fixed-Menu ul li.linkSearch a span::before {
    background: url(../img/ic_search.svg) no-repeat center center;
    background-size: contain;
  }

  .fixed-Menu p {
    background-color: #181e4e;
    color: #fff;
    font-size: 0.5625em;
    padding: 1em;
    line-height: 1.3;
  }

  .pc--fixed-Menu .pc--linkSearch:hover {
    opacity: .5;
  }

  .fixed-Menu ul li:not(.w100) a span {
    flex-direction: column;
  }

  .fixed-Menu ul li:not(.w100) a span::before {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 0.3em;
  }

  #pageTop {
    bottom: 80px;
  }
}

/*空室検索ボタン非表示用調整*/
.l-header02 .l-gNav__link .l-gNav__web {
  /*margin: 0 0 0 0.75em;*/
  margin: 0 0 0 2em;
}
.l-header02 .l-gNav__link .l-gNav__search {
  margin: 0 0 0 2em;
  display: none;
}
@media only screen and (max-width: 768px) {
  .fixed-Menu ul li.w33 {
    /*width: 33%;*/
    width: calc((100% - 1px) / 2);
  }
  .fixed-Menu ul li.w33:first-child {
    display: none;
  }
  .l-header02 .l-gNav__inq__sp ul li:first-child {
    display: none;
  }

}
  