@charset "utf-8";
/*
Theme Name: Web Design CROSSROAD 2026
Theme URI: https://wdcro.com/
Description: Web Design CROSSROADのテーマ 2026
Author: Web Design CROSSROAD
Author URI: http://www.wdcro.com/
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, dl, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {	margin: 0; padding: 0; border: 0; font-style:normal; font-weight: normal; font-size: 100%; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
html{ overflow-y: scroll; }
blockquote, q {	quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
input, textarea { margin: 0; padding: 0; }
ol, ul{ list-style:none; }
table{ border-collapse: collapse; border-spacing:0; }
caption, th{ text-align: left; }
a:focus {outline:none; }
.clearfix::after {content: ""; display: block; clear: both; }
.clear { clear: both; }
/*--------↑↑↑↑↑-resrt↑↑↑↑↑--------------*/
body {
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	margin: 0px auto;
	text-align: center;
}
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* Preferred icon size */
	display: inline-flex;
	line-height: 1;
 	text-transform: none;
 	letter-spacing: normal;
 	word-wrap: normal;
 	white-space: nowrap;
 	direction: ltr;
	vertical-align: middle;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
}
code {
	background-color: #f5f5f5;  /* 薄いグレーで背景 */
	color: #d63384;             /* やや強調された色（ピンク系） */
	padding: 0.2em 0.4em;       /* 少し余白 */
	border-radius: 4px;         /* 角を丸く */
	border: 1px solid #dddddd;
	font-size: 0.95em;          /* 若干小さめ */
	font-family: Consolas, Monaco, 'Courier New', monospace;
}

a {
	color: #0067E3;
}
a:hover {
	color: #D43214;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.wp-block-image {
	margin: 30px auto;
}
figcaption {
	font-size: 0.8rem;
	color: #5F5F5F;
	text-align: center;
	line-height: 1.2rem;
}
a , a img {
	transition: 0.3s ease-in-out;
}
iframe {
	max-width: 100%;
}
.nowrap {
	white-space: nowrap;
}
.wp-embedded-content {
	width: 100% !important;
}

/* =========================
   ヘッダー全体
========================= */
#top {
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1000;
}

.headerBar {
	height: 100px;
	background: rgba(1, 26, 45, 0.75);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* =========================
   ロゴ
========================= */
.logo {
	flex: 0 0 300px;
	width: 300px;
	height: 100px;
}

.logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
}

.logo img {
	display: block;
	width: 300px;
	height: 100px;
	object-fit: contain;
}

/* =========================
   メニュー
========================= */
.headerMenu {
	margin-left: auto;
	height: 100px;
	padding-right: 20px;
}

.headerMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	height: 100%;
}

.headerMenu ul li {
	margin: 0 10px;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.headerMenu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	white-space: nowrap;
}

/* ホバー時の文字色 */
.headerMenu ul li a:hover,
.headerMenu ul li.current a {
	color: #FCBE3A;
}

/* 下線 */
.headerMenu ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 30px; /* 文字の下に少し余白を持たせる */
	width: 100%;
	height: 3px;
	background: #FCBE3A;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}

.headerMenu ul li a:hover::after,
.headerMenu ul li.current a::after {
	transform: scaleX(1);
}

/* =========================
   ハンバーガーボタン
========================= */
.navbar_toggle {
	display: none;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	z-index: 1100;
}

