html{font-size: 62.5%;}
body {
	width:100%;
	height:100%;
	color: #000;
	font-family:YakuHanJP_Narrow,"kinto-sans","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	letter-spacing: 1px;
	margin:0;
	padding: 0;
	border: 0;
    display: flex; /* フレックスボックスに有効に */
  flex-flow: column; /* 要素を縦に並べる */
  min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
    background: url("images/bg.jpg") 50% 50%;
}
div, ul, li {
	box-sizing: border-box;
}

a:link {
	text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: all .3s;
}

a:visited {
    color: #000;
}

.c-both{
    clear: both;
    height:0em;
    visibility:hidden;
    overflow:hidden;
    content:”.”;
}
p{
margin: 0;
}

img{
width:100%;
max-width: 100%;
height: auto;
}

header {
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    top:0;
    width: 100%;
    z-index: 100;
    background: url("images/bg.jpg") 50% 50%;
}

#header_base {
    margin: 0 auto;
    padding: 10px 30px; 
    display: block flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    width: 400px;
    height: 52px;
    background: url(images/logo.svg)center left no-repeat;
    background-size: contain;
    text-indent: -9999px;
    margin: 0;
}

main {
    margin: 72px auto 0;
    padding: 0;
    flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
    width: 100%;
}

/*Gナビ*/
nav{
	display: block;
    position: fixed;
    right: 120px;
}
.drawer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  text-align: right;
}
.navbar_toggle{
  z-index:9999;
}
.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #000;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
    top: 0;
}
.navbar_toggle_icon:nth-child(2) {
    margin: 4px 0;
}
.navbar_toggle_icon:nth-child(3) {
    top: 0;
}
.menu.open {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
	background: #FFF;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
	background: #FFF;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	background: #FFF;
}
.menu{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition:ease .5s;
transition:ease .5s;
z-index:1000;
float: right;
}
.menu ul{
  padding: 0px;
    width: 100%;
}
.menu ul li{
	display: block;
	text-align: center;
}
.menu ul li a{
	font-size: 1.4rem;
	color: #000;
	letter-spacing: 3px;
	font-weight: bold;
	text-align: center;
	line-height: 160%;
}
.nav_icon{
	display: block flex;
    position: fixed;
    align-items: center;
    right: 30px;
}
.nav_icon_mail{
	width: 20px;
    margin-right: 30px;
     transition: .4s;
}
.nav_icon_mail:hover {
transform: scale(1.2,1.2);
}
.nav_icon_tel{
	display:block;
	height: 23px;
	width:19px;
 transition: .4s;
}
.nav_icon_tel:hover {
transform: scale(1.2,1.2);
}
.nav_icon_tel_sp{
	display:none;
	height: 23px;
 transition: .4s;
}
.nav_icon_tel_sp:hover {
transform: scale(1.2,1.2);
}
.tel_hover {
position: fixed;
right: 25px;
top:72px;
padding: 18px 20px;
background: rgba(0, 0, 0, .8);
box-sizing: border-box;
font-size: 2.5rem;
line-height: 1;
width: 300px;
text-align: center;
font-family: "Lato", sans-serif;
font-weight: 900;
letter-spacing: 2px!important;
font-style: normal;
display:none;
color: #fff;
border-radius: 3px;
}
.tel_hover span.small {
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 1px;
}

@media screen and (min-width: 960px) {

.navbar_toggle{
  display: none;
}
.menu{
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}	
.menu ul li{
	display: block;
  padding: 0px 20px;
	text-align: center;
}
}

a.underline {
	position: relative;
}
a.underline::after {
	background: #FFE102;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -8px;
	position: absolute;
	transition: .5s all;
	width: 0;
}
@media screen and (min-width: 960px) {
	a.underline:hover::after {
		width: 100%;
	}
}

@media only screen and (max-width:960px){
#header_base {
    padding: 5px 15px;
    height: 43px;
}

.logo {
    width:200px;
    height:26px;
}
main {
    margin: 43px auto 0;
}
	
.drawer{
padding: 15px 15px;
position: fixed;
top: 0px;
right: 0px;
pointer-events: auto;
z-index: 100;
}
	
.menu{
background: rgba(0,0,0,0.9);
height: 100%;
position: fixed;
width: 100%;
z-index: 98;
top: 0;
left:0;
}
.menu ul{
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
}	
.menu ul li{
  padding: 10px 20px;
}	
.menu ul a{
	position: relative;
	pointer-events: auto;
}
.menu ul li a{
	font-size: 1.4rem;
	color: #FFF!important;
	letter-spacing: 2px;
	font-weight: bold;
}
.nav_icon{
    right: 70px;
}
.nav_icon_mail{
    margin-right: 25px;
}
.nav_icon_tel{
	display:none;
}
.nav_icon_tel_sp{
	display:block;
}
.tel_hover {
display:none;
}
}

