/* --------------------------------------------------------------------------------
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: YakuHanJP, "Zen Kaku Gothic Antique", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	font-feature-settings: "palt";
	line-height: 1.75rem;
	color: #4e4e4e;
	letter-spacing: -0.0125em;
	background-color: #f8f8f8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	color: #00a0e1;
	transition: 0.25s color ease;
}
a.color:hover {
	color: #8d8d8d;
}
a.opacity {
	transition: 0.25s opacity ease;
}
a.opacity:hover {
	opacity: 0.625;
}
h1 {
	font-size: 1.5rem;
	line-height: 2.25rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 0.9375rem;
}
p.note {
	font-size: 0.8125rem;
	line-height: 1.25rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #ff0000;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}



/* --------------------------------------------------------------------------------
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: YakuHanJP, "Zen Kaku Gothic Antique", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #4e4e4e;
	border: none;
	background-color: #eeeeee;
}
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: 340px;
	height: 80px;
	text-align: center;
	font-size: 1.0625rem;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #00a0e1;
	transition: 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #4e4e4e;
}
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: #eeeeee;
}
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: #00a0e1;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #00a0e1;
	border-bottom: 2px solid #00a0e1;
}
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: #acacac;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



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

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-question::before {
	content: "\e901";
}
i.icon-pick-up-01::before {
	content: "\e902";
}
i.icon-pick-up-02::before {
	content: "\e903";
}
i.icon-pick-up-03::before {
	content: "\e904";
}
i.icon-line::before {
	content: "\e905";
}



/* --------------------------------------------------------------------------------
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 #acacac;
	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: #eeeeee;
	border-radius: 5px;
}



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

div#page {
	position: relative;
	overflow: hidden;
}
body:not(.home) div#page {
	padding-top: 80px;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
div.headline-side {
	display: none;
	position: fixed;
	height: 100svh;
	top: 0px;
	z-index: -1;
}
body:has(div#title.main):not(.people) div.headline-side,
body:has(div#title.sub).people div.headline-side {
	display: block;
}
div.headline-side-left {
	left: 0px;
}
div.headline-side-right {
	right: 0px;
	transform: rotate(180deg);
}
div.headline-side div.inner-headline-side {
	height: 99999px;
	animation: headline-side 90s linear infinite forwards;
}
div.headline-side p {
	width: 11rem;
	height: 1600px;
	overflow: hidden;
	writing-mode: vertical-rl;
	white-space: pre;
	font-size: 13rem;
	font-weight: 900;
	line-height: 11rem;
	color: #eeeeee;
}
@keyframes headline-side {
	0% { transform: translateY(0px); }
	100% { transform: translateY(-1600px); }
}
div.headline-side-people div.inner-headline-side {
	animation: headline-side-people 45s linear infinite forwards;
}
div.headline-side-people p {
	height: 2680px;
}
@keyframes headline-side-people {
	0% { transform: translateY(0px); }
	100% { transform: translateY(-2680px); }
}
div.headline-bottom {
	display: none;
}
div.sns ul {
	display: flex;
	flex-wrap: wrap;
}
div.sns ul li:not(:last-child) {
	margin-right: 25px;
}
div.sns ul li img {
	width: 28px;
}
i.icon-arrow {
	font-size: 0.8125rem;
}
i:where(.icon-arrow-upper-right, .icon-arrow-down) {
	display: inline-block;
}
i.icon-arrow-upper-right {
	transform: rotate(-45deg);
}
i.icon-arrow-down {
	transform: rotate(90deg);
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25rem;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	width: 220px;
	height: 50px;
	color: #00a0e1;
	border: 1px solid #00a0e1;
	padding: 0px 25px;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-default > *:hover,
a:hover p.button-default > * {
	color: #ffffff;
	background-color: #00a0e1;
}
p.button-default > *:has(i.icon-arrow) {
	padding-right: 40px;
}
p.button-default i.icon {
	font-weight: 400;
}
p.button-default i.icon-arrow {
	position: absolute;
	right: 12.5px;
	top: calc(50% - 6.5px);
}
p.button-default > *:has(span.youtube) {
	width: auto;
	padding-right: 125px;
}
p.button-default span.youtube {
	position: absolute;
	right: 45px;
	top: calc(50% - 7px);
}
p.button-default span.youtube :where(img, svg) {
	width: 63px;
}
p.button-default span.youtube svg path {
	transition: 0.25s fill ease;
}
p.button-default *:hover span.youtube svg path {
	fill: #ffffff !important;
}
p.button-default *:hover span.youtube svg path[style="fill:#fff;"] {
	fill: #4e4e4e !important;
}
p.button-left {
	justify-content: flex-start;
}
p.button-narrow > * {
	width: 160px;
}
p.button-auto {
	text-align: left;
}
p.button-auto > * {
	width: auto;
}
p.button-large > * {
	width: 340px;
	height: 80px;
	font-size: 1.0625rem;
	padding: 0px 40px;
	border-radius: 40px;
}
p.button-large i.icon-arrow {
	right: 20px;
}
p.button-white > * {
	color: #ffffff;
	border-color: #ffffff;
}
p.button-white > *:hover {
	color: #00a0e1;
	background-color: #ffffff;
}
p.button-black > * {
	color: #707070;
	border-color: #707070;
}
p.button-black > *:hover {
	color: #ffffff;
	background-color: #707070;
}
p.button-max-width > * {
	max-width: 220px;
}
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, .fade-mask),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce, .fade-each-mask) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce, .fade-mask).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce, .fade-each-mask).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(50px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-50px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 50px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -50px);
}
*.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);
}
*.scroll.fade-mask,
*.scroll.fade-each-mask > * {
	transition-property: opacity, clip-path;
	transition-timing-function: ease-in-out, ease;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
*.scroll.fade-mask.active,
*.scroll.fade-each-mask.active > * {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}



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

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, nav#navi-alternate, p#button-menu, div#menu) {
	position: fixed;
	top: 0px;
}
body.admin-bar header#header :where(*#logo, nav#navi-alternate, p#button-menu, div#menu) {
	top: 32px;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	height: 80px;
	left: 0px;
	z-index: 10;
	padding-left: 20px;
	background-color: #ffffff;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.0625);
}
header#header *#logo img {
	width: 199px;
}
header#header nav#navi-alternate,
header#header nav#navi-alternate div.pick-up ul,
header#header nav#navi-alternate div.pick-up ul li a,
header#header nav#navi-alternate div.links ul,
header#header nav#navi-alternate div.links ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header#header nav#navi-alternate {
	right: 90px;
	z-index: 20;
}
header#header nav#navi-alternate div:where(.pick-up, .sns) {
	margin-right: 30px;
}
header#header nav#navi-alternate div.pick-up ul li {
	color: #00a0e1;
}
header#header nav#navi-alternate div.pick-up ul li:not(:last-child) {
	margin-right: 30px;
}
header#header nav#navi-alternate div.pick-up ul li :where(i, span) {
	display: block;
}
header#header nav#navi-alternate div.pick-up ul li i.icon-pick-up {
	font-size: 1.5rem;
	margin-right: 10px;
}
header#header nav#navi-alternate div.pick-up ul li span {
	font-size: 1.25rem;
	font-weight: 700;
	margin-right: 10px;
	padding-bottom: 1px;
	transform: skewX(-15deg);
}
header#header nav#navi-alternate div.sns ul li:not(:last-child) {
	margin-right: 0px;
}
header#header nav#navi-alternate div.sns ul li:not(.instagram) {
	display: none;
}
header#header nav#navi-alternate div.links ul li {
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1rem;
}
header#header nav#navi-alternate div.links ul li a {
	justify-content: center;
	width: 90px;
	height: 80px;
	color: #ffffff;
	transition: 0.25s background-color ease;
}
header#header nav#navi-alternate div.links ul li.internship a {
	background-color: #00a0e1;
}
header#header nav#navi-alternate div.links ul li.internship a:hover {
	background-color: #40b8e9;
}
header#header nav#navi-alternate div.links ul li.visit a {
	color: #5a696e;
	background-color: #b4dc50;
}
header#header nav#navi-alternate div.links ul li.visit a:hover {
	background-color: #c7e57c;
}
header#header p#button-menu {
	width: 90px;
	height: 80px;
	right: 0px;
	z-index: 40;
	cursor: pointer;
}
header#header p#button-menu i {
	display: block;
	position: absolute;
	width: 40px;
	height: 0px;
	left: calc(50% - 20px);
	top: calc(50% - 1px);
	border-bottom: 2px solid #8d8d8d;
	transition: 0.25s all ease;
}
header#header p#button-menu i:nth-child(1) {
	transform: translateY(-10px);
}
header#header p#button-menu i:nth-child(2) {
	transform: translateY(10px);
}
div.menu-header header#header p#button-menu i:nth-child(-n+3) {
	width: 0px;
	left: 50%;
	opacity: 0;
	transform: translateY(0px);
}
div.menu-header header#header p#button-menu i:nth-child(4) {
	transform: rotate(30deg);
}
div.menu-header header#header p#button-menu i:nth-child(5) {
	transform: rotate(-30deg);
}
header#header div#menu,
header#header div#menu div.inner-menu {
	display: flex;
	flex-wrap: wrap;
}
header#header div#menu {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	right: 0px;
	overflow: auto;
	z-index: 30;
	background-color: #f8f8f8;
	transform: translateY(-100%);
	transition: 0.5s transform ease;
	-webkit-overflow-scrolling: touch;
}
body.admin-bar header#header div#menu {
	height: calc(100% - 32px);
}
div.menu-header header#header div#menu {
	transform: translateY(0%);
}
header#header div#menu::-webkit-scrollbar {
	display: none;
}
header#header div#menu::before {
	position: absolute;
	width: 460px;
	height: 100%;
	right: 0px;
	top: 0px;
	background-color: #dfeaf2;
	content: "";
}
header#header div#menu div.inner-menu {
	flex-direction: row-reverse;
	justify-content: space-between;
	position: relative;
	width: 100%;
	padding: 80px;
}
header#header div#menu div.sub {
	width: 300px;
}
header#header div#menu div.sub div.sns {
	margin-bottom: 40px;
}
header#header div#menu div.sub div.sns ul {
	justify-content: center;
}
header#header div#menu div.sub div.pick-up p.label {
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #88aac3;
	margin-bottom: 20px;
}
header#header div#menu div.sub div.pick-up div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
header#header div#menu div.sub div.pick-up div.list div.row a {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.125);
}
header#header div#menu div.sub div.pick-up div.list div.row p.image {
	height: 160px;
}
header#header div#menu div.sub div.pick-up div.list div.row p.image img {
	object-fit: cover;
	object-position: center 25%;
	width: 100%;
	height: 100%;
}
header#header div#menu div.sub div.pick-up div.list div.row div.text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	padding: 20px;
}
header#header div#menu div.sub div.pick-up div.list div.row div.text p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
header#header div#menu div.sub div.pick-up div.list div.row div.text p.headline img {
	height: calc(302px * 0.2);
}
header#header div#menu div.sub div.pick-up div.list div.row div.text p.button-default {
	position: absolute;
	width: calc(100% - 40px);
	left: 20px;
	bottom: 20px;
}
header#header div#menu div.sub div.pick-up div.list div.row div.text p.button-default span {
	width: 100%;
	border: none;
	background-color: #ffffff;
}
header#header div#menu div.sub div.pick-up div.list div.row a:hover div.text p.button-default span {
	background-color: #00a0e1;
}
header#header div#menu div.main {
	width: calc(100% - 460px);
}
header#header div#menu div.main :where(nav#navi, div.links) {
	margin-bottom: 60px;
}
header#header div#menu div.main nav#navi div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -80px;
}
header#header div#menu div.main nav#navi div.list div.row {
	width: calc(33.33% - 80px);
	margin-right: 80px;
}
header#header div#menu div.main nav#navi div.list div.row div.segment:not(:last-child) {
	border-bottom: 1px solid #dfeaf2;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
header#header div#menu div.main nav#navi div.list div.row div.segment-home {
	display: none;
}
header#header div#menu div.main nav#navi div.list div.row div.segment p.headline a {
	display: block;
	position: relative;
}
header#header div#menu div.main nav#navi div.list div.row div.segment p.headline span {
	display: block;
}
header#header div#menu div.main nav#navi div.list div.row div.segment p.headline span.sub {
	display: none;
}
header#header div#menu div.main nav#navi div.list div.row div.segment p.headline span.main {
	font-size: 1.375rem;
	font-weight: 700;
}
header#header div#menu div.main nav#navi div.list div.row div.segment p.headline i.icon-arrow {
	position: absolute;
	right: 0px;
	top: calc(50% - 4px);
}
header#header div#menu div.main nav#navi div.list div.row div.segment ul {
	padding-top: 20px;
}
header#header div#menu div.main nav#navi div.list div.row div.segment ul li {
	line-height: 1.5rem;
}
header#header div#menu div.main nav#navi div.list div.row div.segment ul li:not(:last-child) {
	margin-bottom: 10px;
}
header#header div#menu div.main nav#navi div.list div.row div.segment ul li br.navi-footer {
	display: none;
}
header#header div#menu div.main nav#navi p.privacy-policy {
	display: none;
}
header#header div#menu div.main div.links div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
header#header div#menu div.main div.links p.button-default {
	width: calc(33.33% - 20px);
	margin-right: 20px;
}
header#header div#menu div.main div.links p.button-default a {
	width: 100%;
}
header#header div#menu div.main div.links p.button-default a:hover {
	background-color: #00a0e1;
}
@media (max-width:1400px) {
header#header div#menu div.main div.links div.button-wrapper {
	display: block;
	margin-right: 0px;
}
header#header div#menu div.main div.links p.button-default {
	width: auto;
	margin-right: 0px;
}
header#header div#menu div.main div.links p.button-default:not(:last-child) {
	margin-bottom: 20px;
}
}
header#header div#menu div.main div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
header#header div#menu div.main div.misc p:where(.corporate, .privacy-policy) {
	font-weight: 700;
}
header#header div#menu div.main div.misc p.corporate {
	margin-right: 30px;
}
header#header div#menu div.main div.misc p.corporate i.icon-arrow {
	font-weight: 400;
	margin-left: 10px;
}
header#header div#menu div.main div.misc p.privacy-policy {
	font-size: 0.8125rem;
}
header#header div#menu div.main :where(div.information, p.copyright) {
	display: none;
}



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

div#breadcrumb {
	padding: 20px;
}
div#breadcrumb p {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.6875rem;
	line-height: 1rem;
	color: #acacac;
}
div#breadcrumb p span:not(:last-child)::after {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1px solid #acacac;
	border-bottom: 1px solid #acacac;
	margin: 0px 10px;
	content: "";
	transform: translateY(-1px) rotate(-45deg);
}
div#breadcrumb p a {
	transition: 0.25s color ease;
}
div#breadcrumb p a:hover {
	color: #00a0e1;
}



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

div#cover {
	overflow: hidden;
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
html.active div#cover {
	opacity: 1;
}
div.main div#cover {
	visibility: hidden;
}
div#cover div.list div.row {
	position: relative;
	height: calc(100svh + 460px);
	min-height: 1000px;
}
body.admin-bar div#cover div.list div.row {
	height: calc(100svh + 428px);
}
div#cover div.list div.row div.inner-row {
	position: absolute;
	width: 100vw;
	height: calc(100svh + 240px);
	left: 0px;
	top: 80px;
}
body.admin-bar div#cover div.list div.row div.inner-row {
	height: calc(100svh + 208px);
	top: 112px;
}
div#cover div.list div.row.fix div.inner-row {
	position: fixed;
}
div#cover div.list div.row:not(:first-child) div.inner-row::before {
	position: absolute;
	width: 100%;
	height: 305px;
	left: 0px;
	top: -300px;
	z-index: 1;
	background-color: #ffffff;
	content: "";
	transition: 0.25s transform ease;
	clip-path: polygon(0% 300px, 100% 0px, 100% 5px, 0% 305px);
}
div#cover div.list div.row:not(:first-child).fix div.inner-row::before {
	transform: translateY(-5px);
}
div#cover div.list div.row p.image {
	position: absolute;
	width: 100%;
	height: calc(100svh + 600px);
	left: 0px;
	top: -300px;
	clip-path: polygon(0% 300px, 100% 0%, 100% 100%, 0% 100%);
}
div#cover div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #000000;
	content: "";
	opacity: 0.425;
}
div#cover div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.list div.row-03 p.image img {
	object-position: 87.5% center;
}
div#cover 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;
	padding-bottom: 80px;
}
div#cover div.list div.row div.text div.inner-text {
	position: relative;
	width: calc(100vw - 80px);
	max-width: 1120px;
}
div#cover div.list div.row div.text ul li,
div#cover div.list div.row div.text :where(h2, p.button-default) {
	opacity: 0;
	transition-duration: 0.75s, 0.75s;
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
	transform: translateX(-50px);
}
div#cover div.list div.row.active div.text ul li,
div#cover div.list div.row.active div.text :where(h2, p.button-default) {
	opacity: 1;
	transform: translateX(0px);
}
div#cover div.list div.row div.text ul {
	position: absolute;
	right: 0px;
	top: -170px;
}
div#cover div.list div.row div.text ul li:not(:last-child) {
	margin-bottom: 10px;
}
div#cover div.list div.row div.text ul li:nth-child(1) {
	transition-delay: calc(calc(0.125s * 1) + 0.25s);
}
div#cover div.list div.row div.text ul li:nth-child(2) {
	padding-left: 90px;
	transition-delay: calc(calc(0.125s * 2) + 0.25s);
}
div#cover div.list div.row:where(:nth-child(2), :nth-child(3)) div.text ul li:nth-child(1) {
	margin-bottom: 25px;
}
div#cover div.list div.row div.text ul li:nth-child(3) {
	padding-left: 180px;
	transition-delay: calc(calc(0.125s * 3) + 0.25s);
}
div#cover div.list div.row div.text ul li img {
	height: 75px;
}
div#cover div.list div.row-02 div.text ul li:nth-child(2) img {
	height: 45px;
}
div#cover div.list div.row-03 div.text ul li:nth-child(2) img {
	height: 80px;
}
div#cover div.list div.row div.text h2 {
	margin-bottom: 60px;
	transition-delay: calc(calc(0.125s * 6) + 0.25s);
}
div#cover div.list div.row div.text h2 img {
	height: 302px;
}
div#cover div.list div.row div.text p.button-default {
	padding-left: 40px;
	transition-delay: calc(calc(0.125s * 7) + 0.25s);
}
div#cover div.list div.row div.text p.button-default a {
	width: 340px;
}



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

div#title div.text {
	text-align: center;
	padding-top: 60px;
}
div#title.main div.text {
	color: #00a0e1;
}
div#title.main div.text h1 {
	font-size: 5rem;
	font-weight: 900;
	line-height: 6rem;
	margin-bottom: 20px;
}
div#title.main div.text p.sub {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem;
}
div#title.main div.text p.sub:not(:last-child) {
	margin-bottom: 40px;
}
div#title.main div.text nav#navi-sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#title.main div.text nav#navi-sub ul li {
	font-size: 1.0625rem;
	font-weight: 700;
}
div#title.main div.text nav#navi-sub ul li:not(:last-child) {
	margin-right: 40px;
}
div#title.main div.text nav#navi-sub ul li a {
	color: #4e4e4e;
	text-underline-offset: 0.5em;
}
div#title.main div.text nav#navi-sub ul li a:hover {
	color: #00a0e1;
}
div#title.sub div.text p.sub {
	font-size: 1.75rem;
	font-weight: 900;
	color: #00a0e1;
	margin-bottom: 20px;
}
div#title.sub div.text h1 {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 4rem;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main aside#sidebar {
	position: absolute;
	left: 20px;
	top: 120px;
	z-index: 1;
}
main:has(div.list-category) aside#sidebar {
	width: 100px;
}
main:has(header.common) aside#sidebar {
	top: 720px;
}
main section.top aside#sidebar {
	position: fixed;
	left: calc(50% - calc(calc(100vw - 80px) * 0.5) + 20px);
	top: 120px;
}
body.admin-bar main section.top aside#sidebar {
	top: 152px;
}
@media (min-width:1300px) {
main section.top aside#sidebar {
	left: calc(50% - 630px);
}
}
main section.bottom aside#sidebar {
	position: absolute;
	top: auto;
	bottom: 120px;
}
body.admin-bar main section.bottom aside#sidebar {
	top: auto;
}
main aside#sidebar div.list-category p.label {
	text-align: center;
	font-size: 0.8125rem;
	line-height: 0.8125rem;
	color: #8d8d8d;
	margin-bottom: 20px;
}
main aside#sidebar div.list-category ul li {
	font-size: 0.8125rem;
	line-height: 1.25rem;
}
main aside#sidebar div.list-category ul li:not(:last-child) {
	margin-bottom: 10px;
}
main aside#sidebar div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 30px;
	border-width: 1px;
	border-style: solid;
	border-radius: 15px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main aside#sidebar div.list-category ul li.all a {
	color: #8d8d8d;
	border-color: #8d8d8d;
}
main aside#sidebar div.list-category ul li.all a:hover,
main aside#sidebar div.list-category ul li.all.active a {
	color: #ffffff;
	background-color: #8d8d8d;
}
main aside#sidebar div.list-category ul li.event a {
	color: #00a0e1;
	border-color: #00a0e1;
}
main aside#sidebar div.list-category ul li.event a:hover,
main aside#sidebar div.list-category ul li.event.active a {
	color: #ffffff;
	background-color: #00a0e1;
}
main aside#sidebar div.list-category ul li.report a {
	color: #54a05f;
	border-color: #54a05f;
}
main aside#sidebar div.list-category ul li.report a:hover,
main aside#sidebar div.list-category ul li.report.active a {
	color: #ffffff;
	background-color: #54a05f;
}
main aside#sidebar div.list-category ul li.blog a {
	color: #e67229;
	border-color: #e67229;
}
main aside#sidebar div.list-category ul li.blog a:hover,
main aside#sidebar div.list-category ul li.blog.active a {
	color: #ffffff;
	background-color: #e67229;
}
main aside#sidebar div.list-category select {
	display: none;
}
main aside#sidebar nav#navi-side ul li:not(:last-child) {
	margin-bottom: 10px;
}
main aside#sidebar nav#navi-side ul li a {
	position: relative;
	color: #00a0e1;
	padding-left: 20px;
}
main aside#sidebar nav#navi-side ul li a::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 7px;
	border: 1px solid #00a0e1;
	content: "";
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
main aside#sidebar nav#navi-side ul li a:hover::before,
main aside#sidebar nav#navi-side ul li.start a::before {
	background-color: #00a0e1;
}
main aside#sidebar nav#navi-side ul li.start.end a::before {
	background-color: transparent;
}
body.education main aside#sidebar nav#navi-side ul li:nth-child(2).start.end a::before {
	background-color: #00a0e1;
}
main section:has(aside#sidebar) div.inner-section {
	padding-left: 200px;
}
main nav#navi-bottom {
	padding-bottom: 120px;
}
main nav#navi-bottom:has(div.list-job-company) {
	width: calc(100vw - 80px);
	max-width: 1300px;
	margin: 0px auto;
}
main nav#navi-bottom p.label {
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 40px;
}
main nav#navi-bottom div.list-job-company {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
main nav#navi-bottom div.list-job-company div.row {
	width: calc(20% - 10px);
	margin-right: 10px;
}
main nav#navi-bottom div.list-job-company div.row a {
	display: block;
	position: relative;
	height: 100%;
	padding: 20px;
	border: 1px solid #dfeaf2;
	background-color: #ffffff;
	border-radius: 10px;
}
main nav#navi-bottom div.list-job-company div.row p.image {
	margin-bottom: 20px;
}
main nav#navi-bottom div.list-job-company div.row p.headline {
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #00a0e1;
	transition: 0.25s color ease;
}
main nav#navi-bottom div.list-job-company div.row a:hover p.headline {
	color: #8d8d8d;
}
main nav#navi-bottom div.slide-people {
	margin-bottom: 40px;
}
main nav#navi-bottom div.list-people-small {
	display: none;
}
main nav#navi-bottom p.list {
	text-align: center;
}
main nav#navi-bottom p.list a {
	color: #4e4e4e;
}
main nav#navi-bottom p.list a:hover {
	color: #8d8d8d;
}
main div.headline-people {
	overflow: hidden;
	margin-bottom: 120px;
}
body:has(div#title.sub).people main div.headline-people {
	display: none;
}
main div.headline-people div.inner-headline-people {
	display: flex;
	flex-wrap: wrap;
	width: 99999px;
	animation: headline-people 60s linear infinite forwards;
}
main div.headline-people p {
	width: 2680px;
	height: 13rem;
	overflow: hidden;
	font-size: 13rem;
	font-weight: 900;
	line-height: 11rem;
	color: #eeeeee;
}
@keyframes headline-people {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-2680px); }
}
main p#back {
	width: calc(100vw - 80px);
	max-width: 1300px;
	font-size: 1.75rem;
	font-weight: 700;
	color: #00a0e1;
	margin: 0px auto;
	padding: 40px 0px;
}
main p#back i.icon-arrow {
	display: inline-block;
	font-weight: 400;
	margin-right: 10px;
	transform: translateY(-4px) scaleX(-1);
}
main section div:where(#trigger-top, #trigger-bottom) {
	position: absolute;
}
main section div#trigger-top {
	top: 0px;
}
body.admin-bar main section div#trigger-top {
	top: -32px;
}
main:has(header.common) section div#trigger-top {
	top: 600px;
}
body.admin-bar main:has(header.common) section div#trigger-top {
	top: 568px;
}
main section div.inner-section {
	width: calc(100vw - 80px);
	max-width: 1300px;
	margin: 0px auto;
	padding: 120px 0px;
}
body:has(div#title.sub) main section:first-child div.inner-section {
	padding-top: 80px;
}
main div.frame {
	border: 1px solid #dfeaf2;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 60px;
}
main section header:where(.common, .feature) {
	text-align: center;
}
main section header.common,
main section header.common p.description:not(:last-child) {
	margin-bottom: 60px;
}
main section header.common:has(p.image) {
	margin-bottom: 120px;
}
main section header:where(.common, .feature) p.image {
	margin: 0px calc(50% - 50vw);
}
main section header:where(.common, .feature) p.image > img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section header:where(.common, .feature) p.description {
	font-size: 1.0625rem;
	line-height: 2.25rem;
}
main section header:where(.common, .feature) p.description-emphasis {
	font-weight: 700;
	color: #00a0e1;
}
main section header.common p.image {
	height: 480px;
}
main section header.feature,
main section header.feature p.image:not(:last-child) {
	margin-bottom: 80px;
}
main section header.feature:not(:has(p.description)) {
	margin-bottom: 120px;
}
main section header.feature p.image {
	position: relative;
}
main section header.feature p.image span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
}
main section header.feature p.image span img {
	height: 302px;
}
main section header.feature p.image {
	height: 600px;
}
main div.block {
	position: relative;
}
main div.block:not(:last-child) {
	margin-bottom: 120px;
}
main div.list-people div.inner-list-people {
	display: flex;
	flex-wrap: wrap;
}
main div.list-people div.row {
	width: 280px;
	margin-right: 40px;
}
main div.list-people div.row a {
	display: block;
	position: relative;
}
main div.list-people div.row p.image {
	margin-bottom: 20px;
	border-radius: 10px;
}
main div.list-people div.row div.text {
	text-align: center;
}
main div.list-people div.row div.text h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.5rem;
	color: #00a0e1;
	margin-bottom: 10px;
	transition: 0.25s color ease;
}
main div.list-people div.row a:hover div.text h3 {
	color: #8d8d8d;
}
main div.list-people div.row div.text p.sub {
	font-size: 0.8125rem;
	line-height: 1.25rem;
}
main div.list-people div.row p.sub span {
	display: none;
}
main div.list-people div.row i.icon-arrow {
	display: none;
}
main div.slide-people div.list-people {
	overflow: hidden;
	margin-bottom: 40px;
}
main div.slide-people div.list-people div.inner-list-people {
	width: 9999px;
}
main div.slide-people div.list-people div.row {
	width: 420px;
	margin-right: 60px;
}
main div.slide-people-small div.list-people div.row {
	width: 280px;
	margin-right: 40px;
}
main div.slide-people div.list-people div.text div.row h3 {
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin-bottom: 15px;
}
main div.slide-people div.list-people div.text div.row p.sub {
	font-size: 1.0625rem;
	line-height: 1.5rem;
}
main div.slide-people div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div.slide-people div.navi p.button {
	width: 10px;
	height: 10px;
	border: 1px solid #8d8d8d;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
main div.slide-people div.navi p.button:not(:last-child) {
	margin-right: 10px;
}
main div.slide-people div.navi p.button:hover,
main div.slide-people div.navi p.button.active {
	background-color: #8d8d8d;
}
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: #4e4e4e;
	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 {
	color: #00a0e1;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6):not(:last-child) {
	margin-bottom: 5px;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #eeeeee;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #acacac;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #eeeeee;
}
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: #4e4e4e;
	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: #8d8d8d;
}
main div.pager {
	position: relative;
	height: 50px;
	pointer-events: none;
}
main div.pager :where(span.current, a:not(:has(p.button))) {
	display: none;
}
main div.pager a {
	position: absolute;
	top: 0px;
	pointer-events: auto;
}
main div.pager a:has(p.button-prev) {
	left: 0px;
}
main div.pager a:has(p.button-next) {
	right: 0px;
}
main div.pager p.button {
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid #acacac;
	border-radius: 50%;
	transition: 0.25s background-color ease,  0.25s opacity ease;
}
main div.pager a:hover p.button {
	background-color: #acacac;
}
main div.pager p.button.disable {
	pointer-events: none;
	opacity: 0;
}
main div.pager p.button::before,
main div.pager p.button::after {
	position: absolute;
	border-bottom: 1px solid #acacac;
	content: "";
	transition: 0.25s border-color ease;
}
main div.pager a:hover p.button::before,
main div.pager a:hover p.button::after {
	border-color: #ffffff;
}
main div.pager p.button::before {
	width: 20px;
	height: 0px;
	left: calc(50% - 10px);
	top: calc(50% - 0.5px);
}
main div.pager p.button::after {
	width: 10px;
	height: 10px;
	left: calc(50% - 1px);
	top: calc(50% - 5px);
	border-right: 1px solid #acacac;
	transform: rotate(-45deg);
}
main div.pager p.button-prev {
	transform: scaleX(-1);
}
main div:where(.pager-list, .pager-number) {
	position: relative;
	margin-top: 60px;
}
main div.pager-list p.list,
main div.pager-number p.number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 50px;
}
main div:where(.pager-list, .pager-number) div.pager {
	width: 260px;
	margin: 0px auto;
}
main div.pager-list p.list,
main div.pager-number p.number {
	justify-content: center;
	position: absolute;
	width: 160px;
	left: calc(50% - 80px);
	top: 0px;
}
main div.pager-list p.list a {
	color: #8d8d8d;
}
main div.pager-list p.list a:hover {
	color: #00a0e1;
}
main div.pager-number:not(:has(div.pager)) {
	display: none;
}
main div.pager-number p.number {
	color: #acacac;
}
main div.pager-number p.number span.current::after {
	content: "/";
}
main div.simplebar-track.simplebar-horizontal {
	height: 8px;
}
main div.simplebar-track.simplebar-horizontal::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: 3.5px;
	border-bottom: 1px solid #eeeeee;
	content: "";
}
main div.simplebar-scrollbar:before {
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	border-radius: 0px;
}
main div.simplebar-scrollbar:before {
	background-color: #00a0e1;
}
main div.simplebar-scrollbar.simplebar-visible:before {
	opacity: 1;
}

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

body.home main {
	position: relative;
	z-index: 1;
	background-color: #f8f8f8;
}
body.home main::before {
	position: absolute;
	width: 100%;
	height: 300px;
	left: 0px;
	top: -300px;
	background-color: #f8f8f8;
	content: "";
	clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
main section:where(#home-job-company, #home-people) div.inner-section {
	padding-bottom: 40px;
}
main section#home-job-company div.inner-section {
	max-width: 1100px;
	padding-top: 80px;
}
main section#home-job-company div.block:nth-child(2n+1) {
	padding-left: 150px;
}
main section#home-job-company div.block:nth-child(2n) {
	padding-right: 150px;
}
main section#home-job-company div.block div.header {
	position: absolute;
	width: 110px;
	top: 0px;
}
main section#home-job-company div.block:nth-child(2n+1) div.header {
	left: 0px;
}
main section#home-job-company div.block:nth-child(2n) div.header {
	right: 0px;
}
main section#home-job-company div.block div.header h2,
main section:where(#home-people, #home-news) header h2 {
	font-weight: 700;
	color: #00a0e1;
}
main section#home-job-company div.block div.header h2,
main section#home-people header h2 {
	font-size: 6.25rem;
	line-height: 8rem;
}
main section#home-job-company div.block div.header h2 {
	writing-mode: vertical-rl;
	white-space: pre;
	margin-bottom: 40px;
}
main section#home-job-company div.block div.header p.button-default a {
	width: 50px;
	height: 160px;
	writing-mode: vertical-rl;
	white-space: pre;
	padding: 25px 0px 40px 0px;
}
main section#home-job-company div.block div.header p.button-default i.icon-arrow {
	left: calc(50% - 6.5px);
	right: auto;
	top: auto;
	bottom: 12.5px;
}
main section#home-job-company div.block div.slide {
	position: relative;
	margin-bottom: 40px;
}
main section#home-job-company div.block div.slide div.list {
	position: relative;
	aspect-ratio: 950 / 530;
}
main section#home-job-company div.block div.slide div.list div.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	overflow: hidden;
	border-radius: 20px;
}
main section#home-job-company div.block div.slide div.list div.row a {
	display: block;
	position: relative;
	height: 100%;
}
main section#home-job-company div.block div.slide div.list div.row p.image {
	position: relative;
}
main section#home-job-company div.block div.slide div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #000000;
	content: "";
	opacity: 0.425;
	transition: 0.25s opacity ease;
}
main section#home-job-company div.block div.slide div.list div.row a:hover p.image::before {
	opacity: 0;
}
main section#home-job-company div.block div.slide div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-job-company div.block div.slide div.list div.row div.text {
	position: absolute;
	left: 60px;
	bottom: 60px;
	z-index: 5;
	color: #ffffff;
}
main section#home-job-company div.block div.slide div.list div.row div.text h3 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
}
main section#home-job-company div.block div.slide div.list div.row div.text h3:not(:last-child) {
	margin-bottom: 20px;
}
main section#home-job-company div.block div.slide div.navi {
	position: absolute;
	right: 30px;
	top: 35px;
	z-index: 5;
}
main section#home-job-company div.block div.slide div.navi p.button {
	position: relative;
	width: 20px;
	height: 50px;
	cursor: pointer;
	opacity: 0.5;
	transition: 0.25s opacity ease;
}
main section#home-job-company div.block div.slide div.navi p.button::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 10px);
	left: calc(50% - 0.5px);
	top: 5px;
	border-right: 1px solid #ffffff;
	content: "";
}
main section#home-job-company div.block div.slide div.navi p.button:hover,
main section#home-job-company div.block div.slide div.navi p.button.active {
	opacity: 1;
}
main section#home-job-company div.block > p.description {
	width: 100%;
	text-align: center;
}
main section#home-people div.inner-section {
	width: auto;
	max-width: none;
}
main section#home-people header {
	text-align: center;
	margin-bottom: 120px;
}
main section#home-people header h2 {
	margin-bottom: 20px;
}
main section#home-people header p.button-default {
	margin-bottom: 40px;
}
main section#home-people div.block h2 {
	position: absolute;
	width: calc(565px * 0.75);
	top: -60px;
	z-index: 1;
	pointer-events: none;
	transform: rotate(-10deg);
}
main section#home-people div.block h2 img {
	width: 100%;
}
main section#home-people div.block div.slide-people:not(:last-child) {
	margin-bottom: 80px;
}
main section#home-people div.block-cross-talk h2 {
	left: calc(50% - 480px);
}
main section#home-people div.block-interview h2 {
	right: calc(50% - 480px);
}
main section#home-news header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}
main section#home-news header h2 {
	font-size: 5rem;
	line-height: 6rem;
	margin-right: 20px;
}
main section#home-news header p.button-default {
	transform: translateY(10px);
}
main section#home-news div.list-news {
	margin: 0px -20px 0px 0px;
}
main section#home-news div.list-news div.row {
	width: calc(25% - 20px);
	margin: 0px 20px 0px 0px;
}

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

main div.category-created,
main div.category-created p.category {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main div.category-created p.category {
	justify-content: center;
	width: 100px;
	height: 30px;
	color: #ffffff;
	font-size: 0.8125rem;
	line-height: 1.25rem;
	border-radius: 15px;
}
main div.category-created p.category-event {
	background-color: #00a0e1;
}
main div.category-created p.category-report {
	background-color: #54a05f;
}
main div.category-created p.category-blog {
	background-color: #e67229;
}
main div.category-created p.created {
	width: calc(100% - 115px);
	font-weight: 700;
	color: #8d8d8d;
}
main div.list-news {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
main div.list-news div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 40px 0px;
}
main div.list-news div.row p.image {
	aspect-ratio: 320 / 240;
	margin-bottom: 20px;
	border-radius: 10px;
}
main div.list-news div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.list-news div.row div.category-created {
	margin-bottom: 10px;
}
main div.list-news div.row h3 {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5rem;
}
main article.news header {
	margin-bottom: 60px;
}
main article.news header div.category-created {
	margin-bottom: 20px;
}
main article.news header h1 {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 2.75rem;
}
main section#news div.list-news-wrapper,
main section#news div.list-news-wrapper div.list-news {
	position: relative;
}
main section#news div.list-news-wrapper {
	padding: 80px 0px 80px 80px;
}
main section#news div.list-news-wrapper::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 1px solid #dfeaf2;
	background-color: #ffffff;
	content: "";
	border-radius: 60px;
}
body.single.news main section#news {
	background-color: #ffffff;
}
body.single.news main section#news div.inner-section {
	max-width: 800px;
}

/* job
-------------------------------------------------------------------------------- */

