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

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



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

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	color: #ffffff;
	letter-spacing: 0.05em;
	background: url(../images/background-general.jpg) repeat left top;
	background-size: 1000px auto;
	-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: #bfc6d6;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 0.9375rem;
}
p.note {
	font-size: 0.8125rem;
	line-height: 1.375rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #ffffff;
}



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

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	outline: none;
	color: #001c5b;
	border: none;
	background-color: #ffffff;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 20px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 60px;
	text-align: center;
	font-weight: 500;
	cursor: pointer;
}
button:has(span.arrow) {
	justify-content: flex-start;
	position: relative;
	padding-left: 20px;
}
button span.arrow-alternate {
	right: 15px;
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	background-color: #ffffff;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [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: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #001c5b;
}
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: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #001c5b;
	border-bottom: 2px solid #001c5b;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 20px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #d2d7e2;
}
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.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-x::before {
	content: "\e901";
}
i.icon-instagram::before {
	content: "\e902";
}
i.icon-mail::before {
	content: "\e903";
}



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

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #7f8dad;
	margin: 20px 0px;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
iframe.wp-embedded-content {
	width: 100%;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #001c5b;
	border-radius: 5px;
}



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

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 90px;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50svh;
	pointer-events: none;
}
span.arrow {
	display: block;
	position: relative;
	width: 30px;
	height: 0px;
	transition: 0.25s transform ease;
}
a:hover span.arrow,
button:hover span.arrow {
	transform: translateX(5px);
}
span.arrow::before,
span.arrow::after {
	position: absolute;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
span.arrow-alternate {
	position: absolute;
	height: 30px;
	top: calc(50% - 15px);
	background-color: #001c5b;
	border-radius: 50%;
}
span.arrow-reverse {
	background-color: #ffffff;
}
span.arrow-reverse::before,
span.arrow-reverse::after {
	border-bottom-color: #001c5b;
}
span.arrow::before {
	width: 15px;
	left: calc(50% - 7.5px);
}
span.arrow::after {
	width: 5px;
	right: calc(50% - 7.5px);
	transform-origin: right bottom;
	transform: rotate(45deg);
}
p.button-default,
p.button-default a {
	display: flex;
	flex-wrap: wrap;
}
p.button-default {
	font-weight: 500;
	line-height: 1.25rem;
}
p.button-default a {
	align-items: center;
	position: relative;
	width: 280px;
	height: 60px;
	color: #001c5b;
	padding: 0px 20px;
	background-color: #ffffff;
	border-radius: 5px;
}
p.button-default span.arrow-alternate {
	right: 15px;
}
div.button-wrapper p.button-default:not(:last-child) {
	margin-bottom: 20px;
}
p.button-more {
	text-align: center;
	font-family: "Roboto", sans-serif;
}
p.button-more a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 150px;
	height: 40px;
	border: 1px solid #ffffff;
	padding-left: 20px;
	border-radius: 20px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-more a:hover {
	color: #001c5b;
	background-color: #ffffff;
}
p.button-more span.arrow {
	position: absolute;
	right: 10px;
	top: calc(50% + calc(0.9375rem * 0.25));
}
p.button-more a:hover span.arrow::before,
p.button-more a:hover span.arrow::after {
	border-color: #001c5b;
}
div.sns-mail ul {
	display: flex;
	flex-wrap: wrap;
}
div.sns-mail ul li {
	font-size: 1.125rem;
}
div.sns-mail ul li:not(:last-child) {
	margin-right: 10px;
}
div.sns-mail ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div.sns-mail ul li a:hover {
	color: #001c5b;
	background-color: #ffffff;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}

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

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



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

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, nav#navi, div.sns-mail) {
	position: fixed;
}
header#header *#logo {
	left: 40px;
	top: 20px;
	z-index: 20;
}
body.admin-bar header#header *#logo {
	top: 57px;
}
header#header *#logo img {
	width: 206px;
}
header#header :where(nav#navi, div.sns-mail) {
	top: 30px;
}
body.admin-bar header#header :where(nav#navi, div.sns-mail) {
	top: 62px;
}
header#header nav#navi {
	right: 170px;
}
header#header nav#navi > ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi > ul > li {
	position: relative;
}
header#header nav#navi > ul > li:where(.news, .recruit, .contact, .privacy-policy) {
	display: none;
}
header#header nav#navi > ul > li a {
	display: block;
	position: relative;
	padding: 0px 20px;
}
header#header nav#navi > ul > li > a {
	font-weight: 500;
}
header#header nav#navi > ul > li > a::before {
	position: absolute;
	width: calc(100% - 40px);
	left: 20px;
	bottom: 0px;
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s transform ease;
	transform-origin: left top;
	transform: scaleX(0);
}
header#header nav#navi > ul > li:hover > a::before,
body.about header#header nav#navi > ul > li.about > a::before,
body:where(.naia, .printgy, .tex-forward) header#header nav#navi > ul > li.products > a::before,
body.nishiyan-kun header#header nav#navi > ul > li.nishiyan-kun > a::before,
body.access header#header nav#navi > ul > li.access > a::before {
	transform: scaleX(1);
}
header#header nav#navi ul li div.nest {
	position: absolute;
	width: 200px;
	height: 0px;
	left: 0px;
	top: 30px;
	overflow: hidden;
	opacity: 0;
	transition: 0.25s height ease, 0.25s opacity ease;
}
header#header nav#navi ul li:hover div.nest {
	opacity: 1;
}
header#header nav#navi ul li:hover div.nest:has(ul li:nth-child(1)) {
	height: calc(calc(1.875rem * 1) + 5px);
}
header#header nav#navi ul li:hover div.nest:has(ul li:nth-child(2)) {
	height: calc(calc(1.875rem * 2) + 5px);
}
header#header nav#navi ul li:hover div.nest:has(ul li:nth-child(3)) {
	height: calc(calc(1.875rem * 3) + 5px);
}
header#header nav#navi ul li:hover div.nest:has(ul li:nth-child(4)) {
	height: calc(calc(1.875rem * 4) + 5px);
}
header#header nav#navi ul li:hover div.nest:has(ul li:nth-child(5)) {
	height: calc(calc(1.875rem * 5) + 5px);
}
header#header nav#navi ul li div.nest ul {
	padding-top: 5px;
}
header#header nav#navi ul li div.nest ul li a {
	position: relative;
	padding-left: 35px;
}
header#header nav#navi ul li div.nest ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 20px;
	top: 13px;
	border-left: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transform: rotate(135deg);
}
header#header div.sns-mail {
	right: 40px;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div:where(#cover, #space-cover) {
	height: 100svh;
}
body.admin-bar div:where(#cover, #space-cover) {
	height: calc(100svh - 32px);
}
div#cover {
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
	background-color: #001c5b;
}
body.admin-bar div#cover {
	top: 32px;
}
div#cover.hidden {
	visibility: hidden;
}
div#cover div.video {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.video video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.text {
	position: absolute;
	left: 60px;
	top: 160px;
	z-index: 1;
	text-shadow: 5px 5px 7.5px rgba(0, 0, 0, 0.25);
}
div#cover div.text h1 {
	font-family: "Raleway", sans-serif;
	font-size: 6rem;
	font-weight: 700;
	line-height: 6.5rem;
	letter-spacing: 0em;
	margin-bottom: 20px;
}
div#cover div.text p.sub {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3.25rem;
	transition-delay: 1.5s;
}
div#cover div.blind {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 2;
	background-color: #001c5b;
	content: "";
	opacity: 0;
	mix-blend-mode: multiply;
}
div#space-cover {
	margin-bottom: 240px;
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

