@charset "UTF-8";



<!---->

/*
メインカラー
#54a2dc

サブカラー
#26b99a

アクセントカラー
#fda317

黒
#222

グレー
#aaaaaa
#e6e6e6
#f3f3f3
#f9f9f9
*/

body {
	color: #333;
	font-size: 15px;
	line-height: 1.7;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-family: "NotoSansCJKjp","メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*==================================================
 汎用クラス
================================================== */
/* 整列
-------------------------------------------------- */
.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.pc {
	display: inherit;
}

.sp {
	display: none;
}

/* フォント
-------------------------------------------------- */
.weight-bold {
	font-weight: bold;
}

/* クリア
-------------------------------------------------- */
.clear {
	clear: both;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}


/*==================================================
 タグ
================================================== */
/* img
-------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}


/* a
-------------------------------------------------- */
a {
	color: #54a2dc;
	text-decoration: none;
	transition: All 0.4s ease;
}

a:hover {
	color: #26b99a;
	text-decoration: underline;
}

a img {
	transition: All 0.4s ease;
}

a:hover img {
	opacity: .8;
}


/*==================================================
 テーブル
================================================== */
/* スタイル1
-------------------------------------------------- */
.styled-table01 {
	width: 100%;
	margin: 20px 0;
	line-height: 1.7;
}

.styled-table01:first-child {
	margin-top: 0;
}

.styled-table01 th,
.styled-table01 td {
	padding: 12px;
	vertical-align: top;
	border: 1px solid #ddd;
	background: #fff;
}

.styled-table01 th {
	width: 35%;
	font-weight: normal;
	background: #f7f7f7;
}

.styled-table01 thead th {
	background: #e6e6e6;
}

.styled-table01 caption {
	text-align: center;
	font-size: 20px;
}

/* その他オプション
-------------------------------------------------- */
/* セルの横幅を均等にする
------------------------- */
.cell-width-fix {
	table-layout: fixed;
}

.cell-width-fix th,
.cell-width-fix td {
	width: auto;
}


/* セルの横幅を指定しない
------------------------- */
.cell-width-fazzy th,
.cell-width-fazzy td {
	width: auto;
}


/* 縦向き
------------------------- */
.direction-vertical,
.direction-vertical thead,
.direction-vertical tbody,
.direction-vertical tfoot,
.direction-vertical tr,
.direction-vertical th,
.direction-vertical td {
	width: auto;
	display: block;
}


/* 大きいサイズのテーブルはスマホではスクロールさせる
------------------------- */
@media screen and (max-width: 768px) {
	.scroll-table-wrap {
		overflow-x: scroll;
	}

	.scroll-table-wrap table {
		width: 700px;
		margin: 0;
	}
}

/*==================================================
 dl
================================================== */
.styled-dl01 {
	margin: 0 0 20px;
	padding: 15px;
	border-radius: 3px;
	background: #f4f4f4;
}

.styled-dl01:last-child {
	margin-bottom: 0;
}

.styled-dl01 dt {
	margin: 0 0 10px;
	font-size: 20px;
}

/*==================================================
 パンくずリスト
================================================== */
.breadcrumbs-list {
	height: 25px;
	line-height: 25px;
	margin: 0 0 16px;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
	white-space: nowrap;
}

.breadcrumbs-list li {
	font-size: 14px;
	display: inline;
}

.breadcrumbs-list a {
	background: url(../images/common/icon_arrow03.png) right center no-repeat;
	margin: 0 7px 0 0;
	padding: 0 10px 0 0;
}

/*==================================================
 ページネーション
================================================== */
.pagenation {
	margin: 0 0 20px;
	text-align: center;
	color: #999;
	font-size: 0;
	letter-spacing: 0;
}

.pagenation li {
	width: 26px;
	margin: 0 2px;
	line-height: 30px;
	color: #999;
	font-size: 13px;
	background: #aaa;
	display: inline-block;
}

.pagenation li > * {
	color: #fff;
	text-decoration: none;
	display: block;
}

.pagenation li:hover,
.pagenation li.current {
	background: #54a2dc;
}

/*==================================================
 ヘッダー
================================================== */
.page-header {
	margin: 0 0 16px;
}

.page-header .header-inner {
	width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
}

.header-logo {
}

/* ナビ
-------------------------------------------------- */
.header-nav {
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
	border-bottom: 5px solid #54a2dc;
}

.header-nav ul {
	margin: 0 0 -5px;
}

.header-nav li {
	width: 240px;
	display: inline-block;
	vertical-align: top;
}

.header-nav a {
	line-height: 56px;
	color: #fff;
	font-size: 14px;
	border-right: 1px solid rgba(255,255,255,.4);
	background: #54a2dc;
	display: block;
}

.header-nav a:hover {
	text-decoration: none;
	background: #222;
}

/* ビジュアル
-------------------------------------------------- */
.header-visual-wrap {
	padding: 32px 0;
	background: #222;
}

/* メインビジュアル
------------------------- */
.main-visual {
	width: 1200px;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
}

/*==================================================
 フッター
================================================== */
.page-footer {
	color: #fff;
	font-size: 12px;
	background: #54a2dc;
}

.page-footer a {
	color: inherit;
}

.footer-inner {
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

/* ナビ
-------------------------------------------------- */
.footer-nav {
	line-height: 55px;
	float: left;
	overflow: hidden;
}

.footer-nav li {
	float: left;
}

.footer-nav li:after {
	content: '|';
	margin: 0 8px;
}

.footer-nav li:last-child:after {
	display: none;
}

/* コピーライト
-------------------------------------------------- */
.footer-copyright {
	line-height: 55px;
	float: right;
}

/*==================================================
 サイドバー
================================================== */
.page-body-sidebar {
	width: 300px;
	float: right;
}

/* セクション
-------------------------------------------------- */
.side-section {
	margin: 0 0 50px;
}

.side-section-title {
	margin: 0 0 16px;
	padding: 0 0 8px;
	color: #54a2dc;
	font-size: 20px;
	border-bottom: 3px solid #54a2dc;
}

/*==================================================
 コンテンツ
================================================== */
.page-body {
	width: 1200px;
	margin: 0 auto;
}

.page-body-main {
	width: 860px;
	float: left;
}

/* セクション
-------------------------------------------------- */
.section {
	margin: 0 0 80px;
}

.section-content:after {
	content: " ";
	display: block;
	clear: both;
}

.section-footer {
	padding: 24px 0 0;
	clear: both;
}

/* 見出し
------------------------- */
.styled-title01 {
	margin: 0 0 1.3em;
	padding: 1.1em 0.9em 1em;
	font-size: 22px;
	border-top: 2px solid #222;
	border-bottom: 1px solid #ddd;
	background: #fafafa;
	box-shadow: 0 1px 2px #f7f7f7;
}

.styled-title02 {
	margin: 0 0 1.3em;
	padding: .8em 0.9em .7em;
	font-size: 22px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

/* 記事アイキャッチ
------------------------- */
.section-eyecatch-right {
	max-width: 40%;
	margin: 0 0 20px 20px;
	float: right;
}

.section-eyecatch-left {
	max-width: 40%;
	margin: 0 20px 20px 0;
	float: left;
}

.section-eyecatch-center {
	margin: 0 auto 20px;
	display: block;
}

/* 記事情報
------------------------- */
.post-info-wrap {
	margin: 0 0 16px;
	overflow: hidden;
}

.post-info-wrap .post-info-item {
	margin: 0 15px 0 0;
	padding: 0 0 0 20px;
	background: left top 4px no-repeat;
	float: left;
}

.post-info-wrap .post-info-item-date {
	background-image: url(../images/common/icon_calendar.png);
}

.post-info-wrap .post-info-item-tag {
	background-image: url(../images/common/icon_tag.png);
}


/* タグリスト */
.post-tag-list {
	overflow: hidden;
}

.post-tag-list li {
	margin: 0 5px 0 0;
	float: left;
}

.post-tag-list li:not(:last-child):after {
	content: ',';
}

/* SNSシェアボタン
------------------------- */
.share-btn-list {
	margin: 0 0 16px;
	text-align: right;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
}

.share-btn-list li {
	margin: 0 0 0 8px;
	vertical-align: top;
	display: inline-block;
}

/* 詳細ページ用　前後の記事
------------------------- */
.prev-next-post {
	overflow: hidden;
}

.prev-next-post .prev-post,
.prev-next-post .next-post {
	width: calc(50% - 4px);
	border: 1px solid #e6e6e6;
	box-sizing: border-box;
	float: left;
}

.prev-next-post .next-post {
	float: right;
}

.prev-next-post .next-post {
	float: right;
}

.prev-next-post a {
	padding: 0 20px;
	line-height: 96px;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}

.prev-next-post .prev-post a {
	padding-left: 47px;
	background: url(../images/common/icon_arrow02.png) left 20px center no-repeat;
}

.prev-next-post .next-post a {
	padding-right: 47px;
	background: url(../images/common/icon_arrow01.png) right 20px center no-repeat;
}

.prev-next-post a:hover {
	text-decoration: none;
	background-color: #fafafa;
}

/* その他
-------------------------------------------------- */
/* 投稿日 */
.post-date {
	margin: 0 0 15px;
	padding: 1px 0 0 12px;
	font-size: 13px;
	background: url(../images/common/icon_arrow03.png) left center no-repeat;
	display: block;
}

/* テキストボタン */
.text-btn {
	width: 200px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	background: url(../images/common/icon_arrow01_white.png) right 16px center no-repeat #54a2dc;
	display: inline-block;
}

.text-btn:hover {
	color: #fff;
	text-decoration: none;
	background-color: #26b99a;
}


/*==================================================
 記事リスト
================================================== */
/* 02
-------------------------------------------------- */
.styled-post-list02 .item {
	width: calc((100% - 48px) / 4);
	margin: 0 16px 16px 0;
	float: left;
}

.styled-post-list02 .item:nth-child(4n) {
	margin-right: 0;
}


.styled-post-list02 .thumb {
	margin: 0 0 8px;
	display: block;
}

.styled-post-list02 .title {
	margin: 0 0 8px;
}

.styled-post-list02 .price-num {
	margin-right: .2em;
	color: #f00;
	font-size: 1.2em;
	font-weight: bold;
}

/* 詳細情報リスト
------------------------- */
.styled-post-list02 .detail {
	margin: .5em;
	font-size: 80%;
	line-height: 1.2;
	border-bottom: 1px solid #e6e6e6;
	overflow: hidden;
}

.styled-post-list02 .detail dt {
	width: 45px;
	max-height: 2em;
	margin: 0 0 .5em;
	font-weight: bold;
	float: left;
	clear: right;
	overflow: hidden;
}

.styled-post-list02 .detail dd {
	width: calc(100% - 45px);
	max-height: 2em;
	margin: 0 0 .5em;
	float: left;
}

/*==================================================
 SNSボタン
================================================== */
ul.share-btn-list {
	height: 80px;
	vertical-align: top;
	display: table;
}

ul.share-btn-list li {
	height: 80px;
	vertical-align: top;
	display: table-cell;
	padding-right: 10px;
}

<!---->


























body {
	min-width: 1300px;
	width: 100%;
	color: #444;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 1px;
	font-family: 'メイリオ', Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-family: 'Hannari';
}

* {
	/min-height: 0; /* for IE6, IE7 */
}

a {
	text-decoration: none;
	color: #7b0101;
}
a img {
	transition: All 0.4s ease;
}
a:hover img {
	filter:alpha(opacity=60);
	-moz-opacity: .6;
	opacity: .6;
}
a {
	color: inherit;
	text-decoration: none;
	transition: opacity .3s ease;
}
	a:hover {
		opacity: .5;
	}


/*h2{
	font-size: 20px;
	font-weight: 100;
	margin: 15px auto 0;
	padding-bottom: 10px;
	text-align: center;
	color:#fff;
	line-height: 50px;
	letter-spacing: 5px;
}*/


h3{
	color: #111;
	font-size: 26px;
	margin: 0 0 0 30px;

}




table.def {
	width: 100%;
	margin: 0 auto;
	color: #967d6e;
	font-size: 14px;
	text-align: left;
}
table.def th {
	width: 33%;
	padding: 16px 12px;
	font-weight: bold;
	background: #fff;
}
table.def td {
	padding: 16px 5px;
	background: #fff;
}
table.def tr:nth-child(2n+1) th,
table.def tr:nth-child(2n+1) td {
	background: #f6dfc8;
}


.red_bold {
	color:#993300;
	font-weight:bold;
}

.clear{
	clear:both;
	line-height: 0;
}

.table{
	width: 600px;
	margin-bottom: 30px;
}
	.table th{
		width: 40%;
		padding: 10px 0;
		border:1px solid #555;
		background-color: #f1e6d8;
	}
	.table td{
		padding-left: 20px;
		border:1px solid #e1cfbf;
	}

/* ヘッダー
----------------------------------- */

header {
	background: url(../images/header.png);
	width: 100%;
	height:100px;
	position: fixed;
	top: 0;
	z-index: 9000;
	min-width: 1300px;
	padding:0 0 0px 0;
}
.header_inner {
	width: 100%;
	margin: 0 auto;

}

.logo {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	margin-top: 20px;

}

.gnav {
	position: absolute;
	right:400px;
	display: inline-block;
	margin: 7px 0px 0px 0px;
}
	.gnav li {
		font-size: 16px;
		line-height: 55px;
		display: inline-block;
	}
	.gnav a {
		padding:  15px 10px 2px;
		color: #111;
		display: block;
		font-weight: 500;
		transition: All 0.4s ease;
	}
	.gnav a:hover {
		background: rgba(255,255,255,.5);
	}

.info{
	position: absolute;
	right:20px;
	display: inline-block;
	margin: 10px 0px 0px 0px;
}

.box100{
	padding: 40px;
	width:90%;
	background: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	margin: 0 auto 60px;
}
.box100 h3{
	color:#4b96eb;
	margin:10px 0;
	line-height: 20px;
}
.box100text{
	display: inline-block;
	vertical-align: top;
	width:67%;
}
.box100img{
	display: inline-block;
	vertical-align: top;
}
.box100text dt{
	font-size: 24px;
	margin:6px 0 10px;
	font-weight: 500;
}
.box100text ul{
	margin-top: 20px;
}


.w25box{
	width:22%;
	margin-left: 2%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 40px; 
}
/* 1個目のブロック
----------------------------------- */

#content01 {
	width:100%;
	padding: 100px 0 0px 0;
	height:100vh;
	background: url(../images/01bg.jpg) center top fixed;
	background-size: cover; 
}
.con01_column{
	width:100%;
	margin:0 auto;
}
.con01_box{
	background: url(../images/nami.png) 9% 0% no-repeat;
	width:1000px;
	height:893px;
	margin:50px auto 0;
	color:#fff;
	padding: 130px 0 0 0;
}
.con01_box h2{
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	font-size: 26px;
	text-shadow: 0px 0px 10px #000;
	font-weight: 100;
	letter-spacing: 9px;
	margin: 0 auto 0;
}


.tate{
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	text-orientation: upright;
}
.tate .yoko{
	writing-mode: horizontal-tb;
	margin-top:-5px;
}
.target_svg{
	margin: 0 auto;
	width:36px;
}
.target_svg path {
	fill: rgba(255,255,255,0);
	stroke: #fff;
	stroke-width: 2;
	color:#fff;
}


/* 2個目のブロック
----------------------------------- */

.content02 {
	width:100%;
	padding: 180px 0 200px;
	background: url(../images/02bg.jpg) center top fixed;
	background-size: cover; /* 背景をリピートさせたくないときに入れる */}

#con02_column{
	width:95%;
	margin:0 auto;
	

}

.con02_box{
	float:left;
	background: url(../images/2bg.png);
	width:560px;
	height:493px;
	margin:10px auto 0;
	color:#222;
	font-size: 18px;
	letter-spacing: 2px;
	padding:80px 163px 80px 100px;
}

.cont2table{
	border-collapse: collapse;
    border-spacing: 0;
}
.cont2table tr{
	letter-spacing: 0px;
}
.cont2table th{
	text-align: left;
    padding: 10px;
    font-weight: normal;
}
.cont2table td{
	    text-align: left;
    padding: 10px;
}
/* 3個目のブロック
----------------------------------- */

.content03 {
	padding: 200px 0;
	background: url(../images/03bg.jpg) center top fixed;
	background-size: cover; /* 背景をリピートさせたくないときに入れる */}

#con03_column{
	width:90%;
	margin: 0 auto;
}
.cont3box{
	width:1100px;
	height:500px;
	background: url(../images/3bg.png);
	padding: 60px;
	margin: 0 auto;
}
.cont3table{
	margin-left: 20px;
}
.cont3table thead th{
	font-size: 20px;
	font-weight: bold;
}
.cont3table tr{
	letter-spacing: 1px;
}
.cont3table th{
	line-height: 19px;
	font-size: 19px;
	text-align: left;
    padding: 10px;
    font-weight: normal;
    height:360px;
}
.cont3table td{
	    text-align: left;
    padding: 10px;
}
.cont3img{
	margin-left: 1px;
	text-align: center;
}