main section#job div.inner-section {
	max-width: 1100px;
}
main section#job div.list div.row {
	width: calc(100% - 265px);
}
main section#job div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#job div.list div.row:nth-child(2n) {
	margin-left: auto;
}
main section#job div.list div.row a {
	display: block;
	position: relative;
	overflow: hidden;
	color: #ffffff;
	border-radius: 20px;
}
main section#job div.list div.row p.image {
	position: relative;
}
main section#job div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #000000;
	content: "";
	opacity: 0.425;
	transition: 0.25s opacity ease;
}
main section#job div.list div.row a:hover p.image::before {
	opacity: 0;
}
main section#job div.list div.row :where(h2, i.icon-arrow) {
	position: absolute;
	z-index: 5;
}
main section#job div.list div.row h2 {
	left: 60px;
	top: 60px;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
}
main section#job div.list div.row i.icon-arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	right: 40px;
	bottom: 40px;
	font-size: 1.25rem;
	font-weight: 400;
	border: 2px solid #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section#job div.list div.row a:hover i.icon-arrow {
	color: #00a0e1;
	background-color: #ffffff;
}

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

main section#about div.block div.text,
main section#about div.block div.text h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#about div.block div.text {
	justify-content: space-between;
	margin-bottom: 60px;
}
main section#about div.block div.text h2 {
	justify-content: center;
	width: 400px;
	height: 400px;
	text-align: center;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 2.75rem;
	color: #00a0e1;
	border: 1px solid #00a0e1;
	border-radius: 50%;
}
main section#about div.block div.text h2 span {
	display: block;
}
main section#about div.block div.text div.body {
	width: calc(100% - 460px);
}
main section#about div.block div.image {
	margin: 0px -80px;
}
main section#about div.block div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
main section#about div.block div.image p.row {
	width: calc(33.33% - 10px);
	margin-right: 10px;
}
main section#about div.block div.image p.row:nth-child(n+4) {
	display: none;
}
main section#about div.block div.data {
	padding: 60px;
	background-color: #f2fafd;
	border-radius: 20px;
}
main section#about div.block div.data:not(:last-child) {
	margin-bottom: 60px;
}
main section#about div.block div.data div.inner-data {
	max-width: 800px;
	margin: 0px auto;
}
main section#about div.block div.data div.header {
	margin-bottom: 40px;
}
main section#about div.block div.data div.header h3 {
	font-size: 1.0625rem;
	font-weight: 700;
}
main section#about div.block div.data div.diagram-wrapper {
	margin-bottom: 20px;
}
main section#about div.block div.data p.diagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#about div.block div.data div.notice {
	position: relative;
	font-size: 0.8125rem;
	line-height: 1.25rem;
	padding-left: 30px;
}
main section#about div.block div.data div.notice:not(:last-child) {
	margin-bottom: 20px;
}
main section#about div.block div.data div.notice p.label {
	position: absolute;
	left: 0px;
	top: 0px;
}
main section#about div.block p.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#about div.block p.column span {
	display: block;
	width: calc(50% - 30px);
}
main section#about div.block-03 div.data p.diagram img {
	width: 776px;
}
main section#about div.block div.data div.header,
main section#about div.block-04 div.data div.header ul {
	display: flex;
	flex-wrap: wrap;
}
main section#about div.block div.data div.header {
	align-items: center;
}
main section#about div.block-04 div.data div.header h3 {
	margin-right: 60px;
}
main section#about div.block-04 div.data div.header ul {
	display: flex;
	flex-wrap: wrap;
}
main section#about div.block-04 div.data div.header ul li {
	position: relative;
	font-size: 0.8125rem;
	line-height: 1.25rem;
	padding-left: 15px;
}
main section#about div.block-04 div.data div.header ul li:not(:last-child) {
	margin-right: 30px;
}
main section#about div.block-04 div.data div.header ul li::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 6px;
	border: 2px solid #54a05f;
	content: "";
	border-radius: 50%;
}
main section#about div.block-04 div.data div.header ul li:nth-child(1):before {
	background-color: #ffffff;
}
main section#about div.block-04 div.data div.header ul li:nth-child(2):before {
	background-color: #54a05f;
}
main section#about div.block-04 div.data p.diagram img {
	width: 790px;
}

