@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 {
	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;
	font-family: "MatisseProN-M", "Yu Mincho", YuMincho, serif;
	font-size: 0.9375rem;
	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.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #787878;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.3125rem;
}
h3 {
	font-size: 1.0625rem;
}
h4 {
	font-size: 0.9375rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #be0a0a;
}



/* --------------------------------------------------------------------------------
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 Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	outline: none;
	border: none;
	margin: 0px;
	border-radius: 5px;
	-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 {
	background-color: #f5f5f5;
}
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: 170px;
	height: 40px;
	font-size: 0.9375rem;
	border: 1px solid #000000;
	cursor: pointer;
	border-radius: 20px;
	background-color: transparent;
	transition: 0.25s color ease, 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	color: #ffffff;
	background-color: #000000;
}
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;
	border: 1px solid #000000;
	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: #000000;
}
input[type=radio]::after {
	transform: translate(5px, 5px);
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 8px;
	height: 13px;
	border-right: 3px solid #000000;
	border-bottom: 3px solid #000000;
}
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(0px, -1px);
}
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(4px, 4px);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(5px, 0px) rotate(45deg);
}
textarea {
	line-height: 1.5rem;
	padding: 10px 20px;
}
select {
	padding: 0px 40px 0px 20px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: auto 10px;
}
select::-ms-expand {
	display: none;
}
::-webkit-input-placeholder {
	color: #dcdcdc;
}
:-ms-input-placeholder {
	color: #dcdcdc;
}
::placeholder {
	color: #dcdcdc;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
	letter-spacing: 0em;
}
i.icon-tel:before {
	content: "\e900";
}
i.icon-new-window:before {
	content: "\e901";
}



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

br.small {
	display: none;
}
br.large {
	display: inline;
}
hr {
	height: 0px;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #dcdcdc;
	margin: 20px 0px;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #dcdcdc;
	border-radius: 5px;
}
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;
}
div#page div#trigger,
div#page div#trigger-header {
	position: absolute;
	left: 0px;
}
div#page div#trigger {
	top: 100vh;
}
body.admin-bar div#page div#trigger {
	top: calc(100vh - 32px);
}
div#page div#trigger-header {
	top: 500px;
}
body.admin-bar div#page div#trigger-header {
	top: 468px;
}
div#page p.image img {
	width: 100%;
	height: auto;
}
div#page p.button-default {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 1rem;
}
div#page p.button-default a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 170px;
	height: 40px;
	color: #000000;
	border: 1px solid #000000;
	border-radius: 20px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
div#page p.button-default a:hover {
	color: #ffffff;
	background-color: #000000;
}
div#page p.button-left {
	justify-content: flex-start;
}
div#page p.button-right {
	justify-content: flex-end;
}
div#page p.button-reverse a {
	color: #ffffff;
	border-color: #ffffff;
}
div#page p.button-reverse a:hover {
	color: #000000;
	background-color: #ffffff;
}
div#page p.button-reverse-alternate a {
	color: #000000;
	border-color: #ffffff;
	background-color: #ffffff;
}
div#page p.button-tel {
	font-size: 1.3125rem;
}
div#page p.button-tel a {
	width: 260px;
	height: 60px;
	border-radius: 30px;
}
div#page p.button-tel i.icon {
	font-size: 1.0625rem;
	margin-right: 5px;
	transform: translateY(1px);
}
div#page p.button-arrow a {
	justify-content: flex-start;
	padding: 0px 35px 0px 25px;
}
div#page p.button-arrow a i {
	display: block;
	position: absolute;
	width: 20px;
	left: calc(100% - 35px);
	top: 50%;
	transform: translateY(1px);
}
div#page p.button-arrow a i::before,
div#page p.button-arrow a i::after {
	position: absolute;
	right: 0px;
	bottom: 0px;
	border-bottom: 1px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
}
div#page p.button-arrow a:hover i::before,
div#page p.button-arrow a:hover i::after {
	border-color: #ffffff;
}
div#page p.button-arrow a i::before {
	width: 100%;
}
div#page p.button-arrow a i::after {
	width: 5px;
	transform-origin: right bottom;
	transform: rotate(45deg);
}
div#page p.button-arrow.button-reverse a i::before,
div#page p.button-arrow.button-reverse a i::after {
	border-color: #ffffff;
}
div#page p.button-arrow.button-reverse a:hover i::before,
div#page p.button-arrow.button-reverse a:hover i::after {
	border-color: #000000;
}
div#page p.image {
	overflow: hidden;
}
div#page p.image img {
	width: 100%;
	height: auto;
}
div#page p.image-zoom img {
	transition: 0.375s transform ease-out;
}
div#page p.image-zoom a:hover img {
	transform: scale(1.0625);
}
div#page *.scroll.fade {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div#page *.scroll.fade.active {
	opacity: 1;
}



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

header#header {
	position: fixed;
	width: 100%;
	height: 100px;
	left: 0px;
	top: 0px;
	z-index: 20;
	color: #ffffff;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div.header header#header,
body.single-news header#header,
body.single-products header#header,
body.privacy-policy header#header {
	color: #000000;
	background-color: #ffffff;
}
body.admin-bar header#header {
	top: 32px;
}
header#header *#logo,
header#header nav#navi {
	position: absolute;
	top: 0px;
}
header#header *#logo {
	left: calc(50% - 500px);
	padding-top: 30px;
}
header#header *#logo a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 142px;
	height: 40px;
	background: url(../images/logo-white.svg) no-repeat center;
	background-size: auto 40px;
}
header#header *#logo img {
	opacity: 0;
	transition: 0.25s opacity ease;
}
div.header header#header *#logo img,
body.single-news header#header *#logo img,
body.single-products header#header *#logo img,
body.privacy-policy header#header *#logo img {
	opacity: 1;
}
header#header nav#navi {
	right: calc(50% - 500px);
}
header#header nav#navi > ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi > ul > li:not(:last-child) {
	margin-right: 25px;
}
header#header nav#navi > ul > li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100px;
}
header#header nav#navi > ul > li > a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 40px;
	font-size: 1rem;
	transition: 0.25s color ease;
}
header#header nav#navi > ul > li > a:hover {
	color: #b4b4b4;
}
div.header header#header nav#navi > ul > li > a:hover,
body.single-news header#header nav#navi > ul > li > a:hover,
body.single-products header#header nav#navi > ul > li > a:hover,
body.privacy-policy header#header nav#navi > ul > li > a:hover {
	color: #787878;
}
header#header nav#navi > ul > li.collapse > a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: calc(50% - 3px);
	bottom: 0px;
	border-right: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease, 0.25s transform ease;
	transform: translateY(-1px) rotate(135deg);
}
header#header nav#navi > ul > li.collapse > a:hover::before {
	border-color: #b4b4b4;
}
div.header header#header nav#navi > ul > li.collapse > a::before,
body.single-news header#header nav#navi > ul > li.collapse > a::before,
body.single-products header#header nav#navi > ul > li.collapse > a::before,
body.privacy-policy header#header nav#navi > ul > li.collapse > a::before {
	border-color: #000000;
}
div.header header#header nav#navi > ul > li.collapse > a:hover::before,
body.single-news header#header nav#navi > ul > li.collapse > a:hover::before,
body.single-products header#header nav#navi > ul > li.collapse > a:hover::before,
body.privacy-policy header#header nav#navi > ul > li.collapse > a:hover::before {
	border-color: #787878;
}
header#header nav#navi > ul > li.collapse.open > a::before {
	transform: translateY(1px) rotate(-45deg);
}
header#header nav#navi > ul > li div.nest {
	position: absolute;
	width: 100vw;
	height: 110px;
	right: calc(-50vw + 500px);
	top: 100px;
	pointer-events: none;
}
header#header nav#navi > ul > li div.nest::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	transform-origin: left top;
	transition: 0.25s background-color ease, 0.25s transform ease;
	transform: scaleY(0);
}
div.header header#header nav#navi > ul > li div.nest::before,
body.single-news header#header nav#navi > ul > li div.nest::before,
body.single-products header#header nav#navi > ul > li div.nest::before,
body.privacy-policy header#header nav#navi > ul > li div.nest::before {
	background-color: #ffffff;
}
header#header nav#navi > ul > li.open div.nest::before {
	transform: scaleY(1);
}
header#header nav#navi > ul > li.open div.nest {
	pointer-events: auto;
}
header#header nav#navi > ul > li div.nest ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	transition: 0.25s opacity ease, 0.25s transform ease;
	transform: translateY(-20px);
}
header#header nav#navi > ul > li.open div.nest ul {
	opacity: 1;
	transform: translateY(0px);
}
header#header nav#navi > ul > li div.nest ul li:not(:last-child) {
	margin-right: 25px;
}
header#header nav#navi > ul > li div.nest ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 230px;
	height: 70px;
	color: #ffffff;
	border: 1px solid #000000;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.6);
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
header#header nav#navi > ul > li div.nest ul li a:hover {
	color: #000000;
	border-color: #ffffff;
	background-color: #ffffff;
}
div.header header#header nav#navi > ul > li div.nest ul li a,
body.single-news header#header nav#navi > ul > li div.nest ul li a,
body.single-products header#header nav#navi > ul > li div.nest ul li a,
body.privacy-policy header#header nav#navi > ul > li div.nest ul li a {
	color: #000000;
	border-color: #dcdcdc;
	background-color: #ffffff;
}
div.header header#header nav#navi > ul > li div.nest ul li a:hover,
body.single-news header#header nav#navi > ul > li div.nest ul li a:hover,
body.single-products header#header nav#navi > ul > li div.nest ul li a:hover,
body.privacy-policy header#header nav#navi > ul > li div.nest ul li a:hover {
	color: #ffffff;
	border-color: #000000;
	background-color: #000000;
}
header#header nav#navi > ul > li div.nest ul li a span {
	display: block;
	position: absolute;
	width: 20px;
	left: calc(100% - 35px);
	top: 50%;
	transform: translateY(2px);
}
header#header nav#navi > ul > li div.nest ul li a span::before,
header#header nav#navi > ul > li div.nest ul li a span::after {
	position: absolute;
	right: 0px;
	bottom: 0px;
	border-bottom: 1px solid #ffffff;
	content: "";
}
header#header nav#navi > ul > li div.nest ul li a:hover span::before,
header#header nav#navi > ul > li div.nest ul li a:hover span::after {
	border-color: #000000;
}
div.header header#header nav#navi > ul > li div.nest ul li a span::before,
body.single-news header#header nav#navi > ul > li div.nest ul li a span::before,
body.single-products header#header nav#navi > ul > li div.nest ul li a span::before,
body.privacy-policy header#header nav#navi > ul > li div.nest ul li a span::before,
div.header header#header nav#navi > ul > li div.nest ul li a span::after,
body.single-news header#header nav#navi > ul > li div.nest ul li a span::after,
body.single-products header#header nav#navi > ul > li div.nest ul li a span::after,
body.privacy-policy header#header nav#navi > ul > li div.nest ul li a span::after {
	border-color: #000000;
}
div.header header#header nav#navi > ul > li div.nest ul li a:hover span::before,
body.single-news header#header nav#navi > ul > li div.nest ul li a:hover span::before,
body.single-products header#header nav#navi > ul > li div.nest ul li a:hover span::before,
body.privacy-policy header#header nav#navi > ul > li div.nest ul li a:hover span::before,
div.header header#header nav#navi > ul > li div.nest ul li a:hover span::after,
body.single-news header#header nav#navi > ul > li div.nest ul li a:hover span::after,
body.single-products header#header nav#navi > ul > li div.nest ul li a:hover span::after,
body.privacy-policy header#header nav#navi > ul > li div.nest ul li a:hover span::after {
	border-color: #ffffff;
}
header#header nav#navi > ul > li div.nest ul li a span::before {
	width: 100%;
}
header#header nav#navi > ul > li div.nest ul li a span::after {
	width: 5px;
	transform-origin: right bottom;
	transform: rotate(45deg);
}



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

div#cover {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	color: #ffffff;
}
body.admin-bar div#cover {
	height: calc(100vh - 32px);
}
div.scroll div#cover {
	visibility: hidden;
	opacity: 0;
}
div#cover div.image,
div#cover div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.image {
	opacity: 0;
	transition: 1s opacity ease;
}
div.cover div#cover div.image {
	opacity: 1;
}
div#cover div.image p.row {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
}
div#cover div.image p.row:nth-child(1) {
	background-image: url(../images/cover-image-01.jpg);
}
div#cover div.image p.row:nth-child(2) {
	background-image: url(../images/cover-image-02.jpg);
}
div#cover div.image p.row:nth-child(3) {
	background-image: url(../images/cover-image-03.jpg);
}
div#cover div.image p.row:nth-child(4) {
	background-image: url(../images/cover-image-04.jpg);
}
div#cover div.navi {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	right: calc(50% - 500px);
	bottom: 40px;
	z-index: 10;
	opacity: 0;
	transition: 1s opacity 0.5s ease;
}
div.cover div#cover div.navi {
	opacity: 1;
}
div#cover div.navi p.row {
	position: relative;
	width: 20px;
	text-align: center;
	font-family: "Cinzel", serif;
	font-size: 1rem;
	color: #b4b4b4;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: 0.25s color ease;
}
div#cover div.navi p.row:not(:last-child) {
	margin-right: 20px;
}
div#cover div.navi p.row:hover,
div#cover div.navi p.row.active {
	color: #ffffff;
}
div#cover div.navi p.row span {
	display: block;
	position: absolute;
	width: 16px;
	height: 1px;
	left: calc(50% - 8px);
	bottom: 0px;
	background-color: #787878;
	opacity: 0;
	transition: 0.5s opacity ease;
}
div#cover div.navi p.row.active span {
	opacity: 1;
}
div#cover div.navi p.row span::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	transform-origin: left top;
	transform: scaleX(0);
}
div#cover div.navi p.row.active span::before {
	transition: 5s transform linear;
	transform: scaleX(1);
}
div#cover p.button-scroll {
	position: absolute;
	width: 20px;
	height: 122px;
	left: calc(50% - 500px);
	bottom: 0px;
	z-index: 10;
	font-family: "Cinzel", serif;
	font-size: 0.8125rem;
	line-height: 20px;
	letter-spacing: 0.1em;
	opacity: 0;
	transition: 1s opacity 0.5s ease;
}
div.cover div#cover p.button-scroll {
	opacity: 1;
}
div#cover p.button-scroll a {
	display: block;
	position: relative;
	height: 100%;
	transition: 0.25s color ease;
}
div#cover p.button-scroll a:hover {
	color: #b4b4b4;
}
div#cover p.button-scroll a::before {
	position: absolute;
	width: 0px;
	height: 60px;
	bottom: 0px;
	left: calc(50% - 0.5px);
	border-right: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
div#cover p.button-scroll a:hover::before {
	border-color: #b4b4b4;
}
div#cover p.button-scroll span {
	display: block;
	position: absolute;
	left: 20px;
	top: 0px;
	transform-origin: left top;
	transform: rotate(90deg);
}
div#space-cover {
	height: 100vh;
}
div#title {
	position: relative;
	height: 600px;
	color: #ffffff;
}
body.single-news div#title,
body.single-products div#title,
body.privacy-policy div#title {
	height: 400px;
	color: #000000;
}
div#title p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div.active div#title p.image {
	opacity: 1;
}
body.news div#title p.image {
	background-image: url(../images/title-image-news.jpg);
}
body.strengths div#title p.image {
	background-image: url(../images/title-image-strengths.jpg);
}
body.products div#title p.image {
	background-image: url(../images/title-image-products.jpg);
}
body.factory div#title p.image {
	background-image: url(../images/title-image-factory.jpg);
}
body.scene div#title p.image {
	background-image: url(../images/title-image-scene.jpg);
}
body.company div#title p.image {
	background-image: url(../images/title-image-company.jpg);
}
body.contact div#title p.image {
	background-image: url(../images/title-image-contact.jpg);
}
body.recruit div#title p.image {
	background-image: url(../images/title-image-recruit.jpg);
}
div#title p.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: absolute;
	right: calc(50% - 500px);
	top: 140px;
	text-align: right;
	font-size: 0.8125rem;
	color: #b4b4b4;
}
div#title p.breadcrumb span {
	display: block;
	position: relative;
}
div#title p.breadcrumb span:not(:last-child) {
	margin-right: 24px;
}
div#title p.breadcrumb span:not(:last-child)::before {
	position: absolute;
	width: 10px;
	right: -18px;
	top: 50%;
	border-bottom: 1px solid #b4b4b4;
	content: "";
}
div#title p.breadcrumb span a {
	transition: 0.25s color ease;
}
div#title p.breadcrumb span a:hover,
div#title p.breadcrumb span:last-child {
	color: #ffffff;
}
body.single-news div#title p.breadcrumb span a:hover,
body.single-products div#title p.breadcrumb span a:hover,
body.privacy-policy div#title p.breadcrumb span a:hover,
body.single-news div#title p.breadcrumb span:last-child,
body.single-products div#title p.breadcrumb span:last-child,
body.privacy-policy div#title p.breadcrumb span:last-child {
	color: #000000;
}
div#title div.text {
	position: absolute;
	left: calc(50% - 440px);
	top: 280px;
}
div#title div.text p.sub,
div#title div.text h1 {
	opacity: 0;
	transform: translateY(30px);
}
div.active div#title div.text p.sub,
div.active div#title div.text h1 {
	opacity: 1;
	transform: translateY(0px);
}
div#title div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	margin-bottom: 5px;
	padding-left: 5px;
	transition: 1s opacity 0.5s ease-in-out, 1s transform 0.5s ease;
}
div#title div.text h1 {
	font-size: 3.4375rem;
	line-height: 5rem;
	letter-spacing: 0.075em;
	transition: 1s opacity 0.625s ease-in-out, 1s transform 0.625s ease;
}



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

main {
	position: relative;
	z-index: 10;
	margin-bottom: 120px;
	background-color: #ffffff;
}
main section {
	position: relative;
}
main section div.inner-section {
	position: relative;
	width: 1000px;
	margin: auto;
	padding: 120px 0px;
}
main section header {
	text-align: center;
	margin-bottom: 160px;
}
main section header p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	margin-bottom: 5px;
}
main section header h2 {
	text-indent: 0.075em;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.075em;
}
main section header p.description {
	font-size: 1.0625rem;
	line-height: 2.5rem;
}
main div#pager,
main nav#navi-article {
	font-size: 1rem;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 120px;
}
main div#pager span,
main div#pager a,
main nav#navi-article ul li a {
	display: block;
	position: relative;
	text-align: center;
	color: #000000;
}
main div#pager a,
main nav#navi-article ul li a {
	transition: 0.25s color ease;
}
main div#pager a:hover,
main nav#navi-article ul li a:hover {
	color: #787878;
}
main div#pager span:not(:last-child),
main div#pager a:not(:last-child) {
	margin-right: 25px;
}
main div#pager span.current::before {
	position: absolute;
	width: 16px;
	left: calc(50% - 8px);
	bottom: 0px;
	border-bottom: 1px solid #000000;
	content: "";
}
main nav#navi-article {
	max-width: 480px;
	margin: 120px auto 0px auto;
}
main nav#navi-article ul {
	position: relative;
}
main nav#navi-article ul li.prev,
main nav#navi-article ul li.next {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li.prev {
	left: 0px;
}
main nav#navi-article ul li.list {
	margin: auto;
}
main nav#navi-article ul li.next {
	right: 0px;
}

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

body.home main {
	margin-bottom: 0px;
}
main section#concept {
	text-align: center;
}
main section#concept div.inner-section {
	padding: 160px 0px 0px 0px;
}
main section#concept p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	margin-bottom: 20px;
	opacity: 0;
	transition: 0.25s opacity ease;
}
main section#concept.absolute p.sub {
	opacity: 1;
}
main section#concept div.headline {
	position: fixed;
	width: 100%;
	height: 160px;
	left: 0px;
	top: calc(50% - 80px);
	z-index: 1;
}
main section#concept.absolute div.headline {
	position: absolute;
	top: auto;
}
main section#concept div.headline h2 {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: hidden;
	text-align: center;
	text-indent: 0.325em;
	font-size: 3.4375rem;
	line-height: calc(5rem - 20px);
	letter-spacing: 0.075em;
}
main section#concept div.headline h2.front {
	z-index: 1;
	color: #ffffff;
}
main section#concept div.headline h2 span {
	display: block;
	margin-bottom: 20px;
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease;
	transform: translateY(40px);
}
div.cover main section#concept div.headline h2 span {
	opacity: 1;
	transform: translateY(0px);
}
main section#concept div.headline h2 span:nth-child(1) {
	transition-delay: 0.5s;
}
main section#concept div.headline h2 span:nth-child(2) {
	transition-delay: 0.75s;
}
main section#concept div.space-headline {
	height: 200px;
}
main section#concept p.description {
	font-size: 1.0625rem;
	line-height: 2.75rem;
	letter-spacing: 0.075em;
	margin-bottom: 80px;
}
main section#concept h3 {
	font-size: 1.3125rem;
	line-height: 3rem;
	letter-spacing: 0.125em;
}
main section#concept div.movie {
	position: relative;
	text-align: center;
	margin-top: 120px;
	padding: 120px 0px 200px 0px;
}
main section#concept div.movie::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #f0f0f0;
	content: "";
}
main section#concept div.movie div.inner-movie {
	position: relative;
	max-width: 720px;
	margin: auto;
}
main section#concept div.movie h4 {
	text-align: 0.1em;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
main section#concept div.movie p.description {
	font-size: 0.875rem;
	line-height: 1.75rem;
	margin-bottom: 40px;
}
main section#home-menu div.inner-section {
	width: auto;
	padding: 0px;
}
main section#home-menu div.list div.row {
	align-items: center;
	position: relative;
	height: calc(100vh + 1250px);
	text-align: center;
	color: #ffffff;
}
main section#home-menu div.list div.row div.inner-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100vh;
}
main section#home-menu div.list div.row.fixed div.inner-row {
	position: fixed;
	left: 0px;
	top: 0px;
}
main section#home-menu div.list div.row.relative div.inner-row {
	position: relative;
	top: 1250px;
}
main section#home-menu div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: calc(100vh + 250px);
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1s opacity ease;
}
main section#home-menu div.list div.row.image p.image {
	opacity: 1;
}
main section#home-menu div.list div.row-strengths p.image {
	background-image: url(../images/home-image-01.jpg);
}
main section#home-menu div.list div.row-products p.image {
	background-image: url(../images/home-image-02.jpg);
}
main section#home-menu div.list div.row-factory p.image {
	background-image: url(../images/home-image-03.jpg);
}
main section#home-menu div.list div.row-company p.image {
	background-image: url(../images/home-image-04.jpg);
}
main section#home-menu div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 220px;
	height: 220px;
	top: calc(50vh - 40px);
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section#home-menu div.list div.row.text div.text {
	opacity: 1;
}
main section#home-menu div.list div.row:nth-child(2n+1) div.text {
	right: calc(50% - 360px);
}
main section#home-menu div.list div.row:nth-child(2n) div.text {
	left: calc(50% - 360px);
}
main section#home-menu div.list div.row div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	margin-bottom: 5px;
}
main section#home-menu div.list div.row div.text h3 {
	text-indent: 0.075em;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.075em;
	margin-bottom: 80px;
}
main section#home-news {
	background-color: #ffffff;
}
main section#home-news div.inner-section {
	display: flex;
	flex-wrap: wrap;
}
main section#home-news header {
	width: 320px;
	text-align: left;
	margin-bottom: 0px;
}
main section#home-news header h2 {
	text-indent: 0em;
	margin-bottom: 80px;
}
main section#home-news div.content {
	width: calc(100% - 320px);
}
main section#home-news div.list div.row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	border-bottom: 1px solid #dcdcdc;
	padding: 30px 20px;
	transition: 0.25s background-color ease, 1s opacity ease-in-out;
}
main section#home-news div.list div.row:hover {
	background-color: #fafafa;
}
main section#home-news div.list div.row:first-child {
	border-top: 1px solid #dcdcdc;
}
main section#home-news div.list div.row p.created {
	width: 120px;
	color: #787878;
}
main section#home-news div.list div.row h3 {
	width: calc(100% - 120px);
	min-height: 1.875rem;
	font-size: 1.0625rem;
	letter-spacing: 0.075em;
}
main section#home-news div.content p.button-default {
	display: none;
}
main section#home-scene {
	background-color: #fafafa;
}
main section#home-scene div.inner-section {
	width: auto;
	padding-bottom: 240px;
}
main section#home-scene div.image {
	overflow: hidden;
	margin-bottom: 80px;
}
main section#home-scene div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
 animation: theme-slide 120s linear infinite forwards;
}
@keyframes theme-slide {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-4600px); }
}
main section#home-scene div.image p.row {
	width: 450px;
	margin-right: 10px;
}
main section#home-scene div.image p.row img {
	width: 100%;
	height: auto;
}

/* news, products
-------------------------------------------------------------------------------- */

