@charset "utf-8";



/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
article, aside, footer, header, iframe, img, main, nav, section, video {
	display: block;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	letter-spacing: 0.05em;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.opacity {
	transition: 0.25s opacity ease;
}
a.opacity:hover {
	opacity: 0.5;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #ff0000;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=button],
input[type=submit],
button,
textarea,
select {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 1rem;
	outline: none;
	border: none;
	margin: 0px;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
textarea,
select {
	color: #000000;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
select {
	height: 50px;
	line-height: 50px;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel] {
	padding: 0px 20px;
}
input[type=button],
input[type=submit],
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 50px;
	text-align: center;
	font-weight: 500;
	color: #002e7d;
	border: 1px solid #ffffff;
	cursor: pointer;
	padding: 0px 20px;
	background-color: #ffffff;
	transition: 0.25s color ease, 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	color: #ffffff;
	background-color: #002e7d;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	vertical-align: middle;
	width: 20px;
	margin-right: 5px;
	transform: translate(-9999px, -4px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	position: absolute;
	left: 9999px;
	top: 0px;
	cursor: pointer;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	width: 20px;
	height: 20px;
	background-color: #ffffff;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 10px;
	height: 10px;
	background-color: #002e7d;
}
input[type=radio]::after {
	transform: translate(5px, 5px);
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 8px;
	height: 13px;
	border-right: 3px solid #002e7d;
	border-bottom: 3px solid #002e7d;
}
input[type=checkbox]::after {
	transform: translate(6px, 1px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@supports (-ms-ime-align:auto) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@media all and (-ms-high-contrast:none) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
label {
	vertical-align: middle;
}
label.alternate {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
	transform: translate(1px, 0px);
}
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	display: block;
	position: absolute;
	content: "";
}
label.alternate input[type=radio] + span::before {
	transform: translate(5px, 5px);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(6px, 1px) rotate(45deg);
}
textarea {
	padding: 10px 20px;
}
select {
	padding: 0px 40px 0px 20px;
	background: transparent url(../images/arrow-select.svg) no-repeat right 10px center;
	background-size: auto 10px;
}
select::-ms-expand {
	display: none;
}
::-webkit-input-placeholder {
	color: #cccccc;
}
:-ms-input-placeholder {
	color: #cccccc;
}
::placeholder {
	color: #cccccc;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
font
-------------------------------------------------------------------------------- */

@font-face {
  font-family: "Proxima Nova";
	font-weight: 700;
  src: url("../fonts/Proxima Nova Bold.woff2") format("woff2"), url("../fonts/Proxima Nova Bold.woff") format("woff");
}
@font-face {
  font-family: "Proxima Nova Extra Condensed";
	font-weight: 700;
  src: url("../fonts/Proxima Nova Extra Condensed Bold.woff2") format("woff2"), url("../fonts/Proxima Nova Extra Condensed Bold.woff") format("woff");
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #cccccc;
	margin: 20px 0px;
}
mark {
	padding: 0px 5px;
	background-color: #f5f5f5;
}
div.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
}
div.video-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
iframe.wp-embedded-content {
	display: block;
	width: 100%;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50vh;
	pointer-events: none;
}
p.button-default {
	display: flex;
	flex-wrap: wrap;
	font-weight: 500;
}
p.button-default a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 240px;
	height: 50px;
	position: relative;
	border: 1px solid #ffffff;
	color: #002e7d;
	padding: 0px 40px 0px 20px;
	background-color: #ffffff;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-default a:hover {
	color: #ffffff;
	background-color: #002e7d;
}
p.button-reverse a {
	color: #ffffff;
	border-color: #002e7d;
	background-color: #002e7d;
}
p.button-reverse a:hover {
	color: #002e7d;
	background-color: #ffffff;
}
p.button-default a::before {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 15px;
	top: calc(50% - 5px);
	border-right: 1px solid #002e7d;
	border-top: 1px solid #002e7d;
	content: "";
	transition: 0.25s border-color ease;
	transform: rotate(45deg);
}
p.button-default a:hover::before {
	border-color: #ffffff;
}
p.button-reverse a::before {
	border-color: #ffffff;
}
p.button-reverse a:hover::before {
	border-color: #002e7d;
}
div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div.button-wrapper p.button-default:not(:last-child) {
	margin-right: 40px;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
	height: auto;
}
*.scroll.fade {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
*.scroll.fade.active {
	opacity: 1;
}
*.scroll.fade-slide {
	transition-duration: 1s;
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
	opacity: 0;
}
*.scroll.fade-slide-left {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide.active {
	opacity: 1;
	transform: translate(0px, 0px);
}
*.fade-text > * {
	transition: 1s opacity ease-in-out;
	opacity: 0;
}
*.fade-text.active > * {
	opacity: 1;
}
*.delay > *:nth-child(1) {
	transition-delay: calc(0.125s * 0);
}
*.delay > *:nth-child(2) {
	transition-delay: calc(0.125s * 1);
}
*.delay > *:nth-child(3) {
	transition-delay: calc(0.125s * 2);
}
*.delay > *:nth-child(4) {
	transition-delay: calc(0.125s * 3);
}
*.delay > *:nth-child(5) {
	transition-delay: calc(0.125s * 4);
}
*.delay > *:nth-child(6) {
	transition-delay: calc(0.125s * 5);
}
*.delay > *:nth-child(7) {
	transition-delay: calc(0.125s * 6);
}
*.delay > *:nth-child(8) {
	transition-delay: calc(0.125s * 7);
}
*.delay > *:nth-child(9) {
	transition-delay: calc(0.125s * 8);
}
*.delay > *:nth-child(10) {
	transition-delay: calc(0.125s * 9);
}
*.delay > *:nth-child(11) {
	transition-delay: calc(0.125s * 10);
}
*.delay > *:nth-child(12) {
	transition-delay: calc(0.125s * 11);
}
*.delay > *:nth-child(13) {
	transition-delay: calc(0.125s * 12);
}
*.delay > *:nth-child(14) {
	transition-delay: calc(0.125s * 13);
}
*.delay > *:nth-child(15) {
	transition-delay: calc(0.125s * 14);
}
*.delay > *:nth-child(16) {
	transition-delay: calc(0.125s * 15);
}
*.delay > *:nth-child(17) {
	transition-delay: calc(0.125s * 16);
}
*.delay > *:nth-child(18) {
	transition-delay: calc(0.125s * 17);
}
*.delay > *:nth-child(19) {
	transition-delay: calc(0.125s * 18);
}
*.delay > *:nth-child(20) {
	transition-delay: calc(0.125s * 19);
}

/* home
-------------------------------------------------------------------------------- */

body.home div#page {
	padding-top: 0px;
}



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

header#header {
	position: fixed;
	width: 100%;
	height: 80px;
	left: 0px;
	top: 0px;
	z-index: 20;
	color: #ffffff;
	background-color: #002e7d;
	transition: 0.25s background-color ease;
}
body.admin-bar header#header {
	top: 32px;
}
header#header *#logo {
	position: absolute;
	left: 20px;
	top: 20px;
}
header#header *#logo img {
	width: auto;
	height: 28px;
}
header#header *#logo span {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	letter-spacing: 0.15em;
	padding-left: 35px;
}
header#header nav#navi {
	position: absolute;
	right: 20px;
	top: 20px;
}
header#header nav#navi ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi ul li {
	text-align: center;
	text-indent: 0.15em;
	font-family: "Roboto", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5rem;
	letter-spacing: 0.15em;
}
header#header nav#navi ul li:not(:last-child) {
	margin-right: 30px;
}
header#header nav#navi ul li span {
	display: block;
}
header#header nav#navi ul li span.sub {
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 0.875rem;
}

