/* ----------------------------------------------------
※ サイト全体で共用するCSSのみが書いてあります
※ TopページとLPページは別途個別のCSSがあります
---------------------------------------------------- */

/* html
------------------------------------------------------------------------------*/

html {
	box-sizing: border-box;
}

td,th {
	padding: 0;
}

.inner {
	max-width: 1200px;
}

.hover:hover {
	-ms-filter: 'alpha(opacity=75)';
	opacity: .75;
	transition: opacity .3s;
}

.komejiru {
	color: #999;
	font-size: 11px;
	letter-spacing: .1em;
	margin: 0 auto;
	max-width: 1200px;
	width: 94%;
}

.break-point {
	display: inline-block;
}


/* header
------------------------------------------------------------------------------*/

#header {
	background: #fff;
	color: #666;
	width: 100%;
}

#header .inner-top-area {
	margin: 0 auto;
	max-height: 60px;
	max-width: 1200px;
	overflow: inherit;
	width: auto;
}

#header .inner-bottom-area {
	margin: 0 auto;
	max-width: 1200px;
	overflow: inherit;
	padding-bottom: 14px;
	width: auto;
}


/* header-area */

#header .header-area {
	font: 100% Helvetica, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	margin: 0;
	position: relative;
}

#header .header-area .header-h1-block {
	margin: 0;
	width: 65%;
}

#header .header-area table {
	width: 100%;
}

#header .header-area th {
	max-width: 20%;
	text-align: left;
	width: 210px;
}

#header .header-area th a {
	display: inline-table;
	height: 60px;
}

#header .header-area th .logo-img-wrap {
	display: table-cell;
	vertical-align: middle;
}

#header .header-area .site-logo {
	display: block;
	max-height: 40px;
	max-width: 200px;
	vertical-align: middle;
	width: auto;
}

#header .header-area a {
	color: #ab9366;
}

#header .header-area td {
	padding-left: 1%;
	width: auto;
}

#header .header-area td a {
	display: block;
}

#header .header-area .ja {
	display: table-cell;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	text-align: left;
	vertical-align: middle;
}

#header .header-area .ja span {
	display: inline;
	font-family: "source-han-serif-japanese", 'Yu Mincho', serif;
	line-height: 1.6;
}

#header .header-area .ja .name1 {
	padding-right: .3em;
}

#header .header-area .ja .name2 {
	display: inline-block;
}

#header .header-area .nav-top-right {
	margin: -6px 0 0;
	position: absolute;
	right: 0;
	top: 50%;
	width: 35%;
}

#header .header-area .nav-top-right ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#header .header-area .nav-top-right li {
	float: right;
	margin-left: 15px;
	padding-left: 10px;
	position: relative;
}

#header .header-area .nav-top-right li:before {
	border-color: transparent;
	border-left-color: #ab9366;
	border-style: solid;
	border-width: 4px 6px;
	content: "";
	left: 0;
	margin-top: -3px;
	position: absolute;
	top: 50%;
}

#header .header-area .nav-top-right li:hover {
	text-decoration: underline;
}

#header .header-area .nav-top-right .nav-link {
	color: #00234b;
}

#header .header-area .nav-top-right .nav-link:before {
	content: none;
}

#header .header-area .nav-top-right .ja {
	font-size: 12px;
	line-height: 1;
}

#header .header-area .nav-top-right .en {
	display: none;
}

@media screen and (max-width: 960px) {
	/*--- 表示領域が960px以下の場合に適用するスタイル ---*/
	#header .header-area .header-h1-block,
	#header .header-area .nav-top-right {
		width: 50%;
	}

	#header .header-area .ja .name1 {
		display: none;
	}

	#header .header-area .ja .name2 {
		display: inline;
	}
}


/* Navigation */

#gNavi {
	width: 100%;
}

.nav-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-item {
	background: rgba(255,255,255,.8);
	display: inline-table;
	float: left;
	height: 46px;
	margin: 0;
	overflow: hidden;
	width: 14%;
}

