/* --------------------------------------------------------------------------------
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: "yu-gothic-pr6n", "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	color: #021b2b;
	letter-spacing: 0.05em;
	-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: #818d95;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #ff0000;
}



/* --------------------------------------------------------------------------------
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;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #021b2b;
	border: none;
	background-color: #f2f4f4;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 60px;
	text-align: center;
	font-family: "yu-gothic-pr6n", "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	color: #ffffff;
	border: 1px solid #021b2b;
	cursor: pointer;
	background-color: #021b2b;
	border-radius: 30px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	color: #021b2b;
	background-color: #ffffff;
}
button {
	position: relative;
}
button::before {
	position: absolute;
	width: 7px;
	height: 7px;
	right: 26.5px;
	top: calc(50% - 3.5px);
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateX(-1px) rotate(-45deg);
}
button:hover::before {
	border-color: #021b2b;
}
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: #f2f4f4;
}
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: #021b2b;
}
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 #021b2b;
	border-bottom: 2px solid #021b2b;
}
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 15px;
}
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: #818d95;
}
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-facebook::before {
	content: "\e900";
}
i.icon-instagram::before {
	content: "\e901";
}



/* --------------------------------------------------------------------------------
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 #e6e8ea;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f2f4f4;
}



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

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
div#trigger {
	position: absolute;
	top: 37.5svh;
	pointer-events: none;
}
div#cookie-consent {
	position: fixed;
	width: 100%;
	left: 0px;
	bottom: 0px;
	z-index: 100;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 300;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.875);
	transition: 0.375s transform ease;
	transform: translateY(100%);
}
div.scroll div#cookie-consent.active {
	transform: translateY(0%);
}
div.scroll div#cookie-consent.close {
	transform: translateY(100%);
}
div#cookie-consent div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 1100px;
	margin: 0px auto;
	padding: 20px 0px;
}
div#cookie-consent div.text p:where(.description, .button) {
	margin-right: 40px;
}
div#cookie-consent div.text p.description {
	width: calc(100% - 375px);
	line-height: 1.625rem;
}
div#cookie-consent div.text p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 40px;
	font-weight: 400;
	color: #000000;
	border: 1px solid #ffffff;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 20px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#cookie-consent div.text p.button:hover {
	color: #ffffff;
	background-color: transparent;
}
div#cookie-consent div.text p.detail {
	text-align: center;
}
div#cookie-consent div.text p.detail a {
	display: block;
	width: 115px;
	border-bottom: 1px solid #ffffff;
	transition: 0.25s color ease, 0.25s border-color ease;
}
div#cookie-consent div.text p.detail a:hover {
	color: #999999;
	border-color: #999999;
}
nav.navi a {
	display: inline-block;
	position: relative;
}
nav.navi a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #818d95;
	content: "";
	transition: 0.25s transform ease;
	transform-origin: left top;
	transform: scaleX(0);
}
nav.navi a:hover::before {
	transform: scaleX(1);
}
div.sns ul {
	display: flex;
	flex-wrap: wrap;
}
div.sns ul li {
	font-size: 1.875rem;
}
div.sns ul li:not(:last-child) {
	margin-right: 20px;
}
:where(p, i).arrow {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s border-color ease, 0.25s background-color ease;
}
a:hover :where(p, i).arrow {
	background-color: #021b2b;
}
p.arrow::before,
i.arrow::before {
	position: absolute;
	width: 7px;
	height: 7px;
	left: calc(50% - 3.5px);
	top: calc(50% - 3.5px);
	border-right: 1px solid #021b2b;
	border-bottom: 1px solid #021b2b;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateX(-1px) rotate(-45deg);
}
a:hover p.arrow::before,
a:hover i.arrow::before {
	border-color: #ffffff;
}
p.button-default,
p.button-default :where(a, span) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.5rem;
}
p.button-default :where(a, span) {
	align-items: center;
	position: relative;
	width: 320px;
	height: 60px;
	color: #ffffff;
	border: 1px solid #021b2b;
	background-color: #021b2b;
	border-radius: 30px;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
p.button-default :where(a, span):hover {
	color: #021b2b;
	background-color: #ffffff;
}
p.button-default :where(a, span)::before {
	position: absolute;
	width: 7px;
	height: 7px;
	right: 26.5px;
	top: calc(50% - 3.5px);
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateX(-1px) rotate(-45deg);
}
p.button-default :where(a, span):hover::before {
	border-color: #021b2b;
}
p.button-reverse :where(a, span) {
	color: #021b2b;
	border-color: #ffffff;
	background-color: #ffffff;
}
p.button-reverse :where(a, span):hover {
	color: #ffffff;
	background-color: #021b2b;
}
p.button-reverse :where(a, span)::before {
	border-color: #021b2b;
}
p.button-reverse :where(a, span):hover::before {
	border-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: 1.25s;
}
*.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;
}
*.fade-mask > * {
	display: flex;
	flex-wrap: wrap;
}
*.fade-mask > * > * {
	display: block;
	line-height: 1em;
	color: #ffffff;
	padding: 10px 15px;
	background-color: #021b2b;
	transition: 0.75s clip-path ease;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
*.fade-mask.active > * > * {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
*.fade-mask > *:nth-child(1) > * {
	transition-delay: calc(0.125s * 1);
}
*.fade-mask > *:nth-child(2) > * {
	transition-delay: calc(0.125s * 2);
}
*.fade-mask > *:nth-child(3) > * {
	transition-delay: calc(0.125s * 3);
}
*.fade-mask > *:nth-child(4) > * {
	transition-delay: calc(0.125s * 4);
}
*.fade-mask > *:nth-child(5) > * {
	transition-delay: calc(0.125s * 5);
}
*.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;
}



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

header#header {
	position: fixed;
	width: 100%;
	height: 80px;
	left: 0px;
	top: 0px;
	z-index: 100;
	color: #ffffff;
	background-color: #021b2b;
}
body.admin-bar header#header {
	top: 32px;
}
header#header :where(*#logo, nav#navi) {
	position: absolute;
}
header#header *#logo {
	left: 40px;
	top: 29px;
}
header#header *#logo img {
	width: 307px;
}
header#header nav#navi {
	right: 40px;
	top: 25px;
}
header#header nav#navi div.list,
header#header nav#navi div.list div.row > ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi div.list div.row:first-child {
	display: none;
}
header#header nav#navi div.list div.row:not(:last-child),
header#header nav#navi ul li:not(:last-child) {
	margin-right: 20px;
}
header#header nav#navi div.list div.row > ul li ul {
	display: none;
}
header#header :where(p.button-contact, div.sns, div.button-wrapper) {
	display: none;
}



/* --------------------------------------------------------------------------------
breadcrumb
-------------------------------------------------------------------------------- */

