<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*=============================================================
#base
=============================================================*/

html,body{
    width: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	color: #000;
	text-align: left;
 	-webkit-text-size-adjust: 100%;
  position: relative;
}

#container {
	margin-right:auto;
	margin-left:auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
	width: 100%;
	background-color: #FFF;
	overflow: hidden;
}
.hd {
	display: none;
}

.yu_min {
  font-family : YuMincho,    /* Mac用 */
	'Yu Mincho', /* Windows用 */
	serif;
}

.yu_go{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.mont {
  font-family: 'Montserrat', sans-serif;
}

.raleway {
  font-family: 'Raleway', sans-serif;
}

.pc_only {
	display: none;
}

.tb_only {
	display: none;
}


.sp_only {
	display: block;
}

section {
  clear: both;
  overflow: hidden;
}


a img, img {
  width: 100%;
  height: auto;
}

.body {
	max-width: 100%;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
	text-align: left;
}

.body_in {
	max-width: 90%;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
	text-align: left;
}

a:hover {
  transition: all 0.5s ease 0s;
}

a {
  color: #000;
  text-decoration: none;
}

/* main {
  padding-top: 60px;
} */

.pricedown main,
.area main{
  padding-top: 0;
}


/*===========
上のぱんくず
===========*/
.breadcrumb-list {
  display: none;
}

#menu-list {
  padding-top: 150px;
  background-color: #f8f8f8;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

#menu-list ul {
  display: flex;
  justify-content: center;
}

#menu-list ul li {
  width: 10em;
  text-align: center;
}

#menu-list ul li a {
  color: #000;
  display: block;
}

.menu_underLine ul li a {
  position: relative;
}

.menu_underLine li a:hover{
	color:#373537;
}

.menu_underLine li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background:#373537;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.menu_underLine li a:hover::after {
  transform: scale(1, 1);
}

/*=============================================================
#contants
=============================================================*/

section {
  clear: both;
  overflow: hidden;
  position: relative;
}

section::before {
  content: "";
  margin-top: -55px;
  height: 55px;
  display: block;
  visibility: hidden;
}

ul.list_icon {
  margin-bottom: 0px;
  margin-right: 0px;
  padding: 3px 0;
  display: flex;
}

ul.list_icon li {
  color: #fff;
  text-align: center;
  margin-right: .5em;
  font-weight: normal;
  display: inline;
  padding: 4px 3%;
  border-radius: 15px;
  font-size: .8rem;
}

/*==========NEW============*/

ul.list_icon li.typeNew {
  background-color: #F600A8;
}

ul.list_icon li.new {
  background-color: #f600a8;
}

/*==========OLD=========*/
ul.list_icon li.old {
  background-color: #323b75;
}
/*==========新築============*/

ul.list_icon li.type1 {
  background-color: #CC3248;
}
/*==========中古=============*/

ul.list_icon li.type2 {
  background-color: #323B75;
}

/*==========マンション=========*/

ul.list_icon li.type3 {
  background-color: #FC9732;
}

/*==========土地=========*/

ul.list_icon li.type4 {
  background-color: #2B7241;
}
/*==========その他=========*/
ul.list_icon li.type5 {
  background-color: #b847c4;
}


/*==========土地=========*/

ul.list_icon li.typeTenku {
  background-color: #0083BD;
}

.blinking {
  -webkit-animation: blink 1.3s ease-in-out infinite alternate;
  -moz-animation: blink 1.3s ease-in-out infinite alternate;
  animation: blink 1.3s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}






.BtnBase {
  width: 98%;
  margin: 40px auto;
}


.BtnBase a {
  color: #333;
  padding: 12px 1em;
  display: block;
  border: #333 solid 1px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  background-color: #fff;
		border-radius: 40px;
}

.BtnBase a:hover {
  text-decoration: none;
  background-color: #333;
  color: #fff;
}

.BtnBase a span:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/images/common/btn_arrow.png);
  background-size: contain;
  vertical-align: -3px;
  background-repeat: no-repeat;
  position: absolute;
  right: 3em;
  transition: all .7s;
}

