/* --------------------------------------------------------------------------------
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,
svg {
	max-width: 100%;
	height: auto;
}



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

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2.25rem;
	color: #1d2f40;
	letter-spacing: 0.05em;
	background-color: #ececec;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.125em;
}
a.color {
	transition: 0.375s color ease;
}
a.color:hover {
	color: #77828c;
}
h1 {
	font-size: 1.5rem;
	line-height: 2.25rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1.125rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #e91c24;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}
span.indent {
	display: inline-block;
}



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

label {
	display: inline-block;
	vertical-align: text-top;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select,
label.checkbox input[type=checkbox] + span,
label.file div.alternate p.button-file {
	border-radius: 5px;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	outline: none;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select,
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	border: none;
	background-color: #ffffff;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #1d2f40;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 60px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button,
label.file div.alternate p.button-file {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.25rem;
	letter-spacing: 0.1em;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #1d2f40;
	transition: 0.75s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover,
label.file div.alternate p.button-file:hover {
	background-color: #77828c;
}
input:where([type=button], [type=submit]),
button {
	width: 280px;
	height: 65px;
	border-radius: 32.5px;
}
button {
	position: relative;
}
button::before {
	position: absolute;
	aspect-ratio: 1;
	width: 5px;
	right: 30px;
	top: calc(50% - 2.5px);
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
	transition: 0.375s transform ease;
}
button:hover::before {
	transform: scale(2);
}
input:where([type=radio], [type=checkbox]),
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	aspect-ratio: 1;
	width: 25px;
}
label:where(.radio, .checkbox),
input:where([type=radio], [type=checkbox]) {
	margin-right: 5px;
}
label.radio input[type=radio],
label.checkbox input[type=checkbox],
label.file input[type=file] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span::before {
	position: absolute;
	content: "";
	opacity: 0;
	transition: 0.375s opacity ease;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]):checked + span::before {
	opacity: 1;
}
label.radio input[type=radio] + span,
label.radio input[type=radio] + span::before {
	border-radius: 50%;
}
label.radio input[type=radio] + span::before {
	aspect-ratio: 1;
	width: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #1d2f40;
}
label.checkbox 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 #1d2f40;
	border-bottom: 2px solid #1d2f40;
	transform: translate(-1px, -3px) rotate(45deg);
}
label.file {
	display: block;
}
label.file div.alternate {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-right: 20px;
}
label.file div.alternate p:where(.button-file, .button-clear) {
	cursor: pointer;
}
label.file div.alternate p.button-file {
	width: 160px;
	height: 60px;
}
label.file div.alternate p.button-clear {
	display: none;
	position: absolute;
	width: 20px;
	height: 60px;
	right: 0px;
	top: 0px;
}
label.file.selected div.alternate p.button-clear {
	display: block;
}
label.file div.alternate p.button-clear::before,
label.file div.alternate p.button-clear::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #1d2f40;
	content: "";
}
label.file div.alternate p.button-clear::before {
	transform: rotate(45deg);
}
label.file div.alternate p.button-clear::after {
	transform: rotate(-45deg);
}
label.file div.alternate p.name {
	width: calc(100% - 170px);
}
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: #d2d5d9;
}
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-location::before {
	content: "\e900";
}
i.icon-instagram::before {
	content: "\e901";
}



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

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



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

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	top: 50svh;
}
p.point-detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	aspect-ratio: 1;
	width: 100px;
	left: 0px;
	top: 0px;
	z-index: 100;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	color: #ffffff;
	letter-spacing: 0.1em;
	pointer-events: none;
	background-color: rgba(29, 47, 64, 0.75);
	border-radius: 50%;
	opacity: 0;
}
@media (hover:none), (pointer:coarse) {
	p.point-detail {
		display: none;
	}
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	line-height: 1.25rem;
	letter-spacing: 0.1em;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	width: 280px;
	height: 65px;
	color: #ffffff;
	background-color: #1d2f40;
	border-radius: 32.5px;
	transition: 0.75s border-color ease, 0.75s background-color ease;
}
p.button-default > *:hover {
	background-color: #77828c;
}
p.button-default > *::before {
	position: absolute;
	aspect-ratio: 1;
	width: 5px;
	right: 30px;
	top: calc(50% - 2.5px);
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
	transition: 0.375s transform ease;
}
p.button-default > *:hover::before {
	transform: scale(2);
}
p.button-left {
	justify-content: flex-start;
}
p.button-right {
	justify-content: flex-end;
}
p.button-white > * {
	color: #1d2f40;
	background-color: #ffffff;
}
p.button-white > *:hover {
	background-color: #d2d5d9;
}
p.button-white > *::before {
	background-color: #1d2f40;
}
p.button-line > * {
	border: 1px solid #ffffff;
}
p.button-line > *:hover {
	border-color: #77828c;
}
p.image {
	overflow: hidden;
}
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-zoom-alternate, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-zoom-alternate, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-zoom-alternate, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-zoom-alternate, .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-zoom-alternate, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-zoom-alternate, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-zoom-alternate, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-zoom-alternate, .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-alternate,
*.scroll.fade-each-zoom-alternate > * {
	transition-timing-function: ease-in-out, linear(0, 0.402 7.4%, 0.711 15.3%, 0.929 23.7%, 1.008 28.2%, 1.067 33%, 1.099 36.9%, 1.12 41%, 1.13 45.4%, 1.13 50.1%, 1.111 58.5%, 1.019 83.2%, 1.004 91.3%, 1);
	transform: scale(0.375);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-zoom-alternate.active,
*.scroll.fade-each-zoom-alternate.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 > *:not(br) {
	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 {
	display: none !important;
}

/* home, vision
-------------------------------------------------------------------------------- */