.nav-item:first-child {
	width: 9%;
}

.nav-item.here,
.nav-item:hover {
	background: #004165;/* Brilliaロゴカラー */
}

.nav-item.dropdown:hover {
	background: #00234b;/* アーベインブルー */
}

.nav-item.here .nav-link,
.nav-item:hover .nav-link {
	color: #fff;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active {
	color: #00234b;
	cursor: pointer;
	display: table-cell;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 0 3px;
	position: relative;
	text-decoration: none;
	vertical-align: middle;
}

.nav-link::before {
	background: #d2c5ae;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	-ms-filter: "alpha(opacity=0)";
	opacity: 0;
	position: absolute;
	-webkit-transform: translate(0, 5px);
	transform: translate(0, 5px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	width: 100%;
}

.nav-link:hover::before {
	-ms-filter: "alpha(opacity=100)";
	opacity: 1;
	-webkit-transform: translate(0, -1px);
	transform: translate(0, -1px);
}

.nav-item .ja {
	display: block;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 1.4;
	margin: 0;
	text-align: center;
	vertical-align: middle;
}

.nav-item .en {
	display: block;
	font-family: 'Marcellus', 'Yu Mincho', serif;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: .06em;
	line-height: 1.2;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
}

.dropdown .nav-link .en {
	color: #ab9366;
	font-size: 13px;
	padding-right: 13px;/* 矢印ぶんの幅を確保 */
}

.dropdown:hover .nav-link .en {
	color: #d2c5ae;
}

.dropdown:hover .nav-link::after {
	border-top-color: #d2c5ae;
}

.dropdown .submenu .nav-link .ja {
	color: #00234b;
	display: block;
	font-size: 13px;
}

.dropdown .submenu .nav-link .en {
	display: none;
}

.dropdown.nav-item {
	overflow: visible;
	position: relative;
	width: 7%;
}

.dropdown .nav-link {}

.dropdown .nav-link::before {
	bottom: 5px;
}

.dropdown .nav-link::after {
	border: 5px solid transparent;
	border-top-color: #ab9366;
	content: "";
	margin-top: -4px;
	position:absolute;
	right: 6px;
	top: 50%;
}

.dropdown .submenu .nav-link::before,
.dropdown .submenu .nav-link::after {
	content: none;
}

.submenu {
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 0 8px rgba(0,0,0,.3);
	display: none;
	line-height: 1.6;
/*	margin-right: -35px;*/
	-ms-filter: "alpha(opacity=0)";
	opacity:0;
	pointer-events: none;
	position: absolute;
	right: 0;
	-webkit-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0)scale(.85);
	transition: transform 0.1s ease-out, opacity 0.1s ease-out;
	top: 18px;
	width: 200px;
	z-index: 9999;
}

.submenu-items {
	list-style: none;
	padding: 10px 0;
}

.submenu-item {
	display: block;
	text-align: left;
}

.submenu-item a,
.submenu-item a:link,
.submenu-item a:visited,
.submenu-item a:active {
	color: #666;
	cursor: pointer;
	display: block;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 10px 20px;
	position: relative;
	text-decoration: none;
}

.submenu-item a:hover {
	background: #e5ecef;
}

.show-submenu .submenu {
	display: block;
	-ms-filter: "alpha(opacity=100)";
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translate(0, 25px) scale(1);
	transform: translate(0, 25px) scale(1);
}

@media screen and (max-width: 960px) {
	/*--- 表示領域が960px以下の場合に適用するスタイル ---*/
	.nav-item .en {
		font-size: 13px;
	}

	.dropdown .nav-link .en {
		font-size: 12px;
		padding: 0;
	}

	.dropdown .nav-link::after {
		border-width: 6px;
		display: block;
		height: 0;
		margin: 5px auto -3px;
		position: unset;
		width: 0;
	}

	.show-submenu .submenu {
		margin-right: -5px;
		width: 180px;
	}

	.dropdown .submenu .nav-link .ja {
		font-size: 12px;
	}
}