div#breadcrumb {
	padding: 30px 40px 0px 40px;
	background-color: #f2f4f4;
}
div#breadcrumb p {
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #818d95;
}
div#breadcrumb p a {
	transition: 0.25s color ease;
}
div#breadcrumb p a:hover {
	color: #021b2b;
}
div#breadcrumb p span:not(:last-child)::after {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 1px solid #818d95;
	border-bottom: 1px solid #818d95;
	margin: 0px 10px;
	content: "";
	transform: translateY(-1px) rotate(-45deg);
}



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

div#cover {
	position: relative;
	height: calc(100svh - 80px);
	overflow: hidden;
	margin-bottom: 120px;
}
body.admin-bar div#cover {
	height: calc(100svh - 112px);
}
div#cover div:where(.text, .slide) {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 20;
	padding-bottom: 80px;
	background-color: #021b2b;
	transition: 1.25s opacity ease-in-out;
}
div#cover.image div.text {
	pointer-events: none;
	opacity: 0;
}
div#cover div.text h1 {
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out;
}
div#cover.text div.text h1 {
	opacity: 1;
}
div#cover div.text h1 img {
	width: 746px;
}
div#cover div.slide div:where(.image, .navi) {
	position: absolute;
	width: 100%;
	left: 0px;
}
div#cover div.slide div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.slide div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.slide div.image p.row:nth-child(5) img {
	object-position: 12.5% center;
}
div#cover div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 10;
	bottom: 20px;
}
div#cover div.slide div.navi p.button {
	width: 10px;
	height: 10px;
	cursor: pointer;
	background-color: #ffffff;
	opacity: 0.25;
	border-radius: 50%;
	transition: 0.25s opacity ease;
}
div#cover div.slide div.navi p.button:not(:last-child) {
	margin-right: 10px;
}
div#cover div.slide div.navi p.button:where(:hover, .active) {
	opacity: 1;
}
div#cover div.slide-large div.image {
	height: 100%;
	top: 0px;
}
div#cover div.slide-small {
	display: none;
}



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