body:where(.home, .vision) p.point-detail {
	color: #1d2f40;
	background-color: rgba(255, 255, 255, 0.75);
}

/* vision
-------------------------------------------------------------------------------- */

body.vision p.line {
	position: absolute;
	aspect-ratio: 1;
	width: 1830px;
	right: calc(50% - 1320px);
	top: -440px;
}
body.vision p.line svg {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
body.vision p.line svg g:where(#line-01, #line-02) path {
	fill: #ffffff;
}
body.vision p.line svg g#text {
	display: none;
}



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

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, nav#navi) {
	position: fixed;
}
header#header *#logo {
	left: 40px;
	top: 35px;
}
body.admin-bar header#header *#logo {
	top: 67px;
}
header#header *#logo img {
	width: 258px;
}
header#header div#menu nav#navi {
	right: 25px;
	top: 32px;
}
body.admin-bar header#header div#menu nav#navi {
	top: 64px;
}
header#header div#menu nav#navi ul {
	display: flex;
	flex-wrap: wrap;
}
header#header div#menu nav#navi ul li {
	font-weight: 500;
	letter-spacing: 0.1em;
}
header#header div#menu nav#navi ul li a {
	display: block;
	position: relative;
	padding: 0px 15px;
}
header#header div#menu nav#navi ul li a::before {
	position: absolute;
	width: calc(100% - 30px);
	height: 0px;
	left: 15px;
	bottom: 2px;
	border-bottom: 1px solid #1d2f40;
	content: "";
	transition: 0.375s transform ease;
  transform-origin: right center;
	transform: scaleX(0);
}
header#header div#menu nav#navi ul li a:hover::before,
body.vision header#header div#menu nav#navi ul li.vision a::before,
body.works header#header div#menu nav#navi ul li.works a::before,
body:where(.about, .staff) header#header div#menu nav#navi ul li.about a::before,
body.contact header#header div#menu nav#navi ul li.contact a::before {
	transform: scaleX(1);
  transform-origin: left center;
}
header#header div#menu p.logo {
	display: none;
}

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

body.home header#header :where(*#logo, nav#navi) {
	position: absolute;
}
body.home div.main header#header :where(*#logo, nav#navi) {
	position: fixed;
}
body.home header#header *#logo {
	top: calc(100svh + 35px);
}
body.home div.main header#header *#logo {
	top: 35px;
}
body.home.admin-bar div.main header#header *#logo {
	top: 67px;
}
body.home header#header div#menu nav#navi {
	top: calc(100svh + 32px);
}
body.home div.main header#header div#menu nav#navi {
	top: 32px;
}
body.home.admin-bar div.main header#header div#menu nav#navi {
	top: 64px;
}



