@charset "utf-8";

@media all and (max-width: 959px) { /* [tablet] */
	.box {
		padding: 0 20px;
	}
}

@media all and (max-width: 767px) { /* [sp] */


	body {
		min-width: auto;
	}


	/*common*/
	.box {
		padding: 0 5%;
	}
}


@media all and (max-width: 959px) { /* [tablet] */
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background: #fff;
		z-index: 99;
	}
	header * {
		box-sizing: border-box;
	}
	header .logo {
		position: absolute;
		top: 10px;
		left: 5%;
		height: 35px;
		width: 48px;
		padding: 0;
		margin: auto;
		z-index: 2;
	}
	header .logo a img {
		opacity: 1 !important;
	}
	header .menu_btn_cont {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		width: 100%;
		height: 100%;
		border-bottom: 1px #e5e5e5 solid;
		z-index: 1;
	}
	header .menu_btn_cont .menu_btn {
		position: absolute;
		display: block;
		width: 18px;
		height: 18px;
		top: 15px;
		right: 5%;
		z-index: 1;
		margin: 0;
		cursor: pointer;
	}
	header .menu_btn_cont .menu_btn::before,
	header .menu_btn_cont .menu_btn::after {
		content: "";
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background: #000;
		margin: auto;
		left: 0;
		right: 0;
		transition: 0.5s;
	}
	header .menu_btn_cont .menu_btn::before {
		box-shadow: 0 8px 0 0 #000;
		top: 0;
	}
	header .menu_btn_cont .menu_btn::after {
		top: 16px;
	}
	header .menu_btn_cont .menu_btn.open::before {
		box-shadow: none;
		transform: rotate(45deg);
		top: 8px;
	}
	header .menu_btn_cont .menu_btn.open::after {
		transform: rotate(-45deg);
		top: 8px;
	}

	header .nav_wrap {
		position: fixed;
		top: 50px;
		left: 0;
		width: 100%;
		height: calc(100vh - 50px);
		overflow-y: auto;
		transform: translateY(-100vh);
		visibility: hidden;
		transition: 0.5s;
	}
	header.open .nav_wrap {
		transform: translateY(0);
		visibility: visible;
	}

	header #header {
		position: relative;
		overflow: hidden;
		clear: both;
		width: 100%;
		margin: 0 auto;
		padding: 90px 0 0;
		background: #E0E0E0;
	}
	header #headerMenu {
		width: 100%;
		padding: 0 50px;
	}
	header .search {
		position: absolute;
		top: 30px;
		left: 0;
		right: 0;
		margin: auto;
		padding: 0 5%;
	}
	header .input {			
	}

	header input.ico {
		margin-top: 10px;
		width: 20px;
		height: 20px;
	}
	header input.ico.white {
		display: none;
	}
	header .input_txt {
		float: right;
		width: 90%;
		min-width: 300px;
		height: 40px;
		margin: 0 0 0 10px;
		border: 1px #A0A0A0 solid;
		background: none;
		color: #838383;
		font-size: 12px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border-radius: 0;
	}
	header .language {
		float: none;
		display: block;
		text-align: center;
		height: auto;
		margin: 0 0 20px;
		padding: 0;
	}
	header .language .inner {
		display: inline-block;
		vertical-align: middle;
		height: auto;
		margin-top: 0;
		border-radius: 0;
		background: none;
	}
	header .language .inner ul {
		margin: 0;
		padding: 0;
		display: inline-block;
		background: none;
	}
	header .language .inner ul li {
		color: #000;
		font-size: 18px;
		background: none;
	}
	header .language .inner ul li:last-of-type {
		padding-right: 0;
	}
	header .language .inner a {
		font-size: 18px;
		color: #000;
		transition: 0.5s;
	}
	header .language .inner a:hover,
	header .language .inner a.current {
		color: #0759A3;
	}

	header .gnav_menu {
		display: block !important;
		float: none;
		display: block;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background: #222222;
	}
	header .gnav_menu nav {
		width: auto;
		height: auto;
		padding: 45px 5% 200px;
	}
	header nav > ul {		
		margin: 0;
		padding: 0;
	}
	header nav > ul > li {
		position: relative;
		margin: 0;
	}
	.en header .gnav_menu nav > ul > li {
		margin-right: 0;
	}
	header nav > ul > li > span {
		position: relative;
		display: block;
		border-bottom: 1px #999 solid;
		padding: 0 0 5px;
		margin: 0 0 15px;
	}
	header nav > ul:last-of-type > li:last-of-type {
		margin-right: 0;
	}
	header nav > ul > li::after {
		content: "▼";
		position: absolute;
		top: 8px;
		right: 20px;
		margin: auto;
		font-size: 12px;
		font-weight: 500;
		color: #fff;
		transform: rotate(-90deg);
		transition: 0.5s;
	}
	header nav > ul > li.open::after {
		transform: rotate(0);
	}
	header nav > ul > li.nomenu::after {
		content: none;
	}
	header nav > ul > li > span a {
		font-size: 21px;
		color: #fff;
		font-weight: 400;
		transition: 0.3s;
	}
	header nav > ul > li > span a:hover,
	header nav > ul > li > span a.actv {
		color: #0759A3;
	}
	header nav > ul > li .sub_nav {
		display: none;
		margin: 0 0 15px;
	}
	header nav > ul > li .sub_nav > li > a {
		color: #999;
		line-height: 2;
		font-size: 14px;
	}

	/*TOP*/
	.sec_company .compnay_flex {
		display: block;
		margin: 0 0 50px;
	}
	.sec_company .compnay_flex > figure {
		margin: 0 0 15px;
	}
	.sec_company .compnay_flex > div {
		width: 100%;
		max-width: none;
		padding: 0;
	}
	.sec_company .compnay_flex h3 {
		margin: 0 0 10px;
	}
	.sec_company .compnay_flex_sub {
	display: flex;
	flex-wrap: wrap;
	}
	.sec_company .compnay_flex_sub li {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 25px;
	}
	.sec_company .compnay_flex_sub li:nth-of-type(2n) {
	margin-right: 0;
	}

	.bottom_link .img_link_s > li {
		width: 48%;
	}
	.bottom_link .img_link_s > li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	.bottom_link .img_link_s > li:not(:nth-of-type(2n)) {
		margin-right: 4%;
	}

}