div#title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 280px;
	background-color: #001c5b;
}
div#title p.image,
div#title p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#title p.image::before {
	background-color: #001c5b;
	content: "";
	opacity: 0.75;
	mix-blend-mode: darken;
}
div#title p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#title h1 {
	position: relative;
	z-index: 1;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	text-shadow: 5px 5px 7.5px rgba(0, 0, 0, 0.25);
}
body.naia div#title h1 img {
	width: 210px;
}
body:where(.printgy, .tex-forward) div#title h1::before {
	position: absolute;
	left: calc(100% + 10px);
	font-family: "Roboto", sans-serif;
	font-size: 0.8125rem;
	line-height: 0.8125rem;
	content: "TM";
}
body:where(.printgy, .tex-forward) div#title h1 span.sub {
	position: absolute;
	width: 100%;
	left: 0px;
	top: -45px;
	text-align: center;
	font-size: 0.9375rem;
}
body.printgy div#title h1::before {
	top: 25px;
}
body.printgy div#title h1 img {
	width: 270px;
}
body.tex-forward div#title h1::before {
	top: 5px;
}
body.tex-forward div#title h1 img {
	width: 360px;
}
body.nishiyan-kun div#title h1 img {
	width: 325px;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	position: relative;
	z-index: 1;
	padding-bottom: 120px;
	background: url(../images/background-general.jpg) repeat left bottom;
	background-size: 1000px auto;
}
main section div.inner-section {
	width: 780px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section header.common {
	margin-bottom: 40px;
}
main section header.common h2 {
	font-family: "Raleway", sans-serif;
	font-size: 5rem;
	font-weight: 700;
	line-height: 5rem;
	text-shadow: 5px 5px 7.5px rgba(0, 0, 0, 0.25);
}
main section header.common p.sub {
	font-size: 1.125rem;
	font-weight: 500;
}
main section div.background {
	position: absolute;
	width: 400px;
	height: 500px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease; 
	transform: translate(calc(-39.896px * 0.625), calc(100px * 0.625)) skew(-21.75deg);
}
main section div.background.active {
	opacity: 1;
	transform: translate(0px, 0px) skew(-21.75deg);
}
main section div.background-01 {
	left: calc(50% - 640px);
	top: 60px;
}
main :where(h2, h3).headline {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main p.more {
	font-family: "Roboto", sans-serif;
}
main p.more a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main p.more span.arrow {
	margin-top: calc(0.9375rem * 0.5);
}
main p.more a:hover span.arrow::before,
main p.more a:hover span.arrow::after {
	border-color: #bfc6d6;
}
main p.illust {
	position: relative;
}
main p.illust img {
	width: 100%;
}
main p.illust > img {
	animation-duration: 1.5s;
	animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
	animation-delay: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
main p.illust.type-01 > img {
	animation-name: type-01;
}
main p.illust.type-02 > img {
	animation-name: type-02;
}
main p.illust.type-03 > img {
	animation-name: type-03;
}
main p.illust.type-04 > img {
	animation-name: type-04;
}
main p.illust.type-05 > img {
	animation-name: type-05;
}
main p.illust.type-06 > img {
	animation-name: type-06;
}
@keyframes type-01 {
	0%, 100% { transform: translate(0%, 0%); }
	11.11% { transform: translate(-3%, 2%); }
	22.22% { transform: translate(3%, -2%); }
	33.33% { transform: translate(-2.25%, 1.5%); }
	44.44% { transform: translate(2.25%, -1.5%); }
	55.55% { transform: translate(-1.5%, 1%); }
	66.66% { transform: translate(1.5%, -1%); }
	77.77% { transform: translate(-0.75%, 0.5%); }
	88.88% { transform: translate(0.75%, -0.5%); }
}
@keyframes type-01 {
	0%, 100% { transform: translateX(0%); }
	11.11% { transform: translateX(-3%); }
	22.22% { transform: translateX(3%); }
	33.33% { transform: translateX(-2.25%); }
	44.44% { transform: translateX(2.25%); }
	55.55% { transform: translateX(-1.5%); }
	66.66% { transform: translateX(1.5%); }
	77.77% { transform: translateX(-0.75%); }
	88.88% { transform: translateX(0.75%); }
}
@keyframes type-02 {
	0%, 100% { transform: translateY(0%); }
	11.11% { transform: translateY(-3%); }
	22.22% { transform: translateY(3%); }
	33.33% { transform: translateY(-2.25%); }
	44.44% { transform: translateY(2.25%); }
	55.55% { transform: translateY(-1.5%); }
	66.66% { transform: translateY(1.5%); }
	77.77% { transform: translateY(-0.75%); }
	88.88% { transform: translateY(0.75%); }
}
@keyframes type-03 {
	0%, 100% { transform: rotate(0deg); }
	11.11% { transform: rotate(-5deg); }
	22.22% { transform: rotate(5deg); }
	33.33% { transform: rotate(-3.75deg); }
	44.44% { transform: rotate(3.75deg); }
	55.55% { transform: rotate(-2.5deg); }
	66.66% { transform: rotate(2.5deg); }
	77.77% { transform: rotate(-1.25deg); }
	88.88% { transform: rotate(1.25deg); }
}
@keyframes type-04 {
	0%, 100% { transform: skew(0deg); }
	11.11% { transform: skew(4deg); }
	22.22% { transform: skew(-4deg); }
	33.33% { transform: skew(3deg); }
	44.44% { transform: skew(-3deg); }
	55.55% { transform: skew(2deg); }
	66.66% { transform: skew(-2deg); }
	77.77% { transform: skew(1deg); }
	88.88% { transform: skew(-1deg); }
}
@keyframes type-05 {
	0%, 100% { transform: scaleX(1); }
	11.11% { transform: scaleX(1.16); }
	22.22% { transform: scaleX(0.92); }
	33.33% { transform: scaleX(1.08); }
	44.44% { transform: scaleX(0.96); }
	55.55% { transform: scaleX(1.04); }
	66.66% { transform: scaleX(0.98); }
	77.77% { transform: scaleX(1.02); }
	88.88% { transform: scaleX(0.99); }
}
@keyframes type-06 {
	0%, 100% { transform: scaleX(1); }
	11.11% { transform: scaleY(1.16); }
	22.22% { transform: scaleY(0.92); }
	33.33% { transform: scaleY(1.08); }
	44.44% { transform: scaleY(0.96); }
	55.55% { transform: scaleY(1.04); }
	66.66% { transform: scaleY(0.98); }
	77.77% { transform: scaleY(1.02); }
	88.88% { transform: scaleY(0.99); }
}
main p.illust span {
	position: absolute;
	z-index: 1;
	opacity: 0;
	transition: 1s opacity 1s ease-in-out, 1s transform 1s ease;
}
main p.illust.active span {
	opacity: 1;
}
main p.illust span.type {
	transform: scale(1.375);
}
main p.illust.active span.type {
	transform: scale(1);
}
main p.illust span.credit {
	width: 140px;
	font-family: "Roboto", sans-serif;
	font-size: 0.5625rem;
	line-height: 0.5625rem;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #001c5b;
	border-radius: 5px;
}
main article.common div.body ul li,
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before,
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol,
main ol.decimal {
	padding-left: 20px;
}
main article.common div.body ol li,
main ol.decimal li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #7f8dad;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #001c5b;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 50px;
	color: #001c5b;
	padding: 0px 20px;
	background-color: #ffffff;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #ffffff;
}
main div#pager,
main nav#navi-article {
	margin-top: 80px;
}
main div#pager,
main nav#navi-article ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :where(span.current, a) {
	margin: 0px 10px 10px 10px;
}
main div#pager span.current {
	position: relative;
}
main div#pager span.current::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 2px;
	border-bottom: 1px solid #ffffff;
	content: "";
}
main div#pager :where(span.current, a),
main nav#navi-article ul li a {
	display: block;
}
main div#pager :where(span.current, a) {
	padding: 0px 5px;
}
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: #bfc6d6;
}
main div#pager a:where(.prev, .next),
main nav#navi-article ul li:where(.prev, .next) {
	font-size: 1.125rem;
}
main div#pager a.prev,
main nav#navi-article ul li.prev {
	transform: scaleX(-1);
}
main nav#navi-article ul {
	position: relative;
	width: 240px;
	margin: 0px auto;
}
main nav#navi-article ul li:where(.prev, .next) {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li.prev {
	left: 0px;
}
main nav#navi-article ul li.next {
	right: 0px;
}

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