/* --------------------------------------------------------------------------------
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: #1d2f40;
}
body.admin-bar div#cover {
	top: 32px;
}
div.main div#cover {
	visibility: hidden;
}
div#cover p.line {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: hidden;
	background-color: #1d2f40;
	opacity: 0;
	transition: 2.25s opacity 0.375s ease-in-out;
	contain: paint;
}
div#cover.active p.line {
	opacity: 1;
}
div#cover p.line svg {
	position: relative;
	flex: 0 0 auto;
	max-width: none;
	width: 225vmin;
	height: 225vmin;
}
div#cover p.line svg g:where(#line-01, #line-02, #text) path {
	fill: #b3b3b3;
}
div#cover p.line svg g#line-02 {
	opacity: 0;
	transition: 2.25s opacity 2.25s ease-in-out;
}
div#cover.active p.line svg g#line-02 {
	opacity: 1;
}
div#cover p.button-default {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 1;
	opacity: 0;
	transition: 1s opacity 3.75s ease-in-out;
}
div#cover.active p.button-default {
	opacity: 1;
}
div#cover p.button-default a {
	width: 200px;
	height: 50px;
	border-radius: 25px;
}
div#cover p.button-default a::before {
	right: 22.5px;
}



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

div#title {
	width: 1000px;
	margin: 0px auto;
	padding-top: 240px;
}
div#title div.text {
	position: relative;
	padding-bottom: 40px;
}
div#title div.text::before {
	position: absolute;
	width: calc(50vw + 50%);
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #1d2f40;
	content: "";
	opacity: 0;
	transition: 1s opacity ease;
}
html.active div#title div.text::before {
	opacity: 1;
}
div#title div.text h1 {
	text-align: left;
	font-size: 3.125rem;
	line-height: 3.75rem;
	letter-spacing: 0.1em;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 1000px;
	margin: 0px auto;
	padding: 100px 0px;
}
main section:last-child div.inner-section {
	padding-bottom: 160px;
}
main h2.line {
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 60px 0px 0px 40px;
}
main h2.line::before {
	position: absolute;
	width: 88px;
	height: 82px;
	left: 0px;
	top: 0px;
	z-index: 1;
	background: url(../images/line-headline.svg) no-repeat left top;
	background-size: 100% auto;
	content: "";
	opacity: 0;
	transition: 0.75s opacity ease, 0.75s clip-path cubic-bezier(0.33, 1, 0.68, 1);
	clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
}
main h2.line.active::before {
	opacity: 1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
main h2.line span {
	display: block;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main h2.line.active span {
	opacity: 1;
}
main section.example:not(:last-child) {
	margin-bottom: 120px;
}
main section.example a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.125em;
	transition: 0.375s color ease;
}
main section.example a:hover {
	color: #77828c;
}
main section.example header {
	margin-bottom: 40px;
}
main section.example header h2 {
	font-size: 1.125rem;
	font-weight: 500;
	border-bottom: 1px solid #d2d5d9;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
main section.example div.text:not(:first-child) {
	padding-top: 10px;
}
main section.example a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.125em;
	transition: 0.375s color ease;
}
main section.example a:hover {
	color: #77828c;
}
main section.example strong {
	font-weight: 500;
}
main section.example div.text h3 {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 5px;
}
main section.example div.video:not(:last-child) {
	margin-bottom: 80px;
}
main section.example div:where(.text, .description) p {
	font-size: 1rem;
	line-height: 1.875rem;
}
main section.example > p.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.example > p.image-left {
	justify-content: flex-start;
}
main section.example > p.image-right {
	justify-content: flex-end;
}
main section.example > p.image + p:where(.image, .image-caption-top) {
	margin-top: 60px;
}
main section.example div.slide-wrapper {
	padding-bottom: 40px;
}
main section.example div.slide-wrapper:not(:last-child) {
	margin-bottom: 60px;
}
main section.example div.slide {
	visibility: hidden;
	position: relative;
}
main section.example div.slide.active {
	visibility: visible;
}
main section.example div.slide div.container {
	overflow: hidden;
}
main section.example div.slide div.container div.inner-container {
	display: flex;
	flex-wrap: wrap;
}
main section.example div.slide div.container p.image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
main section.example div.slide div.pager {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
}
main section.example div.slide div.pager p.button {
	position: absolute;
	aspect-ratio: 1;
	width: 40px;
	top: calc(50% - 20px);
	z-index: 5;
	pointer-events: auto;
	cursor: pointer;
}
main section.example div.slide div.pager p.button::before {
	position: absolute;
	aspect-ratio: 1;
	width: 12px;
	left: calc(50% - 8px);
	top: calc(50% - 6px);
	border-right: 1px solid #1d2f40;
	border-bottom: 1px solid #1d2f40;
	content: "";
	transform: rotate(-45deg);
}
main section.example div.slide div.pager p.button-prev {
	left: -40px;
	transform: scaleX(-1);
}
main section.example div.slide div.pager p.button-next {
	right: -40px;
}
main section.example div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	left: 0px;
	top: calc(100% + 30px);
	z-index: 5;
}
main section.example div.slide div.navi p.button {
	aspect-ratio: 1;
	width: 10px;
	border: 1px solid #1d2f40;
	cursor: pointer;
	margin: 0px 5px 10px 5px;
	border-radius: 50%;
	transition: background-color 0.375s;
}
main section.example div.slide div.navi p.button:hover,
main section.example div.slide div.navi p.button.active {
	background-color: #1d2f40;
}
main section.example :where(h2, h3, h4).headline-01 {
	display: flex;
	flex-wrap: wrap;
	align-items:last baseline;
	border-bottom: 1px solid #d2d5d9;
	margin-bottom: 30px;
	padding-bottom: 10px;
}
main section.example :where(h2, h3, h4).headline-01 span {
	display: block;
}
main section.example :where(h2, h3, h4).headline-01 span:not(:last-child) {
	margin-right: 10px;
}
main section.example :where(h2, h3, h4).headline-01 span.main {
	font-size: 1.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
main section.example :where(h2, h3, h4).headline-01 span.sub {
	font-size: 1rem;
	line-height: 1.875rem;
}
main section.example :where(h2, h3, h4).headline-02 {
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 15px;
}
main section.example :where(h2, h3, h4).headline-03 {
	font-size: 1.25rem;
	font-weight: 500;
	border-bottom: 1px solid #d2d5d9;
	margin-bottom: 30px;
	padding-bottom: 5px;
}
main section.example :where(h2, h3, h4).headline-04 {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 3.25rem;
	letter-spacing: 0.1em;
	margin-bottom: 15px;
}
main section.example p:where(.description, .information):not(:last-child) {
	margin-bottom: 80px;
}
main section.example h2:has(span.main) + p.description {
	margin-top: -10px;
}
main section.example p:where(.caption, .information) {
	font-size: 1rem;
	line-height: 1.875rem;
}
main section.example > p.image:not(:last-child) {
	margin-bottom: 30px;
}
main section.example p.caption-center {
	text-align: center;
}
main section.example p.caption-right {
	text-align: right;
}
main section.example div.slide-wrapper + p:where(.caption, .information) {
	margin-top: -30px;
}
main section.example p.caption span {
	display: block;
}
main section.example p.caption span.main {
	font-size: 1rem;
	line-height: 1.875rem;
	border-bottom: 1px solid #d2d5d9;
	padding-bottom: 2px;
}
main section.example p.caption span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-top: 4px;
}
main section.example div.video div.embed:not(:last-child) {
	margin-bottom: 30px;
}
main section.example div.column {
	display: flex;
	flex-wrap: wrap;
}
main section.example div.column div.row {
	width: 50%;
}
main section.example div.column div.row img {
	width: 100%;
}
main section.example *.concept-box {
	padding: 50px;
	background-color: #ececec;
}
main section.example *.concept-box:not(:last-child) {
	margin-bottom: 30px;
}
main section.example *.concept-box p.sub {
	font-size: 2.5rem;
	line-height: 3.5rem;
}
main section.example *.concept-box p.sub:not(:last-child) {
	margin-bottom: 10px;
}
main section.example *:where(.concept-box-title, .concept-box-title-center) {
	font-size: 3.125rem;
	line-height: 4.25rem;
	letter-spacing: 0.1em;
}
main section.example *:where(.concept-box-title, .concept-box-title-center) span {
	font-size: 1.5rem;
	font-weight: 600;
}
main section.example *.concept-box-title-center {
	text-align: center;
}
main section.example *:where(.concept-box-text, .concept-box-text-b):not(:first-child) {
	margin-top: 20px;
}
main section.example *.concept-box-text-b {
	font-size: 1.5rem;
	line-height: 2.625rem;         
}
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;
	aspect-ratio: 1;
	width: 5px;
	left: 4px;
	top: 16px;
	background-color: #1d2f40;
	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 :where(a, h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 500;
}
main article.common div.body a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
	transition: 0.375s color ease;
}
main article.common div.body a:hover {
	color: #77828c;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #ffffff;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #d2d5d9;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #ffffff;
}
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 div#pager {
	display: none;
}
main nav#navi-article ul {
	height: 1.875rem;
}
main nav#navi-article ul li {
	font-size: 1rem;
	line-height: 1.875rem;
}
main nav#navi-article ul li a {
	display: block;
	transition: 0.375s color ease;
}
main nav#navi-article ul li a:hover {
	color: #77828c;
}
main nav#navi-article ul li:where(.prev, .next) {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li:where(.prev, .next) a {
	position: relative;
}
main nav#navi-article ul li:where(.prev, .next) a::before {
	position: absolute;
	aspect-ratio: 1;
	width: 10px;
	top: 9px;
	border-right: 1px solid #1d2f40;
	border-bottom: 1px solid #1d2f40;
	content: "";
	transition: 0.375s border-color ease;
}
main nav#navi-article ul li:where(.prev, .next) a:hover::before {
	border-color: #77828c;
}
main nav#navi-article ul li.prev {
	left: 0px;
}
main nav#navi-article ul li.prev a {
	padding-left: 20px;
}
main nav#navi-article ul li.prev a::before {
	left: 2px;
	transform: rotate(135deg);
}
main nav#navi-article ul li.next {
	right: 0px;
}
main nav#navi-article ul li.next a {
	padding-right: 20px;
}
main nav#navi-article ul li.next a::before {
	right: 2px;
	transform: rotate(-45deg);
}
body.single-post main nav#navi-article {
	border-top: 1px solid #d2d5d9;
	margin-top: 100px;
	padding-top: 30px;
}
body.single-post main nav#navi-article ul {
	position: relative;
}
body:where(.single-works, .single-staff) main nav#navi-article {
	position: relative;
}
body:where(.single-works, .single-staff) main nav#navi-article ul {
	position: absolute;
	width: 100%;
	left: 0px;
	top: calc(50% - calc(1.875rem * 0.5));
}

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

body.home main {
	z-index: 1;
	background-color: #ececec;
}
main section:where(#home-vision, #home-works, #home-about) header {
	margin-bottom: 60px;
}
main section:where(#home-vision, #home-works, #home-about, #home-news) header h2 {
	font-size: 3.125rem;
	line-height: 2.5rem;
	letter-spacing: 0.1em;
}
main section#home-vision div.inner-section {
	padding: 240px 0px 160px 0px;
}
main section#home-vision :where(h3, p.description) {
	font-weight: 500;
}
main section#home-vision h3 {
	font-size: 4.375rem;
	line-height: 4.375rem;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
main section#home-vision p.description {
	font-size: 1.25rem;
	line-height: 2.75rem;
	margin-bottom: 40px;
}
main section#home-works {
	z-index: 1;
	color: #ffffff;
}
main section:where(#home-works, #home-about)::before {
	position: absolute;
	width: calc(50vw + 560px);
	height: 100%;
	top: 0px;
	content: "";
}
main section#home-works::before {
	left: calc(50% - 560px);
	background-color: #1d2f40;
	border-radius: 120px 0px 0px 120px;
}
main section:where(#home-works, #home-about, #home-news) div.inner-section {
	padding: 160px 0px;
}
main section#home-works div.inner-section {
	padding-left: 60px;
}
main section#home-works div:where(.list-works-alternate, .list-category) {
	margin-bottom: 40px;
}
main section#home-works div.list-category ul li:not(.more) a {
	border-color: #4a5966;
}
main section#home-works div.list-category ul li:not(.more) a:hover {
	background-color: #4a5966;
}
main section#home-works div.list-category ul li.more a::before,
main section#home-works div.list-category ul li.more a::after {
	border-color: #ececec;
}
main section#home-about {
	margin-top: -120px;
}
main section#home-about::before {
	right: calc(50% - 560px);
	background-color: #ffffff;
	border-radius: 0px 120px 120px 0px;
}
main section#home-about div.inner-section {
	padding-top: 240px;
}
main section#home-about h3 {
	font-size: 2.375rem;
	font-weight: 500;
	line-height: 3.75rem;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
main section#home-about p.description {
	font-weight: 500;
	margin-bottom: 40px;
}
main section#home-news div.inner-section {
	padding-left: 280px;
}
main section#home-news header {
	position: absolute;
	left: 0px;
	top: 160px;
}
main section#home-news div.list-news {
	margin-top: -20px;
}

/* vision
-------------------------------------------------------------------------------- */