/*フッター*/
footer {
    background: #000;
    margin: 0 auto;
    padding: 28px 30px ;
    display: block flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.footer_menu{
font-size:1.3rem;
color: #FFF;
display: inline-block;
}
.footer_menu:hover{
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.copyright{
font-size:1.4rem;
color: #FFF;
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
display: flex;
align-items: center;
margin: 0;
}
.footer_banner_area{
display: block;
margin: 0 auto;
border-top: 1px #000 solid;
padding: 30px 100px;
text-align: center;
width: 100%;
}
.footer_banner{
max-width: 800px;
margin: 0 auto;
transition: all .3s;
}
.footer_banner:hover {
    transform: scale(1.05);
}

@media only screen and (max-width:768px){
footer {
    padding: 15px 20px;
    display: block;
    text-align: center;
}
.footer_menu{
font-size:1.2rem;
margin: 0 auto 10px;
text-align: center;
}
.copyright{
font-size:1.3rem;
display: block;
margin: 0 auto;
text-align: center;
}
.copyright::after {
width: 40px;
height: 40px;
margin: 10px auto 0;
}
.footer_banner_area{
padding: 18px 20px;
}
}

/* ページTOPに戻る */
.pagetop {
    display: none;
	position: fixed;
	right: 20px;
	bottom: 100px;
    z-index: 50;
}
.pagetop a {
	display: block;
    background: url("images/bt_pagetop.svg")no-repeat center top;
	width: 30px;
	height: 124px;
 transition: .4s;
}
.pagetop a:hover {
transform: translateY(-5px);
}
.page_nav{
display: block flex;
align-items: center;
justify-content: space-between;
gap:30px;
}
@media screen and (max-width: 768px) {
.pagetop {
	right: 10px;
	bottom: 90px;
}
.pagetop a {
	width: 22px;
	height: 91px;
}
}

/*フェードイン*/
.fadein, .time-fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 800ms;
}
.fadein.scrollin, .time-fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.fadein.fadein_l, .time-fadein.fadein_l {
	transform: translate(-50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_l.scrollin, .time-fadein.fadein_l.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}
.fadein.fadein_r.fadein, .time-fadein.fadein_r.fadein {
	transform: translate(50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_r.scrollin, .time-fadein.fadein_r.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}
.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(20px) translateX(-50%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
}

@media screen and (max-width:850px) {
	/*タブレット以下は下からスライドに固定(横ずれを防ぐ為)*/
	.fadein, .time-fadein {
		transform: translate(0, 40px) !important;
	}
	.fadein.scrollin, .time-fadein.scrollin {
		opacity: 1;
		transform: translate(0, 0) !important;
	}
}

/* kv */
.kv{
  margin: 0px auto;
  height: 700px;
  position: relative;
  width: 100%;
background: url('images/kv.jpg')center center no-repeat;
background-size: cover;
padding: 0;
}
.top_logo{
height: 84px;
width: 75px;
background: url('images/logo_white.svg')center center no-repeat;
background-size: contain;
text-indent: -9999px;
-webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7)); /* SafariなどのWebkitブラウザ用 */
filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7)); 
position: absolute;
top: 38%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
}
h1{
color: #fff;
-webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7)); /* SafariなどのWebkitブラウザ用 */
filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7)); 
position: absolute;
text-align: center;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
    font-size: 2.5rem;
    line-height: 2;
    letter-spacing: 3px;
}
@media screen and (max-width: 940px) {
.kv{
height: 100vh;
}
.top_logo{
height: 84px;
width: 75px;
top: 35%;
left: 50%;
}
h1{
top: 50%;
left: 50%;
font-size: 2rem;
line-height: 1.8;
letter-spacing: 2px;
white-space: nowrap;
}
}

/*ページ*/
.title_line {
display: block;
background-color: #000;
margin: 0 auto;
padding: 0;
text-align: center;
}
.title_base {
display: block flex;
max-width: 1280px;
align-items: center;
justify-content: space-between;
margin: 0 auto;
padding: 20px 30px;
box-sizing: border-box;
}
h2 {
font-size: 1.4rem;
line-height: 1;
letter-spacing: 5px;
color: #fff;
margin: 0;
font-weight: normal;
}
.title {
font-size: 5rem;
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
line-height: 1;
color: #fff;
margin-top: -7px;
margin-bottom: -11px;
}
article {
margin: 0;
padding: 0px 30px;
}
.contents_base {
    display: block;
    margin: 0 auto;
    padding: 0;
    max-width: 1260px;
    position: relative;
}
section {
margin: 0 auto 100px;
padding: 0;
}
.top_title {
display: block flex;
align-items: center;
font-size: 7rem;
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
letter-spacing: 0px;
margin: 0 0 40px 0;
}
.top_title span {
font-size: 1.5rem;
font-weight: normal;
letter-spacing: 5px;
padding-left: 35px;
}
h3 {
font-size: 2.4rem;
font-weight: bold;
text-align: center;
letter-spacing: 5px;
margin: 0 auto 20px;
}
.tit_yellow {
display: block;
width: 40px;
height: 4px;
margin: 0 auto 40px;
background-color: #FFE102;
}
.page_contents {
    display: block;
    margin: 0 auto;
    padding: 60px 0 80px 0;
    max-width: 1260px;
    position: relative;
}
.link_btn {
    text-decoration: underline;
    color: #898989;
}
.link_btn:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(images/icon_link.svg) no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0px 6px;
    transition: all .3s;
}

