@charset "UTF-8";

/* 共通 */
.sp {
  display: none;
}

.flex {
  display: flex;
}

.inner {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

/* キャプション */
.cap_txt {
  position: absolute;
  bottom: 5px;
  font-size: 11px;
  line-height: 1.2;
}

.cap_R {
  right: 5px;
}

.cap_L {
  left: 5px;
}

.cap_W {
  color: #fff;
}

.cap_B {
  color: #000;
}

.cap_ShaB {
  text-shadow: 0 0 5px #000;
}

.cap_ShaW {
  text-shadow: 0 0 5px #fff;
}

/* フェード */
.fade01 {
  /*下から上に表示*/
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(60px);
}

.fade_active01 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fade02 {
  /*右から左に表示*/
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(100px);
}

.fade_active02 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fade03 {
  /*左から右に表示*/
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-100px);
}

.fade_active03 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fade04 {
  /*上から下に表示*/
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(-30px);
}

.fade_active04 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 下から上に表示（振り幅大きめ） */
.fade_Box {
  transition: 1s;
  transform: translateY(20px);
  opacity: 0;
}

.fade_Box.animated {
  transform: translateY(0);
  opacity: 1;
}

/* 注釈 */
.notes {
  padding: 0 0 0 1em;
  font-size: 12px;
  box-sizing: border-box;
}

.notes li {
  list-style-type: '※';
  /* line-height: 1.4; */
  line-height: 1.6;
}

.notes li:not(:first-child) {
  padding: 10px 0 0;
}

ul.notes {
  padding: 40px 0 40px 1em;
}

/*予告広告*/
.yokoku {
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  margin: 0 auto 40px;
}

.yokoku dt {
  width: 10%;
  padding: 12px;
  margin: 0 20px 0 0;
  border: 1px solid #b5b5b6;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
}

.yokoku dd {
  line-height: 1.4;
}

/*トップへ戻るボタン*/
#pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  z-index: 100;
}

#pagetop a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, .7);
  box-sizing: border-box;
}

#pagetop a span {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg) translate(-25%, -50%);
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* background-color: #000; */
  z-index: 100;
}

.head_Block {
  justify-content: space-between;
  align-items: center;
  /* padding: 10px 20px; */
  padding: 35px 10px 10px 10px;
  box-sizing: border-box;
}

header h1 {
  display: block;
  /* width: 250px; */
  /* width: 18%; */
  width: 10%;
  /* max-width: 250px; */
  max-width: 200px;
  /* min-width: 180px; */
  min-width: 160px;
  margin: -20px 0 0 30px;
}

header h1 a {
  display: block;
  width: 100%;
}

.nav_Area {
  width: 78%;
  margin-left: 2%;
}

#Gnav {
  width: 78%;
}

#Gnav_List {
  justify-content: flex-end;
  align-items: flex-start;
}

/* #Gnav_List li:not(:first-child) {
  margin-left: 20px;
} */

#Gnav_List a {
  display: block;
  width: 100%;
  padding: 0 12px;
  color: #604c3f;
  text-align: center;
  transition: .3s;
  box-sizing: border-box;
}

#Gnav_List a p {
  display: block;
  width: 100%;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  line-height: 1;
  white-space: nowrap;
  padding: 0 0 5px;
}

#Gnav_List a span {
  display: block;
  width: 100%;
  font-size: 11px;
  font-family: 'Shippori Mincho', serif;
  line-height: 1;
  white-space: nowrap;
  padding: 5px 0 0;
  border-top: 1px solid #604c3f;
}

#Gnav_List a::after {
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  margin: 15px auto 0;
  background: url(../img/common/icon.svg) no-repeat center center;
  background-size: cover;
  opacity: 0;
  transition: .3s;
  animation-name: navIcon;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  visibility: hidden;
}

#Gnav_List a:hover {
  opacity: .6;
}

#Gnav_List a:hover::after {
  opacity: 1;
}

@keyframes navIcon {
  0% {
    opacity: .5;
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: .5;
  }
}

/* ページ削除 */
#Gnav_List li:nth-of-type(8),
#Gnav_List li:nth-of-type(9) {
  display: none;
}

/* 非表示 */
/* #Gnav_List li:nth-child(6) a {
  opacity: .3;
  pointer-events: none;
} */

/* #Gnav_List li:nth-child(6) a::after {
  content: none;
} */

