@charset "utf-8";
/* CSS Document */
@media screen and (max-width: 960px) {
    
    /*=ヘッダー=*/
.pc_header {
  display: none;
}
    
    .pc_sns {
  display: none;
}
    
  /*スマホ用メニュー*/
  .sp_head {
    display: inherit !important;
  z-index: 1000;
        position: fixed;
        top: 0;
  left: 0;
        height: 60px;
  width: 100%;
  }

    
    
    
}
#navi {
  background-color: #FFF;
  position: fixed;
  top: 30;
  left: 0;
  height: 60px;
  width: 100%;
  box-shadow: 0px 3px 5px #DDD;

  overflow-y: hidden;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  line-height: 60px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
  padding: 5px 0px;
  height: 50px;
  width: auto;
}
/* 上部メニュー */
.menu {
  float: right;
  margin-right: 10px;
    border-bottom: 2px solid #DDD;
    margin-bottom: 2rem;
    box-shadow: 0px 10px 10px #DDD;
}
.menu-parent {
  float: left;
  margin-right: 30px;
  line-height: 60px;
  font-size: 17px;
  white-space: nowrap;
}
/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
  border-bottom: none;
}
#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}
@media screen and (max-width: 960px) {
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    padding: 0px 20px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}
/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: -40px;
  width: auto;
  box-sizing: border-box;
  padding: 0px 10px;
  background-color: #FFF;
  border: 1px solid #000;
}
/* パソコン用 */
@media screen and (min-width: 786px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 960px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border-top: 1px solid #DDD;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 0px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  font-size: 14px;
  border-bottom: 1px solid #DDD;
  padding: 0 30px;

}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}


li:last-child {
  border: none;
    margin-bottom: 3rem;
}


.menu-child li i {
  margin-right: 3px;
}
/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 960px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #122D51;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before, #navibtn span span::after, #navibtn span::after {
    position: absolute;
    left: 10px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top: 10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top: 19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom: 18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}




p.contents_r_menu_f {
  margin-bottom: 1rem;
  text-align: center;
  width: 90%;
}
p.contents_r_menu_f img {
  max-width: 200px;
}

