@charset "utf-8";
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
.sp_nav {
  display: none;
}
header {
  transition: all 0.3s;
  background-color: #f3f4f6;
  position: relative;
  top: 0;
  z-index: 10;
  width: 100%;
  opacity: 1;
  position: fixed;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
}
header .soon {
  opacity: 0.4;
  pointer-events: none;
}
footer .soon {
  opacity: 0.4;
  pointer-events: none;
}

/****************************************************/
.h1_bar_wrap {
  padding: 0 20px;
  color: #fff;
  background: #000;
  height: 30px;
}
.h1_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 1rem 0;
}
.head_info h1 {
  margin-right: 50px;
  display: flex;
}
.h_out_map_links {
  font-size: 14px;
  display: flex;
  position: relative;
  /* top: 5px; */
}
.h_out_map_links a {
  transition-duration: 0.6s;
  cursor: pointer;
}
.h_out_map_links a:hover {
  opacity: 0.8;
}
.h_out_map_item {
  display: flex;
  align-items: center;
}
.h_out_map_item p {
  position: relative;
  font-size: 12px;
  color: #fff;
}
.h_out_map_item p::before {
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  margin: auto;
  content: '';
  vertical-align: middle;
}
.h_out_map_item p::after {
  left: 3px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -12px;
  margin: auto;
  content: '';
  vertical-align: middle;
}
.h_out_map_links a:not(:first-child) {
  margin-left: 36px;
}
@media screen and (max-width: 1000px) {
  .h1_bar_wrap {
    display: none;
  }
}

/*******************************************************************/
.header_inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.logo {
  max-width: 230px;
}
.header_inner ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.navbar-item {
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-top: -15px;
}
.navbar-item:not(:first-child) {
  margin-left: 15px;
}
.navbar-item::before {
  content: '';
  position: absolute;
  z-index: 1;
  background: #333;
  width: 0%;
  height: 1px;
  cursor: pointer;
  bottom: -10px;
  transition: 0.3s;
  left: 50%;
transform: translateX(-50%);
-webkit- transform: translateX(-50%);
}
.navbar-item a {
  font-size: 15px;
  font-size: 13px;
  line-height: 0em;
}
.navbar-item a span {
  font-size: 10px;
  display: block;
  letter-spacing: 0;
  padding-top: 3px;
  text-align: center;
}