.navbar_toggle span {
	display: block;
	position: absolute;
	left: 50%;
	width: 32px;
	height: 3px;
	background: #fff;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}

.navbar_toggle span:nth-child(1) {
	top: 18px;
}

.navbar_toggle span:nth-child(2) {
	top: 28px;
}

.navbar_toggle span:nth-child(3) {
	top: 38px;
}

/* 開いた時のアニメーション */
.navbar_toggle.open span:nth-child(1) {
	top: 28px;
	transform: translateX(-50%) rotate(45deg);
}

.navbar_toggle.open span:nth-child(2) {
	opacity: 0;
}

.navbar_toggle.open span:nth-child(3) {
	top: 28px;
	transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   1000px以下
========================= */
@media screen and (max-width: 1000px) {
	.headerBar {
		position: relative;
		height: 100px;
		padding-right: 80px;
	}

	.logo {
		width: 300px;
		flex: 0 0 300px;
	}

	.headerMenu {
		position: absolute;
		top: 100px;
		right: 0;
		width: 280px;
		height: auto;
		padding-right: 0;
		background: rgba(1, 26, 45, 0.95);
		display: none;
	}

	.headerMenu.open {
		display: block;
	}

	.headerMenu ul {
		display: block;
		height: auto;
	}

	.headerMenu ul li {
		margin: 0;
		height: auto;
		display: block;
		border-top: 1px solid rgba(255,255,255,0.15);
	}

	.headerMenu ul li a {
		display: block;
		height: auto;
		padding: 18px 20px;
		line-height: 1.6;
	}

	.headerMenu ul li a::after {
		left: 20px;
		bottom: 12px;
		width: calc(100% - 40px);
	}

	.navbar_toggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 0;
	}
}

/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-homeTop*/
#homeTop {
}

/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#breadcrumbWrap*/
#breadcrumbWrap {
	width: 100%;
	clear: both;
	padding-top: 20px;
	background: #FFFFFF;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#breadcrumb*/
#breadcrumb {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
	padding: 3px 0;
	font-size: 0.8em;
	color: #454545;
}
@media only screen and (max-width:1000px) {
#breadcrumb {
	width: 96%;
	padding: 3px 2%;
}
}
#breadcrumb ul li {
	display: inline;
	margin: 0 7px 0 0;
}
#breadcrumb a {
	color: #454545;
}
#breadcrumb a:hover {
	color: #F76D10;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#wrap*/
#wrap {
	width: 100%;
	line-height: 1.8;
}
.home #wrap {
	margin-top: 100px;
}
.wrapArea {
	margin-top: 100px;
}
@media only screen and (min-width:1001px) {
	#kitchenTop2 {
		display: none;
	}
}
@media only screen and (max-width:1000px) {
	#kitchenTop1 {
		display: none;
	}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-article*/
article {
	width: 1000px;
	margin: 0 auto;
	padding: 1px 0 50px 0;
	background: #FFF;
	text-align: left;
}
@media only screen and (max-width: 1000px) {
article {
	width: 100%;
}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#wrap h1*/
#wrap h1 {
	font-size: 2em;
	margin: 40px 0;
	color: #004293;
	font-weight: bold;
	border-bottom: solid 3px #95C5FF;
	position: relative;
	text-align: left;
}
#wrap h1:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #004293;
	bottom: -3px;
	width: 20%;
}
@media only screen and (max-width:1000px) {
	#wrap h1 {
		margin: 25px 2%;
		font-size: 1.6em;
	}
}
@media only screen and (max-width:620px) {
	#wrap h1 {
		font-size: 1.4em;
	}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post*/
