
/*
Theme Name: estate02-navy
*/

/*
メインカラー：#122D51
*/

@charset "utf-8";

/* CSS Document */
/*----全体設定----*/
* {
  transition-property: font-size, height, width, top, left, color, background;
  transition-duration: 0.0s;
}
* {
  font-family: 'Shippori Mincho', serif;
}
html {
  font-size: 100%;
}
body {
  overflow-x: hidden;
}
ul {
  padding: 0;
}
li {
  list-style: none;
    margin-bottom: 0!important;
}
/*スクロールで表示される*/
.appear {
  opacity: 0;
}
.contents {
  position: relative;
  top: 0;
  width: 100%;
}
/*=ヘッダー=*/
.pc_header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #FFF;
  padding: 5px 1rem;
  z-index: 2000;
}
.pc_header_inner {
  height: 50px;
}
.pc_header_inner_logo {
  display: flex;
  float: left;

  padding: 0 0.5rem;
}
.pc_header_inner_logo_image {
  text-align: center;
}
.pc_header_inner_logo_image img {
  max-height: 50px;
  width: auto;
}
.pc_header_navi {
  float: right;
}

  /*スマホ用メニュー*/
  .sp_head {
    display: none;
  }
/*=フッター部各種リンク=*/

.index_link{
    padding: 2rem 0;
    background: #FFF;
}

ul.index_link_list{
    padding: 0;
    margin: 0;
    list-style: none;
    
      text-align: center;
}


ul.index_link_list li{
 display: inline-block;
    text-align: center;
}

ul.index_link_list li a{
    margin: 0 0.5rem;
}

ul.index_link_list li a img{
    max-height: 50px;
    width: auto;
}

/*=フッター=*/

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0px;
  background: #122D51;
  opacity: 0.6;
  border-radius: 0%;
    z-index: 10000;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.pc_footer{
     background: #122D51;
    padding: 3rem 0;
}

.pc_footer_inner{
    padding: 0rem;
    color: #FFF;
    text-align: center;
    font-size: 0.9rem;
}


.pc_footer_copy{
    padding: 2rem 0 0;
    color: #FFF;
    text-align: center;
    font-size: 0.9rem;
}
  .sp_footer_contact{
      display: none;
    }
    

/*SNS*/

.pc_sns{
    position: fixed;
    height: 100%;
    width: 50px;
    z-index: 2000;
    top: 30%;
    right: 0px;
  

}

.pc_sns_icon{
    width: 50px;
    height: 50px;
      display: flex;
  justify-content: center;
  align-items: center;
    flex-wrap: wrap;
    margin-bottom: -3px;
}

.pc_sns_icon a{
    display: block;   
    color: #FFF;
  font-size: 2rem;
      background: #122D51;
     width: 50px;
    text-align: center;
}

.pc_sns_icon a:hover{ 
    color: #122D51;
    background: #FFF;
    transition: 0.5s;
}
.contents_r_sns {
  text-align: center;
}
p.contents_r_sns_icon {
  font-size: 2.5rem;
}
span.icon_facebook a {
  color: #1877f2;
}
span.icon_instagram a {
  color: #c13584;
}
span.icon_line a {
  color: #06c755;
}
span.icon_twitter a {
  color: #1d9bf0;
}
span.icon_youtube a {
  color: #FF0000;
}


/*=ナビメニュー=*/
/*========= ナビゲーションドロップダウンのためのCSS ===============*/
/*==ナビゲーション全体の設定*/
nav {
  color: #000;
  text-align: center;
    font-size: 90%;
}
/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 20px 20px;
  transition: all .3s;
 
}
nav ul li li a {
  padding: 10px 35px;
}
nav ul li a:hover {
  color: #122D51;
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 25px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}
/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -60px;
  top: 55px;
  z-index: 4;
  /*形状を指定*/
  background: #707070;
  width: 220px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all .3s;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul, nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