/* トップ */
#information_area {
display: block;
position: relative;
}
.information_item{
display: block flex;
border-bottom: dotted 1px #898989; 
padding: 0px 0px 25px 0px;
margin: 0 auto 25px;
align-items: center;
}
.information_date{
font-size: 1.7rem;
margin-right: 20px;
margin-top: 0;
line-height: 1;
display: flex;
align-items: center;
font-weight: bold;
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: normal;
}
.information_tit{
font-size: 1.5rem;
line-height: 1.6;
margin: 0;
}
.information_new{
display: inline-block;
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
padding: 1px 3px;
font-size: 1.6rem;
color: #000;
line-height: 1;
background: #FFE102;
margin-left: 12px;
}
.more_view_btn a {
position: relative;
display: block;
width: 300px;
padding: 18px 0;
background-color: #000;
font-size: 1.5rem;
color: #fff;
text-decoration: none;
text-align: center;
margin: 30px auto 0;
letter-spacing: 5px;
}
.more_view_btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.more_view_btn a:hover {
transform: translateY(5px);
}
#realestate_banner_area {
display: block flex;
position: relative;
padding: 0;
border-top: 1px #000 solid;
border-bottom: 1px #000 solid;
}
.realestate_banner_buysell {
display: block;
position: relative;
width: 50%;
cursor: pointer;
overflow: hidden;
}
.realestate_banner_rental {
display: block;
position: relative;
width: 50%;
cursor: pointer;
overflow: hidden;
}
.realestate_banner_buysell a {
display: block;
position: relative;
height: 0;
background: url("images/bn_sellbuy.jpg")top center no-repeat;
background-size: 100% auto;
padding-top: calc(26.92% + 35px);
border-right: 1px #000 solid;
}
.realestate_banner_rental a {
display: block;
position: relative;
height: 0;
background: url("images/bn_rental.jpg")top center no-repeat;
background-size: 100% auto;
padding-top: calc(26.92% + 35px);
}
.realestate_banner_buysell a:hover {
background-size: 110% auto;
}
.realestate_banner_rental a:hover {
background-size: 110% auto;
}
.realestate_banner_line {
display: block flex;
justify-content: space-between;
align-items: baseline;
position: absolute;
bottom:0;
height: 35px;
width: 100%;
background: #000;
padding: 0 20px;
}
.realestate_banner_en {
font-size: 3.7rem;
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: normal;
color: #FFF;
-webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7)); /* SafariなどのWebkitブラウザ用 */
filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
margin-top: -12px;
}
.realestate_banner_jp {
font-size: 1.5rem;
color: #FFF;
letter-spacing: 3px;
font-weight: normal;
}
.contents_flex {
display: flex;
justify-content: space-between;
gap:50px;
}
.service_banner{
display: block;
max-width: 605px;
}
.service_banner_consul{
display: block;
position: relative;
height: 0;
background: url("images/bn_consulting.jpg")center center no-repeat;
background-size: 100% auto;
padding-top: 66.66%;
transition: all .3s;
}
.service_banner_realestate{
display: block;
position: relative;
height: 0;
background: url("images/bn_realestate.jpg")center center no-repeat;
background-size: 100% auto;
padding-top: 66.66%;
transition: all .3s;
}
.service_banner_consul:hover{
background-size: 110% auto;
}
.service_banner_realestate:hover{
background-size: 110% auto;
}
.service_banner_en{
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
font-size: 5rem;
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
color: #FFF;
-webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7)); /* SafariなどのWebkitブラウザ用 */
filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
white-space: nowrap;
}
.service_banner_txt {
display: block;
background: #000;
padding: 18px 25px;
color: #fff;
}
.service_banner_tit {
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 5px;
}
.service_banner_p {
font-size: 1.4rem;
font-weight: normal;
line-height: 1.8;
}
.property_slider {
  padding: 0 30px;
}
.slick-list {
  margin: 0 -15px;
}
#property_area .slick-slide {
  margin: 0 15px;
}
.property_img {
margin: 0 auto 15px;
position: relative;
display: block;
overflow: hidden;
}
.property_img img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition-duration: 0.3s;
}
.property_img img:hover{
transform: scale(1.1); /*拡大*/
transition-duratiosn: 0.3s;
}
.property_category {
position: absolute;
right: 0;
top:0;
font-size: 1.2rem;
font-weight: bold;
letter-spacing: 2px;
display: inline-block;
background: #FFE102;
padding: 2px 10px;
z-index: 10;
}
.property_tit {
font-size: 1.6rem;
line-height: 1.6;
margin-bottom: 8px;
}
.property_price {
display: flex;
align-items: center;
font-size: 1.5rem;
line-height: 1.6;
margin-bottom: 5px;
}
.property_price::before {
content: "";
display: inline-block;  
background: url("images/icon_price.svg") center center no-repeat;
background-size: contain;
width: 20px;
height: 20px;
margin-right:10px;
}
.property_madori {
display: flex;
align-items: center;
font-size: 1.4rem;
line-height: 1.5;
font-weight: normal;
margin-bottom: 6px;
}
.property_madori::before {
content: "";
display: inline-block;  
background: url("images/icon_madori.svg") center center no-repeat;
background-size: contain;
width: 20px;
height: 20px;
margin-right:10px;
}
.property_address {
display: flex;
align-items: center;
font-size: 1.4rem;
line-height: 1.5;
font-weight: normal;
margin-bottom: 6px;
}
.property_address::before {
content: "";
display: inline-block;  
background: url("images/icon_address.svg") center center no-repeat;
background-size: contain;
width: 20px;
height: 20px;
margin-right:10px;
}
.property_access {
display: flex;
align-items: center;
font-size: 1.4rem;
line-height: 1.5;
font-weight: normal;
}
.property_access::before {
content: "";
display: inline-block;  
background: url("images/icon_access.svg") center center no-repeat;
background-size: contain;
width: 20px;
height: 20px;
margin-right:10px;
}



