@charset "utf-8";

/*----------common-------------*/

body {
	font-size:18px;
	color:#333333;
	line-height:1.6;
	font-family:"Noto Sans JP", serif;
	width:100%;
	height:100%;
	background:#fff;
	overflow-x:hidden;
}

@media screen and (max-width:1200px) {
	body {
		overflow-x:visible;
	}
}

img{
	margin: 0;
	padding: 0;
	vertical-align:bottom;
	width: 100%;
}	

a{
	transition: 0.4s ;
	text-decoration:none;
	color:#111111;
}

a:hover{
  opacity: 0.6;
}


.pc{
	display:block;
}

.sp{
	display:none;
}

.mb{
	margin-bottom:100px !important;
}

.btn_more{
	width:230px;
	margin:40px auto 0;
}

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

	.sp{
		display:block;
	}

	.mb{
		margin-bottom:8.0vw !important;
	}

	.btn_more{
		width:37.333%;
		margin:7% auto 0;
	}
}

/*--------------------------------------
loading
----------------------------------------*/
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
	background-color:#fff;
	top:0;
	z-index:99999;
}

.loader {
  opacity: 1;
  -webkit-transition: opacity 1s .5s;
  transition: opacity 1s .5s;
}

.is_loaded .loader {
  opacity: 0;
}

/*--------------------------------------
header
----------------------------------------*/

#header{
	width: 100%;
	min-width:1100px;
	height:70px;
	position: fixed;
	z-index:9000;
	background:rgba(255,255,255,0.8);
}

#header h1{
	width:180px;
	position: absolute;
	left:70px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}


#header #btn_contact{
	width:230px;
	position: absolute;
	right:70px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

#header	ul{
	width:340px;
	justify-content: space-between;
	align-items: start;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: absolute;
	right:360px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

#header	ul li{
	width:80px;
	height:70px;
	position:relative;
}

#header	ul li a{
	width:100%;
	height:70px;
	line-height:70px;
	font-size:18px;
	display:block;
	text-align:center;
}

#header ul li .sub_menu{
	position:absolute;
	z-index:9900;
	left:0;
	top:70px;
	width:100%;
	height:50px;
	background:rgba(45,87,163,0.9);
}

#header ul li .sub_menu ul{
	height:50px;
	justify-content: space-between;
	align-items: center;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: fixed; /*変更しました*/
	left:auto; /*変更しました*/
	right:0;
	top:95px; /*変更しました*/
	margin:auto;
}

#header ul li .sub_menu ul li{
	height:50px;
}

#header ul li .sub_menu ul li a{
	color:#fff;
	text-align:center;
	line-height:50px;
}

#header ul li:nth-child(1) .sub_menu ul{
	width:320px;
	right:240px; /*追加しました*/
}

#header ul li:nth-child(2) .sub_menu ul{
	width:280px;
	right:115px; /*追加しました*/
}

#header ul li:nth-child(3) .sub_menu ul{
	width:530px;
	right:-10px;  /*追加しました*/
}

#header ul li:nth-child(1) .sub_menu ul li:nth-child(1){
	width:180px;
}

#header ul li:nth-child(1) .sub_menu ul li:nth-child(2){
	width:120px;
}

#header ul li:nth-child(2) .sub_menu ul li:nth-child(1){
	width:130px;
}

#header ul li:nth-child(2) .sub_menu ul li:nth-child(2){
	width:130px;
}

#header ul li:nth-child(3) .sub_menu ul li:nth-child(1){
	width:130px;
}

#header ul li:nth-child(3) .sub_menu ul li:nth-child(2){
	width:110px;
}

#header ul li:nth-child(3) .sub_menu ul li:nth-child(3){
	width:90px;
}

#header ul li:nth-child(3) .sub_menu ul li:nth-child(4){
	width:140px;
}

#header ul li .sub_menu {
  opacity: 0;
  visibility: hidden;
}

#header ul li .sub_menu ul {
  transition: .0s;
	transition-delay: 0.00s;
}

#header ul li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
}

#header ul li:hover .sub_menu{
  transition: .4s ease-out;
}

.sub_menu ul li a:hover,
.sub_menu .more a:hover{
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
	#navi{
		width:8vw;
		display:block;
		z-index: 8000;
		position: absolute;
		right:0;
		top:0;
	}

	#navi img{
		position: absolute;
		left:0;
		top:0;
	}

	#navi img:nth-of-type(2) {
		opacity: 0;
	}

	.open #navi img:nth-of-type(1) {
		opacity: 0;
	}

	.open #navi img:nth-of-type(2) {
		opacity: 1.0;
	}

	#navi:hover{
		cursor:pointer;
	}

	#header{
		min-width:100%;
		height:8vw;
		position: fixed;
		z-index:9999;
		background:rgba(255,255,255,1.0);
	}

	#header ul{
		display:none;
	}

	#header h1{
		width:20%;
		position: absolute;
		top: 50%;
    left: 4%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	}

	#header #btn_contact{
		width:26.666%;
		position: absolute;
		top: 50%;
    right: 10vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	}

	#header .botan{
		width:70px;
		position: absolute;
		left:70px;
		top:80px;
	}

	#header .botan:hover{
		cursor:pointer;
	}
}