/* カレント */
#indexP #Gnav_List li:nth-child(1) a::after,
#conceptP #Gnav_List li:nth-child(2) a::after,
#locationP #Gnav_List li:nth-child(3) a::after,
#designP #Gnav_List li:nth-child(4) a::after,
#galleryP #Gnav_List li:nth-child(5) a::after,
#planP #Gnav_List li:nth-child(6) a::after,
#qualityP #Gnav_List li:nth-child(7) a::after,
#modelroomP #Gnav_List li:nth-child(8) a::after,
#ldkP #Gnav_List li:nth-child(9) a::after,
#premiumP #Gnav_List li:nth-child(10) a::after,
#brandP #Gnav_List li:nth-child(11) a::after {
  visibility: visible;
}

#sub_Nav {
  width: 22%;
  justify-content: flex-end;
  align-items: stretch;
  /* padding: 0 0 0 30px; */
  padding: 0 0 0 15px;
  box-sizing: border-box;
}

#sub_Nav li {
  /* min-width: 90px; */
  max-width: 90px;
  width: calc((100% - 10px) / 3);
}

#sub_Nav li:not(:first-child) {
  margin-left: 5px;
}

#sub_Nav a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: .3s;
}

#sub_Nav a:hover {
  opacity: .6;
}

.sub_01 {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.sub_01 a {
  display: block;
  height: calc((100% - 5px) / 2);
  padding: 10px 0;
  background-color: #604c3f;
  text-align: center;
  box-sizing: border-box;
}

.sub_01 a:first-child {
  margin-bottom: 5px;
}

.sub_01 a p {
  display: block;
  width: 100%;
  padding: 0 0 5px;
  font-size: 11px;
  font-family: 'Lato', sans-serif;
  line-height: 1;
}

.sub_01 a span {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 1;
}

.sub_02 a {
  width: 100%;
  padding: 13px 0;
  background-color: #231815;
  /* background-image: linear-gradient(to right bottom, #870000, #690000); */
  text-align: center;
  box-sizing: border-box;
}

.sub_03 a {
  width: 100%;
  padding: 13px 0;
  background-image: linear-gradient(to right bottom, #dcba88, #c69056);
  text-align: center;
  box-sizing: border-box;
}

.sub_02 a span,
.sub_03 a span {
  display: block;
  height: 25px;
  margin: 0 auto 5px;
}

.sub_02 a span img,
.sub_03 a span img {
  width: auto;
  height: 100%;
}

.sub_02 a p,
.sub_03 a p {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-align: center;
}

/* .sub_03 a,
.f_btn02>a {
  pointer-events: none;
  opacity: .4;
} */

#sp_Menu {
  display: none;
}

/* NEW */

#Gnav_List li:nth-of-type(2) a,
#Gnav_List li:nth-of-type(3) a,
#Gnav_List li:nth-of-type(4) a,
#Gnav_List li:nth-of-type(5) a,
#Gnav_List li:nth-of-type(6) a,
#Gnav_List li:nth-of-type(7) a,
#Gnav_List li:nth-of-type(8) a,
#Gnav_List li:nth-of-type(9) a {
  position: relative;
}

/* #Gnav_List li:nth-of-type(9) a::before{
  display: block;
  content: "NEW";
  width: 80%;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #6F0000;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 0;
} */

/* footer */
footer {
  width: 100%;
  padding: 50px 0 10px;
  background-color: #000;
}

.contact_Area {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.contact_Area a {
  display: block;
  max-width: 400px;
  width: 80%;
  margin: 20px auto 0;
}

.company_List {
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  color: #fff;
}

.company_List li {
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
}

.company_List li:first-child {
  margin-right: 40px;
}

.company_List li p {
  padding: 0 10px 0 0;
}

.company_List li a {
  display: block;
}

.company_List li:first-child a {
  width: 180px;
}

.company_List li:last-child a {
  width: 220px;
}

.copyright {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

#foot_spMenu {
  display: none;
}

/* ブランシエラリンクバナー設置 */
.f_itiran a {
  display: block;
  text-align: center;
  margin: 40px auto 0;
}

.f_itiran a img {
  max-width: 165px;
  max-height: 50px;
  min-width: 165px;
  min-height: 50px;
}

.cv_btn {
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 50px 0;
}

.req_Btn {
  display: block;
  max-width: 340px;
  width: 80%;
  padding: 20px;
  margin: 0 20px 0 0;
  color: #fff;
  background-color: #870000;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: .3s;
}

.req_Btn:hover {
  opacity: .6;
}

.res_Btn {
  display: block;
  max-width: 340px;
  width: 80%;
  padding: 20px;
  margin: 0 0 0 20px;
  color: #fff;
  background-color: #c69056;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: .3s;
}

.res_Btn:hover {
  opacity: .6;
}

/* ブランシエラ大浦バナー追加 */
.oura-bnr {
  margin: 30px auto;
}

.oura-bnr a {
  display: block;
  width: 440px;
  max-width: 90%;
  margin: 0 auto;
  transition: all .5s;
}

.oura-bnr a:hover {
  opacity: 0.7;
}

@media (max-width: 1400px) {
  #Gnav_List a {
    padding: 0 5px;
  }

  #Gnav_List a p {
    font-size: 13px;
  }

  .sub_01 a {
    padding: 10px 5px;
  }

  .sub_01 a span {
    font-size: 10px;
  }
}