body.home main::before {
	position: absolute;
	width: 100%;
	height: 240px;
	left: 0px;
	top: -240px;
	background: url(../images/background-general.jpg) repeat left top;
	background-size: 1000px auto;
	content: "";
	clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
main section#home-news div.background-01 {
	left: auto;
	right: calc(50% - 760px);
	top: auto;
	bottom: 0px;
}
main section#home-news div.inner-section {
	margin-bottom: -240px;
	padding: 0px;
	transform: translateY(-240px);
}
main section#home-news header.common {
	text-align: right;
	margin-bottom: 10px;
}
main section#home-news div.content {
	color: #001c5b;
	padding: 40px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#home-news div.list-news {
	margin-bottom: 20px;
}
main section#home-news p.illust {
	width: calc(440px * 0.5);
	margin: -80px 120px 0px auto;	
	z-index: 1;
}
main section#home-news p.illust span.credit {
	left: calc(100% - 20px);
	bottom: 5px;
}
main section#home-about div.background-02 {
	right: calc(50% - 640px);
	bottom: -240px;
}
main section:where(#home-about, #home-products, #home-performance, #home-nishiyan-kun) div.inner-section {
	width: 1020px;
}
main section:where(#home-about, #home-products, #home-nishiyan-kun) p.summary {
	font-size: 1.125rem;
}
main section#home-about p:where(.summary, .button-more),
main section#home-products p.summary {
	margin-bottom: 40px;
}
main section#home-about p.image {
	max-height: 585px;
	margin-right: calc(50% - 50vw);
	padding-left: 240px;
}
main section#home-about p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-products div.list-wrapper {
	margin: 0px -130px;
}
main section#home-products div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
	transform: translateX(50px);
}
main section#home-products div.list div.row {
	position: relative;
	width: calc(33.33% - 40px);
	margin-right: 40px;
	clip-path: polygon(25% 0%, 125% 0%, 75% 100%, -25% 100%);
	transition: 1s opacity ease-in-out, 1s transform ease; 
	transform: translate(calc(-39.896px * 0.625), calc(100px * 0.625));
}
main section#home-products div.list.active div.row {
	transform: translate(0px, 0px);
}
main section#home-products div.list div.row p.image {
	position: relative;
	height: 500px;
	margin: 0px -100px;
}
main section#home-products div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #001c5b;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
	mix-blend-mode: multiply;
}
main section#home-products div.list div.row a:hover p.image::before {
	opacity: 0.5;
}
main section#home-products div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-products div.list div.row div.text {
	position: absolute;
	width: calc(100% - 100px);
	left: 0px;
	bottom: 20px;
}
main section#home-products div.list div.row div.text :where(p.number, h3) {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
}
main section#home-products div.list div.row div.text p.number {
	display: flex;
	flex-wrap: wrap;
	font-size: 2.5rem;
	line-height: 3rem;
	margin-bottom: 5px;
}
main section#home-products div.list div.row div.text p.number span {
	display: block;
	border-bottom: 2px solid #ffffff;
}
main section#home-products div.list div.row div.text h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 2rem;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section#home-products div.list div.row div.text h3 span.arrow-alternate {
	position: relative;
	top: auto;
	margin-left: 10px;
}
main section#home-products div.list div.row div.text p.description {
	line-height: 1.5rem;
}
main section#home-performance div.background-02 {
	right: calc(50% - 760px);
	bottom: -120px;
}
main section#home-performance p.image-background {
	position: absolute;
	aspect-ratio: 1440 / 830;
	width: 100vw;
	left: calc(50% - 50vw);
	top: 120px;
}
main section#home-performance p.image-background img {
	width: 100%;
}
main section#home-performance div.diagram {
	position: relative;
	height: 640px;
}
main section#home-performance div.diagram p.row {
	position: absolute;
	width: 360px;
	height: 360px;
	left: calc(50% - 180px);
	top: calc(50% - 180px);
	overflow: hidden;
	font-family: "Raleway", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 2.75rem;
	border-radius: 50%;
	transition: 1s opacity ease-in-out, 1s transform ease;
}
main section#home-performance div.diagram p.row-nishiyama {
	z-index: 3;
	transform: translate(0px, calc(-100px * 2.75));
}
main section#home-performance div.diagram.active p.row-nishiyama {
	transform: translate(0px, calc(-100px * 1.75));
}
main section#home-performance div.diagram p.row-mitsuya {
	z-index: 2;
	transform: translate(calc(-86.6025px * 2.75), calc(50px * 2.75));
}
main section#home-performance div.diagram.active p.row-mitsuya {
	transform: translate(calc(-86.6025px * 1.75), calc(50px * 1.75));
}
main section#home-performance div.diagram p.row-danax {
	z-index: 1;
	transform: translate(calc(86.6025px * 2.75), calc(50px * 2.75));
}
main section#home-performance div.diagram.active p.row-danax {
	transform: translate(calc(86.6025px * 1.75), calc(50px * 1.75));
}
main section#home-performance div.diagram p.row a,
main section#home-performance div.diagram p.row a span.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section#home-performance div.diagram p.row a {
	position: relative;
	width: 100%;
	height: 100%;
}
main section#home-performance div.diagram p.row-nishiyama a {
	background: linear-gradient(180deg, rgba(9, 138, 217, 0.75) 0%, rgba(9, 138, 217, 0.625) 50%, rgba(9, 138, 217, 0.125) 100%);
}
main section#home-performance div.diagram p.row-mitsuya a {
	background: linear-gradient(180deg, rgba(215, 95, 86, 0.75) 0%, rgba(215, 95, 86, 0.625) 50%, rgba(215, 95, 86, 0.125) 100%);
}
main section#home-performance div.diagram p.row-danax a {
	background: linear-gradient(180deg, rgba(93, 188, 91, 0.75) 0%, rgba(93, 188, 91, 0.625) 50%, rgba(93, 188, 91, 0.125) 100%);
}
main section#home-performance div.diagram p.row a:not(:has(span.arrow-alternate)) {
	cursor: default;
}
main section#home-performance div.diagram p.row a span.text {
	opacity: 0;
	transition: 1s opacity 1s ease-in-out;
}
main section#home-performance div.diagram.active p.row a span.text {
	opacity: 1;
}
main section#home-performance div.diagram p.row a span.arrow-alternate {
	position: relative;
	right: auto;
	border: 1px solid #ffffff;
	margin-left: 5px;
	background-color: transparent;
}
main section#home-performance div.text {
	width: 640px;
	margin: 0px auto;
}
main section#home-nishiyan-kun div.illust-text {
	display: flex;
	flex-wrap: wrap;
}
main section#home-nishiyan-kun div.illust-text p.illust {
	order: 1;
	width: calc(345px * 0.875);
}
main section#home-nishiyan-kun div.illust-text p.illust span.credit {
	left: calc(100% - 75px);
	bottom: 5px;
}
main section#home-nishiyan-kun div.illust-text div.text {
	width: 480px;
	margin-right: 40px;
}
main section#home-nishiyan-kun div.illust-text div.text p.description {
	margin-bottom: 40px;
}

