@media only screen and (min-width:769px) {
	.chat {
		width: 100%;
		float: left;
		position: relative;
		padding: 0 0 90px;
		min-height: 740px;
	}
	.stepBar {
		display: flex;
		max-width: 840px;
		position: relative;
		margin: 90px auto 0;
		text-align: center;
	}
	.stepBar li {
		font-size: 16px;
		color: #646464;
		list-style: none;
		position: relative;
		width: 25%;
	}
	.stepBar li:after {
		background: #ABDFF4;
		content: "";
		width: calc(100% - 40px);
		height: 6px;
		position: absolute;
		left: calc(-50% + 20px);
		top: 12px;
	}
	.stepBar li:first-child:after {
		display: none;
	}
	.stepBar li span {
		font-weight: bold;
		background: #ABDFF4;
		color: #FFF;
		display: inline-block;
		height: 32px;
		margin-bottom: 5px;
		line-height: 32px;
		width: 32px;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}
	.stepBar .visited:after {
		background: #003986;
	}
	.stepBar .visited span {
		background: #003986;
	}

	.chat .step {
		width: 100%;
		float: left;
		padding-top: 90px;
	}
	.chat .talk {
		background: url(../imgs/chat_chara.png) no-repeat top left;
		min-height: 120px;
	}
	.chat .talk .fukidashi {
		position: relative;
		margin: 0 0 30px 160px;
		background: #ABDFF4;
		padding: 20px;
		border-radius: 10px;
		font-size: 20px;
		line-height: 20px;
		top: 30px;
	}
	.chat .question {
		background: #003986 !important;
		color: #FFF;
	}
	.chat .fukidashi::before {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 20px 20px 0;
		border-color: transparent #ABDFF4 transparent transparent;
		left: -20px;
		top: 20px;
	}
	.chat .question::before {
		border-color: transparent #003986 transparent transparent !important;
	}
	.chat .input_area {
		background: #ABDFF4;
		border-radius: 10px;
		width: 100%;
		float: left;
		margin-top: 60px;
		padding: 20px;
		box-sizing: border-box;
	}
	.chat .input_area .icon {
		background: #6599FF;
		color: #FFF;
		margin-right: 10px;
		padding: 0 15px;
		font-size: 12px;
		border-radius: 5px;
		display: inline-block;
	}
	.chat .input_area .red {
		background: #E32449;
		color: #FFF;
		margin-right: 10px;
		padding: 0 15px;
		font-size: 12px;
		border-radius: 5px;
		display: inline-block;
	}
	.chat .input_area ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		padding: 0 0 20px;
	}
	.chat .input_area li {
		width: 320px;
		font-size: 20px;
		line-height: 20px;
		font-weight: 700;
		margin: 20px 20px 0;
		text-align: center;
		box-sizing: border-box;
	}
	.chat .input_area li input[type=radio],
	.chat .input_area li input[type=checkbox] {
		display: none;
	}
	.chat .input_area li label {
		display: block;
		border: solid 1px #5EC3ED;
		border-radius: 30px;
		color: #5EC3ED;
		background: #FFF;
		padding: 20px;
		cursor: pointer;
	}
	.chat .input_area li input[type=radio]:checked+label,
	.chat .input_area li input[type=checkbox]:checked+label {
		color: #FFF;
		background: #5EC3ED;
	}
	.chat .input_area dl {
		background: #FFF;
		border-radius: 5px;
		float: left;
		width: 100%;
		margin: 0 0 20px;
		padding: 20px;
		box-sizing: border-box;
	}
	.chat .input_area dl dt {
		width: 200px;
		padding-top: 5px;
		line-height: 25px;
		font-weight: 700;
		box-sizing: border-box;
		float: left;
	}
	.chat .input_area dl dd {
		width: 500px;
		line-height: 25px;
		font-weight: 700;
		box-sizing: border-box;
		float: left;
	}
	.chat .input_area dl.full dt {
		width: 100%;
	}
	.chat .input_area dl.full dd {
		width: 100%;
	}

	.chat .input_area dd input,
	.chat .input_area dd select {
		display: block;
		border: solid 1px #5EC3ED;
		border-radius: 5px;
		font-size: 16px;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		width: 100%;
		box-sizing: border-box;

	}
	.chat .input_area dd textarea {
		display: block;
		border: solid 1px #5EC3ED;
		border-radius: 5px;
		font-size: 16px;
		height: 200px;
		padding: 10px;
		width: 100%;
		box-sizing: border-box;
		margin: 10px 0 20px;

	}
	.chat .input_area .button_wrap {
		clear: both;
		padding: 20px 0;
	}
	.chat .input_area .button_wrap button {
		border: none;
		background: #FF9A66;
		color: #FFF;
		font-size: 24px;
		font-weight: 700;
		line-height: 30px;
		padding: 15px 0;
		margin: 0 auto;
		display: block;
		width: 320px;
		text-align: center;
		border-radius: 30px;
		cursor: pointer;

	}
	.chat .input_area .button_wrap button:disabled {
		background: #D6D6D6;
	}

	.thanks .talk .fukidashi {
		font-size: 16px;
		line-height: 2em;
	}
}
@media only screen and (max-width:768px) {
	.chat {
		width: 100%;
		float: left;
		position: relative;
		padding: 45px 15px;
		min-height: 400px;
		box-sizing: border-box;

	}
	.stepBar {
		display: flex;
		max-width: 840px;
		position: relative;
		margin: 0 auto;
		text-align: center;
	}
	.stepBar li {
		font-size: 12px;
		color: #646464;
		list-style: none;
		position: relative;
		width: 25%;
	}
	.stepBar li:after {
		background: #ABDFF4;
		content: "";
		width: calc(100% - 32px);
		height: 4px;
		position: absolute;
		left: calc(-50% + 16px);
		top: 10px;
	}
	.stepBar li:first-child:after {
		display: none;
	}
	.stepBar li span {
		font-weight: bold;
		background: #ABDFF4;
		color: #FFF;
		display: inline-block;
		height: 24px;
		margin-bottom: 5px;
		line-height: 24px;
		width: 24px;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}
	.stepBar .visited:after {
		background: #003986;
	}
	.stepBar .visited span {
		background: #003986;
	}


	.chat .step {
		width: 100%;
		float: left;
		padding-top: 90px;
	}

	.chat .talk {
		background: url(../imgs/chat_chara.png) no-repeat top left;
		background-size: 60px;
		min-height: 70px;
	}
	.chat .talk .fukidashi {
		position: relative;
		margin: 0 0 10px 75px;
		background: #ABDFF4;
		padding: 10px;
		border-radius: 5px;
		line-height: 20px;
		top: 0;
	}
	.chat .fukidashi::before {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 10px 0;
		border-color: transparent #ABDFF4 transparent transparent;
		left: -10px;
		top: 15px;
	}
	.chat .question {
		background: #003986 !important;
		color: #FFF;
	}
	.chat .question::before {
		border-color: transparent #003986 transparent transparent !important;
	}


	.chat .input_area {
		background: #ABDFF4;
		border-radius: 10px;
		width: 100%;
		float: left;
		margin-top: 10px;
		padding: 10px;
		box-sizing: border-box;
	}
	.chat .input_area .icon {
		background: #6599FF;
		color: #FFF;
		margin-right: 10px;
		padding: 0 15px;
		font-size: 12px;
		border-radius: 5px;
		display: inline-block;
	}
	.chat .input_area .red {
		background: #E32449;
		color: #FFF;
		margin-right: 10px;
		padding: 0 15px;
		font-size: 12px;
		border-radius: 5px;
		display: inline-block;
	}
	.chat .input_area ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		padding: 0;
	}
	.chat .input_area li {
		width: 50%;
		font-size: 13px;
		line-height: 30px;
		font-weight: 700;
		margin: 0 0 10px;
		padding: 0 5px;
		color: #5EC3ED;
		text-align: center;
		box-sizing: border-box;
	}
	.chat .input_area .full li {
		width: 100%;
	}

	.chat .input_area li input[type=radio],
	.chat .input_area li input[type=checkbox] {
		display: none;
	}
	.chat .input_area li label {
		display: block;
		border: solid 1px #5EC3ED;
		border-radius: 15px;
		color: #5EC3ED;
		background: #FFF;
		cursor: pointer;
	}
	.chat .input_area .full li label  {
		padding: 5px 0;
		line-height: 20px;
	}
	.chat .input_area li input[type=radio]:checked+label,
	.chat .input_area li input[type=checkbox]:checked+label {
		color: #FFF;
		background: #5EC3ED;
	}
	.chat .input_area dl {
		background: #FFF;
		border-radius: 5px;
		float: left;
		width: 100%;
		margin: 0 0 10px;
		padding: 10px;
		box-sizing: border-box;
	}
	.chat .input_area dl dt {
		width: 100%;
		font-weight: 700;
		box-sizing: border-box;
		float: left;
	}
	.chat .input_area dl dd {
		width: 100%;
		font-weight: 700;
		box-sizing: border-box;
		float: left;
	}
	.chat .input_area dl.full dt {
		width: 100%;
	}
	.chat .input_area dl.full dd {
		width: 100%;
	}

	.chat .input_area dd input,
	.chat .input_area dd select {
		display: block;
		border: solid 1px #5EC3ED;
		border-radius: 5px;
		font-size: 16px;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		margin-top: 10px;
		width: 100%;
		box-sizing: border-box;

	}
	.chat .input_area dd textarea {
		display: block;
		border: solid 1px #5EC3ED;
		border-radius: 5px;
		font-size: 16px;
		height: 200px;
		padding: 10px;
		width: 100%;
		box-sizing: border-box;
		margin: 10px 0 20px;

	}
	.chat .input_area .button_wrap {
		clear: both;
		margin: 20px 0 10px;
	}
	.chat .input_area .button_wrap button {
		border: none;
		background: #FF9A66;
		color: #FFF;
		font-size: 16px;
		font-weight: 700;
		line-height: 40px;
		margin: 0 auto;
		display: block;
		width: 100%;
		text-align: center;
		border-radius: 20px;
		cursor: pointer;

	}
	.chat .input_area .button_wrap button:disabled {
		background: #D6D6D6;
	}

	.chat .input_area dd .g-recaptcha {
		margin-top: 10px;
	}

}