/* home
-------------------------------------------------------------------------------- */

body.home header#header {
	background-color: transparent;
}
body.home div.scroll header#header {
	background-color: #002e7d;
}



/* --------------------------------------------------------------------------------
cover, title
-------------------------------------------------------------------------------- */

div#cover,
div#title {
	background-color: #002e7d;
}
div#cover {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	text-align: center;
	color: #ffffff;
}
body.admin-bar div#cover {
	top: 32px;
}
div#cover.main {
	visibility: hidden;
}
div#cover p.video,
div#cover div.text,
div#cover p.button-scroll {
	opacity: 0;
	transition: 1s opacity ease;
}
div.active div#cover p.video,
div.active div#cover div.text,
div.active div#cover p.button-scroll {
	opacity: 1;
}
div#cover p.video {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover p.video::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background: url(../images/background-stripe.png) repeat left top;
	background-size: auto 5px;
	content: "";
	opacity: 0.25;
}
div#cover p.video video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.text,
div#cover p.button-scroll {
	z-index: 5;
}
div#cover div.text {
	position: relative;
	transition-delay: 0.25s;
}
div#cover div.text h1 {
	margin-bottom: 60px;
}
div#cover div.text h1 img {
	width: auto;
	height: 270px;
}
div#cover p.button-scroll {
	position: absolute;
	width: 60px;
	left: calc(50% - 30px);
	bottom: 20px;
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	transition-delay: 0.375s;
}
div#cover p.button-scroll a {
	display: block;
	position: relative;
	height: 35px;
}
div#cover p.button-scroll a::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	bottom: 0px;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s transform ease;
	transform: rotate(45deg);
}
div#cover p.button-scroll a:hover::before {
	transform: translateY(5px) rotate(45deg);
}
div#space-cover {
	height: 100vh;
}
div#title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 240px;
}
div#title p.image,
div#title div.text {
	opacity: 0;
	transition: 1s opacity ease;
}
div.active div#title p.image,
div.active div#title div.text {
	opacity: 1;
}
div#title p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
}
div#title p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	filter: brightness(0.5);
}
body.contact div#title p.image img {
	object-fit: contain;
}
div#title div.text {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
	padding-top: 10px;
	transition-delay: 0.25s;
}
div#title div.text h1 {
	text-indent: 0.15em;
	font-family: "Roboto", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	font-weight: 500;
	letter-spacing: 0.15em;
	margin-bottom: 10px;
}
div#title div.text p.sub {
	text-indent: 0.15em;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75rem;
	letter-spacing: 0.15em;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 700px;
	z-index: 1;
	margin: auto;
	padding: 120px 0px;
}
main {
	color: #ffffff;
	background: #002e7d url(../images/background-general.png) repeat-y center top;
	background-size: 100% auto;
}
main::before {
	position: absolute;
	right: -20px;
	top: -20px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 7rem;
	font-weight: 700;
	line-height: 7rem;
	color: #ffffff;
	letter-spacing: 0em;
	opacity: 0.125;
	transform-origin: right bottom;
	transform: rotate(-90deg);
}
main div#trigger-navi-sub {
	position: absolute;
	top: -80px;
}
body.admin-bar main div#trigger-navi-sub {
	top: -112px;
}
main nav#navi-sub {
	color: #ffffff;
	background-color: #000000;
	opacity: 0;
	transition: 1s opacity 0.375s ease;
}
div.active main nav#navi-sub {
	opacity: 1;
}
div.navi-sub nav#navi-sub {
	position: fixed;
	width: 100%;
	left: 0px;
	top: 80px;
	z-index: 10;
}
body.admin-bar div.navi-sub nav#navi-sub {
	top: 112px;
}
main nav#navi-sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
}
main nav#navi-sub ul li:not(:last-child) {
	position: relative;
	margin-right: 40px;
}
main nav#navi-sub ul li:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 20px;
	right: -20px;
	top: calc(50% - 10px);
	border-right: 1px solid #808080;
	content: "";
}
div.navi-sub div#space-navi-sub {
	height: 60px;
}
main h2.headline {
	display: flex;
	flex-wrap: wrap;
	height: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 30px;
	background-color: #40629e;
}
main h2.headline span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #002e7d;
	background-color: #ffffff;
}