/* Mobile系の記述を見えない化 */

.nav-toggle,
#mNavi,
.mobile-nav-wrap {
	display: none;
}


/* breadcrumb
------------------------------------------------------------------------------*/

.breadcrumb {
  font-size: 10px;
  list-style: none;
  margin: 6px auto;
	max-width: 1200px;
  overflow: hidden;
  padding: 0;
	width: 98%;
}

.breadcrumb li {
  float: left;
}

.breadcrumb li+li:before {
  content: '>';
  margin: 0 8px;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}


/* footer
------------------------------------------------------------------------------*/

.footer {
  border-top: 2px solid #e0caa2;
  text-align: center;
}

.footer .footer-contents {
  background: #fff;
  margin: 0 auto;
/*  min-height: 250px;*/
  max-width: 1200px;
  width: 100%;
}

.footer .tk-genmin {
  font-family: "source-han-serif-japanese", 'Yu Mincho', serif;
}


/* foot-nav-フッターナビ
--------------------------------------*/

.footer .footer-contents .foot-nav {
  margin: 0 auto;
  padding: 15px 0 10px;
  width: 100%;
}

.footer .footer-contents .foot-nav ul {
  margin: 0;
  padding: 0;
}

.footer .footer-contents .foot-nav li {
  border-right: 1px solid #ddd;
  display: inline-block;
  font-size: 13px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0 20px 0 15px;
}

.footer .footer-contents .foot-nav li:first-child {
  border-left: 1px solid #ddd;
}

.footer .footer-contents .foot-nav li a {
  color: #666;
}

.footer .footer-contents .foot-nav li a:hover {
  opacity: 1;
  text-decoration: underline;
}


/* foot-info-フッターインフォメーション
--------------------------------------*/

.footer .footer-contents .foot-info {
	margin: 25px auto 15px;
	max-width: 1200px;
	min-height: 180px;
}

.footer .foot-info .foot-info-inner-left,
.footer .foot-info .foot-info-inner-center,
.footer .foot-info .foot-info-inner-right {
	display: inline-block;
	margin: 0;
	text-align: center;
	vertical-align: top;
	width: 25%;
}

.footer .foot-info .foot-info-inner-left {
	position: relative;
}

.footer .foot-info .foot-info-inner-left .logo-img-wrap {
	display: inline-table;
	height: 60px;
}

.footer .foot-info .foot-info-inner-left .logo-img-wrap span {
	display: table-cell;
	vertical-align: middle;
}

.footer .foot-info .foot-info-inner-left .site-logo {
	display: block;
	margin: 0 auto;
	max-height: 50px;
	max-width: 200px;
	width: auto;
}

.footer .foot-info .foot-info-inner-left .logo-btm-txt {
	left: 0;
	position: absolute;
	top: 70px;
	width: 100%;
}

.footer .foot-info .foot-info-inner-left .logo-btm-txt span {
	color: #c1ab84;
	display: inline-block;
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 1.5;
}

.footer .foot-info .foot-info-inner-center {
	width: 40%;
}

.footer .foot-info .foot-info-inner-center p {
  color: #666;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 150%;
  margin: 0 0 10px;
  text-align: center;
}

.footer .foot-info .foot-info-inner-center .corp {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.5;
}

.footer .foot-info .foot-info-inner-center .corp span {
	display: block;
}

.footer .foot-info .foot-info-inner-center .corp .kotei-txt {
	color: #c1ab84;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.footer .foot-info .foot-info-inner-center .info-txt span {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	vertical-align: middle;
}

.footer .foot-info .foot-info-inner-center .info-txt .eigyo-txt,
.footer .foot-info .foot-info-inner-center .info-txt .close-txt {
	padding: 0 6px;
}

.footer .foot-info .foot-info-inner-center .info-txt .tel-before {
  height: 34px;
  margin: 0 2px 0 -10px;
  vertical-align: middle;
}