/* お知らせ */
.information_page_tit{
font-size: 2rem;
line-height: 1.6;
font-weight: bold;
margin: 15px auto 30px;
}
.information_contents{
position: relative;
}
.information_page_contents{
position: relative;
}
.information_page_contents p{
font-size: 1.5rem;
line-height: 1.8;
margin-bottom: 30px;
}
.information_page_contents img{
width: 100%;
max-width: 700px;
display: block;
text-align: center;
margin: 0 auto 30px;
}
.info_nav{
display: block flex;
align-items: center;
justify-content: space-between;
gap:30px;
margin: 60px auto 0;
}
.info_nav_p{
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
font-size: 2rem;
letter-spacing: 2px;
line-height: 0;
}
.info_nav_prev{
display: flex;
align-items: center;
justify-content: flex-start;
gap:20px;
}
.info_nav_next{
display: flex;
align-items: center;
justify-content: flex-end;
gap:20px;
}
.info_nav_next_btn a{
    display: block flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.5s;
    background: #000;
}
.info_nav_next_btn a::after {
  content: '';
  position: absolute;
  right: 17px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.info_nav_next_btn a:hover {
transform:scale(1.2,1.2);
}
.info_nav_prev_btn a{
    display: block flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.5s;
    background: #000;
}
.info_nav_prev_btn a::after {
  content: '';
  position: absolute;
  left: 17px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
  box-sizing: border-box;
}
.info_nav_prev_btn a:hover {
transform:scale(1.2,1.2);
}
.back_btn a {
position: relative;
display: block;
width: 300px;
padding: 18px 0;
background-color: #000;
font-size: 1.5rem;
color: #fff;
text-decoration: none;
text-align: center;
margin: 50px auto 0;
letter-spacing: 5px;
}
.back_btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
  box-sizing: border-box;
}
.back_btn a:hover {
transform: translateY(5px);
}