/* construction
-------------------------------------------------------------------------------- */

main section#construction div.block div.image {
	margin: 0px -80px;
}
main section#construction div.block div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
main section#construction div.block div.image p.row {
	width: calc(33.33% - 10px);
	margin-right: 10px;
}
main section#construction div.block div.image p.row:nth-child(n+4) {
	display: none;
}
main section#construction div.block div.text,
main section#construction div.block div.text h2 {
	display: flex;
	flex-wrap: wrap;
}
main section#construction div.block div.text {
	justify-content: space-between;
	position: relative;
	margin-top: -40px;
}
main section#construction div.block div.text h2 {
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 300px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem;
	color: #00a0e1;
	border: 1px solid #00a0e1;
	background-color: #ffffff;
	border-radius: 50%;
}
main section#construction div.block div.text h2 span {
	display: block;
}
main section#construction div.block div.text div.body {
	width: calc(100% - 360px);
	padding-top: 80px;
}
main section#construction div.block div.text div.body h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #00a0e1;
	margin-bottom: 20px;
}

/* dx
-------------------------------------------------------------------------------- */

main section#dx header.common p.description {
	font-weight: 700;
	color: #00a0e1;
}
main section#dx div.list {
	margin-bottom: 60px;
}
main section#dx div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#dx div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#dx div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
}
main section#dx div.list div.row :where(p.image, div.text) {
	width: calc(50% - 30px);
}
main section#dx div.image {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
main section#dx div.image p.row {
	width: calc(33.33% - 20px);
	margin-right: 20px;
}
main section#dx div.image p.row img {
	width: 100%;
}