/*--------------------------------------
sidebar
----------------------------------------*/
@media print{
	#sidebar{
		display: none;
	}
}

#sidebar {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9500;
	background:#dddee0;
	right:-110%;
	transition: all 0.6s;
	overflow-y: auto;
}

#sidebar .botan{
	width:70px;
	position: absolute;
	right:20px;
	top:20px;
}

#sidebar .botan:hover{
	cursor:pointer;
}

#global-nav{
	width: 100%;
	height:100%;
	padding-top:0;

  justify-content: start;
  align-items: center;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.open #sidebar{
	right: 0;
}

#navi_block{
	width:730px;
	height:320px;
	margin:0 auto;
	position:relative;
}

.navi_about,
.navi_product,
.navi_contact{
	width:50%;
}

.navi_about{
	position:absolute;
	left:0;
	top:0;
}

.navi_product{
	position:absolute;
	right:0;
	top:0;
}

.navi_contact{
	position:relative;
	margin-top:24%;
}

.navi_about p,
.navi_product p,
.navi_contact p{
	width:100%;
	color:#004098;
	font-size:60px;
	font-weight:800;
}

#global-nav ul{
	width:100%;
  justify-content: start;
  align-items: start;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top:-1vw;
}

#global-nav ul li{
	width:100%;
	position:relative !important;
	left:auto !important;
}

#global-nav ul li a{
	color:#4f4f50;
	font-size:24px;
	padding:0 0 0 5%;
	display:block;
	width:100%;
	display:block;
	position: relative;
	box-sizing:border-box;
	font-weight:600;
}

#global-nav ul li a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin:auto;
	content: "";
	vertical-align: middle;
	left: 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid #4f4f50;
	border-right: 2px solid #4f4f50;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width: 767px) {
	#global-nav{
		width: 100%;
		height:calc(100% - 15vw);
		padding-top:15vw;
	  justify-content: start;
	  align-items: start;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#navi_block{
		width:45%;
		padding-bottom:10%;
		height:auto;
	}

	.navi_about,
	.navi_product,
	.navi_contact{
		width:100%;
		margin:0 auto;
		position:relative;
	}

	.navi_about p,
	.navi_product p,
	.navi_contact p{
		width:100%;
		color:#004098;
		font-size:9vw;
		font-weight:800;
	}

	#global-nav ul{
		width:100%;
	  justify-content: start;
	  align-items: start;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top:-1vw;
	}

	#global-nav ul li{
		width:100%;
		position:relative !important;
		left:auto !important;
	}

	#global-nav ul li a{
		color:#4f4f50;
		font-size:4.0vw;
		padding:0 0 0 5%;
		display:block;
		width:100%;
		display:block;
		position: relative;
		box-sizing:border-box;
		font-weight:600;
	}

	#global-nav ul li a::after{
		position: absolute;
		top: 0;
		bottom: 0;
		margin:auto;
		content: "";
		vertical-align: middle;
		left: 0;
		width: 1vw;
		height: 1vw;
		border-top: 2px solid #4f4f50;
		border-right: 2px solid #4f4f50;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

/*--------------------------------------
footer
----------------------------------------*/
#footer{
	width: 100%;
	min-width:1100px;
	height:280px;
	position: relative;
	background-color:#000a15;
}

#footer_inner{
	width:1100px;
	position: relative;
	margin:0 auto;
}

#footer_inner h1{
	width:160px;
	padding-top:40px;
}

#footer_inner p{
	font-size:16px;
	color:#fff;
	margin-top:20px;
}

#footer_inner ul{
	width:500px;
  justify-content: space-between;
  align-items: start;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:absolute;
	right:20px;
	top:50px;
}

#footer_inner ul li{
	width:160px;
	position:relative;
	color:#fff;
}

#footer_inner ul li:nth-child(2){
	width:140px;
}

#footer_inner ul li h2{
	font-weight:600;
}

#footer_inner ul li ul{
	width:100%;
  justify-content: start;
  align-items: start;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
  left: 0;
  top: 0;
}

#footer_inner ul li ul li{
	width: 100%;
  position: relative;
  display: block;
  left: 0;
  top: 0;
}

#footer_inner ul li ul li a{
	display:block;
	color:#fff;
	font-size:16px;
	position:relative;
	padding-left:12px;
}

#footer_inner ul li ul li a::after{
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	content: "";
	width: 4px;
	height: 4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#copyright{
	color:#fff;
	font-size:12px;
	position:relative;
	text-align:center;
	margin-top:80px;
}

#gototop{
	width:60px;
	height:60px;
	position: fixed;
	z-index: 8000;
	right:15px;
	bottom:50px;
}

#gototop p{
	width:60px;
	height:60px;
	position: absolute;
	right:-200px;
	top:0;
	-webkit-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}

