@charset "UTF-8";

html,html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body {
	color: #333;
	font-size: 16px;
}
p.text {
	margin: 0 20px 1.5em;
	font-size: 16px;
	line-height: 200%;
}
p.photo {
	margin: 0 20px 1em;
}
p.photo img {
	width: 100%;
	height: auto;
}
strong.red {
	color: #8D0000;
	font-weight: normal;
}
a {
	text-decoration: none;
}
ul,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* 見出し */
.ttl_head {
	border-bottom: 1px solid #999999;
	margin-bottom: 20px;
	padding: 6px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ttl_head h2 {
	font-size: 20px;
	padding-left: 8px;
	border-left: 12px solid #8D0000;
}
.ttl_head h3 {
	font-size: 18px;
	padding-left: 6px;
	border-left: 10px solid #333333;
}
.ttl_head h4 {
	font-size: 16px;
	padding-left: 6px;
	border-left: 8px solid #999999;
}
.ttl_head a {
	display: inline-block;
	background: #8D0000;
	font-size: 14px;
	color: #FFF;
	padding: 2px 8px;
	border-radius: 6px;
}
.ttl_head a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
.ttl_head span {
	display: inline-block;
	color: #8D0000;
	border: 1px solid #8D0000;
	font-size: 14px;
	padding: 2px 8px;
	border-radius: 6px;
}

/* ボタン */
a.btn {
	display: inline-block;
	padding: 10px 30px;
	border: solid 3px #fff;
	border-radius: 6px;
	background-color: #8D0000;
	color: #fff;
	font-size: 14px;
	box-shadow: 0px 0px 1px #000000;
}
a.btn:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

/* ページTOPへ戻る */
div.page-top a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 30px;
	background-color: #8D0000;
	color: #fff;
	font-size: 14px;
	box-shadow: 0px 0px 1px #000000;
}
div.page-top a:hover {
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

/* パンくずリスト */
div.topicPath {
	padding: 20px 10px 30px;
}
div.topicPath ul li {
	display: inline-block;
	font-size: 14px;
}
div.topicPath ul li a {
	color: #333;
}
div.topicPath ul li a:hover {
	text-decoration: underline;
}

/* メニュー（共通） */
.headerMenu a,
.globalMenu a,
.footerMenu a {
	display: block;
	padding: 15px;
	font-size: 12px;
	text-decoration: none;
}
.headerMenu a,
.footerMenu a {
	color: #FFFFFF;
}
.headerMenu a:hover,
.footerMenu a:hover {
	color: #FF9900;
}

/* ヘッダー */
.headerMenu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: #333333;
}
.globalMenu li {
	border-top: 1px solid #999;
}
.globalMenu a {
	color: #333333;
}
.globalMenu a:hover {
	background-color: rgba(0,0,0,0.3);
}
header {
	width: 100%;
	background-color: rgba(255,255,255,0.9);
	border-bottom: 1px solid #CCC;
}
.site_ttl {
	display:  block;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* トグルボタン */
#nav_toggle {
	display: block;
	position: relative;
	right: 10px;
	width: 42px;
	height: 51px;
	cursor: pointer;
	background-color: #333333;
	text-align: center
}
#nav_toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 3px solid #FFFFFF;
	transition: 0.35s ease-in-out;
}
#nav_toggle span:nth-child(1) {
	top: 9px;
}
#nav_toggle span:nth-child(2) {
	top: 18px;
}
#nav_toggle span:nth-child(3) {
	top: 27px;
}
#nav_toggle span:nth-child(4) {
	border: none;
	color: #FFFFFF;
	font-size: 9px;
	font-weight: bold;
	top: 34px;
}
.open #nav_toggle span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}
.open #nav_toggle span:nth-child(2),
.open #nav_toggle span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/* フッター */
footer {
	width: 100%;
	background: #333333;
	padding-top: 45px;
}
footer .container {
	color: #FFFFFF;
}
.footerMenu {
	margin-bottom: 40px;
}
.footerMenu ul {
	border-top: 1px solid #999;
}
.footerMenu ul li {
	border-bottom: 1px solid #999;
}
.footerAdress {
	margin-bottom: 60px;
}
.footerAdress div.address {
	margin-bottom: 30px;
	padding: 0 15px 0;
	text-align: center;
}
.footerAdress div.address h2 {
	font-size: 16px;
}
.footerAdress div.address p {
	font-size: 14px;
}
.site_ttl_footer {
	display: block;
	padding: 0 15px 0;
	text-align: center;
}
footer .copyright {
	width: 100%;
	background: #CCC;
	color: #333;
	font-size: 14px;
	text-align: center;
	padding: 6px;
}

/* フッター（電話をかける） */
.footer_tel {
	background: #666666;
}

/* コンテンツ（左カラム） */
section.cts_main div.main {
	margin-bottom: 60px;
}
section.cts_main div.main div.cts_box {
	margin-bottom: 40px;
}
section.cts_main div.main div.cts_box:last-child {
	margin-bottom: 0;
}