@media (max-width: 1300px) {
  header h1 {
    width: 140px;
    max-width: 140px;
    min-width: 140px;
  }

  #sub_Nav {
    padding: 0 0 0 10px;
  }

}

/*=======================================
TAB
=======================================*/
@media (max-width: 1200px) {

  /* header */
  .head_Block {
    /* padding: 10px; */
    flex-wrap: wrap;
    /* padding: 22px; */
    padding: 22px 10px;
  }

  header h1 {
    /* width: 120px; */
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }

  header h1 a {
    width: 20%;
  }

  #Gnav_List {
    padding: 5px 0 0;
  }

  #Gnav_List li:not(:first-child) {
    margin-left: 15px;
  }

  #Gnav_List a {
    padding: 0 5px;
  }

  #Gnav_List a p {
    font-size: 13px;
  }

  #Gnav_List a::after {
    width: 40px;
    height: 40px;
    margin: 15px auto 0;
  }

  #sub_Nav {
    padding: 0 0 0 20px;
  }

  #sub_Nav li {
    /* min-width: 80px; */
  }

  /* #sub_Nav li.sub_02,
  #sub_Nav li.sub_03 {
    min-width: 70px;
  } */

  /* 20230120追加分 */
  .nav_Area {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 0;
  }

  #Gnav {
    width: 65%;
  }

  #Gnav_List {
    justify-content: space-between;
  }

  #Gnav_List li:not(:first-child) {
    margin-left: 0;
  }

  #sub_Nav {
    width: 27%;
  }
}

@media (max-width: 1180px) {

  #main_Img {
    margin-top: 225px !important;
  }
}

@media (max-width: 920px) {
  #Gnav_List a p {
    font-size: 12px;
  }

  #Gnav_List a span {
    font-size: 10px;
  }

  .sub_01 a span {
    font-size: 10px;
  }

  .sub_02 a p,
  .sub_03 a p {
    font-size: 13px;
  }
}

@media (max-width: 870px) {
  .head_Block {
    padding: 15px 6px;
  }

  #Gnav_List a {
    padding: 0 4px;
  }

  #sub_Nav li {
    max-width: 56px;
  }
}

@media (min-width: 821px) and (max-width: 1060px) {
  #sub_Nav {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .nav_Area {
    margin-top: 20px;
  }
}