/* home
-------------------------------------------------------------------------------- */

body.home main section div.inner-section {
	width: auto;
}
main section#home-concept div.inner-section,
main section#home-recruit div.inner-section {
	padding: 20px;
}
main section#home-concept div.image-text,
main section#home-recruit div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	background-color: #ffffff;
}
main section#home-concept div.image-text p.image,
main section#home-recruit div.image-text p.image {
	width: calc(100% - 420px);
	height: 450px;
}
main section#home-concept div.image-text p.image img,
main section#home-recruit div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-concept div.image-text div.text,
main section#home-recruit div.image-text div.text {
	position: relative;
	width: 420px;
	overflow: hidden;
	color: #000000;
	padding: 40px 140px 40px 40px;
}
main section#home-concept div.image-text div.text::before,
main section#home-recruit div.image-text div.text::before,
main section#home-project div.image-text div.text::before {
	position: absolute;
	right: -20px;
	top: -120px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 7rem;
	font-weight: 700;
	line-height: 7rem;
	color: #002e7d;
	letter-spacing: 0em;
	opacity: 0.05;
	transform-origin: right bottom;
	transform: rotate(-90deg);
}
main section#home-concept div.image-text div.text::before {
	content: "CONCEPT";
}
main section#home-concept div.image-text div.text h2,
main section#home-concept div.image-text div.text p.description,
main section#home-recruit div.image-text div.text h2,
main section#home-recruit div.image-text div.text p.description,
main section#home-project div.image-text div.text h2,
main section#home-project div.image-text div.text p.description {
	margin-bottom: 20px;
}
main section#home-concept div.image-text div.text h2,
main section#home-recruit div.image-text div.text h2,
main section#home-project div.image-text div.text h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	border-bottom: 1px solid #000000;
	padding-bottom: 10px;
}
main section#home-recruit div.image-text div.text::before {
	content: "RECRUIT";
}
main section#home-project div.inner-section {
	padding: 0px 0px 160px 0px;
}
main section#home-project div.image-text {
	position: relative;
	height: 575px;
	z-index: 1;
}
main section#home-project div.image-text p.image {
	position: absolute;
	width: 720px;
	left: calc(50% - 640px);
	top: 0px;
}
main section#home-project div.image-text div.text {
	position: absolute;
	width: 240px;
	left: calc(50% + 120px);
	top: 80px;
}
main section#home-project div.image-text div.text::before {
	right: -160px;
	top: -200px;
	color: #ffffff;
	content: "PROJECT";
}
main section#home-project div.image-text div.text h2 {
	border-color: #ffffff;
}
main section#home-project div.image-text div.text p.button-default:not(:last-child) {
	margin-bottom: 10px;
}
main section#home-project div.image {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	width: 960px;
	left: calc(50% - 280px);
	bottom: 60px;
}
main section#home-project div.image p.row {
	width: 160px;
}
main section#home-project div.image p.row img {
	width: 100%;
	height: auto;
}
main section#access div.inner-section {
	padding: 0px;
}
main section#access div.image-text {
	position: relative;
}
main section#access div.image-text p.image {
	height: 780px;
}
main section#access div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#access div.image-text div.text {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 40px;
	z-index: 1;
	text-align: center;
}
main section#access div.image-text div.text h2 {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 5rem;
	font-weight: 700;
	line-height: 4.5rem;
	letter-spacing: 0em;
}
main section#access div.image-text div.text p.sub {
	text-indent: 0.15em;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}