div#title {
	padding: 40px 0px 60px 0px;
	background-color: #f2f4f4;
}
div#title div.text {
	width: 960px;
	margin: 0px auto;
}
div#title div.text p.sub {
	font-family: "Outfit", sans-serif;
	font-weight: 200;
	letter-spacing: 0.2em;
	margin-bottom: 5px;
}
div#title div.text h1 {
	font-size: 2rem;
	line-height: 2.5rem;
	letter-spacing: 0.15em;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 1100px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section div.inner-section:has(aside#sidebar) {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section div.content {
	width: calc(100% - 300px);
}
main section aside#sidebar {
	width: 200px;
	right: 0px;
	top: 120px;
}
main section aside#sidebar div.block:not(:last-child) {
	margin-bottom: 40px;
}
main section aside#sidebar div.block p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 35px;
	color: #ffffff;
	margin-bottom: 10px;
	padding: 0px 10px;
	background-color: #818d95;
}
main section aside#sidebar div.block ul li a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}
main section aside#sidebar div.block ul li a::before {
	position: absolute;
	width: 7px;
	height: 7px;
	left: 4px;
	top: 12.5px;
	border-right: 1px solid #021b2b;
	border-bottom: 1px solid #021b2b;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateX(-1px) rotate(-45deg);
}
main section aside#sidebar div.block ul li a:hover::before {
	border-color: #818d95;
}
main section aside#sidebar div.block select {
	display: none;
}
main nav#navi-small {
	display: none;
}
main p#banner-special-site {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main p#banner-special-site img {
	width: 800px;
	transition: 0.25s filter ease;
}
main p#banner-special-site a:hover img {
	filter: brightness(0.875);
}
main h2.headline {
	font-size: 2rem;
	line-height: 2.5rem;
	border-bottom: 1px solid #021b2b;
	margin-bottom: 40px;
	padding-bottom: 10px;
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #021b2b;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
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: #f2f4f4;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #e6e8ea;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f2f4f4;
}
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: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #021b2b;
	border-radius: 25px;
	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: #818d95;
}
main :where(div#pager, 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),
main nav#navi-article ul li a {
	position: relative;
}
main div#pager :where(span.current, a) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div#pager a:not(.prev):not(.next) {
	background-color: #f2f4f4;
}
main div#pager span.current,
main div#pager a:hover:not(.prev):not(.next) {
	color: #ffffff;
	background-color: #021b2b;
}
main div#pager a:where(.prev, .next)::before,
main nav#navi-article ul li:where(.prev, .next) a::before {
	position: absolute;
	width: 7px;
	height: 7px;
	top: calc(50% - 3.5px);
	border-left: 1px solid #021b2b;
	border-top: 1px solid #021b2b;
	content: "";
	transition: 0.25s border-color ease;
}
main div#pager a:where(.prev, .next):hover::before,
main nav#navi-article ul li:where(.prev, .next) a:hover::before {
	border-color: #818d95;
}
main div#pager a:where(.prev, .next)::before {
	left: calc(50% - 3.5px);
}
main div#pager a.prev::before,
main nav#navi-article ul li.prev a::before {
	transform: translateX(1px) rotate(-45deg);
}
main div#pager a.next::before,
main nav#navi-article ul li.next a::before {
	transform: translateX(-1px) rotate(135deg);
}
main div#pager :where(span.current, a) {
	margin: 0px 5px 10px 5px;
}
main nav#navi-article {
	border-top: 1px solid #e6e8ea;
	padding-top: 40px;
}
main nav#navi-article ul {
	position: relative;
}
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;
}
main nav#navi-article ul li a {
	display: block;
	transition: 0.25s color ease;
}
main nav#navi-article ul li a:hover {
	color: #818d95;
}
main nav#navi-article ul li.prev a {
	padding-left: 15px;
}
main nav#navi-article ul li.prev a::before {
	left: 0px;
}
main nav#navi-article ul li.next a {
	padding-right: 15px;
}
main nav#navi-article ul li.next a::before {
	right: 0px;
}

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

main section#home-news header {
	margin-bottom: 40px;
}
main section#home-news header h2 {
	font-family: "Outfit", sans-serif;
	font-size: 2rem;
	font-weight: 200;
	line-height: 2.5rem;
	letter-spacing: 0.2em;
}
main section#home-news div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#home-news div.column div:where(.left, .right) {
	width: calc(50% - 40px);
}
main section#home-news div.column div:where(.left, .right) h3.headline {
	font-size: 1.375rem;
	letter-spacing: 0.15em;
	border-bottom: 1px solid #021b2b;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
