@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--brand-navy: #000080;
	--brand-gradient: linear-gradient(135deg, #4b5257 0%, #626d71 45%, #2d3438 100%);
	--brand-line: #626d71;
}
/* CSS Document */

/**　サイト全体に渡る基本設定 **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
img {
	margin: 0;
	padding: 0;
	font-family: "メイリオ", "Meiryo", "MS UI Gothic", "MS PGothic", "Hiragino Maru Gothic Pro", "Hiragino Kaku Gothic Pro";
}

fieldset,
img {
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
	font: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

button {
	cursor: pointer;
}

body {
	word-break: normal;
	font: 16px/1.22 "メイリオ", "Meiryo", "MS UI Gothic", "MS PGothic", "Hiragino Maru Gothic Pro", "Hiragino Kaku Gothic Pro", "Osaka", Arial, sans-serif;
	text-align: center;
	scrollbar-gutter: stable;
}

.slide-in-left,
.slide-in-right {
	opacity: 0;
	transform: translateX(0);
	transition: opacity 0.2s ease-out 0.1s, transform 0.25s ease-out 0.1s;
	will-change: opacity, transform;
}

.slide-in-left {
	transform: translateX(-90px);
}

.slide-in-right {
	transform: translateX(90px);
}

.slide-in-left.is-visible,
.slide-in-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
	.slide-in-left,
	.slide-in-right {
		transition: none;
		transform: none;
	}
}

select,
input,

pre,
code,
kbd,
samp,
tt {
	font-family: monospace;
	line-height: 99%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

h2 {
	font-family: "Noto Sans JP", "メイリオ", "Meiryo", "MS UI Gothic", "MS PGothic", "Hiragino Maru Gothic Pro", "Hiragino Kaku Gothic Pro", "Osaka", Arial, sans-serif;
	font-weight: 800;
}

li,
p,
li,
dt,
dd,
td {
	line-height: 1.33em;
}

a,
ul.tab a:visited {
	color: #1d3994;
}

a:visited {
	color: #000099;
}

a {
	text-decoration: none;
	color: #0000FF;
}

a:hover {
	text-decoration: underline;
	font-weight: bold;
}

p {
	font-size: 15px;
}

/** 印刷処理の時のみに表示される項目のクラス設定 **/
.forPrint {
	display: none;
}

.noDisplay {
	display: none !important;
}

/** 中山看板株式会社　**/

#Wrapper {
	width: 100%;
}

#HeaderWrapper {
	width: 100%;
	background: var(--brand-gradient);
}

#Header {
	width: 100%;
	margin: 0px auto 0px;
	padding: 0px;
	overflow: visible;
}

div#Header .logoArea {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 5px 0 5px 0;
}

