@charset "UTF-8";
@media screen and (max-width : 1024px) {
	.pc { display: none; }
	.is-animation #gNav { top: 0 !important; }
}
@media screen and (min-width : 1025px) {
	.sp { display: none; }
}

a {
	color: #17306C;
	transition: all 0.3s ease;
	text-decoration: none;
}
a:hover {
	opacity: 0.6;
}
.inner {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
}
/* header */
#header {
	position: relative;
	top: -110px;
	left: 0;
	width: 100%;
	z-index: 1;
	transition: .3s;
}
#header #headerLogo {
	display: inline-block;
	padding: 20px 0 0 40px;
}
#header #headerLogo a {
	display: block;
	width: 280px;
	height: 35px;
	text-indent: 100%;
	white-space: nowrap; 
	overflow: hidden;
	background: url(/assets/img/hd_logo.png) no-repeat top left;
	background-size: cover;
}
#header p a:hover {
	color: #646464;
}

#header ul {
	float: right;
}

#header li {
	float: left;
	font-size: 14px;
}
#header li.login a {
	margin: 15px 0;
	padding: 0 15px;
	display: block;
	background: #3C7BB1;
	color: #FFF;
	line-height: 30px;
	border-radius: 5px;
}
#header li.entry a {
	margin: 25px 15px;
	padding: 0 15px;
	display: block;
	background: #D32525;
	color: #FFF;
	line-height: 30px;
	border-radius: 4px;
}


#header .inner {
	position: absolute;
	width: 100%;
	top: 110px;
	height: 110px;
	/*background: #FFF;*/
}
#header p,
#header ul {
	transition: .3s;
	box-sizing: border-box;
}

/* navi */
#header #menu{
	display: block;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	z-index: 9999;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
	position: relative;
	width: 40px;
	height: 40px;
	margin: 20px 30px 0 0;
	transition: .3s;
	border-radius: 4px;
}

#menu span {
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	left: 10px;
	background: #3C7BB1;
	transition: .3s;
}
#menu span:nth-of-type(1) {
	top: 12px;
}
#menu span:nth-of-type(2) {
	top: 19px;
}
#menu span:nth-of-type(3) {
	bottom: 12px;
}
#menu.active span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
}
#menu.active span:nth-of-type(2) {
	opacity: 0;
}
#menu.active span:nth-of-type(3) {
	-webkit-transform: translateY(-7px) rotate(45deg);
	transform: translateY(-7px) rotate(45deg);
}
#header #menu:hover {
	background: #3C7BB1;
}

#header #menu:hover span {
	background: #FFF;
}

#gnav {
	float:none;
	width: 400px;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;	
	padding-top:60px;
	z-index: 1000;

	opacity: 0;
	transition: all 0.25s;
	transform: translate(100%, 0);
	background: #f0f0f0f0;
}
#gnav.open {
	opacity: 1;
	transition: all 0.25s;
	transform: translate(0);
	box-shadow: 0 0 5px #0003;
}

#gnav.open ul.list {
	transform: translateX(-10%);
	opacity: 0;
	animation: slide-in 0.5s ease-out forwards;
}
@keyframes slide-in {
	50% {
		opacity: 0;
		transform: translateX(-10px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

#gnav.close {
	opacity: 1;
	animation: fade-out 0.25s ease-out forwards;
}
@keyframes fade-out {
	100% {
		opacity: 0;
	}
}



#gnav form { padding: 0 30px 10px; }
#gnav form input[type=text] { width: calc(100% - 60px); line-height: 40px; box-sizing: border-box; border-radius: 6px 0 0 6px; padding: 0 10px; background: #FFF; border: none; }
#gnav form input[type=submit] { background: #3C7BB1; color: #FFF; width: 60px; height: 40px; box-sizing: border-box; border-radius: 0 6px 6px 0; float: right; }

#gnav ul.btn {
	width: 100%;
  	display: flex;
	padding: 0 25px 20px;
	border: none;
	border-bottom:solid 1px #FFF;

}
#gnav ul.btn li {
	border: none;
	margin: 0 5px;
	width: calc(100% / 3 - 10px);
}
#gnav ul.btn li a {
	display: block;
	color: #221814;
	background: #FFF;
	border-radius: 6px;
	font-weight: bold;
	font-size: 14px;
	line-height:20px;
	text-align: center;
	padding: 10px 0;
}
#gnav ul.btn li a i {
	color: #3C7BB1;
	display: block;
	font-size: 20px;
	line-height: 25px;
}
#gnav ul.btn li a span {
	display: block;
	font-size: 12px;
	line-height: 15px;
	font-weight: normal;
}

