  @charset "utf-8";

/* ======================================================
 * layout_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
====================================================== */

@media only screen and (max-width: 767px) {
	/* ------------------------------------------------------
	 * Common
	------------------------------------------------------ */
	/* ----- is-body-XXXX ----- */
	.is-body-cnav {
		position: fixed;
		width: 100%;
	}
	.Header,
	.pageGuide,
	.pageHead,
	.container,
	.Assist,
	.licence-text,
	.Footer {
		transition-property: margin-left;
		transition-duration: .2s;
		width: 100vw;
	}
	.is-body-cnav .Header,
	.is-body-cnav .pageGuide,
	.is-body-cnav .pageHead,
	.is-body-cnav .container,
	.is-body-cnav .Assist,
	.is-body-cnav .licence-text,
	.is-body-cnav .Footer {
		width: 100%;
		margin-left: 75%;
	}
	
	/* ------------------------------------------------------
	 * Header
	------------------------------------------------------ */
	.Header,
	.HeaderSimple {
		position: relative;
		box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
		transition-property: top;
		transition-duration: .4s;
	}
	.Header.is-Header-open::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .4);
		z-index: 200;
		opacity: 1;
	}
	
	/* ----- HeaderBody ----- */
	.HeaderBody {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
		background-color: #fff;
		border-bottom: 1px solid #eee;
		z-index: 230;
	}
	
	/* header-identity */
	.header-identity {
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		width: calc(100% - 50px);
		height: 50px;
		padding-left: 15px;
		background-color: #fff;
		z-index: 250;
		box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2);
	}
	.HeaderSimple .header-identity {
		width: 100%;
		padding: 0 15px;
	}
	.header-identity .identity_logo img {
		width: 110px;
	}
	
	/* headerUtility-support_global */
	.headerUtility-support_global {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 240;
		background-color: #33bdba;
	}
	.headerUtility-support_global a {
		display: block;
		width: 50px;
		height: 50px;
		padding: 14px;
	}
	.headerUtility-support_global a .link_label {
		display: inline-block;
		width: 22px;
		height: 22px;
		background: url(/common/images/com_ic29_sp.png) no-repeat 0 0;
		background-size: 22px 22px;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
	.headerUtility-support_global.is-global-open a .link_label {
		background: url(/common/images/com_ic25_sp.png) no-repeat 50% 50%;
		background-size: 17px 17px;
	}
	/* headerUtility-support_site */
	.headerUtility-support_site {
		display: none;
	}
	/* headerUtility-list */
	.headerUtility-list {
		display: none;
	}
	.headerUtility_item_site {
		display: none;
	}
	.headerUtility_item_global {
	}
	.is-Header-open .headerUtility_item_global {
	}
	.headerUtility-support_body {
		position: absolute;
		top: -30vw;
		left: 0;
		width: 100%;
		background-color: #33bdba;
		box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2);
		transition-property: top;
		transition-duration: .4s;
		z-index: 220;
	}
	.is-Header-open .headerUtility-support_body {
		top: 50px;
	}
	.headerUtility-support_body .headerUtility_item_global > ul {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #33bdba;
		margin-top: 0!important;
	}
	.headerUtility-support_body .headerUtility_item_global > ul > li + li {
		margin-top: 0;
	}
	.headerUtility-support_body .headerUtility_item_global > ul > li > a {
		display: block !important;
		padding: 15px;
		text-align: center;
		color: #fff;
	}
	.headerUtility_item_global li a:after {
		display: none;
	}
	.headerUtility-support_body .headerUtility_item_global > ul > li > a span {
		position: relative;
		display: inline-block;
		padding-left: 20px;
	}
	.headerUtility-support_body .headerUtility_item_global > ul > li > a span::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 2px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	/* ------------------------------------------------------
	 * Cnav
	------------------------------------------------------ */
	/* ----- Cnav ----- */
	.Cnav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		padding-right: 25%;
		-webkit-transition: left .2s;
		transition: left .2s;
		z-index: 210;
	}
	.is-body-cnav .Cnav {
		left: 0;
		z-index: 250;
	}
	.is-body-cnav .Cnav::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .4);
		z-index: 250;
	}
	.is-body-cnav .CnavBody {
		position: relative;
		overflow-y: scroll;
		height: 100%;
		padding-bottom: 56px;
		background-color: #fff;
		z-index: 250;
		-webkit-overflow-scrolling: touch;
	}
	.is-body-cnav .CnavMenu {
	}
	.CnavMenu .cnavList > .has-CnavChild > a,
	.CnavMenu .cnavList > li > a {
		position: relative;
		display: block;
		padding: 10px 15px;
		font-size: 1.4rem;
		color: #fff;
	}
	.CnavMenu .cnavList > .has-CnavChild > a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		display: inline-block;
		width: 13px;
		height: 13px;
		margin-top: -6px;
		background: url(/common/images/com_ic27_sp.png) no-repeat 0 0;
		background-size: 13px 13px;
		border: none;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.CnavMenu .cnavList > .has-CnavChild > .is-open::after {
		background: url(/common/images/com_ic28_sp.png) no-repeat 0 0;
		background-size: 13px 13px;
	}
	.CnavMenu .cnavList > li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 14px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.CnavMenu .cnavList > li > a.a-blank::after {
		background: url(/common/images/com_ic01_sp.png) no-repeat 0 0;
		background-size: 10px 10px;
		right: 10px;
		margin-left: 0;
		margin-right: 0;
	}
	.CnavMenu .CnavChild-inner {
		display: none;
	}
	.CnavMenu .CnavChild_image {
		display: none !important;
	}
	.CnavMenu .CnavChild_title a,
	.CnavMenu .CnavChild_body .CnavChild_item a,
	.CnavMenu .CnavChild_sublink .CnavChild_sublink_title a,
	.CnavMenu .CnavChild_sublink .CnavChild_sublink_title p,
	.CnavMenu .CnavChild_sublink .sublink_link a {
		position: relative;
		display: block;
		padding: 12px 15px 12px 30px;
	}
	.CnavMenu .CnavChild_sublink .CnavChild_column .sublink_link a {
		padding-left: 45px;
	}
	.CnavMenu .CnavChild_title a::after,
	.CnavMenu .CnavChild_body .CnavChild_item a::after,
	.CnavMenu .CnavChild_sublink .CnavChild_sublink_title a::after,
	.CnavMenu .CnavChild_sublink .sublink_link a::after {
		content: "";
		position: absolute;
		top: 1.3em;
		left: 10px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #969696;
		border-right: 1px solid #969696;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: 0;
	}
	.CnavMenu .CnavChild_sublink .CnavChild_column .sublink_link a::after {
		left: 25px;
	}
	.CnavMenu .CnavChild_sublink .sublink_link,
	.CnavMenu .CnavChild_sublink .sublink_link li {
		margin-top: 0;
		line-height: 1.6;
	}
	.CnavMenu .CnavChild_sublink .sublink_link li {
		line-height: 1.6 !important;
	}
	.CnavMenu .CnavChild_sublink .sublink_link li a {
		color:#333333;
	}
	.CnavMenu .headerUtility-list {
		display: block;
		padding: 10px 0;
	}
	.CnavMenu .headerUtility-list > li > a {
		position: relative;
		display: block;
		padding: 12px 15px 12px 30px;
	}
	.CnavMenu .headerUtility-list > li > a::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #969696;
		border-right: 1px solid #969696;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	/* CnavChild */
	.CnavChild {
		display: none;
	}
	/* ----- category setting ----- */
	.CnavMenu .CnavChild_title a,
	.CnavMenu .CnavChild_body .CnavChild_item a,
	.CnavMenu .CnavChild_sublink .CnavChild_sublink_title a,
	.CnavMenu .CnavChild_sublink .CnavChild_sublink_title p,
	.CnavMenu .CnavChild_sublink .sublink_link a {
		background-color: #def1f0;
		border-bottom: 1px solid #b7dad9;
		text-align: left;
		border-left: none;
		border-top: none;
		border-right: none;
	}
	.CnavMenu .cnavList > .has-CnavChild > a,
	.CnavMenu .cnavList > li > a {
		background-color: #00b5ad;
		border-bottom: 1px solid #008481;
	}
	/* ------------------------------------------------------
	 * Main
	------------------------------------------------------ */
	.Main {
	}
	
	/* ----- MainBody ----- */
	.MainBody {
		position: relative;
	}
	