main article.common {
	width: 880px;
	border-bottom: 1px solid #dcdcdc;
	margin: auto;
	padding-bottom: 120px;
}
main article.common header {
	text-align: left;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 80px;
	padding-bottom: 40px;
}
main article.common header h1 {
	font-size: 1.625rem;
	line-height: 2.25rem;
	margin-bottom: 10px;
}
main article.common header p.created {
	color: #787878;
}
main article.common p.image {
	width: 720px;
	margin: 0px auto 60px auto;
}
main article.common div.body {
	width: 640px;
	margin: auto;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body h1,
main article.common div.body h2,
main article.common div.body h3,
main article.common div.body h4,
main article.common div.body h5,
main article.common div.body h6 {
	font-weight: 400;
}
main article.common div.body strong {
	font-weight: 400;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f5f5f5;
}
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 0.8rem;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol {
	padding-left: 20px;
}
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table th,
main article.common div.body table td {
	border: 1px solid #dcdcdc;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f5f5f5;
}

/* news
-------------------------------------------------------------------------------- */

main section#news div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #dcdcdc;
	padding: 40px 100px 40px 60px;
	transition: 0.25s background-color ease, 1s opacity ease-in-out;
}
main section#news div.list div.row:hover {
	background-color: #fafafa;
}
main section#news div.list div.row:first-child {
	border-top: 1px solid #dcdcdc;
}
main section#news div.list div.row p.more {
	position: absolute;
	width: 30px;
	right: 40px;
	top: calc(50% - 15px);
}
main section#news div.list div.row p.more a {
	display: block;
	position: relative;
	height: 30px;
}
main section#news div.list div.row p.more a::before,
main section#news div.list div.row p.more a::after {
	position: absolute;
	right: 0px;
	top: 50%;
	border-bottom: 1px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
}
main section#news div.list div.row p.more a::before {
	width: 100%;
}
main section#news div.list div.row p.more a::after {
	width: 5px;
	transform-origin: right bottom;
	transform: rotate(45deg);
}
main section#news div.list div.row p.image {
	width: 180px;
}
main section#news div.list div.row p.image a {
	display: block;
	position: relative;
	overflow: hidden;
	padding-bottom: 72.22%;
}
main section#news div.list div.row p.image img {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0px;
	top: 0px;
}
main section#news div.list div.row div.text {
	width: calc(100% - 240px);
}
main section#news div.list div.row div.text h3 {
	font-size: 1.0625rem;
	letter-spacing: 0.075em;
	margin-bottom: 10px;
}
main section#news div.list div.row div.text p.created {
	color: #787878;
}