.post {
	max-width: 750px;
	margin: 0 auto;
	padding: 0px 3%;
}
.home .post , .wrapArea .post {
	max-width: none;
	padding: 0px 3%;
}
.postArea {
	max-width: 750px !important;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post h2*/
h2 {
	font-size: 1.8rem;
	margin: -8em auto 30px auto;
	clear: both;
	font-weight: bold;
	color: #222222;
	padding: 10em 0 7px 0;
}
h2.h2 {
	margin: 0em auto 30px auto;
	padding: 2em 0 7px 0;
}
h2.inquiryForm {
	margin: -4em auto 30px auto;
	padding: 6em 0 7px 0;
}
h2 strong {
	font-size: 2.4rem;
	color: #2EC900;
	padding-left: 0.2em;
	padding-right: 0.2em;
}
@media only screen and (max-width:620px) {
	h2 {
		font-size: 1.2rem;
	}
		h2 strong {
			font-size: 1.6rem;
	}
}
.privacy h2 {
	font-size: 1.6em;
	margin: -8em auto 30px auto;
	clear: both;
	color: #183286;
	background: none;
	padding: 10em 0 7px 0;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post h3*/
.post h3 {
	font-size: 1.6rem;
	margin: 20px auto;
	color: #065774;
	border-bottom: 2px solid #065774;
	padding: 0.2em 0;
	font-weight: bold;
}
@media only screen and (max-width:620px) {
.post h3 {
	font-size: 1.4em;
}
}
.post h3.slidePosition {
	margin: -5em auto 30px auto;
	padding: 7em 0 7px 0;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post h4*/
.post h4 {
	font-size: 1.2rem;
	margin: 30px 0 20px 0;
	padding: 0.2em 0.5em;
	color: #7F3493;
	background: #F2EBF4;
	font-weight: bold;
}
@media only screen and (max-width:620px) {
.post h4 {
	font-size: 1.0em;
}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post p*/
.post p {
	margin: 1.8em auto;
}
.home .post p , .wrapArea .post p {
	max-width: 750px;
}
.post .ark-block-notice p , .post .ark-block-notice ul {
	margin: unset;
}
.post .ark-block-notice.is-style-default .ark-block-notice__title {
	font-weight: bold;
}
@media only screen and (max-width:620px) {
.post p {
	/*margin: 0 0 10px 0;*/
}
}
.wp-block-quote {
	padding: 25px;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/
.postDate {
	font-size: 0.8em;
	color: #96875D;
}
.postDate time {
	padding: 0 5px;
}
.post-categories {
	text-align: right;
	font-size: 0.9rem;
	margin: 10px auto 30px auto!important;
}
.post-categories span a {
	background: #36AF28;
	padding: 5px 10px;
	text-decoration: none;
	color: #FFFFFF;
	margin-left: 10px;
}
.post figure.alignright {
	max-width: 50%;
}
@media only screen and (max-width:620px) {
	.post figure.alignright {
		max-width: 100%;
		float: none;
		text-align: center;
	}
}
.liquid-speech-balloon-large p {
	font-size: 1.6rem !important;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post ul*/
.post ul {
	margin: 0 0 30px 0;
}
.post ul li {
	list-style-type: square;
	margin: 0.5em 0 0.5em 2em;
}
@media only screen and (max-width:700px) {
	.post ul {
		margin: 0 0 10px 0;
	}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post ol*/
.post ol {
	margin: 0 0 30px 0;
}
.post ol li {
	list-style-type: decimal;
	margin: 0.5em 0 0.5em 2em;
}
@media only screen and (max-width:700px) {
	.post ol {
		margin: 0 0 10px 0;
	}
	.post ol li {
		margin: 0.5em;
	}
}
.post ol li ul li {
	list-style-type: square;
	margin: 0.5em 0 0.5em 2em;
}
@media only screen and (max-width:700px) {
	.post ol li ul li {
	}
}
.post dt.ark-block-dl__dt span {
	font-weight: bold !important;
}
.post dd.ark-block-dl__dd p {
	margin-bottom: 0 !important;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.post table*/
.post table {
	margin: 0 0 30px 0;
	width: 100%;
	border: 0;
}
.post table td {
	padding: 10px 20px;
	border: 1px solid #AAAAAA;
}
.post table td:nth-child(1) , .post table td:nth-child(1) a {
	background: #F0F0F0;
	font-weight: bold;
}
.post .nowrapTd table td:nth-child(1) {
	white-space: nowrap;
}
.post .planTable table tr:nth-child(1) td {
	background: #F0F0F0;
	font-weight: bold;
}
.post .planTable table tr td strong {
	font-weight: normal;
	font-size: 1.4rem;
	margin: 0 0.3rem 0 0;
}
@media only screen and (max-width:700px) {
	.post .planTable table tr:nth-child(1) td {
		display: none;
	}
	.post .planTable table tr td {
		display: block;
		border-bottom: none;
	}
	.post .planTable table tr td:last-of-type {
		margin-bottom: 15px;
		border-bottom: 1px solid #AAAAAA;
	}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-table.t-form*/
table.t-form {
	width: 100%;
	border-collapse: separate;
	border-spacing: 8px;
	border: none;
}
table.t-form td:nth-child(1) {
	white-space: nowrap;
	text-align: right;
	vertical-align: top;
	background: #C7DAE7;
}
table.t-form textarea , table.t-form input {
	padding: 0.2em;
	font-family : inherit;
}
@media only screen and (max-width:1000px) {
	table.t-form td:nth-child(1) {
		white-space: normal;
		text-align: left;
	}
}
@media only screen and (max-width:700px) {
	table.t-form td {
		display: block;
		text-align: left;
	}
	table.t-form td:first-of-type {
		border-bottom: none;
	}
	table.t-form td textarea {
		width: 100%;
	}
}
.hissu {
	font-size: 0.8em;
	padding: 3px 10px 4px 10px;
	margin: 0 0 0 1em;
	color: #FFF;
	background: #B51E21;
	border-radius: 5px;
	white-space: nowrap;
}

.wpcf7 span.wpcf7-not-valid-tip {
	font-size: 0.8em;
	font-weight: bold;
	color: #C00;
}
.wpcf7 .wpcf7-not-valid {
    background-color: #FDC3C3;
}
.wpcf7-submit {
	font-size: 1.2em;
	min-width: 100%;
	padding: 12px;
	background: #FFDE1F;
	color: #000000;
}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 10px 20px !important;
    border: none !important; /* Blue */
}
.wpcf7 form.init .wpcf7-response-output {
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450; /* Green */
	color: #FFFFFF;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,  
.wpcf7 form.spam .wpcf7-response-output,  
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #E50D0D;
	color: #FFFFFF;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.wp-pagenavi*/
.wp-pagenavi {
	text-align: center;
	clear:both;
	padding: 20px 0;
	position: relative;
	font-size: 0.9em;;
	background: none;
	margin: 10px 0 20px;
	vertical-align: middle;
}
.wp-pagenavi span, .wp-pagenavi a {
	display: inline-block;
	margin: 2px 2px 2px 0;
	padding: 5px 10px !important;
	text-decoration: none;
	width: auto;
	color: #FFF;
	background: #444;
}
.wp-pagenavi a:hover{
	color: #FFF;
	background: #C00;
}
.wp-pagenavi .current{
	background: #666;
	color: #FFF;
}
article #caseWrap {
	padding: 0px 3%;
}
article .caseBox {
	margin: 15px auto;
	padding: 20px;
	border: 1px solid #AEAEAE;
	box-sizing: border-box;
	text-align: left;
}
article .caseBox:nth-of-type(2n-1) {
	width: 48.5%;
	float: left;
}
article .caseBox:nth-of-type(2n) {
	width: 48.5%;
	float: right;
}
article .caseBox img {
	width: 100%;
}
article .caseBox h3 a {
	background: #3671A8;
	color: #FFFFFF;
	padding: 5px 0.5em;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
article .caseBox p {
	margin-top: 15px;
}
@media only screen and (max-width:800px) {
	article .caseBox {
		width: 100% !important;
		float: none !important;
	}
}
article .catch {
	margin: 30px 3%;
	padding: 20px;
	border: 1px solid #AEAEAE;
	text-align: left;
}
article .catch .catch-left {
	float: left;
	width: 48%;
}
@media only screen and (max-width:620px) {
	article .catch .catch-left {
		width: 100%;
	}
	article .catch .catch-left img {
		width: 100%;
	}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-article .catch .catch-right*/
article .catch .catch-right {
	float: right;
	width: 48%;
}
@media only screen and (max-width:620px) {
article .catch .catch-right {
	width: 100%;
}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-article .catch h2 , article .catch h3*/
article .catch h2 , article .catch h3 {
	font-size: 1.4rem;
	margin: 0 auto;
	clear: both;
	background: none;
	padding: 0;
}
@media only screen and (max-width:620px) {
article .catch h2 , article .catch h3 {
	font-size: 1.2rem;
}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-article .catch p*/
article .catch p {
	margin-top: 15px;
}
article .catch p.no-image {
	width: 100%;
}
@media only screen and (max-width:620px) {
article .catch p {
	width: 100%;
	float: none;
}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#faqBo*/
.faqBox {
	margin: 0 0 30px 0;
	padding: 20px;
	border: 1px solid #EFEFEF;
	background: linear-gradient(to top right, #EFEFEF, #FFFFFF);
}
.faqBox h3 {
	font-size: 1.4em;
	padding: 0 0 5px 60px;
	margin: 0 0 20px 0;
	color: #125177;
	min-height: 30px;
	font-weight: normal;
	background: url(image/q.png) no-repeat top left;
	border-bottom: 1px solid #B8B8B8;
}
.faqBox p {
	padding: 0 0 0 60px;
	min-height: 40px;
	margin: 0;
	background: url(image/a.png) no-repeat top left;
}
@media only screen and (max-width:620px) {
.faqBox h3 , .faqBox p {
	padding: 0 0 0 50px
} 
}
.faqBox ul {
	padding: 0 0 0 60px;
}/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-.detail a*/
.detail {
	text-align: right;
}
.detail a {
	color: #FFF;
	background: #F79212;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.9em;
	margin: 10px 0;
	text-align: center;
	padding: 5px 10px;;
	line-height: 1em;
}
.detail a span {
	margin-left: 0.2em;
}
.detail a:hover {
	background: #D52124;
}
#responseWrap {
	background: url("image/responseWrap.jpg") center center;
	background-size: cover;
	padding: 120px 0;
}
#manager {
	width: 95%;
	max-width: 840px;
	margin: 0 auto 50px auto;
	padding: 15px;
	border: 1px solid #212121;
	background: rgba(255,255,255,0.9);
}
#manager #managerPhoto {
	width: 33%;
	float: left;
}
#manager #managerProfile {
	width: 64%;
	float: right;
	text-align: left;
}
#manager #managerProfile p {
	font-size: 0.9rem;
	padding: 0 15px 10px 0;
}
#manager #managerProfile p:last-of-type {
	padding:  0 15px 0 0;
}
@media only screen and (max-width:800px) {
	#manager #managerPhoto , #manager #managerProfile {
		width: 100%;
		float: none;
	}
	#manager #managerProfile p {
		padding: 15px 0;
	}
}
#response {
	width: 95%;
	max-width: 1000px;
	margin: 50px auto 0 auto;
	border: 5px solid rgba(33,33,33,0.85);
	background: rgba(255,255,255,0.70);
}
#response h3 {
	font-size: 1.4rem;
	color: #FFFFFF;
	background: rgba(33,33,33,0.85);
	padding: 5px 10px 7px 10px;
}
#response p {
	font-size: 1.8rem;
	padding: 25px;
	font-weight: bold;
	color: #266D96;
	line-height: 2em;
}
#response p strong {
	font-size: 3.6rem;
	color: #222222;
	margin-top: 10px;
	display: block;
}
#responseEstimation {
	padding: 25px 0;
	margin: 0 auto;
	width: 95%;
	max-width: 500px;
}
#responseEstimation a {
	background: #B50003;
	display: block;
}
#responseEstimation a:hover {
	background: #F38800;
}
@media only screen and (max-width:800px) {
	#response h3 {
		font-size: 1rem;
	}
	#response p {
		font-size: 1.2rem;
	}
	#response p strong {
		font-size: 1.6rem;
	}
	#responseEstimation {
		padding-top: 0;
	}
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-footer*/
footer {
	width: 100%;
	clear: both;
	background: #054980 url("image/footer-bg.jpg");
	box-shadow: 0 -10px 10px rgba(0,34,70,0.81);
}
#footerWrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	clear: both;
	padding: 80px 0;
}
#footerLeft {
	width: 46%;
	margin: 0 2%;
	float: left;
	text-align: left;
}
#footerRight {
	width: 46%;
	margin: 0 2%;
	float: right;
	text-align: left;
}
#footerWrap h3 {
	color: #FFEB87;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 30px 0 10px 0;
}
@media only screen and (max-width:1060px) {
#footerWrap {
	width: 94%;
	margin: 0 3%;
	padding: 20px 0 10px 0;
}
}
@media only screen and (max-width:620px) {
#footerWrap {
	padding: 20px 0 50px 0;
}
}
#footerWrap ul {
	margin-left: 1em;
}
#footerWrap ul li {
	font-size: 0.9rem;
	line-height: 2em;
}
#footerWrap ul li a {
	color: #FFFFFF;
	padding: 7px 0;
	text-decoration: none;
}
#footerWrap #footer-support-area ul li {
	display: inline;
	font-size: 0.8rem;
	padding-right: 1.2em;
	white-space: nowrap;
}
#footerWrap #footer-sns ul li {
	display: inline;
	padding-right: 0.7em;
}
#footerWrap ul li a:hover {
	text-decoration: underline;
}
#facebookBox {
	margin-top: 30px;
}
#footerWrap p {
	margin: 30px 0;
	padding: 15px;
	font-size: 0.8em;
	color: #FFFFFF;
}
#footerWrap p a {
	color: #FFFFFF;
}
/*+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#bottomNavWrap*/
#bottomNavWrap {
	background: rgba(10,22,35,0.77);
	position: fixed;
	bottom: 0;
	z-index: 99;
	width: 100%;
}
#bottomNav {
	text-align: left;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
}
#bottomNav ul li {
	display: inline;
}
#bottomNav ul li a {
	display: inline-block;
	height: 70px;
	border: 1px solid #FFFFFF;
	margin: 0 0.5%;
	box-sizing: border-box;
	float: left;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
