@charset="utf8";

/*追加CSSは最下部においてください*/

img {
	max-width: 100%;
}

a {
	color: #000;
}
img {
	transition: 1.0s ;
}

img:hover {
	opacity: 0.65 ;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.header {
	width: 100%;
}

.header .pc {
	margin-top: 20px;
}

.menu {
	margin-top: 10px;
	padding: 10px 0;
	background-color: #2B448E;
}

.menu a {
	color: #fff;
	padding: 10px 0;
}

.colorbar span {
	display: inline-block;
	width: 100%;
	height: 10px;
}

.information{
	margin-top:2em;
}

.information p {
	margin-bottom: 5px;
}

.contents{
	margin-top:2em;
}

.contents p{
	margin-bottom: 10px;
} 
.sitemap {
	background-color: #e6e6e6;
}

.sitemap h4 {
	color: #0071bc;
}

.footer {
	background-color: #cccccc;
}

.copyright {
	padding: 10px 0;
	background-color: #2b448e;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	.spmenu {
		position: absolute;
		width: 60%;
		left: 100%;
	}

	.header {
		background-color: #0071bc;
	}

	.header .hamburger {
		color: #fff;
	}

	.header .hamburger span {
		display: block;
		width: 100%;
		height: 5px;
		margin: 2px 0;
		background-color: #fff;
		border-radius: 100px;
	}

	.hamburger .top {
		-webkit-animation: menu-top .75s forwards;
  		animation: menu-top .75s forwards;
	}

	.hamburger.active .top {
		-webkit-animation: active-menu-top .75s forwards;
  		animation: active-menu-top .75s forwards;
	}

	.hamburger .middle {
		transition: all .25s .25s;
  		opacity: 1;
	}

	.hamburger.active .middle {
		opacity: 0;
	}

	.hamburger .bottom {
		-webkit-animation: menu-bottom .75s forwards;
  		animation: menu-bottom .75s forwards;
	}

	.hamburger.active .bottom {
		-webkit-animation: active-menu-bottom .75s forwards;
  		animation: active-menu-bottom .75s forwards;
	}

	.hamburger.once span {
		-webkit-animation: none;
		animation: none;
	}

	.menu {
		margin-top: 0;
		padding: 5px 0;
		background-color: #e6e6e6;
	}

	.bluebar {
		display: block;
		width: 100%;
		height: 10px;
		background-color: #2b448e;
	}

	.popbg {
		background-image: url(./img/sp_slidepop_bg.png);
		background-size: cover;
		background-repeat: no-repeat;
	}

	.sp-no-padding {
		padding: 0;
	}

	.sp-text-center {
		text-align: center;
	}

	.spwhite {
		background-color: #fff;
	}

	.spmT10 {
		margin-top: 10px!important;
	}

	.spmT20 {
		margin-top: 20px;
	}
}

/*-- common --*/

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.left {
	left: 0;
}

.bottom {
	bottom: 0;
}

.border-bottom {
	border-bottom: 1px solid #b3b3b3;
}

.no-padding {
	padding: 0;
}

.mT10 {
	margin-top: 10px;
}

.mT20 {
	margin-top: 20px;
}

.mT30 {
	margin-top: 30px;
}

.mT40 {
	margin-top: 40px;
}

.mB10 {
	margin-bottom: 10px;
}

.mB20 {
	margin-bottom: 10px;
}

.pT10 {
	padding-top: 10px;
}

.pT20 {
	padding-top: 20px;
}

.pT30 {
	padding-top: 30px;
}

.pT40 {
	padding-top: 40px;
}

.pB10 {
	padding-bottom: 10px;
}

.pB20 {
	padding-bottom: 10px;
}

.bold {
	font-weight: bold;
}

.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