/* strengths
-------------------------------------------------------------------------------- */

main section#strengths header {
	margin-bottom: 200px;
}
main section#strengths header p.description {
	margin-bottom: 120px;
}
main section#strengths header ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -40px;
}
main section#strengths header ul li {
	width: 25%;
	text-align: center;
	line-height: 1.5rem;
	border-right: 1px solid #dcdcdc;
	margin-bottom: 40px;
}
main section#strengths header ul li:nth-child(4n+1) {
	border-left: 1px solid #dcdcdc;
}
main section#strengths header ul li a,
main section#strengths header ul li span {
	display: block;
}
main section#strengths header ul li a {
	position: relative;
	height: 60px;
	padding-bottom: 10px;
}
main section#strengths header ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: calc(50% - 3px);
	bottom: 3px;
	border-right: 1px solid #000000;
	border-top: 1px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(1px) rotate(135deg);
}
main section#strengths header ul li a:hover::before {
	border-color: #787878;
}
main section#strengths header ul li span.number {
	font-family: "Cinzel", serif;
	font-size: 0.875rem;
	color: #b4b4b4;
}
main section#strengths header ul li span.headline {
	transition: 0.25s color ease;
}
main section#strengths header ul li a:hover span.headline {
	color: #787878;
}
main section#strengths div.list div.row {
	position: relative;
	padding-top: 80px;
}
main section#strengths div.list div.row:not(:last-child) {
	margin-bottom: 200px;
}
main section#strengths div.list div.row p.image,
main section#strengths div.list div.row div.text {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section#strengths div.list div.row.active p.image,
main section#strengths div.list div.row.active div.text {
	opacity: 1;
}
main section#strengths div.list div.row p.image {
	position: absolute;
	width: 640px;
	top: 0px;
	z-index: 1;
}
main section#strengths div.list div.row:nth-child(2n+1) p.image {
	right: calc(50% + 20px);
}
main section#strengths div.list div.row:nth-child(2n) p.image {
	left: calc(50% + 20px);
}
main section#strengths div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 600px;
	height: 440px;
	padding: 80px;
	background-color: #f5f5f5;
	transition-delay: 0.25s;
}
main section#strengths div.list div.row:nth-child(2n+1) div.text {
	margin-left: auto;
	margin-right: 0px;
	padding-left: 160px;
}
main section#strengths div.list div.row:nth-child(2n) div.text {
	margin-left: 0px;
	margin-right: auto;
	padding-right: 160px;
}
main section#strengths div.list div.row div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 0.8125rem;
	color: #b4b4b4;
	margin-bottom: 5px;
}
main section#strengths div.list div.row div.text h2 {
	font-size: 1.5rem;
	letter-spacing: 0.075em;
	margin-bottom: 40px;
}