/* machine
-------------------------------------------------------------------------------- */

main section#machine header.common p.description {
	text-align: left;
	padding-left: 565px;
}
main section#machine div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
main section#machine div.list div.row:first-child {
	margin-top: -300px;
}
main section#machine div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#machine div.list div.row:nth-child(2n+1) {
	margin-left: -40px;
}
main section#machine div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
	margin-right: -40px;
}
main section#machine div.list div.row div.main {
	width: 565px;
}
main section#machine div.list div.row div.sub {
	width: calc(100% - 565px);
}
main section#machine div.list div.row div.sub h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #00a0e1;
	margin-bottom: 40px;
	padding: 0px 0px 20px 40px;
}
main section#machine div.list div.row-04 div.sub h2 {
	margin-right: -120px;
}
main section#machine div.list div.row div.sub h2 span:not(:last-child) {
	margin-right: 20px;
}
main section#machine div.list div.row div.sub h2 span:where(.main, .sub) {
	display: block;
	font-weight: 700;
	color: #00a0e1;
}
main section#machine div.list div.row div.sub h2 span.main {
	font-size: 1.75rem;
	letter-spacing: -0.075em;
}
main section#machine div.list div.row div.sub h2 span.sub {
	font-size: 1.375rem;
}
main section#machine div.list div.row div.sub h2 span.unit {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 30px;
	font-size: 0.9375rem;
	color: #ffffff;
	background-color: #00a0e1;
	border-radius: 15px;
}
main section#machine div.list div.row div.sub div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0px 40px;
}
main section#machine div.list div.row div.sub div.image p.row {
	width: 100%;
	max-width: 325px;
	height: 180px;
}
main section#machine div.list div.row div.sub div.image:has(p.row:nth-child(2)) p.row {
	width: calc(50% - 5px);
}
main section#machine div.list div.row div.sub div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* occupation
-------------------------------------------------------------------------------- */

main section#occupation header.common {
	margin-left: -200px;
}
main section#occupation div.block-summary {
	text-align: center;
	margin-left: -200px;
}
main section#occupation div.block-summary h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	color: #00a0e1;
	margin-bottom: 60px;
}
main section#occupation div.description {
	margin-bottom: 80px;
}
main section#occupation div.description p.row {
	line-height: 2rem;
}
main section#occupation div.description p.row:not(:last-child) {
	margin-bottom: 2rem;
}
main section#occupation div.description p.row span {
	font-size: 1.25rem;
	font-weight: 700;
	color: #54a05f;
}
main section#occupation div.block-occupation,
main section#occupation div.block-occupation div.inner-block {
	position: relative;
}
main section#occupation div.block-occupation::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 1px solid #dfeaf2;
	background-color: #ffffff;
	content: "";
	border-radius: 60px;
}
main section#occupation div.block-occupation div.inner-block {
	padding: 80px;
}
main section#occupation div.block-occupation div.header {
	margin-bottom: 80px;
}
main section#occupation div.block-occupation div.header h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	margin-bottom: 40px;
}
main section#occupation div.block-occupation-01 div.header h2 {
	color: #00a0e1;
}
main section#occupation div.block-occupation-02 div.header h2 {
	color: #54a05f;
}
main section#occupation div.block-occupation div.image-text {
	position: relative;
	margin-bottom: 60px;
}
main section#occupation div.block-occupation div.image-text p.image {
	position: absolute;
	aspect-ratio: 1;
	width: 475px;
	left: 600px;
	top: -240px;
	border-radius: 50%;
}
main section#occupation div.block-occupation div.image-text div.text,
main section#occupation div.block-occupation div.image-text div.text p.case {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#occupation div.block-occupation div.image-text div.text,
main section#occupation div.block-occupation div.image-text div.text p.case,
main section#occupation div.block-occupation div.image-text div.text p.case span {
	position: relative;
}
main section#occupation div.block-occupation div.image-text div.text p.case {
	justify-content: center;
	width: 280px;
	height: 200px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-right: 20px;
}
main section#occupation div.block-occupation div.image-text div.text p.case::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	border-radius: 50%;
	transform: rotate(-22.5deg);
}
main section#occupation div.block-occupation-01 div.image-text div.text p.case::before {
	background: linear-gradient(145deg, #b5d9c2 0%, #587dc4 100%);
}
main section#occupation div.block-occupation-02 div.image-text div.text p.case::before {
	background: linear-gradient(145deg, #91b29d 0%, #58c4ab 100%);
}
main section#occupation div.block-occupation div.image-text div.text p.case span,
main section#occupation div.block-occupation div.image-text div.text p.case span i {
	display: block;
}
main section#occupation div.block-occupation div.image-text div.text p.case span {
	width: 140px;
}
main section#occupation div.block-occupation div.image-text div.text p.case span i:nth-child(2) {
	text-align: right;
}
main section#occupation div.block-occupation div.image-text div.text p.case span em {
	font-size: 1.0625rem;
}
main section#occupation div.block-occupation div.image-text div.text div.profile {
	width: 280px;
}
main section#occupation div.block-occupation div.image-text div.text div.profile p:where(.post, .name) {
	font-weight: 700;
}
main section#occupation div.block-occupation div.image-text div.text div.profile p.name {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.75rem;
	line-height: 2.75rem;
	margin-bottom: 20px;
}
main section#occupation div.block-occupation div.image-text div.text div.profile p.name span {
	display: inline-block;
	font-size: 1.0625rem;
	transform: translateY(5px);
}
main section#occupation div.block-occupation div.image-text div.text div.profile p.year {
	width: 120px;
	text-align: center;
	margin: -55px -20px 0px auto;
}
main section#occupation div.block-occupation div.image-text div.text div.profile p.year span.main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 30px;
	font-weight: 700;
	color: #ffffff;
	border-radius: 15px;
}
main section#occupation div.block-occupation-01 div.image-text div.text div.profile p.year span.main {
	background-color: #00a0e1;
}
main section#occupation div.block-occupation-02 div.image-text div.text div.profile p.year span.main {
	background-color: #54a05f;
}
main section#occupation div.block-occupation div.image-text div.text div.profile p.year span.sub {
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #8d8d8d;
}
main section#occupation div.block-occupation div.image-text div.text div.profile ul {
	display: flex;
	flex-wrap: wrap;
}
main section#occupation div.block-occupation div.image-text div.text div.profile ul li:not(:last-child) {
	margin-right: 10px;
}
main section#occupation div.block-occupation div.image-text div.text div.profile ul li::before {
	content: "#";
}
main section#occupation div.block-occupation div.schedule {
	margin: 0px calc(50% - 50vw + 100px) 80px -80px;
}
main section#occupation div.block-occupation div.schedule h3 {
	padding-left: 200px;
}
main section#occupation div.block-occupation div.schedule h3 img {
	width: 305px;
	transform-origin: left bottom;
	transform: rotate(-10deg);
}
main section#occupation div.block-occupation div.schedule div.list:not(:last-child) {
	margin-bottom: 40px;
}
main section#occupation div.block-occupation div.schedule div.list div.simplebar-track.simplebar-horizontal {
	width: calc(100% - 160px);
	margin-left: 80px;
}
main section#occupation div.block-occupation div.schedule div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
	padding-left: 80px;
}
main section#occupation div.block-occupation-01 div.schedule div.list div.inner-list {
	width: 1970px;
}
main section#occupation div.block-occupation-02 div.schedule div.list div.inner-list {
	width: 1740px;
}
main section#occupation div.block-occupation div.schedule div.list div.row {
	position: relative;
	height: 335px;
	font-weight: 700;
	line-height: 1.25rem;
	padding-top: 50px;
}
main section#occupation div.block-occupation div.schedule div.list div.row:not(:last-child) {
	padding-right: 40px;
}
main section#occupation div.block-occupation-01 div.schedule div.list div.row {
	color: #00a0e1;
}
main section#occupation div.block-occupation-02 div.schedule div.list div.row {
	color: #54a05f;
}
main section#occupation div.block-occupation div.schedule div.list div.row:not(:last-child)::before,
main section#occupation div.block-occupation div.schedule div.list div.row::after {
	position: absolute;
	content: "";
}
main section#occupation div.block-occupation div.schedule div.list div.row:not(:last-child)::before {
	width: 100%;
	height: 0px;
	left: 5px;
	top: 34.5px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
}
main section#occupation div.block-occupation-01 div.schedule div.list div.row:not(:last-child)::before {
	border-color: #00a0e1;
}
main section#occupation div.block-occupation-02 div.schedule div.list div.row:not(:last-child)::before {
	border-color: #54a05f;
}
main section#occupation div.block-occupation div.schedule div.list div.row::after {
	width: 10px;
	height: 10px;
	left: 5px;
	top: 30px;
	border-radius: 50%;
}
main section#occupation div.block-occupation-01 div.schedule div.list div.row::after {
	background-color: #00a0e1;
}
main section#occupation div.block-occupation-02 div.schedule div.list div.row::after {
	background-color: #54a05f;
}
main section#occupation div.block-occupation div.schedule div.list div.row p.label {
	position: absolute;
	left: 0px;
	top: 0px;
}
main section#occupation div.block-occupation div.schedule div.list div.row p.time {
	margin-bottom: 5px;
}
main section#occupation div.block-occupation div.schedule div.list div.row p.image {
	position: absolute;
	left: -120px;
	top: 130px;
	aspect-ratio: 1;
	width: 170px;
	mask-image: url(../images/path-balloon.svg);
	mask-size: 100% 100%;
}
main section#occupation div.block-occupation-01 div.schedule div.list div.row-02 p.image {
	left: -60px;
}
main section#occupation div.block-occupation-01 div.schedule div.list div.row-10 p.image {
	left: -175px;
}
main section#occupation div.block-occupation-02 div.schedule div.list div.row-05 p.image {
	left: -190px;
}
main section#occupation div.block-occupation-02 div.schedule div.list div.simplebar-scrollbar:before {
	background-color: #54a05f;
}
main section#occupation div.block-occupation div.people h2 {
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 40px;
}
main section#occupation div.block-occupation div.people div.list-people div.inner-list-people {
	margin-right: -40px;
}
main section#occupation div.block-occupation div.people div.list-people div.row {
	width: calc(33.33% - 40px);
}

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