/*background alternative*/
header h1 a ,
header nav li a ,
.regi ,
#difference h2 ,
#difference ul li a ,
#about h2 ,
#bottomBns li a ,
#footerTel ,
#mailmg p:last-child a {
	height:0px;
	overflow:hidden;
	line-height:2;
	background-repeat:no-repeat;
}
/* gNav
--------------------------------------------------*/
.navStyle {
	padding: 80px 0 0;
	float: right;
}
.navStyle ul {
	overflow: hidden;
	text-align: center;
	line-height: 1;
}
.navStyle .pNavList,
.navStyle .regi {
	display: none;
}
.navStyle li {
	position: relative;
	display: inline-block;
}
.navStyle li:before {
}
.navStyle li:after {
}
.navStyle li:first-child:after {
	display: none;
}
.navStyle li a {
	position: relative;
	display: block;
	padding: 0 20px;
	color: #000;
	font-size: 14px;
}
.navStyle li.on a,
.noT .navStyle li a:hover {
	color: #333;
}
.navStyle li.on:before,
.noT .navStyle li:hover:before {
	opacity: 1;
}
.navStyle li.on a {
	font-style: italic;
}.navStyle {
    padding: 80px 350px 0 0;
    float: right;
}
.navStyle li a {
    position: relative;
    display: block;
    padding: 0 20px;
    color: #000;
    font-size: 18px;
}
.navStyle li {
    border-right: solid 1px #000;
}
.navStyle li:nth-child(3) {
	border: 0;
}