/* 共通で使えるコンテンツブロック */
.contentCenterPanel {
	display: flex;
	width: 100%;
	background-color: #e4e4d9;
	padding: 60px 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.contentCenterPanel h2,
.contentCenterPanel h3,
.expArea h2,
.expArea h3 {
	font-size: clamp(1.8rem, 2.8vw, 3em);
	letter-spacing: 0;
	text-align: left;
	padding: 5px 0 5px 10px;
	color: #040404;
}

.contentCenterPanel h3,
.expArea h3 {
	font-size: clamp(1.38rem, 2.8vw, 2em);
	color: #4a4a4a;
}

.contentCenterPanel p,
.expArea p {
	text-align: left;
	font-size: 1.2em;
	padding: 10px;
	color: #272727;
	max-width: 950px;
}

.contentCenterPanel .expArea {
	display: flex;
	width: 80%;
	flex-direction: column;
	align-items: center;
}

.expArea {
	width: 40%;
	height: auto;
	display: block;
}

.pictureArea {
	display: flex;
	width: 45%;
	overflow: hidden;
	border-radius: 0 0 5px 5px;
	min-width: 260px;
	flex-direction: column;
	justify-content: space-evenly;
	background: #f2f0e7;
	border: 1px solid #f2f0e7;
}

.slideArea {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.slideArea img,
.slideArea .splide__slide img,
.pictureArea img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.slideThumbs {
	width: 100%;
	background: #fff;
	padding: 8px 0 10px 0;
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	border-radius: 0 0 8px 8px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.slideThumbs .splide__track {
	padding: 0 30px;
}

.slideThumbs .splide__slide {
	opacity: 0.5;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.slideThumbs .splide__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slideThumbs .splide__slide.is-active {
	opacity: 1;
	border-color: #fff;
}

.linkPanels {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	width: 95%;
	margin: 0 auto;
}

.linkPanelBase {
	width: 100%;
	padding: 60px 0;
	background: #f2f0e7;
	display: flex;
	justify-content: center;
}

.linkPanel {
	background: #ffffff;
	border-radius: 14px;
	padding: 16px 14px 18px 14px;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 230px;
}

.linkPanelIcon {
	width: 56px;
	height: 56px;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background: #b38867;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.linkPanelIcon svg {
	width: 30px;
	height: 30px;
	display: block;
}

.linkPanel h4 {
	margin: 6px 0 6px 0;
	font-size: 1.05em;
	line-height: 1.4;
	min-height: 2.8em;
}

.linkPanel p {
	font-size: 0.9em;
	line-height: 1.4em;
	color: #333;
	margin: 0 0 12px 0;
	min-height: 4.2em;
}

.linkPanelButton {
	display: inline-block;
	padding: 14px 14px;
	background: #ffffff;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.9em;
	margin-top: auto;
	box-shadow: inherit;
	transition: background 0.2s ease;
}

.linkPanelButton:hover {
	background: #ffe4b2;
	text-decoration: none;
}

.fadeOutBlock {
	opacity: 0;
	transition: opacity 0.25s ease;
}

.fadeOutBlock {
	opacity: 0;
	transition: opacity 0.25s ease;
}

@media (max-width: 980px) {
	.linkPanels {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.linkPanels {
		grid-template-columns: 1fr;
	}
}

.orderFlowPanels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
}

.orderFlowPanels li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #ffffff;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.orderFlowIcon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #1f65f5;
	color: #fff;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.orderFlowText h4 {
	margin: 0 0 6px;
	font-size: 1rem;
	color: #1f2a38;
}

.orderFlowText p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.4;
	color: #3a3a3a;
}

.contentsArea0 {
	display: flex;
	justify-content: center;
	padding: 40px 10px 40px;
}

.infoPanel {
	width: 95%;
	background: #747465;
	border-radius: 22px;
	padding: 26px 28px;
}

.serviceCards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.serviceCard {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: #f7f7f7;
	padding: 16px 20px;
	border-radius: 14px;
	min-width: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.serviceCard--center.zoom-in-center {
	opacity: 0;
	transform: scale(0.7);
	transform-origin: center;
	transition: opacity 0.3s ease, transform 0.45s ease;
	will-change: opacity, transform;
}

.serviceCard--center.zoom-in-center.is-visible {
	opacity: 1;
	transform: scale(1);
}

.serviceCard > div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
}

.serviceIcon {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: #775a38;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 24px;
	aspect-ratio: 1 / 1;
	min-width: 54px;
	min-height: 54px;
	flex: 0 0 auto;
}

.serviceIcon svg {
	width: 60%;
	height: 60%;
}

.serviceCard h2 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #1e1e1e;
}

.serviceCard h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #1e1e1e;
}

.serviceCard p {
	margin: 6px 0 0;
	color: #3a3a3a;
	font-size: 0.95rem;
	line-height: 1.4;
	text-align: left;
}


.contentsArea1,
.contentsArea2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	padding: 60px 0;
}

.shadow {
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

@media (max-width: 949px) {
	.serviceCards {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 14px;
	}
}

div#Header .logoTitle {
	margin: 0px 0px 0px 0px;
	padding: 0px;
	overflow: hidden;
	background: transparent;
	text-align: right;
}

div#Header .logoTitle h1 {
	color: white;
	padding: 5px 0px 4px 0px;
	font-size: 16px;
}

div#Header .logoTitle p {
	color: #ffff5e;
	font-size: 28px;
	font-weight: bold;
}

div#Header .logoImage {
	clear: both;
	width: 100%;
	margin: 0px;
	padding: 0px;
	/* Divに謎の隙間ができるときの裏技 */
	line-height: 0px
}

div.headerSlider {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #000;
	aspect-ratio: 950 / 317;
}

div.headerSlider .splide__track,
div.headerSlider .splide__list {
	height: 100%;
	width: 100%;
}

div.headerSlider .splide__slide {
	position: relative;
	height: 100%;
	width: 100%;
}

div.headerSlider .splide__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

div.headerSliderThumbs {
	width: 100%;
	background: #001a4d;
	padding: 8px 0 10px 0;
	box-sizing: border-box;
}

div.headerSliderThumbs .splide__track {
	padding: 0 30px;
}