main div.list-scene p.row img {
	width: 100%;
}
main section#scene div.frame {
	padding-left: 20px;
	padding-right: 20px;
}
main section#scene div.slide div.list-scene {
	margin-bottom: -20px;
}
main section#scene div.slide div.list-scene div.inner-list-scene {
	height: 0px;
	overflow: hidden;
	opacity: 0;
	transition: 0.25s opacity ease;
}
main section#scene div.slide div.list-scene div.inner-list-scene.active {
	height: auto;
	opacity: 1;
}
main section#scene div.slide-large div.list-scene div.inner-list-scene {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
main section#scene div.slide-large div.list-scene p.row {
	width: calc(33.33% - 20px);
	margin: 0px 20px 20px 0px;
}
main section#scene div.slide-small {
	display: none;
}

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

main section#company div.inner-section {
	max-width: 1100px;
}
main section#company div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px -60px 0px;
	padding-top: 120px;
}
main section#company div.list div.row {
	width: calc(50% - 60px);
	margin: 0px 60px 60px 0px;
}
main section#company div.list div.row:nth-child(2n+1) {
	margin-top: -120px;
}
main section#company div.list div.row a {
	display: block;
	position: relative;
	overflow: hidden;
	color: #ffffff;
	border-radius: 20px;
}
main section#company div.list div.row p.image {
	position: relative;
}
main section#company div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #000000;
	content: "";
	opacity: 0.425;
	transition: 0.25s opacity ease;
}
main section#company div.list div.row a:hover p.image::before {
	opacity: 0;
}
main section#company div.list div.row :where(h2, i.icon-arrow) {
	position: absolute;
	z-index: 5;
}
main section#company div.list div.row h2 {
	left: 60px;
	top: 60px;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
}
main section#company div.list div.row i.icon-arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	right: 40px;
	bottom: 40px;
	font-size: 1.25rem;
	font-weight: 400;
	border: 2px solid #ffffff;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section#company div.list div.row a:hover i.icon-arrow {
	color: #00a0e1;
	background-color: #ffffff;
}

/* outline
-------------------------------------------------------------------------------- */

main section#outline div.inner-section {
	max-width: 1100px;
}
main section#outline div.block h2 {
	text-align: center;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	margin-bottom: 60px;
}
main section#outline div.block div.list {
	overflow: hidden;
	border: 1px solid #dfeaf2;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#outline div:where(.block-outline, .block-history) div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main section#outline div:where(.block-outline, .block-history) div.list div.row:not(:last-child) {
	border-bottom: 1px solid #dfeaf2;
}
main section#outline div:where(.block-outline, .block-history) div.list div.row p.label {
	background-color: #f2fafd;
	display: flex;
	flex-wrap: wrap;
	color: #00a0e1;
	border-right: 1px solid #dfeaf2;
	padding: 20px 0px 20px 40px;
}
main section#outline div:where(.block-outline, .block-history) div.list div.row div.body {
	padding: 20px 40px;
}
main section#outline div:where(.block-outline, .block-history) div.list div.row div.body ul li:not(:last-child) {
	position: relative;
	margin-bottom: 40px;
}
main section#outline div:where(.block-outline, .block-history) div.list div.row div.body ul li:not(:last-child)::before {
	position: absolute;
	width: calc(100% + 80px);
	height: 0px;
	left: -40px;
	bottom: -20px;
	border-bottom: 1px solid #dfeaf2;
	content: "";
}
main section#outline div.block-outline div.list div.row p.label {
	width: 240px;
}
main section#outline div.block-outline div.list div.row div.body {
	width: calc(100% - 240px);
}
main section#outline div.block-outline div.list div.row div.body ul li {
	display: flex;
	flex-wrap: wrap;
}
main section#outline div.block-outline div.list div.row div.body ul li span {
	display: block;
}
main section#outline div.block-outline div.list div.row div.body ul li span.label {
	width: 120px;
}
main section#outline div.block-outline div.list div.row div.body ul li span.body {
	width: calc(100% - 120px);
}
main section#outline div.block-certification div.list,
main section#outline div.block-certification div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main section#outline div.block-certification div.list {
	margin: 0px -40px -40px 0px;
	padding: 80px 0px 20px 80px;
}
main section#outline div.block-certification div.list div.row {
	justify-content: space-between;
	width: calc(50% - 40px);
	margin: 0px 40px 40px 0px;
}
main section#outline div.block-certification div.list div.row:first-child {
	margin-right:  calc(50% + 40px);
}
main section#outline div.block-certification div.list div.row div.text {
	width: calc(100% - 200px);
	line-height: 1.5rem;
}
main section#outline div.block-certification div.list div.row div.text h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #00a0e1;
	margin-bottom: 10px;
}
main section#outline div.block-certification div.list div.row p.logo {
	width: 180px;
}
main section#outline div.block-certification div.list div.row p.logo img {
	width: 100%;
}
main section#outline div.block-history div.list div.row p.label {
	width: 120px;
}
main section#outline div.block-history div.list div.row div.body {
	width: calc(100% - 120px);
}

/* message
-------------------------------------------------------------------------------- */

main section#message div.frame {
	padding-top: 0px;
	padding-bottom: 120px;
}
main section#message p.image {
	height: 600px;
	margin: 0px -80px 60px -80px;
	border-radius: 79px 79px 0px 0px;
}
main section#message p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#message div.description {
	margin-bottom: 60px;
}
main section#message div.description p.row {
	text-align: center;
	font-size: 1.0625rem;
	line-height: 2.375rem;
}
main section#message div.description p.row:not(:last-child) {
	margin-bottom: 2.375rem;
}
main section#message p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section#message p.name span {
	display: block;
}
main section#message p.name span.sub {
	margin-right: 20px;
	transform: translateY(1px);
}
main section#message p.name span.main {
	font-size: 1.75rem;
	font-weight: 700;
}

/* treatment
-------------------------------------------------------------------------------- */

main section#treatment div.inner-section {
	max-width: none;
}
main section#treatment div.list {
	padding: 0px 1px 1px 0px;
}
main section#treatment div.list div.width {
	width: 33.33%;
}
main section#treatment div.list div.row {
	width: 33.33%;
	min-height: 340px;
	text-align: center;
	border: 1px solid #dfeaf2;
	margin: 0px -1px -1px 0px;
	padding: 40px 20px 20px 20px;
	background-color: #ffffff;
}
@media (min-width:1600px) {
main section#treatment div.list div.row {
	width: 25%;
}
}
@media (min-width:2000px) {
main section#treatment div.list div.row {
	width: 20%;
}
}
@media (min-width:2400px) {
main section#treatment div.list div.row {
	width: 16.66%;
}
}
main section#treatment div.list div.row:nth-child(2n+1) {
	color: #00a0e1;
}
main section#treatment div.list div.row:nth-child(2n) {
	color: #54a05f;
}
main section#treatment div.list div.row-05 {
	padding-top: 100px;
}
main section#treatment div.list div.row :where(h2, p.main, p.sub) {
	font-weight: 700;
}
main section#treatment div.list div.row :where(h2, p.main),
main section#treatment div.list div.row p.sub:not(:last-child) {
	margin-bottom: 10px;
}
main section#treatment div.list div.row h2 {
	font-size: 2.75rem;
	line-height: 3.25rem;
}
main section#treatment div.list div.row h2.large {
	font-size: 3.5rem;
	line-height: 4rem;
}
main section#treatment div.list div.row p.main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}
main section#treatment div.list div.row p.main span {
	display: block;
}
main section#treatment div.list div.row p.main span:not(:last-child) {
	margin-right: 5px;
}
main section#treatment div.list div.row p.main span:where(.prefix, .suffix) {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 2.75rem;
}
main section#treatment div.list div.row p.main span.number {
	font-size: 9.25rem;
	font-weight: 900;
	line-height: 7.5rem;
	transform: translateY(-5px);
}
main section#treatment div.list div.row p.main span.headline {
	font-size: 5.5rem;
	line-height: 5.5rem;
}
main section#treatment div.list div.row p.sub {
	line-height: 1.5rem;
}
main section#treatment div.list div.row p.note {
	line-height: 1rem;
}
main section#treatment div.list div.row p.note span {
	display: block;
}
main section#treatment div.list div.row p.note span:not(:last-child) {
	margin-bottom: 5px;
}
main section#treatment div.list div.row p.image {
	padding-top: 10px;
}

/* strength
-------------------------------------------------------------------------------- */

main section#strength div.inner-section {
	max-width: none;
}
main section#strength div.block-strength div.list {
	position: relative;
	height: 1300px;
}
main section#strength div.block-strength div.list div.row {
	position: absolute;
}
main section#strength div.block-strength div.list div.row p.image,
main section#strength div.block-strength div.list div.row div.image p.row {
	position: relative;
	aspect-ratio: 1;
	border-radius: 50%;
}
main section#strength div.block-strength div.list div.row p.image span,
main section#strength div.block-strength div.list div.row div.image p.row span {
	position: absolute;
	text-align: center;
}
main section#strength div.block-strength div.list div.row p.image span i,
main section#strength div.block-strength div.list div.row div.image p.row span i {
	display: block;
}
main section#strength div.block-strength div.list div.row p.image span i:where(.post, .age),
main section#strength div.block-strength div.list div.row div.image p.row span i:where(.post, .age) {
	font-weight: 700;
}
main section#strength div.block-strength div.list div.row p.image span i.post,
main section#strength div.block-strength div.list div.row div.image p.row span i.post {
	line-height: 1.25rem;
	margin-bottom: 5px;
}
main section#strength div.block-strength div.list div.row p.image span {
	right: calc(50% + 120px);
	top: 50%;
	color: #ffffff;
}
main section#strength div.block-strength div.list div.row p.image span i.age {
	font-size: 1.375rem;
	line-height: 1.5rem;
}
main section#strength div.block-strength div.list div.row p.image span i.age em {
	font-size: 2.75rem;
}
main section#strength div.block-strength div.list div.row div.text {
	position: absolute;
	width: 320px;
	font-weight: 700;
	color: #00a0e1;
	transform-origin: left bottom;
	transform: rotate(-10deg);
}
main section#strength div.block-strength div.list div.row div.text div.inner-text {
	transition-duration: 0.75s;
}
main section#strength div.block-strength div.list div.row div.text h2 {
	font-size: 3.125rem;
	line-height: 3.125rem;
}
main section#strength div.block-strength div.list div.row div.text h2 i {
	display: inline-block;
	font-size: 3.75rem;
	margin-left: 5px;
	transform: translateY(4px) rotate(10deg);
}
main section#strength div.block-strength div.list div.row-01 {
	position: absolute;
	width: 600px;
	right: calc(50% - 20px);
	top: 0px;
}
main section#strength div.block-strength div.list div.row-01 div.text {
	left: 580px;
	top: 60px;
}
main section#strength div.block-strength div.list div.row-02 {
	width: 600px;
	left: calc(50% - 20px);
	top: 140px;
}
main section#strength div.block-strength div.list div.row-02 div.image p.row {
	width: 300px;
	overflow: hidden;
}
main section#strength div.block-strength div.list div.row-02 div.image p.row img {
	width: 100%;
}
main section#strength div.block-strength div.list div.row div.image p.row span i.age {
	line-height: 1.25rem;
}
main section#strength div.block-strength div.list div.row div.image p.row span i.age em {
	font-size: 1.75rem;
}
main section#strength div.block-strength div.list div.row-02 div.image p.row-01 {
	margin-left: 180px;
}
main section#strength div.block-strength div.list div.row div.image p.row-01 span {
	right: calc(50% + 40px);
	top: calc(50% - 20px);
}
main section#strength div.block-strength div.list div.row div.image p.row-02 span {
	left: calc(50% + 30px);
	top: calc(50% - 20px);
}
main section#strength div.block-strength div.list div.row p.image span i.note,
main section#strength div.block-strength div.list div.row div.image p.row span i.note {
	font-size: 0.6875rem;
	line-height: 1rem;
}
main section#strength div.block-strength div.list div.row-02 div.image p.row-03 {
	margin: -100px 0px 0px auto;
}
main section#strength div.block-strength div.list div.row div.image p.row-03 span {
	left: calc(50% + 50px);
	top: calc(50% - 70px);
}
main section#strength div.block-strength div.list div.row-02 div.text {
	left: 360px;
	top: 380px;
}
main section#strength div.block-strength div.list div.row-03 {
	width: 553px;
	right: calc(50% - 80px);
	bottom: 0px;
}
main section#strength div.block-strength div.list div.row-03 div.text {
	left: 620px;
	top: 280px;
}
main section#strength div.block-strength div.list div.row-03 div.text h2 span {
	display: block;
}
main section#strength div.block-strength div.list div.row-03 div.text h2 span.sub {
	font-size: 2.75rem;
}
main section#strength div.block-strength div.list div.row-03 div.text h2 span.main {
	font-size: 8.5rem;
	line-height: 6rem;
	margin-bottom: 10px;
}
main section#strength div.block-strength div.list div.row-03 div.text h2 span.main em {
	font-size: 5rem;
}
main section#strength div.block-strength div.list div.row-03 div.text h2 span.main i {
	font-size: 5.5rem;
}
main section#strength div.block-data div.list {
	display: flex;
	flex-wrap: wrap;
	padding: 0px 1px 1px 0px;
}
main section#strength div.block-data div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 33.33%;
	min-height: 320px;
	text-align: center;
	border: 1px solid #dfeaf2;
	margin: 0px -1px -1px 0px;
	padding: 20px;
	background-color: #ffffff;
}
@media (min-width:1600px) {
main section#strength div.block-data div.list div.row {
	width: 25%;
}
}
@media (min-width:2000px) {
main section#strength div.block-data div.list div.row {
	width: 20%;
}
}
@media (min-width:2400px) {
main section#strength div.block-data div.list div.row {
	width: 16.66%;
}
}
main section#strength div.block-data div.list div.row:nth-child(2n+1) {
	color: #00a0e1;
}
main section#strength div.block-data div.list div.row:nth-child(2n) {
	color: #54a05f;
}
main section#strength div.block-data div.list div.row :where(h2, p.main, p.prefix, p.sub) {
	font-weight: 700;
}
main section#strength div.block-data div.list div.row h2,
main section#strength div.block-data div.list div.row p.main:not(:last-child) {
	margin-bottom: 20px;
}
main section#strength div.block-data div.list div.row p.prefix {
	font-size: 2.25rem;
	line-height: 3rem;
	margin-bottom: 5px;
}
main section#strength div.block-data div.list div.row h2 {
	font-size: 2.75rem;
	line-height: 3.25rem;
	margin-bottom: 10px;
}
main section#strength div.block-data div.list div.row h2 span {
	display: block;
	font-size: 1.0625rem;
	line-height: 1.75rem;
}
main section#strength div.block-data div.list div.row p.main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}
main section#strength div.block-data div.list div.row p.main span {
	display: block;
}
main section#strength div.block-data div.list div.row p.main span:not(:last-child) {
	margin-right: 5px;
}
main section#strength div.block-data div.list div.row p.main span:where(.prefix, .suffix) {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 2.75rem;
}
main section#strength div.block-data div.list div.row p.main span.number {
	font-size: 7.5rem;
	font-weight: 900;
	line-height: 6rem;
	transform: translateY(-5px);
}
main section#strength div.block-data div.list div.row p.main-small span.number {
	font-size: 6.25rem;
	line-height: 5rem;
}
main section#strength div.block-data div.list div.row p.main-large span.number {
	font-size: 9.25rem;
	line-height: 7.5rem;
}
main section#strength div.block-data div.list div.row p.sub {
	line-height: 1.5rem;
}
main section#strength div.block-data div.list div.row p.sub span {
	display: inline-block;
	font-size: 1.75rem;
	margin: 0px 2.5px;
	transform: translateY(1px);
}