main section#access div.image-text div.text p.address {
	font-weight: 500;
	margin-bottom: 20px;
}
main section#access div.image-text div.text p.button-default {
	justify-content: center;
}
main section#access div.map {
	height: 400px;
}
main section#access div.map iframe {
	width: 100%;
	height: 100%;
}

/* concept
-------------------------------------------------------------------------------- */

body.concept main::before {
	content: "CONCEPT";
}
body.concept main section:not(:last-child) div.inner-section {
	padding-bottom: 0px
}
body.concept main section table {
	width: 100%;
}
body.concept main section table th,
body.concept main section table td {
	text-align: left;
	vertical-align: top;
}
body.concept main section table tr:not(:last-child) th,
body.concept main section table tr:not(:last-child) td {
	padding-bottom: 10px;
}
body.concept main section table.common th {
	width: 150px;
}
body.concept main section table.common th span {
	display: inline-block;
}
body.concept main section table.common th span:nth-child(1) {
	width: 75px;
}
body.concept main section table.common th span:nth-child(2) {
	text-align: right;
	width: 45px;
}
body.concept main section table.common td ruby rt {
	font-size: 0.5rem;
}
main section#concept div.inner-section {
	padding-bottom: 120px;
}
main section#concept div.inner-section::before {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #7f96be;
	content: "";
}
main section#concept h2,
main section#greeting h3 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 20px;
}
main section#greeting p.description {
	margin-bottom: 30px;
}
main section#license table th {
	width: 220px;
}
main section#facility div.block {
	position: relative;
	padding-left: 180px;
}
main section#facility div.block::before {
	position: absolute;
	width: 0px;
	height: 100%;
	left: 160px;
	top: 0px;
	border-right: 1px solid #7f96be;
	content: "";
}
main section#facility div.block:not(:last-child) div.list div.row:last-child {
	padding-bottom: 60px;
}
main section#facility div.block h3 {
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 1.125rem;
	font-weight: 500;
}
main section#facility div.block div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#facility div.block div.list div.row ul {
	margin-bottom: 10px;
}
main section#facility div.block div.list div.row ul li {
	position: relative;
	padding-left: 20px;
}
main section#facility div.block div.list div.row ul li::before {
	position: absolute;
	width: 35px;
	height: 0px;
	left: -20px;
	top: 15px;
	border-bottom: 1px solid #7f96be;
	content: "";
}
main section#facility div.block div.list div.row p.image {
	overflow: visible;
}
main section#facility div.block:nth-child(1) div.list div.row:nth-child(1) p.image {
	width: 590px;
	transform: translateX(-100px);
}
main section#facility div.block:nth-child(1) div.list div.row:nth-child(2) p.image {
	width: 707px;
	transform: translateX(-160px);
}
main section#facility div.block:nth-child(1) div.list div.row:nth-child(3) p.image {
	width: 315px;
}
main section#facility div.block:nth-child(1) div.list div.row:nth-child(4) p.image {
	width: 305px;
}
main section#facility div.block:nth-child(1) div.list div.row:nth-child(5) p.image {
	width: 248px;
}
main section#facility div.block:nth-child(1) div.list div.row:nth-child(6) p.image {
	width: 248px;
}
main section#facility div.block:nth-child(2) div.list div.row:nth-child(1) p.image {
	width: 404px;
}
main section#facility div.block:nth-child(2) div.list div.row:nth-child(2) p.image {
	width: 412px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(1) p.image {
	width: 470px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(2) p.image {
	width: 460px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(3) p.image {
	width: 380px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(4) p.image {
	width: 486px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(5) p.image {
	width: 348px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(6) p.image {
	width: 342px;
}
main section#facility div.block:nth-child(3) div.list div.row:nth-child(7) p.image {
	width: 250px;
}
main section#facility div.block:nth-child(4) div.list div.row:nth-child(1) p.image {
	width: 722px;
}
main section#facility div.block:nth-child(4) div.list div.row:nth-child(2) p.image {
	width: 648px;
}
main section#facility div.block:nth-child(5) div.list div.row:nth-child(1) p.image {
	width: 358px;
}
main section#facility div.block:nth-child(5) div.list div.row:nth-child(2) p.image {
	width: 370px;
}
main section#facility div.block:nth-child(6) div.list div.row:nth-child(1) p.image {
	width: 440px;
}
main section#facility div.block:nth-child(7) div.list div.row:nth-child(1) p.image {
	width: 480px;
}
main section#facility div.block:nth-child(8) div.list div.row:nth-child(1) p.image {
	width: 187px;
}
main section#facility div.block div.list div.row p.image img {
	filter: drop-shadow(2.5px 2.5px 7.5px rgba(0, 0, 0, 0.375));
}

