/* --------------------------------------------------------------------------------
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-color: #1e1f26;
	-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: #2a97bf;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 0.9375rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #c4223b;
}



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

input:is([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;
	border-radius: 2.5px;
	appearance: none;
}
input:is([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #1e1f26;
	border: 1px solid #1e1f26;
	background-color: #ffffff;
}
input:is([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:is([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 50px;
	text-align: center;
	color: #ffffff;
	border: 1px solid #2a97bf;
	cursor: pointer;
	background-color: #2a97bf;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
input:is([type=button], [type=submit]):hover,
button:hover {
	color: #2a97bf;
	background-color: #ffffff;
}
button {
	position: relative;
}
button span.arrow {
	position: absolute;
	right: 15px;
	top: calc(50% - 0.5px);
}
button:hover span.arrow::before,
button:hover span.arrow::after {
	border-color: #2a97bf;
}
input:is([type=radio], [type=checkbox]),
input:is([type=radio], [type=checkbox])::before,
label.alternate input:is([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:is([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:is([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after,
label.alternate input:is([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:is([type=radio], [type=checkbox])::before,
label.alternate input:is([type=radio], [type=checkbox]) + span {
	border: 1px solid #1e1f26;
	background-color: #ffffff;
}
input:is([type=radio], [type=checkbox])::after,
label.alternate input:is([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:is([type=radio], [type=checkbox]):checked::after,
label.alternate input:is([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + :is(span, 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: #1e1f26;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 2.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 #1e1f26;
	border-bottom: 2px solid #1e1f26;
}
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:is([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:is([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: 50px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: auto 20px;
}
::placeholder {
	color: #cccccc;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
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 #3b3c40;
	margin: 20px 0px;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	width: 100%;
}
iframe.wp-embedded-content {
	width: 100%;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #142233;
	border-radius: 2.5px;
}



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

div#page {
	position: relative;
	overflow: hidden;
	padding-left: 210px;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50svh;
	pointer-events: none;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
	height: auto;
}
p.image-zoom img {
	transition: 0.5s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
span.arrow {
	display: block;
	position: relative;
	width: 15px;
	height: 0px;
}
span.arrow::before,
span.arrow::after {
	position: absolute;
	height: 0px;
	right: 0px;
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
a:hover span.arrow::before,
a:hover span.arrow::after {
	border-color: #2a97bf;
}
span.arrow::before {
	width: 100%;
}
span.arrow::after {
	width: 7.5px;
	transform-origin: right bottom;
	transform: rotate(45deg);
}
*.scroll:is(.fade, .fade-slide),
*.scroll:is(.fade-each, .fade-each-slide) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll:is(.fade, .fade-slide).active,
*.scroll:is(.fade-each, .fade-each-slide).active > * {
	opacity: 1;
}
*.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);
}
*.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);
}



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

header#header {
	position: fixed;
	width: 210px;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 100;
	padding: 40px 0px;
	background-color: #142233;
}
body.admin-bar header#header {
	height: calc(100% - 32px);
	top: 32px;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
header#header *#logo img {
	width: 130px;
}
header#header nav#navi {
	padding-left: 40px;
}
header#header nav#navi ul li {
	position: relative;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
header#header nav#navi ul li::before {
	position: absolute;
	width: 30px;
	height: 6px;
	left: -40px;
	top: 20px;
	background-color: #2a97bf;
	content: "";
	transition: 0.25s transform ease;
	transform: translateX(-30px);
	clip-path: polygon(0% 0%, calc(100% - 3px) 0%, 100% 50%, calc(100% - 3px) 100%, 0% 100%);
}
header#header nav#navi ul li:has(a:hover)::before,
body.about header#header nav#navi ul li.about::before,
body.business header#header nav#navi ul li.business::before,
body.works header#header nav#navi ul li.works::before,
body.inquiry:not(.recruit) header#header nav#navi ul li.inquiry::before,
body.recruit.inquiry header#header nav#navi ul li.recruit-inquiry::before,
body.recruit:not(.inquiry) header#header nav#navi ul li.recruit::before,
body.privacy-policy header#header nav#navi ul li.privacy-policy::before {
	transform: translateX(0px);
}
header#header nav#navi ul li a {
	display: block;
	padding: 10px 0px;
}



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

div#cover,
div#space-cover {
	height: 100svh;
}
div#cover {
	position: fixed;
	width: calc(100% - 210px);
	left: 210px;
	top: 0px;
}
body.admin-bar div#cover,
body.admin-bar div#space-cover {
	height: calc(100svh - 32px);
}
body.admin-bar div#cover {
	top: 32px;
}
div.main div#cover {
	visibility: hidden;
}
div#cover video {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	filter: brightness(0.75);
}
div#cover h1 {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 10;
	font-family: "Chakra Petch", sans-serif;
	font-size: 5.75rem;
	font-weight: 700;
	line-height: 6.25rem;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	z-index: 1;
	background-color: #1e1f26;
	padding-bottom: 60px;
}
main section div.background {
	position: absolute;
	width: 736px;
	height: 500px;
	top: -65px;
	background: url(../images/background-general.png) no-repeat center;
	background-size: 100% auto;
}
main section div.background-left {
	right: calc(50% - 20px);
}
main section div.background-right {
	left: calc(50% - 20px);
}
main section div.background-middle {
	top: calc(50% - 200px);
}
main section div.inner-section {
	width: 1010px;
	z-index: 1;
	margin: 0px auto;
	padding: 100px 0px;
}
main section div.inner-section:has(header.common p.image) {
	padding-top: 0px;
}
main section header.common {
	margin-bottom: 60px;
}
main section header.common p.image {
	height: 230px;
	margin: 0px calc(610px - 50vw) 60px calc(610px - 50vw);
}
main section header.common p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section header.common :is(h1, h2) {
	font-family: "Chakra Petch", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 3.5rem;
}
main section header.common :is(h1, h2):not(:last-child) {
	position: relative;
	margin-bottom: 40px;
}
main section header.common :is(h1, h2):not(:last-child)::before {
	position: absolute;
	width: 20px;
	height: 0px;
	left: 0px;
	bottom: -20px;
	border-bottom: 1px solid #2a97bf;
	content: "";
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out;
}
main section header.common :is(h1, h2):not(:last-child).active::before {
	opacity: 1;
}
main section header.common p.sub {
	font-weight: 500;
}
@media (min-width:1380px) {
main section header.common :is(h1, h2, p.sub) {
	transform: translateX(-60px);
}
}
main *:is(.headline-01,.headline-02, .headline-03) {
	margin-bottom: 20px;
}
main *.headline-01 {
	font-size: 1.25rem;
	font-weight: 700;
	border-bottom: 1px solid #2a97bf;
	padding-bottom: 10px;
}
main *.headline-02 {
	font-size: 1.0625rem;
	font-weight: 500;
	border-left: 5px solid #2a97bf;
	padding: 0px 0px 5px 15px;
}
main *.headline-03 {
	position: relative;
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #1a4a5c;
	padding: 5px 15px;
}
main *.headline-03::before {
	position: absolute;
	width: 80px;
	height: 100%;
	right: 0px;
	top: 0px;
	background-color: #265a6e;
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 30px 100%);
}
main p.more a {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
}
main p.more span.arrow {
	width: 80px;
	margin-left: 10px;
	transform: translateY(-10px);
}
main div.list-category {
	margin-bottom: 60px;
}
main div.list-category ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px -10px 0px;
}
main div.list-category ul li {
	width: 70px;
	font-size: 0.8125rem;
	margin: 0px 10px 10px 0px;
}
main div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 30px;
	color: #1e1f26;
	background-color: #355a67;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.list-category ul li a:hover,
main div.list-category ul li.active a {
	color: #ffffff;
	background-color: #2a97bf;
}
main section#inquiry-alternate div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px calc(610px - 50vw);
}
main section#inquiry-alternate div.list div.row {
	position: relative;
	width: 50%;
}
main section#inquiry-alternate div.list div.row p.image {
	height: 350px;
}
main section#inquiry-alternate div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#inquiry-alternate div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	text-align: center;
	padding-top: 20px;
}
main section#inquiry-alternate div.list div.row div.text p.headline {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 15px;
}
main section#inquiry-alternate div.list div.row div.text p.button {
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid #ffffff;
	margin: 0px auto;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
main section#inquiry-alternate div.list div.row a:hover div.text p.button {
	background-color: #ffffff;
}
main section#inquiry-alternate div.list div.row div.text p.button span.arrow {
	position: absolute;
	left: calc(50% - 7.5px);
	top: calc(50% - 0.5px);
}
main section#inquiry-alternate div.list div.row a:hover div.text p.button span.arrow::before,
main section#inquiry-alternate div.list div.row a:hover div.text p.button span.arrow::after {
	border-color: #2a97bf;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body :is(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: #142233;
	border-radius: 2.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: 4px;
	height: 4px;
	left: 5px;
	top: 14px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol {
	padding-left: 20px;
}
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :is(th, td) {
	border: 1px solid #3b3c40;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #142233;
}
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 :is(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: #ffffff;
	border: 1px solid #2a97bf;
	padding: 0px 20px;
	background-color: #2a97bf;
	border-radius: 25px;
	transition: 0.25s background-color ease;
}
main article.common div.body :is(a.wp-block-button__link, a.wp-block-file__button):hover {
	color: #ffffff;
	background-color: #ffffff;
}
main div#pager {
	margin-top: 100px;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :is(span, a) {
	display: block;
	margin-bottom: 10px;
	transition: 0.25s color ease;
}
main div#pager :is(span, a):not(:is(a.prev, a.next)) {
	position: relative;
	margin: 0px 15px;
}
main div#pager :is(span.current, a:hover) {
	color: #2a97bf;
}
main div#pager :is(a.prev, a.next) {
		display: block;
		position: relative;
		width: 30px;
		height: 30px;
}
main div#pager :is(a.prev, a.next)::before {
	position: absolute;
	width: 15px;
	height: 15px;
	left: calc(50% - 7.5px);
	top: calc(50% - 7.5px);
	border-left: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
main div#pager :is(a.prev:hover, a.next:hover)::before {
	border-color: #2a97bf;
}
main div#pager a.prev {
	margin-right: 10px;
}
main div#pager a.prev::before {
	transform: rotate(-45deg);
}
main div#pager a.next {
	margin-left: 10px;
}
main div#pager a.next::before {
	transform: rotate(135deg);
}

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

main section#home-about {
	background-color: #ffffff;
}
main section#home-about div.inner-section {
	padding: 0px;
}
main section#home-about div.image-text {
	display: flex;
	flex-wrap: wrap;
	margin-right: calc(610px - 50vw);
}
main section#home-about div.image-text div.text {
	width: calc(50% - 40px);
	color: #1e1f26;
	padding: 60px 60px 60px 0px;
}
main section#home-about div.image-text div.text header.common {
	margin-bottom: 40px;
}
main section#home-about div.image-text div.text p.description {
	margin-bottom: 20px;
}
main section#home-about div.image-text div.text p.more span.arrow::before,
main section#home-about div.image-text div.text p.more span.arrow::after {
	border-color: #1e1f26;
}
main section#home-about div.image-text div.text p.more a:hover span.arrow::before,
main section#home-about div.image-text div.text p.more a:hover span.arrow::after {
	border-color: #2a97bf;
}
main section#home-about div.image-text p.image {
	position: relative;
	width: calc(50% + 40px);
}
main section#home-about div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-business :is(div.image, p.description) {
	margin-bottom: 20px;
}
main section#home-business div.image {
	display: flex;
	flex-wrap: wrap;
}
main section#home-business div.image p.row {
	width: 50%;
}
main section#home-works header.common {
	margin-bottom: 40px;
}
main section#home-works div.image-text {
	position: relative;
}
main section#home-works div.image-text p.image {
	margin: 0px calc(610px - 50vw);
	height: 520px;
}
main section#home-works div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-works div.image-text div.text {
	position: absolute;
	width: 420px;
	left: 0px;
	top: 40px;
	z-index: 1;
}
main section#home-works div.image-text div.text p.description {
	margin-bottom: 20px;
}

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

main section#about div.background-middle {
	top: calc(50% + 60px);
}
main section#about div.list div.row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section#about div.list div.row {
	margin-right: calc(610px - 50vw);
}
main section#about div.list div.row:not(:last-child) {
	margin-bottom: 100px;
}
main section#about div.list div.row :is(div.image, p.image) {
	width: calc(100% - 480px);
}
main section#about div.list div.row div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: -5px;
}
main section#about div.list div.row div.image p.row-image {
	margin-bottom: 5px;
}
main section#about div.list div.row div.image p.row-image img {
	width: 100%;
}
main section#about div.list div.row div.image p.row-image-wide {
	width: 100%;
}
main section#about div.list div.row div.image p.row-image:not(.row-image-wide) {
	width: calc(50% - 2.5px);
}
main section#about div.list div.row div.text {
	width: 420px;
}
main section#information div.list-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#information div.list-wrapper div.list {
	width: calc(50% - 30px);
}
main section:is(#information, #base) div.list div.row {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #3b3c40;
	padding: 20px 0px;
}
main section:is(#information, #base) div.list div.row:first-child {
	border-top: 1px solid #3b3c40;
}
main section:is(#information, #base) div.list div.row p.label {
	width: 140px;
	color: #747474;
}
main section:is(#information, #base) div.list div.row div.body {
	width: calc(100% - 140px);
}
main section#base div.list-map {
	display: flex;
	flex-wrap: wrap;
	margin-right: calc(610px - 50vw);
}
main section#base div.list-map div.list {
	width: 475px;
	margin-right: 60px;
}
main section#base div.list-map p.map {
	width: calc(100% - 535px);
	max-width: 585px;
	transform: translateY(-200px);
}
main section#base div.list-map p.map img {
	width: 100%;
}
main section#access-map div.map {
	margin: 0px calc(610px - 50vw);
}
main section#access-map div.map iframe {
	width: 100%;
	height: 480px;
}

/* business
-------------------------------------------------------------------------------- */