/* about
-------------------------------------------------------------------------------- */

main section#who-we-are p.description {
	margin-bottom: 40px;
}
main section#who-we-are p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
main section#who-we-are p.name span {
	display: block;
}
main section#who-we-are p.name span.sub {
	margin-right: 1em;
}
main section#who-we-are p.name span.main {
	font-size: 1.125rem;
	font-weight: 500;
}
main section#profile div.background-02 {
	right: calc(50% - 760px);
	top: calc(50% - 80px);
}
main section#profile div.background-03 {
	left: calc(50% - 760px);
	bottom: -80px;
}
main section#profile div.list {
	margin-bottom: 80px;
}
main section#profile div.list div.row {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	border-bottom: 1px solid #7f8dad;
}
main section#profile div.list div.row:first-child {
	border-top: 1px solid #7f8dad;
}
main section#profile div.list div.row p.label {
	width: 140px;
}
main section#profile div.list div.row div.body {
	width: calc(100% - 140px);
}
main section#profile p.banner-sdgs-partner,
main section#profile p.banner-sdgs-partner a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#profile p.banner-sdgs-partner {
	margin: 0px auto;
}
main section#profile p.banner-sdgs-partner a {
	align-items: center;
	width: 280px;
	height: 180px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#profile p.banner-sdgs-partner img {
	width: 240px;
}

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