.navbar-item.h_btn {
  margin-top: 0;
  font-size: 17px;
  line-height: 1em;
  color: #fff;
  letter-spacing: 0.2em;
  padding: 10px 25px;
}
.navbar-item.h_req_btn {
  background: linear-gradient(-90deg, #996a6b, #bc9998);
}
.navbar-item.h_res_btn {
}
@media screen and (max-width: 1000px) {
  .nav {
    position: fixed;
    top: -100vh; /* 画面外（上） */
    width: calc(100% + 2rem);
    padding: 60px 2rem 0;
    background-color: #fff;
    transition: all 0.6s;
    z-index: -1;
    overflow-y: auto;
    left: -1rem;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #4c444b;
    transition: all 0.6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    top: 0; /* 上から表示 */
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }

  .navbar-item {
    margin-top: 0px;
    width: 50%;
    margin-bottom: 30px;
  }
  .navbar-item:not(:first-child) {
    margin-left: 0px;
  }
  .navbar-item a {
    font-size: 14px;
  }
  .navbar-item::before {
  bottom: -15px;
}

  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
.black_bg {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: -2;
        background-color: rgb(0 0 0 / 30%);
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }
}

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

/* bottom menu */
.btm_header_btn {
  display: none;
}
.btm_header_btn {
  position: fixed;
  margin: auto;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  top: auto;
  z-index: 900;
  box-shadow: 0px -5px 10px -5px rgb(0 0 0 / 50%);
}
.btm_header_btn > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto;
}
.btm_header_btn > ul > li.btm_header_btn_tel {
  display: block;
}
.btm_header_btn > ul > li {
  width: 25%;
}
.btm_header_btn > ul > li:nth-of-type(1) > a {
  border-left: none;
}
.btm_header_btn > ul > li > a {
  width: 100%;
  display: block;
  color: #000;
  position: relative;
  padding: 25px 0;
  background-color: #fff;
  box-sizing: border-box;
  border-left: 1px solid #b5b5b5;
  height: 70px;
}
.btm_header_btn > ul > li.btm_header_btn_req > a {
  color: #fff;
  background: linear-gradient(-90deg, #996a6b, #bc9998);
}
.btm_header_btn > ul > li.btm_header_btn_res > a {
  color: #fff;
  background: linear-gradient(-90deg, #827e54, #b9b697);
}

.btm_header_btn > ul > li.btm_header_btn_tel > a::before {
  content: '\f095';
  color: #333;
}
.btm_header_btn > ul > li.btm_header_btn_tel > a::after {
  content: 'TEL';
  color: #333;
}
.btm_header_btn > ul > li.btm_header_btn_map > a::before {
  content: '\f041';
  color: #333;
}
.btm_header_btn > ul > li.btm_header_btn_map > a::after {
  content: '案内図';
  color: #333;
}
.btm_header_btn > ul > li.btm_header_btn_out > a::before {
  content: '\f15c';
  color: #333;
}
.btm_header_btn > ul > li.btm_header_btn_out > a::after {
  content: '物件概要';
  color: #333;
}
.btm_header_btn > ul > li.btm_header_btn_req > a::before {
  content: '\f0e0';
  color: #fff;
}
.btm_header_btn > ul > li.btm_header_btn_req > a::after {
  content: '資料請求';
  color: #fff;
}
.btm_header_btn > ul > li.btm_header_btn_res > a::before {
  content: '\f073';
  color: #fff;
}
.btm_header_btn > ul > li.btm_header_btn_res > a::after {
  content: '来場予約';
  color: #fff;
}
.btm_header_btn > ul > li > a::before {
  top: 10px;
  height: 24px;
  font-size: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  font-family: FontAwesome;
}
.btm_header_btn > ul > li > a::before,
.btm_header_btn > ul > li > a::after {
  width: 100%;
  position: absolute;
  text-align: center;
  margin: auto;
}
.btm_header_btn > ul > li > a::after {
  top: 26px;
}
.btm_header_btn > ul > li > a::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  font-size: 10px;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .btm_header_btn {
    display: block;
  }
}

/* footer */
.footer_sitemap {
  background: #efefef;
  border-bottom: solid 1px #000;
  border-top: solid 1px #000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_sitemap ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 0.5%;
}
.footer_sitemap ul li {
  font-size: 14px;
  flex: 1;
  align-items: center;
  text-align: center;
  background: #fff;
  white-space: nowrap;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}
.footer_sitemap ul li:hover {
  background: #dedede;
  color: #333;
}
.footer_sitemap ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  padding: 0.5em;
}
.footer_sitemap ul li.foot_wide {
  max-width: 175px;
}
.footer_sitemap ul li span {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
  width: 100%;
}
.footer_info_area {
  background: #efefef;
}
.footer_info_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0px auto;
  padding: 40px 20px;
}