/* education
-------------------------------------------------------------------------------- */

main section#education div.block::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 1px solid #dfeaf2;
	background-color: #ffffff;
	content: "";
	border-radius: 60px;
}
main section#education div.block div.inner-block {
	position: relative;
	padding: 80px;
}
main section#education div.block p.label {
	position: absolute;
	height: 140px;
	right: calc(50% - 50vw + 155px);
	top: 80px;
	font-weight: 700;
	line-height: 1.5rem;
	color: #00a0e1;
	border-left: 1px solid #00a0e1;
}
main section#education div.block-career-path-02 p.label {
	color: #54a05f;
	border-color: #54a05f;
}
main section#education div.block p.label span {
	display: block;
	writing-mode: vertical-rl;
	white-space: pre;
}
main section#education div.block div.header h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	margin-bottom: 20px;
}
main section#education div.block-education div.header {
	color: #00a0e1;
	margin-bottom: 60px;
}
main section#education div.block-education div.header p.description {
	font-size: 1.0625rem;
	font-weight: 700;
}
main section#education div.block-education div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#education div.block-education div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#education div.block-education div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
}
main section#education div.block-education div.list div.row div.image {
	position: relative;
	width: 460px;
}
main section#education div.block-education div.list div.row div.image p.row {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 50%;
}
main section#education div.block-education div.list div.row div.image p.row img {
	width: 100%;
}
main section#education div.block-education div.list div.row div.image p.row:nth-child(2) {
	position: absolute;
	width: 240px;
	border: 1px solid #ffffff;
	right: -60px;
	bottom: -80px;
}
main section#education div.block-education div.list div.row div.text {
	width: calc(100% - 540px);
}
main section#education div.block-education div.list div.row div.text h3,
main section#education div.block-education div.list div.row div.text h3 span.sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#education div.block-education div.list div.row div.text h3 {
	margin-bottom: 20px;
}
main section#education div.block-education div.list div.row div.text h3 span.main {
	display: block;
	font-size: 1.375rem;
	font-weight: 700;
}
main section#education div.block-education div.list div.row div.text h3 span.main:not(:last-child) {
	margin-right: 20px;
}
main section#education div.block-education div.list div.row div.text h3 span.sub {
	height: 30px;
	font-size: 0.9375rem;
	color: #ffffff;
	padding: 0px 15px;
	background-color: #00a0e1;
	border-radius: 15px;
}
main section#education div.block-career-path div.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
main section#education div.block-career-path div.header p.case,
main section#education div.block-career-path div.header p.case span {
	position: relative;
}
main section#education div.block-career-path div.header p.case {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 200px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-left: -20px;
}
main section#education div.block-career-path-02 div.header p.case {
	padding-bottom: 15px;
}
main section#education div.block-career-path div.header p.case::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	border-radius: 50%;
	transform: rotate(-22.5deg);
}
main section#education div.block-career-path-01 div.header p.case::before {
	background: linear-gradient(145deg, #b5d9c2 0%, #587dc4 100%);
}
main section#education div.block-career-path-02 div.header p.case::before {
	background: linear-gradient(145deg, #91b29d 0%, #58c4ab 100%);
}
main section#education div.block-career-path div.header p.case span {
	display: flex;
	flex-wrap: wrap;
}
main section#education div.block-career-path div.header p.case span i {
	position: relative;
}
main section#education div.block-career-path div.header p.case span i:nth-child(2) {
	font-size: 1.0625rem;
	transform: translateY(4px);
}
main section#education div.block-career-path div.header p.case span em {
	position: absolute;
	width: 120px;
	left: 0px;
	top: 30px;
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
main section#education div.block-career-path div.header div.text {
	width: calc(100% - 280px);
}
main section#education div.block-career-path div.header div.text h2 {
	margin-bottom: 20px;
}
main section#education div.block-career-path-01 div.header div.text h2 {
	color: #00a0e1;
}
main section#education div.block-career-path-02 div.header div.text h2 {
	color: #54a05f;
}
main section#education div.block-career-path div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-right: -20px;
}
main section#education div.block-career-path div.list div.row {
	width: calc(16.66% - 20px);
	margin-right: 20px;
}
main section#education div.block-career-path div.list div.row :where(p.year, div.bar) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	text-align: center;
}
main section#education div.block-career-path div.list div.row p.year,
main section#education div.block-career-path div.list div.row div.bar p.age {
	font-weight: 700;
}
main section#education div.block-career-path div.list div.row p.year {
	padding-bottom: 10px;
}
main section#education div.block-career-path div.list div.row-01 p.year {
	height: 160px;
}
main section#education div.block-career-path div.list div.row-02 p.year {
	height: 130px;
}
main section#education div.block-career-path div.list div.row-03 p.year {
	height: 100px;
}
main section#education div.block-career-path div.list div.row-04 p.year {
	height: 70px;
}
main section#education div.block-career-path div.list div.row-05 p.year {
	height: 40px;
}
main section#education div.block-career-path div.list div.row-06 p.year {
	height: 10px;
}
main section#education div.block-career-path div.list div.row p.year span {
	display: block;
}
main section#education div.block-career-path div.list div.row p.year span i,
main section#education div.block-career-path div.list div.row div.bar p.age span {
	display: inline-block;
	font-size: 1.375rem;
	transform: translateY(1px);
}
main section#education div.block-career-path div.list div.row div.bar {
	position: relative;
	margin-bottom: 10px;
	padding: 20px 0px;
	border-radius: 10px;
}
main section#education div.block-career-path div.list div.row-01 div.bar {
	height: 80px;
}
main section#education div.block-career-path div.list div.row-02 div.bar {
	height: 110px;
}
main section#education div.block-career-path div.list div.row-03 div.bar {
	height: 140px;
}
main section#education div.block-career-path div.list div.row-04 div.bar {
	height: 170px;
}
main section#education div.block-career-path div.list div.row-05 div.bar {
	height: 200px;
}
main section#education div.block-career-path div.list div.row-06 div.bar {
	height: 230px;
}
main section#education div.block-career-path-01 div.list div.row-01 div.bar {
	background-color: #e5f5fc;
}
main section#education div.block-career-path-01 div.list div.row-02 div.bar {
	background-color: #ccecf9;
}
main section#education div.block-career-path-01 div.list div.row-03 div.bar {
	background-color: #b2e2f6;
}
main section#education div.block-career-path-01 div.list div.row-04 div.bar {
	background-color: #99d9f3;
}
main section#education div.block-career-path-01 div.list div.row-05 div.bar {
	background-color: #7fcff0;
}
main section#education div.block-career-path-01 div.list div.row-06 div.bar {
	background-color: #66c6ed;
}
main section#education div.block-career-path-02 div.list div.row-01 div.bar {
	background-color: #eef5ef;
}
main section#education div.block-career-path-02 div.list div.row-02 div.bar {
	background-color: #ddecdf;
}
main section#education div.block-career-path-02 div.list div.row-03 div.bar {
	background-color: #cbe2cf;
}
main section#education div.block-career-path-02 div.list div.row-04 div.bar {
	background-color: #bbd9bf;
}
main section#education div.block-career-path-02 div.list div.row-05 div.bar {
	background-color: #a9cfaf;
}
main section#education div.block-career-path div.list div.row div.bar p.post {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 20px;
	font-size: 1.375rem;
	font-weight: 700;
	color: #ffffff;
}
main section#education div.block-career-path div.list div.row div.bar p.post span {
	display: block;
}
main section#education div.block-career-path div.list div.row div.bar p.post i {
	display: inline-block;
	font-size: 1.75rem;
	margin-left: 5px;
	transform: translateY(2px) rotate(10deg);
}
main section#education div.block-career-path div.list div.row p.description  {
	font-size: 0.8125rem;
	line-height: 1.25rem;
	padding: 0px 10px;
}

/* social
-------------------------------------------------------------------------------- */

main section#social div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#social div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#social div.list div.row:not(:last-child):not(:has(div.image p.row:nth-child(2))) {
	margin-bottom: 120px;
}
main section#social div.list div.row:nth-child(2n+1) {
	flex-direction: row-reverse;
	padding-left: 40px;
}
main section#social div.list div.row:nth-child(2n) {
	padding-right: 40px;
}
main section#social div.list div.row div.image {
	width: calc(100% - 420px);
}
main section#social div.list div.row div.image p.row {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
main section#social div.list div.row div.image p.row:nth-child(1) {
	width: calc(100% - 155px);
}
main section#social div.list div.row:nth-child(2n) div.image p.row:nth-child(1),
main section#social div.list div.row:nth-child(2n+1) div.image p.row:nth-child(2) {
	margin-left: auto;
}
main section#social div.list div.row div.image p.row:nth-child(2) {
	width: calc(100% - 255px);
	border: 1px solid #ffffff;
	margin-top: -60px;
}
main section#social div.list div.row div.image p.row img {
	width: 100%;
}
main section#social div.list div.row div.text {
	width: 360px;
	padding-top: 120px;
}
main section#social div.list div.row div.text h2,
main section#social div.list div.row div.text p.description:not(:last-child) {
	margin-bottom: 40px;
}
main section#social div.list div.row div.text h2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem;
	color: #00a0e1;
}
main section#social div.list div.row div.text:has(p.description) h2 {
	margin-bottom: 10px;
}

/* people
-------------------------------------------------------------------------------- */

main section#people div.block div.anchor {
	position: absolute;
	top: -60px;
}
main section#people div.block h2 {
	position: absolute;
	width: 565px;
	left: calc(50% - 80px);
	top: -40px;
	z-index: 1;
	transform: rotate(-10deg);
}
main section#people div.block h2 img {
	width: 100%;
}
main section#people div.block div.list-people div.inner-list-people {
	margin: 0px -80px -60px 0px;
	padding-top: 120px;
}
main section#people div.block div.list-people div.row {
	width: calc(50% - 80px);
	margin: 0px 80px 60px 0px;
}
main section#people div.block div.list-people div.row:nth-child(2n+1) {
	margin-top: -120px;
}
main section#people div.block div.list-people div.row p.image {
	border-radius: 20px;
}
main section#people div.block div.list-people div.row div.text {
	text-align: left;
}
main section#people div.block div.list-people div.row div.text h3 {
	font-size: 1.375rem;
	line-height: 2rem;
	margin-bottom: 20px;
}
main section#people div.block div.list-people div.row div.text p.sub {
	font-size: 1.0625rem;
	line-height: 1.5rem;
}
main section#people div.block div.list-people div.row div.text p.sub span {
	display: inline;
}
main section#people div.block div.list-people div.row div.text p.sub br {
	display: none;
}
main section#people div.block div.list-people div.row i.icon-arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0px;
	bottom: 70px;
	font-size: 1.25rem;
	font-weight: 400;
	color: #00a0e1;
	border: 2px solid #00a0e1;
	border-radius: 50%;
}

/* cross-talk, interview
-------------------------------------------------------------------------------- */