/* 4個目のブロック
----------------------------------- */

.content04 {
	width:100%;
	padding: 200px 0;
	background: url(../images/04bg.jpg) center top fixed;
	background-size: cover; 
}
#con04_column{
	width:97%;
	margin: 0 auto;
}
.cont4box{
	float:left;
	width:960px;
	height:406px;
	background: url(../images/4bg.png);
	/*background: rgba(255, 255, 255, 0.9);*/
	padding: 60px;
	margin: 0 auto;
}
.cont4table{
	border-collapse: collapse;
    border-spacing: 0;
    margin:0 0 0 0px;

}
.cont4table thead th{
	font-size: 20px;
	font-weight: bold;
}
.cont4table tr{
	letter-spacing: 1px;
}
.cont4table th{
	line-height: 19px;
	font-size: 19px;
	text-align: left;
    padding: 10px;
    font-weight: normal;
    height:250px;
}
.cont4table td{
	    text-align: left;
    padding: 10px;
}
.con4img{
	margin:0 0 0 40px;
}
small{
	font-size: 14px;
}

/* 5個目のブロック
----------------------------------- */

.content05 {
	width:100%;
	padding: 200px 0;
	background: url(../images/05bg.jpg) center top fixed;
	background-size: cover; /* 背景をリピートさせたくないときに入れる */
}