/* 会社案内 */
#company_area {
    display: block;
    position: relative;
}
.company_p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.company_sign {
    font-size: 1.7rem;
    line-height: 1.8;
    font-weight: bold;
    text-align: right;
    margin-bottom: 60px;
}
ul.company_list{
margin: 0;
padding-inline-start: 15px;
line-height: 1.6;
}
ul.company_list li{
line-height: 1.6;
margin-bottom: 3px;
}
table.company_table {
    border-collapse:  collapse;
    margin: 0 auto 50px;
}
table.company_table th,
table.company_table td{
	padding: 30px 30px;
    font-size: 1.5rem;
    line-height: 1.8;
}
table.company_table th{
	width: 100px;
}
table.company_table tr {
	border-bottom: 1px #898989 dotted;
}
iframe {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
    height: 450px;
}
.company_name {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 10px;
}
.company_info {
    font-size: 1.5rem;
    text-align: center;
    margin: 0 auto 10px;
}
.company_access {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

/* コンサルティング業務 */
#consulting01 {
    display: block;
    position: relative;
}
#consulting02 {
    display: block;
    position: relative;
}
.consul_p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.consul_flex {
    display: block flex;
    max-width: 800px;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 0 auto 80px;
}
.btn a {
  position: relative;
  display: inline-block;
  padding: 20px 80px;
  background-color: #000;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}
.btn a:hover {
transform: translateY(5px);
}
.anchor {
  padding-top: 92px;
  margin-top: -92px;
}
.consul_box {
    display: block flex;
    justify-content: space-between;
    gap:80px;
    margin: 0 auto 40px;
    align-items: flex-start;
}
.consul_box img {
    width: 30%;
    object-fit: contain;
}
.consul_btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
}
h4 {
  display: block;
  padding-bottom: 14px;
    font-size: 2rem;
    letter-spacing: 2px;
    border-bottom: solid 3px #FFE102;
    position: relative;
    margin-bottom: 40px;
    line-height: 1.6;
}
h4::after {
  content: "";
  position: absolute;
  width: 85%;
  border-bottom: solid 3px #000;
  bottom: -3px;
  right: 0px;
}
.consul_partner {
    display: block;
    margin: 0 auto 80px;
    padding: 0;
    border: 1px solid #000;
    max-width: 900px;
    text-align: center;
}
.consul_partner_tit {
    display: block;
    background-color: #FFE102;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.consul_partner_box {
    display: inline-block;
    margin: 0;
    padding: 25px 40px;
    text-align: center;
    font-size: 1.5rem;
}
.consul_partner_p {
    font-size: 1.5rem;
    line-height: 1.8;
}
.consul_partner_tit2 {
    display: inline-block;
    padding: 4px 25px;
    border-radius: 100vh;
    font-size: 1.5rem;
    background-color: #000;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 20px auto 10px;
}
ul.consul_lineup{
  list-style:none;
  padding-inline-start: 0px;
  margin-bottom: 80px;
}
ul.consul_lineup li{
    background: url("images/maru.svg")left 3px no-repeat;
  background-size:20px 20px;
  padding-left: 40px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
}
.consul_grid {
    display: grid;
    gap:30px 50px;
    grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
    margin: 0 auto 60px;
}
.consul_grid_box {
    display: flex;
    align-items: center;
    gap: 25px;
}
.consul_grid_box img {
    width: 100px;
}
.consul_step {
    display: block;
    border-radius: 50%;
    background-color: #FFE102;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.8rem;
    margin: 0;
    padding: 10px;
    text-align: center;
    width: 68px;
    height: 68px;
    letter-spacing: 0;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}
.consul_step span {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    display: block;
}
.consul_step_tit {
font-size: 1.8rem;
line-height: 1.6;
margin-bottom: 10px;
font-weight: bold;
}
.consul_step_p {
    font-size: 1.3rem;
}
.consul_banner {
    max-width: 600px;
    display: block;
    margin: 0 auto;
    transition: all .3s;
}
.consul_banner:hover {
    transform: scale(1.05);
}


/* 不動産業務 */
.re_flex {
    display: flex;
    align-items: flex-start;
}
.re_flex_l {
    display: block;
    width: 50%;
    border-right: 1px solid #000;
    padding-right: 60px;
    position: relative;
}
.re_flex_r {
    display: block;
    width: 50%;
    padding-left: 60px;
    text-align: center;
}
.re_flex_box {
    display: block;
    padding: 50px 0;
}
.re_yajirushi {
    display: block;
    background: url("images/yajirushi.svg")22px top no-repeat;
    background-size: contain;
    margin: 10px 0;
    height: 20px;
}
.re_p {
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
    margin: 0 auto 10px;
}
ul.consul_lineup li span{
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.6;
    margin-top: 5px;
}