.flexiblebox {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.white {
	background-color: #fff;
}

.orange {
	background-color: #f7931e;
}

.green {
	background-color: #00a99d;
}

.blue {
	background-color: #1b1464;
}

.red {
	background-color: #ed1c24;
}

.lightgray {
	background-color: #e6e6e6;
}

.gray {
	background-color: #cccccc;
}

.graybutton {
	padding: 10px;
	background-color: #999999;
	color: #fff;
	border-radius: 100px;
}

.whitebutton {
	padding: 10px;
	background-color: #fff;
	color: #000;
	border-radius: 100px;
}

/*-- common --*/

/*-- keyframes --*/

@-webkit-keyframes menu-top {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-top {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-bottom {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bottom {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}


@-webkit-keyframes active-menu-top {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}
@keyframes active-menu-top {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

@-webkit-keyframes active-menu-bottom {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes active-menu-bottom {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.slide .minus {
	display: none;
}
.slide_target {
	display: none;
	list-style-type: none;
	margin-bottom:-1px;
}
.slide_target > li {
	padding-top:10px;
	padding-bottom:10px;
	padding-left: 0px;
	padding-right: 0px;
}
.slide_target > li:nth-child(odd) {
	background: #dddddd;
}
.slide_target > li h4 {
	padding-left: 15px;
}
.slide_target .dpadding h4 {

	padding-left: 5px;
}
.slide_target .child {
	display: none;
	list-style-type: none;
	padding: 0;
}
.slide_target .child li {
	background: white;
	padding-left: 30px;
}
.slide_target .child h5 {
	padding:8px;
	font-size: 18px;
}

.btn_top {
 position: fixed;
 bottom: 10px;
 right: 10px;
}


/*------*/
/*
.submenu-container{
	margin-top:-20px;
}*/
.sub-menubox{
	  border: 1px solid #cccccc;
}
.bg{
	background-image: url(./img/bg.png);
}
.common-menu img{
  	transition: 0.3s;
}

.common-menu img:hover{
		-webkit-transform: translate(0,5px);
		-moz-transform: translate(0,5px);
		-ms-transform: translate(0,5px);
		-o-transform: translate(0,5px);
		transform: translate(0,5px);
		opacity: 1.0 ;
}

#pc-submenu ul { 
	padding-left:0;
	margin-left:0;
}

#pc-submenu li { 
	list-style-type:none; 
	padding-left:0;
	width:25%;
	float:left;
	border-bottom:1px solid #949494;
	border-left:1px solid  #949494;
}
#pc-submenu li img{ 
	width:100%;
}


#pc-submenu li:nth-child(1) {
	border-top:1px solid  #949494;
}
#pc-submenu li:nth-child(2) {
	border-top:1px solid  #949494;
}
#pc-submenu li:nth-child(3) {
	border-top:1px solid  #949494;
}

#pc-submenu li:nth-child(4) {
	border-top:1px solid  #949494;
	border-right:1px solid  #949494;
}
#pc-submenu li:nth-child(5) {
	clear:both;
}
#pc-submenu li:nth-child(8) {
	border-right:1px solid  #949494;
}
#pc-submenu li:nth-child(9) {
	clear:both;
}
#pc-submenu li:nth-child(12) {
	border-right:1px solid  #949494;
}


#sp-submenu ul { 
	padding:0;
	margin:0;
}

#sp-submenu li { 
	list-style-type:none; 
	padding-left:0;
	width:50%;
	float:left;
	border-bottom:1px solid #949494;
	border-left:1px solid  #949494;
}

	#sp-submenu li img{ 
		width:100%;
	}


#sp-submenu li:nth-child(odd){
		clear:both;
}


#sidemenu ul { 
	padding-left:0;
	margin-left:0;
	padding:10px;
	border-radius: 8px;
}

#sidemenu li { 
	list-style-type:none; 
	padding-left:0;
	width:100%;
	float:none;
}
#sidemenu li img{ 
	width:100%;
}



/***************************************************************/
/* topページ
/***************************************************************/
.top-banner-img img {
	width: 100%;
}