/* products
-------------------------------------------------------------------------------- */

main section#products div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -65px -80px 0px;
}
main section#products div.list div.row {
	width: calc(33.33% - 65px);
	margin: 0px 65px 80px 0px;
}
main section#products div.list div.row p.image {
	margin-bottom: 20px;
}
main section#products div.list div.row p.image a {
	display: block;
	position: relative;
	overflow: hidden;
	padding-bottom: 68.96%;
}
main section#products div.list div.row p.image img {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0px;
	top: 0px;
}
main section#products div.list div.row h3 {
	font-size: 1.0625rem;
}

/* factory
-------------------------------------------------------------------------------- */

main section#factory div.block:not(:last-child) {
	margin-bottom: 200px;
}
main section#factory div.block div.header {
	text-align: center;
	margin-bottom: 80px;
}
main section#factory div.block div.header p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	margin-bottom: 5px;
}
main section#factory div.block div.header h2 {
	text-indent: 0.075em;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.075em;
	margin-bottom: 10px;
}
main section#factory div.block div.header p.suffix {
	font-size: 1.0625rem;
}
main section#factory div.block p.diagram {
	margin-bottom: 120px;
}
main section#factory div.block p.diagram img {
	width: 100%;
	height: auto;
}
main section#factory div.block p.diagram img.small {
	display: none;
}
main section#factory div.block div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -65px -80px 0px;
}
main section#factory div.block div.list div.row {
	width: calc(33.33% - 65px);
	margin: 0px 65px 80px 0px;
}
main section#factory div.block div.list div.row p.image {
	cursor: pointer;
	margin-bottom: 20px;
}
main section#factory div.block div.list div.row h3 {
	font-size: 1.0625rem;
	letter-spacing: 0.075em;
	margin-bottom: 10px;
}
main section#factory div.block div.list div.row h3 i,
main section#factory div.block div.list div.row h3 b {
	margin-right: 2px;
}
main section#factory div.block div.list div.row h3 i,
main section#factory div.block div.list div.row p.description i {
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
}
main section#factory div.block div.list div.row h3 span {
	font-size: 0.9375rem;
}