#bottomNavHome a {
	width: 11.875%;
	background: url("image/bottomNavHome.png") no-repeat center center;
}
#bottomNavLine a {
	width: 23.75%;
	background: url("image/bottomNavLine.png") no-repeat center center;
}
#bottomNavEstimation a {
	width: 23.75%;
	background: url("image/bottomNavEstimation.png") no-repeat center center;
}
#bottomNavInquiry a {
	width: 23.75%;
	background: url("image/bottomNavInquiry.png") no-repeat center center;
}
#bottomNavGotop a {
	width: 11.875%;
	background: url("image/bottomNavGotop.png") no-repeat center center;
}
@media only screen and (max-width:900px) {
	#bottomNavHome a {
		width: 10%;
	}
	#bottomNavLine a {
		width: 41%;
	}
	#bottomNavEstimation a {
		width: 17%;
		background: url("image/bottomNavEstimationMini.png") no-repeat center center;
	}
	#bottomNavInquiry a {
		width: 17%;
		background: url("image/bottomNavInquiryMini.png") no-repeat center center;
	}
	#bottomNavGotop a {
		width: 10%
	}
}
@media only screen and (max-width:620px) {
	#bottomNavHome a {
		width: 19%;
	}
	#bottomNavLine a {
		width: 19%;
		background: url("image/bottomNavLineIcon.png") no-repeat center center;
	}
	#bottomNavEstimation a {
		width: 19%;
		background: url("image/bottomNavEstimationIcon.png") no-repeat center center;
	}
	#bottomNavInquiry a {
		width: 19%;
		background: url("image/bottomNavInquiryIcon.png") no-repeat center center;
	}
	#bottomNavGotop a {
		width: 19%;
	}
}
#bottomNav ul li a:hover {
	background-color: rgba(216,61,64,0.70);
}