/* project
-------------------------------------------------------------------------------- */

body.project main::before {
	content: "PROJECT";
}
body.project main section:not(:last-child) div.inner-section {
	padding-bottom: 0px
}
body.project main section h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
body.project main section p.description {
	margin-bottom: 40px;
}
body.project main section div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: -10px;
}
body.project main section div.image p.row {
	width: 100%;
	margin-bottom: 10px;
}
body.project main section div.image p.row-half {
	width: calc(50% - 5px);
}

/* recruit
-------------------------------------------------------------------------------- */

body.recruit main::before {
	content: "RECRUIT";
}
body.recruit main section:not(:last-child) div.inner-section {
	padding-bottom: 0px
}
main section#message div.inner-section {
	padding-bottom: 120px;
}
main section#message div.inner-section::before {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #7f96be;
	content: "";
}
main section#message h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 20px;
}
main section#message div.description,
main section#message div.description p.row:not(:last-child) {
	margin-bottom: 30px;
}
main section#message div.description p.row:last-child {
	padding-right: 260px;
}
main section#message p.image {
	position: absolute;
	width: 220px;
	right: 0px;
	bottom: 120px;
}
main section#guideline header,
main section#guideline div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#guideline div.block div.list div.row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #7f96be;
	padding: 20px 0px;
}
main section#guideline div.block div.list div.row:first-child {
	padding-top: 0px;
}
main section#guideline div.block div.list div.row h3 {
	width: 100px;
	font-size: 1rem;
}
main section#guideline div.block div.list div.row div.body {
	width: calc(100% - 100px);
	text-align: left;
}

