@charset "UTF-8";
/* CSS Document */


/* Reset
------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal; }
address,em { font-style: normal; }
strong,th { font-weight: normal; }
.form-table table tr th { vertical-align: top; }
table {border-collapse: collapse; border-spacing: 0; }
th { text-align: left; }
legend { display: none;	}
img,fieldset { border: 0; }
img { vertical-align: middle; }
li { list-style-type: none; }
h1,h2,h3,h4,h5,h6,p,ul,li,dl,dt,dd,ol,hr { margin: 0px; padding: 0px; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
*:first-child+html body {
	font-size: 64.5%; /* IE Hack */
}
html {
	overflow-y: scroll; /* ページ切り替え時のガタつき防止 */
	-webkit-text-size-adjust: 100%; /* pc上とspで文字サイズ固定&spの縦と横画面で文字サイズ固定 */
}
img {
    box-shadow: #000 0 0 0; /* firefoxのfadeのずれ調整 */
} 
img, x:-moz-any-link, x:default {
    box-shadow: #000 0 0 0; /* IE以下のfadeのずれ調整 */
}


/* layout
------------------------------------------------------------
------------------------------------------------------------*/

/* common */
html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	width: 100%;
	height: 100%;
	height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    line-height: 1.4285em;
    color: #333;
    background-color: #fff;
}
a {
	color: #333;
	text-decoration: none;
}
hr{
	width: 100%;
	border: none;
	border-top: 1px solid #dbdbdb;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* トップページ 
------------------------------------------------------------
------------------------------------------------------------*/

/* header 
------------------------------------------------------------*/
header{
    width: 100%;
    height: 60px;
    display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: solid 1px #808080;
    z-index: 100;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* 印刷時、ヘッダー固定を解除 */
@media print{
	header{
	width: 100%;
    height: 60px;
    display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    background-color: #fff;
    position: static;
    top: 0;
    left: 0;
    border-bottom: solid 1px #808080;
    z-index: 100;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    }
}
header h1{
    width: 170px;
    padding-left: 20px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
header h1:hover{
    opacity: 0.6;
}
header h1 img{
    width: 100%;
    height: auto;
}

@media screen and ( max-width:840px )
{
	header h1{
    width: 106px;
	padding-left: 10px;
	}
}


/* menu 
------------------------------------------------------------*/
.menu-wrap {
    height: 59px;
	position: relative;
}
.menu {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.menu img {
    width: 80px;
    height: 32px;
	padding-top: 13px;
}
.menu > li {
    width: 130px; 
	text-align: center;
	position: relative;
}
.menu > li a {
    height: 59px;
    display: block;
	-webkit-transition: all .3s;
	transition: all .3s;
	color: #575757;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.menu > li:hover a {
    background-color: #f2f0ea;
}
*.menu > li:hover .menu__second-level li a:hover {
    opacity: 0.5;
}
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
}
.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.menu__second-level li {
	margin: 0 5px;
	font-size: 12px;
}
.menu__second-level li a{
    padding-top: 21px;
}
.menu__second-level li.lines {
	margin: 0 5px;
	font-size: 10px;
	line-height: 1.5em;
}
.menu__second-level li.lines a{
    padding-top: 15px;
}
.menu__second-level li:first-child {
	border-top: solid 1px #fff;
}
.menu__second-level li:not(:last-child) {
	border-bottom: solid 1px #fff;
}
.menu {
    *zoom: 1;
}
.menu > li.menu__single {
    position: relative;
}
li.menu__single ul.menu__second-level {
    position: absolute;
    top: 59px;
    width: 100%;
    background-color: #f2f0ea;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__single:hover ul.menu__second-level {
    top: 59px;
    visibility: visible;
    opacity: 1;
}

/* button 
------------------------------------------------------------*/
.btn {
	width: 300px;
	height: 42px;
	position: relative;
	line-height: 42px;
	font-weight: 600;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn::before, .btn::after {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events: none; /* マウスイベントを透過 */
}
.btn-00::before,
.btn-01::before,
.btn-02::before,
.btn-03::before,
.btn-06::before{
	z-index: 1;
	opacity: 0;
	background: rgba(255, 255, 255, 0.1);
	transform: scale(0.1, 1);
}
.btn-04::before {
	z-index: 1;
	opacity: 0;
	background: rgba(102, 102, 102, 0.2);
	transform: scale(0.1, 1);
}
.btn:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}
.btn-00::after,
.btn-01::after,
.btn-02::after,
.btn-03::after,
.btn-06::after{
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-04::after {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid rgba(87, 87, 87, 0.6);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn:hover::after {
	transform: scale(1, .1);
	opacity: 0;
}
.btn-00 {
	background-color: #6a84ad;
	color: #fff;
}
.btn-01 {
	background-color: #546fa0;
	color: #fff;
}
.btn-02 {
	background-color: #3c5b8e;
	color: #fff;
}
.btn-03 {
	background-color: #5c4732;
	color: #fff;
}
.btn-04 {
	color: #575757;
}
.btn-05 {
	width: 300px;
	height: 42px;
	background-color: #444;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-05:hover {
	background-color: #3c5b8e;
	color: #fff;
}
.btn-06 {
	background-color: #666666;
	color: #fff;
}
@media screen and (min-width: 768px) {
.btn-flame-wrap{
	position: fixed;
	/*
	right : 0;
	bottom: 0;
	*/
	left: -1px;
	top: 59px;
	z-index: 100;
}
.btn-flame{
	width: 140px;
	height: 80px;
	line-height: 80px;
}
.btn-flame img{
	width: auto;
	height: 32px;
}
.sp-only {
	display: none;
}
}
.btn-center{
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
}
.btn-center a{
	margin: 0 10px;
}

/* video 
------------------------------------------------------------*/
.video-wrap{
	width: 100%;
	height: 95vh;
	height: -webkit-calc(100vh - 60px);
	height: calc(100vh - 60px);
	margin: 60px 0 100px 0;
	line-height: 0;
	position: relative;
	overflow: hidden;
	background-image: url('../images/top/poster.jpg');
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	animation: fadeIn 4s cubic-bezier(.7, .03, .25, 1) 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
}
@keyframes fadeIn { 
    0% {opacity: 0} 
    100% {opacity: 1} 
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
video {
	min-width: 100%;
	min-height: 100vh;
	z-index: 1;
}
.video-title{
	width: 100%;
	height: 100vh;
	position: absolute;
	left : 40%;
	left: -webkit-calc(50% - 185px) ;
	left: calc(50% - 185px) ;
	top: 40%;
	z-index: 2;
}
.video-title img{
	width: 370px;
	height: 140px;
	-webkit-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	-moz-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	-ms-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
}
.video-scroll{
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 49%;
	left: -webkit-calc(50% - 20px) ;
	left: calc(50% - 20px) ;
	top: 90%;
	z-index: 2;
}
.video-scroll img{
	width: 40px;
	height: auto;
	-webkit-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	-moz-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	-ms-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
}

/* search 
------------------------------------------------------------*/
.search-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
}
.top-search-title{
	width: 20%;
	margin-top: 50px;
	border: solid 1px #808080;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.top-search-title img{
	width: 100px;
	height: auto;
}
/* タブ切り替え全体のスタイル */
.tabs {
    width: 80%;
    margin: 0 auto;
	background:linear-gradient(90deg,#808080 0%,#808080 50%,#f2f0ea 50%,#f2f0ea 100%);
    color: #fff;
}
/* タブのスタイル */
.tab-item {
    width: 50%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    float: left;
    -webkit-transition: all .3s;
	transition: all .3s;
}
.tab-item img {
    width: 112px;
	height: 27px;
}
.tab-item:hover {
    opacity: 0.6;
}
/* ラジオボタンを全て消す */
input[name="tab-item"] {
    display: none;
}
/* タブ切り替えの中身のスタイル */
.tab-content {
    display: none;
    padding: 30px;
    clear: both;
    overflow: hidden;
}
#all-content{
    background-color: #808080;
}
#all-content .tab-content-title{
	padding-bottom: 10px;
	font-size: 15px;
	font-weight: 600;
}
#all-content ul {
	padding-bottom: 30px;
    display: flex;
	display: -webkit-flex;
}
#all-content ul li {
    width: 20%;
	display: block;
}
#all-content a {
    color: #fff;
	text-decoration: underline;
}
#all-content ul li:hover label,
#all-content a:hover{
    opacity: 0.5;
}
#all-content .tab-content-submit{
	width: 70%;
	width: -webkit-calc(50% + 150px);
	width: calc(50% + 150px);
	margin-left: 30%;
	margin-left: -webkit-calc(50% - 150px);
	margin-left: calc(50% - 150px);
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: flex-end;
	-webkit-align-items: flex-end;
}
#all-content .tab-content-submit p{
	padding-left: 10px;
	font-size: 12px;
}
#all-content .tab-content-submit input {
	border: 1px solid rgba(255, 255, 255, 0.5);
}
/* 元々のチェックボックス（非表示） */
#all-content input[type="checkbox"]{
    display: none;
}
/* チェックボックスの代わりを成すラベル */
#all-content input[type="checkbox"]+label{
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
}
/* ラベルの左に表示させる正方形のボックス□ */
#all-content input[type="checkbox"]+label::before{
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    width: 18px;
    height: 18px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: 1px solid;
    /*border-color:  #fff;*/ /* 枠の色変更 */
    background-color: #fff; /* 背景の色変更 */
}
/* チェックが入った時のレ点 */
#all-content input[type="checkbox"]:checked+label::after{
    content: "";
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #3c5b8e; /* チェックの色変更 */
}
#rent-content{
    background-color: #f2f0ea;
	text-align: center;
}
#rent-content .tab-content-title{
	padding: 30px 0 10px 0;
	font-size: 15px;
	font-weight: 600;
	color: #575757;
}
#rent-content .btn-center{
	padding-bottom: 30px;
}
/* 選択されているタブのコンテンツのみを表示 */
#all:checked ~ #all-content,
#rent:checked ~ #rent-content{
  display: block;
}


