body, html {
	margin: 0;
	padding: 0;
	height: 100%;
}
.mt0 {
	margin-top: 0px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mb0 {
	margin-bottom: 0px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mb90 {
	margin-bottom: 90px !important;
}
.mb100 {
	margin-bottom: 100px !important;
}
/*------------------------------*/
/* header */
/*------------------------------*/
header {
	height: 100px;
	border-bottom: 2px solid #cccccc;
}
header h1.header-logo {
	float: left;
	width: 230px;
	height: auto;
	margin-top: 33px;
	margin-left: 3%;
}
header h1.header-logo img {
	width: 100%;
	height: auto;
	transition: .3s;
}
header h1.header-logo a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
header nav.header_nav {
	float: right;
}
header nav.header_nav ul {
	float: left;
	width: 700px;
	margin-top: 37px;
	display: flex;
	gap: 20px;
}
header nav.header_nav ul li.menu{
	display:none;
}
header nav.header_nav ul li.contact_button a {
	width: 140px;
	height: 42px;
	line-height: 42px;
	display: block;
	background: #4f8bc2;
	text-align: center;
	color: #FFF!important;
	border-radius: 42px;
	margin-top: -8px;
	border: 1px solid #4f8bc2;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
header nav.header_nav ul a {
	font-family: "Noto Sans JP", sans-serif;
	font-style: lighter;
	font-weight: 400;
	font-size: 16px;
}
header nav.header_nav ul li a:link, header nav.header_nav ul li a:visited, header nav.header_nav ul li a:hover, header nav.header_nav ul li a:active, header nav.header_nav ul li a:focus {
	color: black;
	text-decoration: none;
}
header nav.header_nav ul li.contact_button a:hover {
	background: #FFF;
	color: #000!important;
}
header nav.header_nav ul li.line a {
	font-weight: 400;
	font-size: 16px;
	position: relative;
	padding-bottom: 5px;
}
header nav.header_nav ul li.line a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #4f8bc2;
	transition: .3s;
}
header nav.header_nav ul li.line a:hover::after {
	width: 100%;
}
.btn-trigger {
  position: relative;
  width:22px;
  height:22px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height:2px;
  background-color: #4f8bc2;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top:10px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
	top: -10px;
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
	bottom: -10px;
}
.drawer-nav {
	position: fixed;
	z-index:9999;
	top: 0;
	overflow: hidden;
	width:100%;
	height: 100%;
	color: #222;
	background-color: #fff;
	padding: 0 30px;
	box-sizing: border-box;
}
.drawer-brand {
	display: block;
	width: 225px;
	height: auto;
	margin: 22px auto;
	padding: 0 !important;
	border: 0 !important;
	background: #FFF!important;
}
.drawer-brand img {
	width: 100%;
	height: auto;
}
.drawer-menu {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding-top: 20px;
	padding-bottom:20px;
	gap:2%;
}
.drawer-menu > li{
	width:23.5%;
}
.drawer-menu ul li a {
	font-size: 14px;
	line-height:1.4em;
	color: #000;
	display: block;
	margin-bottom: 3px;
	padding: 0;
	text-decoration: none;
}
.drawer-menu ul li a:hover {
	text-decoration: underline;
}
.drawer-menu ul {
	margin-bottom: 10px;
}
.drawer-menu ul ul li {
	display: block;
	margin-left: 15px;
}
.drawer-menu ul ul li a {
	font-size: 12px;
	line-height:1.4em;
}
.drawer-menu ul ul li {
	position: relative;
	display: block;
}
.drawer-menu ul ul li::before, .drawer-menu ul ul li::after {
	content: "";
	position: absolute;
	top: 10px;
	left: -15px;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #4f8bc2;
	transform-origin: calc(100% - 0px) 50%;
}
.drawer-menu ul ul li::before {
	transform: rotate(45deg);
}
.drawer-menu ul ul li::after {
	transform: rotate(-45deg);
}
.drawer-overlay {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2)
}
.drawer-open .drawer-overlay {
	display: block
}
.drawer--left .drawer-nav {
	left: -100%;
	-webkit-transition: left .6s cubic-bezier(.19, 1, .22, 1);
	transition: left .6s cubic-bezier(.19, 1, .22, 1)
}
.drawer--left .drawer-hamburger, .drawer--left.drawer-open .drawer-nav, .drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
	left: 0
}
.drawer-open .icon {
	text-indent: -9999px;
}
.drawer-open .icon::before, .drawer-open .icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 20px;
	background: #333;
}
.drawer-open .icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-open .icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer-open .icon {
	animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
 0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
.drawer-nav .copyright {
	font-size:12px;
	text-align: center;
	color: #666;
}
/*------------------------------*/
/* topimg */
/*------------------------------*/
#topimg {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	padding: 0px;
	box-sizing: border-box;
}
.top_mv_right_top {
	width: 18.125%;
	margin-left: auto;
	padding: 32px 0 90px;
	position: relative;
	right: 3%;
	overflow: hidden;
}
top_mv_right_top .all_square_anime {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 0.4s 0.4s ease;
	transition: all 0.4s 0.4s ease;
}
.top_mv_right_top img {
	width: 100%;
}
#slider_s {
	display: block;
	width: 100%;
	min-height: 100px;
}
.top_mv_right_top .all_square_anime {
	transform: none !important;
}
.top_mv_right_top:after {
	content: "";
	background: #4f8bc2;
	width: 8px;
	height: 318px;
	position: absolute;
	left: 67.24%;
	display: block;
	top: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: top 0.8s ease-in-out;
	transition: top 0.8s ease-in-out;
	-webkit-animation: topMvRightBorderMove 3s 1.2s ease infinite;
	animation: topMvRightBorderMove 3s 1.2s ease infinite;
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}
.top_mv_right_top .all_square_anime:after {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: all 0.4s 0.8s ease;
	transition: all 0.4s 0.8s ease;
}
.text_box {
	position: relative;
	z-index: 200;
	margin-left: 6%;
	margin-top: -80px
}
.text_box .inner {
	overflow: hidden;
}
.all_square_anime {
	position: relative;
	display: inline-block;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.text_box .top .all_square_anime {
	padding-bottom: 0px;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 0.4s 0.6s ease;
	transition: all 0.4s 0.6s ease;
}
.top_mv_head {
	position: relative;
	line-height: 1.2;
}
.top_mv_head > span {
	display: block;
	font-size: 82px;
	color: #000;
}
.top_mv_head span span {
	letter-spacing: -0.03em;
	font-weight: 600;
}
.top_mv_head > span:nth-child(2) {
	padding-left: 0.44em;
	color: #4f8bc2;
}
.text_box h1.title {
	line-height: 1.6;
	font-weight: 700;
	font-size: 22px;
}
.top_mv_head span span {
	letter-spacing: -0.03em;
	font-weight: 600;
}
.all_square_anime:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	-webkit-transform-origin: right center;
	transform-origin: right center;
	box-sizing: border-box;
}
.text_box .top .all_square_anime {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 0.4s 0.6s ease;
	transition: all 0.4s 0.6s ease;
}
.text_box .top .all_square_anime:after {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: all 0.4s 1s ease;
	transition: all 0.4s 1s ease;
}
.text_box .bottom .all_square_anime {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 0.4s 1s ease;
	transition: all 0.4s 1s ease;
}
.text_box .bottom .all_square_anime:after {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: all 0.4s 1.4s ease;
	transition: all 0.4s 1.4s ease;
}
.top_mv_right_top:after {
	-webkit-animation: topMvRightBorderMove 3s 1.2s ease infinite;
	animation: topMvRightBorderMove 3s 1.2s ease infinite;
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}
.text_box:after {
	content: "";
	background: #4f8bc2;
	width: 8px;
	height: 0;
	position: absolute;
	left: -2.76%;
	display: block;
	top: calc(100% + 235px);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: top 0.6s 0.2s ease-in-out, height 0.6s 0.2s ease-in-out;
	transition: top 0.6s 0.2s ease-in-out, height 0.6s 0.2s ease-in-out;
	-webkit-animation: topMvTextBoxBorderMove 3s 1.5s ease infinite;
	animation: topMvTextBoxBorderMove 3s 1.5s ease infinite;
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}
@-webkit-keyframes topMvRightBorderMove {
 0% {
 height: 0;
 top: -205px;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 40% {
 height: 318px;
 top: -205px;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 60% {
 height: 318px;
 top: -205px;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 100% {
 height: 318px;
 top: -205px;
 -webkit-transform: translateX(-50%) scale(1, 0);
 transform: translateX(-50%) scale(1, 0);
}
}
@keyframes topMvRightBorderMove {
 0% {
 height: 0;
 top: -205px;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 40% {
 height: 318px;
 top: -205px;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 60% {
 height: 318px;
 top: -205px;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 100% {
 height: 318px;
 top: -205px;
 -webkit-transform: translateX(-50%) scale(1, 0);
 transform: translateX(-50%) scale(1, 0);
}
}
@-webkit-keyframes topMvTextBoxBorderMove {
 0% {
 height: 0;
 top: 0;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 40% {
 height: calc(100% + 230px);
 top: 0;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 60% {
 height: calc(100% + 230px);
 top: 0;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 100% {
 height: calc(100% + 230px);
 top: 0;
 -webkit-transform: translateX(-50%) scale(1, 0);
 transform: translateX(-50%) scale(1, 0);
}
}
@keyframes topMvTextBoxBorderMove {
 0% {
 height: 0;
 top: 0;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 40% {
 height: calc(100% + 230px);
 top: 0;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 60% {
 height: calc(100% + 230px);
 top: 0;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
 100% {
 height: calc(100% + 230px);
 top: 0;
 -webkit-transform: translateX(-50%) scale(1, 0);
 transform: translateX(-50%) scale(1, 0);
}
}
#topimg .sp {
	display: none;
}
.slider {
	width: 100%;
	position: relative;
	margin-top: 50px;
	box-sizing: border-box;
	padding-right: 7.2%;
	z-index: 100;
}
.slider_s {
	width: 18%;
	position: absolute;
	height: auto;
	right: 50px;
	top: 50px;
	overflow: hidden;
}
.bx-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}
.bxslider {
	margin: 0;
	padding: 0;
}
.bx-viewport {
	-webkit-transform: translatez(0);
}
.circle {
	width: 130px;
	position: absolute;
	right: 7%;
	top: -48px;
	z-index: 2;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}
.circle img {
	width: 70%;
	margin: 15%;
	height: auto;
}
.circle img:nth-child(2) {
	width: 100%;
	margin: 0;
}
.circle img:nth-child(2) {
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: rotate 20s linear infinite;
	animation: rotate 20s linear infinite;
}
@keyframes rotate {
 0% {
transform:rotate(0);
}
 100% {
transform:rotate(360deg);
}
}
.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #CCC;
	position: relative;
	color: #fff;
	top: -40px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	background: #FFF;
	text-indent: -9999px;
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus {
	background: #4f8bc2;
}
.bx-wrapper .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	vertical-align: bottom;
 *zoom: 1;
 *display: inline;
}
.bx-wrapper .bx-pager-item {
	font-size: 0;
	line-height: 0;
}
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}
#slider > div[aria-hidden="false"] {
	animation: anime_zoom 4s linear;
}
#slider > div[aria-hidden="true"] {
	transform: scale(1.1);
}
 @keyframes anime_zoom {
 0% {
 transform: scale(1.0);
}
 100% {
 transform: scale(1.115);
}
}
#slider .pc{
	display:block;
}
#slider .sp{
	display:none;
}
#topimg img {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: block; /* 高さ維持のため */
}
#topimg img.fade-in {
  opacity: 1;
  visibility: visible;
}
/*------------------------------*/
/* fade */
/*------------------------------*/
.inview.fadedown {
	opacity: 0;
	transition-duration: 1s;
	transform: translateY(-30px);
}
.inview.fadedown.active {
	opacity: 1;
	transform: translateY(0px);
}
.inview.fadeleft {
	opacity: 0;
	transition-duration: 1s;
	transform: translateX(-30px);
}
.inview.fadeleft.active {
	opacity: 1;
	transform: translateX(0px);
}
.inview.faderight {
	opacity: 0;
	transition-duration: .5s;
	transform: translateX(30px);
}
.inview.faderight.active {
	opacity: 1;
	transform: translateX(0px);
}
.delay01 {
	transition-delay: .3s;
}
.delay02 {
	transition-delay: .6s;
}
.delay03 {
	transition-delay: .9s;
}
/*------------------------------*/
/* strength */
/*------------------------------*/
#strength {
	text-align: center;
	background: #f2f4f7 url(../images/top/strength_bg.webp) no-repeat center top;
	background-size: cover;
	padding-top: 210px;
	margin-top: -130px;
	padding-bottom: 70px;
	background-size: 150%;
	transition: background-size 5s ease;
}
#strength.zoom-out {
	background-size: 100%;
}
#strength h2 {
	font-size: 67px;
	margin-bottom: 40px;
	line-height: 0.7em;
}
#strength h2 span {
	display: block;
	font-size: 16px;
}
#strength h3 {
	font-size: 31px;
	color: #4f8bc2;
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: 1px solid #CCC;
	margin-bottom: 5px;
}
#strength p {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 40px;
}
#strength p strong {
	color: #4f8bc2;
}
.simply-scroll-clip {
	width: 90%;
	overflow: hidden;
	margin: auto;
}
#simplyScroll {
	margin-bottom: 50px;
}
.simply-scroll-container {
	position: relative;
}
.simply-scroll-clip {
	position: relative;
	overflow: hidden;
}
.simply-scroll-list {
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.simply-scroll-list li {
	list-style: none !important;
	float: left;
	width: 260px;
	height: 185px;
	padding: 0;
	margin-right: 10px;
	overflow: hidden;
	display: block;
}
.simply-scroll-list li img {
	display: block;
	width: 100%;
	transition-duration: .5s;
}
simply-scroll-list li img:hover {
	transform: scale(1.1);
}
#strength .button a {
	width: 300px;
	height: 50px;
	line-height: 50px;
	background: #000;
	color: #FFF;
	text-decoration: none;
	border-radius: 60px;
	text-align: center;
	display: block;
	margin: auto;
	position: relative;
	font-size: 16px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	border: 1px solid #000;
}
#strength .button a span {
	width: 28px;
	height: 28px;
	display: inline-block;
	border: 1px solid #FFF;
	border-radius: 50%;
	position: absolute;
	right: 18px;
	top: 10px;
}
#strength .button a::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #FFF;
	border-right: 0;
	position: absolute;
	right: 28px;
	top: 19px;
}
#strength .button a:hover {
	background: #FFF;
	color: #000;
}
#strength .button a:hover span {
	border: 1px solid #000;
}
#strength .button a:hover::after {
	border-left: 8px solid #000;
}
/*------------------------------*/
/* purpose */
/*------------------------------*/
#purpose {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
}
#purpose h2 {
	font-size: 67px;
	margin-bottom: 40px;
	line-height: 0.7em;
}
#purpose h2 span {
	display: block;
	font-size: 16px;
}
#purpose h3 {
	font-size: 31px;
	color: #4f8bc2;
	display: inline-block;
	margin-bottom: 40px;
}
#purpose > dl {
	display: flex;
	width: 90%;
	margin: auto;
	gap:2%;
}
#purpose > dl > dt, #purpose > dl > dd {
	width: 49%;
}
#purpose > dl > dt dl {
	width: 100%;
	margin-top: 35px;
	margin-left: 50px;
}
#purpose > dl > dt dl dt {
	float: left;
	color: #FFF;
	background: #4f8bc2;
	width: 174px;
	height: 60px;
	font-size: 18px;
	text-align: center;
	line-height: 60px;
	margin-right: 20px;
	font-weight: bold;
}
#purpose > dl > dt dl dd {
	text-align: left;
	font-size: 18px;
}
#purpose > dl > dd img {
	width: 100%;
	height: auto;
}
#purpose > dl > dd p.purpose_logo {
	margin-bottom: 20px;
}
#purpose > dl > dd p.purpose_logo img {
	width: 115px;
	height: auto;
}
#purpose > dl > dd .button a {
	width: 300px;
	height: 60px;
	line-height: 60px;
	background: #FFF;
	color: #3c4043;
	text-decoration: none;
	border-radius: 60px;
	text-align: center;
	display: block;
	margin: auto;
	position: relative;
	font-size: 16px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	border: 2px solid #CCC;
}
#purpose > dl > dd .button a::before, #purpose > dl > dd .button a::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 30px;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #3c4043;
	transform-origin: calc(100% - 0px) 50%;
}
#purpose > dl > dd .button a::before {
	transform: rotate(45deg);
}
#purpose > dl > dd .button a::after {
	transform: rotate(-45deg);
}
#purpose > dl > dd .button a:hover {
	background: #3c4043;
	color: #FFF;
}
#purpose > dl > dd .button a:hover::before, #purpose > dl > dd .button a:hover::after {
	background-color: #FFF;
}
/*------------------------------*/
/* news */
/*------------------------------*/
#news {
	background: #f2f4f7;
	padding: 70px 0;
}
#news dl {
	width: 90%;
	margin: auto;
	display: flex;
	gap:2%;
}
#news dl dt {
	width: 21.4%;
}
#news dl dd {
	width: 76.6%
}
#news h2 {
	font-size: 67px;
	margin-bottom: 40px;
	line-height: 0.7em;
	text-align: left;
}
#news h2 span {
	display: block;
	font-size: 16px;
}
#news ul {
	margin: 0 auto;
	border-top: 1px solid #CCC;
}
#news ul li {
	width: 100%;
	border-bottom: 1px solid #CCC;
	padding-top: 10px;
	padding-bottom: 10px;
}
#news ul li a{
  display: flex;
  align-items: flex-start;
}
#news ul li p.data {
	flex-shrink: 0;
	font-size: 14px;
	margin-bottom: 5px;
	color: #4f8bc2;
	text-decoration: none;
	margin: 0;
	width:205px;
}
#news ul li p.title {
	clear: both;
	font-size: 16px;
	text-decoration: none;
	margin: 0;
	color: #000;
	flex: 1;
}
#news ul li p.data span {
	width: 85px;
	color: #000;
}
#news ul li p.data b {
	display: inline-block;
	background-color: #4f8bc2;
	border-radius: 5px;
	width: 110px;
	height: 28px;
	color: #FFF;
	text-align: center;
	line-height: 28px;
	margin-left: 15px;
}
#news ul li a:link, #news ul li a:visited, #news ul li a:active, #news ul li a:focus {
	text-decoration: none;
	color: #000;
}
#news ul li a:hover p.title {
	text-decoration: underline;
}
#news .button a {
	width: 185px;
	height: 47px;
	line-height: 47px;
	background: #4f8bc2;
	color: #FFF;
	text-decoration: none;
	border-radius: 10px;
	text-align: center;
	display: block;
	position: relative;
	font-size: 16px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	border: 1px solid #4f8bc2;
}
#news .button a::before, #news .button a::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 30px;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #FFF;
	transform-origin: calc(100% - 0px) 50%;
}
#news .button a::before {
	transform: rotate(45deg);
}
#news .button a::after {
	transform: rotate(-45deg);
}
#news .button a:hover {
	background: #FFF;
	color: #3c4043;
}
#news .button a:hover::before, #news .button a:hover::after {
	background-color: #3c4043;
}
/*------------------------------*/
/* product */
/*------------------------------*/
#product {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
}
#product h2 {
	font-size: 67px;
	margin-bottom: 60px;
	line-height: 0.7em;
}
#product h2 span {
	display: block;
	font-size: 16px;
}
.search {
	width: 86%;
	margin: auto;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.tab-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.btn {
	flex-basis: 50%;
	text-align: center;
}
.btn a {
	display: block;
	border-top: 5px solid #cadced;
	position: relative;
	font-size: 16px;
	padding: 15px 0;
	text-decoration: none;
	line-height: 1;
	background-color: #f9fafa;
	cursor: pointer;
}
.btn h3 {
	font-size: 18px;
	font-weight: bold;
	color: #666;
	margin: 0;
}
.btn p {
	font-size: 14px;
	color: #000;
	margin: 0;
}
.btn a.is-active {
	background-color: #FFF;
	border-top: 5px solid #4f8bc2;
}
.btn a.is-active h3 {
	color: #4f8bc2;
}
.tab-contents-item {
	display: none;
	width: 100%;
	padding: 40px 4%;
	text-align: left;
	box-sizing: border-box;
}
.tab-contents-item.is-active {
	display: block;
	background-color: #FFF;
}
.tab-contents-item h3 {
	font-size: 16px;
	margin-bottom: 10px;
}
.tab-contents-item h3::after {
	content: "";
	height: 1px;
	width: 80%;
	float: right;
	background: #CCC;
	margin-top: 12px;
}
.tab-contents-item ul {
	display: flex;
	flex-wrap: wrap;
}
.tab-contents-item ul li {
	margin-bottom: 10px;
	width: 25%;
	cursor: pointer;
}
.tab-contents-item ul li label img {
	transition: .2s;
}
.tab-contents-item ul li label:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.tab-contents-item ul li .img {
	width: 45%;
	margin: 0;
	float: left;
	cursor: pointer;
	margin-right: 10px;
}
.tab-contents-item ul li .title {
	cursor: pointer;
	font-size: 14px;
}
.tab-contents-item ul li .img img {
	width: 100%;
	height: auto;
}
.tab-contents-item ul li input {
	margin-top: 20px;
	cursor: pointer;
}
.tab-contents-item li {
	opacity: 0;
}
.tab-contents-item.is-active li {
	animation: fadeinAnime 2s forwards;
}
 @keyframes fadeinAnime {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
.tab-contents-item .button {
	margin-top: 30px;
}
.tab-contents-item .button a,
.tab-contents-item .button button{
	width: 300px;
	height: 50px;
	line-height: 50px;
	background: #000;
	color: #FFF;
	text-decoration: none;
	border-radius: 60px;
	text-align: center;
	display: block;
	margin: auto;
	position: relative;
	font-size: 16px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	border: 1px solid #000;
}
.tab-contents-item .button a::before, .tab-contents-item .button a::after,
.tab-contents-item .button button::before, .tab-contents-item .button button::after{
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 30px;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #FFF;
	transform-origin: calc(100% - 0px) 50%;
}
.tab-contents-item .button a::before,
.tab-contents-item .button button::before{
	transform: rotate(45deg);
}
.tab-contents-item .button a::after,
.tab-contents-item .button button::after{
	transform: rotate(-45deg);
}
.tab-contents-item .button a:hover,
.tab-contents-item .button button:hover{
	background: #FFF;
	color: #000;
}
.tab-contents-item .button a:hover::before, .tab-contents-item .button a:hover::after,
.tab-contents-item .button button:hover::before, .tab-contents-item .button button:hover::after{
	background-color: #000;
}
/*------------------------------*/
/* service */
/*------------------------------*/
.service {
	text-align: center;
	background: #f2f4f7;
}
.service h2 {
	font-size: 67px;
	margin-bottom: 60px;
	padding-top: 70px;
	line-height: 0.7em;
}
.service h2 span {
	display: block;
	font-size: 16px;
}
#eco_main {
	display: flex;
	background: url(../images/top/eco_bg.webp) no-repeat left top;
	background-size: 84% auto;
	padding-top: 96px;
	padding-bottom: 70px;
}
#process_main {
	display: flex;
	background: url(../images/top/parts_bg.webp) no-repeat left top;
	background-size: 84% auto;
	padding-top: 96px;
}
#eco_main dt, #eco_main dd, #process_main dt, #process_main dd {
	width: 50%;
	text-align: left;
}
#eco_main dt, #process_main dt {
	padding-left: 5%;
	padding-right: 3%;
	box-sizing: border-box;
}
#eco_main dd, #process_main dd {
	background: #FFF;
	box-sizing: border-box;
	padding: 40px 4% 0;
	height: 410px;
	min-width:670px;
	flex-shrink: 0;
}
#eco_main h3, #process_main h3 {
	color: #FFF;
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: normal;
}
#eco_main .img, #process_main .img {
	max-width: 388px;
	margin: auto;
}
#eco_main .img img, #process_main .img img {
	width: 100%;
	height: auto;
}
#eco_main .text, #process_main .text {
	margin-top: -40px;
	margin-bottom: 0;
}
#eco_main dd ul, #process_main dd ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
#eco_main dd ul li, #process_main dd ul li {
	width: 33.3%;
	padding-right: 10px;
	box-sizing: border-box;
}
#eco_main dd ul li a, #process_main dd ul li a {
	display: block;
	padding-top: 10px;
	border-bottom: 1px solid #CCC;
	min-height: 60px;
	font-size: 14px;
	box-sizing: border-box;
	line-height: 1.2em;
}
#eco_main dd ul li:nth-of-type(1) a, #eco_main dd ul li:nth-of-type(2) a, #eco_main dd ul li:nth-of-type(3) a, #process_main dd ul li:nth-of-type(1) a, #process_main dd ul li:nth-of-type(2) a, #process_main dd ul li:nth-of-type(3) a {
	border-top: 1px solid #CCC;
}
#eco_main dd ul li a, #process_main dd ul li a {
	text-decoration: none;
	color: #000;
	padding: 10px;
	position: relative;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