/* ----- pageGuide ----- */
	.pageGuide {
		width: 100%;
		border-bottom: 1px solid #eee;
	}
	
	/* breadcrumbs */
	.breadcrumbs {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: -5px;
		padding: 12px 8px 10px;
	}
	.breadcrumbs li {
		position: relative;
		margin-top: 5px;
		margin-left: 6px;
		padding: 0 0 0 14px;
		font-size: 1.2rem;
		line-height: 1.2;
	}
	.breadcrumbs li:before {
		content: "";
		position: absolute;
		top: 0.54em;
		left: 0;
		width: 6px !important;
		height: 6px !important;
		margin-top: -4px;
		border-top: 1px solid #909090 !important;
		border-right: 1px solid #909090 !important;
		-webkit-transform: rotate(45deg) !important;
		transform: rotate(45deg) !important;
	}
	.breadcrumbs li:first-child {
		margin-left: 0;	
		padding-left: 0;
	}
	.breadcrumbs li:first-child:before {
		display: none;
	}
	.breadcrumbs li:first-child > a {
		display: inline-block;
		width: 14px;
		height: 12px;
		background: url(/common/images/com_ic15_sp.png) no-repeat 0 0;
		background-size: 14px 12px;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
	.breadcrumbs li sup {
		font-size: 1.0rem;
		top:-0.3em;
	}
	.breadcrumbs li sub {
		font-size: 1.0rem;
		bottom: -0.1em;
	}
	
	/* ----- pageHead ----- */
	.pageHead {
	}
	
	/* ----- container ----- */
	.container {
		padding-top: 20px;
	}
	body#modal .container {
		padding: 30px 15px 15px;
	}
	
	/* contents */
	.contents {
		padding: 0 15px;
	}
	body#modal .contents {
		padding: 0;
	}
	
	/* sidebar */
	.sidebar {
	}
	
	/* ------------------------------------------------------
	 * Assist
	------------------------------------------------------ */
	.Assist {
		margin-top: 40px;
	}
	.Assist .category_body-list:not(.is-append),
	.Assist .category_body-list:not(.is-append) > ul li {
		display: none;
	}
	
	/* ----- assist-local ----- */
	.Assist .assist-local {
		padding: 15px 0 0;
		border-top: 1px solid #e6e6e6;
	}
	.Assist .assist-local_inner {
		margin: 0 auto;
	}
	.Assist .assist-local_head > a {
		position: relative;
		padding-left: 30px !important;
		font-size: 1.6rem !important;
	}
	.Assist .assist-local_head > a:after {
		content: "";
		position: absolute;
		top: 4px !important;
		left: 10px !important;
		display: inline-block !important;
		width: 13px !important;
		height: 10px !important;
		margin-top: 0 !important;
		background: #fff url(/common/images/com_ic14_sp.png) no-repeat 0 0;
		background-size: 13px 10px;
		border: none !important;
		-webkit-transform: rotate(0deg) !important;
		transform: rotate(0deg) !important;
	}
	.Assist .assist-local_body > *:first-child {
		margin-top: 0;
	}
	.Assist .link-text.assist-local_link {
		margin-top: 0;
	}
	.Assist .link-text.assist-local_link > li {
		margin-top: 0;
		width: 100%;
	}
	.Assist .link-text.assist-local_link > li.link_title {
		margin: 20px 0 10px;
		padding: 0 10px;
		font-size: 1.5rem;
	}
	.Assist .link-text.assist-local_link > li.link_title:nth-child(2) {
		margin-top: 15px !important;
	}
	.Assist .link-text.assist-local_link > .assist-local_head + * {
		margin-top: 5px;
	}
	.Assist .link-text.assist-local_link > li > a {
		display: block;
		padding: 10px 20px 10px 30px;
		color: #333;
	}
	.Assist .link-text.assist-local_link > .is-current > a {
		padding-right: 20px;
		background-color: #f4f4f4;
		color: #767676;
	}
	
	.Assist .link-text.assist-local_link > .assist-local_head > a {
		padding: 0 20px 0 30px;
		background-color: transparent;
		color: #333;
	}
	
	/* ------------------------------------------------------
	 * Footer
	------------------------------------------------------ */
	.Footer {
		margin-top: 40px;
		padding: 34px 18px 72px;
		background-color: #000;
		position: relative;
	}
	.FooterSimple {
		position: relative;
		margin-top: 40px;
		padding: 29px 18px 20px;
		background-color: #000;
	}
	
	/* .footerNavi-list */
	.footerNavi-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.footerNavi-list > li {
		width: calc((100% - 15px) / 2);
		margin-top: 14px;
		font-size: 1.3rem;
	}
	.footerNavi-list > li:nth-child(2n){
		margin-left:15px;
	}	
	.footerNavi-list > li:nth-child(-n+2) {
		margin-top: 0;
	}
	.footerNavi-list > li > a {
		position: relative;
		display: inline-block;
		padding-left: 20px;
		color: #fff;
	}
	.footerNavi-list > li > a:before {
		content: "";
		position: absolute;
		top: 6px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	
	/* ----- FooterUtility ----- */
	/* .footerUtility-list */
	.footerUtility-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.footerUtility-list > li {
		width: calc((100% - 15px) / 2);
		margin-top: 13px;
		font-size: 1.2rem;
		letter-spacing: -0.5px;
	}
	.footerUtility-list > li:nth-child(2n) {
		margin-left:15px;
	}		
	.footerUtility-list > li:nth-child(-n+2) {
		margin-top: 0;
	}
	.footerUtility-list > li > a {
		position: relative;
		display: inline-block;
		padding-left: 20px;
		color: #fff;
	}
	.footerUtility-list > li > a:before {
		content: "";
		position: absolute;
		top: 4px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.footerNavi-list li a.a-blank::after {
		margin-right: 0;
		background: url(/common/images/com_ic01_sp.png) no-repeat 0 0;
		background-size: 10px 10px;
	}
	
	/* ----- FooterBody ----- */
	.FooterBody {
		margin-top: 15px;
		padding-top: 20px;
		border-top: 1px solid #1a1a1a;
	}
	.FooterSimple .FooterBody {
		margin-top: 0;
		padding-top: 0;
		border: none;
	}
	
	/* footer-copyright */
	.footer-copyright {
		text-align: center;
	}
	.footer-copyright_label {
		font-size: 1rem;
		color: #cbcbcb;
		line-height: 1;
	}
	
	/* ----- Pagetop ----- */
	.pagetop {
		position: absolute;
		display: block;
		width: 40px;
		height: 40px;
		top: -20px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.pagetop a {
		position: relative;
		display: block;
		width: 40px;
		height: 40px;
		text-indent: -9999px;
		overflow: hidden;
		background-color: #888;
		border-radius: 20px;
	}
	.pagetop a:after {
		position: absolute;
		content: "";
		display: block;
		top: 50%;
		left: 0;
		right: 0;
		margin-top: -4px;
		margin-left: auto;
		margin-right: auto;
		width: 14px;
		height: 14px;
		background-image: none;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	/* ------------------------------------------------------
	 * FollowNavi
	------------------------------------------------------ */
	.FollowNavi {
		position: fixed;
		bottom: -60px;
		left: 0;
		width: 100%;
		background-color: #fff;
		box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, .2);
		z-index: 300;
		transition-property: left, bottom;
		transition-duration: .2s;
	}
	.is-body-cnav .FollowNavi {
		left: 75%;
	}
	.FollowNavi.is-scroll-up {
		bottom: 0;
	}
	.is-body-cnav .FollowNavi.is-scroll-up {
		bottom: 0 !important;
	}
	
	/* followNavi-link */
	.followNavi-link {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
		background-color: #fff;
		z-index: 320;
	}
	[class*="followNavi-link_"] {
		width: 25%;
		text-align: center;
	}
	.followNavi-link_item_sitemap {
		display: none !important;
	}
	[class*="followNavi-link_"] > a {
		position: relative;
		display: block;
		height: 56px;
		padding: 35px 0 5px;
		font-size: 1.1rem;
	}
	[class*="followNavi-link_"] > a::after {
		content: "";
		position: absolute;
		top: 38%;
		left: 50%;
		display: inline-block;
	}
	.followNavi-link_item_menu > a::after {
		width: 19px;
		height: 16px;
		margin: -9px 0 0 -9px;
		background: url(/common/images/com_ic26_sp.png) no-repeat 0 0;
		background-size: 19px 16px;
	}
	.followNavi-link_item_inquiry > a::after {
		top: 36%;
		width: 23px;
		height: 19px;
		margin: -10px 0 0 -12px;
		background: url(/common/images/com_ic32_sp.png) no-repeat 0 0;
		background-size: 23px 19px;
	}
	.followNavi-link_item_site > a::after {
		width: 21px;
		height: 21px;
		margin: -11px 0 0 -11px;
		background: url(/common/images/com_ic30_sp.png) no-repeat 0 0;
		background-size: 21px 21px;
	}
	.followNavi-link_item_pagetop > a::after {
		top: 45%;
		width: 14px;
		height: 14px;
		margin: -7px 0 0 -7px;
		border-top: 2px solid #666;
		border-right: 2px solid #666;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	[class*="followNavi-link_"].is-FollowNavi-link-open > a {
		background-color: #00b5ad;
		color: #fff;
	}
	[class*="followNavi-link_"].is-FollowNavi-link-open > a::after {
		width: 17px;
		height: 17px;
		margin: -9px 0 0 -9px;
		background: url(/common/images/com_ic25_sp.png) no-repeat 0 0;
		background-size: 17px 17px;
	}
	.followNavi-body {
		position: fixed;
		bottom: -20vh;
		left: 0;
		width: 100%;
		padding: 30px 15px;
		background-color: #00b5ad;
		transition-property: top, bottom, left;
		transition-duration: .2s, .2s, .2s;
		z-index: 310;
	}
	.is-body-cnav .FollowNavi .followNavi-body {
		left: 75%;
	}
	.FollowNavi.is-FollowNavi-open .followNavi-body {
		bottom: 56px;
	}
	.followNavi-body_title {
		text-align: center;
		color: #fff;
	}
	.followNavi-body_item_site {
		font-size: 0;
	}
	.followNavi-body_item_site .followNavi_site-text {
		display: inline-block;
		width: calc(100% - 85px);
		height: 40px;
		background: none;
		border: none;
		border-bottom: 1px solid #fff;
		color: #fff;
	}
	.followNavi-body_item_site .followNavi_site-text:placeholder-shown {
		color: #fff;
	}
	.followNavi-body_item_site .followNavi_site-text::-webkit-input-placeholder {
		color: #fff;
	}
	.followNavi-body_item_site .followNavi_site-text:-moz-placeholder {
		color: #fff;
		opacity: 1;
	}
	.followNavi-body_item_site .followNavi_site-text::-moz-placeholder {
		color: #fff;
		opacity: 1;
	}
	.followNavi-body_item_site .followNavi_site-text:-ms-input-placeholder {
		color: #fff;
	}
	.followNavi-body_item_site .followNavi_site-block {
		display: inline-block;
		margin-left: 10px;
	}
	.followNavi-body_item_site .followNavi_site-block .followNavi_site-btn {
		position: relative;
		display: block;
		background-color: #fff;
	}
	.followNavi-body_item_site .followNavi_site-block .followNavi_site-btn::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 8px;
		display: inline-block;
		width: 16px;
		height: 16px;
		margin-top: -8px;
		background: url(/common/images/com_ic31_sp.png) no-repeat 0 0;
		background-size: 16px 16px;
	}
	.followNavi-body_item_site .followNavi_site-block .followNavi_site-btn > input {
		position: relative;
		width: 75px;
		height: 40px;
		padding: 0 0 0 20px;
		background: none;
		border: none;
		font-size: 1.4rem;
		color: #00b5ad;
		cursor: pointer;
	}
	.followNavi-body_item_sitemap {
		display: none !important;
	}
	#bizsearchAspForm {
		position: relative;
	}
	#bizsearchAspQuery {
		background-color: inherit !important;
	}
	#bizasarchAspSuggest {
		position:absolute;
		margin:0;
		padding:0;
		z-index:1000;
		left: 0 !important;
		top: 34px !important;
		height: 300px;
		overflow-y: auto;
		
	}
	#bizasarchAspSuggest li {
		list-style:none;
		border-left:1px solid #B0C4DE;
		border-bottom:1px solid #B0C4DE;
		border-right:1px solid #B0C4DE;
		background-color:#f5f5f5;
		padding:1px 0;
	}
	#bizasarchAspSuggest li.sgItemOn {
		border-left:1px solid #cc9900;
		border-bottom:1px solid #cc9900;
		border-right:1px solid #cc9900;
		background-color:#ffeeaa;
		font-weight:bold;
		cursor:pointer;
	}
	#bizsearchAspForm2 {
		position: relative;
	}
	#bizsearchAspQuery2 {
		background-color: inherit !important;
	}
	#bizasarchAspSuggest2 {
		position:absolute;
		margin:0;
		padding:0;
		z-index:1000;
		left: 0 !important;
		top: -150px !important;
		height: 150px;
		overflow-y: auto;
		
	}
	#bizasarchAspSuggest2 li {
		list-style:none;
		border-left:1px solid #B0C4DE;
		border-bottom:1px solid #B0C4DE;
		border-right:1px solid #B0C4DE;
		background-color:#f5f5f5;
		padding:3px 4px;
		font-size: 1.6rem !important;
		line-height: 1.6 !important;
	}
	#bizasarchAspSuggest2 li.sgItemOn {
		border-left:1px solid #cc9900;
		border-bottom:1px solid #cc9900;
		border-right:1px solid #cc9900;
		background-color:#ffeeaa;
		font-weight:bold;
		cursor:pointer;
	}
	
	/* ------------------------------------------------------
	 * Other
	------------------------------------------------------ */
	/* Cookie Banner Icon */
	#ot-sdk-btn-floating.ot-floating-button{
		bottom: 70px!important;
	}
	/* ------------------------------------------------------
	 * Clearfix
	------------------------------------------------------ */
	.clearfix::after {
		clear: both;
		content: "";
		display: block;
	}
}