main section:where(#cross-talk, #interview) div.frame {
	padding-top: 0px;
}
main section:where(#cross-talk, #interview) header {
	position: relative;
	margin: 0px -80px 80px -80px;
}
main section:where(#cross-talk, #interview) header p.image {
	height: 600px;
	border-radius: 59px 59px 0px 0px;
}
main section:where(#cross-talk, #interview) header p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section:where(#cross-talk, #interview) header p.label {
	position: absolute;
	width: 565px;
	left: calc(50% - 282.5px);
	top: -70px;
	transform: rotate(-10deg);
}
main section:where(#cross-talk, #interview) header p.label img {
	width: 100%;
}
main section:where(#cross-talk, #interview) header div.text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	color: #00a0e1;
}
main section#cross-talk header div.text h1 {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 80px;
	text-align: center;
	font-size: 2.25rem;
	font-weight: 700;
}
main section#cross-talk header div.text h1 span {
	font-size: 1.75rem;
}
main section#cross-talk div.member {
	margin-bottom: 120px;
}
main section#cross-talk div.member div.list {
	display: flex;
	flex-wrap: wrap;
}
main section#cross-talk div.member div.list div.row {
	width: 160px;
	text-align: center;
}
main section#cross-talk div.member div.list div.row:not(:last-child) {
	margin-right: 40px;
}
main section#cross-talk div.member div.list div.row p.image {
	aspect-ratio: 1;
	margin-bottom: 20px;
	border-radius: 50%;
}
main section#cross-talk div.member div.list div.row p:where(.post, .name) {
	color: #00a0e1;
}
main section#cross-talk div.member div.list div.row p:where(.post, .misc) {
	font-size: 0.8125rem;
	line-height: 1.25rem;
}
main section#cross-talk div.member div.list div.row p.post {
	margin: 0px -20px;
}
main section#cross-talk div.member div.list div.row p.name {
	font-size: 1.0625rem;
	margin-bottom: 10px;
}
main section#cross-talk div.intro {
	position: relative;
	margin-bottom: 120px;
}
main section#cross-talk div.intro h2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: flex-start;
	position: absolute;
	right: 80px;
	top: -280px;
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 4rem;
	color: #00a0e1;
}
main section#cross-talk div.intro h2 span {
	display: block;
	writing-mode: vertical-rl;
	white-space: pre;
}
main section#cross-talk div.intro h2 span:not(:last-child) {
	margin-left: 10px;
}
main section#cross-talk div.intro h2 span i {
	display: block;
	border-right: 1px solid #00a0e1;
}
main section#cross-talk div.intro p.image {
	width: 750px;
	margin-left: -80px;
	border-radius: 0px 20px 20px 0px;
}
main section:where(#cross-talk, #interview) div.block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section:where(#cross-talk, #interview) div.block-reverse {
	flex-direction: row-reverse;
}
main section:where(#cross-talk, #interview) div.block-top {
	align-items: flex-start;
}
main section:where(#cross-talk, #interview) div.block-bottom {
	align-items: flex-end;
}
main section:where(#cross-talk, #interview) div.block div.text,
main section#cross-talk div.block > p.image,
main section#interview div.block p.image {
	width: calc(50% - 50px);
}
main section:where(#cross-talk, #interview) div.block:not(.block-reverse) div.text {
	margin-right: 100px;
}
main section:where(#cross-talk, #interview) div.block-reverse div.text {
	margin-left: 100px;
}
main section#cross-talk div.block div.text h3,
main section#cross-talk div.block div.text h3 span {
	display: flex;
	flex-wrap: wrap;
}
main section#cross-talk div.block div.text :where(h3, h4),
main section#interview div.block div.text h3 {
	font-weight: 700;
	color: #00a0e1;
}
main section#cross-talk div.block div.text h3 {
	font-size: 1.75rem;
	line-height: 2.25rem;
	margin-bottom: 40px;
}
main section#cross-talk div.block div.text h3 span {
	padding: 5px 20px;
	background-color: #dfeaf2;
}
main section:where(#cross-talk, #interview) div.block > p.image {
	max-width: 400px;
	margin: 0px auto;
	border-radius: 20px;
}
main section#cross-talk div.block:not(:has(div.text)) > p.image {
	width: auto;
	max-width: 700px;
}
main section#cross-talk div.block > p.image-wide {
	width: calc(50% + 30px);
	max-width: 500px;
}
main section#cross-talk div.block > p.image-wide-left {
	margin-left: -80px;
	border-radius: 0px 20px 20px 0px;
}
main section#cross-talk div.block > p.image-wide-right {
	margin-right: -80px;
	border-radius: 20px 0px 0px 20px;
}
main section#cross-talk div.block div.text h4,
main section#interview div.block div.text h3 {
	position: relative;
	font-size: 1.0625rem;
	padding-left: 50px;
}
main section#cross-talk div.block div.text h4 {
	margin-bottom: 40px;
}
main section#cross-talk div.block div.text h4::before,
main section#interview div.block div.text h3::before {
	position: absolute;
	width: 40px;
	height: 0px;
	left: 0px;
	top: 15px;
	border-bottom: 1px solid #00a0e1;
	content: "";
}
main section#cross-talk div.block div.text div.list div.row {
	position: relative;
	padding-left: 80px;
}
main section:where(#cross-talk, #interview) div.block div.text div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#cross-talk div.block div.text div.list div.row p.image {
	position: absolute;
	aspect-ratio: 1;
	width: 60px;
	left: 0px;
	top: 0px;
	border-radius: 50%;
}
main section#cross-talk div.block div.text div.list div.row p.name {
	font-weight: 700;
	color: #00a0e1;
	margin-bottom: 5px;
}
main section#cross-talk div.block div.text div.list div.row p.description:not(:last-child) {
	margin-bottom: 40px;
}
body.cross-talk-01 main section#cross-talk div.block-03 {
	margin-top: -500px;
}
body.cross-talk-02 main section#cross-talk div.block-02 {
	margin-top: -200px;
}
body.cross-talk-02 main section#cross-talk div.block-03 {
	margin-top: -150px;
}
body.cross-talk-02 main section#cross-talk div.block-05 > p.image {
	margin-top: 250px;
}
body.cross-talk-02 main section#cross-talk div.block-06 {
	margin-top: -700px;
}
body.cross-talk-03 main section#cross-talk div.block-02 {
	margin-top: -100px;
}
body.cross-talk-03 main section#cross-talk div.block-02 > p.image {
	margin-top: 150px;
}
body.cross-talk-03 main section#cross-talk div.block-03 {
	margin-top: -500px;
}
body.cross-talk-03 main section#cross-talk div.block-03 > p.image {
	margin-top: 250px;
}
main section:where(#cross-talk, #interview) p.note {
	text-align: right;
	color: #8d8d8d;
	margin-top: -40px;
}
main section:where(#cross-talk, #interview) p.note:not(:last-child) {
	margin-bottom: 60px;
}
main section:where(#cross-talk, #interview) div.youtube,
main section:where(#cross-talk, #interview) div.youtube a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section:where(#cross-talk, #interview) div.youtube {
	border-top: 1px solid #eeeeee;
	padding-top: 80px;
}
main section:where(#cross-talk, #interview) div.youtube a {
	align-items: center;
	position: relative;
}
main section:where(#cross-talk, #interview) div.youtube p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 155px;
	height: 100px;
	left: calc(50% + 40px);
	top: -40px;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.25rem;
	color: #00a0e1;
	background: url(../images/background-balloon.svg) no-repeat left top;
	background-size: 100% auto;
}
main section:where(#cross-talk, #interview) div.youtube :where(p.image, div.text) {
	width: 340px;
}
main section:where(#cross-talk, #interview) div.youtube p.image {
	aspect-ratio: 16 / 9;
	margin-right: 40px;
	border-radius: 10px;
}
main section:where(#cross-talk, #interview) div.youtube p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section:where(#cross-talk, #interview) div.youtube div.text {
	padding-top: 40px;
}
main section:where(#cross-talk, #interview) div.youtube div.text p.logo {
	margin-bottom: 10px;
}
main section:where(#cross-talk, #interview) div.youtube div.text p.logo img {
	width: calc(63px * 1.25);
}
main section:where(#cross-talk, #interview) div.youtube div.text h4 {
	font-size: 1.0625rem;
	font-weight: 700;
}
main section#interview header div.text :where(h1, p.misc) {
	position: absolute;
	font-weight: 700;
}
main section#interview header div.text h1 {
	right: 65px;
	top: 160px;
	writing-mode: vertical-rl;
	white-space: pre;
	font-size: 2.75rem;
	line-height: 4rem;
}
main section#interview header h2 {
	position: absolute;
	left: 80px;
	bottom: 120px;
	z-index: 5;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	color: #00a0e1;
}
main section#interview header h2 span {
	display: flex;
	flex-wrap: wrap;
}
main section#interview header h2 span i {
	display: block;
	border-bottom: 1px solid #00a0e1;
}
main section#interview header h2 span:not(:last-child) {
	margin-bottom: 10px;
}
main section#interview header div.text p.misc {
	right: 80px;
	bottom: 80px;
	text-align: right;
	font-size: 1.0625rem;
}
main section#interview div.block div.text h3 {
	margin-bottom: 20px;
}
body:where(.interview-01, .interview-05, .interview-06) main section#interview div.block-02 {
	margin-top: -200px;
}
body.interview-02 main section#interview div.block-02 {
	margin-top: -100px;
}
body:where(.interview-03, .interview-04) main section#interview div.block-02 {
	margin-top: -50px;
}
body:where(.interview-01, .interview-05, .interview-06) main section#interview div.block-02 p.image {
	margin-top: 100px;
}

/* future
-------------------------------------------------------------------------------- */

main section#future div.inner-section {
	max-width: 1100px;
}
main section#future div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border: 1px solid #dfeaf2;
	padding: 80px 80px 80px 0px;
	background-color: #ffffff;
	border-radius: 60px;
}
main section#future div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#future div.list div.row p.image {
	width: calc(100% - 420px);
	border-radius: 0px 20px 20px 0px;
}
main section#future div.list div.row div.text {
	width: 360px;
}
main section#future div.list div.row div.text :where(p.sub, h2) {
	font-weight: 700;
	color: #00a0e1;
}
main section#future div.list div.row div.text p.sub {
	font-size: 0.8125rem;
	line-height: 1.25rem;
	margin-bottom: 10px;
}
main section#future div.list div.row div.text h2 {
	font-size: 1.75rem;
	margin-bottom: 20px;
}
main section#future div.list div.row div.text p.description:not(:last-child) {
	margin-bottom: 40px;
}

/* faq
-------------------------------------------------------------------------------- */

main section#faq div.inner-section {
	max-width: 1100px;
}
main section#faq div.segment {
	background-color: #eeeeee;
	border-radius: 20px;
}
main section#faq div.segment:not(:last-child) {
	margin-bottom: 20px;
}
main section#faq div.segment h2 {
	position: relative;
	font-size: 1.375rem;
	font-weight: 700;
	color: #00a0e1;
	cursor: pointer;
	padding: 60px 120px 60px 80px;
}
main section#faq div.segment h2 i.icon-arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 60px;
	top: calc(50% - 20px);
	font-size: 1.25rem;
	font-weight: 400;
	border: 2px solid #00a0e1;
	border-radius: 50%;
	transition: 0.25s transform ease;
}
main section#faq div.segment.open h2 i.icon-arrow {
	transform: rotate(-90deg);
}
main section#faq div.segment div.list {
	height: 0px;
	overflow: hidden;
}
main section#faq div.segment div.list div.row {
	padding: 0px 120px 60px 120px;
}
main section#faq div.segment div.list div.row :where(h3, p.answer) {
	position: relative;
	padding-left: 30px;
}
main section#faq div.segment div.list div.row h3 {
	font-size: 0.9375rem;
	margin-bottom: 10px;
}
main section#faq div.segment div.list div.row :where(h3, p.answer)::before {
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 1.375rem;
	font-weight: 700;
	transform: translateY(-2px);
}
main section#faq div.segment div.list div.row h3::before {
	content: "Q.";
}
main section#faq div.segment div.list div.row p.answer {
	color: #54a05f;
}
main section#faq div.segment div.list div.row p:where(.answer, .description):not(:last-child) {
	margin-bottom: 40px;
}
main section#faq div.segment div.list div.row p.answer::before {
	content: "A.";
}

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