#eco_main dd ul li a.blank, #process_main dd ul li a.blank {
	background: url(../images/common/blank.gif) no-repeat right 12px;
	background-size: 12px auto;
	padding-right: 20px;
	box-sizing: border-box;
}
#eco_main dd ul li a:hover, #process_main dd ul li a:hover {
	background: #b9d1e7;
	font-weight: bold;
}
#eco_main dd ul li a.blank:hover, #process_main dd ul li a.blank:hover {
	background: #b9d1e7 url(../images/common/blank.gif) no-repeat right 12px;
	background-size: 12px auto;
}
#eco_main dd ul li a span, #process_main dd ul li a span {
	width: 15px;
	height: 15px;
	background: #4f8bc2;
	border-radius: 50%;
	text-align: center;
	display: block;
	position: relative;
	margin-right: 10px;
	float: left;
	margin-bottom: 30px;
}
#eco_main dd ul li a span::before, #eco_main dd ul li a span::after, #process_main dd ul li a span::before, #process_main dd ul li a span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 5px;
	width: 5px;
	height: 1px;
	border-radius: 9999px;
	background-color: #FFF;
	transform-origin: calc(100% - 0px) 50%;
}
#eco_main dd ul li a span::before, #process_main dd ul li a span::before {
	transform: rotate(45deg);
}
#eco_main dd ul li a span::after, #process_main dd ul li a span::after {
	transform: rotate(-45deg);
}
#eco_main dd .button a, #process_main dd .button a {
	width: 100%;
	height: 47px;
	line-height: 47px;
	background: #4f8bc2;
	color: #FFF;
	text-decoration: none;
	border-radius: 10px;
	text-align: center;
	display: block;
	position: relative;
	font-size: 16px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	border: 1px solid #4f8bc2;
}
#eco_main dd .button a::before, #eco_main dd .button a::after, #process_main dd .button a::before, #process_main dd .button a::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 30px;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #FFF;
	transform-origin: calc(100% - 0px) 50%;
}
#eco_main dd .button a::before, #process_main dd .button a::before {
	transform: rotate(45deg);
}
#eco_main dd .button a::after, #process_main dd .button a::after {
	transform: rotate(-45deg);
}
#eco_main dd .button a:hover, #process_main dd .button a:hover {
	background: #FFF;
	color: #3c4043;
}
#eco_main dd .button a:hover::before, #eco_main dd .button a:hover::after, #process_main dd .button a:hover::before, #process_main dd .button a:hover::after {
	background-color: #3c4043;
}
/*------------------------------*/
/* 洗の研究所 */
/*------------------------------*/
.eco_pickup {
	background: #e1e7ed;
}
.eco_pickup dl {
	display: flex;
}
.eco_pickup dl dt {
	width: 50%;
	padding-left: 5%;
	padding-top: 40px;
	box-sizing: border-box;
	padding-right: 40px;
	width: 652px;
	flex-shrink: 0;
}
.eco_pickup dl dt h2 {
	font-size: 57px;
	margin-bottom: 20px;
	line-height: 0.7em;
	color: #4f8bc2;
	border-left: 5px solid #4f8bc2;
	padding-left: 20px;
	height: 100px;
}
.eco_pickup dl dt h2 span {
	display: block;
	font-size: 16px;
	color: #000;
}
.eco_pickup dl dt p {
	font-size: 16px;
	margin-bottom: 30px;
}
.eco_pickup dl dt ul {
	display: flex;
	width: 100%;
	background: #FFF;
	border-radius: 10px;
	margin-bottom: 40px;
}
.eco_pickup dl dt ul li {
	width: 33.3%;
	height: 55px;
	line-height: 55px;
	padding-left: 20px;
}
.eco_pickup dl dt ul li a {
	padding-bottom: 5px;
	color: #4f8bc2;
	text-decoration: none;
	position: relative;
}
.eco_pickup dl dt ul li a span {
	width: 15px;
	height: 15px;
	background: #4f8bc2;
	border-radius: 50%;
	text-align: center;
	display: block;
	margin-top: 20px;
	position: relative;
	margin-right: 10px;
	float: left;
}
.eco_pickup dl dt ul li a span::before, .eco_pickup dl dt ul li a span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 5px;
	width: 5px;
	height: 1px;
	border-radius: 9999px;
	background-color: #FFF;
	transform-origin: calc(100% - 0px) 50%;
}
.eco_pickup dl dt ul li a span::before {
	transform: rotate(45deg);
}
.eco_pickup dl dt ul li a span::after {
	transform: rotate(-45deg);
}
.eco_pickup dl dt ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #4f8bc2;
	transition: .3s;
}
.eco_pickup dl dt ul li a:hover::after {
	width: 100%;
}
.eco_pickup dl dd {
	flex: 1; /* 残りの幅をすべて使う */
}
.eco_pickup dl dd ul {
	display: flex;
	gap: 2%;
}
.eco_pickup dl dd ul li {
	width: 32%;
	position: relative;
}
.eco_pickup dl dd ul li img {
	width: 100%;
	height: auto;
}
.eco_pickup dl dd ul li:nth-of-type(1) {
	top: 60px;
}
.eco_pickup dl dd ul li:nth-of-type(2) {
	top: 10px;
}
.eco_pickup dl dd ul li:nth-of-type(3) {
	top: 50px;
}
.fadelist {
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
/* 表示時（フェードイン & 下に動く） */
.fadelist.show {
	opacity: 1;
	transform: translateY(0);
}
/*------------------------------*/
/* 事業一覧 */
/*------------------------------*/
.service_list {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
	background: #f2f4f7;
}
.service_list h2 {
	font-size: 30px;
	line-height: 1.2em;
	font-weight:bold;
}
.service_list h2 span {
	display: block;
	font-size: 16px;
}
.service_list h2::after {
	content: '';
	width: 70px;
	height: 5px;
	display: block;
	background: #4f8bc2;
	margin: 20px auto 30px;
}
.service_list ul {
	display: flex;
	flex-wrap: wrap;
	width: 86%;
	margin: auto;
	gap: 3.5%;
}
.service_list ul li {
	width: 31%;
	margin-bottom: 30px;
	text-align: left;
}
.service_list ul li .img {
	overflow: hidden;
	margin-bottom: 10px;
}
.service_list ul li .img img {
	width: 100%;
	height: auto;
	transition-duration: .5s;
}
.service_list ul li .img img:hover {
	transform: scale(1.1);
}
.service_list ul li h3 {
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
	font-size: 18px;
}
.service_list ul li h3.blank {
	background: url(../images/common/blank.gif) no-repeat right 8px;
	background-size: 15px auto;
	display: inline-block;
	padding-right: 25px;
}
.service_list ul li .text {
	color: #333;
	font-size: 16px;
	margin: 0;
}
.service_list ul li a:link, .group_company ul li a:visited, .group_company ul li a:active, .group_company ul li a:focus {
	text-decoration: none;
}
.service_list ul li a:hover p.text {
	text-decoration: underline;
}
/*------------------------------*/
/* sustainability */
/*------------------------------*/
.sustainability {
	margin-top: 70px;
	margin-bottom: 70px;
}
.sustainability a {
	position: relative;
	display: block;
	padding-left: 70px;
	box-sizing: border-box;
	padding-top: 100px;
	width: 90%;
	height: 412px;
	margin: 0 auto 0;
	background: url(../images/common/sustainability.webp) no-repeat center top;
	background-size: cover;
	text-decoration: none;
}
.sustainability h2 {
	text-align: left;
	color: #FFF;
	font-size: 31px;
	font-weight: bold !important;
}
.sustainability h3 {
	text-align: left;
	color: #FFF;
	font-size: 57px;
	margin-bottom: 30px;
	line-height: 1.2em;
	letter-spacing: 0.1em;
	font-weight: bold !important;
}
.sustainability .button {
	text-align: left;
	color: #FFF;
	font-size: 18px;
	width: 220px;
	font-weight: bold;
	position: absolute;
	right: 70px;
	padding-top: 14px;
	transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
.sustainability .button::before {
	content: "";
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #FFF;
	display: block;
	position: absolute;
	right: 10px;
	top: 0;
}
.sustainability .button span {
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 2px;
	margin: 9.2px 0;
	border-radius: 9999px;
	background-color: #4f8bc2;
	right: 25px;
	top: 17px;
}
.sustainability .button span::before, .sustainability .button span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	width: 15px;
	height: 2px;
	border-radius: 9999px;
	background-color: #4f8bc2;
	transform-origin: calc(100% - 1px) 50%;
}
.sustainability .button span::before {
	transform: rotate(45deg);
}
.sustainability .button span::after {
	transform: rotate(-45deg);
}
.sustainability a::before {
	transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
.sustainability a {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.sustainability a::before {
	background: inherit;
	content: "";
	display: block;
	filter: blur(5px);
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	z-index: -1;
	opacity: 0;
}
.sustainability a:hover::before {
	opacity: 1;
}
.sustainability a:hover .button {
	right: 60px;
}
/*------------------------------*/
/* bottom */
/*------------------------------*/
.bottom ul {
	display: flex;
}
.bottom ul li {
	width: 50%;
}
.bottom ul li a {
	display: block;
	height: 430px;
	text-decoration: none;
	transition: .3s;
	box-sizing: border-box;
	padding-top: 84px;
}
.bottom ul li a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.bottom ul li.company a {
	background: #e4e8ee url(../images/common/company.webp) no-repeat center top;
	background-size: cover;
}
.bottom ul li.access a {
	background: #4f8bc2 url(../images/common/access.webp) no-repeat left top;
	background-size: cover;
}
.bottom ul li a h2 {
	font-size: 14px;
	color: #ffffff;
	line-height: 1em;
	text-align: center;
}
.bottom ul li a h3 {
	font-size: 48px;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
	line-height: 1em;
}
/*------------------------------*/
/* Recruit */
/*------------------------------*/
.recruit {
	background: #4f8bc2;
	padding-top: 90px;
	height: 560px;
}
.recruit dl {
}
.recruit dl dt {
	width: 60%;
	box-sizing: border-box;
	position: relative;
	z-index: 100;
	float: left;
	top: 0;
	padding-left: 5%;
	width: 560px;
  	flex-shrink: 0;
}
.recruit dl dt h2 {
	font-size: 67px;
	margin-bottom: 50px;
	line-height: 0.7em;
	color: #FFF;
}
.recruit dl dt h2 span {
	display: block;
	font-size: 16px;
}
.recruit dl dt h3 {
	font-size: 44px;
	margin-bottom: 50px;
	color: #FFF;
	text-shadow: 0px 0px 10px rgba(79, 139, 194, 0.5);
}
.recruit dl dd {
	width: 69%;
	flex: 1;
	position: relative;
	z-index:0;
	float: right;
	top: 0;
	margin-top: -456px;
}
.recruit dl dd ul {
	display: flex;
	gap: 2.1%;
}
.recruit dl dd ul li {
	width: 36.9%;
}
.recruit dl dd ul li:nth-of-type(3) {
	width: 22%;
}
.recruit dl dd ul li img {
	width: 100%;
	height: auto;
}
.recruit .button {
	width: 185px;
	border-radius: 10px;
}
.recruit .button a {
	width: 100%;
	height: 47px;
	line-height: 47px;
	background: #FFF;
	display: block;
	text-align: center;
	text-decoration: none;
	border-radius: 10px;
	color: #000;
	position: relative;
	transition: .3s;
}
.recruit .button a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.recruit .button a span {
	width: 15px;
	height: 15px;
	background: #4f8bc2;
	border-radius: 50%;
	text-align: center;
	display: block;
	position: relative;
	top: 16px;
	margin-right: 10px;
	float: right;
}
.recruit .button a span::before,  .recruit .button a span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 5px;
	width: 5px;
	height: 1px;
	border-radius: 9999px;
	background-color: #FFF;
	transform-origin: calc(100% - 0px) 50%;
}
.recruit .button a span::before {
	transform: rotate(45deg);
}
.recruit .button a span::after {
	transform: rotate(-45deg);
}
.recruit .button a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #4f8bc2;
	transition: .3s;
}
/*------------------------------*/
/* Contact */
/*------------------------------*/
.contact {
	padding: 100px 0 0;
	text-align: center;
	clear: both;
	margin-bottom: 0;
}
.contact h2 {
	font-size: 57px;
	margin-bottom: 40px;
	line-height: 0.7em;
	color: #000;
	height: 100px;
	font-weight:bold;
}
.contact h2 span {
	display: block;
	font-size: 16px;
	color: #000;
}
.contact ul {
	display: flex;
}
.contact ul li {
	width: 33.3%;
}
.contact ul li a {
	display: block;
	height: 322px;
	box-sizing: border-box;
	padding-top: 108px;
	text-decoration: none;
	transition: .3s;
}
.contact ul li:nth-of-type(1) a {
	background: url(../images/common/contact_p01.webp) no-repeat center top;
	background-size: cover;
}
.contact ul li:nth-of-type(2) a {
	background: url(../images/common/contact_p02.webp) no-repeat center top;
	background-size: cover;
}
.contact ul li:nth-of-type(3) a {
	background: url(../images/common/contact_p03.webp) no-repeat center top;
	background-size: cover;
}
.contact ul li p {
	font-size: 18px;
	color: #FFF;
	font-weight:bold;
	margin-bottom: 50px;
}
.contact ul li .button {
	height: 53px;
	line-height: 53px;
	width: 253px;
	text-align: center;
	border-radius: 53px;
	color: #FFFFFF;
	margin: auto;
	background-color: #4f8bc2;
}
.contact a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
/*------------------------------*/
/* footer */
/*------------------------------*/
footer {
	padding: 70px 0;
	background: #f2f4f7;
}
footer .menu {
	margin: auto;
	margin-bottom: 40px;
	width: 90%;
}
footer .menu > ul {
	display: flex;
	gap: 2.5%;
}
footer .menu > ul > li {
	width: 18%;
}
footer .menu > ul li {
	line-height: 1.2em;
}
footer .menu > ul > li > a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	padding-left: 15px;
	transition: .3s;
}
footer .menu ul li ul li {
	padding-left: 15px;
}
footer .menu ul li ul li a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	transition: .3s;
}
footer .menu ul li ul li a.blank {
	background: url(../images/common/blank.gif) no-repeat right 6px;
	background-size: 12px auto;
	display: inline-block;
	padding-right: 20px;
}
footer .menu > ul > li > a {
	border-bottom: 2px solid #4f8bc2;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 5px;
	font-size: 16px;
}
footer .menu > ul > li::before, footer .menu > ul > li > a::before {
	content: "";
	position: relative;
	display: block;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #4f8bc2;
	transform-origin: calc(100% - 0px) 50%;
}
footer .menu ul li ul li::before, footer .menu ul li ul li a::before {
	content: "";
	position: relative;
	display: block;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #4f8bc2;
	transform-origin: calc(100% - 0px) 50%;
	left: -15px;
}
footer .menu > ul > li::before {
	transform: rotate(45deg);
	bottom: -13px;
}
footer .menu ul li ul li::before {
	transform: rotate(45deg);
	bottom: -13px;
}
footer .menu > ul > li > a::before {
	transform: rotate(-45deg);
	bottom: -12px;
	left: -15px;
}
footer .menu ul li ul li a::before {
	transform: rotate(-45deg);
	bottom: -12px;
}
footer .menu ul li a:hover {
	color: #4f8bc2;
	font-weight: bold;
}
footer #banner {
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
footer #banner dt {
	width: 450px;
}
footer #banner dt #footer_logo {
	width: 300px;
	margin-bottom: 10px;
}
footer #banner dt #footer_logo img {
	width: 100%;
	height: auto;
	transition: .3s;
}
footer #banner p {
	margin: 0;
	font-size: 16px;
}
footer #banner dd {
	width: 400px;
}
footer #banner dd img {
	width: 100%;
	height: auto;
	transition: .3s;
}
footer a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
/*------------------------------*/
/* copyright */
/*------------------------------*/
#copyright {
	background: #333;
	text-align: center;
	padding: 20px 0;
}
#copyright p {
	font-size: 14px;
	color: #FFF;
	margin: 0;
}
/*------------------------------*/
/* pageTop */
/*------------------------------*/
#pageTop {
	bottom: 30px;
	right: 10px;
	display: block;
	position: fixed
}
#pageTop a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	color: #fff;
	background: #4f8bc2;
	position: relative;
	overflow: hidden;
	z-index: 9999;
	border: 1px solid #4f8bc2;
}
#pageTop a:hover:after {
	margin-top: -12px
}
#pageTop a:after {
	content: '';
	border: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -7px;
	margin-left: -4px;
	transition: all 0.4s ease;
	width: 5px;
	right: 20px;
	height: 20px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	transform: skew(0, -45deg);
}
#pageTop a:hover {
	background: #FFF;
	border: 1px solid #333;
}
#pageTop a:hover:after {
	border-top: 1px solid #333;
	border-right: 1px solid #333;
}