@charset "utf-8";

/* 骨組み
---------------------------------------- */
/* All
------------------------------ */
html, body {
	height: 100%;
	width: 100%;
}
body {
	position: relative;
}
.inner {
	width: 100%;
	max-width: 640px;
	min-width: 320px;
	margin: 0 auto;
}
/* PC 640~
------------------------------ */
@media screen and (min-width: 640px){
	.inner {
		max-width: 1040px;
		min-width: 640px;
	}
}

/* ヘッダー
---------------------------------------- */
/* All
------------------------------ */
header {
	height: 90px;
	width: 100%;
}
/* タイトル */
h1 {
	font-size: 24px;	/* 24px × 13文字 = 312px */
	height: 50px;
	line-height: 50px;
	min-width: 320px;
}
/* TEL領域 */
div#tel {
	display: none;
}
/* ナビゲーション */
header nav {
	height: 40px;
	line-height: 40px;
}
header ul {
	display: table;
	table-layout: fixed;
	width: 320px;
	margin: 0 auto;
}
header li {
	display: table-cell;
}
/* PC 640~
------------------------------ */
@media screen and (min-width: 640px){
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 128px;
		z-index: 2;
	}
	header .inner {
		position: relative;
		height: 128px;
	}
	/* タイトル */
	h1 {
		position: absolute;
		top: 0;
		left: 0;
		width: 340px;
		height: 88px;
		line-height: 88px;
		font-size: 25px;
		z-index: 3;
	}
	/* TEL領域 */
	div#tel {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		height: 88px;
		width: 300px;
	}
	div#tel p {
		padding-top: 20px;
		font-size: 13px;
		line-height: 20px;
	}
	div#tel address {
		font-size: 20px;
	}
	/* ナビゲーション */
	header nav {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	header ul {
		width: 600px;
	}
}

/* コンテンツ
---------------------------------------- */
/* All
------------------------------ */
#contents {
	width: 100%;
	padding-bottom: 1rem;
}
/* アイキャッチ */
#eye-chatch {
	width: 100%;
	max-width: 640px;
	min-width: 320px;
	margin: 0 auto;
	position: relative;
}
#eye-chatch img {
	width: 100%;
}
#eye-chatch::before {
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	content: "不動産を活かして未来を拓く";
	color: #fff;
	font-size: 20px;
	text-shadow: 5px 5px 5px #000;
	text-align: center;
}
#eye-chatch::after {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 40px;
	padding: 1em;
	content: "不動産鑑定評価業務を通じて\Aお客様のご要望にお応えします";
	white-space: pre;
	color: #fff;
	font-size: 13px;
	text-shadow: 3px 3px 3px #000;
	text-align: right;
}

/* パンくず */
.breadcrumb {
	display: none;
}
/* 内容領域 */
main, aside {
	padding: 15px;
}
aside {
	border-top: 1px dotted #333;
}
iframe {
	width: 100%;
	height: 900px;
}
/* PC 640~
------------------------------ */
@media screen and (min-width: 640px){
	#contents {/*固定ヘッダー分表示領域を下げる*/
		padding-top: 128px;
	}
	#index #contents {
		padding-top: 138px;
	}
	/* アイキャッチ */
	#eye-chatch {
		max-width: 1040px;
		min-width: 640px;
	}
	#eye-chatch img {
		border-radius: 0 20px;
	}
	#eye-chatch::before {
		height: 70px;
		line-height: 70px;
		font-size: 36px;
	}
	#eye-chatch::after {
		height: 60px;
		font-size: 18px;
	}
	/* パンくず */
	.breadcrumb {
		display: block;
	}
	.breadcrumb ol {
		font-size: 12px;
		padding: 6px 12px;
	}
	.breadcrumb li {
		display: inline;
		padding-left: 6px;
	}
	.breadcrumb li::after {
		content: ">";
		padding-left: 8px;
	}
	.breadcrumb li:last-child::after {
		content: "";
	}
	/* 2カラムのコンテナ、内容領域 */
	.container {
		display: table;
		width: 100%;
		border-spacing: 0px 15px;
	}
	.container> main, .container > aside {
		display: table-cell;
		padding: 15px;
	}
	.container > aside {
		width: 240px;
		border-top: none;
		border-left: 1px solid #333;
		border-right: 1px solid #333;
	}
	/* 1カラムの内容領域 */
	.inner > main {
		padding: 15px;
	}
	iframe {
		height: 720px;
	}
}

/* フッター
---------------------------------------- */
/* All
------------------------------ */
footer {
	width: 100%;
	padding-bottom: 13px;
}
footer ul, footer p{
	margin-top: 13px;
	font-size: 13px;
}
footer li {
	display: none;
}
footer li:last-child {
	display: inline;
}
/* PC 640~
------------------------------ */
@media screen and (min-width: 640px){
	footer li {
		display: inline;
		padding: 0 10px;
	}
}

/* 各背景色
---------------------------------------- */
/* All
------------------------------ */
body, footer, header nav {
	background-color: rgb(25, 68, 142);/*瑠璃紺#19448e*/
}
header,
#contents,
#img-space,
.container > main,
.container > aside,
.inner > main {
	background-color: #fff;
}
/* PC 640~
------------------------------ */
@media screen and (min-width: 640px){
	header {
		background: linear-gradient(
		180deg, #fff 0%, #fff 68.75%, rgb(25, 68, 142) 68.75%, rgb(25, 68, 142) 100%)
	}
}