.regi {
	position:absolute;
	right:0;
	top:70px;
	background-image:url(../../../../img/common/tel.gif);
	width:329px !important;
	padding-top:30px;
}
/* SP */
@media only screen and (max-width:960px) {
	#gNav {
		position: fixed;
		top: 60px;
		left: 0;
		display: none;
		width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
	}
	.navStyle {
		padding: 0;
		background-color: #fff;
		border-bottom: none;
	}
	.navStyle ul {
		text-align: left;
		border-top: #b2b2b2 solid 1px;
	}
	.navStyle li {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		display: inline-block;
		width: 50%;
		text-align: center;
		border-bottom: #b2b2b2 solid 1px;
		border-right: 0;
		background: #1f3066;
	}
	.navStyle li:nth-child(odd) {
		border-right: #b2b2b2 solid 1px;
	}
	.navStyle li:before,
	.navStyle li:after {
		display: none;
	}
	.navStyle li a {
		padding: 15px 0;
		color: #333;
		font-size: 14px;
		letter-spacing: 0.05em;
		color: #FFF;
	}
	.navStyle li.on a,
	.noT .navStyle li a:hover {
		color: #fff;
		background-color: #1a2a4c;
		font-style: normal;
	}
	.navStyle .pNavList,
	.navStyle .regi {
		display: block;
	}
	.navStyle .pNavList {
		border-top: none;
	}
	.navStyle .regi {
		width: 100% !important;
		position: relative;
		top: 0;
		background-position: center;
		margin-top: -1px;
		border-top: #b2b2b2 solid 1px;
	padding-top:50px;
	background-image:url(../../../../img/common/tel.svg);
	}
	.navStyle .regi a {
		display: block;
		padding: 22px 0;
		color: #fff;
		font-size: 16px;
		text-align: center;
		background-color: #b39826;
		letter-spacing: 0.1em;
	}
}
@media only screen and (max-width:331px) {
	.navStyle .regi {
		background-size: contain;
	}
}