/* プライバシーポリシー */
#policy_area {
    display: block;
    position: relative;
}
.policy_p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.policy_tit {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid #000;
    padding: 5px 25px;
}
ol.policy_ol{
  padding-inline-start: 20px;
  margin-bottom: 40px;
}
ol.policy_ol li{
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* 物件情報 */
#property_info_area {
    display: block;
    position: relative;
}
.pi_grid {
    display: grid;
    gap:50px 60px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 3fr));
    margin: 0 auto 60px;
}
.pi_category {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 3px;
    display: inline-block;
    background: #FFE102;
    padding: 2px 15px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.pi_tit {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.pi_price {
    display: block;
    border-bottom: 1px solid #000;
    padding-bottom: 0px;
    margin-bottom: 50px;
    font-size: 1.4rem;
vertical-align: baseline;
}
.pi_price span {
font-weight: bold;
font-size: 3rem;
margin: 0 10px;
letter-spacing: 0;
}
table.pi_table {
width: 100%;
max-width: 1000px;
margin: 0 auto 30px;
border-collapse:  collapse;
}
table.pi_table th,
table.pi_table td{
border: 1px dotted #898989;
padding: 10px 25px;
font-size: 1.3rem;
}
table.pi_table th{
text-align: center;
background: #000;
color: #FFF;
width: 20%;
min-width: 120px;
}
table.pi_table td.price{
font-weight: bold;
}
.property_info_slider {
display: block;
width: 100%;
max-width: 800px;
margin: 0 auto 80px;
}
.slider {
padding: 0 30px;
margin: 0 auto 20px;
}
.thumbnail {
padding: 0 30px;
max-width: 500px;
display: block;
margin: 0 auto;
}
.thumbnail .slick-track {
  transform: unset !important;
}
.thumbnail_img img {
aspect-ratio: 1 / 1;
object-fit: cover;
cursor: pointer;
}
.thumbnail img {
opacity: .5;
transition: opacity .5s linear;
}
.thumbnail .slick-current img {
opacity: 1 !important;
}
.slick_img img {
aspect-ratio: 4 / 3;
object-fit: contain;
background: #000;
}
#property_info_area .slick-slide {
  margin: 0 5px;
}


/* お問い合わせ */
#contact_area {
    display: block;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.contact_p {
    font-size: 1.5rem;
    margin: 0 auto 30px;
    line-height: 180%;
    text-align: center;
}
.contact_p2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: block;
}
.error_messe{
    font-size: 1.3rem!important;
}
#formbase {
	margin: 0 auto;
    max-width: 800px;
}
#formWrap {
	margin:0px auto;
}
table.contact_table{
	margin:0px auto;
	border-collapse:collapse;
	width:100%;
	text-align: left;
    box-sizing: border-box;
}
table.contact_table td,
table.contact_table th{
	float:left;
	font-size:1.5rem;
	width: 100%;
}
table.contact_table td p,
table.contact_table th p{
margin:0;
padding:0;
}
.wpcf7 p {
display: inline;
}
table.contact_table td{
margin-bottom: 30px;
line-height: 160%;
}
table.contact_table th{
margin-bottom: 10px;
font-weight: bold;
}
fieldset {
    display: none;
}
.screen-reader-response {
    display: none;
}
.wpcf7-response-output {
   display: none;
}
.wpcf7-not-valid-tip{
font-size: 1.3rem!important;
display: block;
margin: 5px 0 0 0;
font-weight: bold!important;
color:#000!important;
}
.wpcf7-spinner {
    display:none!important;
}
textarea {overflow: auto;}
input, textarea, select {
border: 1px solid #000;
background-color: #FFF;
padding: 15px 25px;
font-size: 1.5rem;
border-radius: 5px;
line-height: 160%;
box-sizing: border-box;
width: 100%;
}
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    padding: 0;
    margin-right: 10px;
}
input[type="checkbox"] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  vertical-align: -6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    padding: 0;
    margin-right: 10px;
    border-radius: 0;
}
input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFE102;
  content: '';
}
.sendbutton{
	margin:0px auto 0;
    display: flex block;
    justify-content: center;
}
.sendbutton p{
    display: flex;
	gap:100px;
}
.contact_btn{
    position: relative;
    display: block;
    width: 250px;
    padding: 18px 0;
    background-color: #000;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin: 30px auto 0;
    letter-spacing: 5px;
    border-radius: 0;
    font-weight: bold;
    transition: all .3s;
    cursor: pointer;
}
.contact_btn:hover{
transform: translateY(2px);
}
.hissu{
	font-size: 1.2rem;
	font-weight: bold;
	background: #FFE102;
	padding: 3px 4px;
    margin-left: 5px;
}
.contact_thanks {
    font-size: 5rem;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
    line-height: 100%;
    margin: 0 auto 40px;
    padding: 0;
    letter-spacing: 5px;
    text-align: center;
}
.contact_table_flex p:first-child{
display:flex;
align-items:center;
gap:5px;
margin-bottom:10px;
}
.text_box_zip {
	width:200px;
	min-height: 58px;
}
.text_box_prefecture {
	width:200px;
	min-height: 58px;
}
.text_box_mini {
	width:25%;
	margin-right:10px;
	min-height: 58px;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}