#con05_column{
	width:97%;
	text-align:left;
}
.cont5box{
	float:right;
	width:766px;
	height:380px;
	background:rgba(255, 255, 255, 0.9);
	padding: 60px;

}
.con5p{
	margin:0 0 0 20px;
}
.cont5table{
	border-collapse: collapse;
    border-spacing: 0;
    margin:0 0 0 40px;

}
.cont5table thead th{
	font-size: 20px;
	font-weight: bold;
}
.cont5table tr{
	letter-spacing: 1px;
}
.cont5table th{
	line-height: 19px;
	font-size: 19px;
	text-align: left;
    padding: 10px;
    font-weight: normal;
    height:80px;
}
.cont5table td{
	    text-align: left;
    padding: 10px;
}
.clear{
	clear:both;
}


/* 6個目のブロック
----------------------------------- */

.content06 {
	padding: 250px 0 0;
	height:100vh;
	background: url(../images/06bg.jpg) center top fixed;
	background-size: cover; /* 背景をリピートさせたくないときに入れる */
}

#con06_column{
	width:100%;
	margin: 0 auto;
	text-align:left;
}
.con06_box{
	background: rgba(255, 255, 255, 0.9);
	width:1020px;
	height:520px;
	margin:10px auto 0;
	color:#222;
	font-size: 18px;
	letter-spacing: 2px;
	/*padding:60px;*/
}
.con6item{
	padding:60px;
}
.con6dl{
	margin:30px 0 0 20px;
}
.con6dl dt{
	font-size: 22px;
}