main section#home-news div.column div:where(.left, .right) div.list-news {
	margin-bottom: 20px;
}
main section#home-news div.column div:where(.left, .right) div.list-news div.row {
	padding-bottom: 20px;
}
main section#home-news div.column div:where(.left, .right) div.list-news div.row div.created-category {
	margin-bottom: 10px;
}
main section#home-news div.column div:where(.left, .right) p.more,
main section#home-news div.column div:where(.left, .right) p.more a {
	display: flex;
	flex-wrap: wrap;
}
main section#home-news div.column div:where(.left, .right) p.more {
	justify-content: flex-end;
}
main section#home-news div.column div:where(.left, .right) p.more a {
	align-items: center;
}
main section#home-news div.column div:where(.left, .right) p.more i.arrow {
	margin-left: 10px;
	background-color: #f2f4f4;
}
main section#home-news div.column div:where(.left, .right) p.more a:hover i.arrow {
	background-color: #021b2b;
}
main section#home-about div.inner-section {
	width: auto;
	padding: 0px;
}
main section#home-about a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 685px;
}
main section#home-about p.image {
	position: absolute;
	width: 100%;
	height: 100%;
}
main section#home-about p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-about div.text {
	position: relative;
	z-index: 1;
	color: #ffffff;
}
main section#home-about div.text p.sub,
main section#home-menu div.list div.row div.text p.sub,
main section#home-story div.text p.sub,
main section#home-misc div.list div.row:not(.row-blog) div.text p.sub {
	font-family: "Outfit", sans-serif;
	font-weight: 200;
	letter-spacing: 0.2em;
}
main section#home-about div.text h2 {
	font-size: 2rem;
	letter-spacing: 0.15em;
}
main section#home-about div.text h2.fade-mask span i {
	color: #021b2b;
	background-color: #ffffff;
}
main section#home-about div.text p.sub {
	margin-left: 20px;
}
main section#home-about div.text h2 span:nth-child(1) {
	margin-left: 40px;
}
main section#home-about div.text h2 span:nth-child(2) {
	margin-left: 80px;
}
main section#home-about div.text h2.small {
	display: none;
}
main section#home-about div.text p.button-default {
	margin-left: 160px;
}
main section#home-about div.text p.button-default span {
	width: 260px;
	border: none;
	padding: 0px;
	border-radius: 0px;
	transition: 0.25s color ease, 0.25s background-color ease, 0.75s clip-path 0.5s ease;
}
main section#home-menu div.inner-section {
	padding: 160px 0px;
}
main section#home-menu div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#home-menu div.list div.row {
	width: calc(50% - 20px);
}
main section#home-menu div.list div.row div.text {
	position: relative;
	padding: 20px;
	background-color: #f2f4f4;
}
main section#home-menu div.list div.row div.text p.sub,
main section#home-story div.text p.sub,
main section#home-misc div.list div.row:not(.row-blog) div.text p.sub {
	margin-bottom: 5px;
}
main section#home-menu div.list div.row div.text h3 {
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: 0.15em;
	margin-bottom: 10px;
}
main section#home-menu div.list div.row div.text p.arrow {
	position: absolute;
	right: 20px;
	bottom: 20px;
	background-color: #ffffff;
}
main section#home-menu div.list div.row a:hover div.text p.arrow {
	background-color: #021b2b;
}
main section#home-story {
	background: url(../images/background-paper.jpg) repeat left top;
	background-size: 1000px auto;
}
main section#home-story div.inner-section {
	padding: 80px 0px 0px 0px;
}
main section#home-story div.text {
	position: relative;
	margin-bottom: 60px;
}
main section#home-story div.text h2 {
	font-size: 2rem;
	line-height: 3.5rem;
	letter-spacing: 0.15em;
}
main section#home-story div.text p.button-default {
	justify-content: flex-end;	
	margin-top: -60px;
}
main section#home-story div.text p.button-default a {
	border: none;
}
main section#home-story div.image {
	overflow: hidden;
	margin: 0px calc(50% - 50vw);
}
main section#home-story div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 99999px;
	animation: home-story 60s linear infinite forwards;
}
@keyframes home-story {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-2415px); }
}
main section#home-story div.image p.row {
	height: 240px;
}
main section#home-story div.image p.row img {
	width: auto;
	height: 100%;
}
main section#home-misc div.inner-section {
	padding-top: 160px;
}
main section#home-misc div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
main section#home-misc div.list div.row {
	margin: 0px 40px 40px 0px;
}
main section#home-misc div.list div:where(.row-recruit, .row-blog) {
	height: 300px;
}
main section#home-misc div.list div.row-recruit {
	width: 760px;
}
main section#home-misc div.list div.row-blog {
	width: 300px;
	text-align: center;
}
main section#home-misc div.list div:where(.row-brand, .row-store) {
	width: 530px;
	height: 240px;
}
main section#home-misc div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	overflow: hidden;
	height: 100%;
}
main section#home-misc div.list div.row:not(.row-blog) a {
	border-radius: 20px;
}
main section#home-misc div.list div.row-blog a {
	justify-content: center;
	padding-top: 12.5%;
	background: url(../images/background-blog.jpg) no-repeat center;
	background-size: 100% auto;
	border-radius: 50%;
	transition: 1s transform ease-in-out;
}
main section#home-misc div.list div.row-blog a:hover {
	transform: rotateY(360deg);
}
main section#home-misc div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main section#home-misc div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #021b2b;
	content: "";
	opacity: 0.375;
}
main section#home-misc div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-misc div.list div.row div.text {
	position: relative;
	z-index: 1;
	color: #ffffff;
}
main section#home-misc div.list div.row:not(.row-blog) div.text {
	padding: 0px 40px;
}
main section#home-misc div.list div.row:not(.row-blog) div.text p.logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 30px;
	margin-bottom: 10px;
}
main section#home-misc div.list div.row-brand div.text p.logo img {
	width: calc(307px * 0.875);
}
main section#home-misc div.list div.row-store div.text p.logo img {
	width: 310px;
}
main section#home-misc div.list div.row:not(.row-blog) div.text h2 {
	font-size: 2rem;
	line-height: 2.5rem;
	letter-spacing: 0.15em;
}
main section#home-misc div.list div.row-blog div.text p.logo {
	margin-bottom: 20px;
}
main section#home-misc div.list div.row-blog div.text p.logo img {
	width: 230px;
}
main section#home-misc div.list div.row-blog div.text p.description {
	font-weight: 700;
}
main section#home-misc div.list div.row p.arrow {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	background-color: transparent;
}
main section#home-misc div.list div.row a:hover p.arrow {
	background-color: #ffffff;
}
main section#home-misc div.list div.row p.arrow::before {
	border-color: #ffffff;
}
main section#home-misc div.list div.row a:hover p.arrow::before {
	border-color: #021b2b;
}

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