main section:where(#vision-summary, #vision-detail) header {
	margin-bottom: 80px;
}
main section#vision-summary :where(h3, p.description) {
	font-weight: 500;
	letter-spacing: 0.1em;
}
main section#vision-summary :where(h3, p.description) {
	padding-left: 60px;
}
main section#vision-summary h3 {
	font-size: 5rem;
	line-height: 5rem;
	letter-spacing: 0.1em;
	margin-bottom: 80px;
}
main section#vision-summary p.description {
	font-size: 1.25rem;
	line-height: 2.75rem;
}
main section#vision-summary p.description span,
main section#vision-summary p.description span i {
	display: block;
}
main section#vision-summary p.description span:not(:last-child),
main section#vision-summary p.description span i:not(:last-child) {
	margin-bottom: 1.375rem;
}
main section#vision-detail div.block {
	color: #ffffff;
	padding: 80px;
	background-color: #1d2f40;
	border-radius: 60px;
}
main section#vision-detail div.block:not(:last-child) {
	margin-bottom: 60px;
}
main section#vision-detail div.block p.number {
	font-size: 2.5rem;
	line-height: 2.5rem;
	margin-bottom: 40px;
}
main section#vision-detail div.block div.illust-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 60px;
}
main section#vision-detail div.block div.illust-text div.text {
	width: calc(100% - 345px);
}
main section#vision-detail div.block div.illust-text div.text :where(h3, p.description) {
	font-weight: 500;
}
main section#vision-detail div.block div.illust-text div.text h3 {
	font-size: 2.375rem;
	line-height: 3.75rem;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