main section:where(#naia, #printgy, #tex-forward) div.background-01 {
	left: auto;
	right: calc(50% - 640px);
	top: 0px;
}
main section#naia div.background-02 {
	left: calc(50% - 760px);
	top: calc(25% + 80px);
}
main section#naia div.background-03 {
	right: calc(50% - 760px);
	top: calc(50% + 80px);
}
main section#naia div.background-04,
main section:where(#printgy, #tex-forward) div.background-03 {
	left: calc(50% - 760px);
	bottom: -120px;
}
main section:where(#naia, #printgy, #tex-forward) div.summary {
	margin-bottom: 120px;
}
main section:where(#naia, #printgy, #tex-forward) div.summary p.description {
	margin-bottom: 80px;
}
main section:where(#naia, #printgy, #tex-forward) div.summary p.image {
	max-height: 720px;
	margin: 0px calc(50% - 50vw);
}
main section:where(#naia, #printgy, #tex-forward) div.summary p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#naia div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px 100px 0px;
}
main section#naia div.list div.row {
	width: calc(33.33% - 20px);
	margin: 0px 20px 20px 0px;
	padding: 20px 0px;
	background-color: #547a69;
	border-radius: 10px;
}
main section#naia div.list div.row p:where(.icon, .diagram) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#naia div.list div.row p.icon {
	margin-bottom: 10px;
}
main section#naia div.list div.row p.icon img {
	width: 52px;
}
main section#naia div.list div.row h3 {
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
main section#naia div.list div.row p.diagram {
	align-items: center;
}
main section#naia div.list div.row p.diagram img {
	width: 200px;
}
main section#naia div.list div.row p.note {
	padding: 0px 20px;
}
main section#naia div.process {
	margin: 0px -120px;
}
main section#naia div.process p.diagram {
	margin-bottom: 20px;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#naia div.process p.diagram img {
	width: 100%;
}
main section:where(#printgy, #tex-forward) div.background-02 {
	right: calc(50% - 640px);
	top: calc(75% - 40px);
}
main section:where(#printgy, #tex-forward) div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section:where(#printgy, #tex-forward) div.list div.row p.description {
	margin-bottom: 40px;
}