#lowerHed {
	background-color:#003986;
	color:#FFF;
}

#lowerHed div {
	height: 60px;
}

#lowerHed h2 {
	float:left;
	line-height: 60px;
}

#lowerHed ul {
	float:right;
	width:80%;
	text-align:right;
	font-size: 14px;
	line-height: 60px;
}

#lowerHed ul.mini {
	width:67%;
}

#lowerHed ul li {
	list-style:none;
	display:inline;
	padding-right:5px;
}

#lowerHed ul li:after {
	content:">";
	margin-left:10px;
}


#lowerHed ul li:last-child:after {
	content:"";
	margin-left:0px;
}

#lowerHed ul li a {
	color:#FFF;
}

/* SP */
@media only screen and (max-width:768px) {
	

#lowerHed {
	background-color:#003986;
	color:#FFF;
	margin-top:40px;
}

#lowerHed div {
	width:100%;
	margin:0 auto;
	position:relative;
	padding:8px 5px;
	line-height:1.5;
	overflow:hidden;
	box-sizing:border-box;
}

#lowerHed h2 {
	float:left;
	/*width:30%;*/
}

#lowerHed ul {
	float:right;
	text-align:left;
	font-size:75%;
}

#lowerHed ul li {
	list-style:none;
	display:inline;
	padding-right:0px;
}

#lowerHed ul li:after {
	content:">";
	margin-left:3px;
}

#lowerHed ul li:nth-of-type(3):after {
	content:"";
	margin-left:0px;
}

#lowerHed ul li:nth-of-type(4):before {
	content: "\A >";
	white-space: pre;
	margin-left:0px;
}

#lowerHed ul li:last-child:after {
	content:"";
	margin-left:0px;
}



#lowerHed ul li a {
	color:#FFF;
}
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 150px;
  background: #FFF;
  transition: .3s;