main section#about {
	background-color: #f2f4f4;
}
main section#about div.inner-section {
	padding: 0px 0px 180px 0px;
}
main section#about div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
}
main section#about div.list div.row:not(:last-child) {
	margin-bottom: 180px;
}
main section#about div.list div.row:nth-child(2n+1) {
	flex-direction: row-reverse;
	margin-right: calc(50% - 50vw);
}
main section#about div.list div.row:nth-child(2n) {
	margin-left:  calc(50% - 50vw);
}
main section#about div.list div.row::before {
	position: absolute;
	width: 100vw;
	height: calc(100% - 80px);
	bottom: -60px;
	background-color: #ffffff;
	content: "";
}
main section#about div.list div.row:nth-child(2n+1)::before {
	right: 0px;
}
main section#about div.list div.row:nth-child(2n)::before {
	left: 0px;
}
main section#about div.list div.row :where(p.imge, div.text) {
	position: relative;
}
main section#about div.list div.row p.image {
	width: calc(100% - 430px);
	height: 530px;
}
main section#about div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#about div.list div.row div.text {
	width: 390px;
}
main section#about div.list div.row div.text h2 {
	font-size: 2rem;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}
main section#about div.list div.row div.text h2 span:not(:last-child) {
	margin-bottom: 10px;
}

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