/* contact
-------------------------------------------------------------------------------- */

body.contact main::before {
	content: "CONTACT";
}
main section#contact div.content {
	width: 700px;
}
main section#contact div.header {
	text-align: center;
	margin-bottom: 60px;
}
main section#contact div.mw_wp_form_preview div.header {
	display: none;
}
main section#contact div.header p.description {
	margin-bottom: 40px;
}
main section#contact div.form div.component {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 40px;
}
main section#contact div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #7f96be;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section#contact div.mw_wp_form_preview div.form div.component-first {
	border-top: 1px solid #7f96be;
}
main section#contact div.mw_wp_form_preview div.form div.component-last {
	margin-bottom: 60px;
}
main section#contact div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 240px;
	height: 50px;
}
main section#contact div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section#contact div.form div.component p.label span.require {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 20px;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	border: 1px solid #ffffff;
	margin-left: 10px;
	transform: translateY(1px);
}
main section#contact div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section#contact div.form div.component div.body {
	width: calc(100% - 240px);
}
main section#contact div.form div.component div.body input[type=text],
main section#contact div.form div.component div.body input[type=email],
main section#contact div.form div.component div.body textarea {
	width: 100%;
}
main section#contact div.form div.component div.body span.error,
main section#contact div.form div.agreement span.error {
	position: absolute;
	bottom: -25px;
	font-size: 0.875rem;
	line-height: 25px;
	color: #ffffff;
}
main section#contact div.form div.component div.body span.error {
	right: 0px;
}
main section#contact div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(100% - 240px);
	position: relative;
	margin: 0px 0px 40px auto;
}
main section#contact div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section#contact div.form div.agreement span.horizontal-item {
	margin-right: 5px;
}
main section#contact div.form div.agreement span.horizontal-item > label {
	display: block;
}
main section#contact div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section#contact div.form div.agreement span.error {
	left: 30px;
}
main section#contact div.form div.action {
	display: flex;
	flex-wrap: wrap;
	padding-left: 240px;
}
main section#contact div.mw_wp_form_preview div.form div.action {
	justify-content: center;
	padding-left: 0px;
}
main section#contact div.form div.action input[name=submitBack] {
	margin-right: 20px;
}
main section#contact div.mw_wp_form_complete p.description {
	text-align: center;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

body.privacy-policy main::before {
	content: "PRIVACY POLICY";
}
main section#privacy-policy div.content {
	width: 700px;
}
main section#privacy-policy p.description,
main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#privacy-policy div.list div.row h2 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 5px;
}
main section#privacy-policy div.list div.row ul li {
	position: relative;
	padding-left: 20px;
}
main section#privacy-policy div.list div.row ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}