/* 8個目のブロック
----------------------------------- */
.content08 {
	width:100%;
	padding: 180px 0 180px;
	background: url(../images/08bg.jpg) center top fixed;
	background-size: cover; 
}

#con08_column{
	margin: 0 auto;
	text-align:left;
}
.popuupbtn{
	display: block;
	width: 60%;
	margin: 0 auto;
}
.pubox{
	padding: 20px;
	width:100%;
	/*background: #fff;*/
	border:1px solid #fff;
	margin: 0 auto 30px;
	text-align: left;
}

.puboxtext{
	text-align: left;
	width:100%;
	display: inline-block;
	vertical-align: top;
	color:#442f29;
}
.puboxtitle{
	letter-spacing: 2px;
	font-size: 18px;
	font-weight: 300;
	color:#666;
	color:#fff;
}
.puboxtitlein{
	font-size: 18px;
	font-weight: 300;
	color:#666;
	color:#442f29;
	margin:20px 0;
	font-weight: 600;
}
.puboxtextp{
	text-align: left;
	margin-top: 14px;
	color:#442f29;
	font-size: 16px;
}



/* 7個目のブロック
----------------------------------- */

.content07 {
	padding: 250px 0 120px;

	background: url(../images/07bg.jpg) center top fixed;
	background-size: cover; /* 背景をリピートさせたくないときに入れる */}
}