/* nishiyan-kun
-------------------------------------------------------------------------------- */

main section#nishiyan-kun div.background-01 {
	left: auto;
	right: calc(50% - 760px);
}
main section#nishiyan-kun div.background-02 {
	left: calc(50% - 760px);
	top: calc(50% + 80px);
}
main section#nishiyan-kun div.background-03 {
	right: calc(50% - 640px);
	bottom: -240px;
}
main section#nishiyan-kun div:where(.summary, .profile, .sns) {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
main section#nishiyan-kun div:where(.summary, .profile) {
	margin-bottom: 80px;
}
main section#nishiyan-kun div:where(.summary, .sns) p.illust {
	order: 1;
}
main section#nishiyan-kun div.summary {
	margin-right: -45px;
}
main section#nishiyan-kun div.summary p.illust {
	width: 345px;
}
main section#nishiyan-kun div.summary p.illust span.type {
	width: 121px;
	right: 0px;
	top: 0px;
}
main section#nishiyan-kun div.summary p.illust span.credit {
	left: calc(100% - 80px);
	bottom: 5px;
}
main section#nishiyan-kun div:where(.summary, .profile) div.content {
	width: 440px;
}
main section#nishiyan-kun div:where(.summary, .sns) div.content,
main section#nishiyan-kun div.profile p.illust {
	margin-right: 40px;
}
main section#nishiyan-kun div.profile {
	margin-left: -30px;
}
main section#nishiyan-kun div.profile p.illust {
	width: 330px;
}
main section#nishiyan-kun div.profile p.illust span.type {
	width: 189px;
	right: 0px;
	top: -20px;
}
main section#nishiyan-kun div.profile p.illust span.credit {
	left: calc(100% - 240px);
	bottom: -20px;
}
main section#nishiyan-kun div.profile div.content h2 {
	font-family: "Raleway", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 3.5rem;
	margin-bottom: 20px;
}
main section#nishiyan-kun div.profile div.content div.list div.row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #7f8dad;
	padding: 20px;
}
main section#nishiyan-kun div.profile div.content div.list div.row:first-child {
	border-top: 1px solid #7f8dad;
}
main section#nishiyan-kun div.profile div.content div.list div.row p.label {
	width: 140px;
}
main section#nishiyan-kun div.profile div.content div.list div.row p.body {
	width: calc(100% - 140px);
}
main section#nishiyan-kun div.sns {
	margin-right: -10px;
}
main section#nishiyan-kun div.sns p.illust {
	width: 470px;
}
main section#nishiyan-kun div.sns p.illust span.type {
	width: 85px;
	left: 20px;
	bottom: 100px;
}
main section#nishiyan-kun div.sns p.illust span.credit {
	left: calc(100% - 140px);
	bottom: 15px;
}
main section#nishiyan-kun div.sns div.content {
	width: 280px;
	padding-top: 80px;
}