main section#business div.background-middle {
	top: calc(50% + 160px);
}
main section#business div:is(.summary, .place, .detail) {
	margin-bottom: 100px;
}
main section#business div.place div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px -60px 0px;
}
main section#business div.place div.list div.row {
	width: calc(50% - 60px);
	margin: 0px 60px 60px 0px;
}
main section#business div.place div.list div.row p.image {
	margin-bottom: 20px;
}
main section#business div.place div.list div.row p.caption {
	text-align: center;
	text-indent: 0.25em;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.25em;
}
main section#business div.detail div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px -60px 0px;
}
main section#business div.detail div.list div.row {
	width: calc(50% - 60px);
	margin: 0px 60px 60px 0px;
}
main section#business div.feature div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 20px 0px;
}
main section#business div.feature div.list div.row {
	width: calc(16.66% - 40px);
	margin-right: 40px;
}
main section#business div.feature div.list div.row:not(:last-child) {
	position: relative;
}
main section#business div.feature div.list div.row:not(:last-child)::before,
main section#business div.feature div.list div.row:not(:last-child)::after {
	position: absolute;
	width: 10px;
	height: 10px;
	right: -22px;
	top: calc(50% - 25px);
	border-left: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	content: "";
}
main section#business div.feature div.list div.row:not(:last-child)::before {
	transform: translateX(-3px) rotate(135deg);
}
main section#business div.feature div.list div.row:not(:last-child)::after {
	transform: translateX(3px) rotate(135deg);
}
main section#business div.feature div.list div.row :is(p.icon, p.caption) {
	max-width: 145px;
	margin: 0px auto;
}
main section#business div.feature div.list div.row p.icon {
	margin-bottom: 20px;
}
main section#business div.feature div.list div.row p.icon img {
	width: 100%;
}
main section#business div.feature div.list div.row p.caption {
	text-align: center;
	font-weight: 500;
	color: #ffffff;
	background-color: #2a97bf;
	border-radius: 2.5px;
}