main section.form div.inner-section {
	max-width: 1100px;
}
main section.form div.header {
	text-align: center;
	margin-bottom: 60px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.header p.description {
	margin-bottom: 20px;
}
main section.form div.header p.description span.tel {
	display: inline-block;
	font-size: 2.125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-right: 10px;
	transform: translateY(6px);
}
main section.form div.header p.description span.tel a {
	color: #4e4e4e;
}
main section.form div.header p.description span.tel a:hover {
	color: #00a0e1;
}
main section.form div.header p.require {
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #8d8d8d;
}
main section.form div.form {
	border: 1px solid #dfeaf2;
	margin-bottom: 80px;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 60px;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 40px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #dfeaf2;
	margin-bottom: 0px;
	padding: 30px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	padding-top: 0px;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 240px;
	height: 50px;
	line-height: 1.5rem;
}
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 {
	font-size: 0.8125rem;
	color: #00a0e1;
	margin-left: 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: -10px;
}
main section.form div.mw_wp_form_preview div.form div.component-radio-checkbox div.body {
	margin-bottom: 0px;
}
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 10px 0px;
}
main section.form div.form div.component-radio-checkbox 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,
main section.form div.form div.agreement span.error {
	font-size: 0.8125rem;
	line-height: 25px;
	color: #ff0000;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section.form div.form div.agreement span.mwform-checkbox-field,
main section.form div.form div.agreement span.mwform-checkbox-field > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field {
	margin-right: 5px;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -25px;
	text-align: center;
}
main section.form div.form div.action {
	padding-left: 240px;
}
main section.form div.mw_wp_form_preview div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 0px;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button) {
	width: 100%;
}
main section.form div.mw_wp_form_preview div.form div.action :where(input:where([type=button], [type=submit]), button) {
	width: calc(50% - 10px);
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
	margin-bottom: 120px;
}
main section.form div.line {
	text-align: center;
}
main section.form div.line p.description {
	margin-bottom: 20px;
}
main section.form div.line p.button,
main section.form div.line p.button a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.line p.button a {
	align-items: center;
	width: 200px;
	height: 60px;
	color: #ffffff;
	border: 1px solid #06c755;
	background-color: #06c755;
	border-radius: 5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section.form div.line p.button a:hover {
	color: #06c755;
	background-color: #ffffff;
}
main section.form div.line p.button :where(i.icon, span) {
	display: block;
}
main section.form div.line p.button i.icon {
	font-size: 2.75rem;
	margin-right: 10px;
	transform: translateY(2px);
}
main section.form div.line p.button span {
	font-size: 1.375rem;
	font-weight: 700;
}

/* summary
-------------------------------------------------------------------------------- */

main article.summary {
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 10px;
}
main article.summary h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 80px;
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.5rem;
	color: #ffffff;
	background-color: #00a0e1;
	border-radius: 10px 10px 0px 0px;
}
main article.summary h3 :where(br, i.icon-arrow) {
	display: none;
}
main article.summary div.body div.list {
	overflow: hidden;
	border: 1px solid #dfeaf2;
	border-top: none;
	border-radius: 0px 0px 10px 10px;
}
main article.summary div.body div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main article.summary div.body div.list div.row:not(:last-child) {
	border-bottom: 1px solid #dfeaf2;
}
main article.summary div.body div.list div.row p:where(.label, .body) {
	padding: 20px 40px;
}
main article.summary div.body div.list div.row p.label {
	background-color: #f2fafd;
	display: flex;
	flex-wrap: wrap;
	width: 240px;
	color: #00a0e1;
	border-right: 1px solid #dfeaf2;
}
main article.summary div.body div.list div.row p.body {
	width: calc(100% - 240px);
}
main section#summary {
	margin-top: 120px;
}
main section#summary::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: -2;
	background-color: #ffffff;
	content: "";
}
main section#summary div.inner-section {
	max-width: 1100px;
}
main section#summary div.block h2,
main section#summary div.block h2 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#summary div.block h2 {
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 60px;
}
main section#summary div.block h2 span {
	align-items: center;
	width: 340px;
	height: 50px;
	background-color: #eeeeee;
	border-radius: 25px;
}
main section#summary div.block article.summary:not(:last-child) {
	margin-bottom: 60px;
}

/* internshop
-------------------------------------------------------------------------------- */

main article.internship {
	margin-bottom: 80px;
}
main article.internship header {
	text-align: center;
	margin-bottom: 60px;
}
main article.internship header h2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	color: #00a0e1;
}
main article.internship div.segment {
	border: 1px solid #dfeaf2;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 60px;
}
main article.internship div.segment h3 {
	text-align: center;
	font-size: 1.375rem;
	font-weight: 700;
	color: #00a0e1;
	margin-bottom: 60px;
}
main article.internship div.segment:not(:last-child) {
	margin-bottom: 60px;
}
main article.internship div.segment-date p.date,
main article.internship div.segment-detail div.body {
	max-width: 800px;
	margin: 0px auto;
}
main article.internship div.segment-date p.date {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
}
main article.internship div.segment-detail div.body:not(:last-child) {
	margin-bottom: 80px;
}
main article.internship div.segment-detail div.slide {
	position: relative;
	max-width: 600px;
	margin: 0px auto;
}
main article.internship div.segment-detail div.slide div.image {
	position: relative;
	aspect-ratio: 600 / 345;
}
main article.internship div.segment-detail div.slide div.image:not(:last-child) {
	margin-bottom: 20px;
}
main article.internship div.segment-detail div.slide div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main article.internship div.segment-detail div.slide div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main article.internship div.segment-detail div.slide div.caption p.row {
	display: none;
	color: #8d8d8d;
}
main article.internship div.segment-detail div.slide div.caption p.row.active {
	display: block;
}
main article.internship div.segment-detail div.slide div.pager-number {
	position: static;
	margin-top: 20px;
}
main article.internship div.segment-detail div.slide div.pager {
	position: absolute;
	aspect-ratio: 600 / 345;
	width: 100%;
	height: auto;
	left: 0px;
	top: 0px;
}
main article.internship div.segment-detail div.slide div.pager a {
	top: calc(50% - 25px);
}
main article.internship div.segment-detail div.slide div.pager a:has(p.button-prev) {
	left: -70px;
}
main article.internship div.segment-detail div.slide div.pager a:has(p.button-next) {
	right: -70px;
}
main article.internship div.segment-detail div.slide p.number {
	justify-content: flex-end;
	position: static;
	width: auto;
	height: auto;
	left: auto;
	top: auto;
}
main section#internship div.inner-section {
	max-width: 1100px;
}
main section#internship p.button-default a {
	width: 600px;
	background-color: #ffffff;
}
main section#internship p.button-default a:hover {
	background-color: #00a0e1;
}



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

footer#footer {
	position: relative;
	z-index: 1;
	padding-bottom: 20px;
	background-color: #f8f8f8;
}
footer#footer div.links {
	background: linear-gradient(135deg, #3491d6 -25%, #54a05f 125%);
}
footer#footer div.links div.inner-links {
	width: calc(100vw - 80px);
	max-width: 1100px;
	margin: 0px auto;
	padding: 80px 0px;
}
footer#footer div.links div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
footer#footer div.links p.button-default {
	width: calc(33.33% - 20px);
}
footer#footer div.links p.button-default:not(:last-child) {
	margin-right: 20px;
}
footer#footer div.links p.button-default a {
	width: 100%;
	border: none;
	background-color: #ffffff;
}
footer#footer div.links p.button-default a:hover {
	background-color: #4e4e4e;
}
footer#footer nav#navi-footer {
	padding: 60px 0px;
	background-color: #4e4e4e;
}
footer#footer nav#navi-footer a.color {
	color: #ffffff;
}
footer#footer nav#navi-footer a.color:hover {
	color: #acacac;
}
footer#footer nav#navi-footer div.list,
footer#footer nav#navi-footer div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
footer#footer nav#navi-footer div.list {
	width: calc(100vw - 80px);
	max-width: 1300px;
	margin: 0px auto;
}
footer#footer nav#navi-footer div.list div.row:not(:last-child),
footer#footer nav#navi-footer div.list div.row div.segment:not(:last-child) {
	margin-right: 40px;
}
footer#footer nav#navi-footer div.list div.row div.segment {
	width: calc(calc(calc(100vw - 80px) - calc(40px * 6)) * 0.1428);
	max-width: calc(calc(1300px - calc(40px * 6)) * 0.1428);
}
footer#footer nav#navi-footer div.list div.row div.segment-home {
	display: none;
}
footer#footer nav#navi-footer div.list div.row div.segment p.headline {
	font-weight: 700;
	border-bottom: 1px solid #acacac;
	padding-bottom: 20px;
}
footer#footer nav#navi-footer div.list div.row div.segment p.headline:not(:last-child) {
	margin-bottom: 30px;
}
footer#footer nav#navi-footer div.list div.row div.segment p.headline span {
	display: block;
}
footer#footer nav#navi-footer div.list div.row div.segment p.headline span.sub {
	font-size: 1.375rem;
}
footer#footer nav#navi-footer div.list div.row div.segment p.headline span.main {
	font-size: 0.8125rem;
}
footer#footer nav#navi-footer div.list div.row div.segment p.headline i.icon-arrow {
	display: none;
}
footer#footer nav#navi-footer div.list div.row div.segment ul li {
	line-height: 1.5rem;
}
footer#footer nav#navi-footer div.list div.row div.segment ul li:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer nav#navi-footer p.privacy-policy {
	display: none;
}
footer#footer div.inner-information {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: calc(100vw - 80px);
	max-width: 1300px;
	margin: 0px auto 10px auto;
	padding-top: 40px;
}
footer#footer div.information h3 img {
	width: 239px;
}
footer#footer div.information div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
footer#footer div.information div.misc a.color {
	color: #4e4e4e;
}
footer#footer div.information div.misc a.color:hover {
	color: #00a0e1;
}
footer#footer div.information div.misc p:where(.corporate, .privacy-policy) {
	font-weight: 700;
}
footer#footer div.information div.misc p.corporate {
	margin-right: 30px;
}
footer#footer div.information div.misc p.corporate i.icon-arrow {
	font-weight: 400;
	margin-left: 10px;
}
footer#footer div.information div.misc p.privacy-policy {
	font-size: 0.8125rem;
}
footer#footer div.information p.button-corporate {
	display: none;
}
footer#footer p.copyright {
	text-align: center;
	font-size: 0.6875rem;
	line-height: 1rem;
	color: #acacac;
}



/* --------------------------------------------------------------------------------
question
-------------------------------------------------------------------------------- */

div#question {
	position: fixed;
	right: 0px;
	bottom: 0px;
	z-index: 20;
	opacity: 0;
	transition: 0.25s opacity ease;
}
html.active div#question {
	opacity: 1;
}
div#question p#button-question {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	color: #4e4e4e;
	cursor: pointer;
	transition: 0.25s color ease, 0.25s opacity ease;
}
div#question p#button-question:hover {
	color: #00a0e1;
}
div#question p#button-question::before {
	position: absolute;
	width: 75%;
	height: 25%;
	left: 12.5%;
	top: 37.5%;
	background-color: #ffffff;
	content: "";
}
div#question.active p#button-question {
	pointer-events: none;
	opacity: 0;
}
div#question p#button-question i.icon {
	position: relative;
	font-size: 2.5rem;
}
div#question div.form {
	box-sizing: border-box;
	position: absolute;
	width: calc(100vw - 40px);
	max-width: 400px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div#question.active div.form {
	pointer-events: auto;
	opacity: 1;
}
div#question div.form div.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 30px;
	color: #ffffff;
	background-color: #4e4e4e;
	border-radius: 10px 10px 0px 0px;
}
div#question div.form div.header h3 {
	font-size: 0.9375rem;
	font-weight: 700;
}
div#question div.form div.header p.button-close {
	position: absolute;
	width: 20px;
	height: 20px;
	right: 5px;
	top: calc(50% - 10px);
	cursor: pointer;
}
div#question div.form div.header p.button-close::before,
div#question div.form div.header p.button-close::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #ffffff;
	content: "";
}
div#question div.form div.header p.button-close::before {
	transform: rotate(-45deg);
}
div#question div.form div.header p.button-close::after {
	transform: rotate(45deg);
}
div#question div.form div.content {
	box-sizing: border-box;
	position: relative;
	height: 300px;
	border: 1px solid #acacac;
	border-top: none;
	background-color: #ffffff;
	border-radius: 0px 0px 10px 10px;
}
div#question div.form div.content div.segment {
	box-sizing: border-box;
	position: absolute;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	left: 20px;
	top: 20px;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div#question div.form div.content div.segment.active {
	pointer-events: auto;
	opacity: 1;
}
div#question div.form div.content div.segment-01 p.label {
	text-align: center;
	margin-bottom: 20px;
}
div#question div.form div.content div.segment-01 textarea,
div#question div.form div.content div.segment-02 div.group input[type=email] {
	background-color: #ffffff;
}
div#question div.form div.content div.segment-01 textarea {
	display: block;
	width: 100%;
	height: 150px;
	resize: none;
	margin-bottom: 20px;
	padding: 0px;
}
div#question div.form div.content div:where(.segment-01, .segment-02) p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: #ffffff;
	pointer-events: none;
	cursor: pointer;
	background-color: #acacac;
	transition: 0.25s background-color ease;
}
div#question div.form div.content div:where(.segment-01, .segment-02) p.button.active {
	pointer-events: auto;
	background-color: #00a0e1;
}
div#question div.form div.content div:where(.segment-01, .segment-02) p.button:hover {
	background-color: #4e4e4e;
}
div#question div.form div.content div.segment-01 p.button {
	width: 160px;
	height: 40px;
	margin: auto;
	border-radius: 20px;
}
div#question div.form div.content div.segment-02 {
	padding: 20px;
	background-color: #eeeeee;
	border-radius: 5px;
}
div#question div.form div.content div.segment-02 :where(h4, p.description) {
	text-align: center;
}
div#question div.form div.content div.segment-02 h4 {
	font-weight: 700;
	margin-bottom: 5px;
}
div#question div.form div.content div.segment-02 p.description {
	font-size: 0.8125rem;
	margin-bottom: 25px;
}
div#question div.form div.content div.segment-02 div.group {
	display: flex;
	flex-wrap: wrap;
}
div#question div.form div.content div.segment-02 div.group input[type=email] {
	width: calc(100% - 50px);
	height: 50px;
	border-radius: 5px 0px 0px 5px;
}
div#question div.form div.content div.segment-02 div.group p.button {
	width: 50px;
	height: 50px;
	font-size: 0.8125rem;
	border-radius: 0px 5px 5px 0px;
}
div#question div.form div.content div.segment-02 div.group p.button:hover {
	background-color: #4e4e4e;
}