/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	text-align: center;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s color ease, 0.25s opacity ease;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
footer#footer p#button-page-top.footer {
	position: absolute;
	top: -75px;
	bottom: auto;
}
footer#footer p#button-page-top a {
	display: block;
	position: relative;
	width: 21px;
	height: 55px;
}
footer#footer p#button-page-top a::before,
footer#footer p#button-page-top a::after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
footer#footer p#button-page-top a::before {
	background-image: url(../images/button-page-top.svg);
}
footer#footer p#button-page-top a::after {
	background-image: url(../images/button-page-top-active.svg);
	opacity: 0;
	transition: 0.25s opacity ease;
}
footer#footer p#button-page-top a:hover::after {
	opacity: 1;
}
footer#footer div.contact {
	padding: 40px 0px;
}
footer#footer div.contact {
	color: #ffffff;
	background-color: #002e7d;
}
footer#footer div.contact div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 700px;
	margin: auto;
}
footer#footer div.contact div.column div.left {
	width: calc(100% - 280px);
}
footer#footer div.contact div.column div.left h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	text-indent: 0.15em;
	font-size: 1.125rem;
	font-weight: 500;
	color: #002e7d;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
	background-color: #ffffff;
}
footer#footer div.contact div.column div.left p.tel {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	margin-bottom: 10px;
}
footer#footer div.contact div.column div.left p.tel a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}
footer#footer div.contact div.column div.left p.tel span {
	display: block;
	line-height: 2.75rem;
}
footer#footer div.contact div.column div.left p.tel span.label {
	font-size: 1.875rem;
	transform: translateY(5px);
}
footer#footer div.contact div.column div.left p.tel span.number {
	font-size: 2.75rem;
}
footer#footer div.contact div.column div.left p.time-close {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
footer#footer div.contact div.column div.right {
	width: 260px;
}
footer#footer div.contact div.column div.right p.button-mail {
	font-weight: 500;
	line-height: 1.5rem;
}
footer#footer div.contact div.column div.right p.button-mail a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 130px;
	border: 1px solid #ffffff;
	transition: 0.25s color ease, 0.25s background-color ease;
}
footer#footer div.contact div.column div.right p.button-mail a:hover {
	color: #002e7d;
	background-color: #ffffff;
}
footer#footer div.contact div.column div.right p.button-mail span,
footer#footer div.contact div.column div.right p.button-mail i {
	display: block;
}
footer#footer div.contact div.column div.right p.button-mail i.text {
	margin-bottom: 15px;
}
footer#footer div.contact div.column div.right p.button-mail i.icon {
	position: relative;
	width: 55px;
	height: 34px;
	margin: auto;
}
footer#footer div.contact div.column div.right p.button-mail i.icon::before,
footer#footer div.contact div.column div.right p.button-mail i.icon::after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
footer#footer div.contact div.column div.right p.button-mail i.icon::before {
	background-image: url(../images/icon-mail.svg);
}
footer#footer div.contact div.column div.right p.button-mail i.icon::after {
	background-image: url(../images/icon-mail-active.svg);
	opacity: 0;
	transition: 0.25s opacity ease;
}
footer#footer div.contact div.column div.right p.button-mail a:hover i.icon::after {
	opacity: 1;
}
footer#footer div.information {
	position: relative;
	padding: 40px 0px 20px 0px;
}
footer#footer div.information h3 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
footer#footer div.information p.address-tel-fax {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
footer#footer div.information p.address-tel-fax span {
	display: block;
}
footer#footer div.information p.address-tel-fax span:not(:last-child) {
	margin-right: 20px;
}
footer#footer div.information nav#navi-footer {
	margin-bottom: 40px;
}
footer#footer div.information nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer#footer div.information nav#navi-footer ul li {
	text-indent: 0.15em;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #002e7d;
	letter-spacing: 0.15em;
}
footer#footer div.information nav#navi-footer ul li:not(:last-child) {
	margin-right: 30px;
}
footer#footer div.information p.copyright {
	font-size: 0.75rem;
}