/* access
-------------------------------------------------------------------------------- */

main section#access div.list div.row {
	position: relative;
}
main section#access div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#access div.list div.row div.background-01 {
	top: -40px;
}
main section#access div.list div.row div.inner-row {
	position: relative;
}
main section#access div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: 40px;
}
main section#access div.list div.row div.image-text p.image {
	width: 445px;
}
main section#access div.list div.row div.image-text div.text {
	width: calc(100% - 485px);
	padding-top: 40px;
}
main section#access div.list div.row div.image-text div.text p.tel-fax {
	display: flex;
	flex-wrap: wrap;
}
main section#access div.list div.row div.image-text div.text p.tel-fax span {
	display: block;
}
main section#access div.list div.row div.image-text div.text p.tel-fax span:not(:last-child) {
	margin-right: 1rem;
}
main section#access div.list div.row div.map iframe {
	width: 100%;
	height: 480px;
}

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

main section#recruit div.list,
main section#recruit div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#recruit div.list div.row {
	position: relative;
}
main section#recruit div.list div.row:nth-child(1) div.background-01 {
	top: -40px;
}
main section#recruit div.list div.row:nth-child(1) div.background-02 {
	right: calc(50% - 640px);
	bottom: -120px;
}
main section#recruit div.list div.row:nth-child(2) div.background-01 {
	left: auto;
	right: calc(50% - 760px);
	top: 180px;
}
main section#recruit div.list div.row:nth-child(2) div.background-02 {
	left: calc(50% - 640px);
	bottom: -240px;
}
main section#recruit div.list div.row:nth-child(2n+1) div.inner-row {
	flex-direction: row-reverse;
	margin-right: calc(50% - 50vw);
}
main section#recruit div.list div.row div.inner-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
main section#recruit div.list div.row:nth-child(2n) div.inner-row {
	margin-left: calc(50% - 50vw);
}
main section#recruit div.list div.row div.main {
	width: calc(100% - 480px);
}
main section#recruit div.list div.row div.main p.image {
	max-height: 535px;
}
main section#recruit div.list div.row div.main p.image img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}
main section#recruit div.list div.row div.sub {
	width: 440px;
}
main section#recruit div.list div.row div.sub div.text {
	margin-bottom: 40px;
}
main section#recruit div.list div.row div.sub div.text p.description {
	border-bottom: 1px solid #7f8dad;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section#recruit div.list div.row div.sub div.text p.name {
	text-align: right;
}
main section#recruit p.button-default {
	justify-content: center;
}

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