padding: 0;
}
#header h1,
#header .navStyle,
#header .regi {
  transition: .3s;
}
.is-animation {
  height: 60px !important;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.is-animation h1 {
  color: #000;
	padding: 10px 0 0 !important;
}
.is-animation h1 img{
  height: 40px !important;
}
.is-animation .navStyle {
    padding: 20px 350px 0 0;
}
.is-animation .regi {
    top: 15px;
}
#container { padding-top: 150px; }
@media only screen and (max-width:768px) {
#header {
  height: 60px;
}
#header h1 img{
  height: 40px !important;
}

.is-animation {
  height: 60px !important;
}
.is-animation #gNav {
	top: 60px;
}
.is-animation h1 img{
  height: 40px !important;
}
#container {
	padding-top: 0;
}
.is-animation .navStyle {
    padding: 0;
}
.is-animation .regi {
    top: 0;
}
#banner {
	width: 100%;
}

#spMenu:before, #spMenu:after, #spMenu .cbdr {
    background-color: #003986;
}

}

#difference h2 {
	background-image:url(../../../../img/common/different.gif);
	padding-top:50px;
	margin: 0 auto 40px;
    background-color: #434343;
}

#difference ul {
	overflow:hidden;
	padding-bottom:55px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#difference ul li {
	width:203px;
	height:203px;
	list-style:none;
	padding: 0 20px;
}

#difference ul li a {
	padding-top:203px;
	display:block;
}

#difference ul.difference1 li a:link ,
#difference ul.difference1 li a:visited {
	background-image:url(../../../img/common2021/different1_off.gif);
}

#difference ul.difference1 li a:hover {
	background-image:url(../../../img/common2021/different1_on.gif);
}

#difference ul.difference1 li:nth-of-type(2) a:link ,
#difference ul.difference1 li:nth-of-type(2) a:visited {
	background-image:url(../../img/common2021/different2_off.gif);
}

#difference ul.difference1 li:nth-of-type(2) a:hover {
	background-image:url(../../img/common2021/different2_on.gif);
}

#difference ul.difference2 li:nth-of-type(1) a:link ,
#difference ul.difference2 li:nth-of-type(1) a:visited {
	background-image:url(../../img/common2021/different3_off.gif);
}

#difference ul.difference2 li:nth-of-type(1) a:hover {
	background-image:url(../../img/common2021/different3_on.gif);
}

#difference ul.difference2 li:nth-of-type(2) a:link ,
#difference ul.difference2 li:nth-of-type(2) a:visited {
	background-image:url(../../img/common2021/different4_off.gif);
}

#difference ul.difference2 li:nth-of-type(2) a:hover {
	background-image:url(../../img/common2021/different4_on.gif);
}

#difference ul.difference2 li:nth-of-type(3) a:link ,
#difference ul.difference2 li:nth-of-type(3) a:visited {
	background-image:url(../../img/common2021/different5_off.gif);
}

#difference ul.difference2 li:nth-of-type(3) a:hover {
	background-image:url(../../img/common2021/different5_on.gif);
}

#about {
	background-color:#efefef;
	padding:55px 0 75px;
	line-height:2;
}

#about h2 {
	background-image:url(../../../../img/common/logo2.gif);
	background-position:center top;
	padding-top:97px;
	margin-bottom:45px;	
}

#about span ,
#about a {
	color:#0396c0;
	font-weight:bold;
	text-decoration:underline;
}

#about a:hover {
	text-decoration:none;
}

#about b {
	text-decoration:underline;
}

#aboutInner h2 + p {
	margin-bottom:30px;
}

#about p:last-child a {
	background-color:#868686;
	color:#FFF;
	text-decoration:none;
	display:block;
	width:400px;
	margin:0 auto;
	text-align:center;
	padding:5px 0;
	line-height:1.5;
	font-weight:normal;
}

#about p:last-child a:hover {
	text-decoration:underline;
}

#bottomBns {
	padding:50px 0 55px;
	background: #FFF;
}

#bottomBns ul {
	overflow:hidden;
	margin-left: 63px;
}

#bottomBns li {
	list-style:none;
	float:left;
	width:318px;
	margin-right:10px;
	margin-bottom:10px;
}