main section#vision-detail div.block div.illust-text p.illust {
	width: 345px;
}
main section#vision-detail div.block div.illust-text p.illust img {
	width: 100%;
}
main section#vision-detail div.block div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#vision-detail div.block div.list div.row {
	width: calc(50% - 40px);
	margin-right: 40px;
}
main section#vision-detail div.block div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding: 20px 0px;
	transition: 0.375s color ease;
}
main section#vision-detail div.block div.list div.row a:hover {
	color: #a5acb3;
}
main section#vision-detail div.block div.list div.row:nth-child(-n+2) a {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
main section#vision-detail div.block div.list div.row p.image {
	aspect-ratio: 1;
	width: 130px;
	background-color: #ffffff;
}
main section#vision-detail div.block div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#vision-detail div.block div.list div.row div.text {
	width: calc(100% - 150px);
	margin-top: -5px;
}
main section#vision-detail div.block div.list div.row div.text :where(h4, p.description) {
	font-size: 1rem;
	line-height: 1.625rem;
}
main section#vision-detail div.block div.list div.row div.text h4 {
	font-weight: 500;
	margin: 0px -20px 10px 0px;
}

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

main div.list-news div.row,
main article.news header {
	border-bottom: 1px solid #d2d5d9;
}
main div.list-news div.row a {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 20px 0px;
}
main div.list-news div.row a::before {
	position: absolute;
	aspect-ratio: 1;
	width: 5px;
	right: 20px;
	top: calc(50% - 5px);
	background-color: #1d2f40;
	content: "";
	border-radius: 50%;
	transition: 0.375s transform ease;
}
main div.list-news div.row a:hover::before {
	transform: scale(3);
}
main div.list-news div.row :where(p.created, h3),
main article header :where(p.created, h1) {
	text-align: left;
	font-weight: 500;
}
main div.list-news div.row p.created {
	width: 160px;
}
main div.list-news div.row h3 {
	width: calc(100% - 160px);
	font-size: 1.125rem;
	padding-right: 30px;
}
main article.news header {
	margin-bottom: 60px;
	padding-bottom: 30px;
}
main article.news header p.created {
	margin-bottom: 10px;
}
main article.news header h1 {
	font-size: 1.5rem;
	line-height: 2.625rem;
	letter-spacing: 0.1em;
}

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