/* コンテンツ（右カラム） */
section.cts_main div.sub {
	border-top: 1px solid #999;
	margin-bottom: 60px;
}
section.cts_main div.sub a {
	display: block;
	padding: 10px 50px 10px 20px;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	color: #333;
	background: url(../img/icon_arrow.png) no-repeat center right;
}
section.cts_main div.sub a:hover {
	background-image: linear-gradient(
		rgba(0,0,0,0.15),
		rgba(0,0,0,0.15)
	);
}
section.cts_main div.sub h2 {
	font-size: 16px;
}
section.cts_main div.sub p {
	font-size: 14px;
}

/* コンテンツ（テーブル） */
section.cts_main div.main table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #CCC;
	font-size: 14px;
}
section.cts_main div.main table th,
section.cts_main div.main table td {
	border: 1px solid #CCC;
	padding: 6px 0;
}
section.cts_main div.main table th {
	padding-left: 16px;
	padding-right: 16px;
	background: #666666;
	color: #FFFFFF;
	text-align: left;
	font-weight: bold;
	word-spacing: keep-all;
}
section.cts_main div.main table td {
	padding-left: 16px;
	padding-right: 16px;
}
section.cts_main div.main table td a {
	text-decoration: underline;
	color: #333;
}

/* コンテンツ（メニュー） */
nav.ctsMenu ul {
	margin: 0 20px;
}
nav.ctsMenu ul li a {
	display: block;
	color: #333;
	border: 1px solid #999;
	border-radius: 6px;
	margin-bottom: 15px;
	padding: 15px 50px 15px 20px;
	background: url(../img/icon_arrow.png) no-repeat center right;
}
nav.ctsMenu ul li a:hover {
	background-image: linear-gradient(
		rgba(0,0,0,0.15),
		rgba(0,0,0,0.15)
	);
}

/* Twitter */
section.cts_main div.sub div.tw {
	margin-top: 30px;
}

/* おすすめ売買物件 */
article.recommend a {
	display: block;
	color: #333;
}
article.recommend div.box {
	padding: 40px 20px;
	border-bottom: 1px solid #CCC;
	text-align: center;
}
article.recommend div.box h3 {
	font-size: 16px;
}
article.recommend div.box p {
	font-size: 14px;
}
article.recommend div.box h3 span {
	color: #F00;
	font-size: 14px;
}
article.recommend div.box h3 span.reform {
	color: #063;
}
article.recommend div.box p.date {
	margin-bottom: 10px;
}
article.recommend div.box p.date span {
	display: inline-block;
	background: #666;
	color: #FFF;
	padding: 2px 8px;
	margin-right: 6px;
	border-radius: 6px;
}

/* プライバシーポリシー */
dl.privacy {
	margin: 0 20px 1em;
	padding: 15px;
	line-height: 200%;
	background: #EEE;
}
dl.privacy dt {
	font-weight: bold;
	font-size: 18px;
}
dl.privacy dd {
	padding-bottom: 40px;
	font-size: 16px;
}
dl.privacy dd:last-child {
	padding-bottom: 0px;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* 共通 */
	.headerMenu ul,
	.cts_main .topicPath,
	.cts_main .container,
	footer .container {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	}
	/* ヘッダー */
	header {
	padding-top: 60px;
	}
	header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	}
	.globalMenu {
	display: block !important ;
	}
	.headerMenu ul,
	.globalMenu ul {
	display: flex;
	}
	.globalMenu li {
	border-top: none;
	}
	/*トグルボタン*/
	#nav_toggle {
	display: none;
	}
	/* コンテンツ */
	section.cts_main .container {
	display: flex;
	}
	/* コンテンツ（左カラム） */
	section.cts_main div.main {
	flex: 2;
	}
	/* コンテンツ（右カラム） */
	section.cts_main div.sub {
	flex: 1;
	margin-left: 20px;
	}
	/* フッター */
	footer {
	padding-top: 30px;
	}
	.footerMenu ul {
	border-top: none;
	}
	.footerMenu ul li a {
	padding: 0 15px;
	}
	.footerMenu ul li {
	margin: 10px 0;
	border-right: 1px solid #FFFFFF;
	border-bottom: none;
	display: inline-block;
	}
	.footerMenu ul li:last-child {
	border-right: none;
	}
	.footerAdress {
	display: flex;
	align-items: center;
	justify-content: space-between;
	}
	.footerAdress div.address,
	.site_ttl_footer {
	text-align: left;
	}
	.footerAdress div.address {
	margin-bottom: 0px;
	}
	/* フッター（電話をかける） */
	#footer_pc {
	display: none;
	}
	/* おすすめ売買物件 */
	article.recommend div.box {
	display: flex;
	text-align: left;
	}
	article.recommend div.box .text {
	margin-left: 20px;
	}
}

/* 小さい画面用の設定 */
@media (max-width: 767px) {
	header .container-small {
	display: flex;
	align-items: center;
	justify-content: space-between;
	}
	.globalMenu {
	display: none;
	}
	.headerMenu {
	display: none;
	}
	/* フッター（電話をかける） */
	#footer_pc {
	display: block;
	}
}