#con07_column{
	width:960px;
	margin: 0 auto;
	text-align:left;
	color:#fff;
}



.contacttel{
	width:690px;
	margin:0 auto;
}

.sended {
	width: 600px;
	margin: 0 auto;
	padding: 12px;
	text-align: center;
	color: #fff;
	background: rgba(255,255,255,.8);
}

table.entry_conf {
	width: 700px;
	margin: 0 auto 40px;
}
table.entry_conf th {
	width: 200px;
}

.entry_table {
	width: 600px;
	margin: 0 auto 30px;
}
.entry_table th {
	width: 200px;
}
.entry_form {
	width: 690px;
	margin: 0 auto 30px;
	font-size: 16px;
	color: #483514;
}

.entry_form th {
	width: 180px;
	text-align: right;
	padding: 12px;
	font-weight: bold;
	vertical-align: top;
}
.entry_form th p {
	width: 35px;
	margin: 0 0 0 5px;
	text-align: center;
	padding: 1px;
	background: #f00;
	color: #fff;
	font-size: 12px;
	border-radius: 4px;
	display: block;
	float: right;
}
.entry_form td {
	padding: 12px;
}
.entry_form td p {
	color: #f33;
	font-weight: bold;
}

.entry_form input,
.entry_form textarea {
	padding: 8px;
	border: 0;
	color: #000;
	background: #cbbaa4;
}
.entry_form input[type="button"] {
	cursor: pointer;
}
.entry_form select {
	padding: 5px;
	border: 0;
	background: #cbbaa4;
}