main div.list-category ul {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0px -10px -10px 0px;
}
main div.list-category ul li {
	flex: 0 0 auto;
	font-size: 1rem;
	line-height: 1rem;
	margin: 0px 10px 10px 0px;
}
main div.list-category ul li a {
	height: 30px;
}
main div.list-category ul li:not(.more) a {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	border: 1px solid #bbc1c6;
	padding: 0px 10px;
	border-radius: 5px;
	transition: 0.75s background-color ease;
}
main div.list-category ul li:not(.more) a:hover,
main div.list-category ul li:not(.more).active a {
	background-color: #bbc1c6;
}
main div.list-category ul li.category-hidden {
	display: none;
}
main div.list-category ul li.more a {
	display: block;
	position: relative;
	aspect-ratio: 1;
	width: 30px;
}
main div.list-category ul li.more a::before,
main div.list-category ul li.more a::after {
	position: absolute;
	width: 20px;
	height: 1px;
	left: calc(50% - 10px);
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #1d2f40;
	content: "";
	border-radius: 0px;
	transition: none;
}
main div.list-category ul li.more a::after {
	transform: rotate(90deg);
}
main div.list-works {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px -60px 0px;
}
main div.list-works div.row {
	width: calc(50% - 60px);
	margin: 0px 60px 60px 0px;
}
main div.list-works div.row-add {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main div.list-works div.row-add.active {
	opacity: 1;
}
main div.list-works div.row a {
	display: block;
}
main div.list-works div.row a:not(:last-child) {
	margin-bottom: 10px;
}
main div:where(.list-works, .list-works-alternate) div.row p.image {
	aspect-ratio: 470 / 235;
	border-radius: 10px;
}
main div.list-works div.row p.image {
	margin-bottom: 20px;
}
main div:where(.list-works, .list-works-alternate) div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.list-works div.row h3,
main div.list-works-alternate div.row div.text h3,
main article.works header h1 {
	text-align: left;
	font-weight: 500;
}
main div.list-works div.row h3,
main div.list-works-alternate div.row div.text h3 {
	font-size: 1.25rem;
	line-height: 2rem;
}
main div.list-works div.row h3:not(:last-child),
main div.list-works-alternate div.row div.text h3:not(:last-child) {
	margin-bottom: 10px;
}
main div.list-works div.row div.category ul,
main div.list-works-alternate div.row div.text ul,
main article.works header div.category ul {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
main div.list-works div.row div.category ul li,
main div.list-works-alternate div.row div.text ul li,
main article.works header div.category ul li {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-right: 15px;
}
main div.list-works div.row div.category ul li a,
main article.works header div.category ul li a {
	color: #a5acb3;
	transition: 0.375s color ease;
}
main div.list-works div.row div.category ul li a:hover,
main article.works header div.category ul li a:hover {
	color: #1d2f40;
}
main div.list-works div.row div.category ul li a::before,
main article.works header div.category ul li a::before {
	content: "#";
}
main div.list-works-alternate div.row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main div.list-works-alternate div.row a.color:hover,
main div.list-works-alternate div.row div.text div.category ul li {
	color: #a5acb3;
}
main div.list-works-alternate div.row p.image {
	width: 470px;
}
main div.list-works-alternate div.row div.text {
	width: calc(100% - 510px);
}
main article.works {
	margin: 0px -50px 80px -50px;
	padding: 100px 120px;
	background-color: #ffffff;
	border-radius: 60px;
}
main article.works header,
main article.works header div.category:not(:last-child) {
	margin-bottom: 60px;
}
main article.works header h1 {
	font-size: 2.375rem;
	line-height: 3.75rem;
	margin-bottom: 20px;
}
main article.works header div.client-related {
	font-size: 1rem;
	line-height: 1.875rem;
	margin-bottom: 40px;
}
main article.works header div.client-related a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.125em;
	transition: 0.375s color ease;
}
main article.works header div.client-related a:hover {
	color: #77828c;
}
main article.works header p.image {
	aspect-ratio: 1100 / 450;
	margin: 0px -120px;
}
main article.works header p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main article.works div.body > p.description:not(:last-child) {
	margin-bottom: 120px;
}
main section#works div.list-category {
	margin-bottom: 60px;
}
main section#works p.count {
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#works div.inner-section:has(article.works) {
	padding-top: 240px;
}
main section#works article.works section.example > p.image {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
main section#works article.works section.example div:where(.column-hacoa, .column-sante-labo) {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
main section#works article.works section.example div:where(.column-hacoa, .column-sante-labo) div.row {
	margin: 0px 40px 40px 0px;
}
main section#works article.works section.example div.column-hacoa div.row {
	width: calc(33.33% - 40px);
}
main section#works article.works section.example div:where(.column-hacoa, .column-sante-labo) div.row p.image img {
  width: 100%;
}
main section#works article.works section.example div.column-sante-labo div.row {
	width: calc(50% - 40px);
}
main section#works article.works section.credit header,
main section#works article.works section.credit dl dd:not(:last-child) {
	margin-bottom: 40px;
}
main section#works article.works section.credit dl :where(dt, dd) {
	text-align: left;
	font-size: 1rem;
	line-height: 1.875rem;
}
main section#works article.works *.s-title {
	margin-bottom: 10px;
}
main section#works article.works *.s-honbun {
	font-size: 1rem;
	line-height: 1.875rem;
}
main section#works article.works *.honbun:not(:last-child) {
	margin-bottom: 40px;
}
main section#works article.works *.bottom_space {
	margin-bottom: 80px;
}
main section#works article.works *.catch {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.625rem;
	margin-bottom: 20px;
}
main section#works article.works *:where(.honbun-indent, .catch-indent) {
	text-indent: -1em;
	padding-left: 1em;
}
main section#works article.works *.catch-indent {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 5px;
}
main section#works article.works *.image-caption-top {
	font-size: 1rem;
	margin-bottom: 20px;
}
main section#works article.works *.image-caption-bottom-center {
	text-align: center;
	font-size: 1rem;
	margin-top: 20px;
	margin-bottom: 40px;
}
main section#works article.works *.image-left {
	text-align: left;
}
main section#works article.works *:where(.image-left, .image-center) img {
	margin-right: auto;
}
main section#works article.works *.image-right {
	text-align: right;
}
main section#works article.works *:where(.image-right, .image-center) img {
	margin-left: auto;
}
main section#works article.works *.image-center {
	text-align: center;
}
main section#works article.works *.flow-container {
	max-width: 400px;
	margin-bottom: 60px;
	margin-right: auto;
	margin-left: auto;
}
main section#works article.works *.flow-box {
	background-color: #77828c;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	position: relative;
}
main section#works article.works *.flow-box:not(:last-child) {
	margin-bottom: 40px; 
}
main section#works article.works *.flow-box.flow-box:not(:last-child)::after {
	position: absolute;
	width: 25px;
	height: 20px;
	left: calc(50% - 12.5px);
	bottom: -30px;
	background-color: #d2d5d9;
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
main section#works article.works *.box-text {
	text-align: center;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.875rem;
	color: #ffffff;
}
main section#works article.works *.flow-container h2 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#works article.works *.concept-box {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
main section#works article.works *.image-margin-top {
	margin-top: 40px;
}

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