nav li.has-child ul li:last-child a {
  border-bottom: none;
}
nav li.has-child ul li a:hover, nav li.has-child ul li a:active {
  background: #909090;
}
/*==3階層目*/
/*3階層目の位置*/
nav li.has-child ul ul {
  top: 0;
  right: 182px;
  background: #808080;
}
nav li.has-child ul ul li a:hover, nav li.has-child ul ul li a:active {
  background: #909090;
}
/*==768px以下の形状*/
@media screen and (max-width:768px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav li.has-child ul, nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav ul li a {
    border-bottom: none;
      padding: 0;
  }
  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    left: 20px;
  }
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}
/*PC用キャッチ*/
.index_contents {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}
/*=フェードするスライドショー=*/
.index_slide {
  position: relative;
  height: 100vh;
}
.index_slide_inner_right {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40%;
  height: 100vh;
  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: 3000;
}
.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: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.slide {
  height: 100vh;
  width: 100%;
}
.slick-slider {
  margin: 0;
  padding: 0;
}
.slick-slider img {
  height: 100vh;
  width: 60%;
  object-fit: cover;
  object-position: 50% 50%;
}
/*=動画=*/
.index_movie_inner {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.video_a {
  height: 100vh;
  overflow: hidden;
}
video {
  width: 60%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
}
/*=背景画像のみ=*/
.index_bgimage_inner {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
     overflow-y: hidden;
}
.slide_image {
  height: 100vh;
  width: 100%;
  overflow-y: hidden;
}

    .slide img {
  height: 100vh;
  width: 100%;
         object-fit: cover;
  object-position: 50% 50%;
}

.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: right;
  font-size: 4rem;
  font-weight: normal;
  line-height: 6rem;
    padding-right: 80px;
}


/**************************************************
h2.index_slide_catch_text {
 
  
  
  letter-spacing: .1em;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  
  animation: typing 1.5s steps(10),
    blink .5s steps(1) infinite alternate;
}

@keyframes typing{
  0% {width: 0;}
}
@keyframes blink{
  50% {border-right-color: transparent;}
}
***************************************************/
/*=TOPページコンテンツ=*/
h2.index_contents_h201 {
  color: #122D51;
  font-size: 3rem;
  text-align: center;
  width: 100%;
  margin: 2rem 0;
}
h2.index_contents_h201 span {
  display: block;
  font-size: 1.5rem;
}
.index_contents_inner_w {
  padding: 3rem 0;
  background: #FFF;
}
.index_contents_inner_wz {
  padding: 0rem 0;
  background: #FFF;
}
.index_contents_inner_g {
  padding: 3rem 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 4rem;
}
.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: center;
}
/*不動産情報*/
.index_contents_estate {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}
/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -1px;
}
.tab li{
  margin-bottom: 0!important;
}

.tab li a {
  display: block;
  background: #FFF;
  color: #122D51;
  margin: 0 2px;
  padding: 10px 50px;
  border: #122D51 1px solid;
  
}
/*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;
}
.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: 1rem 1rem 0;
  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: 1.2rem;
}
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 {  width: 100%;}
.index_contents_estate_list_inner_e_inner a {
  color: #122D51;
    display: block;
  text-align: center;
  
  padding: 0.5rem 0rem;
  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: #fff;
}
.cat {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-1::before {
  transform: skewY(135deg);
  transform-origin: bottom left;
}
.box-2::before {
  transform: skewY(-45deg);
  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: 1.2rem;
  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: 1.5rem;
}
.index_contents_office_inner_link a:hover {
  background: #122D51;
  color: #FFF;
  transition: 0.5s;
}


/*==固定ページ==*/

main{
    display: block;
  margin-top: -100px;
  padding-top: 100px;
    min-height: 50vh;
}

.page_contents{
    margin-top: 70px;
}

.page_contents_catch{
padding: 3rem 0; 
    background: #FAFAFA;
}


h3.page_h301{
width: 80%;
    margin: 0 auto;
    font-size: 2.5rem;
    font-weight: normal;
    color: #122D51;
}

h3.page_h301 span{
margin-left: 1rem;
    font-size: 1.5rem;
}





.page_section {
  padding: 3rem 0;
}
.section_inner {
  width: 90%;
  margin: 2rem auto;
}