/* scene
-------------------------------------------------------------------------------- */

main section#scene div.inner-section {
	width: 900px;
}
main section#scene div.list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0px -20px -20px 0px;
}
main section#scene div.list p.row {
	cursor: pointer;
	margin: 0px 20px 20px 0px;
}
main section#scene div.list p.row-small {
	width: calc(50% - 20px);
	height: 270px;
}
main section#scene div.list p.row-large {
	width: calc(100% - 20px);
	height: 540px;
}
main section#scene div.list p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* company
-------------------------------------------------------------------------------- */

main section#top-message div.inner-section {
	padding-top: 140px;
}
main section#top-message div.image-text {
	position: relative;
	padding-top: 60px;
}
main section#top-message div.image-text p.image,
main section#top-message div.image-text div.text {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section#top-message div.image-text.active p.image,
main section#top-message div.image-text.active div.text {
	opacity: 1;
}
main section#top-message div.image-text p.image {
	position: absolute;
	width: 470px;
	left: 0px;
	top: 0px;
	z-index: 1;
}
main section#top-message div.image-text div.text {
	width: 610px;
	margin-left: auto;
	margin-right: 0px;
	padding: 80px 80px 80px 160px;
	background-color: #f5f5f5;
	transition-delay: 0.25s;
}
main section#top-message div.image-text div.text h3 {
	font-size: 1.5rem;
	line-height: 2.875rem;
	letter-spacing: 0.075em;
	margin-bottom: 40px;
}
main section#top-message div.image-text div.text p.description {
	margin-bottom: 40px;
}
main section#top-message div.image-text div.text p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
main section#top-message div.image-text div.text p.name span {
	display: block;
}
main section#top-message div.image-text div.text p.name span.sub {
	margin-right: 20px;
	transform: translateY(1px);
}
main section#top-message div.image-text div.text p.name span.main {
	font-size: 1.1875rem;
}
main section#outline table {
	width: 100%;
}
main section#outline table th,
main section#outline table td {
	font-size: 1.0625rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	padding: 40px;
}
main section#outline table th {
	width: 220px;
	border-right: 1px solid #dcdcdc;
}
main section#history div.list {
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	padding: 80px 40px;
}
main section#history div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	font-size: 1.0625rem;
}
main section#history div.list div.row:not(:last-child) {
	padding-bottom: 60px;
}
main section#history div.list div.row::before,
main section#history div.list div.row:not(:last-child)::after {
	position: absolute;
	content: "";
	transform: translateY(1px);
}
main section#history div.list div.row::before {
	width: 9px;
	height: 9px;
	left: 115px;
	top: 10px;
	background-color: #000000;
	border-radius: 50%;
}
main section#history div.list div.row:not(:last-child)::after {
	width: 0px;
	height: calc(100% - 19px);
	left: 119px;
	top: 24px;
	border-right: 1px solid #dcdcdc;
}
main section#history div.list div.row p.label {
	width: 100px;
}
main section#history div.list div.row div.body {
	width: calc(100% - 180px);
}
main section#access div.map {
	margin-bottom: 60px;
}
main section#access div.map iframe {
	display: block;
	width: 100%;
	height: 500px;
}
main section#access p.button-default i.icon {
	margin-left: 5px;
}