@media all and (max-width: 767px) { /* [sp] */
	.gnav_menu {
		display: block !important;
		float: none;
		display: block;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background: #222222;
	}
	nav {
		width: auto;
		height: auto;
		padding: 45px 5% 200px;
	}
	nav > ul {
		margin: 0;
		padding: 0;
	}
	nav > ul > li {
		position: relative;
	}
	nav > ul > li > span {
		position: relative;
		display: block;
		border-bottom: 1px #999 solid;
		padding: 0 0 5px;
		margin: 0 0 15px;
	}
	nav > ul:last-of-type > li:last-of-type {
		margin-right: 0;
	}
	nav > ul > li::after {
		content: "▼";
		position: absolute;
		top: 8px;
		right: 20px;
		margin: auto;
		font-size: 12px;
		font-weight: 500;
		color: #fff;
		transform: rotate(-90deg);
		transition: 0.5s;
	}
	nav > ul > li.open::after {
		transform: rotate(0);
	}
	nav > ul > li.nomenu::after {
		content: none;
	}
	nav > ul > li > span a {
		font-size: 21px;
		color: #fff;
		font-weight: 400;
		transition: 0.3s;
	}
	nav > ul > li > span a:hover,
	nav > ul > li > span a.actv {
		color: #0759A3;
	}
	nav > ul > li .sub_nav {
		display: none;
		margin: 0 0 15px;
	}
	nav > ul > li .sub_nav > li > a {
		color: #999;
		line-height: 2;
		font-size: 14px;
	}



/* TOP */
  /*KV*/
  .kv_cont .kv_slider .slick-slide.products > img {
    object-position: 23% center;
}
.kv_cont .kv_slider .slick-slide.tech > img {
    object-position: 68% center;
}
  .kv_cont .kv_slider .kv_item .title {
	  text-align: center;
	  font-size: 28px;
	  margin: 0 0 30px;
  }
  .kv_cont .kv_slider .kv_item .title_en {
	  text-align: center;
	  font-size: 26px;
	  margin: 0 0 30px;
  }
  .kv_cont .kv_slider .slick-dots {
	  bottom: 145px;
  }
  .kv_cont .kv_slider .slick-dots li button:before {
	  font-size: 14px;
  }

  /*プログレスバー*/
  .kv_cont .kv_slider .slick-slide.slick-current::before {
	  bottom: 105px;
  }
  
  .kv_cont .notice_cont {
	  display: flex;
	  align-items: center;
	  justify-content: left;
	  position: absolute;
	  height: 105px;
	  padding: 0;
  }
  .kv_cont .notice_cont dl {
	  display: block;
	  width: 100%;
  }
  .kv_cont .notice_cont dl dt {
	margin: 0 0 5px;
  }
  .kv_cont .notice_cont dl dd {
	display: block;
  }
  
  .top_columns {
	  display: block;
	  padding: 130px 0 115px;
  }
  .top_columns .sec_news {
	  max-width: none;
	  width: 100%;
	  margin: 0 0 125px;
  }
  .top_columns .sec_news h2 {
	  font-size: 32px;
	  padding: 0 0 15px;
  }
  .top_columns .sec_news .news {
	  margin: 0 0 5px;
  }
  .top_columns .sec_news .news .list-top_each {
	  position: relative;
	  padding: 15px 5%;
  }
  .top_columns .sec_news .news .list-top_each .date {
	  position: absolute;
	  top: 15px;
	  right: 5%;
  }
  .top_columns .sec_news .news .list-top_each .news_ico1 {
	  margin: 0 0 5px;
  } 
  .top_columns .c_navlist ul {
	margin: 0;
	padding: 0;
}
  .top_columns .c_navlist ul li a {
	font-size: 14px;
  }
  
  
  .top_columns .sec_company {
	  width: 100%;
	  max-width: none;
	  padding-left: 0;
  }
  .top_columns .sec_company h2 {
	  margin: 0 0 15px;
  }

  .middle_link {
	  padding: 130px 0;
	  background: url(../image/top/middle_bg.png) no-repeat center center / cover;
  }
  .middle_link .img_link {
	  display: block;
  }
  .middle_link .img_link li {
	  width: 100%;
	  height: 200px;
	  margin: 0 0 28px;
  }
  .middle_link .img_link li:last-of-type {
	margin-bottom: 0;
  }
  .middle_link .img_link li a {
	  padding: 5%;
  }
  .middle_link .img_link li a .more_btn {
	  position: absolute;
	  left: 5%;
	  bottom: 10%;
  }

  /* bottom_link */
  .bottom_link {
	  padding: 120px 0 100px;
  }
  .bottom_link .img_link_s {
	  display: block;
  }
  .bottom_link .img_link_s > li {
	  width: 100%;
	  margin-bottom: 35px;
  }
  .bottom_link .img_link_s > li:not(:nth-of-type(3n)) {
	  margin-right: 0;
  }
  .bottom_link .img_link_s > li .top_figure {
	  height: 200px;
	  padding: 8%;
  }
  .bottom_link .img_link_s > li .top_figure h2 {
	line-height: 1.2;
  }
  
  
  /*footer*/
  footer {
	  background: rgba(0, 0, 0, 0.7);
  }
  footer * {
	  box-sizing: border-box;
  }
  footer .nav_cont {
	  padding: 0;
  }
  footer .footer_nav {
	padding-bottom: 45px;
  }
  
  footer .sublink_cont {
	  background: #E0E0E0;
	  padding: 25px 0;
  }
  footer .sublink_cont ul {
	margin: 0;
	padding: 0;
	text-align: center;
  }
  footer .sublink_cont ul li {
	  display: inline-block;
	  color: #5E5E5E;
	  line-height: 1.3;
  }
  footer .sublink_cont ul li:not(:last-of-type) {
	  border-right: 1px #5E5E5E solid;
	  margin-right: 1em;
	  padding-right: 1em;
  }
  
  footer .copyright_cont {
	  position: relative;
	  background: #fff;
	  height: 50px;
  }
  footer .copyright_cont .logo {
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  left: 3%;
	  width: 39px;
	  margin: auto;
	  padding: 0;
  }
  footer .copyright_cont .copyright {
	text-align: right;
	  clear: both;
	  font-size: 12px;
	  color: #8A8A8A;
	  width: 100%;
	  margin: 0 auto;
	  padding: 15px 3% 0 0;
	  background: none;
	  text-align: right;
  }
  .pagetop {
	  position: fixed;
	  right: 0;
	  bottom: 0;
	  width: 42px;
	  height: 42px;
	  z-index: 100;
	  opacity: 0;
	  visibility: hidden;
	  transition: 0.5s;
	  cursor: pointer;
  }
  .pagetop.fadein {
	  visibility: visible;
	  opacity: 1;
  }






}