.footer .foot-info .foot-info-inner-center .font-hiramin .tel-before {
  margin-top: -1px;
}

.footer .foot-info .foot-info-inner-center .info-txt .tel {
  color: #d4be96;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 150%;
}

.footer .foot-info .foot-info-inner-center .info-txt .tel.pc {
  display: inline-block;
}

.footer .foot-info .foot-info-inner-center .info-txt .tel.mb {
  display: none;
}

.footer .foot-info .foot-info-inner-right {}

.footer .foot-info .foot-info-inner-right .disp-tbl {
	display: table;
	height: 175px;
}

.footer .foot-info .foot-info-inner-right .disp-tcel {
	display: table-cell;
	vertical-align: middle;
}

.footer .foot-info .foot-info-inner-right a {
  display: inline-block;
  margin: 0 0 15px;
}

.footer .foot-info .foot-info-inner-right a:hover {
  -ms-filter: 'alpha(opacity=80)';
  opacity: .8;
  transition: opacity .2s;
}

.footer .foot-info .foot-info-inner-right a span {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.footer .foot-info .foot-info-inner-right a span img {
	max-width: 220px;
	width: 100%;
}

.footer .foot-info .foot-info-inner-right .bnr-buy.pc,
.footer .foot-info .foot-info-inner-right .bnr-sell.pc,
.footer .foot-info .foot-info-inner-right .bnr-rent.pc {
	display: block;
}

.footer .foot-info .foot-info-inner-right .bnr-buy.mobl,
.footer .foot-info .foot-info-inner-right .bnr-sell.mobl,
.footer .foot-info .foot-info-inner-right .bnr-rent.mobl {
	display: none;
}


@media screen and (max-width: 960px) {
  /*--- 表示領域が960px以下の場合に適用するスタイル ---*/
	.footer .footer-contents .foot-info {
		min-height: 160px;
	}

	.footer .foot-info .foot-info-inner-left {
		width: 28%;
	}

	.footer .foot-info .foot-info-inner-left .logo-btm-txt span {
		font-size: 12px;
		line-height: 1.3;
	}

	.footer .foot-info .foot-info-inner-center .info-txt .tel-before {
		margin: 0 0 0 -5px;
	}

	.footer .foot-info .foot-info-inner-center .tk-genmin .tel {
		font-size: 34px;
		line-height: 130%;
		padding-bottom: 3px;
	}

	.footer .foot-info .foot-info-inner-center small {
		font-size: 10px;
	}

	.footer .foot-info .foot-info-inner-right {
		padding-top: 8px;
	}
}


/* foot-sitelink
--------------------------------------*/

.foot-sitelink {
  background: #00234b;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}
/*
.foot-sitelink .tk-genmin {
  font-family: "source-han-serif-japanese", 'Yu Mincho', serif;
}
*/
.foot-sitelink .site-link-all {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
	width: 100%;
}

.foot-sitelink .site-link-nav {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.foot-sitelink .site-link-nav li.ft-col-wrap {
	background: url(../img/bg-footerinner.png) repeat-y left top;
	display: block;
	float: left;
	min-height: 260px;
	padding: 3px 0 10px;
}

.foot-sitelink .site-link-nav li.ft-col-wrap.ft-col1 {
	background: none;
}

.foot-sitelink .site-link-nav .ft-col1 {
	min-width: 160px;
	width: 13%;
}

.foot-sitelink .site-link-nav .ft-col2 {
	min-width: 235px;
	width: 20%;
}

.foot-sitelink .site-link-nav .ft-col3 {
	width: 65%;
}

.foot-sitelink .site-link-nav .tokyo-tatemono-logo {
	margin: 3px 0 0 3%;
}

.foot-sitelink .site-link-nav .tokyo-tatemono-logo img {
	max-width: 143px;
	width: auto;
}

.foot-sitelink .site-link-nav p {
	color: #fff;
	font-size: 13px;
	letter-spacing: 2px;
	line-height: 220%;
	margin: 0 0 0 20px;
	text-align: left;
}

.foot-sitelink .site-link-nav p.head-txt {
	margin-bottom: 7px;
	text-align: left;
}

.foot-sitelink .site-link-nav .icon-window {
	height: 10px;
	margin-left: 6px;
	vertical-align: middle;
	width: 12px;
}

.foot-sitelink .site-link-nav li a {
	color: #fff;
	text-decoration: none;
}

.foot-sitelink .site-link-nav li ul.inr-list {
	list-style: none;
	margin: 0 0 15px 20px;
	padding: 0;
	text-align: left;
}

.foot-sitelink .site-link-nav .inr-list li span {
	font-size: 11px;
	letter-spacing: .08em;
	line-height: 130%;
}

.foot-sitelink .site-link-nav .ft-col2 .inr-list li span {
	line-height: 220%;
}

.foot-sitelink .brillia-link-list .inr-list.site-link-list {
	margin-bottom: 0;
}

.foot-sitelink .brillia-link-list .inr-list li.b-link {
	float: left;
	width: 33.33%;
}

.foot-sitelink .brillia-link-list li.b-link a {
	color: #8098ad;
	display: inline-block;
	margin: 0 0 6px;
}

.foot-sitelink .ft-col-wrap.ft-col2 li a:hover,
.foot-sitelink .brillia-link-list li.b-link a:hover {
	text-decoration: underline;
}


@media screen and (max-width: 1200px) {
	/*--- 表示領域が1200px以下の場合に適用するスタイル ---*/
	.foot-sitelink .site-link-nav .ft-col-wrap.ft-col1 {
		left: 2%;
		min-height: auto;
		position: absolute;
	}

	.foot-sitelink .site-link-nav .ft-col-wrap.ft-col2 {
		margin-top: 45px;
		min-width: inherit;
		padding-left: 2%;
		width: 21%;
	}

	.foot-sitelink .site-link-nav .ft-col-wrap.ft-col3 {
		min-width: inherit;
		padding-left: 2%;
		width: 75%;
	}

	.foot-sitelink .site-link-nav .tokyo-tatemono-logo {
		margin-left: 0;
	}

	.foot-sitelink .site-link-nav p {
		margin-left: 0;
	}

	.foot-sitelink .site-link-nav li ul.inr-list {
		margin: 0 0 15px;
	}

	.foot-sitelink .site-link-nav .inr-list li span {
		letter-spacing: 0;
	}

	.foot-sitelink .brillia-link-list .inr-list li.b-link {
		display: inline-block;
		float: none;
		width: 32%;
	}
}


@media screen and (max-width: 1020px) {
	/*--- 表示領域が1020px以下の場合に適用するスタイル ---*/
	.foot-sitelink .site-link-nav .ft-col-wrap.ft-col2 {
		width: 28%;
	}

	.foot-sitelink .site-link-nav .ft-col-wrap.ft-col3 {
		width: 68%;
	}

	.foot-sitelink .brillia-link-list .inr-list li.b-link {
		width: 49%;
	}
}


/* copyright-コピーライト
--------------------------------------*/

.copy-wrap {
	background: #004165;
	width: 100%
}

.copyright {
  color: #ccc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Droid Sans", sans-serif;
  font-size: 10px;
  line-height: 1;
  margin: 0 auto;
	padding: 4px 0 6px;
  text-align: center;
}


/* main
------------------------------------------------------------------------------*/

#main {
	border-top: 3px solid #eee;
	padding: 0 0 4%;
}

#main.top_page {
	padding-top: 50px;
}

#main.not-found {
	padding: 60px 0 4%;
}