/* contact, entry-form
-------------------------------------------------------------------------------- */

main section.form div.inner-section {
	width: 720px;
}
main section.form div.header {
	text-align: center;
	margin-bottom: 120px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.header p.description {
	font-size: 1.0625rem;
	line-height: 2.5rem;
	margin-bottom: 60px;
}
main section.form div.form p.require {
	color: #be0a0a;
	margin-bottom: 60px;
}
main section.form div.mw_wp_form_preview div.form p.require {
	display: none;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 30px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 0px;
	padding: 30px 20px;
}
main section.form div.mw_wp_form_preview div.form div.component-first {
	border-top: 1px solid #dcdcdc;
}
main section.form div.mw_wp_form_preview div.form div.component-last {
	margin-bottom: 80px;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 220px;
	height: 50px;
	letter-spacing: 0.075em;
	margin-bottom: 5px;
}
main section.form div.form div.component p.label span.require {
	font-size: 0.8125rem;
	color: #be0a0a;
	margin-left: 5px;
}
main section.form div.form div.component div.body {
	width: calc(100% - 220px);
}
main section.form div.mw_wp_form_preview div.form div.component div.body {
	padding: 10px 0px 10px 10px;
}
main section.form div.form div.component div.body input[type=text],
main section.form div.form div.component div.body input[type=email],
main section.form div.form div.component div.body textarea,
main section.form div.form div.component div.body select {
	width: 100%;
}
main section.form div.form div.component div.body span.error,
main section.form div.form div.agreement span.error {
	position: absolute;
	bottom: -25px;
	font-size: 0.8125rem;
	line-height: 25px;
	color: #be0a0a;
}
main section.form div.form div.component div.body span.error {
	right: 0px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(100% - 220px);
	position: relative;
	margin: 0px 0px 80px auto;
}
main section.form div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section.form div.form div.agreement span.horizontal-item {
	margin-right: 5px;
}
main section.form div.form div.agreement span.horizontal-item > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	left: 30px;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action input[type=submit] {
	text-indent: 0.5em;
	letter-spacing: 0.5em;
}
main section.form div.form div.action input[name=submitBack] {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}

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

body.recruit main {
	margin-bottom: 240px;
}
body.recruit.entry-form main {
	margin-bottom: 120px;
}
body.recruit main section header,
body.recruit main section header h2 {
	margin-bottom: 120px;
}
body.recruit main section header ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
body.recruit main section header ul li {
	width: 200px;
	text-align: center;
	font-size: 1.25rem;
	border-right: 1px solid #dcdcdc;
}
body.recruit main section header ul li:first-child {
	border-left: 1px solid #dcdcdc;
}
body.recruit main section header ul li a {
	display: block;
	position: relative;
	height: 50px;
	padding-top: 3px;
	transition: 0.25s color ease;
}
body.recruit main section header ul li a:hover {
	color: #787878;
}
body.recruit main section header ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: calc(50% - 3px);
	bottom: 8px;
	border-right: 1px solid #000000;
	border-top: 1px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(1px) rotate(135deg);
}
body.recruit main section header ul li a:hover::before {
	border-color: #787878;
}
body.recruit main div#banner-entry-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 500px;
	overflow: hidden;
	text-align: center;
	color: #ffffff;
	margin-bottom: 120px;
}
body.recruit main div#banner-entry-form p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: url(../images/banner-image-entry-form.jpg) no-repeat center;
	background-size: cover;
	transition: 0.375s transform ease-out;
}
body.recruit main div#banner-entry-form:hover p.image {
	transform: scale(1.0375);
}
body.recruit main div#banner-entry-form div.text {
	position: relative;
	z-index: 1;
}
body.recruit main div#banner-entry-form div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
}
body.recruit main div#banner-entry-form div.text p.headline {
	text-indent: 0.075em;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.075em;
	margin-bottom: 80px;
}
body.recruit main nav#navi-recruit ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
body.recruit main nav#navi-recruit ul li {
	font-size: 1.3125rem;
}
body.recruit main nav#navi-recruit ul li:not(:last-child) {
	margin-right: 50px;
}
body.recruit main nav#navi-recruit ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 330px;
	height: 100px;
	border: 1px solid #dcdcdc;
	padding: 30px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