@media screen and (max-width: 960px) {
  /*----全体設定----*/
  * {
    transition-property: font-size, height, width, top, left, color, background;
    transition-duration: 0.0s;
  }
  html {
    font-size: 80%;
  }
  body {
    overflow-x: hidden;
  }
  ul {
    padding: 0;
  }
  li {
    list-style: none;
  }


/*PC用キャッチ*/
.index_contents {
  display: block;
  margin-top: -150px;
  padding-top:150px;
}
    
    
        .sp_footer_contact{
        display: inherit;
        height: 50px;
       background-color: rgba(112, 112, 112, 0.6);
        position: fixed;
        left: 0px;
        bottom: 0px;
        width: 100%;
    }
    
    .sp_footer_contact_inner{
        
        width:auto;
padding: 5px;
        height: 50px;
        margin-right: 50px;
        
            display: flex;
    justify-content: center;
    align-items: center;
    }
/*=フェードするスライドショー=*/
.index_slide {
  position: relative;
  height: 40vh;
}
.index_slide_inner_right {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40%;
  height: 40vh;
  background-color: #122D51;
  z-index: 10;
}
.anim-box.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.fadein.is-animated {
  animation: fadeIn 3s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scroll_inner {
  position: absolute;
  bottom: 20px;
  right: 50%;
}
.scroll {
  display: inline-block;
  padding-top: 70px;
  position: relative;
  color: #FFF;
  z-index: 500;
}
.scroll a {
  display: block;
  color: #FFF;
}
.scroll a:hover {
  color: #FFF;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #FFF;
  border-width: 0 0 3px 3px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}



.index_slide_inner {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 40vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.slide {
  height: 40vh;
  width: 100%;
}
    
    .slide img {
  height: 40vh;
  width: 100%;
         object-fit: cover;
  object-position: 50% 50%;
}
    
.slick-slider {
  margin: 0;
  padding: 0;
}
.slick-slider img {
  height: 40vh;
  width: 60%;
  object-fit: cover;
  object-position: 50% 50%;
}
/*=動画=*/
.index_movie_inner {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 40vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.video_a {
  height: 40vh;
  overflow: hidden;
}
video {
  width: 60%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
}
/*=背景画像のみ=*/
.index_bgimage_inner {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 40vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.slide_image {
  height: 40vh;
  width: 100%;
  overflow-y: hidden;
}
.slide_image img {
  object-fit: contain;
  object-position: bottom center;
}
/*=TOPページキャッチ=*/
.index_slide_catch {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
h2.index_slide_catch_text {
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 3rem;
    padding-right: 0px;
}

/*=TOPページコンテンツ=*/
h2.index_contents_h201 {
  color: #122D51;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  margin: 2rem 0;
}
h2.index_contents_h201 span {
  display: block;
  font-size: 1.5rem;
}
.index_contents_inner_w {
  padding: 4rem 0 1rem;
  background: #FFF;
}
.index_contents_inner_wz {
  padding: 0rem 0;
  background: #FFF;
}
.index_contents_inner_g {
  padding: 1rem 0;
  background: #E5E5E5;
}
/*新着情報*/
.index_contents_news_l {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.index_contents_news_l_inner {
  text-align: center;
}
.index_contents_news_r {
  padding: 2rem 1rem;
}
.index_contents_news_list {}
.index_contents_news_list a {
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  border-bottom: #EEE 1px dotted;
}
.index_contents_news_list a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #CCC;
  bottom: 0px;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
.index_contents_news_list a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
.index_contents_news_list dt {
  text-align: left;
}
/*不動産情報*/
.index_contents_estate {
  display: block;
  margin-top: 0px;
  padding-top: 0px;
    padding: 0 1rem
}

/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -1px;
}
    .tab li{
  margin-bottom: 0;
        width: 25%;
   
}
.tab li a {
  display: block;
  background: #FFF;
  color: #122D51;
  margin: 0 2px;
  padding: 5px 0px;
  border: #122D51 1px solid;
    text-align: center;
     font-size: 0.7rem!important;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #122D51;
  color: #FFF;
}
/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 0;
  border: #122D51 1px solid;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.index_contents_estate_list {
  padding: 2rem;
}
.index_contents_estate_list_inner {
  background: #FFF;
    margin-bottom: 1rem;
}
.index_contents_estate_list_inner_a {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden !important;
}
.index_contents_estate_list_inner_a::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.index_contents_estate_list_inner_a img {
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.index_contents_estate_list_inner_a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.index_contents_estate_list_inner_b {
  padding: 0rem 1rem 1rem;
  
}
p.index_contents_estate_list_inner_c {
  font-size: 0.9rem;
}
p.index_contents_estate_list_inner_c span {
  background: #122D51;
  color: #FFF;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.2rem 1rem;
  margin-right: 0.5rem;
}
.readmore {
  width: 100%;
  text-align: right;
  margin-top: 0.5rem;
}
.button {
  color: #000;
  font-size: 0.8rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  ;
  border: 2px solid #fff;
  text-decoration: none;
  outline: none;
  transition: all .3s;
}
.button::before {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  content: '';
  transition: all .3s;
}
.button::after {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  content: '';
  transition: all .3s;
}
.button::before {
  border-top: 2px solid #122D51;
  border-left: 2px solid #122D51;
  width: 20px;
  height: 20px;
}
.button::after {
  border-right: 2px solid #122D51;
  border-bottom: 2px solid #122D51;
  width: 20px;
  height: 20px;
}
.button:hover::after, .button:hover::before {
  width: 99%;
  height: 95%;
}
.button:hover {
  background: #122D51;
  color: #FFF;
}

.index_contents_estate_list_inner_e {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.index_contents_estate_list_inner_e_inner {}
.index_contents_estate_list_inner_e_inner a {
  color: #122D51;
  text-align: center;
  padding: 0.5rem 3rem;
  border: #122D51 1px solid;
  font-size: 1rem;
}
.index_contents_estate_list_inner_e_inner a:hover {
  background: #122D51;
  color: #FFF;
  transition: 0.5s;
}
/*会社案内*/
.box {
    
    
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
}
.cat {
  width: 100%;
  height: 100%;
  
}
    .box img{
          width: 100%;
  height: 100%;
        object-fit: cover;
  object-position: bottom right;
}

.box-1::before {
  transform: none;
  transform-origin: bottom left;
}
.box-2::before {
  transform: none;
  transform-origin: bottom right;
}
.index_contents_office {}
.index_contents_office_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.index_contents_office_inner_box {}
.index_contents_office_inner_text {
  width: 80%;
  font-size: 1rem;
  display: block;
  margin: 0 auto;
}
.index_contents_office_inner_link {
  text-align: center;
  margin: 2rem 0;
}
.index_contents_office_inner_link a {
  color: #122D51;
  text-align: center;
  padding: 0.5rem 3rem;
  border: #122D51 1px solid;
  font-size: 1rem;
}
.index_contents_office_inner_link a:hover {
  background: #122D51;
  color: #FFF;
  transition: 0.5s;
}
    
    .page_contents{
        margin-top: 65px;
    }
    
    
     /*--固定ページ--*/
    
    .page_contents_catch{
padding: 1rem 0; 
    background: #FAFAFA;
}
.page_section {
  padding: 1rem 0;
}
    
  h3.page_h301 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem;
    letter-spacing: 0.1rem;
      text-align: center;
  }
  h3.page_h301 span {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 0rem;
      display: block;
  }
  .page_section {
    margin: 2rem 1rem;
  }
  .section_inner {
    width: 100%;
    padding: 0 1rem;
    margin: 1rem auto;
  }
  .section_contents {
    margin: 2rem 0;
  }
  p.section_p01_ub {
    border-bottom: 2px solid;
    font-size: 1.3rem;
    font-weight: bold;
  }
  p.section_p01_ub2 {
    border-bottom: 2px solid;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  p.section_p02 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  p.section_p03 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0rem;
  }
  p.page_text2 {
    margin: 1rem auto 3rem;
    line-height: 2rem;
  }
  p.page_text3 {
    padding: 0 2rem;
    font-size: 0.8rem;
    margin: 1rem auto 3rem;
    line-height: 2rem;
  }
  /*会社案内*/
  p.page_p01_center {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
  }
  p.page_text {
    margin: 2rem auto;
    line-height: 2rem;
  }
  p.page_text_name {
    width: 80%;
    margin: 2rem auto;
    line-height: 2rem;
    text-align: right
  }
  .page_data_box {
    margin: 2rem 0;
  }
  dl.page_data {
    border-bottom: 1px #CCC solid;
    margin-bottom: 0rem;
    padding: 0rem 0;
  }
  dl.page_data dt {
    text-align: left;
    margin-bottom: 0rem;
    background: #EEE;
    padding: 0.5rem 1rem;
  }
  dl.page_data dd {
    margin-bottom: 0rem;
    padding: 0.5rem 1rem;
  }
  .page_company_image {
    width: 80%;
    max-width: 100%;
    position: relative;
    overflow: hidden !important;
    margin: 0 auto 0.5rem;
    padding: 1rem;
  }
  .page_company_image::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .page_company_image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
  }
  p.page_company_cap {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 2rem;
  }
  .company_map {
    width: 100%;
    height: 450px;
  }
  /*スタッフ紹介*/
  .page_staff_a {
    margin: 1rem 0;
    padding: 0 0rem;
    border-bottom: #707070 1px dotted;
  }
  .page_staff_b {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1rem;
  }
  .page_staff_c {
    width: 60%;
    max-width: 100%;
    position: relative;
    overflow: hidden !important;
      margin: 0 auto 0.5rem;
  }
  .page_staff_c::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .page_staff_c img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
  }
  .page_staff_d {
    padding: 2rem 0;
  }
  p.page_staff_e {
    border-bottom: 2px #707070 solid;
    font-size: 1.3rem;
    font-weight: bold;
    width: 100%;
    text-indent: 1rem;
  }
  p.page_staff_e span {
    border-bottom: none;
    font-size: 1rem;
    color: #707070;
    margin-left: 1rem;
    font-weight: normal;
  }
  .page_staff_f {
    border-bottom: 1px #CCC solid;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }
  .page_staff_g {
    padding: 0.5rem 1rem;
  }
  /*新着情報・スタッフブログ*/
  .page_blog_a {
    margin: 2rem 0;
  }
  .page_blog_list {
    margin: 1rem 0;
    padding: 0 0rem;
    
  }
  .page_blog_b {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0rem;
  }
  .page_blog_c {
    width: 60%;
    max-width: 100%;
    position: relative;
    overflow: hidden !important;
      margin: 0 auto 0.5rem;
  }
  .page_blog_c::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .page_blog_c img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center center;
  }
  .page_blog_d {
    padding: 1rem 0rem;
  }
  p.page_blog_e {
    border-bottom: 2px #707070 solid;
    font-size: 1.3rem;
    font-weight: bold;
    width: 100%;
    text-indent: 1rem;
  }
  p.page_blog_e span {
    border-bottom: none;
    font-size: 1rem;
    color: #707070;
    font-weight: normal;
    display: block;
    text-indent: 0rem;
  }
  .page_blog_f {
    margin-bottom: 0.5rem;
    padding: 1rem 0rem;
  }
  .page_blog_g {
    
    margin-right: 1rem;
    left: 230px;
  }
  .page_blog_h {
      padding:2rem  0rem; 
    }
  .page_blog_h img {
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
  }
  /*無料査定*/
  .page_satei_form {
    margin: 2rem auto;
  }
  /*各種フォーム*/
  span.red {
    color: #F00;
    font-weight: bold;
  }
  dl.form_a {
    border-bottom: #CCC 1px solid;
    margin-bottom: 0rem;
  }
  dl.form_a dt {
    padding: 0.5rem;
    margin: 0;
    background: #EEE;
    display: flex;
    align-items: center;
  }
    
      dl.form_a dt br{
          display: none;
  }
    
    
  dl.form_a dd {
    padding: 0.5rem;
    margin: 0;
    height: 100%;
  }
  .form_button {
    margin: 3rem 0;
  }
  .form_thanks {
    width: 80%;
    margin: 3rem auto;
    padding: 3rem;
    border: 2px solid #CCC;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
  }
  /*--不動産物件ページ--*/
  p.estates_p01 {
    font-size: 1.3rem;
    font-weight: bold;
    border-bottom: #122D51 2px solid;
    margin-bottom: 1rem;
  }
  p.estates_p01 span {
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 0;
    background: #122D51;
    color: #FFF;
    padding: 0.2rem 0.5rem;
    margin-right: 0.5rem;
  }
  p.estates_link {
    text-align: right;
    margin: 0.5rem 0 0;
  }
  p.estates_link a {
    text-align: center;
    background: #122D51;
    color: #FFF;
    padding: 0.2rem 1rem;
    font-size: 1rem;
    border: #122D51 1px solid;
  }
  p.estates_link a:hover {
    background: #FFF;
    color: #122D51;
    transition: 0.3s;
  }
  .contents_estate_a {
    height: 100%;
    margin-bottom: 0rem;
    padding:1rem 0.5rem 0.5rem;
      border-bottom: #CCC 1px dotted;
  }
  .contents_estate_a a {}
  .contents_estate_b {}
  .contents_estate_c {
    padding: 0rem;
    width: 80%;
    max-width: 100%;
    position: relative;
    overflow: hidden !important;
    margin: 0rem auto 0.5rem;
  }
  .contents_estate_c::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .contents_estate_c img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
  }
  .contents_estate_d {
    margin-bottom: 0rem;
  }
  .contents_estate_e {
    margin: 2rem 0;
    line-height: 2rem;
  }
  p.contents_estate_p01 {
    font-size: 1.2rem;
    font-weight: bold;
  }
  p.contents_estate_p01 span {
    background: #122D51;
    padding: 0.1rem 0.5rem;
    font-size: 1rem;
    color: #FFF;
    text-align: center;
    margin-right: 0.5rem;
       font-weight: normal;
  }
  p.contents_estate_p02 {
    font-size: 1rem;
     font-weight: normal;
  }
    
    p.contents_estate_p02 br {
   display: inherit;
  }
      
    
    
  p.contents_estate_p03 {
    border-bottom: #122D51 1px solid;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  dl.contents_estate_dl {
    border-bottom: 1px #CCC solid;
    margin-bottom: 1rem;
    padding: 0rem;
  }
  dl.contents_estate_dl dt {
    padding: 0.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  dl.contents_estate_dl dd {
    padding: 0.5rem;
    margin: 0;
    height: 100%;
  }
  .contents_estate_photo_a {
    padding: 0rem 0 0;
  }
  .contents_estate_photo_b {
    margin-bottom: 2rem;
      text-align: center;
  }
  .contents_estate_photo_b img {
    width: 80%;
    height: auto;
      margin: 0 auto;
  }
  .contents_estate_photo_c {
    padding: 0.5rem;
    margin: 0.1rem;
  }
  .contents_estate_photo_cc {}
  .contents_estate_photo_d {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden !important;
  }
  .contents_estate_photo_d::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .contents_estate_photo_d img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center center;
  }
  p.contents_estate_photo_e {
    text-align: center;
  }
  .estate_map {
    width: 100%;
    height: 450px;
  }
  .estate_contact {
    margin: 3rem 0;
  }
  p.estate_contact_link {
    text-align: center;
  }
  p.estate_contact_link a {
    display: inline-block;
    background: #122D51;
    color: #FFF;
    text-align: center;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: #122D51 2px solid;
  }
  p.estate_contact_link a span {
    display: block;
    font-size: 1rem;
  }
  p.estate_contact_link a:hover {
    background: #FFF;
    color: #122D51;
  }
}