/*=======================================
SP
=======================================*/
@media (max-width: 820px) {

  /* 共通 */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* 注釈 */
  ul.notes {
    padding: 30px 0 30px 1em;
  }

  /*予告広告*/
  .yokoku {
    flex-direction: column;
    margin: 0 auto 30px;
  }

  .yokoku dt {
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*トップへ戻るボタン*/
  #pagetop {
    right: 10px;
    bottom: 65px;
    width: 50px;
    height: 50px;
  }

  /* header */
  header {
    height: 85px;
    /* height: 55px; */
  }

  .head_Block {
    padding: 0;
  }

  header h1 {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    /* max-width: 190px; */
    min-width: initial;
    width: 17%;
    margin: 10px auto 0;
  }

  header h1 a {
    width: 100%;
  }

  #Gnav {
    display: none;
    position: fixed;
    top: 85px;
    /* top: 55px; */
    right: 0;
    width: 50vw;
    height: auto;
    z-index: 9999;
  }

  #Gnav_List {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background: rgba(0, 0, 0, .8);
  }

  #Gnav_List li {
    width: 100%;
  }

  #Gnav_List li::after {
    display: block;
    content: '';
    width: 90%;
    height: 1px;
    margin: 0 auto;
    background-color: #aaa;
  }

  #Gnav_List li:not(:first-child) {
    margin-left: 0;
  }

  #Gnav_List a {
    color: #fff;
    padding: 20px 0;
  }

  #Gnav_List a p {
    display: none;
  }

  #Gnav_List a span {
    padding: 0;
    border-top: none;
    font-size: 13px;
  }

  #Gnav_List a::after {
    content: none;
  }

  #Gnav_List a:hover {
    opacity: .6;
  }

  #sub_Nav {
    display: none;
  }

  #sp_Menu {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 26px;
    height: 22px;
    transform: translateY(-50%);
    overflow: hidden;
  }

  #sp_Menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    /* background-color: #fff; */
    transition: .3s;
  }

  #sp_Menu span:nth-child(1) {
    top: 0;
    transform: rotate(0);
  }

  #sp_Menu span:nth-child(2) {
    top: 10px;
  }

  #sp_Menu span:nth-child(3) {
    bottom: 0;
  }

  #sp_Menu.active span:nth-child(1) {
    top: 10px;
    transform: rotate(-135deg);
  }

  #sp_Menu.active span:nth-child(2) {
    left: 26px;
  }

  #sp_Menu.active span:nth-child(3) {
    bottom: 10px;
    transform: rotate(135deg);
  }

  /* NEW */
  #Gnav_List li:nth-of-type(2) a::before,
  #Gnav_List li:nth-of-type(3) a::before,
  #Gnav_List li:nth-of-type(4) a::before,
  #Gnav_List li:nth-of-type(5) a::before,
  #Gnav_List li:nth-of-type(6) a::before,
  #Gnav_List li:nth-of-type(7) a::before,
  #Gnav_List li:nth-of-type(8) a::before,
  #Gnav_List li:nth-of-type(9) a::before {
    width: 30%;
    top: 0%;
    left: 5%;
    /* right: 5%; */
    transform: unset;
  }


  footer {
    padding: 30px 0 20px;
    margin-bottom: 55px;
  }

  .contact_Area {
    font-size: 12px;
  }

  .contact_Area a {
    max-width: 360px;
    width: 85%;
  }

  .company_List {
    flex-direction: column;
  }

  .company_List li {
    font-size: 10px;
  }

  .company_List li:first-child {
    margin: 0 0 20px;
  }

  .company_List li:first-child a {
    /* width: 150px; */
    width: 140px;
  }

  .company_List li:last-child a {
    /* width: 190px; */
    width: 180px;
  }

  #foot_spMenu {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #000;
    border-top: 1px solid #fff;
  }

  #foot_spMenu li {
    width: calc(100% / 4);
    height: 55px;
    box-sizing: border-box;
  }

  #foot_spMenu li:not(:first-child) {
    border-left: 1px solid #fff;
  }

  #foot_spMenu li a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
  }

  #foot_spMenu span {
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
  }

  #foot_spMenu .f_btn01 span,
  #foot_spMenu .f_btn02 span {
    width: 22px;
    height: auto;
  }

  #foot_spMenu p {
    display: block;
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    font-size: 11px;
    line-height: 1;
    text-align: center;
  }

  .f_btn01 a {
    background-image: linear-gradient(to right bottom, #870000, #690000);
  }

  .f_btn02 a {
    background-image: linear-gradient(to right bottom, #dcba88, #c69056);
  }

  #main_Img {
    margin-top: 75px !important;
  }
}

/*SPまで電話発信不可*/
@media only screen and (min-width: 768px) {
  a[href*="tel"] {
    pointer-events: none;
  }
}



@media (max-width: 767px) {

  .req_Btn {
    margin-right: 0;
    margin-bottom: 25px;
    max-width: 100%;
    width: 80%;
  }

  .res_Btn {
    margin-left: 0;
    max-width: 80%;
  }
}


@media (max-width: 499px) {

  header h1 {
    width: 35%;
  }
}

/* 完売対応 */
#Gnav,
#sub_Nav,
.float_cam_bnr,
.main,
.point_Area,
.premium_teiki,
.teiki_Area,
.r-canpaign,
.cv_btn,
#info_Area,
.bnr_Block,
#top_Block01,
#top_Block02,
#top_Block03,
#top_Block04,
ul.notes,
#pagetop,
#foot_spMenu,
#sp_Menu {
  display: none!important;
}

.soldout {
  margin-top: 110px;
}

.oura-bnr a {
  width: 90%;
  max-width: 600px;
}