body.recruit main nav#navi-recruit ul li a:hover {
	color: #ffffff;
	border-color: #000000;
	background-color: #000000;
}
body.recruit main nav#navi-recruit ul li a span {
	display: block;
	position: absolute;
	width: 20px;
	left: calc(100% - 45px);
	top: 50%;
	transform: translateY(2px);
}
body.recruit main nav#navi-recruit ul li a span::before,
body.recruit main nav#navi-recruit ul li a span::after {
	position: absolute;
	right: 0px;
	bottom: 0px;
	border-bottom: 1px solid #000000;
	content: "";
}
body.recruit main nav#navi-recruit ul li a:hover span::before,
body.recruit main nav#navi-recruit ul li a:hover span::after {
	border-color: #ffffff;
}
body.recruit main nav#navi-recruit ul li a span::before {
	width: 100%;
}
body.recruit main nav#navi-recruit ul li a span::after {
	width: 5px;
	transform-origin: right bottom;
	transform: rotate(45deg);
}
main section#job div.block:not(:last-child) {
	margin-bottom: 200px;
}
main section#job div.block div.image-text {
	position: relative;
	margin-bottom: 120px;
	padding-top: 60px;
}
main section#job div.block div.image-text p.image,
main section#job div.block div.image-text div.text {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section#job div.block div.image-text.active p.image,
main section#job div.block div.image-text.active div.text {
	opacity: 1;
}
main section#job div.block div.image-text p.image {
	position: absolute;
	width: 500px;
	left: 0px;
	top: 0px;
	z-index: 1;
}
main section#job div.block div.image-text div.text {
	width: 580px;
	margin-left: auto;
	margin-right: 0px;
	padding: 80px 80px 80px 160px;
	background-color: #f5f5f5;
	transition-delay: 0.25s;
}
main section#job div.block div.image-text div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 0.8125rem;
	color: #b4b4b4;
	margin-bottom: 5px;
}
main section#job div.block div.image-text div.text h2 {
	font-size: 1.75rem;
	letter-spacing: 0.075em;
	margin-bottom: 40px;
}
main section#job div.block div.flow:not(:last-child) {
	margin-bottom: 200px;
}
main section#job div.block div.flow div.header {
	text-align: center;
	margin-bottom: 80px;
}
main section#job div.block div.flow div.header p.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.0625rem;
	margin-bottom: 40px;
}
main section#job div.block div.flow div.header p.sub span {
	display: block;
	border-bottom: 1px solid #000000;
	padding-bottom: 5px;
}
main section#job div.block div.flow div.header h3 {
	text-indent: 0.075em;
	font-size: 2.375rem;
	line-height: 2.5rem;
	letter-spacing: 0.075em;
}
main section#job div.block div.flow div.header h3:not(:last-child) {
	margin-bottom: 5px;
}
main section#job div.block div.flow div.header p.suffix {
	font-size: 1.3125rem;
	margin-bottom: 60px;
}
main section#job div.block div.flow div.header p.description {
	font-size: 1.0625rem;
	line-height: 2.125rem;
	margin-bottom: 20px;
}
main section#job div.block div.list {
	width: 900px;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	margin: auto;
	padding: 80px 60px;
}
main section#job div.block div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
main section#job div.block div.list div.row:not(:last-child) {
	padding-bottom: 60px;
}
main section#job div.block div.list div.row::before,
main section#job div.block div.list div.row:not(:last-child)::after {
	position: absolute;
	content: "";
	transform: translateY(1px);
}
main section#job div.block div.list div.row::before {
	width: 9px;
	height: 9px;
	left: 115px;
	top: 10px;
	background-color: #000000;
	border-radius: 50%;
}
main section#job div.block div.list div.row:not(:last-child)::after {
	width: 0px;
	height: calc(100% - 19px);
	left: 119px;
	top: 24px;
	border-right: 1px solid #dcdcdc;
}
main section#job div.block div.list div.row p.label {
	width: 100px;
	text-align: right;
	font-size: 1.0625rem;
	padding-right: 40px;
}
main section#job div.block div.list div.row div.body {
	width: calc(100% - 180px);
}
main section#job div.block div.list div.row div.body h4:not(:last-child),
main section#job div.block div.list div.row div.body p:not(:last-child) {
	margin-bottom: 15px;
}
main section#job div.block div.list div.row div.body h4 {
	font-size: 1.0625rem;
}
main section#job div.block div.list div.row div.body p.image {
	padding-top: 10px;
}
main section#job div.block div.list div.row div.body p.image:not(:last-child) {
	margin-bottom: 25px;
}
main section#job div.block div.list div.row div.body p.bullet {
	position: relative;
	padding-left: 1em;
}
main section#job div.block div.list div.row div.body p.bullet::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 1px;
	top: 10px;
	border: 1px solid #000000;
	content: "";
	border-radius: 50%;
}
main section#people div.block:not(:last-child) {
	margin-bottom: 240px;
}
main section#people div.block div.image-text {
	position: relative;
	margin-bottom: 160px;
	padding-top: 120px;
}
main section#people div.block div.image-text p.image,
main section#people div.block div.image-text div.text {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section#people div.block div.image-text.active p.image,
main section#people div.block div.image-text.active div.text {
	opacity: 1;
}
main section#people div.block div.image-text p.image {
	position: absolute;
	width: 600px;
	left: 0px;
	top: 0px;
	z-index: 1;
}
main section#people div.block div.image-text div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 480px;
	height: 400px;
	margin-left: auto;
	margin-right: 0px;
	padding: 80px 80px 80px 180px;
	background-color: #f5f5f5;
	transition-delay: 0.25s;
}
main section#people div.block div.image-text div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 0.8125rem;
	color: #b4b4b4;
	margin-bottom: 20px;
}
main section#people div.block div.image-text div.text p.post {
	font-size: 1.0625rem;
	margin-bottom: 10px;
}
main section#people div.block div.image-text div.text h2 {
	font-size: 2rem;
	letter-spacing: 0.075em;
	margin-bottom: 40px;
}
main section#people div.block div.interview div.list {
	width: 900px;
	margin: auto;
}
main section#people div.block div.interview div.list div.row {
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 120px;
	padding: 0px 120px 120px 220px;
}
main section#people div.block div.interview div.list div.row h3 {
	position: relative;
	font-size: 1.3125rem;
	letter-spacing: 0.075em;
	margin-bottom: 40px;
}
main section#people div.block div.interview div.list div.row h3::before {
	position: absolute;
	width: 60px;
	left: -80px;
	top: 15px;
	border-bottom: 1px solid #000000;
	content: "";
}
main section#people div.block div.interview div.list div.row p:not(:last-child) {
	margin-bottom: 40px;
}
main section#requirements div.inner-section {
	padding-bottom: 240px;
}
main section#requirements header {
	margin-bottom: 200px;
}
main section#requirements header h2 {
	margin-bottom: 120px;
}
main section#requirements div.block h3 {
	text-align: center;
	text-indent: 0.075em;
	font-size: 2.375rem;
	line-height: 2.5rem;
	letter-spacing: 0.075em;
	margin-bottom: 120px;
}
main section#requirements div.block table {
	width: 100%;
}
main section#requirements div.block table th,
main section#requirements div.block table td {
	font-size: 1.0625rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	padding: 40px;
}
main section#requirements div.block table th {
	width: 220px;
	border-right: 1px solid #dcdcdc;
}

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

main section#privacy-policy div.inner-section {
	width: 640px;
}
main section#privacy-policy h2 {
	font-size: 1.3125rem;
	margin-bottom: 120px;
}
main section#privacy-policy div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#privacy-policy div.block h3 {
	text-indent: -35px;
	font-size: 1.5rem;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 20px;
	padding: 0px 0px 20px 35px;
}
main section#privacy-policy div.block p:not(:last-child),
main section#privacy-policy div.block ol:not(:last-child) {
	margin-bottom: 40px;
}
main section#privacy-policy div.block ol {
	counter-reset: number;
}
main section#privacy-policy div.block ol li {
	position: relative;
	padding-left: 30px;
}
main section#privacy-policy div.block ol li::before {
	position: absolute;
	left: 0px;
	top: 0px;
	counter-increment: number;
	content: "（"counter(number)"）";
}