#gnav ul.list {
  	display: block;
	text-align: left;
	padding:0;
	clear: both;
	float: none;
	border: none;
	max-width: 600px;
	margin: 40px auto;
}

#gnav ul.list li {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	border:none;
	float: none;
	border-bottom:solid 1px #FFF;
}
#gnav ul.list li a {
	display: block;
	width: 100%;
	height: auto;
	padding: 15px 30px;
	font-size:1em;
	border:none;
	box-sizing: border-box;
	text-align: left;
	color: #221814;
}
#gnav ul.list li a:hover {
	background: #FFF;
	color: #3C7BB1;
	opacity: 1;
}

#gnav ul.list li.login, #gnav ul.list li.entry {
	border: none;
	padding: 15px 30px 0;
}
#gnav ul.list li.login a, #gnav ul.list li.entry a {
	margin: 0;
	padding: 0 15px;
	display: block;
	color: #FFF;
	line-height: 45px;
	border-radius: 6px;
	text-align: center;
	font-size: 15px;
}
#gnav ul.list li.login a:hover, #gnav ul.list li.entry a:hover {
	opacity: 0.6;
}

#gnav ul.list li.login a {
	background: #3C7BB1;
}
#gnav ul.list li.entry a {
	background: #D32525;
}
#gnav ul.list li.entry a b {
	margin: 0 10px 0 0;
	padding: 0 10px;
	display: inline-block;
	background: #FFF;
	color: #D32525;
	line-height: 20px;
	border-radius: 4px;
	font-size: 12px;
}


/* globalNavi */
#globalNavi {
	position: absolute;
	top: 170px;
	right: 0;
	z-index: 1;
}
#globalNavi ul {
	display: flex;
}
#globalNavi ul li {
	padding: 0 20px;
	position: relative;
}
#globalNavi ul li a {
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #231816;
	line-height: 30px;
}

/* sub */
#globalNavi ul ul.sub {
	display: block;
	position: absolute;
	visibility: hidden;
	top: 20px;
	left: 20px;
	opacity: 0;
	z-index: 20;
	background: #FFFE;
	transition: all .3s ease;
	box-shadow: 0 0 5px #0001;
}

#globalNavi ul ul.sub li {
	width: 240px;
	padding: 0;
	border-bottom: 1px solid #E6E6E6;
}
#globalNavi ul ul.sub li:last-child {
	border-bottom: none;
}

#globalNavi ul ul.sub li a {
	display: block;
	font-size: 16px;
	font-weight: normal;
	line-height: 40px;
	padding: 0 0 0 20px;
	white-space: nowrap;
}

#globalNavi ul ul.sub li a:hover {
	background: #3C7BB1;
	color: #FFF;
	opacity: 1;
}
#globalNavi ul li:hover ul.sub {
	top: 30px;
	visibility: visible;
	opacity: 1;
}

/* scrolled */
#header.scrolled {
	position: sticky;
	top: 0;
	height: 50px;
	box-shadow: 0 0 5px #0003;
}

#header.scrolled .inner {
	top: 0;
	height: auto;
	background: #FFF;
}

#header.scrolled #headerLogo {
	display: inline-block;
	padding: 10px 10px 0;
}

#header.scrolled #headerLogo a {
	width: 240px;
	height: 30px;
}
#header.scrolled li.login a {
	margin: 10px 0;
	padding: 0 15px;
	display: block;
	background: #3C7BB1;
	color: #FFF;
	line-height: 30px;
	border-radius: 5px;
}
#header.scrolled li.entry a {
	margin: 10px;
	padding: 0 15px;
	display: block;
	background: #D32525;
	color: #FFF;
	line-height: 30px;
	border-radius: 4px;
}

#header.scrolled #menu {
	margin: 5px 5px 0 0;
}
#header.scrolled #globalNavi {
	display: none;
}

/* #global-search */
#global-search {
}