@media only screen and (max-width:798px){
.title_base {
padding: 10px 20px;
}
h2 {
font-size: 1.1rem;
letter-spacing: 3px;
}
.title {
font-size: 2.6rem;
margin-top: -5px;
margin-bottom: -7px;
}
article {
background: none;
padding: 0px 20px;
}
section {
margin: 0 auto 50px;
}
.top_title {
font-size: 2.5rem;
margin: 0 0 20px 0;
}
.top_title span {
font-size: 1.2rem;
letter-spacing: 3px;
padding-left: 20px;
}
h3 {
font-size: 1.8rem;
letter-spacing: 3px;
margin: 0 auto 12px;
}
.tit_yellow {
width: 38px;
height: 3px;
margin: 0 auto 20px;
}
.page_contents {
    padding: 25px 0 35px 0;
}
    
/* トップ */
.information_item{
padding: 0px 0px 14px 0px;
margin: 0 auto 16px;
display: block; 
}
.information_date{
font-size: 1.5rem;
margin-bottom: 8px;
}
.information_tit{
font-size: 1.3rem;
}
.information_new{
font-size: 1.4rem;
margin-left: 10px;
}
.more_view_btn a {
width: 100%;
max-width: 400px;
padding: 15px 0;
font-size: 1.3rem;
letter-spacing: 3px;
}
#realestate_banner_area {
display: block;
border-bottom: none;
}
.realestate_banner_buysell {
width: 100%;
}
.realestate_banner_rental {
width: 100%;
}
.realestate_banner_buysell a {
padding-top: calc(26.92% + 25px);
border-right: none;
}
.realestate_banner_rental a {
padding-top: calc(26.92% + 25px);
}
.realestate_banner_line {
height: 25px;
padding: 0 10px;
}
.realestate_banner_en {
font-size: 2.4rem;
margin-top: -7px;
}
.realestate_banner_jp {
font-size: 1.2rem;
letter-spacing: 3px;
}
.contents_flex {
display: block;
}
.service_banner{
max-width: 500px;
margin: 0 auto 20px;
}
.service_banner_en{
font-size: 3.5rem;
}
.service_banner_txt {
padding: 15px 20px;
}
.service_banner_tit {
font-size: 1.5rem;
margin-bottom: 3px;
}
.service_banner_p {
font-size: 1.2rem;
}
.property_slider {
  padding: 0 30px;
}
.slick-list {
  margin: 0 -10px;
}
.slick-slide {
  margin: 0 10px;
}
.property_img {
margin: 0 auto 10px;
}
.property_tit {
font-size: 1.5rem;
margin-bottom: 6px;
}
.property_price {
font-size: 1.3rem;
margin-bottom: 4px;
}
.property_price::before {
width: 18px;
height: 18px;
margin-right:8px;
}
.property_madori {
font-size: 1.2rem;
margin-bottom: 5px;
}
.property_madori::before {
width: 18px;
height: 18px;
margin-right:8px;
}
.property_address {
font-size: 1.2rem;
margin-bottom: 5px;
}
.property_address::before {
width: 18px;
height: 18px;
margin-right:8px;
}
.property_access {
font-size: 1.2rem;
}
.property_access::before {
width: 18px;
height: 18px;
margin-right:8px;
}

    
    
/* お知らせ */
.information_page_tit{
font-size: 1.6rem;
margin: 10px auto 18px;
}
.information_page_contents p{
font-size: 1.3rem;
margin-bottom: 20px;
}
.information_page_contents img{
margin: 0 auto 20px;
}
.info_nav{
gap:30px;
margin: 40px auto 0;
}
.info_nav_p{
font-size: 1.6rem;
letter-spacing: 2px;
}
.info_nav_prev{
gap:15px;
}
.info_nav_next{
gap:15px;
}
.back_btn a {
width: 100%;
max-width: 400px;
padding: 15px 0;
font-size: 1.3rem;
letter-spacing: 3px;
margin: 30px auto 0;
}

    /* 会社案内 */