/***************************************************************/
/* ロボット特注製作
/***************************************************************/
.robot-info-left {
  float: left;
  width: 45%;
  padding-left: 20px;
  line-height: 1.5em;
}
.robot-info-right {
  float: left;
  width: 49%;
  margin-left: 23px;
  margin-top: 15px;
}
.jintaigata_s-img {
	width: 30%;
	margin-right: 5px;
}
@media screen and (max-width: 768px) {
	.robot-info-left {
	  width: 100%;
	  padding-left: 0;
	  line-height: 1.5em;
	}
	.robot-info-right {
	  width: 100%;
	  margin-left: 0;
	  margin-top: 10px;
	}
	.jintaigata_s-img {
		width: 100%;
	}
}
/***************************************************************/
/* レンタルロボット
/***************************************************************/
.rent-left {
  float: left;
  width: 45%;
  padding-left: 20px;
  line-height: 1.5em;
}
.rent-right {
  float: left;
  width: 45%;
  margin-left: 20px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
	.rent-left {
	  float: left;
	  width: 100%;
	  padding-left: 0;
	  line-height: 1.5em;
	}
	.rent-right {
	  float: left;
	  width: 100%;
	  margin-left: 0;
	  line-height: 1.5em;
	}
}
.pack-img img {
	width: 100%;
	height: auto;
}
.pack-hr {
	border-top: 3px solid #8c8b8b;
}
/***************************************************************/
/* 製品紹介動画
/***************************************************************/
.movie-left {
  float: left;
  width: 50%;
  padding-top: 15px;
  padding-left: 20px;
  line-height: 1.5em;
  font-size: 18px;
}
.movie-right {
  float: left;
  width: 15%;
  margin-left: 10px;
}
.movie-box {
	padding: 0;
	margin: 0;
    display: inline-block;
}
.movie-box img {
	width: 90%;
	height: 90px;
}
.movie-box p {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.movie-left {
	  float: left;
	  width: 100%;
	  padding-top: 15px;
	  padding-left: 0;
	  line-height: 1.5em;
	  font-size: 18px;
	}
	.movie-right {
	  float: left;
	  width: 100%;
	  margin-left: 0;
	}
	.movie-box {
		padding: 5px;
	}
	.movie-box img {
		width: 100%;
		height: auto;
	}
}
/***************************************************************/
/* ココロニュース
/***************************************************************/
.news-left {
  float: left;
  width: 60%;
  padding-top: 15px;
  padding-left: 20px;
  line-height: 1.5em;
}
.news-right {
  float: left;
  width: 30%;
  margin-left: 20px;
  margin-top: 65px;
}
.getadobereader_logo {
  border: 0;
  height: 30px;
  width: 110px;
}
.font-red {
  color: #FF0000;	
}
@media screen and (max-width: 768px) {
	.news-left {
	  float: left;
	  width: 100%;
	  padding-top: 0;
	  padding-left: 0;
	  line-height: 1.5em;
	}
	.news-right {
	  float: left;
	  width: 100%;
	  margin-left: 0;
	  margin-top: 65px;
	}
}
/***************************************************************/
/* 企業情報
/***************************************************************/
.about-info-left {
  float: left;
  width: 60%;
  padding-top: 15px;
  line-height: 1.5em;	
}
.about-info-right {
  float: left;
  width: 30%;
  margin-left: 20px;
}
.about-info-img-left {
  float: left;
  width: 40%;
  margin-right: 5px;
}
.about-info-img-right {
  float: left;
  width: 40%;
  margin-left: 5px;
}