.section_contents {
  margin: 2rem 0;
}
p.section_p01_ub {
    color: #122D51;
  border-bottom: 2px solid;
  font-size: 1.3rem; font-weight: normal;
}
p.section_p01_ub2 {
    color: #122D51;
  border-bottom: 2px solid;
  font-size: 1.5rem; font-weight: normal;
  margin-bottom: 2rem;
}
p.section_p02 {
    color: #122D51;
  font-size: 1.3rem; font-weight: normal;
  margin-bottom: 2rem;
}
p.section_p03 {
    color: #122D51;
  font-size: 1.3rem; font-weight: normal;
  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;
}

.page_link {
  text-align: center;
  margin: 2rem 0;
}
.page_link a {
  color: #122D51;
  text-align: center;
  padding: 0.5rem 3rem;
  border: #122D51 1px solid;
  font-size: 1.5rem;
}
.page_link a:hover {
  background: #122D51;
  color: #FFF;
  transition: 0.5s;
}


/*会社案内*/
p.page_p01_center {
  font-size: 2.5rem;
    color: #122D51;

  text-align: center;
  margin-bottom: 2rem;
}
p.page_text {
  margin: 3rem auto 1rem;
  line-height: 2rem;
    font-size: 1.2rem;
}
p.page_text_name {
  width: 80%;
  margin: 2rem auto;
  line-height: 2rem;
  text-align: right;
      font-size: 1.2rem;
}
.page_data_box {
  margin: 2rem 0;
}
dl.page_data {
  border-bottom: 1px #CCC solid;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
}
dl.page_data dt {
  text-align: center;
}
.page_company_image {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden !important;
  margin-bottom: 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;
}
.company_map {
  width: 100%;
  height: 450px;
}


/*スタッフ紹介*/
.page_staff_a {
  margin: 1rem 0;
  padding: 0 1rem;
  border-bottom: #707070 1px dotted;
}
.page_staff_b {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
}
.page_staff_c {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden !important;
  margin-bottom: 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;
}
p.page_staff_e {
  border-bottom: 2px #707070 solid;
  font-size: 1.5rem;
  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 1rem;
  
}
.page_blog_b {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
}
.page_blog_c {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden !important;
  margin-bottom: 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: 2rem;
}
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;
}
/***
.page_blog_g {
  text-align: right;
  margin-right: 1rem;
  font-weight: bold;
}
***/
/*矢印が右に移動する*/
.page_blog_g{
    /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
    /*形状*/
    display: inline-block;
  padding: 0 20px;
    color: #333;
    text-decoration: none;
    outline: none;
	left: 560px;
}

/*矢印と下線の形状*/
.page_blog_g::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
  position: absolute;
    bottom:-8px;
    left:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
  background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.page_blog_g::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
  background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.page_blog_g:hover::before{
    left:20%;
}

.page_blog_g:hover::after{
    right:-5%;
}
/**********ここまで*************/

 .page_blog_h {
      padding:2rem  1rem; 
    }
.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: 1rem;
  margin: 0;
  background: #EEE;
  display: flex;
  align-items: center;
}
dl.form_a dd {
  padding: 1rem;
  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.5rem;
  font-weight: bold;
  border-bottom: #122D51 2px solid;
  margin-bottom: 3rem;
}


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: 1rem 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: 2rem;
  padding: 0.5rem;
}
.contents_estate_a a {}
.contents_estate_b {}
.contents_estate_c {
  padding: 0rem;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden !important;
  margin-bottom: 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: 3rem;
}
.contents_estate_e {
  margin: 2rem 0;
  line-height: 2rem;
}
p.contents_estate_p01 {
  font-size: 1.3rem;
  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;
}
p.contents_estate_p02 {
  font-size: 1rem;
  font-weight: bold;
}

    p.contents_estate_p02 br {
   display: none;
  }
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;
}
.contents_estate_photo_b img {
  width: 100%;
  height: 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.5rem;
    font-weight: bold;
    border: #122D51 2px solid;
}
p.estate_contact_link a span{
    display: block;
    font-size: 1.2rem;
}

p.estate_contact_link a:hover{
        background: #FFF;
    color: #122D51;
    
}