main section#company aside#sidebar {
	position: absolute;
	left: 0px;
	top: 120px;
}
div.sidebar-start main section#company aside#sidebar {
	position: fixed;
	left: calc(50% - 550px);
	top: 200px;
}
body.admin-bar div.sidebar-start main section#company aside#sidebar {
	top: 232px;
}
div.sidebar-end main section#company aside#sidebar {
	position: absolute;
	left: 0px;
	top: auto;
	bottom: 120px;
}
body.admin-bar div.sidebar-end main section#company aside#sidebar {
	top: auto;
	bottom: 88px;
}
main section#company div#trigger-company {
	position: absolute;
	top: -80px;
}
body.admin-bar main section#company div#trigger-company {
	top: -112px;
}
main section#company aside#sidebar ul li:not(:last-child) {
	margin-bottom: 5px;
}
main section#company aside#sidebar ul li a {
	display: inline-block;
	position: relative;
	color: #677680;
	transition: 0.25s color ease;
}
main section#company aside#sidebar ul li a:hover,
main section#company aside#sidebar ul li.start a,
main section#company aside#sidebar ul li.end a:hover {
	color: #021b2b;
}
main section#company aside#sidebar ul li.end a {
	color: #677680;
}
main section#company aside#sidebar ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: -16px;
	top: 13px;
	background-color: #021b2b;
	content: "";
	opacity: 0;
	border-radius: 50%;
	transition: 0.25s opacity ease;
}
main section#company aside#sidebar ul li a:hover::before,
main section#company aside#sidebar ul li.start a::before,
main section#company aside#sidebar ul li.end a:hover::before {
	opacity: 1;
}
main section#company aside#sidebar ul li.end a::before {
	opacity: 0;
}
main section#company div.content {
	margin-left: auto;
}
main section#company div.block:not(:last-child) {
	margin-bottom: 80px;
}
main section#company div#outline div.list div.row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #e6e8ea;
	padding: 0px 20px 20px 20px;
}
main section#company div#outline div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#company div#outline div.list div.row p.label {
	width: 160px;
	color: #818d95;
}
main section#company div#outline div.list div.row p.body {
	width: calc(100% - 160px);
}
main section#company div#brand div.list,
main section#company div#brand div.list p.row a {
	display: flex;
	flex-wrap: wrap;
}
main section#company div#brand div.list {
	margin: 0px -20px 40px 0px;
}
main section#company div#brand div.list p.row {
	width: calc(50% - 20px);
	margin: 0px 20px 20px 0px;
}
main section#company div#brand div.list p.row a {
	justify-content: center;
	align-items: center;
	height: 160px;
	border: 1px solid #e6e8ea;
	transition: 0.25s background-color ease;
}
main section#company div#brand div.list p.row a:hover {
	background-color: #f2f4f4;
}
main section#company div#brand div.list p.row img {
	width: 245px;
}
main section#company div#history div.list div.row {
	position: relative;
	padding-bottom: 40px;
}
main section#company div#history div.list div.row::before,
main section#company div#history div.list div.row::after {
	position: absolute;
	content: "";
}
main section#company div#history div.list div.row::before {
	width: 0px;
	height: 100%;
	left: 119.5px;
	top: 15px;
	border-right: 1px solid #e6e8ea;
	transition: 0.5s transform 0.25s ease;
	transform-origin: left top;
	transform: scaleY(0);
}
main section#company div#history div.list div.row.active::before {
	transform: scaleY(1);
}
main section#company div#history div.list div.row::after {
	width: 10px;
	height: 10px;
	left: 115px;
	top: 15px;
	background-color: #021b2b;
	border-radius: 50%;
	transition: 0.75s transform ease;
	transform: scale(0);
}
main section#company div#history div.list div.row.active::after {
	transform: scale(1);
}
main section#company div#history div.list div.row p:where(.label, .body) {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main section#company div#history div.list div.row.active p:where(.label, .body) {
	opacity: 1;
}
main section#company div#history div.list div.row p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#company div#history div.list div.row p.label span {
	display: block;
}
main section#company div#history div.list div.row p.label span.main {
	width: 140px;
	font-family: "Outfit", sans-serif;
	font-size: 2rem;
	font-weight: 200;
	line-height: 2.5rem;
	letter-spacing: 0.2em;
}
main section#company div#history div.list div.row p.label span.sub {
	width: calc(100% - 140px);
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #818d95;
}
main section#company div#history div.list div.row p.body {
	text-align: left;
	padding-left: 140px;
	transition-delay: 0.25s;
}
main section#company div#history div.list-02 div.row:last-child:before {
	display: none;
}
main section#company div#history p.button-more {
	display: none;
}

/* network
-------------------------------------------------------------------------------- */

main section#network div.diagram {
	position: relative;
	margin-bottom: 80px;
}
main section#network div.diagram p.map svg {
	width: 100%;
	height: auto;
}
main section#network div.diagram p.map svg g:where(#b, #c),
main section#network div.diagram ul li {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main section#network div.diagram.active p.map svg g:where(#b, #c),
main section#network div.diagram.active ul li {
	opacity: 1;
}
main section#network div.diagram p.map svg g#b,
main section#network div.diagram ul li:nth-child(1) {
	transition-delay: calc(1.25s * 1);
}
main section#network div.diagram p.map svg g#c,
main section#network div.diagram ul li:nth-child(2) {
	transition-delay: calc(1.25s * 2);
}
main section#network div.diagram ul,
main section#network div.diagram ul li {
	display: flex;
	flex-wrap: wrap;
}
main section#network div.diagram ul {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 1;
}
main section#network div.diagram ul li {
	justify-content: center;
	align-items: center;
	font-size: 0.875rem;
	line-height: 0.875rem;
}
main section#network div.diagram ul li::before {
	display: block;
	width: 50px;
	height: 15px;
	margin-right: 5px;
	content: "";
}
main section#network div.diagram ul li:nth-child(1)::before {
	background-color: #0087b7;
}
main section#network div.diagram ul li:nth-child(2)::before {
	background-color: #64c8d2;
}
main section#network div.diagram ul li:not(:last-child) {
	margin-right: 20px;
}
main section#network div.block:not(:last-child) {
	margin-bottom: 80px;
}
main section#network div.block div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
main section#network div.block div.list div.row {
	width: calc(50% - 40px);
	text-align: left;
	margin: 0px 40px 40px 0px;
}
main section#network div.block div.list div.row h3 {
	font-size: 1.25rem;
}
main section#network div.block div.list div.row h3:not(:last-child) {
	margin-bottom: 10px;
}
main section#network div.block div.list div.row p {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

/* story
-------------------------------------------------------------------------------- */

