@charset "UTF-8";
/* CSS Document */
html {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
html.wf-active,
html.loading-delay {
	visibility: visible;
	opacity: 1;
}

* {
    word-break: break-all;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 18px;
	color: #fff;
	line-height: 1.6;
	letter-spacing: 0.02em;
	background-color: #1A264A;
}
#wrapper {
    overflow: hidden;
}
a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a:hover {
	color: #999;
}
.inner {
	max-width: 1560px;
	margin-right: auto;
	margin-left: auto;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
.ns {
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

/*header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	width: 100%;
	background-position: top center;
	background-color: rgba(0,0,0,0.95);
}
header .h_inner {
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
  align-items: center;
  height: 80px;
	position: relative;
}
header .h_inner .left {
  width: 200px;
}
header .h_inner .left .logo a {
	display: block;
}
header .h_inner .left .logo a:hover {
	opacity: 0.7;
}
header .h_inner .right {
	width: calc(100% - 200px);
}
header .h_inner .right .global-nav .global-nav_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 2px;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item {
	position: relative;
	overflow: hidden;
	margin: 0 26px;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
	font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 1px;
	background-color: #fff;
	transition: .3s;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:hover:after {
	left: 0;
}
.m_txt02 {
    display: none;
}

/* footer */
footer {
  text-align: center;
	padding: 0 0 80px;
}
footer .pagetop {
  display: inline-block;
  font-size: 30px;
  padding: 0 16px 16px;
  border-bottom: 2px solid #fff;
}
.copy {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
  padding-top: 80px;
}


@media screen and (max-width: 1000px) {
body {
	font-size: 15px;
}

	.inner {
		width: 100%;
		max-width: 100%;
	}

/* header */
	header .h_inner {
		width: 100%;
		height: 70px;
		padding: 0 16px;
	}
  header .h_inner .left {
    width: 150px;
  }
	.global-nav {
		position: fixed;
		right: -320px;
		top: 0;
		width: 300px;
		height: 100vh;
		padding-top: 40px;
		background-color: rgba(0, 0, 0, 0.95);
		transition: all .6s;
		z-index: 9999;
		overflow-y: auto;
	}
	header .h_inner .right .global-nav .global-nav_list {
		display: block;
		padding: 40px 0;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item {
		margin: 0 0;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
		padding: 16px 0 16px 40px;
		display: block;
		text-align: left;
		font-size: 1.6rem;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item:after {
		display: none;
	}

/* hamburgeメニュー */
	.hamburger {
		position: absolute;
		right: 16px;
		top: 18px;
		width: 32px;
		height: 30px;
		cursor: pointer;
		z-index: 9999;
	}
	.hamburger_line {
		position: absolute;
		left: 0;
		height: 2px;
		background-color: #fff;
		transition: all .6s;
	}
	.hamburger_line1 {
		top: 6px;
		width: 30px;
	}
	.hamburger_line2 {
		top: 14px;
		width: 30px;
	}
	.hamburger_line3 {
		top: 22px;
		width: 20px;
	}
	.nav-open .global-nav {
		right: 0;
	}
	.nav-open .hamburger_line1 {
		transform: rotate(45deg);
		top: 16px;
		width: 32px;
	}
	.nav-open .hamburger_line2 {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger_line3 {
		transform: rotate(-45deg);
		top: 16px;
		width: 32px;
	}
	.hamburger_line.nav-open {
		background-color: #000;
	}

/* footer */
  footer {
    padding: 0 0 40px;
  }
  footer .pagetop {
    font-size: 20px;
    padding: 0 10px 10px;
    border-bottom: 1px solid #fff;
  }
  .copy {
    font-size: 13px;
    padding-top: 60px;
  }
}