#gototop.abs{
  position: absolute;
	bottom:300px;
}

#gototop.open p{
	right:15px;
}

@media screen and (max-width: 767px) {
	#footer{
		min-width:100%;
		height:72vw;
	}

	#footer_inner{
		width:90%;
		position: relative;
		margin:0 auto;
	}

	#footer_inner h1{
		width:30%;
		padding-top:7%;
		margin:0 auto;
	}

	#footer_inner p{
		font-size:2.4vw;
		text-align:center;
		margin:3% 0 10%;
	}

	#footer_inner ul{
		width:100%;
		margin:0 auto 0;
		position:relative;
		right:0;
		top:0;
	}

	#footer_inner ul li{
		width:30%;
	}

	#footer_inner ul li:nth-child(2){
		width:30%;
	}

	#footer_inner ul li h2{
		font-size:3.0vw;
	}

	#footer_inner ul li ul li a{
		display:block;
		color:#fff;
		font-size:2.8vw;
		position:relative;
		padding-left:2vw;
	}

	#footer_inner li a::after{
		position: absolute;
		top: calc(50% - 0.3vw);
		left: 0;
		content: "";
		width: 0.5vw;
		height: 0.5vw;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#copyright{
		font-size:1.8vw;
		position:relative;
		text-align:center;
		padding:8% 0 4%;
		margin:0;
	}

	#gototop{
		width:10vw;
		height:10vw;
		position: fixed;
		z-index: 8000;
		right:1vw;
		bottom:5vw;
	}

	#gototop p{
		width:10vw;
		height:10vw;
		position: absolute;
		right:-20vw;
		top:0;
		-webkit-transition: 0.35s ease-in-out;
		transition: 0.35s ease-in-out;
	}

	#gototop.abs{
	  position: absolute;
		bottom:74vw;
	}

	#gototop.open p{
		right:1vw;
	}

}

/*--------------------------------------
container
----------------------------------------*/
#container{
	width: 100%;
	min-width:1100px;
	position: relative;
	padding:400px 0 90px;
	background-color:#f7f7f7;
}

#header_img{
	width: 100%;
	min-width:1100px;
	height:300px;
	background: url(../images/contents/header_img.jpg) no-repeat center top;
	background-size:cover;
	position:absolute;
	left:0;
	top:70px;
	z-index:0;
}

#header_img h2{
	color:#fff;
	font-weight:800;
	text-align:center;
	width:100%;
	position: absolute;
	right: 0;;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	text-shadow: 0 0 10px #000;
}

#header_img h2 p{
	font-size:54px;
	line-height:50px;
	letter-spacing:2px;
}

#header_img h2 span{
	display:block;
	font-size:34px;
	letter-spacing:1px;
}

#container_inner{
	width:1100px;
	position: relative;
	margin:0 auto;
	display:block;
}

#container_inner a{
	color:#004098;
}

#container_inner h3{
	font-size:30px;
	color:#004098;
	font-weight:600;
	background-color:#e6e6e6;
	border-top:3px solid #004098;
	padding:5px 20px;
	margin-top:30px;
}

#container_inner p.title{
	font-size:24px;
	font-weight:600;
	margin-bottom:20px;
	padding-top:10px;
	line-height:1.4;
}

#container_inner p.title span{
	color:#333333;
	font-size:20px;
	font-weight:400;
}

#container_inner p{
	margin-top:10px;
	font-size:20px;
	line-height:1.8;
}

#container_inner h4{
	font-size:26px;
	font-weight:600;
	background-color:#e6e6e6;
	border-bottom:3px dotted #004098;
	padding:5px 20px;
	margin-top:60px;
}


@media screen and (max-width: 767px) {
	#container{
		width: 100%;
		min-width:100%;
		position: relative;
		padding:0 0 10%;
		background-color:#f7f7f7;
	}

	#header_img{
		width: 100%;
		min-width:100%;
		height:40vw;
		background: url(../images/contents/header_img.jpg) no-repeat center top;
		background-size:cover;
		position:absolute;
		left:0;
		top:8vw;
		z-index:0;
	}

	#header_img h2{
		color:#fff;
		font-weight:800;
		text-align:center;
		width:100%;
		position: absolute;
		right:0;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}

	#header_img h2 p{
		font-size:7.6vw;
		line-height:7.6vw;
	}

	#header_img h2 span{
		font-size:4.8vw;
	}

	#container_inner{
		width:90%;
		position: relative;
		margin:0 auto;
		display:block;
		padding:50vw 0 10vw;
	}

	#container_inner h3{
		font-size:4.4vw;
		padding:1% 4%;
		margin-top:8%;
	}

	#container_inner p{
		margin-top:3%;
		font-size:3.2vw;
	}

	#container_inner p.title{
		font-size:3.4vw;
		margin-bottom:2%;
		padding-top:1%;
	}

	#container_inner p.title span{
		font-size:3.2vw;
	}

	#container_inner h4{
		font-size:4.0vw;
		padding:1% 4%;
		margin-top:8%;
	}
}