main section#story div.inner-section {
	padding: 0px 0px 120px 0px;
}
main section#story header {
	position: relative;
	padding: 80px 0px 260px 0px;
}
main section#story header::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #021b2b;
	content: "";
}
main section#story header div.text {
	position: relative;
	color: #ffffff;
	padding-left: 30px;
}
main section#story header div.text::before {
	position: absolute;
	width: 5px;
	height: calc(100% - 15px);
	left: 0px;
	top: 10px;
	background-color: #ffffff;
	content: "";
	opacity: 0;
	transition: 1.25s opacity ease-in-out, 0.75s transform ease-in-out;
	transform-origin: left top;
	transform: scaleY(0);
}
main section#story header div.text.active::before {
	opacity: 1;
	transform: scaleY(1);
}
main section#story header div.text h2 {
	font-family: "Outfit", sans-serif;
	font-size: 3rem;
	font-weight: 200;
	line-height: 3.5rem;
	letter-spacing: 0.2em;
	margin-bottom: 15px;
}
main section#story header div.text p.description {
	font-size: 1.25rem;
}
main section#story div.list {
	position: relative;
	margin-top: -180px;
}
main section#story div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	padding: 180px 0px;
}
main section#story div.list div.row:first-child {
	padding-top: 100px;
}
main section#story div.list div.row:not(:first-child) {
	margin-top: -80px;
}
main section#story div.list div.row:last-child {
	padding-bottom: 100px;
}
main section#story div.list div.row:nth-child(2n+1) {
	flex-direction: row-reverse;
}
main section#story div.list div.row::before,
main section#story div.list div.row div.text h3,
main section#story div.list div.row div.text p.description,
main section#story div.list div.row div.image {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main section#story div.list div.row.active::before,
main section#story div.list div.row.active div.text h3,
main section#story div.list div.row.active div.text p.description,
main section#story div.list div.row.active div.image {
	opacity: 1;
}
main section#story div.list div.row::before {
	position: absolute;
	width: calc(100% - 180px);
	height: 100%;
	top: 0px;
	background: url(../images/background-paper.jpg) repeat left top;
	background-size: 1000px auto;
	content: "";
}
main section#story div.list div.row:not(:first-child)::before {
	mix-blend-mode: multiply;
}
main section#story div.list div.row:nth-child(2n+1):before {
	right: -120px;
}
main section#story div.list div.row:nth-child(2n):before {
	left: -120px;
}
main section#story div.list div.row div:where(.text, .image) {
	position: relative;
}
main section#story div.list div.row div.text {
	width: calc(100% - 480px);
	margin-top: -10px;
}
main section#story div.list div.row div.text h3 {
	font-size: 1.75rem;
	line-height: 3.25rem;
	margin-bottom: 20px;
	transition-delay: 0.5s;
}
main section#story div.list div.row div.text p.description {
	transition-delay: 0.75s;
}
main section#story div.list div.row div.text p.description span {
	font-weight: 700;
}
main section#story div.list div.row div.image {
	transition-delay: 1s;
}
main section#story div.list div.row:first-child div.image {
	width: 320px;
	margin-left: 100px;
}
main section#story div.list div.row:not(:first-child) div.image {
	width: 420px;
}
main section#story div.list div.row div.image p.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#story div.list div.row div.image p.row img {
	width: 100%;
}
main section#story div.list div.row div.image p.row img:not(:last-child) {
	margin-bottom: 10px;
}
main section#story div.list div.row div.image p.row span {
	display: block;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

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

main div.created-category,
main div.created-category div.category ul,
main div.created-category div.category ul li {
	display: flex;
	flex-wrap: wrap;
}
main div.created-category p.created {
	width: 105px;
	line-height: 25px;
}
main div.created-category div.category {
	width: calc(100% - 105px);
}
main div.created-category div.category ul {
	margin: 0px -10px -10px 0px;
}
main div.created-category div.category ul li {
	align-items: center;
	height: 25px;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #677680;
	margin: 0px 10px 10px 0px;
	padding: 0px 12.5px;
	background-color: #f2f4f4;
	border-radius: 12.5px;
}
main div.list-news div.row {
	border-bottom: 1px solid #e6e8ea;
	padding-bottom: 40px;
}
main div.list-news div.row:not(:last-child) {
	margin-bottom: 40px;
}
main div.list-news div.row div.created-category {
	margin-bottom: 20px;
}
main div.list-news div.row h3 {
	font-size: 1.25rem;
}
main article.news header {
	border-bottom: 1px solid #e6e8ea;
	margin-bottom: 80px;
	padding-bottom: 40px;
}
main article.news header div.created-category {
	margin-bottom: 40px;
}
main article.news header h1 {
	font-size: 1.75rem;
	line-height: 2.75rem;
}

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