main div.list-staff {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -80px 0px;
}
main div.list-staff div.row {
	width: calc(33.33% - 80px);
	margin: 0px 80px 80px 0px;
}
main div.list-staff div.row a {
	display: block;
}
main div.list-staff div.row p.image {
	aspect-ratio: 1;
	margin-bottom: 20px;
}
main div.list-staff div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.list-staff div.row h3,
main article.staff header div.text h1 {
	text-align: left;
	font-weight: 500;
}
main div.list-staff div.row h3 {
	font-size: 1.25rem;
	line-height: 2rem;
}
main div.list-staff div.row h3:not(:last-child) {
	margin-bottom: 10px;
}
main div.list-staff div.row p.post {
	font-size: 1rem;
	line-height: 1.625rem;
}
main article.staff header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 100px;
}
main article.staff header p.image {
	width: 280px;
}
main article.staff header div.text {
	width: calc(100% - 320px);
}
main article.staff header div.text h1 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
main article.staff header div.text p.post {
	font-size: 1rem;
	line-height: 1.625rem;
	margin-bottom: 20px;
}
main article.staff header p.summary-small {
	display: none;
}
main article.staff div.body {
	margin: 0px -50px 80px -50px;
	padding: 100px 120px;
	background-color: #ffffff;
	border-radius: 60px;
}
main article.staff div.body div.intro:not(:last-child) {
	margin-bottom: 60px;
}
main article.staff div.body div.intro h3 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 5px;
}
main section:where(#about-staff, #about) header {
	margin-bottom: 80px;
}
main section#about div.list div.row {
	display: flex;
	flex-wrap: wrap;
	padding: 40px;
}
main section#about div.list div.row:not(:last-child) {
	border-bottom: 1px solid #d2d5d9;
}
main section#about div.list div.row:first-child {
	padding-top: 0px;
}
main section#about div.list div.row:last-child {
	padding-bottom: 0px;
}
main section#about div.list div.row p.label {
	width: 200px;
	font-weight: 500;
}
main section#about div.list div.row div.body {
	width: calc(100% - 200px);
}
main section#about div.list div.row div.body h3 {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	padding-left: 20px;
}
main section#about div.list div.row div.body h3::before {
	position: absolute;
	aspect-ratio: 1;
	width: 14px;
	left: 0px;
	top: 11px;
	background-color: #1d2f40;
	content: "";
	border-radius: 50%;
}
main section#about div.list div.row div.body :where(p, ul):not(*:last-child) {
	margin-bottom: 40px;
}
main section#about div.list div.row div.body a.map,
main section#about div.list div.row div.body a.map i.icon-location {
	display: inline-block;
}
main section#about div.list div.row div.body a.map i.icon-location {
	font-size: 1.375rem;
	transform: translateY(4px);
}
main section#about div.list div.row div.body a.map span {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.125em;
	font-weight: 500;
}
main section#about div.list div.row div.body ul.scene li:not(:last-child) {
	margin-bottom: 40px;
}
main section#about div.list div.row div.body ul.scene li span {
	display: block;
}
main section#about div.list div.row div.body ul.scene li span.image {
	max-width: 560px;
	margin-bottom: 10px;
}
main section#about div.list div.row div.body ul.scene li span.image img {
	width: 100%;
}
main section#staff div.inner-section:has(article.staff) {
	padding-top: 240px;
}

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