#global-search label.checked {
	background: #FFF9E5;
}

#global-search p label{
	display: block;
	font-size: 16px;
	padding: 4px;
	border-radius: 4px;
	box-sizing: border-box;
}


#global-search ul {
}
#global-search li {
	display: flex;
	flex-wrap: wrap;
}
#global-search li label {
	display: block;
	font-size: 14px;
	padding: 4px;
	border-radius: 4px;
	box-sizing: border-box;
	width: 25%;
	display: flex;
	align-items: start;
}

#global-search .areatabs li label {
	width: 20%;
}
#global-search li label input {
	margin: 4px;
}

#global-search li input[type=text] {
	width: 1120px;
	font-size: 16px;
	padding: 8px;
	border: solid 2px #D6D6D6;
	border-radius: 4px;
	box-sizing: border-box;
}
#global-search .btn {
	width: 100%;
	border-top: solid 1px #EDEDED;
	margin: 0;
	padding: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}
#global-search .btn input {
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	background: #3C7BB1;
	border: 0;
	border-radius: 5px;
	color: #FFF;
}
#global-search .btn .clearForm {
	display: block;
	width: 120px;
	height: 30px;
	border: solid 1px #646464;
	color: #646464;
	font-size: 12px;
	line-height: 30px;
	padding: 0;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	position: absolute;
	top: 20px;
	left: 20px;
}

/* modal */
.js-modal-open {}
.modal__content .js-modal-close {}
.modal__content .js-modal-close:hover { opacity: 0.8; }

.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 30;
}
.modal__bg{
	background: #231816CC;
	height: 100vh;
	position: absolute;
	width: 100%;
	box-sizing: border-box;
}
.modal__content{
	z-index: 1000;
	background: #FFF;
	top: 80px;
	left: 50%;
	position: absolute;
	transform: translate(-50%, 0);
	width: calc(100% - 20px);
	max-width: 1160px;
	height: calc(100vh - 160px);
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;
	text-align: left;
	box-shadow: 0 0 5px #0003;
}

.modal__content p, .modal__content ol {
	line-height: 2em;
	padding: 0 0 20px;
}


/* tab areatab conditiontab */
/*ラジオボタンを全て消す*/
input[name="tab_item"],
input[name="categorytab_item"],
input[name="areatab_item"],
input[name="conditiontab_item"]  {
	display: none;
}

.tabs {
	margin-top: 50px;
	padding-bottom: 40px;
	background-color: #fff;
	width: 100%;
	margin: 0 auto;
}
.tabs .js-modal-close {
	display: block;
	width: 120px;
	height: 30px;
	position: absolute;
	top: 20px;
	right: 20px;
	background: #3C7BB1;
	color: #FFF;
	font-size: 12px;
	line-height: 30px;
	padding: 0;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
}

/*タブのスタイル*/
.tab_item {
	width: calc(100%/4);
	border: solid 1px #FFF;
	box-sizing: border-box;
	height: 50px;
	background-color: #EDEDED;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	color: #666;
	display: block;
	float: left;
	text-align: center;
	transition: all 0.2s ease;
}
.tab_item:hover {
	opacity: 0.75;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
	display: none;
	padding: 20px 0 0;
	clear: both;
	height: calc(100vh - 340px);
	overflow-y: auto;
}


/*選択されているタブのコンテンツのみを表示*/
#category_check:checked ~ #category_content,
#area_check:checked ~ #area_content,
#condition_check:checked ~ #condition_content {
	display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
	background: #3C7BB1;
	color: #FFF;
	font-weight: bold;
}