#bottomBns li:nth-child(3n) {
	margin-right:0px;
}

#bottomBns li a {
	padding-top:248px;
	display:block;
	background-image:url(../../../../img/common/bn1.gif);
}

#bottomBns li a:hover {
	background-image:url(../../../../img/common/bn1_on.gif);
}

#bottomBns li:nth-of-type(2) a {
	background-image:url(../../../../img/common/bn2.gif);
}

#bottomBns li:nth-of-type(2) a:hover {
	background-image:url(../../../../img/common/bn2_on.gif);
}

#bottomBns li:nth-of-type(3) a {
	background-image:url(../../../../img/common/bn3.gif);
}

#bottomBns li:nth-of-type(3) a:hover {
	background-image:url(../../../../img/common/bn3_on.gif);
}

#bottomBns li:nth-of-type(4) a {
	background-image:url(../../../../img/common/bn4.gif);
}

#bottomBns li:nth-of-type(4) a:hover {
	background-image:url(../../../../img/common/bn4_on.gif);
}

#bottomBns li:nth-of-type(5) a {
	background-image:url(../../../../img/common/bn5.gif);
}

#bottomBns li:nth-of-type(5) a:hover {
	background-image:url(../../../../img/common/bn5_on.gif);
}

#bottomBns li:nth-of-type(6) a {
	background-image:url(../../../../img/common/bn6.gif);
}

#bottomBns li:nth-of-type(6) a:hover {
	background-image:url(../../../../img/common/bn6_on.gif);
}



#footer {
	background-color:#898989;
	color:#FFF;
}

#footerInner {
	width:1100px;
	margin:0 auto;
	padding:45px 0 65px;
	text-align:center;
}

#footerInner a {
	color:#FFF;
}

#footerInner nav li {
	display:inline;
	margin-right:20px;
	padding-bottom:25px;
	line-height:3;
}

#footerInner nav li a {
	padding-right:20px;
	border-right:solid 1px #fff;
	display:inline-block;
	line-height:1;
}

#footerInner nav li:nth-of-type(5) a ,
#footerInner nav li:nth-of-type(9) a ,
#footerInner nav li:nth-of-type(13) a ,
#footerInner nav li:last-child a {
	border-right:none;
}



#footerInner nav li:nth-of-type(6):before ,
#footerInner nav li:nth-of-type(10):before ,
#footerInner nav li:nth-of-type(14):before {
	content: "\A";
	white-space: pre;
}

#footerTel {
	margin:50px 0 50px;
	background-image:url(../../../../img/common/footer_tel.png);
	padding-top:40px;
	background-position:center top;
}


.address {
	background-image:url(../../img/common/footer_logo.png);
	background-repeat:no-repeat;
	padding-left:130px;
	line-height:1.5;
	text-align:left;
    width: 440px;
    margin: 0 auto 30px;
	box-sizing:border-box;
	position:relative;
	float: none;
}

.address a.logo {
	position:absolute;
	left:0px;
	top:0px;
	width:111px;
	padding-top:91px;
	height:0px;
	overflow:hidden;
	display:block;
}

.address a.tel {
	text-decoration:none;
	cursor:default;
}

.line {
	width: 300px;
	float: right;
	padding: 0;
	margin: 0 100px 60px 0;
	
}

ul.sns { display: flex; justify-content: center; }
ul.sns li { position: relative; margin: 0 10px 60px; width: 40px; height: 40px; list-style: none; }
ul.sns li:before { display: block; width: 30px; height: 30px; position: absolute; top: 0; left: 0; opacity: 0; transition: .3s; }
ul.sns li:hover:before { opacity: 1; }