.company_p {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.company_sign {
    font-size: 1.4rem;
    margin-bottom: 40px;
}
table.company_table{
    margin: 0 auto 30px;
}
table.company_table th,
table.company_table td{
    display: block;
    width: 100%;
    font-size: 1.3rem;
    text-align: left;
}
table.company_table th{
	padding: 10px 0 0 0 ;
}
table.company_table td{
	padding: 0 0 10px 0;
}
iframe {
    margin: 0 auto 18px;
    height: 300px;
}
.company_name {
    font-size: 1.6rem;
    margin: 0 auto 7px;
}
.company_info {
    font-size: 1.3rem;
    margin: 0 auto 7px;
}
.company_access {
    font-size: 1.3rem;
}
    
    
/* コンサルティング業務 */
.consul_p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}
.consul_flex {
    display: block;
    max-width: 400px;
    margin: 0 auto 40px;
}
.btn a {
  display: block;
  padding: 15px 40px;
  font-size: 1.3rem;
  margin: 0 auto 10px;
    
}
.anchor {
  padding-top: 55px;
  margin-top: -55px;
}
.consul_box {
    display: block;
}
.consul_box img {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 400px;
}
h4 {
  padding-bottom: 10px;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
h4::after {
  width: 75%;
}
.consul_partner {
    margin: 0 auto 40px;
}
.consul_partner_tit {
    padding: 10px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.consul_partner_box {
    padding: 15px 25px;
    font-size: 1.2rem;
}
.consul_partner_p {
    font-size: 1.2rem;
    text-align: left;
}
.consul_partner_tit2 {
    padding: 3px 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 15px auto 10px;
}
ul.consul_lineup{
  margin-bottom: 40px;
}      
ul.consul_lineup li{
  background: url("images/maru.svg")left 1px no-repeat;
  background-size:18px 18px;
  padding-left: 35px;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.consul_grid {
    display: block;
    margin: 0 auto 30px;
}
.consul_grid_box {
    margin: 0 auto 18px;
    gap:12px;
}
.consul_grid_box img {
    width: 80px;
}
.consul_step {
    font-size: 2rem;
    padding: 8px;
    width: 50px;
    height: 50px;
}
.consul_step span {
    font-size: 1rem;
}
.consul_step_tit {
font-size: 1.3rem;
margin-bottom: 5px;
}
.consul_step_p {
    font-size: 1.1rem;
}
    

/* 不動産業務 */
.re_flex {
    display: block;
}
.re_flex_l {
    width: 100%;
    border: none;
    padding: 0px;
    margin: 0 auto 40px;
}
.re_flex_r {
    width: 100%;
    padding: 0px;
}
.re_flex_box {
    padding: 20px 0 10px 0;
}
.re_yajirushi {
    background: url("images/yajirushi.svg")16px top no-repeat;
    margin: 5px 0;
    height: 15px;
}
.re_p {
    font-size: 1.3rem;
}
ul.consul_lineup li span{
    font-size: 1.1rem;
    margin-top: 7px;
}

    
/* プライバシーポリシー */
.policy_p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.policy_tit {
    font-size: 1.4rem;
    margin-bottom: 8px;
    padding: 4px 12px;
}
ol.policy_ol{
  margin-bottom: 20px;
}
ol.policy_ol li{
    margin-bottom: 10px;
    font-size: 1.2rem;
}
    
    
/* 物件情報 */
.pi_grid {
    gap:30px 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 0 auto 30px;
    max-width: 380px;
}
.pi_category {
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 1px 10px;
    margin-bottom: 10px;
}
.pi_tit {
    font-size: 1.6rem;
    margin-bottom: 5px;
}
.pi_price {
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.pi_price span {
font-size: 2.5rem;
margin: 0 5px;
}
table.pi_table {
margin: 0 auto 20px;
}
table.pi_table th,
table.pi_table td{
display: block;
width: 100%;
font-size: 1.2rem;
box-sizing: border-box;
}
table.pi_table th{
padding: 5px 20px;
width: 100%;
border: none;
}
table.pi_table td{
padding: 10px 20px;
width: 100%;
border-top: none;
border-bottom: none;
}
table.pi_table tr:last-child{
border-bottom: 1px dotted #898989;
}
.property_info_slider {
margin: 0 auto 40px;
}
.slider {
padding: 0 20px;
margin: 0 auto 10px;
}
.thumbnail {
padding: 0 20px;
}
#property_info_area .slick-slide {
  margin: 0 2px;
}

    
/* お問い合わせ */
.contact_p {
    font-size: 1.3rem;
    text-align: left;
}
.contact_p2 {
    font-size: 1.2rem;
}
.error_messe{
    font-size: 1.1rem!important;
}
table.contact_table td,
table.contact_table th{
	font-size:1.3rem;
}
table.contact_table td{
	margin-bottom: 20px;
}
table.contact_table th{
	margin-bottom: 8px;
}
textarea {overflow: auto;}
input, textarea, select {
padding: 10px 15px;
font-size: 1.3rem;
}
input[type="radio"] {
    margin-right: 6px;
}
.sendbutton{
    gap:25px;
}
.sendbutton p{
    display:block;
}
.contact_btn{
    padding: 12px 30px;
    font-size: 1.4rem;
    letter-spacing: 2px;
	margin:20px auto 0;
}

.hissu{
	font-size: 1.2rem;
	padding: 2px 3px;
    margin-left: 4px;
}
.contact_thanks {
    font-size: 3rem;
    margin: 0 auto 20px;
    padding: 0;
    letter-spacing: 3px;
}
.contact_table_flex p:first-child{
gap:2px;
margin-bottom:5px;
}
.text_box_zip {
width:100px;
min-height: 42px;
}
.text_box_prefecture {
width:200px;
min-height: 42px;
}
.text_box_mini {
min-height: 42px;
}
.wpcf7-not-valid-tip{
   font-size: 1.1rem;
}
    
.br-pc {
  display: none;
}
	
.br-sp {
  display: block;
}
	
}

.grecaptcha-badge { visibility: hidden; }