p.submits {
	text-align: center;
}
p.submits input {
	margin: 0 8px;
	padding: 0 15px;
	line-height: 35px;
}

.tel{
	width: 600px;
	margin: 0 auto;
	padding-bottom: 50px;
}
	.tel h3{
		padding:20px 0;
		text-align: center;
		color: #fff;
	}





/* フッター
----------------------------------- */

footer {
	width:100%;
	background: url(../images/footerbg.jpg) center top fixed;
	padding:10px 0;
	text-align: center;
	background-color: #f5e8e0;
	padding-top: 40px;
}

.conf_box{
	width:900px;
	height:493px;
	margin:10px auto 0;
	color:#222;
	font-size: 18px;
	letter-spacing: 2px;
	padding:80px 163px 80px 100px;
}

.contftable{
	border-collapse: collapse;
    border-spacing: 0;
}
.contftable tr{
	letter-spacing: 0px;
}
.contftable th{
	text-align: left;
    padding: 10px;
    font-weight: normal;
}
.contftable td{
	    text-align: left;
    padding: 10px;
}
.flogo{
	height:185px;
	margin-left: 60px;
}
.copy{
	color: #483514;
	font-size: 10px;
}
	.copy a{
		color:#483514;
		font-size: 10px;
	}

.con4img {
	max-width: 180px;
	height: 100%;
	display: table;
}
	
.con4img_inner {
	height: 50%;
	display: table-cell;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
}

.con4img .con4img_inner img {
	max-width: 180px;
	max-height: 100%;
	width: auto;
	height: auto;
}

.con4img .con4img_inner:nth-child(1){
	padding-bottom: 10px;
	text-align: top;
}

.con4img .con4img_inner:nth-child(2){
	padding-top: 10px;
	text-align: bottom;
}

.cont3img_outer {
	width: 961px;
	height: 500px;
}
	

.cont3img:nth-child {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	box-sizing: border-box;
	width: 480px;
	height: 500px;
}

.cont3img img {
	max-width: 480px;
	max-height: 100%;
	width: auto;
	height: auto;
}