ul.sns li.icon_facebook:before { content:url(/common/imgs/icon_facebook_white.svg); background: #1877F2; border-radius: 20px; padding: 5px; }
ul.sns li.icon_instagram:before { content:url(/common/imgs/icon_instagram_white.svg); background: #FF0069; border-radius: 20px; padding: 5px; }
ul.sns li.icon_line:before { content:url(/common/imgs/icon_line_white.svg); background: #06C755; border-radius: 20px; padding: 5px; }
ul.sns li a { position: relative; display: block; width: 40px; height: 40px; border-radius: 20px; background: #FFF; z-index: 10; padding: 5px; box-sizing: border-box; transition: .3s; }
ul.sns li a:hover { opacity: 0; }
ul.sns li a img { width: auto; height: 30px; }


.copyrights {
    clear: both;
}


#footerInner p:last-child {
	font-size:75%;
}


@media screen and (max-width: 979px){

#difference h2 {
	background-image:url(../../../../img/common/different_sp.gif);
	background-size:214px 19px;
	background-position:center 3px;
	padding-top:23px;
	padding-bottom:3px;
	background-color:#434343;
	margin:0 5px 20px;
}

#difference ul {
	overflow:hidden;
	padding-bottom:30px;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#difference ul li {
	width:106px;
	height:106px;
	list-style:none;
}

#difference ul li a {
	padding-top:106px;
	background-size:106px 106px;
	display:block;
}


#difference ul.difference1 li a:link ,
#difference ul.difference1 li a:visited {
	background-image:url(../../img/common2021/different1_sp_off.gif);
}

#difference ul.difference1 li a:hover {
	background-image:url(../../img/common2021/different1_sp_on.gif);
}

#difference ul.difference1 li:nth-of-type(2) a:link ,
#difference ul.difference1 li:nth-of-type(2) a:visited {
	background-image:url(../../img/common2021/different2_sp_off.gif);
}

#difference ul.difference1 li:nth-of-type(2) a:hover {
	background-image:url(../../img/common2021/different2_sp_on.gif);
}

#difference ul.difference2 li:nth-of-type(1) a:link ,
#difference ul.difference2 li:nth-of-type(1) a:visited {
	background-image:url(../../img/common2021/different3_sp_off.gif);
}

#difference ul.difference2 li:nth-of-type(1) a:hover {
	background-image:url(../../img/common2021/different3_sp_on.gif);
}

#difference ul.difference2 li:nth-of-type(2) a:link ,
#difference ul.difference2 li:nth-of-type(2) a:visited {
	background-image:url(../../img/common2021/different4_sp_off.gif);
}

#difference ul.difference2 li:nth-of-type(2) a:hover {
	background-image:url(../../img/common2021/different4_sp_on.gif);
}

#difference ul.difference2 li:nth-of-type(3) a:link ,
#difference ul.difference2 li:nth-of-type(3) a:visited {
	background-image:url(../../img/common2021/different5_sp_off.gif);
}

#difference ul.difference2 li:nth-of-type(3) a:hover {
	background-image:url(../../img/common2021/different5_sp_on.gif);
}

#about {
	background-color:#efefef;
	padding:30px 10px 40px;
	line-height:2;
	font-size: 14px;
}

#about h2 {
	background-image:url(../../../../img/common/logo2.gif);
	background-size:237px 48px;
	background-position:center top;
	padding-top:48px;
	margin-bottom:30px;	
}

#about span ,
#about a {
	color:#0396c0;
	font-weight:bold;
	text-decoration:underline;
}

#about b {
	text-decoration:underline;
}

#aboutInner h2 + p {
	margin-bottom:30px;
}

#about p:last-child {
	padding-top:15px;
}

#about p:last-child a {
	background-color:#868686;
	color:#FFF;
	text-decoration:none;
	display:block;
	width: 100%;
	margin:0 auto;
	text-align:center;
	padding:5px 0;
	line-height:1.5;
	font-weight:normal;
	font-size: 12px;
}

#about p:last-child a:hover {
	text-decoration:underline;
}

#bottomBns {
	padding:50px 0 40px;
}

#bottomBns ul {
	overflow:hidden;
	margin:0 auto;
	letter-spacing: -0.4em;
	text-align:center;
}