main div.list-news div.row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #7f8dad;
	padding: 20px;
}
main div.list-news div.row:first-child {
	border-top: 1px solid #7f8dad;
}
main div.list-news div.row p.created,
main article.news header p.created {
	font-family: "Roboto", sans-serif;
}
main div.list-news div.row p.created {
	width: 140px;
}
main div.list-news div.row h3 {
	width: calc(100% - 140px);
	font-size: 0.9375rem;
	font-weight: 500;
}
main div.list-news div.row h3 a {
	display: block;
	position: relative;
	padding-right: 40px;
}
main div.list-news div.row h3 span.arrow-alternate {
	right: 0px;
}
main article.news header {
	text-align: center;
	margin-bottom: 80px;
}
main article.news header h1 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.25rem;
	margin-bottom: 10px;
}

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

main section.form div.header {
	margin-bottom: 80px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.header p.description {
	border-bottom: 1px solid #7f8dad;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section.form div.header div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.header div.list div.row p.label {
	position: relative;
	width: 120px;
	font-weight: 500;
	padding-left: 20px;
}
main section.form div.header div.list div.row p.label::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main section.form div.header div.list div.row p.body {
	width: calc(100% - 120px);
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	position: relative;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #7f8dad;
	margin-bottom: 0px;
	padding: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	border-top: 1px solid #7f8dad;
}
main section.form div.form div.component p.label {
	font-weight: 500;
	margin-bottom: 5px;
}
main section.form div.form div.component p.label span.require {
	font-size: 0.8125rem;
	margin-left: 5px;
}
main section.form div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -5px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body :where(span.mwform-radio-field, span.mwform-checkbox-field),
main section.form div.form div.component div.body :where(span.mwform-radio-field, span.mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body :where(span.mwform-radio-field, span.mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body :where(span.mwform-radio-field, span.mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form :where(div.component div.body, div.agreement) span.error {
	position: absolute;
	font-size: 0.8125rem;
	color: #ffffff;
}
main section.form div.form div.component div.body span.error {
	position: absolute;
	right: 0px;
	top: 0px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 80px;
}
main section.form div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section.form div.form div.agreement span.mwform-checkbox-field,
main section.form div.form div.agreement span.mwform-checkbox-field > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field {
	margin-right: 5px;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	width: 100%;
	left: 0px;
	bottom: -1.875rem;
	text-align: center;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}

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

main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}



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

footer#footer {
	position: relative;
	z-index: 1;
	padding-bottom: 40px;
	background: url(../images/background-general.jpg) repeat left top;
	background-size: 1000px auto;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 30px;
	bottom: 40px;
	z-index: 10;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
div.footer footer#footer p#button-page-top {
	position: absolute;
	top: -120px;
	bottom: auto;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
	width: 30px;
	height: 80px;
}
footer#footer p#button-page-top a::before,
footer#footer p#button-page-top a::after {
	position: absolute;
	border-left: 1px solid #ffffff;
	width: 0px;
	left: 5px;
	top: 0px;
	content: "";
	transition: 0.25s border-color ease;
}
footer#footer p#button-page-top a:hover::before,
footer#footer p#button-page-top a:hover::after {
	border-color: #9faac1;
}
footer#footer p#button-page-top a::before {
	height: 100%;
}
footer#footer p#button-page-top a::after {
	height: 5px;
	transform-origin: left top;
	transform: rotate(-45deg);
}
footer#footer p#button-page-top span {
	display: block;
	writing-mode: vertical-rl;
	font-family: "Roboto", sans-serif;
	font-size: 0.8125rem;
	line-height: 25px;
}
footer#footer div.information-misc,
footer#footer div.information-misc div.misc,
footer#footer div.information-misc div.misc nav#navi-footer div.list {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information-misc {
	justify-content: space-between;
	width: calc(100% - 80px);
	border-top: 1px solid #7f8dad;
	margin: 0px auto;
	padding-top: 40px;
}
footer#footer div.information-misc div.information p.logo img {
	width: 206px;
}
footer#footer div.information-misc div.information h3 {
	font-size: 0.9375rem;
	font-weight: 500;
}
footer#footer div.information-misc div.information p.tel-fax {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information-misc div.information p.tel-fax span {
	display: block;
}
footer#footer div.information-misc div.information p.tel-fax span:not(:last-child) {
	margin-right: 1rem;
}
footer#footer div.information-misc div.misc nav#navi-footer,
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row:not(:last-child) {
	margin-right: 20px;
}
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row {
	border-left: 1px solid #7f8dad;
	padding-left: 20px;
}
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row > ul > li a {
	display: block;
}
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row > ul > li > a {
	position: relative;
	padding-left: 20px;
}
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row > ul > li > a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row > ul > li div.nest ul li a {
	position: relative;
	padding-left: 35px;
}
footer#footer div.information-misc div.misc nav#navi-footer div.list div.row > ul > li div.nest ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 20px;
	top: 13px;
	border-left: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transform: rotate(135deg);
}