/* --------------------------------------------------------------------------------
banner
-------------------------------------------------------------------------------- */

aside#banner {
	position: relative;
	z-index: 10;
}
aside#banner div.list {
	display: flex;
	flex-wrap: wrap;
}
aside#banner div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 50%;
	height: 500px;
	overflow: hidden;
	text-align: center;
	color: #ffffff;
}
aside#banner div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.375s transform ease-out;
}
aside#banner div.list div.row:hover p.image {
	transform: scale(1.05);
}
aside#banner div.list div.row-contact p.image {
	background-image: url(../images/banner-image-contact.jpg);
}
aside#banner div.list div.row-recruit p.image {
	background-image: url(../images/banner-image-recruit.jpg);
}
aside#banner div.list div.row div.text {
	position: relative;
	z-index: 1;
}
aside#banner div.list div.row div.text p.sub {
	font-family: "Cinzel", serif;
	font-size: 1rem;
}
aside#banner div.list div.row div.text p.headline {
	text-indent: 0.075em;
	font-size: 2.5rem;
	line-height: 3rem;
	letter-spacing: 0.075em;
	margin-bottom: 80px;
}



/* --------------------------------------------------------------------------------
modal
-------------------------------------------------------------------------------- */

div.modal {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: auto;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: 0.5s opacity ease;
	-webkit-overflow-scrolling: touch;
}
div.modal::-webkit-scrollbar {
 display: none;
}
div.modal.active {
	pointer-events: auto;
	opacity: 1;
}
div.modal::before {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
}
div.modal div.inner-modal {
	position: relative;
}
div.modal p.button-close {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	position: fixed;
	width: 40px;
	height: 40px;
	right: 20px;
	top: 20px;
	z-index: 10;
	cursor: pointer;
}
body.admin-bar div.modal p.button-close {
	top: 52px;
}
div.modal p.button-close::before,
div.modal p.button-close::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: 50%;
	border-bottom: 1px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
}
div.modal p.button-close::before {
	transform: rotate(45deg);
}
div.modal p.button-close::after {
	transform: rotate(-45deg);
}
div.modal p.button-close:hover::before,
div.modal p.button-close:hover::after {
	border-color: #787878;
}
div.modal div.slide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	left: 100px;
	top: 100px;
}
div.modal div.slide div.pager {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 10;
	pointer-events: none;
}
div.modal div.slide div.pager p.button {
	position: absolute;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	pointer-events: auto;
}
div.modal div.slide div.pager p.button-prev {
	left: -60px;
}
div.modal div.slide div.pager p.button-next {
	right: -60px;
}
div.modal div.slide div.pager p.button::before {
	box-sizing: border-box;
	position: absolute;
	width: 20px;
	height: 20px;
	left: 10px;
	top: calc(50% - 10px);
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	cursor: pointer;
	content: "";
	transition: 0.25s border-color ease;
}
div.modal div.slide div.pager p.button:hover::before {
	border-color: #787878;
}
div.modal div.slide div.pager p.button-prev::before {
	transform: rotate(135deg);
}
div.modal div.slide div.pager p.button-next::before {
	transform: rotate(-45deg);
}

/* factory
-------------------------------------------------------------------------------- */

div#modal-factory div.slide {
	transform: translateY(-40px);
}
div#modal-factory div.slide div.list div.row {
	height: 0px;
	overflow: hidden;
	opacity: 0;
	transition: 0.75s opacity ease-in-out;
	transform: translateY(90px);
}
div#modal-factory div.slide div.list div.row.active {
	height: auto;
	opacity: 1;
}
div#modal-factory div.slide div.list div.row p.image {
	margin-bottom: 20px;
}
div#modal-factory div.slide div.list div.row h3 {
	font-size: 1.0625rem;
	margin-bottom: 10px;
}
div#modal-factory div.slide div.list div.row h3 i,
div#modal-factory div.slide div.list div.row h3 b {
	margin-right: 2px;
}
div#modal-factory div.slide div.list div.row h3 i,
div#modal-factory div.slide div.list div.row p.description i {
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
}
div#modal-factory div.slide div.list div.row h3 span {
	font-size: 0.9375rem;
}
div#modal-factory div.slide div.list div.row p.description {
	height: 120px;
}

/* scene
-------------------------------------------------------------------------------- */

div#modal-scene div.slide div.list p.row {
	height: 0px;
	overflow: hidden;
	opacity: 0;
	transition: 0.75s opacity ease-in-out;
}
div#modal-scene div.slide div.list p.row.active {
	height: auto;
	opacity: 1;
}
div#modal-scene div.slide div.list p.row img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}



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

footer#footer {
	position: relative;
	z-index: 10;
	color: #ffffff;
	padding: 100px 0px 40px 0px;
	background-color: #1e1e1e;
}
footer#footer p#button-page-top {
	position: absolute;
	width: 20px;
	right: calc(50% - 500px);
	top: 0px;
	z-index: 10;
	font-family: "Cinzel", serif;
	font-size: 0.8125rem;
	line-height: 20px;
	letter-spacing: 0.1em;
}
footer#footer p#button-page-top a {
	display: block;
	position: relative;
	height: 100%;
	color: #b4b4b4;
	transition: 0.25s color ease;
}
footer#footer p#button-page-top a:hover {
	color: #ffffff;
}
footer#footer p#button-page-top a::before {
	position: absolute;
	width: 0px;
	height: 40px;
	top: 0px;
	left: calc(50% - 0.5px);
	border-right: 1px solid #b4b4b4;
	content: "";
	transition: 0.25s border-color ease;
}
footer#footer p#button-page-top a:hover::before {
	border-color: #ffffff;
}
footer#footer p#button-page-top span {
	display: block;
	position: absolute;
	width: 112px;
	left: 20px;
	top: 5px;
	text-align: right;
	transform-origin: left top;
	transform: rotate(90deg);
}
footer#footer div.information {
	width: 1000px;
	margin: 0px auto 80px auto;
}
footer#footer div.information a {
	transition: 0.25s color ease;
}
footer#footer div.information a:hover {
	color: #b4b4b4;
}
footer#footer div.information h3 {
	margin-bottom: 30px;
}
footer#footer div.information h3 img {
	width: auto;
	height: 45px;
}
footer#footer p.button-corporate {
	position: absolute;
	right: calc(50% - 500px);
	top: 180px;
	font-size: 0.8125rem;
}
footer#footer p.button-corporate a {
	width: 320px;
	height: 50px;
	border-color: #787878;
	border-radius: 25px;
}
footer#footer p.button-corporate a:hover {
	border-color: #ffffff;
}
footer#footer p.button-corporate img {
	width: auto;
	height: 28px;
	margin-right: 10px;
}
footer#footer div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	font-family: "Cinzel", serif;
	font-size: 0.8125rem;
	color: #787878;
	margin: auto;
}
footer#footer div.misc a {
	transition: 0.25s color ease;
}
footer#footer div.misc a:hover {
	color: #ffffff;
}
