/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
}
.bxslider .slide {
	opacity: 0;
	transition: all 1s .6s ease;
}
.bxslider.open .slide {
	opacity: 1;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
	overflow: hidden;
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .75em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #0051A4;
  text-indent: -9999px;
  display: block;
  width: 70px;
  height: 70px;
	text-align: center;
  outline: 0;
  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: #0051A4;
}
.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;
}
.bx-wrapper .bx-pager-item a:hover {
	opacity: .7;
}
.bx-wrapper .bx-pager-item:nth-of-type(1) a {
	border-radius: 50%;
	transition: .2s;
}
.bx-wrapper .bx-pager-item:nth-of-type(1) a::before {
	content: "開発・設計";
	display: block;
	color: #fff;
	font-size: 11px;
	font-weight: 200;
	text-align: center;
	text-indent: 0;
	line-height: 70px;
}
.bx-wrapper .bx-pager-item:nth-of-type(2) a::before {
	content: "成形";
	display: block;
	color: #fff;
	font-size: 11px;
	font-weight: 200;
	text-align: center;
	text-indent: 0;
	line-height: 70px;
}
.bx-wrapper .bx-pager-item:nth-of-type(3) a::before {
	content: "表面処理";
	display: block;
	color: #fff;
	font-size: 11px;
	font-weight: 200;
	text-align: center;
	text-indent: 0;
	line-height: 70px;
}
.bx-wrapper .bx-pager-item:nth-of-type(4) a::before {
	content: "組立";
	display: block;
	color: #fff;
	font-size: 11px;
	font-weight: 200;
	text-align: center;
	text-indent: 0;
	line-height: 70px;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: -60px;
	font-size: 0;
}
.bx-wrapper .bx-prev::before {
	content: "";
	display: block;
	font-size: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #fff;
  border-bottom: 7px solid transparent;
	text-align: center;
	margin: 18px auto;
}
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: -60px;
	font-size: 0;
}
.bx-wrapper .bx-next::before {
	content: "";
	display: block;
	font-size: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 7px solid #fff;
  border-bottom: 7px solid transparent;
	text-align: center;
	margin: 18px auto;
}
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
	background: #0051A4;
	border-radius: 50%;
  position: absolute;
  top: 35%;
  margin-top: -16px;
  outline: 0;
	opacity: 0;
	transition: all 1s .6s ease;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper.open .bx-controls-direction a {
	opacity: 1;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url('images/controls.png') -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url('images/controls.png') -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.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;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}
.slide {
	background: #0051A4;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	max-width: 640px;
  padding: 30px;
}
.slide * {
	color: #fff;
	font-weight: 100;
	text-align: right;
}
.slide figure {
	margin: 0 20px 0 0;
	width: 350px;
}
.slide h2 {
	font-size: 34px;
	font-weight: 400;
}
.slide p {
	font-size: 14px;
	text-align: left;
}
.slide p:first-of-type {
	color: #6A8CC1;
	font-size: 20px;
	text-align: right;
	transform: translateY(-15px);
	opacity: 0.5;
}
.slide .slide_link {
	width: 370px;
}
.slide .btn {
	display: inline-block;
	margin-top: 30px;
}
.slide .btn a {
	background: #9199AB;
	color: #fff;
	display: block;
	font-weight: 400;
	font-size: 15px;
	padding: 4px 25px;
	transition: .2s;
}
.slide .btn a:hover {
	opacity: .7;
}