/*　共通-title
------------------------------------------------------------*/
.common-title{
	margin: 100px auto 50px auto;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
}
.common-title img:first-child{
	margin-bottom: 20px;
	width: 100%;
	height: 39px;
}
.common-title img:nth-child(2){
	width: 100%;
	height: 17px;
}
.common-title.title-large img:first-child{
	margin-bottom: 9px;
	width: 100%;
	height: 50px;
}
.page-title{
	margin: 80px auto 70px auto;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	position: relative;
}
.page-title img:first-child{
	margin-bottom: 20px;
	width: 100%;
	height: 39px;
}
.page-title img:nth-child(2){
	width: 100%;
	height: 17px;
}
.page-title:before {
	content: '';
	position: absolute;
	bottom: -20px;
	display: inline-block;
	width: 30px;
	height: 2px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #575757;
}
.page-title.title-large img:first-child{
	margin-bottom: 9px;
	width: 100%;
	height: 50px;
}


/*　共通-物件一覧
------------------------------------------------------------*/
.estate-box-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.estate-box{
	width: 33.3%;
}
.estate-img-wrap{
	position: relative;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.estate-img-wrap:hover{
    opacity: 0.6;
}
.icon-new,.icon-reco{
	width: auto;
	height: 29px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.icon-pinned {
	position: absolute;
	top: 26px;
	left: -5px;
	height: 30px;
}
.icon-pinned2 {
	position: absolute;
	top: 7px;
	left: 7px;
	height: 34px;
}
.soldout{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	background: rgba(51, 51, 51, 0.5);
}
.soldout img{
	width: 102px;
	height: auto;
}
.estate-img{
	width: 100%;
	height: 218px; /*3:2比率*/
	object-fit: cover;
	object-position: 50% 0%; /*縦長ビル写真を考慮してセンタートップ合わせ*/
}
.estate-box div:nth-child(2){
	padding: 20px 10px 50px 10px;
}
.estate-name{
	padding-bottom: 15px;
	font-size: 16px;
	font-weight: 600;
}
.estate-price{
	padding-bottom: 10px;
	font-size: 12px;
}
.estate-price span{
	padding-right: 0.3em;
	font-size: 16px;
}
.estate-details{
	font-size: 12px;
}
.estate-details span{
	padding-right: 0.5em;
}
.estate-details-02{
	padding-top: 10px;
	font-size: 10px;
}
.estate-details-03{
	padding-top: 10px;
	font-size: 12px;
	color: #dd7564;
}

/* リノベーション */
.top-reno-wrap{
	margin-top: 50px;
	padding: 50px 0;
	background: url('../images/top/top_reno_bk@2x.jpg') no-repeat center center/cover;
}
.top-reno{
	width: 90%;
	max-width: 880px;
	margin: 0 auto;
	padding: 50px 30px;
	text-align: center;
	background: rgba(255,255,255,0.8);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #575757;
}
.top-reno p{
	padding: 50px 0;
	font-size: 16px;
	line-height: 2em;
}
.top-reno-title img:first-child,
.top-reno-title img:last-child{
	width: auto;
	height: 30px;
}
.top-reno-title img:nth-child(2){
	margin: 0 40px;
	width: 42px;
	height: 42px;
}

/* 施工事例集 */
.top-works-wrap{
	width:100%;
	max-width: 1200px;
	margin: 0 auto;
}
.top-works li{
	width:50%;
	max-width: 467px;
	height: 300px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.top-works li:hover{
    opacity: 0.6;
}
.top-works a{
	width:100%;
	height: 300px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}
.top-works img{
	width: 100%;
	max-width: 290px;
	height: auto;
	margin: 0 50px;
	-webkit-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	-moz-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	-ms-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
	filter:drop-shadow(0 0 5px rgba(0, 0, 0, 1));
}
.top-works:first-child{
	margin-bottom: 20px;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.top-works:nth-child(2){
	margin-bottom: 50px;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
.top-works-01{
	background: url('../images/top/top_works_1@2x.jpg') no-repeat center center/cover;
}
.top-works-02{
	background: url('../images/top/top_works_2@2x.jpg') no-repeat center center/cover;
}
.top-works-03{
	background: url('../images/top/top_works_3@2x.jpg') no-repeat center center/cover;
}
.top-works-04{
	background: url('../images/top/top_works_4@2x.jpg') no-repeat center center/cover;
}

/* お問い合わせ */
.top-contact-wrap{
	margin-top: 100px;
	background-color: #f2f0ea;
}
.top-contact{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	color: #575757;
}
.top-contact h2{
	margin-top: 80px;
}
.top-contact > div{
	width: 50%;
	text-align: center;
}
.top-contact-details{
	min-height: 135px;
	height: auto;
	padding-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
p.top-contact-details{
	padding-top: 20px;
}
.top-contact-phone{
	padding: 20px 0 30px 0;
}
.top-contact-phone i{
	font-size: 16px;
	font-weight: 600;
}
.top-contact-phone span{
	padding: 0 0.2em;
	font-size: 24px;
	font-weight: 600;
}

/*　footer
------------------------------------------------------------*/
#pagetop{
	width: 100%;
	height: 100px;
	border-bottom: solid 1px #808080;
	text-align: right;
}
#pagetop img{
	margin: 44px 20px 0 0;
	width: auto;
	height: 46px;	
	-webkit-transition: all .3s;
	transition: all .3s;
}
#pagetop img:hover{
	opacity: 0.6;
}
/* トップページのみ */
.top-pagetop{
	background-color: #f2f0ea;
}
footer{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	color: #575757;
}
footer a{
	color: #575757;
}
.sitemap-wrap{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.sitemap{
	width: 33%;
	margin: 20px 0 100px 0;
}
.sitemap > li{
	width: 100%;
	padding-top: 25px;
	font-weight: 600;
}
.sitemap > li > ul{
	padding-top: 5px;
}
.sitemap > li > ul > li{
	padding-bottom: 5px;
	font-weight: normal;
}
.sitemap a{
	padding: 5px;
	display: block;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.sitemap a:hover{
	opacity: 0.8;
	background-color: #f2f0ea;
}
.footer-box{
	padding-bottom: 20px;
	display: flex;
	display: -webkit-flex;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	font-size: 10px;
}
.footer-box img{
	width: 170px;
	height: auto;
	margin-right: 20px;
}

/*　下層ページ
------------------------------------------------------------
------------------------------------------------------------*/

/* 共通-パンくず */
.breadcrumb{
	width: 100%;
	max-width: 980px;
	margin: 65px auto 0 auto;
	font-size: 12px;
}
.breadcrumb ol{
	width: 100%;
	padding: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.breadcrumb ol li{
    list-style-type: none;
	color: #575757;
}
.breadcrumb ol li:not(:last-child){
	padding-right: 10px;
}
.breadcrumb ol li a{
	color: #575757;
}
.breadcrumb ol li:not(:last-child)::after {
	content: '>';
	padding-left: 10px;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
/* 共通-h3,h4 */
.common-h3{
	width: 100%;
	max-width: 980px;
	margin: 0 auto 50px auto;
	padding: 10px;
	background-color: #808080;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.common-h3 img{
	width: 150px;
	height: 20px;
}
.common-h4{
	width: 100%;
	max-width: 980px;
	margin: 30px auto 50px auto;
	padding: 10px;
	border-bottom: solid 1px #575757;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.common-h4 img{
	width: 150px;
	height: 20px;
}


/* 販売物件を探す estate1.html
------------------------------------------------------------*/

/* search */
.info-search-title{
	width: 20%;
	border: solid 1px #808080;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.info-search-title img{
	width: 105px;
	height: auto;
}
.info-search-content {
    width: 80%;
    margin: 0 auto;
	padding: 30px;
    color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.search-result-wrap{
	width: 100%;
	max-width: 980px;
	margin: 50px auto;
}
.search-result{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.search-method{
	margin-bottom: 20px;
	display: flex;
	display: -webkit-flex;
}
.search-method p:first-child{
	font-size: 20px;
	font-weight: 600;
	color: #5c4732;
}
.search-method p:last-child{
	color: #808080;
}
.search-order{
	margin-bottom: 20px;
	display: flex;
	display: -webkit-flex;
}
.search-order .btn{
	width: 180px;
}
.search-order a:not(:first-child){
	margin-left: 10px;
}
.search-order a.active .btn-04::before {
	background: none;
}
.search-order a.active .btn-04::after {
	border: none;
}
.search-order a.active .btn-04 {
	color: #575757;
	background-color: #e4bbb2;
}
.search-number{
	padding-top: 30px;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	text-align: center;
}
.search-number li a{
	width: 40px;
	height: 40px;
	margin: 2px;
	display: block;
	font-size: 16px;
	line-height: 40px;
	background-color: #f2f0ea;
	color: #575757;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.search-number li a:hover{
	opacity: 0.4;
}
.search-number li.active a{
	background-color: #e4bbb2;
}
.search-number li.active a:hover{
	opacity: 1;
}
.estate-box-wrap + .search-result-wrap{
	margin: 0 auto 100px auto;
}
/* フッター上のおすすめ物件 */
.lower-reco-wrap{
	width: 100%;
	max-width: 980px;
	margin: 100px auto 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.lower-reco-wrap .icon-reco{
	height: 22px;
}
.lower-reco-wrap .estate-box div:nth-child(2){
	padding: 15px 10px 0 10px;
}
.lower-reco-wrap .common-title{
	margin: 50px auto 40px auto;
}
.lower-reco-wrap .common-title img:first-child{
	width: 184px;
	height: 24px;
}
.lower-reco-wrap .common-title img:nth-child(2){
	width: 99px;
	height: 16px;
	margin-left: 42px;
}
.lower-reco-wrap .estate-box-wrap{
	width:  75%;
	max-width: 735px;
	line-height: 1.1em;
}
.lower-reco-wrap .estate-img{
	width: 100%;
	height: 157px;
}
.lower-reco-wrap .estate-name{
	font-size: 12px;
}
.lower-reco-wrap .estate-price{
	font-size: 10px;
}
.lower-reco-wrap .estate-price span{
	font-size: 12px;
}
.lower-reco-wrap .estate-details{
	font-size: 10px;
}

/* 保有物件 estate2.html
------------------------------------------------------------*/
.page-link{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding-bottom: 40px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.page-link a{
	margin: 0 5px 10px 5px;
}
.page-link a .btn{
	width: 160px;
}
/* ページ内リンク時にヘッダーにかぶるのを避ける */
a.anchor {
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}
.estate-box-wrap + hr{
	margin-top: 50px;	
}

/* 物件詳細 estate1-1.html,estate1-2.html,estate2-1.html,estate3-1.html
------------------------------------------------------------*/

.info-name-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	border-bottom: solid 1px #808080;
}
.info-name{
	margin: 5px 0;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.info-name h3{
	padding-right: 20px;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3em;
}
.info-new{
	width: 42px;
	height: 16px;
}
.info-btn{
	display: flex;
	display: -webkit-flex;
}
.info-btn .btn{
	width: 180px;
	margin: 5px 0 5px 10px;
}
.info-btn .btn i{
	padding-right: 0.3em;
}
.info-pickup-wrap{
	width: 100%;
	max-width: 980px;
	margin: 15px auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
}
.info-pickup{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.info-price{
	padding-right: 30px;
}
.info-price span{
	padding-right: 0.3em;
	font-size: 26px;
}
.info-details{
	padding-right: 30px;
}
.info-details span{
	padding-right: 0.5em;
}


/*　スライダー　*/
#slider-wrap{
	width: 100%;
	max-width: 980px;
	height: auto;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#slider{
	width: 100%;
	height: 100%;
	max-height: 653px; /*3:2比率*/
	margin: 0 auto 10px auto ;
	background-color: #f0f0f0;
}
.slide-item{
	width: 100%;
	position: relative; 
}
.slide-item:before {
    content: "";
    display: block;
    padding-top: 66.66%; /*3:2比率*/
}
.slide-item img{
    width: 100%;
	max-height: 653px;
	margin: auto; /*positionのセンター配置*/
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
#thumbnail-list{
	width: 100%;
	max-width: 980px;
	height: auto;
	margin: 0 auto 100px auto;
	display: flex;
	display: -webkit-flex;
	flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.thumbnail-item img{
	width: 95px;
	height: 60px;
	object-fit: cover;
}
.thumbnail-item{
	width: 95px;
	height: 60px;
	margin: 0 4px 4px 0;
	position:relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.thumbnail-item:after{
	content:'';
	background-color: rgba(0,0,0,0.5);
	position:absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: .3s opacity linear;
	transition: .3s opacity linear;
}
.thumbnail-item.thumbnail-current:after{
    opacity: 0;
}
.prev-arrow,.next-arrow{
	width: 20px;
	height: 40px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.prev-arrow:hover,.next-arrow:hover{
    opacity: 0.5;
}
.prev-arrow{
	margin: auto 10px;
	position:absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.next-arrow{
	margin: auto 10px;
	position:absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}

/* 物件情報 */
.info-contents-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.info-contents-wrap h4{
	margin: 100px 0 50px 0;
	font-size: 20px;
	font-weight: 600;
	color: #5c4732;
}
.info-contents-main{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.info-main{
	width: 60%;
}
.info-list{
	padding-bottom: 20px;
	font-size: 16px;
}
.info-list li{
	padding: 0 0 10px 1em;
	text-indent:-1em;
	line-height: 1.5em;
}
.info-list li::before{
	padding-right: 0.3em;
	font-family: "Font Awesome 5 Free";
	content: "\f02e";
	font-weight: 900;
    color: #5c4732;
}
.info-details-02{
	width: 100%;
	padding: 15px 20px;
	background-color: #f2f0ea;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.info-details-02 dt{
	width: 20%;
	padding: 5px 0;
	font-weight: 600;
}
.info-details-02 dd{
	width: 80%;
	padding: 5px 0;
}
.info-details-03{
	width: 100%;
	padding: 15px 0;
	background-color: #f2f0ea;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.info-details-03 dt{
	width: 10%;
	padding: 5px 0 5px 20px;
	font-weight: 600;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.info-details-03 dd{
	width: 40%;
	padding: 5px 20px 5px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.info-main-right{
	width: 40%;
	padding-left: 5%;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.info-main-right .btn{
	width: 160px;
}
.info-main-right .btn i{
	padding-right: 0.3em;
}
.info-360{
	padding: 10px;
	margin-bottom: 30px;
	border: solid 1px #5c4732;
	color: #5c4732;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.info-360 p{
	padding-bottom: 10px;
}
.info-drawing img{
	width: 70%;
	margin-bottom: 10px;
}
.info-contents-box{
	width: 100%;
}
.info-contents-box-half,
.info-contents-box-half-02{
	width: 48%;
}
.info-contents-box-half-02{
	margin-left: 4%;
}
.info-table,.info-table-02{
	width: 100%;
}
.info-table tbody{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.info-table tr{
	width: 48%;
	border-bottom: solid 1px #f0f0f0;
}
.info-table-02 tr{
	width: 100%;
	border-bottom: solid 1px #f0f0f0;
}
.info-table th,.info-table-02 th{
	width: 12em;
	padding: 10px 0;
	font-weight: 600;
	vertical-align: top;
}
.info-table td,.info-table-02 td{
	padding: 10px 0;
}
.info-map iframe{
	width: 100%;
	height: 500px;
	margin-bottom: 10px;
}
.info-access,.info-address{
	width: 100%;
	padding: 15px 20px;
	margin-bottom: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.info-access dt,.info-address dt{
	width: 10%;
	padding: 5px 0;
	font-weight: 600;
}
.info-access dd,.info-address dd{
	width: 90%;
	padding: 5px 0;
}
.info-access{
	background-color: #f0f0f0;
}
.info-address{
	border: solid 1px #f0f0f0;
}
.info-contact-wrap{
	width: 100%;
	margin-top: 100px;
	padding: 50px 0;
	background-color: #f2f0ea;
	text-align: center;
}
.info-contact-wrap p{
	padding-bottom: 30px;
	font-weight: 600;
	font-size: 20px;
}
.info-contact-wrap .btn i{
	padding-right: 0.3em;
}
.info-main-img{
	width: 100%;
	max-width: 980px;
	margin: 0 auto 50px auto;
}
.info-main-img img{
    width: 100%;
	max-height: 653px;
	object-fit: contain;
	object-position: 50% 50%;
}
.info-estate-box-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 30px 30px 0 30px;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #f0f0f0;
}

/* 施工事例集 works.html
------------------------------------------------------------*/

.works-list-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.works-list-wrap li{
	width: 50%;
	padding-bottom: 50px;
}
/* 今後件数が増えたら下記の:nth-of-type(ここ！)調整する */
.works-list-wrap li:nth-of-type(3),
.works-list-wrap li:nth-of-type(4){
	padding-bottom: 20px;
}
.works-list{
	position: relative;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.works-list:hover{
	opacity: 0.6;
}
.works-list-no{
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}
.works-list-img{
	width: 100%;
	height: auto;
}
.works-list-theme{
	padding: 20px 10px 0 10px;
}
.works-list-theme img{
	width: 100%;
	max-width: 400px;
	height: auto;
}
.works-list-theme p{
	padding-top: 10px;
}

/* 施工事例集詳細 works1.html〜works4.html
------------------------------------------------------------*/

.works-main-img{
	width: 100%;
	max-width: 980px;
	margin: 0 auto 20px auto;
}
.works-main-img img{
	width: 100%;
	height: auto;
}
.works-theme{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 18px 0;
	background-image: url("../images/works/theme_bk.svg");
	background-repeat: repeat-y;
	background-size:  contain; 
	background-position: top center;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.works-theme img{
	width: 600px;
	height: 24px;
}
/* 概要 */
.works-outline-wrap{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: flex-start;
	-webkit-align-items: flex-start;
}
.works-outline{
	width: 26%;
	padding: 15px 20px;
	margin-right: 60px;
	background-color: #f2f0ea;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.works-outline dt{
	width: 30%;
	padding: 5px 0;
	font-weight: 600;
}
.works-outline dd{
	width: 70%;
	padding: 5px 0;
}
.works_01_drawing{
	width: 65%;
}
.works_02_drawing,
.works_03_drawing,
.works_04_drawing{
	width: 26%;
	padding-left: 30px;
}
/* 施工について */
.works-description-wrap{
	width: 100%;
	max-width: 850px;
	margin: 0 auto 80px auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.works-description{
	width: 100%;
	padding-bottom: 50px;
	line-height: 1.8em;
}
.works-description-box {
	width: 100%;
	height:auto;
	margin-bottom: 20px;
	position: relative;
}
.works-description-box-half {
	width: 48.8%;
	height:auto;
	margin-bottom: 20px;
	position: relative;
}
.works-description-img {
	margin: 0;
	padding: 0;
}
.works-description-img img {
	width: 100%;
	height: auto;
}
.works-description-text {
	width: 100%;
	height: auto;
	padding: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	color: #575757;
	background-color: rgba(255,255,255,0.7);
	opacity: 0;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.works-description-text h4 {
	font-size: 16px;
}
.works-description-text p {
	font-size: 14px;
}
.works-description-text h4 + p {
	padding-top: 10px;
}
.works-description-box:hover .works-description-text,
.works-description-box-half:hover .works-description-text {
	opacity: 1;
}
/* 他のコンセプト物件 */
.anotherstyle{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.anotherstyle li{
	width:  24%;
	height: 100%;
	margin: 0 0.5% 1% 0.5%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	background-color: #999;
}
.anotherstyle-img img{
	width:  100%;
	height: auto;
}
.anotherstyle-theme{
	padding: 20px;
	background-color: #fff;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.anotherstyle-theme img{
	width: 100%;
	height: auto;
}
.anotherstyle li:hover{
	opacity: 0.6;
}
.anotherstyle li.active .anotherstyle-img,
.anotherstyle li.active .anotherstyle-theme{
	opacity: 0.7;
}
.anotherstyle li.active:hover{
	opacity: 1;
}

/* 会社概要 company1.html〜company3.html
------------------------------------------------------------*/

.company-message{
	width: 100%;
	max-width: 980px;
	margin: 0 auto 30px auto;
	font-size: 15px;
	line-height: 1.8em;
}
.company-message p{
	padding-bottom: 20px;
}
/*
.company-message p:last-child{
	padding-top: 20px;
	text-align: right;
}
*/

.company-img{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}
.company-img img{
	width: 100%;
	height: auto;
}
.common-table{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}
.common-table tr{
	width: 100%;
	border-bottom: solid 1px #f0f0f0;
	line-height: 1.5em;
}
.common-table th{
	padding: 15px 10px 15px 0;
	font-weight: 600;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.common-table td{
	padding: 15px 0;
}
.company-table th{
	width: 20%;
}
.company-table-map{
	width: 100%;
	padding: 10px 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.company-table-map iframe{
	width : 70% ;
	width : -webkit-calc(100% - 235px) ;
	width: calc(100% - 235px) ;
	height: 300px;
}
.company-table-map img{
	width: 225px;
	height: 300px;
}
.company-table-list{
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.company-table-list ul{
	width: 48%;
}
.company-table-list .other{
	padding-top: 1.5em;
}
.company-catch{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}
.company-catch img{
	width: 382px;
	height: auto;
	margin: 50px 0;
}
.company-catch p{
	font-size: 16px;
	line-height: 2em;
}
.company-aaa{
	background-image: url("../images/company/company_aaa_bk@2x.jpg");
	background-repeat: no-repeat;
	background-size:  contain; 
	background-position: center center;
	text-align: center;
}
.company-aaa img{
	width: 80%;
	max-width: 800px;
	height: auto;
	margin: 100px auto;
}
.company-reno-wrap{
	padding: 100px 0 ;
	background-color: #f2f0ea;
}
.company-reno-wrap .common-title{
	margin: 0 auto 50px auto;
}
.common-text{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	line-height: 1.8em;
}
.company-reno-wrap .company-img,
.company-pm-wrap .company-img{
	padding-top: 30px;
}
.btn-catch{
	padding: 30px 0;
	text-align: center;
}

/* 個人情報保護方針 privacy.html
------------------------------------------------------------*/

.policy{
	width: 100%;
	max-width: 980px;
	margin: 50px auto;
	padding: 40px 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #dbdbdb;
	line-height: 1.8em;
}
.policy ol{
	padding-left: 1.5em;
}
.policy ol li{
	list-style-type: decimal;
}
.policy ol li:not(:last-child) {
    padding-bottom: 20px;
}

/* お問い合わせ form1.html〜form3.html
------------------------------------------------------------*/

.input-1 { width: 100%; }
.input-2 { width: 50%; }
.input-3 { width: 25%; }
input { 
	height: 2.5em;
	font-size: 14px;
	border: 1px solid #dbdbdb;
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="file"] {
    display: none;
}
.select-1 { width: 100%; }
.select-2 { width: 50%; }
.select-3 { width: 25%; }
select { 
	height: 2.5em;
	border: 1px solid #dbdbdb;
	background: #fff;
	display:block;
	font-size: 14px;
	box-sizing: border-box; 
}
textarea {
	width: 100%;
	height: 15em;
	margin: 0;
	border: 1px solid #dbdbdb;
	display:block;
	font-size: 14px;
	box-sizing: border-box;
}
.common-text.require{
	color: #dd7564;
}
.form-table{
	margin: 100px auto;
}
.form-table th{
	width: 25%;
	padding-top: 23px;
}
.form-table .require{
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.form-table .require div:last-child{
	color: #dd7564;
}
.form-table .hint{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.form-table .hint div{
	padding-left: 1em;
}
.form-table .hint-02{
	padding-top: 10px;
}
.form-table .hint-03{
	color: #dd7564;
}
.form-table .hint-03 span{
	font-weight: 600;
}
.form-submit{
	text-align: center;
}
.form-file{
	padding: 10px 0 20px 0;
    display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.form-file label {
    padding: 10px 40px;
    color: #fff;
	font-weight: 600;
    background-color: #808080;
    cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.form-file p {
    padding-left: 1em;   
}
.form-file label:hover {
	background-color: #3c5b8e;
}





/* PCとスマホの非表示指示
------------------------------------------------------------
------------------------------------------------------------*/


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

.pc-none {
	display: none;
}
}

@media screen and ( max-width:767px )
{

.sp-none {
	display: none;
}
}

div.gcomlnk {
	display: block;
	float: left;
	border: 1px solid #ccc;
	width: 230px;
	padding: 25px;
	height: 250px;
	margin: 0 1em 1em 0;
	border-radius: 4px;
}
div.gcomlnk:hover {
	border: 1px solid #3e495c;
}
div.gcomlnk img { width: 100%; margin-bottom: 1.75em; }
div.gcomlnk p { font-size: 90%; line-height: 1.35em; color: #333; margin-bottom: 1.5em }
div.gcomlnk p.com_name { font-size: 100%; font-weight:700; margin-bottom: 1em;
	border: 0px solid red;
	height: 3em;
	vertical-align: middle;
	display: flex;
	align-items: center;
}
div.gcomlnk a.combtn {
	font-size: 90%;
	display: block;
	width: 10em;
	color: #fff;
	text-align: center;
	background: #3e495c;
	text-decoration: none;
	border-radius: 3px;
	padding: 6px 8px;
}
div.gcomlnk a.combtn:hover {
	background: #36517e;
}

/* ========================================
	top-news
======================================== */
.top-news-wrap {
	width: 1080px;
	margin: 60px auto 80px;
}
.top-news-list {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 30px 40px;
	margin-bottom: 40px;
}
.top-news-item {
	padding: 15px 0;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	transition: background-color 0.3s ease;
}
.top-news-item:last-child {
	border-bottom: none;
}
.top-news-date {
	font-size: 14px;
	color: #666;
	margin-right: 15px;
	min-width: 90px;
}
.top-news-new {
	width: 35px;
	height: auto;
	margin-right: 10px;
}
.top-news-title {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	flex: 1;
}
.top-news-summary {
	width: 100%;
	font-size: 14px;
	color: #777;
	margin-top: 8px;
	padding-left: 105px;
	line-height: 1.6;
}

@media screen and (max-width: 1120px) {
	.top-news-wrap {
		width: 96%;
	}
}

@media screen and (max-width: 768px) {
	.top-news-wrap {
		margin: 40px auto 60px;
	}
	.top-news-list {
		padding: 20px;
	}
	.top-news-item {
		padding: 12px 0;
		display: block;
	}
	.top-news-date {
		display: block;
		margin-bottom: 5px;
	}
	.top-news-title {
		display: inline;
	}
	.top-news-summary {
		padding-left: 0;
		margin-top: 5px;
	}
}

/* ニュース詳細ページ */
.news-detail {
	max-width: 900px;
	margin: 60px auto 80px;
	padding: 0 20px;
}

.news-detail-header {
	border-bottom: 2px solid #e5e5e5;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.news-detail-date {
	display: inline-block;
	color: #666;
	font-size: 14px;
	margin-bottom: 10px;
}

.news-detail-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	line-height: 1.6;
}

.news-detail-body {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 40px;
}

.news-detail-body p {
	margin-bottom: 20px;
}

.news-detail-body img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
}

.news-detail-back {
	text-align: center;
	margin: 40px 0;
}


/*
.estate_owner_icon {
	position: absolute;
	font-size: 12px;
	font-family: Tahoma;
	letter-spacing: 1px;
	right: 0;
	padding: 3px 7px !important;
	box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
}
.estate_owner_icon.AC   { color: #333; background: #88bdf8 }
.estate_owner_icon.AC   { color: #333; background: #ffffff }
.estate_owner_icon.ACHD { color: #fff; background: #002060 }
.estate_owner_icon.GEO  { color: #333; background: #ffc000 }
*/

.estate_owner_icon {
	position: absolute;
	font-size: 12px;
	font-family: Tahoma;
	letter-spacing: 1px;
	top: 5px;
	right: 5px;
	padding: 3px 7px !important;
	/*box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);*/
	border: 1px solid #666;
}
.estate_owner_icon.AC   { color: #333; background: #b3e5ff; border: 1px solid #7899ab; }
.estate_owner_icon.ACHD { color: #fff; background: #002060 }
.estate_owner_icon.GEO  { color: #333; background: #ffc000; border: 1px solid #b18600; }

.estate_owner_icon.inline {
	font-size: 90%;
	padding: 1px 5px !important;
	position: relative;
	display: inline-block;
	vertical-align: text-bottom;
}
#estate_owner_icon_exp {
	font-size: 90%;
	text-align: center; 
	margin: 0 auto 2em;
}


/*
*/