.BtnBase a:hover span:after {
  transform: translate(10px, 0);
  background-image: url(/images/common/btn_arrow_on.png);
}

.BtnBase.form_bt a {
  background-color: rgba(226, 239, 223, 0.9);
}

.BtnBase.form_bt a:hover {
  background-color: #333;
}

#g-nav_wrap h1 {
  width: 45%;
  padding-left: 3%;
  padding-top: 10px;
}

/*=============================================================
pagetop
=============================================================*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 70px;
  background: #666666;
  z-index: 20;
}

#page_top:hover {
  opacity: 0.6;
}

#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;
}

/*=============================================================
#FOOTER
=============================================================*/

#footer {
  position: relative;
  background: #F3F7F8;
}

#footer .body {
  width: 90%;
}

#footer .siteMap {
  padding-top: 40px;
  display: flex;
  flex-wrap:wrap;
  grid-gap: 1rem;
}

.font-b {
  font-weight:700;
}

.font-r {
  font-weight:400;
}

#footer .siteMap&gt;li {
  width: 100%;
}

#footer .siteMap li dl {
  display: flex;
  flex-wrap: wrap;
  grid-gap: .5rem;
}

#footer .siteMap li dl dt {
  width: 100%;
  text-align: center;
  border-bottom: 1px dotted #000;
}

#footer .siteMap li dl dt a {
  position:relative;
  font-size: 18px;
  text-align: left;
  line-height: 1;
  white-space: nowrap;
}

#footer .siteMap li dl dd {
  width: 100%;
}

#footer .siteMap li dl dd ul {
  display: flex;
  flex-wrap: wrap;
  grid-gap: .5rem 1rem;
  justify-content: center;
}

#footer .siteMap li dl dd ul li {
  width: calc(50% - .5rem);
}

#footer .siteMap li dl dd ul li a {
  position:relative;
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 5px;
  padding: 5px 0;
  text-align: center;
  display: block;
}

#footer .siteMap li dl dd ul li a:hover {
  text-decoration: underline;
}


#footer  .footer_list {
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
}

#footer  .footer_list .siteMap_bottom li {
  border-bottom: 1px solid #CCCCCC;
  padding: 5px 0;
}

#footer  .footer_list .siteMap_bottom li:last-child {
  border-style: none;
}

#footer  .footer_list .siteMap_bottom li a {
  font-size: 12px;
}

#footer  .footer_list .siteMap_bottom li a:hover {
  text-decoration: underline;
}

#footer .footer_SnsList {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  bottom: 10px;
}

#footer .footer_SnsList li {
  width: 13%;
  margin: 20px 2% 0;
}

#footer .footer_SnsList li a {
  display: block;
}

#footer .footer_bottom {
  padding-top: 30px;
}

#footer .footer_bottom .footer_contact h1 {
  font-weight: bold;
  font-size: .8rem;
  letter-spacing: .1em;
  text-align: center;
}

#footer .footer_bottom .footer_contact ul {
  font-size: .8rem;
  padding-top: 10px;
  flex-wrap: wrap;
  display: inline-flex;
}

#footer .footer_bottom .footer_contact ul li:first-child {
  padding-left: 0;
}

#footer .footer_bottom .footer_contact p.footer_txt {
  padding: 10px 0;
  font-size: .6rem;
  line-height: 1.8em;
}

#footer .footer_bottom p.footer_copy {
  font-size: .6rem;
  color: #686868;
  text-align: center;
  padding-bottom: 80px;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#ft_sp{
  display: none;
}