/* works
-------------------------------------------------------------------------------- */

main div.list-works div.row {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
main div.list-works div.row p.year {
	width: 60px;
}
main div.list-works div.row p.client {
	width: 140px;
}
main div.list-works div.row p.title {
	width: 360px;
}
main div.list-works div.row p.detail {
	width: calc(100% - 560px);
}
main div.list-works div.row-header {
	background-color: #3b3c40;
}
main div.list-works div.row-header p {
	padding: 5px 10px;
}
main div.list-works div.row-body {
	border-bottom: 1px solid #3b3c40;
}
main div.list-works div.row-body p {
	padding: 10px;
}

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

main section.form div.form div.component-wrapper {
	margin-bottom: 60px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #3b3c40;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	border-top: 1px solid #3b3c40;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 240px;
	height: 50px;
	font-weight: 500;
}
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 p.label span.require {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 20px;
	font-size: 0.6875rem;
	line-height: 1rem;
	color: #ffffff;
	margin-left: 10px;
	background-color: #c4223b;
	border-radius: 10px;
}
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% - 240px);
}
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 :is(input:is([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field),
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body :is(span.mwform-radio-field, span.mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form :is(div.component div.body, div.agreement) span.error {
	font-size: 0.8125rem;
	line-height: 25px;
	color: #c4223b;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.privacy-policy {
	width: calc(100% - 240px);
	color: #1e1f26;
	margin: 0px 0px 80px auto;
	padding: 30px 40px;
	background-color: #ffffff;
	border-radius: 2.5px;
}
main section.form div.mw_wp_form_preview div.form div.privacy-policy {
	display: none;
}
main section.form div.form div.privacy-policy p.description {
	margin-bottom: 10px;
}
main section.form div.form div.privacy-policy div.agreement {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
main section.form div.form div.privacy-policy div.agreement:has(span.error) {
	padding-bottom: 30px;
}
main section.form div.form div.privacy-policy div.agreement span.mwform-checkbox-field,
main section.form div.form div.privacy-policy div.agreement span.mwform-checkbox-field > label {
	display: block;
}
main section.form div.form div.privacy-policy div.agreement span.mwform-checkbox-field {
	margin-right: 5px;
}
main section.form div.form div.privacy-policy div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.privacy-policy div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -5px;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	padding-left: 240px;
}
main section.form div.mw_wp_form_preview div.form div.action {
	justify-content: center;
	padding-left: 0px;
}
main section.form div.form div.action :is(input:is([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}

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

main section#recruit div:is(.summary, .feature) {
	margin-bottom: 100px;
}
main section#recruit div.feature {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#recruit div.feature div.image {
	width: 485px;
}
main section#recruit div.feature div.image p.row:not(:last-child) {
	margin-bottom: 5px;
}
main section#recruit div.feature div.body {
	width: calc(100% - 545px);
}
main section#recruit div.feature div.body h2.headline-02 {
	margin-bottom: 40px;
}
main section#recruit div.feature div.body div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#recruit div.feature div.body div.list div.row:not(:last-child) {
	border-bottom: 1px solid #3b3c40;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