/* categorytab */
.categorytabs {
	margin-top: 50px;
	background: #FFF;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/*タブのスタイル*/
.categorytab_item {
	width: 160px;
	height: 50px;
	padding: 0 5px;
	border: solid 1px #FFF;
	box-sizing: border-box;
	background-color: #EDEDED;
	line-height: 20px;
	font-size: 14px;
	text-align: center;
	color: #666;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 0.2s ease;
	float: left;
}
.categorytab_item.even {
}

.categorytab_item:hover {
	opacity: 0.75;
}

/*タブ切り替えの中身のスタイル*/
.categorytab_content {
	display: none;
	width: 100%;
	margin: 0;
	clear: both;
	position: absolute;
	top: 150px;
	right: 0;
}


/*選択されているタブのコンテンツのみを表示*/
#bid244_check:checked ~ #bid244_content,
#bid245_check:checked ~ #bid245_content,
#bid246_check:checked ~ #bid246_content,
#bid247_check:checked ~ #bid247_content,
#bid248_check:checked ~ #bid248_content,
#bid249_check:checked ~ #bid249_content,
#bid250_check:checked ~ #bid250_content,
#bid251_check:checked ~ #bid251_content,
#bid252_check:checked ~ #bid252_content,
#bid253_check:checked ~ #bid253_content,
#bid254_check:checked ~ #bid254_content,
#bid255_check:checked ~ #bid255_content,
#bid10547_check:checked ~ #bid10547_content,
#bid10816_check:checked ~ #bid10816_content,
#bid11037_check:checked ~ #bid11037_content,
#bid11045_check:checked ~ #bid11045_content,
#bid11052_check:checked ~ #bid11052_content,
#bid11058_check:checked ~ #bid11058_content {
	display: block;
}

/*選択されているタブのスタイルを変える*/
.categorytabs input:checked + .categorytab_item {
	background: #3C7BB1;
	color: #FFF;
	font-weight: bold;
}


/* areatab */
.areatabs {
	margin-top: 50px;
	background: #FFF;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/*タブのスタイル*/
.areatab_item {
	width: 160px;
	border: solid 1px #FFF;
	box-sizing: border-box;
	height: 40px;
	background-color: #EDEDED;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	color: #666;
	display: block;
	text-align: center;
	transition: all 0.2s ease;
}
.areatab_item:hover {
	opacity: 0.75;
}

/*タブ切り替えの中身のスタイル*/
.areatab_content {
	display: none;
	width: calc(100% - 180px);
	margin: 0;
	clear: both;
	position: absolute;
	top: 0;
	right: 0;
}


/*選択されているタブのコンテンツのみを表示*/
#tochigi_check:checked ~ #tochigi_content,
#gunma_check:checked ~ #gunma_content,
#ibaraki_check:checked ~ #ibaraki_content {
	display: block;
}

/*選択されているタブのスタイルを変える*/
.areatabs input:checked + .areatab_item {
	background: #3C7BB1;
	color: #FFF;
	font-weight: bold;
}



/* conditiontab */
.conditiontabs {
	margin-top: 50px;
	background-color: #fff;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/*タブのスタイル*/
.conditiontab_item {
	width: 160px;
	border: solid 1px #FFF;
	box-sizing: border-box;
	height: 40px;
	background-color: #EDEDED;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	color: #666;
	display: block;
	text-align: center;4
	transition: all 0.2s ease;
}
.conditiontab_item:hover {
	opacity: 0.75;
}

/*タブ切り替えの中身のスタイル*/
.conditiontab_content {
	display: none;
	width: calc(100% - 180px);
	margin: 0;
	clear: both;
	position: absolute;
	top: 0;
	right: 0;
}


/*選択されているタブのコンテンツのみを表示*/
#facility_check:checked ~ #facility_content,
#license_check:checked ~ #license_content,
#employ_check:checked ~ #employ_content {
	display: block;
}

/*選択されているタブのスタイルを変える*/
.conditiontabs input:checked + .conditiontab_item {
	background: #3C7BB1;
	color: #FFF;
	font-weight: bold;

}

.bread {
	padding: 10px 0;
	font-size: 12px;
	line-height: 20px;
}
/* footer */

#foot {
	width:100%;
	float: left;
}

.footSearch {
	width:100%;
	float: left;
	clear: both;
	padding: 80px 0 40px;
	border-bottom: solid 1px #EDEDED;
}
.footSearch h4 {
	width: 180px;
	margin: 0;
	font-size:15px;
	float: left;
	clear: both;
}
.footSearch h5 {
	width: 1020px;
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 15px;

	float: right;
}

.footSearch ul {
	margin: 0 0 20px;
	float: right;
	display: flex;
	flex-wrap: wrap;
}


.footSearch li {
	font-size: 14px;
	line-height: 15px;
	margin: 0 20px 10px 0;
}

.footSearch li a {
	color: #000;
}

.footNavi {
	width:100%;
	float: left;
	clear: both;
	padding: 40px 0;
}