#bottomBns li {
	list-style:none;
	display:inline-block;
	width:50%;
	margin-right:0;
	text-align:center;
}

#bottomBns li:nth-child(2n) {
	margin-right:0;
}

#bottomBns li:nth-child(3n) {
	margin-right:0;
}

#bottomBns li a {
	padding-top:124px;
	display:block;
	background-image:url(../../../../img/common/bn1_sp.gif);
	background-size:159px 124px;
	background-position: center;
}

#bottomBns li a:hover {
	background-image:url(../../../../img/common/bn1_on.gif);
}

#bottomBns li:nth-of-type(2) a {
	background-image:url(../../../../img/common/bn2_sp.gif);
}

#bottomBns li:nth-of-type(2) a:hover {
	background-image:url(../../../../img/common/bn2_on.gif);
}

#bottomBns li:nth-of-type(3) a {
	background-image:url(../../../../img/common/bn3_sp.gif);
}

#bottomBns li:nth-of-type(3) a:hover {
	background-image:url(../../../../img/common/bn3_on.gif);
}

#bottomBns li:nth-of-type(4) a {
	background-image:url(../../../../img/common/bn4_sp.gif);
}

#bottomBns li:nth-of-type(4) a:hover {
	background-image:url(../../../../img/common/bn4_on.gif);
}

#bottomBns li:nth-of-type(5) a {
	background-image:url(../../../../img/common/bn5_sp.gif);
}

#bottomBns li:nth-of-type(5) a:hover {
	background-image:url(../../../../img/common/bn5_on.gif);
}

#bottomBns li:nth-of-type(6) a {
	background-image:url(../../../../img/common/bn6_sp.gif);
}

#bottomBns li:nth-of-type(6) a:hover {
	background-image:url(../../../../img/common/bn6_on.gif);
}


/*===========================================
縲FOOTER
===========================================*/

#footer {
	background-color:#898989;
	color:#FFF;
}

#footerInner {
	width: 100%;
	padding:45px 0;
	text-align:center;
}

#footerInner a {
	color:#FFF;
}

#footerInner nav {
	overflow:hidden;
}

#footerInner nav li {
	float:left;
	width:50%;
	padding-bottom:0;
	box-sizing:border-box;
	text-align:left;
	margin-right: 0;
	font-size: 12px;
}

#footerInner nav li:nth-of-type(odd) {
	text-align:right;
}

#footerInner nav li:nth-of-type(odd) a {
	padding-right:10px;
	border-right:solid 1px #fff;
	display:inline-block;
	line-height:1;
}

#footerInner nav li:nth-of-type(even) a {
	padding-left:10px;
	text-align:left;
	border: 0;
	padding-right:0;
}

#footerInner nav li:last-child a {
	border-right:none;
}

#footerInner nav li:nth-of-type(5):before, #footerInner nav li:nth-of-type(10):before {
    content: none;
}

#footerTel {
	background-image:url(../../../../img/common/footer_tel.png);
	background-size:219px 20px;
	padding-top:20px;
	background-position:center top;
	position:relative;
	width:219px;
	margin:35px auto;
}

#footerTel a {
	position:absolute;
	right:0px;
	top:0px;
	width:107px;
	padding-top:20px;
	height:0px;
	overflow:hidden;
}

.address a.logo {
	position:absolute;
	left:0px;
	top:0px;
	width:50px;
	padding-top:45px;
	height:0px;
	overflow:hidden;
	display:block;
}

.address {
	background-image:url(../../img/common/footer_logo.png);
	background-size:55px 45px;
	background-repeat:no-repeat;
	background-position: 10px top;
	line-height:1.5;
	text-align:left;
	width: 300px;
	margin:0 auto 40px;
	box-sizing:border-box;
	padding:0 10px 0 75px;
	font-size: 10px;
	float: none;
}

.address span {
	display:block;
}


.line {
	width: 300px;
	float: none;
	padding: 0;
	margin:0 auto 40px;
	
}

#footerInner p:last-child {
	font-size:75%;
}

}