main section#recruit div.feature div.body div.list div.row p.icon {
	width: 135px;
}
main section#recruit div.feature div.body div.list div.row p.icon img {
	width: 100%;
}
main section#recruit div.feature div.body div.list div.row div.text {
	width: calc(100% - 155px);
}
main section#recruit div.feature div.body div.list div.row div.text h3 {
	font-size: 1.0625rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#recruit div.job div.list div.row:not(:last-child) {
	margin-bottom: 100px;
}
main section#recruit div.job div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#recruit div.job div.list div.row div.image-text div.text {
	width: calc(100% - 525px);
	padding-top: 20px;
}
main section#recruit div.job div.list div.row div.image-text div.text h3 {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#recruit div.job div.list div.row div.image-text div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 465px;
	margin-bottom: -5px;
}
main section#recruit div.job div.list div.row div.image-text div.image p.row {
	margin-bottom: 5px;
}
main section#recruit div.job div.list div.row div.image-text div.image p.row img {
	width: 100%;
}
main section#recruit div.job div.list div.row div.image-text div.image p.row-wide {
	width: 100%;
}
main section#recruit div.job div.list div.row div.image-text div.image p.row:not(.row-wide) {
	width: calc(50% - 2.5px);
}

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

main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#privacy-policy div.list div.row h2 {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
	padding-left: 20px;
}
main section#privacy-policy div.list div.row h2 span {
	position: absolute;
	left: 0px;
	top: 0px;
}
main section#privacy-policy div.list div.row p.company {
	text-align: right;
}



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

footer#footer {
	position: relative;
	z-index: 1;
	padding: 0px 20px 20px 20px;
	background-color: #1e1f26;
}
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;
}
div.footer footer#footer p#button-page-top {
	position: absolute;
	top: -55px;
	bottom: auto;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
footer#footer p#button-page-top a:hover {
	background-color: #142233;
}
footer#footer p#button-page-top a::before {
	width: 8px;
	height: 8px;
	border-left: 1px solid #142233;
	border-top: 1px solid #142233;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(2px) rotate(45deg);
}
footer#footer p#button-page-top a:hover::before {
	border-color: #ffffff;
}
footer#footer p.copyright {
	text-align: right;
	font-size: 0.6875rem;
	line-height: 1.25rem;
	color: #2a97bf;
}