.footNavi a {
	color: #231816;
}

.footerLogo {
	position: relative;
	width: auto;
	height: auto;
	float: left;
	margin: 0;
	padding: 0;
	transition: .3s;
}

.footerLogo img {
	max-width: 280px;
	max-height: 100%;
}
.footerLogo span {
	color: #EDEDED;
	font-size: 10px;
	font-weight: normal;
	position: absolute;
	top: 5px;
	left: 55px;
}
.footNavi ul {
	width: 640px;
	float: right;
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
}
.footNavi li {
	margin: 0 0 10px 20px;
	font-size: 15px;
	line-height: 20px;
}
.footNavi .sns li {
	font-size: 20px;
	line-height: 25px;
	margin: 0 0 0 20px;
}
 
#copyright {
	padding: 20px 0; text-align: center; clear: both; background: #EBF2F7; font-size: 15px; line-height: 20px;
}
#copyright a {
	color: #231816;
}



/* //////////////////////////////////////// SMARTPHONE  //////////////////////////////////////// */
@media only screen and (max-width: 1024px) {
	#header {
		height: 60px;
		background: #FFF;
	}
	#header .inner {
		height: 60px;
	}

	#header ul {
	}
	#header #headerLogo {
		padding: 15px  0 0 20px;
		box-sizing: border-box;
	}
	#header #headerLogo a {
		width: 240px;
		height: 30px;
		padding: 0;
		box-sizing: border-box;
	}

	#header p,
	#header ul {
		margin: 0;
		transition: .0s;
	}

	.inner {
		width: 100%;
	}

	/* navi */
	#header #menu{
		display: block;
		background: none;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
		top: 0;
		right: 0;
		z-index: 9999;
		margin: 10px 10px 0 0;

	}
	#header #menu p {
		display: none;
	}

	#gnav {
		max-width: 100%;
	}

	/* #global-search */
	#global-search .areatabs label {
		font-size: 13px;
	}
	#global-search .areatabs li label {
		width: auto;
		min-width: 50%;
		float: left;
		font-size: 12px;
	}

	#global-search ul {
		display: block;
		margin: 0;
		padding: 0;
	}
	#global-search li {
		display: block;
	}
	#global-search li label {
		width: 100%;
	}
	#global-search li select {
		width: 100%;
		font-size: 16px;
		margin: 20px 0 0;
		padding: 8px;
		border: solid 2px #D6D6D6;
		border-radius: 4px;
		box-sizing: border-box;
	}
	#global-search li input[type=text] {
		width: 100%;
		font-size: 16px;
		margin: 20px 0 0;
		padding: 8px;
		border: solid 2px #D6D6D6;
		border-radius: 4px;
		box-sizing: border-box;
	}
	#global-search .btn {
		position: fixed;
		bottom: 0;
		background: #FFF;
	}
	#global-search .btn input {
		width: calc(100% - 80px);
		float: right;
	}
	#global-search .btn .clearForm {
		width: 60px;
		font-size: 11px;
	}


	/* modal */
	.modal {
		height: -webkit-fill-available;
	}
	.modal__bg {
		height: -webkit-fill-available;
	}
	.modal__content{
		top: 0;
		left: 0;
		height: 100vh;
		height: -webkit-fill-available;
		transform: none;
		width: 100%;
		overflow-y: auto;
		border-radius: 0;
	}


	/* tab areatab conditiontab */
	.tabs {
		height: auto;
		padding-bottom: 90px;
	}
	.tab_item {
		font-size: 14px;
		height: 40px;
		line-height: 40px;
	}
	.tab_content {
		height: auto;
		display: none;
		padding: 10px 0 0;
		clear: both;
		overflow: hidden;
	}
	.tabs .js-modal-close {
		width: 60px;
		height: 30px;
		font-size: 10px;
	}



	/* categorytab */
	.categorytabs {
		margin-top: 50px;
		background-color: #fff;
		width: 100%;
		margin: 0 auto;
		position: relative;
	}

	/*タブのスタイル*/
	.categorytab_item {
		width: 100%;
		border: solid 1px #FFF;
		box-sizing: border-box;
		height: 40px;
		background-color: #EDEDED;
		line-height: 40px;
		font-size: 12px;
		text-align: center;
		display: block;
		text-align: center;
		transition: all 0.2s ease;
	}
	
	/*タブ切り替えの中身のスタイル*/
	.categorytab_content {
		display: none;
		width: 100%;
		margin: 0;
		padding: 0;
		clear: both;
		position: relative;
		transition: .3s;
		top: 0;
	}


	/* areatab */
	.areatabs {
		margin-top: 50px;
		background-color: #fff;
		width: 100%;
		margin: 0 auto;
		position: relative;
	}

	/*タブのスタイル*/
	.areatab_item {
		width: 60px;
		border: solid 1px #FFF;
		box-sizing: border-box;
		height: 40px;
		background-color: #EDEDED;
		line-height: 40px;
		font-size: 12px;
		text-align: center;
		display: block;
		text-align: center;
		transition: all 0.2s ease;
		position: absolute;
		left: 0;
	}
	.gunma_check {
		top: 40px;
	}
	.ibaraki_check {
		top: 80px;
	}
	/*タブ切り替えの中身のスタイル*/
	.areatab_content {
		display: none;
		width: calc(100% - 70px);
		margin: 0;
		padding: 0;
		clear: both;
		position: relative;
		float: right;
	}

	/* conditiontab */
	.conditiontabs{
		margin-top: 50px;
		background-color: #fff;
		width: 100%;
		margin: 0 auto;
		position: relative;
	}

	/*タブのスタイル*/
	.conditiontab_item {
		width: 60px;
		border: solid 1px #FFF;
		box-sizing: border-box;
		height: 40px;
		background-color: #EDEDED;
		line-height: 40px;
		font-size: 12px;
		text-align: center;
		display: block;
		text-align: center;
		transition: all 0.2s ease;
		position: absolute;
		left: 0;
	}
	.license_check {
		top: 40px;
	}
	.employ_check {
		top: 40px;
	}
	/*タブ切り替えの中身のスタイル*/
	.conditiontab_content {
		display: none;
		width: calc(100% - 70px);
		margin: 0;
		padding: 0;
		clear: both;
		position: relative;
		float: right;
	}

	/* footer */
	.footSearch {
		clear: both;
		padding: 0;
		border-bottom: none;
	}
	.footSearch h4 {
		width: 100%;
		margin: 0;
		padding: 20px 20px 0;
		font-size:15px;
		line-height: 40px;
		float: none;
		clear: both;
		box-sizing: border-box;
		border-bottom: solid 1px #EDEDED;

	}
	.footSearch ul {
		width: 100%;
		margin: 0;
		padding: 0;
		float: none;
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
	}
	.footSearch li {
		width: 50%;
		font-size: 13px;
		line-height: 20px;
		margin: 0;
		padding: 0;
		border-left: solid 1px #EDEDED;
		border-bottom: solid 1px #EDEDED;
		box-sizing: border-box;
	}
	.footSearch li:nth-child(odd) {
		border-left: none;
	}
	.footSearch li a {
		display: block;
		height: 100%;
		padding: 10px 20px;
		box-sizing: border-box;
	}


	.footNavi {
		clear: both;
		padding: 30px 0 15px;
	}

	.footNavi a {
	}

	.footerLogo {
		width: 280px;
		float: none;
		text-align: center;
		margin: 0 auto 30px;
	}

	.footerLogo img {
	}
	.footNavi ul {
		width: 100%;
		float: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.footNavi li {
		margin: 0 10px 10px;
		font-size: 12px;
		line-height: 15px;
	}

	 
	#copyright {
		padding: 15px 0; font-size: 12px; line-height: 15px;
	}
	#copyright a {
	}

}