/* 下層ページのリンクメニュー＆問い合わせボタン */
.top_menu{
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.top_menu li{
  width: calc(50% - .5rem);
  z-index: 1;
}
.move_bt a{
  display: block;
  background-color: #2e4f07;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 1rem;
}
.move_bt a span {
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 10;
}
.move_bt a::before ,.move_bt a::after{
  content: "";
  display: inline-block;
  width: 50%;
  height: 100%;
  background-color: #6fb92c;
  position: absolute;
  top: 0;
  transition: all .5s;
}
.move_bt a::before {
  left: 0;
  transform: translateX(calc(-100% + 10px));
}
.move_bt a::after {
  right: 0;
  transform: translateX(calc(100% - 10px));
}
.move_bt a:hover::before ,.move_bt a:hover::after {
  transform: translateX(0%);
}
  
.urder_page_button_area{
  background-color: #f1ffe3;
  padding: 2rem 1rem;
}
.urder_page_button_area .body {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
  width: 80%;
}
#pageUnder .urder_page_button_area .body{
  padding: 0;
}
.urder_page_button_area .body .button {
  background-color: #666;
  width: calc(50% - .5rem);
}
.urder_page_button_area .body .button a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  grid-gap: .25rem;
  padding: .8rem 1rem;
}
.urder_page_button_area .body .button a img {
  width: 2rem;
  max-height: 1.8rem;
}
.urder_page_button_area .body .button a .txt {
  color: #fff;
}


/*＝＝＝＝＝＝＝＝＝お気に入りストック＝＝＝＝＝＝＝＝＝＝＝＝*/
#colorbox #cboxContent{
  background-color: unset;
}
#colorbox #cboxContent #stock{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
}
#colorbox #cboxContent #stock .tit_r{
  padding: .5rem 1rem;
  font-size: clamp(1.125rem, 1.051rem + 0.23vw, 1.25rem);/*18~20px(520~1400px)*/
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  background-color: #6FB92C;
  color: #fff;
}
#colorbox #cboxContent #stock .body .box{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#colorbox #cboxContent #stock .body .box .bt{
  margin-bottom: 1.5rem;
}
#colorbox #cboxContent #stock .body .box .bt a{
  text-align: center;
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.125rem);/*16~18px(520~1400px)*/
  background-color: #F7F6F2;
  color: #666;
  border: 2px solid #888;
  border-radius: 5px;
  font-weight: bold;
  padding: .5rem 1rem;
  display: block;
}
#colorbox #cboxContent #stock .body .box .bt:nth-last-of-type(2) a{
  background-color: #6FB92C;
  color: #fff;
}
#colorbox #cboxContent&gt;#cboxClose{
  display: none!important;
}

@media all and (max-width: 520px) {
.top_menu li{
  width: 100%;
}
.urder_page_button_area .body {
  flex-wrap: wrap;
}
.urder_page_button_area .body .button {
  width: 100%;
}

#ft_sp{
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 500;
  text-align: center;
  display: block;
}

#ft_sp ul {
  overflow: hidden;
  margin-right: 0px;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  z-index: 200;
  width: 100%;
  background-color: #6fb92c;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

#ft_sp ul li {
  width: 25%;
}

#ft_sp ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  grid-gap: .25rem;
  align-items: center;
  padding: .25rem 0;
}

#ft_sp ul li a img {
  max-width: 60px;
  max-height: 40px;
  object-fit: contain;
}

#ft_sp ul li a .txt {
  font-size: clamp(0.75rem, 0.427rem + 1.38vw, 0.875rem);/*12~14px(375~520px)*/
  color: #fff;
  line-height: 1.2;
}

#ft_sp ul li.tel a {
  background-color: #6fb92c;
}

#ft_sp ul li.tel a:hover {
  background-color: #808080;
}

#ft_sp ul li.mail a  {
  background-color: #339933;
}

#ft_sp ul li.mail a:hover {
  background-color: #808080;
}

#ft_sp ul li.member a  {
  background-color: #6fb92c;
}

#ft_sp ul li.member a:hover {
  background-color: #808080;
}

#ft_sp ul li.page_top a {
  background-color: #339933;
}

#ft_sp ul li.page_top a:hover {
  background-color: #808080;
}

#ft_sp ul li.page_top a img:hover {
opacity: 0.5;
}

}</pre></body></html>