main section.form div.inner-section {
	width: 800px;
}
main section.form div.header {
	margin-bottom: 80px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	border-bottom: 1px solid #e6e8ea;
	padding: 40px 0px;
}
main section.form div.form div.component:first-child {
	border-top: 1px solid #e6e8ea;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 260px;
	height: 50px;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component:has(span.require) p.label {
	padding-left: 60px;
}
main section.form div.mw_wp_form_preview div.form div.component:has(span.require) p.label {
	padding-left: 0px;
}
main section.form div.form div.component p.label span.require {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 50px;
	height: 25px;
	left: 0px;
	top: calc(50% - 12.5px);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1rem;
	color: #ffffff;
	background-color: #021b2b;
	border-radius: 12.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 div.body {
	width: calc(100% - 260px);
}
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 span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	font-size: 0.875rem;
	line-height: 25px;
	color: #021b2b;
	padding-top: 5px;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button) {
	margin: 0px auto;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-bottom: 20px;
}
main section.form div.form div.action button[name=submitBack] {
	color: #021b2b;
	background-color: #ffffff;
}
main section.form div.form div.action button[name=submitBack]:hover {
	color: #ffffff;
	border-color: #818d95;
	background-color: #818d95;
}
main section.form div.form div.action button[name=submitBack]::before {
	border-color: #021b2b;
}
main section.form div.form div.action button[name=submitBack]:hover::before {
	border-color: #ffffff;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}

/* site-policy, privacy-policy
-------------------------------------------------------------------------------- */

main section.policy div.inner-section {
	width: 800px;
}
main section.policy div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section.policy div.list div.row h2 {
	font-size: 2rem;
	line-height: 2.5rem;
	margin-bottom: 20px;
}



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

footer#footer {
	position: relative;
	color: #ffffff;
	background-color: #021b2b;
}
footer#footer div.inner-footer {
	position: relative;
	width: 1100px;
	margin: 0px auto;
	padding: 60px 0px 20px 0px;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	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;
}
footer#footer p#button-page-top a {
	display: block;
	position: relative;
	width: 60px;
	height: 60px;
	background-color: #677680;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
footer#footer p#button-page-top a:hover {
	background-color: #818d95;
}
footer#footer p#button-page-top a::before {
	position: absolute;
	width: 7px;
	height: 7px;
	left: calc(50% - 3.5px);
	top: calc(50% - 3.5px);
	border-left: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transform: translateY(1px) rotate(45deg);
}
footer#footer :where(h3, nav#navi-footer) {
	margin-bottom: 40px;
}
footer#footer h3 a {
	display: flex;
	flex-wrap: wrap;
}
footer#footer h3 img {
	width: 307px;
	margin-right: 20px;
}
footer#footer h3 span {
	display: block;
	font-size: 1rem;
	transform: translateY(1px);
}
footer#footer nav#navi-footer div.list {
	display: flex;
	flex-wrap: wrap;
}
footer#footer nav#navi-footer div.list div.row:not(:last-child) {
	margin-right: 60px;
}
footer#footer nav#navi-footer div.list div.row > ul > li:not(:last-child) {
	margin-bottom: 20px;
}
footer#footer nav#navi-footer div.list div.row ul li a {
	display: inline-block;
}
footer#footer nav#navi-footer div.list div.row > ul > li > a {
	font-size: 1.125rem;
}
footer#footer nav#navi-footer div.list div.row > ul > li ul {
	padding-top: 5px;
}
footer#footer nav#navi-footer div.list div.row > ul > li ul li {
	position: relative;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 20px;
}
footer#footer nav#navi-footer div.list div.row > ul > li ul li:not(:last-child) {
	margin-bottom: 5px;
}
footer#footer nav#navi-footer div.list div.row > ul > li ul li::before {
	position: absolute;
	width: 6px;
	height: 0px;
	left: 5px;
	top: 12px;
	border-bottom: 1px solid #ffffff;
	content: "";
}
footer#footer :where(p.button-contact, div.sns) {
	position: absolute;
	right: 0px;
}
footer#footer p.button-contact {
	top: 130px;
}
footer#footer div.sns {
	top: 60px;
}
footer#footer div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
footer#footer div.button-wrapper p.button-default {
	width: calc(50% - 20px);
}
footer#footer div.button-wrapper p.button-default a {
	width: 100%;
	height: 100px;
	border: 1px solid #ffffff;
	border-radius: 0px;
}
footer#footer div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	color: #818d95;
}
footer#footer div.misc div.links ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.misc div.links ul li {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
footer#footer div.misc div.links ul li:not(:last-child) {
	margin-right: 20px;
}
footer#footer div.misc div.links ul li a {
	display: inline-block;
	position: relative;
}
footer#footer div.misc div.links ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #818d95;
	content: "";
	transition: 0.25s transform ease;
	transform-origin: left top;
	transform: scaleX(0);
}
footer#footer div.misc div.links ul li a:hover::before {
	transform: scaleX(1);
}
footer#footer div.misc p.copyright {
	font-size: 0.75rem;
	line-height: 1.25rem;
}