div.headerSliderThumbs .splide__slide {
	opacity: 0.5;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

div.headerSliderThumbs .splide__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

div.headerSliderThumbs .splide__slide.is-active {
	opacity: 1;
	border-color: #fff;
}

div.topMenu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: padding 0.25s ease;
	min-height: 50px;
	box-sizing: border-box;
	/*　メニューバーの角丸設定する場合にコメントアウト
		border-radius: 8px; 
		 -webkit-border-radius: 8px;
		 -moz-border-radius: 8px;			
		 */
}

div.topMenuInner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: var(--brand-gradient);
	padding: 10px 0 10px 0;
	min-height: 50px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 0;
}

div.topMenuInner>* {
	position: relative;
	z-index: 1;
}

div.topMenuLogo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 0;
	flex: 0 0 0;
	max-width: 0;
	margin-right: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-6px);
	transition: max-width 0.25s ease, margin 0.25s ease, opacity 0.75s ease, transform 1.75s ease;
}

div.topMenuLogo img {
	display: block;
	height: 32px;
	width: auto;
}

div.topMenu ul {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	width: 950px;
	align-items: center;
}

div.topMenu ul li {
	display: inline-block;
}

div.topMenu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 127px;
	padding: 9px 0 8px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	-webkit-border-radius: 999px;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	transition: width 0.75s ease, padding 0.25s ease, border-color 0.25s ease,
		background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
	transform: translateZ(0);
	will-change: width, border-color, transform, box-shadow;
}

div.topMenu.is-stuck {}

div.topMenu.is-stuck .topMenuInner {
	align-items: flex-start;
	justify-content: center;
}

div.topMenu.is-stuck div.topMenuLogo {
	width: auto;
	flex: 0 0 auto;
	max-width: 220px;
	margin-right: 16px;
	opacity: 1;
	transform: translateY(0);
}

div.topMenu.is-stuck .topMenuInner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../Image/city.svg") repeat-x calc(100% - 16px) bottom;
	background-size: auto 20px;
	opacity: 0.8;
	pointer-events: none;
	z-index: 0;
}

div.topMenu.is-stuck div.topMenuLogo img {
	height: 28px;
}

div.topMenu.is-stuck ul li a {
	width: 96px;
	padding: 6px 0 5px;
	border-width: 1px;
	font-size: 11px;
	line-height: 1;
	box-sizing: border-box;
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateZ(0);
	border-radius: 999px;
	-webkit-border-radius: 999px;
}

div.topMenu.is-stuck ul {
	justify-content: flex-end;
	gap: 10px;
}

div.topMenu ul li a:link {
	color: white;
}

div.topMenu ul li a:visited {
	color: white;
}

div.topMenu ul li a:hover {
	background: rgba(255, 255, 255, 0.25);
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

div.topMenu ul li a:active {
	color: #FFFF00;
	transform: translateY(0);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

div.Line01 {
	background: var(--brand-line);
	min-height: 3px;
	margin-top: 2px;
}

div.Line02 {
	background: var(--brand-line);
	min-height: 3px;
	margin-top: 3px;
}

div.Line03 {
	background: var(--brand-line);
	min-height: 2px;
	margin-top: 3px;
}

div.Line04 {
	background: var(--brand-line);
	min-height: 1px;
	margin-top: 3px;
}

div.topMenuLines {
	width: 100%;
	background: #ffffffd6;
}

div.topMenuLines .Line01 {
	margin-top: 2px;
}

div.space {
	min-height: 16px;
}

#FooterWrapper {
	width: 100%;
	background: var(--brand-gradient);
	margin-top: 3px;
	padding-bottom: 30px;
}

div#Footer {
	width: 950px;
	margin: 0px auto 0px;
	background: transparent;
}

.fadeInBlock {
	opacity: 0;
	transform: translateY(20px);
}

.fadeInBlock.visible {
	animation: fadeInBlock 0.8s var(--fade-delay, 0s) ease forwards;
}

@keyframes fadeInBlock {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
}

div#Footer .left {
	float: left;
	color: white;
	width: 39%;
	min-height: 10px;
	overflow: hidden;
}

div#Footer .right {
	float: left;
	width: 60%;
	text-align: right;
	overflow: hidden;
}

div#Footer .bottom {
	clear: both;
	text-align: center;
	padding: 10px 0px;
	overflow: hidden;
}

div#Footer .left ul {
	display: block;
	padding: 10px 5px 5px 5px;
	text-align: center;
	font-size: 16px;
}

div#Footer .left ul li {
	color: white;
}

div#Footer .left ul li.free {
	color: #ffff92;
	font-size: 40px;
	font-weight: bold;
}