/* bottomSupport */
.bottomSupport {
	width: 100%;
	float: left;
	padding: 80px 0 60px;
	background: #EBF2F7;
}
.bottomSupport h2 {
	margin: 0;
	font-size: 48px;
	line-height: 80px;
	text-align: center;
}
.bottomSupport h3 {
	margin: 40px 0 0;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
}
.bottomSupport h3 b {
	background: linear-gradient(transparent 60%, #FDC70199 60%, #FDC70199 90%, transparent 90%);
}
.bottomSupport p a {
	display: block;
	width: 360px;
	height: 30px;
	line-height: 30px;
	margin: 30px auto;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #173F82;
}

.bottomSupport ol {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.bottomSupport li {
	width: 360px;
	margin: 40px 20px 0;
	padding: 0;
	background: #FFF;
	position: relative;
	box-sizing: border-box;
	border-radius: 10px;
}
.bottomSupport li figure img {
	width: 100%;
	border-radius: 10px 10px 0 0;
}

.bottomSupport li .point {
	display: block;
	padding: 0 20px;
	background: #3C7BB1;
	color: #FFF;
	font-size: 12px;
	line-height: 24px;
	border-radius: 0 4px 0 0;
	position: absolute;
	top: 177px;
	left: 0;
}
.bottomSupport li .point b {
	font-size: 15px;
	margin: 0 0 0 4px;
}
.bottomSupport li h4 {
	padding: 20px 20px 10px;
	font-size: 15px;
	line-height: 20px;
}
.bottomSupport li p {
	padding: 0 20px 20px;
	font-size: 13px;
}
.bottomSupport .btn {
	margin: 60px 0;
}
.bottomSupport .btn a {
	display: block;
	width: 360px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	background: #D32525;
	border: 0;
	border-radius: 5px;
	color: #FFF;
}
.bottomSupport .btn a b {
	display: inline-block;
	background: #FFF;
	height: 24px;
	color: #D32525;
	line-height: 28px;
	padding: 0 12px;
	font-size: 16px;
	border-radius: 4px;
	margin: 0px 12px 0px 0px;
}

@media screen and (max-width : 1024px) {
	.bottomSupport {
		padding: 15px 0;
	}
	.bottomSupport .inner {
		margin: 0 !important;
		padding: 15px !important;
		box-sizing: border-box;
	}
	.bottomSupport h2 {
		font-size: 28px;
		line-height: 45px;
	}
	.bottomSupport h3 {
		margin: 20px 0 0;
		font-size: 15px;
		line-height: 30px;
	}
	.bottomSupport p a {
		width: 100%;
		font-size: 16px;
		height: 20px;
		line-height: 20px;
	}

	.bottomSupport ol {
		display: block;
		margin: 0 0 20px;
	}
	.bottomSupport li {
		width: 100%;
		margin: 10px 0 0;
	}
	.bottomSupport li figure {
		width: 100px;
		margin: 10px;
		display: flex;
		justify-content: center;
		float: right;
		overflow: hidden;
		border-radius: 5px;
	}
	.bottomSupport li figure img {
		width: auto;
		max-width: none;
		height: 100px;
	}

	.bottomSupport li .point {
		display: inline-block;
		margin: 10px;
		padding: 0 10px;
		background: #3C7BB1;
		font-size: 10px;
		line-height: 20px;
		border-radius: 4px;
		position: static;
	}
	.bottomSupport li .point b {
		font-size: 12px;
		margin: 0 0 0 4px;
	}
	.bottomSupport li h4 {
		padding: 0 10px;
		font-size: 15px;
		line-height: 20px;
	}
	.bottomSupport li p {
		padding: 10px;
		font-size: 13px;
	}
	.bottomSupport .btn a {
		display: block;
		width: 300px;
		height: 60px;
		line-height: 60px;
		font-size: 16px;
	}
	.bottomSupport .btn a b {
		height: 18px;
		line-height: 18px;
		font-size: 12px;
		margin: 0 6px 0 0;
	}
}

/* LINEバナー */
	.bottomSupport ul { display: flex; justify-content: center; }
	.bottomSupport .instagram a { display: flex; justify-content: center; align-items: center; width: 360px; height: 80px; margin: 0 auto;  border: 0; border-radius: 5px; }
	.bottomSupport .instagram a { background: linear-gradient(45deg, #F50001 0%, #B900B3 70%) no-repeat; position: relative; overflow: hidden; }
	.bottomSupport .instagram a img { width: 270px; height: auto; padding: 18px 43px; border-radius: 4px; background: #F6F6F7; }
	@media screen and (max-width: 1024px){
		.bottomSupport ul { display: block; }
		.bottomSupport ul li { background: none; }
		.bottomSupport .instagram a { width: 300px; height: 60px; }
		.bottomSupport .instagram a img { width: 202.5px; height: auto; }
		.bottomSupport .instagram a img { padding: 13px 47px; }
	}