.aboutdata-table {
  border-collapse: collapse;
  width: 100%;
}
.aboutdata-table th,td{
  padding: 0;
  vertical-align: top;
}
.aboutdata-table .td1 {
  width: 1%;
}
.aboutdata-table .td2 {
  width: 18%;
}
.aboutdata-table .td3 {
  width: 50%;
}
.about-jisseki-head {
  color: #FFFFFF;
  background-color: #0033FF;
  height: 18px;
}
.kenkyuu-td {
  background-color: #CCFFFF;
  height: 8px;
}
.tokuchuu-td {
  background-color: #FFFFCC;
  height: 8px;
}
.tokuchuu-td-18 {
  background-color: #FFFFCC;
  height: 18px;
}
.aboutjisseki-table, .aboutinquiry-table {
  width: 100%;	
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.font-blue {
  color: #0000FF;	
}
@media screen and (max-width: 768px) {
	.about-info-left {
	  float: left;
	  width: 100%;
	  padding-top: 0;
	  padding-left: 0;
	  line-height: 1.5em;	
	}
	.about-info-right {
	  float: left;
	  width: 100%;
	  margin-left: 0;
	}
	.about-info-img-left {
	  float: left;
	  width: 100%;
	  margin-right: 0;
	}
	.about-info-img-right {
	  float: left;
	  width: 100%;
	  margin-left: 0;
	}
	.aboutjisseki-table {
	  table-layout: fixed;
      word-break: break-all;
	  overflow: auto;
	}
}
/***************************************************************/
/* サイトマップ
/***************************************************************/
.sitemap-left {
  float: left;
  width: 40%;
  margin-right: 5px;
  text-align: center;
  padding: 60px 0;
}
.sitemap-right {
  float: left;
  width: 50%;
  margin-left: 5px;
}
.sitemap-left a, .sitemap-right a, .sitemap-other a{
  color: #000000;
}
.sitemap-right ul li, .sitemap-other ul li {
  list-style-type: none;
}
.sitemap-other {
  float: left;
  width: 40%;
  padding: 60px;
}
@media screen and (max-width: 768px) {
	.sitemap-left {
	  float: left;
	  width: 100%;
	  margin-right: 0;
	  text-align: left;
	  padding: 0;
	}
	.sitemap-right {
	  float: left;
	  width: 100%;
	  margin-left: 0;
	}
	.sitemap-other {
	  float: left;
	  width: 100%;
	  padding: 0;
	}
	.sitemap-right ul, .sitemap-other ul {
	  padding-left: 20px;
	}
}
.pager {
    overflow: hidden;
}
 
.pager ul {
    list-style: none;
    position: relative;
    left: 50%;
    float: left;
}
 
.pager ul li {
    margin: 0 1px;
    position: relative;
    left: -50%;
    float: left;
}
 
.pager ul li span,
.pager ul li a {
    display: block;
    font-size: 16px;
    padding: 0.6em 1em;
    border-radius: 3px;
}
 
.pager ul li a {
    background: #EEE;
    color: #000;
    text-decoration: none;
}
 
.pager ul li a:hover {
    background: #333;
    color: #FFF;
}
@media screen and (max-width: 768px) {
  .pager ul {
    left: 25%;
  }
 
.pager ul li {
    left: -25%;
}
  .pager ul li span,
  .pager ul li a {
    font-size: 12px	
  }
}
/***************************************************************/
/* お問い合わせ
/***************************************************************/
.font-red {
	color: red;
}
input.wpcf7-form-control{
    text-transform:none;
}
span.wpcf7-list-item { 
	display: table-row;
}
span.checkbox, span.radio {
	padding-left: 20px;
}

/***************************************************************/
/* インフォメーション
/***************************************************************/
.info-list {	
	list-style-type: none;
	padding: 10px 0 10px 20px;
}
.info-list p {
	padding-left: 20px;
}
.single-info section img {
	width: 100%;
	height: auto;
}

/***************************************************************/
/* jquery.bxslider.css修正
/***************************************************************/
.bx-wrapper {
	margin-bottom: -5px !important;
}
/***************************************************************/
/* Making
/***************************************************************/
.making-nagare-img {
	padding: 3px;
	float: left;
}
.making-nagare-img img{
	width: auto;
	height: 180px;
}
@media screen and (max-width: 768px) {
	.making-nagare-img img{
		width: 100%;
		height: auto;
	}
}