/* clearfix
--------------------------------------*/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* headline
--------------------------------------*/

.hd1 {
  margin: 0;
  padding: 0 0 10px;
  text-align: center;
}

.hd1 .en {
  color: #1b1b1b;
	display: block;
  font-family: 'Marcellus', 'Yu Mincho', serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 6px;
  text-transform: capitalize;
  vertical-align: middle;
}

.hd1 .bar {
	display: none;
/*
  background: #e0caa2;
  display: inline-block;
  height: 3px;
  margin: 5px 30px 0;
  vertical-align: middle;
  width: 15px;
*/
}

.hd1 .ja {
  color: #333;
	display: block;
  font-family: "source-han-serif-japanese", serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
	line-height: 1.5;
  vertical-align: middle;
}

.hd2 {
  font-family: 'Marcellus', "source-han-serif-japanese", 'Yu Mincho', serif;
  margin: 2em auto;
  padding: 0;
  position: relative;
  text-align: center;
  width: 94%;
}

.hd2 span {
  display: inline-block;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
	line-height: 1.5;
}

.hd3 {
  font-family: "source-han-serif-japanese", 'Yu Mincho', serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2px;
	line-height: 1.3;
  margin: 0 auto 1em;
  text-align: left;
  padding: 20px 0 0;
}