div#Footer .left ul li.kigaru {
	font-size: 20px;
}

div#Footer .left ul li.phone {
	font-size: 25px;
}

div#Footer .left ul li.addr {
	font-size: 14px;
}

div#Footer .right ul {
	padding: 10px;
	color: white;
	font-size: 14px;
}

div#Footer .right ul li {
	display: inline-block;
	padding: 3px;
}

div#Footer .right ul li a {
	color: white;
	text-decoration: none;
}

div#Footer div.bottom h4 {
	padding: 2px;
	color: white;
	font-size: 14px;
}

div#Footer div.bottom p {
	padding: 2px;
	color: white;
	font-size: 14px;
}

div#Footer .bottom h4 {
	font-size: 20px;
}

.Dummy {
	clear: both;
}

div.applybutton {
	text-align: center;
	margin: 10px auto;
}

div.return {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 30px;
}

div.autolink {
	width: 635px;
	margin: 10px auto 0px;
	border: 0px solid #AAAAAA;
	overflow: hidden;
	zoom: -1;
	padding: 5px 0px 0px 0px;
}

div.autolink ul {}

div.autolink ul a:visited {
	color: midnightblue;
}

div.autolink ul a {
	text-decoration: none;
	color: midnightblue;
}

div.autolink ul li {
	float: left;
	width: 288px;
	height: 18px;
	text-align: left;
	background-color: #F9F9F9;
	border: 1px solid midnightblue;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	margin: 0px 0px 5px 5px;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 10px;
}

div.autolink ul li.moredata {
	text-align: right;
	background-color: #FFFFFF;
	font-weight: bold;
	font-size: 16px;
}

div.autolink ul li.moredatabig {
	width: 603px;
	text-align: right;
	background-color: #FFFFFF;
	font-weight: bold;
	font-size: 15px;
}

div.autolink ul a:hover li {
	text-decoration: none;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	background-color: midnightblue;
}

div.autolink ul li.ProblemTitle {
	width: 603px;
	background-color: #FFFFCC;
	border: none;
	border-top: 4px solid Orange;
	border-bottom: 4px solid Orange;
	color: #766045;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

div.autolink ul li.ProblemTitleImage {
	width: 625px;
	height: 71px;
	border: none;
	padding: 0px;
	background-color: #FFFFFF;
	text-align: center;
}

span.kome {
	font-size: 12px;
	color: red;
}

ul.kome {
	font-size: 12px;
	color: red;
	list-style-type: none;
	text-align: left;
}

ul.komeDisc {
	font-size: 12px;
	color: red;
	list-style-type: disc;
	text-align: left;
}

ul.kome li {
	margin: 3px;
}

.adminHeaderControle {
	padding: 5px 10px 5px 10px;
}

.adminFooterControle {
	padding: 5px 10px 5px 10px;
	color: white;
	text-align: right;
}

p.dialog {
	text-align: left;
}

/* ｊQueryアコーディオンとタブを使わない場合に読み込むCSS */
#tabs {
	width: 100%;
	margin: 10px auto;
	text-align: center;
}

#tabs>ul {
	display: block;
	overflow: hidden;
	padding: 10px 0px;
}

#tabs>ul>li {
	display: inline-block;
}

/*
#accordion>h3,
#accordion02>h3,
#accordion03>h3 {
	clear: both;
	margin-top: 15px;
	font-size: 1.2em;
	color: #11246D;
	padding: 20px;
	background: #DDDAFF;

	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	-webkit-border-top-left-radius-top: 8px;
	-webkit-border-top-right-radius-top: 8px;
	-moz-border-top-left-radius-top: 8px;
	-moz-border-top-right-radius-top: 8px;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

#accordion>div,
#accordion02>div,
#accordion03>div,
#tabs-1,
#tabs-2,
#tabs-3,
#tabs-4 {
	margin-bottom: 30px;
	padding: 15px;
	background: #f8f7f6;
	text-align: left;
	overflow: hidden;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	-webkit-border-bottom-left-radius-top: 8px;
	-webkit-border-bottom-right-radius-top: 8px;
	-moz-border-bottom-left-radius-top: 8px;
	-moz-border-bottom-right-radius-top: 8px;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

*/
div.contents {
	width: 95%;
	margin: 3px auto;
}

p.explain {
	text-align: left;
	font-size: 1.2em !important;
	padding: 20px !important;
}

.titleGothic {
	font-family: "Russo One", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
}

.bgNoColor {
	background-color: white !important;
}