.footer_info_tel_area {
  margin: 60px auto;
}
.footer_info_tel {
  text-align: center;
  margin: 0 auto;
}
.footer_info_tel a {
  display: inline-block;
}
.tel_lead {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.3em;
  line-height: 1em;
  margin: 0 auto 15px;
}
.tel_lead_border {
  margin: 0 auto 15px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #333 20%,
    #333 80%,
    transparent
  );
  width: 300px;
}
.tel_num {
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  font-size: 36px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tel_num > div {
  max-width: 40px;
  width: 100%;
  margin: 0 10px 0px 0px;
}
.tel_num img {
  max-width: 38px;
  margin: 0 0px 4px;
  transition: 0.6s;
}
.footer_info_tel a:hover .tel_num img {
  opacity: 0.6;
  transition: 0.6s;
}
.tel_num span {
  position: relative;
}
.tel_subtxt {
  /* max-width: 260px; */
  margin: 0 auto;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.22em;
}

.footer_info_casbee {
  max-width: 250px;
}
.copyright {
  text-align: center;
  font-size: 10px;
  margin: 0px auto 0px;
  padding: 20px;
}
.footer_sitemap ul li:nth-of-type(4) {
  /* max-width: 100px; */
}
.footer_sitemap ul li:nth-of-type(6),
.footer_sitemap ul li:nth-of-type(8) {
  /* max-width:80px; */
}

/* マンションを探すボタン */
.btn-style-02 {
  text-align: center;
  max-width: 400px;
  margin: 60px auto 0;
  padding: 0 5.7%;
  box-sizing: content-box;
}
.btn-style-02 a {
  display: block;
  font-size: 20px;
  letter-spacing: 0.2em;
  padding: 0.75em 0;
  background: #ebebec;
  transition: 0.4s;
  line-height: 1em;
}
.btn-style-02 a:hover {
  color: #fff !important;
  background: #251e1c !important;
}
.btn-style-02 a span {
  display: inline-block;
  position: relative;
}
.btn-style-02 a span::after {
  display: block;
  content: '';
  width: 1em;
  height: 0.5em;
  background: url(../img/common/common_arrow3.svg) no-repeat center / contain;
  position: absolute;
  left: 105%;
  bottom: 0;
  z-index: 1;
  transition: 0.4s;
}
.btn-style-02 a:hover span::after {
  filter: brightness(0) invert(1) !important;
}

/**/

footer .company {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  max-width: 960px;
  margin: 0 auto;
}
.footer_nisshin {
  width: 20%;
  width: 30%;
}
.footer_sanshin {
  width: 11%;
}
footer .company ul {
  width: 60%;
  padding: 1em 1.5em;
  background: #f9f9f9;
}
footer .company ul li {
  display: inline-block;
}
footer .company ul li a {
  font-size: 14px;
  margin: 0.25em;
}
footer .company ul li a span {
  padding-left: 0.8em;
  position: relative;
}
footer .company ul li a span::before {
  display: block;
  content: '';
  width: 0.7em;
  height: 0.7em;
  background: url(../img/common/common_arrow2.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .footer_sitemap ul li {
    /* max-width: 90px; */
  }
}
@media screen and (max-width: 1000px) {
  .footer_nisshin {
    width: 54%;
    padding: 0;
    margin: 0 auto ;
    margin-left: 5.7%;
    margin-left: auto;
    box-sizing: content-box;
  }
  .footer_sanshin {
    width: 30%;
    padding: 0;
    margin: 0 auto;
    margin-right: 5.7%;
    box-sizing: content-box;
  }
  footer .company ul {
    width: calc(100% - 10.14%);
    margin: 30px auto 0;
  }
  .footer_sitemap ul {
    flex-wrap: wrap;
    flex: auto;
    gap: unset;
  }
  .footer_sitemap ul li:nth-of-type(4) {
    max-width: unset;
  }
  .footer_sitemap ul li:nth-of-type(6),
  .footer_sitemap ul li:nth-of-type(8) {
    max-width: unset;
  }
  .footer_sitemap ul li {
    width: calc(50% - 10px);
    margin: 5px;
    max-width: inherit;
    flex: unset;
  }
  .footer_sitemap {
    height: auto;
    padding: 20px 10px;
  }
  .footer_sitemap ul li.foot_wide {
    max-width: unset;
  }
  .footer_info_box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_info_tel {
    margin-bottom: 30px;
    margin-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .tel_num {
    justify-content: center;
  }
  .tel_lead {
    text-align: center;
  }
  .tel_subtxt {
    text-align: center;
  }
  .footer_right_box {
    width: 100%;
  }
  .footer_info_casbee {
    margin-top: 20px;
  }
  .copyright {
    font-size: 10px !important;
    padding: 20px 20px 95px;
  }
}
@media (max-width: 768px) {
}

.h_links ul li.soon {
  pointer-events: none;
  opacity: 0.4;
}
.footer_sitemap ul li.soon {
  pointer-events: none;
  opacity: 0.4;
}

@-moz-document url-prefix() {
  .h_logo img {
    height: 50px;
  }
}