.hd3:after {
	width: 100%;
	height: 2px;
	margin: 6px 0 0 0;
	content: "";
	display: block;
	background: -moz-linear-gradient(left, #1d1d1d 20%, #f0f0f0 20%);
	background: -webkit-linear-gradient(left, #1d1d1d 20%,#f0f0f0 20%);
	background: linear-gradient(to right, #1d1d1d 20%,#f0f0f0 20%);
}


/* content-block
--------------------------------------*/

.content-block {
  margin: 0 auto;
  max-width: 1200px;
  padding: 2% 0;
}

.content-block .box {
  overflow: hidden;
}

.content-block a>img:hover {
  filter: alpha(opacity=75);
  -ms-filter: 'alpha(opacity=75)';
  opacity: .75;
}

.content-block .pagehead-text.text {
  text-align: center;
}

.content-block .text {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 1.2em auto 2em;
  text-align: left;
  width: 94%;
}


/* column 1 image top
--------------------------------------*/

.c1it .box+.box {
  margin: 3% 0 0;
}

.c1it .hd3 {
	width: 94%;
}

.c1it .img {
  margin: 0 auto;
  max-width: 94%;
}


/* column 1 image left
--------------------------------------*/

.c1il .box {
  margin: 4em auto 3em;
  max-width: 94%;
}

.c1il .hd {
  float: right;
  padding-top: 0;
  width: 50%;
}

.c1il .img {
  float: left;
  width: 45%;
}

.c1il .text {
  float: right;
  margin: 0;
  width: 50%;
}

.c1il .text p:first-child {
  margin-top: 0;
}


@media screen and (max-width: 850px) {
	/*--- 表示領域が850px以下の場合に適用するスタイル ---*/
	.c1il .box {
		margin: 2em auto;
	}

	.c1il .box:first-child {
		padding-top: 20px;
	}
}


/* column 1 image right
--------------------------------------*/

.c1ir .box {
  margin: 4em auto 3em;
  max-width: 94%;
}

.c1ir .hd {
  float: left;
  padding-top: 0;
  width: 50%;
}

.c1ir .img {
  float: right;
  width: 45%;
}

.c1ir .text {
  float: left;
  margin: 0;
  width: 50%;
}

.c1ir .text p:first-child {
  margin-top: 0;
}


@media screen and (max-width: 850px) {
	/*--- 表示領域が850px以下の場合に適用するスタイル ---*/
	.c1ir .box {
		margin: 2em auto;
	}

	.c1ir .box:first-child {
		padding-top: 20px;
	}
}


/* column 2 image top
--------------------------------------*/

.c2it {
  text-align: left;
}

.c2it .box {
  display: inline-block;
  margin: 0 3% 2em;
  text-align: left;
  vertical-align: top;
  width: 43.7%;
}

.c2it .text {
	width: 100%;
}


/* column 3 image top
--------------------------------------*/

.c3it {
  text-align: left;
}

.c3it .card-wrap {
  margin: 0 auto;
  max-width: 98%;
}

.c3it .box {
  display: inline-block;
  margin: 0 2% 2em;
  text-align: left;
  vertical-align: top;
  width: 28.95%;
}

.c3it .text {
	width: 100%;
}


@media screen and (max-width: 850px) {
  /*--- 表示領域が850px以下の場合に適用するスタイル ---*/
  .c3it .card-wrap {
    max-width: 100%;
  }

  .c3it .box {
    margin: 0 3% 2em;
    width: 43.7%;
  }
}


/* column 4 image top
--------------------------------------*/

.c4it {
  text-align: left;
}

.c4it .card-wrap {
  margin: 0 auto;
  max-width: 96%;
}

.c4it .box {
  display: inline-block;
  margin: 0 1% 2em;
  text-align: left;
  vertical-align: top;
  width: 22.7%;
}

.c4it .text {
	width: 100%;
}


@media screen and (max-width: 1200px) {
  /*--- 表示領域が1200px以下の場合に適用するスタイル ---*/
	.c4it .card-wrap {
		max-width: 100%;
	}

	.c4it .box {
		margin: 0 3% 2em;
		width: 18.65%;
	}
}


@media screen and (max-width: 970px) {
  /*--- 表示領域が970px以下の場合に適用するスタイル ---*/
	.c4it .box {
		margin: 0px 3% 2em;
		width: 26.94%;
	}
}



/* outline
------------------------------------------------------------------------------*/

.outline-table {
	line-height: 2;
	margin: 0 auto;
	width: 90%;
}

.outline-table th {
	background: #ddd;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 3px;
	padding: 12px 20px;
	text-align: left;
	width: 30%;
}

.outline-table td {
	background: #eee;
	font-size: 14px;
	letter-spacing: 2px;
	padding: 12px 20px;
}


/* map
------------------------------------------------------------------------------*/

.googlemap-wrap {
  width: 94%;
}

#map-canvas,
#svp-canvas {
  float: left;
  height: 400px;
  position: relative;
  width: 50%;
}

.map-dl {
  margin: 0 auto 40px;
  max-width: 600px;
}

.map-dl dt {
  font-weight: bold;
  margin: 0 12px;
}

.map-dl dd+dt {
  margin: 20px 12px 0;
}

.map-dl dd {
  margin: 8px 12px 0;
}

/* 開発環境下ではGoogleMap系を出さない */
.map-canvas-develop,
.svp-canvas-develop {
  float: left;
  height: 400px;
  position: relative;
  width: 50%;
}

.map-canvas-develop {
  background: #d8e6e4;
}

.svp-canvas-develop {
  background: #cde0dd;
}

.map-canvas-develop span,
.svp-canvas-develop span {
  display: block;
  padding-top: 190px;
  text-align: center;
}


/* photogallery
------------------------------------------------------------------------------*/

.gallery-list {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.gallery-list li {
  background: #f7f7f7;
  float: left;
  margin: 1%;
  padding: 1%;
  width: 29.3%;
}

.gallery-list .fit-img {
  height: 200px;
  margin: 4px;
}

.gallery-list .f {
  display: block;
}


/* not-found
------------------------------------------------------------------------------*/

.not-found h2 {
  float: left;
  font: bold 300% 'Times New Roman', serif;
  font: bold 300% Helvetica, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  margin: 10% 0;
  text-align: center;
  width: 50%;
}

.not-found h2 span {
  font-size: 120%;
}

.not-found .img {
  float: right;
  margin: 20px 10% 20px 0;
  width: 40%;
}

.not-found p {
  clear: both;
  line-height: 2;
  text-align: center;
}

.not-found h3 {
  font: bold 175% 'Times New Roman', serif;
  font: bold 175% Helvetica, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  margin: 40px 40px 20px;
  padding: 8px;
}

.not-found ul {
  font-size: 120%;
  list-style: none;
  margin: 20px 40px;
  overflow: hidden;
  padding: 0;
}

.not-found li {
  float: left;
}

.not-found li a {
  display: block;
  padding: 8px 20px;
  width: 8em;
}