main section.form a {
	font-weight: 500;
}
main section.form div.header {
	margin-bottom: 80px;
}
div.confirm main section.form div.header {
	display: none;
}
main section.form div.header p.indent {
	margin-bottom: 40px;
}
main section.form div.header p.require span {
	display: inline-block;
	color: #e91c24;
	margin-right: 5px;
}
main section.form span.wpcf7-list-item {
	margin: 0px;
}
main section.form div.component-wrapper {
	margin-bottom: 60px;
}
main section.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
div.confirm main section.form div.component {
	border-bottom: 1px solid #d2d5d9;
	margin-bottom: 0px;
	padding: 40px;
}
div.confirm main section.form div.component:first-child {
	padding-top: 0px;
}
main section.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 200px;
	height: 60px;
	font-weight: 500;
}
main section.form div.component:has(span:where(.wpcf7-radio, .wpcf7-checkbox)) p.label {
	height: auto;
}
div.confirm main section.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.component p.label span.required {
	font-weight: 400;
	color: #e91c24;
	margin-left: 5px;
}
div.confirm main section.form div.component p.label span.required {
	display: none;
}
main section.form div.component div.body {
	width: calc(100% - 200px);
}
main section.form div.component div.body span.wpcf7-form-control-wrap {
	display: block;
}
main section.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item {
	display: block;
	margin: 0px 0px 10px 0px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item:not(:last-child) {
	margin-right: 30px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item > label {
	display: block;
}
main section.form div.component div.body :where(input[type=text], input[type=email], select, textarea) {
	width: 100%;
}
main section.form div.component div.body :where(input[type=text], input[type=email], select) {
	max-width: 600px;
}
div.confirm main section.form div.component div.body :where(input[type=text], input[type=email], select, textarea) {
	field-sizing: content;
	height: auto;
	border: none;
	pointer-events: none;
	padding: 0px;
	background-color: transparent;
}
div.confirm main section.form div.component div.body select {
	background-image: none;
}
div.confirm main section.form div.component div.body textarea {
	resize: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item {
	pointer-events: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item:not(:has(input:checked)) {
	display: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item label:where(.radio, .checkbox) {
	display: none;
}
div.confirm main section.form label.file {
	pointer-events: none;
}
div.confirm main section.form label.file div.alternate p.button-file {
	display: none;
}
div.confirm main section.form label.file div.alternate p.button-clear {
	display: none;
}
main section.form div.component div.body span.wpcf7-not-valid-tip,
main section.form div.agreement span.wpcf7-not-valid-tip {
	position: absolute;
	left: 0px;
	bottom: -25px;
	font-size: 0.875rem;
	line-height: 25px;
	color: #e91c24;
}
main section.form div.component div.body:has(span:where(.wpcf7-radio, .wpcf7-checkbox)) span.wpcf7-not-valid-tip {
	bottom: -15px;
}
main section.form div.component div.body span.wpcf7-not-valid-tip {
	width: 100%;
}
main section.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	line-height: 1.875rem;
	margin-bottom: 60px;
}
div.confirm main section.form div.agreement {
	display: none;
}
main section.form div.agreement span.wpcf7-list-item,
main section.form div.agreement span.wpcf7-list-item > label {
	display: block;
}
main section.form div.agreement span.wpcf7-list-item {
	margin-right: 5px;
}
main section.form div.agreement span.wpcf7-list-item-label {
	display: none;
}
main section.form div.agreement span.wpcf7-not-valid-tip {
	width: 240px;
}
main section.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 60px;
}
main section.form div.action :where(input[type=text], input[type=email], button) {
	margin: 0px 10px;
}
main section.form div.action span.wpcf7-spinner {
	display: none;
}
main section.form form.submitting div.action .button-submit {
	pointer-events: none;
}
main section.form div.wpcf7-response-output {
	text-align: center;
	line-height: 1.5rem;
	border: none;
	margin: 40px 0px 0px 0px;
	padding: 10px;
	background-color: #ffffff;
	border-radius: 5px;
}
div.confirm main section.form :where(input[type=button], input[type=submit], button).button-confirm,
main section.form :where(input[type=button], input[type=submit], button):where(.button-back, .button-submit) {
	display: none;
}
div.confirm main section.form :where(input[type=button], input[type=submit], button):where(.button-back, .button-submit) {
	display: flex;
}
main section.form p.recaptcha {
	font-size: 1rem;
	line-height: 1.875rem;
}

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

main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#privacy-policy div.list div.row :where(a, h2) {
	font-weight: 500;
}
main section#privacy-policy div.list div.row h2 {
	font-size: 1.25rem;
	margin-bottom: 5px;
}



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

div#modal {
	position: fixed;
	width: 100%;
	height: 0;
	left: 0px;
	top: 0px;
	overflow: hidden;
	overscroll-behavior: contain;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: 0.375s opacity ease-in-out;
}
div#modal.active {
	height: 100svh;
	pointer-events: auto;
}
body.admin-bar div#modal.active {
	height: calc(100svh - 32px);
	top: 32px;
}
div#modal.fade {
	opacity: 1;
}
div#modal::before {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #000000;
	content: "";
	opacity: 0.875;
}
div#modal div.inner-modal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: min(100%, 1000px);
	height: 100%;
	margin: 0px auto;
}
div#modal p.button-close {
	position: fixed;
	aspect-ratio: 1;
	width: 40px;
	right: 40px;
	top: 40px;
	z-index: 1;
	cursor: pointer;
}
body.admin-bar div#modal p.button-close {
	top: 72px;
}
div#modal p.button-close::before,
div#modal p.button-close::after {
	position: absolute;
	width: 40px;
	height: 0px;
	left: calc(50% - 20px);
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #ffffff;
	content: "";
}
div#modal p.button-close::before {
	transform: rotate(45deg);
}
div#modal p.button-close::after {
	transform: rotate(-45deg);
}
div#modal section {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: hidden;
	padding: 60px 0px;
}
div#modal section.active {
	display: block;
}
div#modal section.vision div.inner-section {
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
}
div#modal section.vision p.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
}
div#modal section.vision p.image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}



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

footer#footer {
	color: #ffffff;
	padding: 60px 80px 30px 80px;
	background-color: #1d2f40;
}
footer#footer a.color:hover,
footer#footer nav#navi-footer ul li a:hover {
	color: #a5acb3;
}
footer#footer nav#navi-footer {
	margin-bottom: 20px;
}
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer nav#navi-footer ul li {
	font-weight: 500;
	letter-spacing: 0.1em;
}
footer#footer nav#navi-footer ul li:not(:last-child) {
	margin-right: 30px;
}
footer#footer nav#navi-footer ul li a {
	transition: 0.375s color ease;
}
footer#footer p.instagram {
	font-size: 1.875rem;
	margin-bottom: 160px;
}
footer#footer p.logo {
	position: absolute;
	right: 70px;
	bottom: 30px;
}
footer#footer p.logo img {
	width: 241px;
}
footer#footer div.misc {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.misc p {
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #77828c;
}
footer#footer div.misc p.privacy-policy {
	order: 1;
}
footer#footer div.misc p.copyright {
	margin-right: 30px;
}
footer#footer div.misc a.color:hover {
	color: #ffffff;
}

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

body.home footer#footer {
	position: relative;
	z-index: 1;
}
