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

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



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

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	color: #000000;
	letter-spacing: 0.05em;
	background-color: #f8f8f8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.data {
	background-color: #dff3f3;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #527fe5;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.125rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #ef8200;
}
*.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: "Noto Sans JP", 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: #000000;
	border: none;
	background-color: #f8f8f8;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 60px;
	text-align: center;
	font-weight: 500;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #004da1;
	border-radius: 30px;
	transition: 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #527fe5;
}
button {
	position: relative;
}
button span.arrow {
	position: absolute;
	right: 10px;
	top: calc(50% - 20px);
	font-weight: 400;
}
button:hover span.arrow::before {
	transform: scale(1.075);
}
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 {
	border: 1px solid #707070;
	background-color: #ffffff;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #004da1;
}
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 #004da1;
	border-bottom: 2px solid #004da1;
}
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: #aaaaaa;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
font
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "avenir";
	src: url("../fonts/avenir-book.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "avenir";
	src: url("../fonts/avenir-medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "avenir";
	src: url("../fonts/avenir-medium-italic.woff2") format("woff2");
	font-weight: 500;
	font-style: italic;
}
@font-face {
	font-family: "avenir";
	src: url("../fonts/avenir-heavy.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "avenir";
	src: url("../fonts/avenir-black.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: "helvetica-neue";
	src: url("../fonts/helvetica-neue-ultra-light.woff2") format("woff2");
	font-weight: 100;
	font-style: normal;
}
@font-face {
	font-family: "helvetica-neue";
	src: url("../fonts/helvetica-neue-thin.woff2") format("woff2");
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: "helvetica-neue";
	src: url("../fonts/helvetica-neue-light-ltalic.woff2") format("woff2");
	font-weight: 300;
	font-style: italic;
}



/* --------------------------------------------------------------------------------
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-arrow-alternate::before {
	content: "\e901";
}
i.icon-new-window::before {
	content: "\e902";
}
i.icon-instagram::before {
	content: "\e903";
}
i.icon-youtube::before {
	content: "\e904";
}



/* --------------------------------------------------------------------------------
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 #d9d9d9;
	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: #f8f8f8;
	border-radius: 5px;
}
:where(span, i).no-large {
	display: none;
}




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

div#page {
	position: relative;
	overflow: hidden;
}
body:not(.home) div#page {
	padding-top: 160px;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
div.sns ul,
div.sns ul li a {
	display: flex;
	flex-wrap: wrap;
}
div.sns ul li {
	font-size: 1.5rem;
}
div.sns ul li:not(:last-child) {
	margin-right: 10px;
}
div.sns ul li a {
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #f2f2f2;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
div.sns ul li a:hover {
	background-color: #d9d9d9;
}
span.arrow,
span.arrow i.icon {
	position: relative;
}
span.arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 0.75rem;
	line-height: 1em;
	color: #004da1;
}
span.arrow::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
	transition: 0.25s transform ease;
}
a:hover span.arrow::before {
	transform: scale(1.075);
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	font-weight: 500;
	line-height: 1.5rem;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	width: 320px;
	height: 60px;
	color: #ffffff;
	padding: 0px 30px;
	background-color: #004da1;
	border-radius: 30px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-default > *:hover {
	background-color: #527fe5;
}
p.button-default > *:has(span.arrow) {
	justify-content: flex-start;
	padding-right: 50px;
}
p.button-default > * span.arrow {
	position: absolute;
	right: 10px;
	top: calc(50% - 20px);
	font-weight: 400;
}
p.button-default i.icon-new-window {
	font-size: 0.875rem;
}
p.button-back {
	text-align: center;
}
p.button-back a:has(span.arrow) {
	justify-content: center;
	padding: 0px;
}
p.button-back span.arrow {
	right: auto;
	left: 10px;
	transform: scaleX(-1);
}
p.symbol {
	aspect-ratio: 1;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
p.symbol-01:not(:has(img)):not(:has(svg)) {
	background-image: url(../images/symbol-01.svg);
}
p.symbol-01-alternate:not(:has(img)):not(:has(svg)) {
	background-image: url(../images/symbol-01-alternate.svg);
}
p.symbol-02:not(:has(img)):not(:has(svg)) {
	background-image: url(../images/symbol-02.svg);
}
p.symbol-02-alternate:not(:has(img)):not(:has(svg)) {
	background-image: url(../images/symbol-02-alternate.svg);
}
p.symbol :where(img, svg) {
	width: 100%;
	height: 100%;
}
p:where(.illust, .image) {
	position: relative;
	overflow: hidden;
}
p:where(.illust, .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);
}
p.image-dark::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #000000;
	content: "";
	opacity: 0.25;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.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: 125px !important;
}
*.rotate-left {
	animation: rotate-left 60s linear infinite forwards;
}
*.rotate-right {
	animation: rotate-right 60s linear infinite forwards;
}
@keyframes rotate-left {
	0% { transform: rotate(360deg); }
	100% { transform: rotate(0deg); }
}
@keyframes rotate-right {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}



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

header#header {
	position: relative;
	z-index: 100;
}
header#header::before,
header#header :where(*#logo, p#button-menu, div#menu, nav#navi-alternate) {
	position: fixed;
}
header#header::before {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	pointer-events: none;
	background-color: #000000;
	content: "";
	opacity: 0;
	transition: 0.5s opacity ease;
}
div.menu-header header#header::before {
	pointer-events: auto;
	opacity: 0.25;
}
header#header *#logo {
	left: 40px;
	top: 50px;
	z-index: 20;
}
body.admin-bar header#header *#logo {
	top: 82px;
}
header#header *#logo a {
	display: flex;
	flex-wrap: wrap;
}
header#header *#logo img {
	width: calc(206px * 0.75);
	margin-right: 15px;
}
header#header *#logo span {
	display: block;
	font-family: "avenir", sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	transform: translateY(4px);
}
header#header :where(p#button-menu, nav#navi-alternate) {
	top: 40px;
}
body.admin-bar header#header :where(p#button-menu, nav#navi-alternate) {
	top: 72px;
}
header#header p#button-menu {
	width: 50px;
	height: 50px;
	right: 40px;
	z-index: 30;
	cursor: pointer;
	background-color: #000000;
	border-radius: 50%;
}
header#header p#button-menu i {
	display: block;
	position: absolute;
	width: 20px;
	height: 0px;
	left: calc(50% - 10px);
	top: calc(50% - 1px);
	border-bottom: 2px solid #ffffff;
	transition: 0.25s all ease;
}
header#header p#button-menu i:nth-child(1) {
	transform: translateY(-4px);
}
header#header p#button-menu i:nth-child(2) {
	transform: translateY(4px);
}
div.menu-header header#header p#button-menu i:nth-child(1) {
	transform: rotate(22.5deg);
}
div.menu-header header#header p#button-menu i:nth-child(2) {
	transform: rotate(-22.5deg);
}
header#header div#menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	right: 0px;
	top: 0px;
	overflow: auto;
	z-index: 10;
	background-color: #ffffff;
	border-bottom-left-radius: 225px;
	transform: translate(100%, -100%);
	transition: 0.5s transform ease;
	-webkit-overflow-scrolling: touch;
}
div.menu-header header#header div#menu {
	transform: translate(0%, 0%);
}
header#header div#menu::-webkit-scrollbar {
	display: none;
}
header#header div#menu div.inner-menu {
	width: 1160px;
	margin: 0px auto;
	padding: 80px 0px 40px 0px;
}
header#header nav#navi,
header#header div.misc {
	margin-bottom: 60px;
}
header#header nav#navi div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
header#header nav#navi div.list div.row:not(:nth-last-child(2)) {
	margin-right: 80px;
}
header#header nav#navi div.list div.row-small {
	display: none;
}
header#header nav#navi div.list div.row div.segment:not(:where(:last-child, .segment-news-alternate)) {
	min-height: 290px;
	margin-bottom: 40px;
}
header#header nav#navi div.list div.row div.segment-faq-alternate {
	display: none;
}
header#header nav#navi div.list div.row div.segment p.headline:not(:last-child) {
	margin-bottom: 30px;
}
header#header nav#navi div.list div.row div.segment p.headline span {
	display: block;
}
header#header nav#navi div.list div.row div.segment p.headline span.main {
	font-family: "avenir", sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 3.25rem;
	color: #004da1;
	transition: 0.25s color ease;
}
header#header nav#navi div.list div.row div.segment p.headline a:hover span.main {
	color: #527fe5;
}
header#header nav#navi div.list div.row div.segment p.headline span.sub {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	padding-left: 20px;
}
header#header nav#navi div.list div.row div.segment p.headline span.sub::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 0px;
	top: 11px;
	background-color: #ef8200;
	content: "";
	border-radius: 50%;
}
header#header nav#navi div.list div.row div.segment ul li {
	line-height: 1.25rem;
}
header#header nav#navi div.list div.row div.segment ul li:not(:last-child) {
	margin-bottom: 10px;
}
header#header nav#navi div.list div.row div.segment ul li a {
	display: block;
	position: relative;
	border-bottom: 2px dotted #83a9ff;
	padding: 5px 0px 10px 20px;
}
header#header nav#navi div.list div.row div.segment ul li a::before {
	position: absolute;
	width: 5px;
	height: 0px;
	left: 5px;
	top: 15px;
	border-bottom: 2px solid #004da1;
	content: "";
	transition: 0.25s border-color ease;
}
header#header nav#navi div.list div.row div.segment ul li a:hover::before {
	border-color: #527fe5;
}
header#header div.misc div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
header#header div.misc p.button-default {
	width: calc(33.33% - 20px);
	margin-right: 20px;
}
header#header div.misc p.button-default a {
	width: 100%;
	height: 100px;
	padding: 0px 80px 0px 50px;
	border-radius: 50px;
}
header#header div.misc p.button-default span.text,
header#header div.misc p.button-default span.text i {
	display: block;
}
header#header div.misc p.button-default span.text i.main {
	font-family: "avenir", sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 2.5rem;
}
header#header div.misc p.button-default span.text i.sub {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
}
header#header div.misc p.button-default span.arrow {
	width: 60px;
	height: 60px;
	right: 20px;
	top: calc(50% - 30px);
	font-size: 1.125rem;
}
header#header div.misc p.button-intern a {
	background-color: #ef8200;
}
header#header div.misc p.button-intern a:hover {
	background-color: #f3a140;
}
header#header div.misc p.button-guideline a {
	background-color: #707070;
}
header#header div.misc p.button-guideline a:hover {
	background-color: #999999;
}
header#header div.sns-corporate {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 10px;
}
header#header div.sns-corporate div.sns {
	margin-right: 30px;
}
header#header div.sns-corporate p.corporate,
header#header p.copyright {
	font-family: "avenir", sans-serif;
	text-align: right;
}
header#header div.sns-corporate p.corporate {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
}
header#header div.sns-corporate p.corporate i.icon {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.25rem;
	margin-left: 10px;
}
header#header p.copyright {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
header#header nav#navi-alternate,
header#header nav#navi-alternate div.main ul,
header#header nav#navi-alternate div.sub {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi-alternate {
	right: 100px;
}
header#header nav#navi-alternate :where(div.main, p.button-intern) {
	margin-right: 10px;
}
header#header nav#navi-alternate div.main ul,
header#header nav#navi-alternate div.entry {
	border-radius: 25px;
}
header#header nav#navi-alternate div.main ul {
	padding: 0px 15px;
	background-color: #ffffff;
}
header#header nav#navi-alternate div.main ul li {
	font-weight: 500;
}
header#header nav#navi-alternate div.main ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0px 15px;
}
header#header nav#navi-alternate p.button-intern,
header#header nav#navi-alternate div.entry p.label {
	font-family: "avenir", sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
}
header#header nav#navi-alternate p.button-intern a {
	width: 140px;
	height: 50px;
	background-color: #ef8200;
}
header#header nav#navi-alternate p.button-intern a:hover {
	background-color: #f3a140;
}
header#header nav#navi-alternate div.entry {
	width: 140px;
	color: #ffffff;
	background-color: #004da1;
	transition: 0.25s background-color ease;
}
header#header nav#navi-alternate div.entry:hover {
	background-color: #527fe5;
}
header#header nav#navi-alternate div.entry p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	cursor: pointer;
}
header#header nav#navi-alternate div.entry ul {
	height: 0px;
	overflow: hidden;
	padding: 0px 20px;
	transition: 0.25s height ease;
}
header#header nav#navi-alternate div.entry:hover ul {
	height: 80px;
}
header#header nav#navi-alternate div.entry ul li {
	text-align: center;
	font-weight: 500;
	line-height: 1.4375rem;
}
header#header nav#navi-alternate div.entry ul li:not(:last-child) {
	margin-bottom: 5px;
}
header#header nav#navi-alternate div.entry ul li a {
	display: block;
	border-bottom: 2px dotted #83a9ff;
	padding-bottom: 5px;
}
header#header nav#navi-alternate div.entry ul li a::after {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-left: 2px solid #83a9ff;
	border-top: 2px solid #83a9ff;
	margin-left: 5px;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(-2px) rotate(135deg);
}
header#header nav#navi-alternate div.entry ul li a:hover::after {
	border-color: #ffffff;
}



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

div#breadcrumb {
	position: relative;
	width: 1040px;
	z-index: 1;
	margin: 0px auto;
}
body:has(div#title) div#breadcrumb {
	display: none;
}
div#breadcrumb a {
	transition: 0.25s color ease;
}
div#breadcrumb a:hover {
	color: #000000;
}
div#breadcrumb p {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	left: -160px;
	top: 0px;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #aaaaaa;
	transform-origin: left top;
	transform: translateX(20px) rotate(90deg);
}
div#breadcrumb p span {
	display: block;
}
div#breadcrumb p span:not(:last-child) {
	position: relative;
	margin-right: 50px;
}
div#breadcrumb p span:not(:last-child)::before {
	position: absolute;
	width: 30px;
	height: 0px;
	right: -40px;
	top: 10px;
	border-bottom: 1px solid #aaaaaa;
	content: "";
}



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

div#cover {
	position: relative;
	height: 100svh;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #dff3f3 100%);
}
body.admin-bar div#cover {
	height: calc(100svh - 32px);
}
div#cover :where(div.image, div.text, p.symbol) {
	position: absolute;
}
div#cover div.image {
	aspect-ratio: 1;
	mask-image: url(../images/symbol-01.svg);
	mask-size: 100% auto;
}
div#cover div.image-01 {
	width: 960px;
	left: calc(50% - 680px);
	top: calc(50% - 640px);
}
div#cover div.image-02 {
	width: 720px;
	left: calc(50% + 120px);
	top: calc(50% - 180px);
}
div#cover div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	clip-path: "polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)";
}
div#cover div.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.text {
	left: 80px;
	bottom: 80px;
	z-index: 1;
}
div#cover div.text h1 {
	font-size: 5.5rem;
	font-weight: 700;
	line-height: 7.5rem;
	margin-bottom: 40px;
}
div#cover div.text p.sub {
	font-family: "avenir", sans-serif;
	font-size: 3rem;
	font-weight: 800;
	line-height: 3.5rem;
}
div#cover p.symbol-01 {
	width: 240px;
	left: calc(50% + 480px);
	top: calc(50% - 480px);
}
div#cover p.symbol-02 {
	width: 120px;
	left: calc(50% + 120px);
	top: calc(50% + 400px);
}



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

div#title {
	position: relative;
	width: 1040px;
	z-index: 1;
	margin: 0px auto 40px auto;
	padding-top: 160px;
}
div#title div.text {
	position: absolute;
	width: 100px;
	left: -180px;
	top: 0px;
}
div#title div.text :where(h1, p.sub) {
	writing-mode: vertical-rl;
	white-space: pre;
	margin-left: auto;
	margin-right: auto;
}
div#title div.text h1 {
	font-family: "avenir", sans-serif;
	font-size: 7.5rem;
	font-weight: 800;
	margin-bottom: 40px;
}
div#title div.text p.sub {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	padding-top: 20px;
}
div#title div.text p.sub::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 9px;
	top: 0px;
	background-color: #ef8200;
	content: "";
	border-radius: 50%;
}
div#title p.image {
	height: 395px;
	margin-right: calc(50% - 50vw);
	border-radius: 25px 0px 0px 25px;
}
div#title p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#title p.description {
	position: absolute;
	left: 0px;
	top: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.5rem;
}
div#title p.symbol {
	position: absolute;
}
div#title p.symbol-01 {
	width: 180px;
	left: calc(50% + 500px);
	bottom: -60px;
}
div#title p.symbol-02 {
	width: 100px;
	left: calc(50% + 420px);
	bottom: -140px;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 1040px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section header.common {
	position: relative;
	text-align: center;
	margin-bottom: 120px;
}
main section header.common p.symbol {
	width: 20px;
	margin: 0px auto 40px auto;
}
main section header.common h1 {
	font-family: "avenir", sans-serif;
	font-size: 3.25rem;
	font-weight: 800;
	line-height: 3.75rem;
	color: #004da1;
	margin-bottom: 5px;
}
main section header.common p:where(.sub, .description) {
	font-size: 1.125rem;
	font-weight: 500;
}
main section header.common p.sub:not(:last-child) {
	margin-bottom: 80px;
}
main section header.common p.description {
	line-height: 2.5rem;
}
main div.list-menu {
	padding-bottom: 20px;
}
main div.list-menu div.row {
	position: relative;
}
main div.list-menu div.row:not(:last-child) {
	margin-bottom: 80px;
}
main div.list-menu div.row::before,
main div.list-menu div.row a {
	border-radius: 25px;
}
main div.list-menu div.row::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 20px;
	top: 20px;
	background-color: #ededed;
	content: "";
}
main div.list-menu div.row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	border: 1px solid #707070;
	padding: 80px;
	background-color: #ffffff;
}
main div.list-menu div.row p.image {
	aspect-ratio: 380 / 440;
	width: 380px;
	border-radius: 25px;
}
main div.list-menu div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.list-menu div.row div.text {
	position: relative;
	width: calc(100% - 460px);
}
main div.list-menu div.row div.text p.number {
	position: absolute;
	right: -100px;
	top: -80px;
	font-family: "helvetica-neue", sans-serif;
	font-size: 12.5rem;
	font-weight: 300;
	font-style: italic;
	line-height: 12.5rem;
	color: #eff9f9;
}
main div.list-menu div.row div.header {
	position: relative;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	margin-bottom: 40px;
	padding: 40px 0px;
}
main div.list-menu div.row div.header h2 {
	font-family: "avenir", sans-serif;
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 4.25rem;
	color: #004da1;
	margin-bottom: 5px;
}
main div.list-menu div.row div.header p.sub {
	font-size: 1.125rem;
	font-weight: 500;
}
main div.list-menu div.row span.arrow {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 80px;
	bottom: 80px;
	font-size: 1.125rem;
	color: #ffffff;
}
main div.list-menu div.row span.arrow::before {
	background-color: #527fe5;
}
main nav#navi-main {
	margin-bottom: 120px;
}
main nav#navi-main div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -20px -20px 0px;
}
main nav#navi-main p.button-default {
	width: 320px;
	margin: 0px 20px 20px 0px;
}
main nav#navi-main p.button-default a {
	width: 100%;
}
main nav#navi-main p.button-default span.arrow {
	transform: rotate(90deg);
}
main nav#navi-sub div.inner-navi-sub {
	width: 1040px;
	margin: 0px auto;
	padding-bottom: 120px;
}
body:where(.medical-industry, .message) main nav#navi-sub div.inner-navi-sub {
	padding-top: 120px;
}
main nav#navi-sub div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 80px 0px;
}
main nav#navi-sub div.list div.row {
	width: calc(33.33% - 40px);
	overflow: hidden;
	margin-right: 40px;
	border-radius: 25px;
}
main nav#navi-sub div.list:has(div.row:nth-child(4)) div.row {
	width: calc(25% - 40px);
	margin-right: 40px;
}
main nav#navi-sub div.list div.row a {
	display: block;
	position: relative;
}
main nav#navi-sub div.list div.row p.image {
	position: relative;
	height: 200px;
}
main nav#navi-sub div.list div.row p.image-dark::before {
	opacity: 0.375;
}
main nav#navi-sub div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main nav#navi-sub div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	text-align: center;
	color: #ffffff;
	padding-top: 10px;
}
main nav#navi-sub div.list div.row div.text h3 {
	font-family: "avenir", sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 2.5rem;
	margin-bottom: 5px;
}
main nav#navi-sub div.list div.row div.text p.sub {
	font-weight: 500;
}
main div.description p.row {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3.25rem;
}
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: #000000;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body a {
	text-decoration: underline;
	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 em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f8f8f8;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #d9d9d9;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f8f8f8;
}
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: #004da1;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #527fe5;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: "avenir", sans-serif;
	font-weight: 500;
	margin: 80px 0px -10px 0px;
}
main div#pager :where(span.current, a) {
	display: block;
	margin-bottom: 10px;
	padding: 0px 15px;
	transition: 0.25s color ease;
}
main div#pager :where(span.current, a:hover) {
	color: #527fe5;
}
main div#pager a.prev {
	transform: scaleX(-1);
}

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

main div#home-news,
main div#home-news h2 a,
main div#home-news div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
}
main div#home-news,
main div#home-news h2 a {
	align-items: center;
}
main div#home-news {
	height: 80px;
	overflow: hidden;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	background-color: #ffffff;
}
main div#home-news h2,
main div#home-news h2 a {
	height: 100%;
}
main div#home-news h2 {
	width: 160px;
	font-family: "avenir", sans-serif;
	font-size: 1.375rem;
	font-weight: 500;
	border-right: 1px solid #707070;
}
main div#home-news h2 a {
	justify-content: center;
	position: relative;
}
main div#home-news div.list {
	width: calc(100% - 160px);
	overflow: hidden;
}
main div#home-news div.list div.inner-list {
	width: 9999px;
}
main div#home-news div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	padding: 0px 40px;
}
main div#home-news div.list div.row :where(p.created, h3) {
	font-weight: 500;
}
main div#home-news div.list div.row p.created {
	font-family: "avenir", sans-serif;
	margin-right: 20px;
	transform: translateY(2px);
}
main div#home-news div.list div.row h3 {
	font-size: 1.125rem;
}
main div#home-news div.list div.row span.arrow {
	display: none;
}
main section#home-introduction {
	background-color: #dff3f3;
}
main section#home-introduction div.video {
	position: absolute;
	width: 100%;
	height: 800px;
	left: 0px;
	bottom: 0px;
}
main section#home-introduction div.video::before {
	position: absolute;
	width: 100%;
	height: 400px;
	left: 0px;
	top: 0px;
	z-index: 1;
	background: linear-gradient(180deg, rgba(223, 243, 243, 1) 0%, rgba(223, 243, 243, 0) 100%);
	content: "";
}
main section#home-introduction div.video video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-introduction div.inner-section {
	z-index: 1;
	padding: 200px 0px 600px 0px;
}
main section#home-introduction h2,
main section#home-introduction div.description p.row {
	text-align: center;
}
main section#home-introduction h2 {
	text-align: center;
	font-family: "avenir", sans-serif;
	font-size: 1.875rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 60px;
}
main section#home-introduction div.description p.row {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 4.25rem;
}
main section:where(#home-work, #home-company, #home-culture) header {
	position: absolute;
	width: 100px;
	left: calc(50% - 700px);
	top: 120px;
}
main section:where(#home-work, #home-company, #home-culture) header :where(h2, p.sub) {
	writing-mode: vertical-rl;
	white-space: pre;
	margin-left: auto;
	margin-right: auto;
}
main section:where(#home-work, #home-company, #home-culture) header h2 {
	font-family: "avenir", sans-serif;
	font-size: 7.5rem;
	font-weight: 800;
	margin-bottom: 40px;
}
main section:where(#home-work, #home-company, #home-culture) header p.sub {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	padding-top: 20px;
}
main section:where(#home-work, #home-company, #home-culture) header p.sub::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 9px;
	top: 0px;
	background-color: #ef8200;
	content: "";
	border-radius: 50%;
}
div.home-company main section#home-work {
	visibility: hidden;
	pointer-events: none;
}
main section#home-work div.inner-section {
	width: auto;
	padding: 0px;
}
main section#home-work.fixed header {
	position: fixed;
	top: 120px;
}
body.admin-bar main section#home-work.fixed header {
	top: 152px;
}
main section#home-work div.list div.row {
	height: 100svh;
}
main section#home-work div.list div.row div.inner-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
body.admin-bar main section#home-work div.list div.row div.inner-row {
	padding-top: 32px;
}
main section#home-work div.list div.row.fixed div.inner-row {
	position: fixed;
	left: 0px;
	top: 0px;
}
main section#home-work div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	width: 1040px;
	overflow: hidden;
	color: #ffffff;
	pointer-events: auto;
	padding: 80px;
	background-color: #004da1;
	border-radius: 25px;
}
main section#home-work div.list div.row p.image {
	aspect-ratio: 380 / 440;
	width: 380px;
	border-radius: 25px;
}
main section#home-work div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-work div.list div.row div.text {
	position: relative;
	width: calc(100% - 460px);
}
main section#home-work div.list div.row div.text p.number {
	position: absolute;
	right: -60px;
	top: -80px;
	font-family: "helvetica-neue", sans-serif;
	font-size: 12.5rem;
	font-weight: 300;
	font-style: italic;
	line-height: 12.5rem;
	color: #0059ba;
}
main section#home-work div.list div.row div.header {
	position: relative;
	border-top: 1px solid #dff3f3;
	border-bottom: 1px solid #dff3f3;
	margin-bottom: 40px;
	padding: 40px 0px;
}
main section#home-work div.list div.row div.header h2 {
	font-family: "avenir", sans-serif;
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 4.25rem;
	margin-bottom: 5px;
}
main section#home-work div.list div.row div.header p.sub {
	font-size: 1.125rem;
	font-weight: 500;
}
main section#home-work div.list div.row span.arrow {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 80px;
	bottom: 80px;
	font-size: 1.125rem;
}
main section#home-company::before {
	position: absolute;
	width: calc(100% + 120px);
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #dff3f3;
	content: "";
	border-radius: 0px 450px 450px 0px;
}
main section#home-company p.headline {
	position: absolute;
	right: -120px;
	top: 0px;
}
main section#home-company p.headline img {
	width: 965px;
}
main section#home-company div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -80px 0px;
}
main section#home-company div.list div.row {
	width: calc(33.33% - 80px);
	margin: 0px 80px 80px 0px;
}
main section#home-company div.list div.row:nth-child(3n+2) {
	margin-top: 60px;
}
main section#home-company div.list div.row a {
	display: block;
	background-color: #ffffff;
	border-radius: 25px;
	transition: 0.375s transform ease;
}
main section#home-company div.list div.row:nth-child(2n+1) a:hover {
	transform: rotate(-2.5deg);
}
main section#home-company div.list div.row:nth-child(2n) a:hover {
	transform: rotate(2.5deg);
}
main section#home-company div.list div.row p.image {
	position: relative;
	margin: 0px -10px;
	border-radius: 25px;
}
main section#home-company div.list div.row p.image span {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #ffffff;
	padding: 10px 15px;
	border-bottom-right-radius: 25px;
}
main section#home-company div.list div.row:nth-child(2n+1) p.image span {
	background-color: #527fe5;
}
main section#home-company div.list div.row:nth-child(2n) p.image span {
	background-color: #ef8200;
}
main section#home-company div.list div.row div.text {
	position: relative;
	padding: 20px 20px 90px 20px;
}
main section#home-company div.list div.row div.text p.button {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 20px;
	bottom: 20px;
}
main section#home-company div.list div.row div.text p.button::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 1px solid #ededed;
	content: "";
	border-radius: 50%;
	transition: 0.25s transform ease;
}
main section#home-company div.list div.row a:hover div.text p.button::before {
	transform: scale(1.075);
}
main section#home-company div.list div.row div.text p.button span {
	position: absolute;
	width: 20px;
	height: 20px;
	left: calc(50% - 10px);
	top: calc(50% - 10px);
}
main section#home-company div.list div.row div.text p.button span::before,
main section#home-company div.list div.row div.text p.button span::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #004da1;
	content: "";
}
main section#home-company div.list div.row div.text p.button span::after {
	transform: rotate(90deg);
}
main section#home-culture {
	z-index: 1;
	background-color: #f8f8f8;
	border-radius: 0px 0px 80px 80px;
}
main section#home-culture div.slide div.list-cross-talk {
	margin-bottom: 40px;
}
main section#home-culture div.slide div.list-cross-talk div.inner-list-cross-talk {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main section#home-culture div.slide div.list-cross-talk div.inner-list-cross-talk div.row {
	width: 1040px;
	margin-right: 80px;
}
main section#home-culture div.slide div.list-cross-talk div.inner-list-cross-talk div.row:not(:last-child) {
	margin-bottom: 0px;
}
main section#home-culture div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
main section#home-culture div.slide div.navi p.button {
	width: 30px;
	height: 3px;
	cursor: pointer;
	background-color: #d9d9d9;
	transition: 0.25s background-color ease;
}
main section#home-culture div.slide div.navi p.button:not(:last-child) {
	margin-right: 10px;
}
main section#home-culture div.slide div.navi p.button:where(:hover, p.active) {
	background-color: #004da1;
}
main div.fix {
	position: relative;
	height: 640px;
	margin: -80px 0px;
}
main div.fix div.inner-fix {
	position: absolute;
	width: 100%;
	height: calc(100% + 160px);
	left: 0px;
	top: 0px;
	clip-path: inset(0px);
}
main div.fix div.inner-fix p.image {
	position: fixed;
	width: 100%;
	height: 100svh;
	left: 0px;
	bottom: 0px;
}
main div.fix div.inner-fix p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-menu {
	background-color: #f8f8f8;
	border-radius: 75px 75px 0px 0px;
}
main section#home-menu::before {
	position: absolute;
	width: 100%;
	height: 400px;
	left: 0px;
	bottom: 0px;
	background: linear-gradient(180deg, #f8f8f8 0%, #dff3f3 100%);
	content: "";
}
main section#home-menu p.symbol {
	position: absolute;
}
main section#home-menu p.symbol-01 {
	width: 100px;
	left: calc(50% + 420px);
	bottom: 0px;
	z-index: 1;
}
main section#home-menu p.symbol-02 {
	width: 180px;
	left: calc(50% + 500px);
	bottom: 80px;
}
main section#home-menu p.headline {
	position: absolute;
	width: 100vw;
	left: calc(50% - 50vw);
	top: -145px;
	text-align: center;
	font-family: "helvetica-neue", sans-serif;
	font-size: 10.5rem;
	font-weight: 100;
	line-height: 10.5rem;
	color: #f8f8f8;
}
main section#home-menu div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -80px 0px;
}
main section#home-menu div.list div.row {
	width: calc(50% - 80px);
	margin: 0px 80px 80px 0px;
}
main section#home-menu div.list div.row-wide {
	width: calc(100% - 80px);
}
main section#home-menu div.list div.row a {
	display: block;
	position: relative;
}
main section#home-menu div.list div.row :where(p.image, div.text) {
	border-radius: 25px;
}
main section#home-menu div.list div.row :where(div.text, span.arrow) {
	position: absolute;
	z-index: 1;
}
main section#home-menu div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	left: -10px;
	top: -10px;
	color: #004da1;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 25px;
}
main section#home-menu div.list div.row div.text :where(h3, p.sub) {
	flex-shrink: 0;
	writing-mode: vertical-rl;
	white-space: pre;
}
main section#home-menu div.list div.row div.text h3 {
	font-size: 1.625rem;
	font-weight: 500;
}
main section#home-menu div.list div.row div.text p.sub {
	font-family: "avenir", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-weight: 500;
	padding-top: 2.5px;
}
main section#home-menu div.list div.row span.arrow {
	width: 60px;
	height: 60px;
	right: 20px;
	bottom: 20px;
	font-size: 1.125rem;
	color: #ffffff;
}
main section#home-menu div.list div.row span.arrow::before {
	background-color: #527fe5;
}

/* medical-industry
-------------------------------------------------------------------------------- */

main section#medical-industry::before {
	position: absolute;
	width: 100%;
	height: calc(100% + 160px);
	left: 0px;
	top: -160px;
	background: linear-gradient(180deg, #ffffff 0%, #dff3f3 50%, #dff3f3 100%);
	content: "";
}
main section#medical-industry div.inner-section {
	width: auto;
}
main section#medical-industry h2 {
	text-align: center;
	font-size: 2.75rem;
	font-weight: 600;
	line-height: 4.5rem;
	margin-bottom: 80px;
}
main section#medical-industry div.description {
	margin-bottom: 120px;
}
main section#medical-industry div.description p.row {
	text-align: center;
}
main section#medical-industry p.diagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
main section#medical-industry p.diagram img {
	width: 1155px;
}
main section#medical-industry p.note {
	width: 1040px;
	margin: 0px auto;
}

/* our-mission
-------------------------------------------------------------------------------- */

main section#our-mission h2 {
	text-align: center;
	font-size: 2.75rem;
	font-weight: 600;
	line-height: 4.5rem;
	margin-bottom: 80px;
}
main section#our-mission div.description {
	margin-bottom: 120px;
}
main section#our-mission div.description p.row {
	text-align: center;
}
main section#our-mission div.video {
	margin-bottom: 220px;
}
main section#our-mission div.block {
	position: relative;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 75px;
}
main section#our-mission div.block p.headline {
	position: absolute;
	width: 100%;
	left: 0px;
	top: -110px;
	text-align: center;
	font-family: "helvetica-neue", sans-serif;
	font-size: 8rem;
	font-weight: 200;
	line-height: 8rem;
	color: #ffffff;
}
main section#our-mission div.block-service h2 {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 500;
	color: #004da1;
	margin-bottom: 80px;
}
main section#our-mission div.block-service div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -80px 0px;
}
main section#our-mission div.block-service div.list div.row {
	width: calc(50% - 80px);
	margin: 0px 80px 80px 0px;
}
main section#our-mission div.block-service div.list div.row p.image {
	position: relative;
	margin-bottom: 20px;
	border-radius: 25px;
}
main section#our-mission div.block-service div.list div.row p.image span {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #ffffff;
	padding: 10px 15px;
	background-color: #ef8200;
	border-bottom-right-radius: 25px;
}

/* explore-our-jobs
-------------------------------------------------------------------------------- */

main section#explore-our-jobs div.inner-section {
	width: 1200px;
}
main section#explore-our-jobs div.block,
main section#explore-our-jobs div.block div.inner-block {
	position: relative;
}
main section#explore-our-jobs div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#explore-our-jobs div.block::before {
	position: absolute;
	width: calc(100vw - calc(50% - 50vw));
	height: calc(100% - 80px);
	top: 80px;
	background-color: #dff3f3;
	content: "";
}
main section#explore-our-jobs div.block:nth-child(2n+1):before {
	right: 0px;
	border-bottom-right-radius: 75px;
}
main section#explore-our-jobs div.block:nth-child(2n):before {
	left: 0px;
	border-bottom-left-radius: 75px;
}
main section#explore-our-jobs div.block div.inner-block {
	padding: 0px 80px 120px 80px;
}
main section#explore-our-jobs div.block div.header {
	position: relative;
	margin: 0px -80px 80px -80px;
}
main section#explore-our-jobs div.block div.header p.image {
	position: relative;
	height: 520px;
}
main section#explore-our-jobs div.block:nth-child(2n+1) div.header p.image {
	margin-right: calc(50% - 50vw);
	border-radius: 25px 0px 0px 25px;
}
main section#explore-our-jobs div.block:nth-child(2n) div.header p.image {
	margin-left: calc(50% - 50vw);
	border-radius: 0px 25px 25px 0px;
}
main section#explore-our-jobs div.block div.header p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#explore-our-jobs div.block div.header div.text {
	position: absolute;
	left: 80px;
	bottom: 80px;
	z-index: 1;
	color: #ffffff;
}
main section#explore-our-jobs div.block div.header div.text p:where(.number, .sub) {
	font-family: "avenir", sans-serif;
}
main section#explore-our-jobs div.block div.header div.text p.number {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 20px;
}
main section#explore-our-jobs div.block div.header div.text h2 {
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 3.5rem;
	margin-bottom: 10px;
}
main section#explore-our-jobs div.block div.header div.text p.sub {
	font-size: 1.125rem;
	font-weight: 500;
	font-style: italic;
	line-height: 1.5rem;
}
main section#explore-our-jobs div.block div.summary {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 2px dashed #ffffff;
	margin-bottom: 80px;
	padding-bottom: 80px;
}
main section#explore-our-jobs div.block:nth-child(2n) div.summary {
	flex-direction: row-reverse;
}
main section#explore-our-jobs div.block div.summary div.text {
	width: calc(100% - 380px);
}
main section#explore-our-jobs div.block div.summary div.text h3 {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 2.375rem;
	margin-bottom: 20px;
}
main section#explore-our-jobs div.block div.summary p.image {
	width: 320px;
	border-radius: 25px;
}
main section#explore-our-jobs div.block div.detail {
	margin-bottom: 220px;
}
main section#explore-our-jobs div.block div.detail div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -60px;
}
main section#explore-our-jobs div.block div.detail div.list div.row {
	width: calc(33.33% - 60px);
	margin-right: 60px;
}
main section#explore-our-jobs div.block div.detail div.list div.row p.image {
	border-radius: 25px;
}
main section#explore-our-jobs div.block div.detail div.list div.row p.sub,
main section#explore-our-jobs div.block div.detail div.list div.row p.sub span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#explore-our-jobs div.block div.detail div.list div.row p.sub {
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin: -15px 0px 20px 0px;
}
main section#explore-our-jobs div.block div.detail div.list div.row p.sub span {
	align-items: center;
	height: 30px;
	color: #ffffff;
	padding: 0px 15px;
	background-color: #ef8200;
	border-radius: 15px;
}
main section#explore-our-jobs div.block div.detail div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 3.75rem;
	text-align: center;
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#explore-our-jobs div.block div.flow {
	position: relative;
	padding: 0px 80px 80px 80px;
	background-color: #ffffff;
	border-radius: 25px;
}
main section#explore-our-jobs div.block div.flow p:where(.symbol, .illust) {
	position: absolute;
	z-index: 1;
}
main section#explore-our-jobs div.block div.flow p:where(.symbol-01-01, .symbol-02-02) {
	width: 75px;
}
main section#explore-our-jobs div.block div.flow p:where(.symbol-01-02, .symbol-02-01) {
	width: 45px;
}
main section#explore-our-jobs div.block div.flow p.symbol-01-01 {
	right: 50px;
	top: -50px;
}
main section#explore-our-jobs div.block div.flow p.symbol-02-01 {
	right: 120px;
	top: 20px;
}
main section#explore-our-jobs div.block div.flow p.symbol-01-02 {
	left: 20px;
	bottom: 40px;
}
main section#explore-our-jobs div.block div.flow p.symbol-02-02 {
	left: -50px;
	bottom: 90px;
}
main section#explore-our-jobs div.block div.flow p.illust.fade-zoom {
	transition: 1.25s, 1s;
	transform: scale(0.6875);
}
main section#explore-our-jobs div.block div.flow p.illust.fade-zoom.active {
	transform: scale(1);
}
main section#explore-our-jobs div.block div.flow p.headline {
	position: absolute;
	width: 100%;
	left: 0px;
	top: -110px;
	text-align: center;
	font-family: "helvetica-neue", sans-serif;
	font-size: 8rem;
	font-weight: 200;
	line-height: 8rem;
	color: #ffffff;
}
main section#explore-our-jobs div.block div.flow h3,
main section#explore-our-jobs div.block div.flow h3 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#explore-our-jobs div.block div.flow h3 {
	position: relative;
	z-index: 1;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 60px;
}
main section#explore-our-jobs div.block div.flow h3 span {
	align-items: center;
	color: #ffffff;
	padding: 10px 20px;
	background-color: #004da1;
	border-radius: 0px 0px 25px 25px;
}
main section#explore-our-jobs div.block div.flow div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	padding: 30px 40px;
}
main section#explore-our-jobs div.block div.flow div.list div.row:nth-child(2n+1) {
	background-color: #f8f8f8;
}
main section#explore-our-jobs div.block div.flow div.list div.row::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 30px);
	left: -1px;
	top: 15px;
	border-right: 2px dotted #ef8200;
	content: "";
}
main section#explore-our-jobs div.block div.flow div.list div.row p.time {
	position: absolute;
	width: 60px;
	left: -35px;
	top: -10px;
	text-align: right;
	font-family: "avenir", sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.25rem;
	color: #004da1;
}
main section#explore-our-jobs div.block div.flow div.list div.row h4 {
	width: 160px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
main section#explore-our-jobs div.block div.flow div.list div.row p.description {
	width: calc(100% - 160px);
	line-height: 1.5rem;
}
main section#explore-our-jobs div#explore-our-jobs-01 div.flow p.illust-01 {
	width: 201px;
	left: -30px;
	top: -160px;
	z-index: 5;
}
main section#explore-our-jobs div#explore-our-jobs-01 div.flow p.illust-02 {
	width: 215px;
	right: 140px;
	top: -50px;
}
main section#explore-our-jobs div#explore-our-jobs-01 div.flow p.illust-03 {
	width: 155px;
	right: 120px;
	top: 40px;
}
main section#explore-our-jobs div#explore-our-jobs-01 div.flow p.illust-04 {
	width: 153px;
	right: 310px;
	top: -10px;
}
main section#explore-our-jobs div#explore-our-jobs-01 div.flow p.illust-05 {
	width: 252px;
	right: -120px;
	top: -220px;
}
main section#explore-our-jobs div#explore-our-jobs-01 div.flow p.illust-06 {
	width: 151px;
	right: 220px;
	top: 20px;
}
main section#explore-our-jobs div#explore-our-jobs-02 div.flow p.illust-01 {
	width: 118px;
	left: 40px;
	top: -80px;
}
main section#explore-our-jobs div#explore-our-jobs-02 div.flow p.illust-02 {
	width: 132px;
	right: 140px;
	top: 10px;
}
main section#explore-our-jobs div#explore-our-jobs-02 div.flow p.illust-03 {
	width: 68px;
	right: -50px;
	top: -120px;
}
main section#explore-our-jobs div#explore-our-jobs-02 div.flow p.illust-04 {
	width: 173px;
	right: 220px;
	top: -30px;
}
main section#explore-our-jobs div#explore-our-jobs-02 div.flow p.illust-05 {
	width: 168px;
	right: 200px;
	top: -20px;
}
main section#explore-our-jobs div#explore-our-jobs-02 div.flow p.illust-06 {
	width: 244px;
	right: -40px;
	top: -20px;
}

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

main section#scene header.common p.description ~ p.symbol {
	position: absolute;
}
main section#scene header.common p.description ~ p.symbol-01 {
	width: 180px;
	left: calc(50% + 500px);
	bottom: -20px;
}
main section#scene header.common p.description ~ p.symbol-02 {
	width: 100px;
	left: calc(50% + 420px);
	bottom: -100px;
}
main section#scene div.image-video-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin: 0px -240px -120px -240px;
}
main section#scene div:where(.image, .video) {
	overflow: hidden;
	margin: 0px 40px 120px 40px;
	border-radius: 25px;
}
main section#scene div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main section#scene div.image p.row img,
main section#scene div.video video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#scene div.video {
	aspect-ratio: 16 / 9;
}
main section#scene div.image-01 {
	order: 0;
	width: 395px;
	height: 285px;
	margin-left: 20px;
	margin-right: 80px;
	margin-top: 140px;
}
main section#scene div.image-02 {
	order: 1;
	width: 700px;
	height: 340px;
}
main section#scene div.image-03 {
	order: 2;
	width: 325px;
	height: 290px;
	margin-left: 100px;
	margin-top: 160px;
}
main section#scene div.image-04 {
	order: 3;
	width: 320px;
	height: 430px;
}
main section#scene div.video-01 {
	order: 4;
	width: 475px;
	margin-top: -40px;
}
main section#scene div.image-05 {
	order: 5;
	width: 260px;
	height: 355px;
	margin-left: 160px;
}
main section#scene div.video-02 {
	order: 6;
	width: 400px;
	margin-top: -40px;
}
main section#scene div.image-06 {
	order: 7;
	width: 425px;
	height: 300px;
	margin-top: -160px;
}
main section#scene div.image-07 {
	order: 8;
	width: 325px;
	height: 290px;
	margin-left: 120px;
	margin-top: 60px;
}
main section#scene div.image-08 {
	order: 9;
	width: 385px;
	height: 310px;
	margin-top: -120px;
}
main section#scene div.image-09 {
	order: 10;
	width: 310px;
	height: 220px;
	margin-top: -200px;
}
main section#scene div.image-10 {
	order: 11;
	width: 420px;
	height: 220px;
	margin-left: 160px;
	margin-right: 80px;
}
main section#scene div.video-03 {
	order: 12;
	width: 654px;
	margin-top: -180px;
}

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

main section#outline header.common {
	margin-bottom: 220px;
}
main section#outline header.common p.image {
	position: absolute;
	border-radius: 25px;
}
main section#outline header.common p.image-01 {
	width: 360px;
	left: calc(50% + 440px);
	top: -40px;
}
main section#outline header.common p.image-02 {
	width: 380px;
	right: calc(50% + 440px);
	top: 160px;
}
main section#outline header.common p.image-03 {
	width: 245px;
	left: calc(50% + 360px);
	top: 300px;
}
main section#outline div.block {
	position: relative;
}
main section#outline div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#outline div.block h2 {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 500;
	color: #004da1;
	margin-bottom: 80px;
}
main section#outline div.block-outline {
	padding: 80px;
	background-color: #f2f2f2;
	border-radius: 75px;
}
main section#outline div.block-outline div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#outline div.block-outline div.list div.row:not(:last-child) {
	margin-bottom: 30px;
}
main section#outline div.block-outline div.list div.row p:where(.label, .body) {
	font-size: 1.125rem;
	border-bottom: 1px solid #d9d9d9;
	padding: 0px 0px 30px 20px;
}
main section#outline div.block-outline div.list div.row p.label {
	width: 160px;
	font-weight: 500;
	color: #004da1;
}
main section#outline div.block-outline div.list div.row p.body {
	width: calc(100% - 180px);
}
main section#outline div.block-office {
	padding: 80px 80px 0px 80px;
}
main section#outline div.block-office div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#outline div.block-office div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#outline div.block-office div.list div.row div.text {
	width: calc(100% - 520px);
}
main section#outline div.block-office div.list div.row div.text h3 {
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#outline div.block-office div.list div.row div.text p.fax {
	margin-bottom: 20px;
}
main section#outline div.block-office div.list div.row div.text p.button-default,
main section#outline div.block-office div.list div.row div.text p.button-default a {
	justify-content: flex-start;
}
main section#outline div.block-office div.list div.row div.text p.button-default a {
	width: 200px;
	height: 50px;
	border-radius: 25px;
	background-color: #707070;
}
main section#outline div.block-office div.list div.row div.text p.button-default a:hover {
	background-color: #999999;
}
main section#outline div.block-office div.list div.row div.text p.button-default i.icon-new-window {
	position: absolute;
	right: 30px;
	top: calc(50% - 8px);
}
main section#outline div.block-office div.list div.row p.image {
	width: 460px;
	overflow: hidden;
	border-radius: 25px;
}

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

main section#message::before {
	position: absolute;
	width: 100%;
	height: calc(100% + 160px);
	left: 0px;
	top: -160px;
	background: linear-gradient(180deg, #ffffff 0%, #dff3f3 50%, #dff3f3 100%);
	content: "";
}
main section#message p.image {
	margin-bottom: 80px;
	border-radius: 25px;
}
main section#message div.text {
	position: relative;
	width: 880px;
	margin: 0px auto;
	padding: 100px 0px 0px 140px;
}
main section#message div.text h2 {
	position: absolute;
	left: 0px;
	top: 0px;
	writing-mode: vertical-rl;
	white-space: pre;
	font-size: 2.75rem;
	font-weight: 600;
}
main section#message div.text div.description {
	margin-bottom: 60px;
}
main section#message div.text p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
}
main section#message div.text p.name span {
	display: block;
}
main section#message div.text p.name span.sub {
	font-size: 1.125rem;
	margin-right: 20px;
	transform: translateY(2px);
}
main section#message div.text p.name span.main {
	font-size: 1.375rem;
	font-weight: 500;
}

/* data
-------------------------------------------------------------------------------- */

main section#data header.common {
	margin-bottom: 220px;
}
main section#data div.block {
	position: relative;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 75px;
}
main section#data div.block:not(:last-child) {
	margin-bottom: 220px;
}
main section#data div.block p.headline {
	position: absolute;
	width: 100%;
	left: 0px;
	top: -110px;
	text-align: center;
	font-family: "helvetica-neue", sans-serif;
	font-size: 8rem;
	font-weight: 200;
	line-height: 8rem;
	color: #ffffff;
}
main section#data div.block div.list {
	display: flex;
	flex-wrap: wrap;
}
main section#data div.block div.list div.row {
	position: relative;
	text-align: center;
	border-bottom: 2px dotted #d9d9d9;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
main section#data div.block div.list div.row :where(h3, p.sub) {
	position: relative;
	z-index: 1;
	font-weight: 500;
}
main section#data div.block div.list div.row h3 {
	font-size: 1.375rem;
}
main section#data div.block div.list div.row p:where(.sub, .note) {
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #707070;
	margin-bottom: 20px;
}
main section#data div.block div.list div.row p.sub,
main section#data div.block div.list div.row p.mix span.number {
	font-family: "avenir", sans-serif;
}
main section#data div.block div.list div.row p.diagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#data div.block div.list div.row p.icon {
	position: absolute;
	width: 160px;
}
main section#data div.block div.list div.row p.icon img {
	width: 100%;
}
main section#data div.block div.list div.row p.mix {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}
main section#data div.block div.list div.row p.mix span {
	display: block;
}
main section#data div.block div.list div.row p.mix span:where(.prefix, .suffix) {
	font-weight: 600;
}
main section#data div.block div.list div.row p.mix span.number {
	font-weight: 800;
	color: #ef8200;
}
main section#data div.block-features div.list div.row p.icon {
	left: calc(50% - 80px);
	top: calc(50% - 100px);
}
main section#data div.block-features div.list div.row p.mix {
	position: relative;
	z-index: 1;
	padding-top: 40px;
}
main section#data div.block-features div.list div.row p.mix span.number {
	font-size: 6.5rem;
	line-height: 6.5rem;
}
main section#data div.block-features div.list div.row p.mix span.suffix {
	font-size: 2.75rem;
	line-height: 2.75rem;
	transform: translateY(-17.5px);
}
main section#data div.block-features div.list div.row-01 p.diagram img {
	width: 720px;
}
main section#data div.block-features div.list div.row-01 {
	width: 100%;
}
main section#data div.block-features div.list div:where(.row-02, .row-04, .row-06, .row-08)::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 40px);
	right: 0px;
	top: 0px;
	border-right: 2px dotted #d9d9d9;
	content: "";
}
main section#data div.block-features div.list div:where(.row-02, .row-05, .row-09) {
	width: 33.33%;
}
main section#data div.block-features div.list div:where(.row-03, .row-04, .row-08) {
	width: 66.66%;
}
main section#data div.block-features div.list div:where(.row-03, .row-08) p.diagram img {
	width: 500px;
}
main section#data div.block-features div.list div.row-04 p.diagram img {
	width: 560px;
}
main section#data div.block-features div.list div:where(.row-06, .row-07) {
	width: 50%;
}
main section#data div.block-features div.list div:where(.row-06, .row-07) p.diagram img {
	width: 300px;
}
main section#data div.block-features div.list div.row-08,
main section#data div.block-features div.list div.row-09 {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
main section#data div.block-features div.list div.row-08::before,
main section#data div.block-features div.list div.row-09::before {
	height: 100%;
}
main section#data div.block-benefits div.list div.row p.icon {
	right: 20px;
	top: calc(50% - 80px);
}
main section#data div.block-benefits div.list div.row div.body,
main section#data div.block-benefits div.list div.row div.body div.inner-body {
	width: 100%;
}
main section#data div.block-benefits div.list div.row div.body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 120px;
	z-index: 1;
	text-align: center;
	font-weight: 700;
	color: #004da1;
}
main section#data div.block-benefits div.list div.row div.body p.large {
	font-size: 1.875rem;
	line-height: 2.75rem;
}
main section#data div.block-benefits div.list div.row div.body p.medium {
	font-size: 1.375rem;
	line-height: 2.375rem;
}
main section#data div.block-benefits div.list div.row div.body p.small {
	font-size: 1.125rem;
}
main section#data div.block-benefits div.list div.row p.mix span.number {
	font-size: 4.5rem;
	line-height: 4.5rem;
}
main section#data div.block-benefits div.list div.row p.mix span:where(.prefix, .suffix) {
	font-size: 1.875rem;
	line-height: 1.875rem;
	transform: translateY(-12.5px);
}
main section#data div.block-benefits div.list div.row p.mix span.suffix-alternate {
	font-size: 1.125rem;
	transform: translateY(-7.5px);
}
main section#data div.block-benefits div.list div:where(.row-01, .row-04, .row-09, .row-12) {
	width: 100%;
}
main section#data div.block-benefits div.list div:not(:where(.row-01, .row-04, .row-09, .row-12)) {
	width: 50%;
}
main section#data div.block-benefits div.list div:where(.row-02, .row-05, .row-07, .row-10)::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 40px);
	right: 0px;
	top: 0px;
	border-right: 2px dotted #d9d9d9;
	content: "";
}
main section#data div.block-benefits div.list div.row-12 {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
main section#data div.block-benefits div.list div.row-12::before {
	height: 100%;
}

/* training-system
-------------------------------------------------------------------------------- */

main section#training-system div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
	padding: 0px 80px;
}
main section#training-system div.list div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 40px 0px;
	padding: 40px;
	background-color: #ffffff;
	border-radius: 25px;
}
main section#training-system div.list div.row :where(p.icon, h2) {
	margin-bottom: 20px;
}
main section#training-system div.list div.row p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#training-system div.list div.row p.icon img {
	width: 144px;
}
main section#training-system div.list div.row h2 {
	text-align: center;
	font-size: 1.375rem;
	font-weight: 500;
}

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

main section#social-action div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#social-action div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#social-action div.list div.row:nth-child(2n+1) {
	flex-direction: row-reverse;
}
main section#social-action div.list div.row p.image {
	width: 590px;
	border-radius: 25px;
}
main section#social-action div.list div.row div.text {
	width: calc(100% - 650px);
}
main section#social-action div.list div.row div.text p:where(.number, .sub) {
	font-family: "avenir", sans-serif;
	color: #004da1;
}
main section#social-action div.list div.row div.text p.number {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 20px;
}
main section#social-action div.list div.row div.text h2 {
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 3.25rem;
	margin-bottom: 10px;
}
main section#social-action div.list div.row div.text p.sub {
	font-size: 1.125rem;
	font-weight: 500;
	font-style: italic;
	line-height: 1.5rem;
	margin-bottom: 40px;
}

/* culture
-------------------------------------------------------------------------------- */

main div:where(.block-interview, .block-cross-talk) {
	position: relative;
}
main div:where(.block-interview, .block-cross-talk):not(:last-child) {
	margin-bottom: 120px;
}
main div:where(.block-interview, .block-cross-talk) div.anchor {
	position: absolute;
	top: -120px;
}
main div:where(.block-interview, .block-cross-talk) div.header {
	position: relative;
	margin-bottom: 40px;
	padding-left: 40px;
}
main div:where(.block-interview, .block-cross-talk) div.header p.symbol {
	position: absolute;
	width: 20px;
	left: 0px;
	top: 23px;
}
main div:where(.block-interview, .block-cross-talk) div.header h3 {
	font-family: "avenir", sans-serif;
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 4.25rem;
	color: #004da1;
	margin-bottom: 5px;
}
main div:where(.block-interview, .block-cross-talk) div.header p.sub {
	font-size: 1.125rem;
	font-weight: 500;
}
main div.list-interview div.inner-list-interview {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -80px 0px;
}
main div.list-interview div.row {
	width: calc(33.33% - 80px);
	text-align: left;
	margin: 0px 80px 80px 0px;
}
main  div.list-interview div.row:nth-child(3n+2) {
	margin-top: 60px;
}
main div.list-interview div.row p.image,
main div.list-interview div.row p.image span {
	position: relative;
}
main div.list-interview div.row p.image {
	overflow: visible;
	margin-bottom: 40px;
}
main div.list-interview div.row p.image::before,
main div.list-interview div.row p.image span {
	border-radius: 25px;
}
main div.list-interview div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 20px;
	top: 20px;
	background-color: #ededed;
	content: "";
}
main div.list-interview div.row p.image span {
	display: block;
	overflow: hidden;
}
main div.list-interview div.row p.image i.number {
	position: absolute;
	right: 20px;
	top: 20px;
	font-family: "avenir", sans-serif;
	font-weight: 500;
	line-height: 1rem;
	color: #004da1;
}
main div.list-interview div.row h4,
main div.list-interview div.row p.name span.main {
	font-size: 1.375rem;
	font-weight: 500;
}
main div.list-interview div.row h4 {
	line-height: 2.375rem;
	margin: 0px -20px 20px 0px;
}
main div.list-interview div.row p.section,
main div.list-interview div.row p.section span,
main div.list-interview div.row p.name,
main section#interview div.profile div.text p.section,
main section#interview div.profile div.text p.section span,
main section#interview div.profile div.text p.name,
main section#cross-talk div.profile div.list div.row div.text p.section,
main section#cross-talk div.profile div.list div.row div.text p.section span {
	display: flex;
	flex-wrap: wrap;
}
main div.list-interview div.row p.section,
main div.list-interview div.row p.name,
main section#interview div.profile div.text p.section,
main section#interview div.profile div.text p.name,
main section#cross-talk div.profile div.list div.row div.text p.section,
main section#cross-talk div.profile div.list div.row div.text p.name {
	margin-bottom: 5px;
}
main div.list-interview div.row p:where(.section, .misc),
main section#interview div.profile div.text p:where(.section, .misc),
main section#cross-talk div.profile div.list div.row  div.text p:where(.section, .misc) {
	font-size: 0.75rem;
	line-height: 1rem;
}
main div.list-interview div.row p.section span,
main section#interview div.profile div.text p.section span,
main section#cross-talk div.profile div.list div.row div.text p.section span {
	align-items: center;
	color: #004da1;
	padding: 5px 10px;
	background-color: #dff3f3;
	border-radius: 5px;
}
main div.list-interview div.row p.name span,
main section#interview div.profile div.text p.name span,
main section#cross-talk div.profile div.list div.row div.text p.name span {
	display: block;
}
main div.list-interview div.row p.name span.main,
main section#interview div.profile div.text p.name span.main,
main section#cross-talk div.profile div.list div.row div.text p.name span.main {
	font-size: 1.375rem;
}
main div.list-interview div.row p.name span.main,
main section#interview div.profile div.text p.name span.main {
	margin-right: 10px;
}
main div.list-interview div.row p.name span.sub,
main section#interview div.profile div.text p.name span.sub,
main section#cross-talk div.profile div.list div.row div.text p.name span.sub {
	font-family: "avenir", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.25rem;
}
main div.list-interview div.row p.name span.sub,
main section#interview div.profile div.text p.name span.sub {
	transform: translateY(10px);
}
main div.list-interview div.row p.misc,
main section#interview div.profile div.text p.misc,
main section#cross-talk div.profile div.list div.row div.text p.misc {
	color: #999999;
}
main div.list-cross-talk div.row {
	position: relative;
}
main div.list-cross-talk div.row:not(:last-child) {
	margin-bottom: 80px;
}
main div.list-cross-talk div.row::before,
main div.list-cross-talk div.row a {
	border-radius: 25px;
}
main div.list-cross-talk div.row::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 20px;
	top: 20px;
	background-color: #ededed;
	content: "";
}
main div.list-cross-talk div.row a {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	position: relative;
	height: 100%;
	border: 1px solid #707070;
	padding: 80px;
	background-color: #ffffff;
}
main div.list-cross-talk div.row p.label-number {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: absolute;
	width: calc(100% - 710px);
	left: 80px;
	top: 80px;
}
main div.list-cross-talk div.row p.label-number::before {
	position: absolute;
	width: calc(100% - 135px);
	left: 100px;
	top: 15px;
	border-bottom: 1px solid #004da1;
	content: "";
}
main div.list-cross-talk div.row p.label-number span:where(.label, .number) {
	font-family: "avenir", sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	color: #004da1;
}
main div.list-cross-talk div.row p.image {
	width: 490px;
	border-radius: 25px;
}
main div.list-cross-talk div.row div.text {
	width: calc(100% - 550px);
	text-align: left;
	padding-top: 100px;
}
main div.list-cross-talk div.row div.text p.sub,
main div.list-cross-talk div.row div.text p.sub span {
	display: flex;
	flex-wrap: wrap;
}
main div.list-cross-talk div.row div.text p.sub {
	font-size: 0.75rem;
	line-height: 1.25rem;
	margin-bottom: 5px;
}
main div.list-cross-talk div.row div.text p.sub span {
	align-items: center;
	height: 25px;
	color: #004da1;
	padding: 0px 10px;
	background-color: #dff3f3;
	border-radius: 5px;
}
main div.list-cross-talk div.row div.text h4 {
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 2.5rem;
}
main div.list-cross-talk div.row p.more {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	left: 80px;
	bottom: 80px;
}
main div.list-cross-talk div.row p.more span.text {
	display: block;
	font-weight: 500;
	margin-right: 20px;
}
main div.list-cross-talk div.row p.more span.arrow {
	width: 60px;
	height: 60px;
	font-size: 1.125rem;
	color: #ffffff;
}
main div.list-cross-talk div.row p.more span.arrow::before {
	background-color: #527fe5;
}
main section:where(#interview, #cross-talk) div.inner-section {
	padding-bottom: 0px;
}
main section:where(#interview, #cross-talk) header {
	position: relative;
	margin-bottom: 120px;
}
main section:where(#interview, #cross-talk) header :where(div.symbol-label-number, p.sub) {
	margin-right: calc(50% - 50vw + 40px);
}
main section:where(#interview, #cross-talk) header div.symbol-label-number {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
main section:where(#interview, #cross-talk) header:not(:has(p.sub)) div.symbol-label-number {
	margin-bottom: 50px;
}
main section:where(#interview, #cross-talk) header div.symbol-label-number p:where(.symbol, .label) {
	margin-right: 10px;
}
main section:where(#interview, #cross-talk) header div.symbol-label-number p.symbol {
	width: 15px;
}
main section:where(#interview, #cross-talk) header div.symbol-label-number p:where(.label, .number) {
	font-family: "avenir", sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: #004da1;
}
main section:where(#interview, #cross-talk) header p.sub {
	text-align: right;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section:where(#interview, #cross-talk) header p.image {
	height: 540px;
	margin-right: calc(50% - 50vw);
	border-radius: 25px 0px 0px 25px;
}
main section:where(#interview, #cross-talk) header p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section:where(#interview, #cross-talk) header h1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	position: absolute;
	left: 80px;
	top: 270px;
	z-index: 1;
	font-size: 1.875rem;
	font-weight: 500;
	font-feature-settings: normal;
}
main section:where(#interview, #cross-talk) header h1 span,
main section:where(#interview, #cross-talk) header h1 span i {
	display: block;
}
main section:where(#interview, #cross-talk) header h1 span:not(:last-child) {
	margin-left: 20px;
}
main section:where(#interview, #cross-talk) header h1 span i {
	width: calc(1.875rem + 20px);
	writing-mode: vertical-rl;
	white-space: pre;
	padding: 10px;
	background-color: #f8f8f8;
}
main section:where(#interview, #cross-talk) header h1 span i em {
	display: inline-block;
}
main section:where(#interview, #cross-talk) header h1 span i em.number {
	text-combine-upright: all;
	transform: translate(-0.125em, -0.0625em);
}
main section:where(#interview, #cross-talk) header h1 span i em.top {
	margin-top: -0.5em;
}
main section:where(#interview, #cross-talk) header h1 span i em.bottom {
	margin-bottom: -0.5em;
}
main section#interview div.profile p.image,
main section#cross-talk div.profile div.list div.row p.image {
	aspect-ratio: 1;
	width: 150px;
	border-radius: 50%;
}
main section#interview div.profile div.text {
	width: calc(100% - 190px);
}
main section:where(#interview, #cross-talk) div.body,
main section:where(#interview, #cross-talk) div.body + p.note {
	margin-bottom: 120px;
}
main section:where(#interview, #cross-talk) div.body div.block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section:where(#interview, #cross-talk) div.body div.block-reverse {
	flex-direction: row-reverse;
}
main section:where(#interview, #cross-talk) div.body div.block :where(div.text, p.image) {
	width: 460px;
}
main section:where(#interview, #cross-talk) div.body div.block :where(div.text, p.image) img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section:where(#interview, #cross-talk) div.body div.block:not(:last-child),
main section:where(#interview, #cross-talk) div.body div.block div.text div.segment:not(:last-child) {
	margin-bottom: 80px;
}
main section:where(#interview, #cross-talk) div.body div.block div.text h2 {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 3.25rem;
	margin-bottom: 40px;
	background: url(../images/border-dot.svg) repeat left top;
	background-size: 4px auto;
}
main section:where(#interview, #cross-talk) div.body div.block > p.image {
	border-radius: 25px;
}
main section:where(#interview, #cross-talk) div.body + p.note {
	text-align: right;
}
main section:where(#interview, #cross-talk) div.more {
	position: relative;
}
main section:where(#interview, #cross-talk) div.more::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #dff3f3;
	content: "";
}
main section:where(#interview, #cross-talk) div.more div.inner-more {
	position: relative;
	padding: 120px 0px;
}
main section:where(#interview, #cross-talk) div.more h3 {
	text-align: center;
	font-family: "avenir", sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: #004da1;
	margin-bottom: 80px;
}
main section#interview div.profile {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: -150px;
}
main section#interview div.body div.block {
	align-items: center;
}
main section#interview div.body div.block-bottom {
	align-items: flex-end;
}
main section#interview div.body div.block div.text p.symbol {
	width: 15px;
}
main section#interview div.body div.block div.text h2 {
	color: #004da1;
}
main section#interview div.more div.slide {
	position: relative;
	margin-bottom: 80px;
}
main section#interview div.more div.slide div.list-interview {
	overflow: hidden;
}
main section#interview div.more div.slide div.list-interview div.inner-list-interview {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	margin: 0px;
}
main section#interview div.more div.slide div.list-interview div.row {
	width: 320px;
	margin: 0px 40px 0px 0px;
	transform: none;
}
main section#interview div.more div.slide div.list-interview div.row:nth-child(3n+2) {
	margin-top: 0px;
}
main section#interview div.more div.slide div.list-interview div.row p.image {
	margin-bottom: 20px;
}
main section#interview div.more div.slide div.list-interview div.row p.image::before {
	display: none;
}
main section#interview div.more div.slide div.list-interview div.row p.section span {
	background-color: #ffffff;
}
main section#interview div.more div.slide div.pager,
main section#interview div.more div.slide div.pager p.button {
	position: absolute;
}
main section#interview div.more div.slide div.pager {
	width: 100%;
	height: calc(320px * calc(350 / 300));
	left: 0px;
	top: 0px;
	z-index: 1;
	pointer-events: none;
}
main section#interview div.more div.slide div.pager p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	top: calc(50% - 30px);
	font-size: 1.125rem;
	color: #ffffff;
	pointer-events: auto;
	cursor: pointer;
}
main section#interview div.more div.slide div.pager p.button i.icon {
	position: relative;
}
main section#interview div.more div.slide div.pager p.button::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #004da1;
	content: "";
	border-radius: 50%;
	transition: 0.25s transform ease;
}
main section#interview div.more div.slide div.pager p.button:hover::before {
	transform: scale(1.075);
}
main section#interview div.more div.slide div.pager p.button-prev {
	left: -100px;
	transform: scaleX(-1);
}
main section#interview div.more div.slide div.pager p.button-next {
	right: -100px;
}
main section#cross-talk div.profile {
	margin-bottom: 120px;
}
main section#cross-talk div.profile div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#cross-talk div.profile div.list div.row {
	width: 25%;
	text-align: center;
}
main section#cross-talk div.profile div.list div.row p.image {
	margin: 0px auto 10px auto;
}
main section#cross-talk div.profile div.list div.row p.section {
	justify-content: center;
}
main section#cross-talk div.body div.block {
	align-items: flex-start;
}
main section#cross-talk div.body div.block div.text div.segment p.label,
main section#cross-talk div.body div.block div.text div.segment p.question::before {
	font-family: "avenir", sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	color: #004da1;
}
main section#cross-talk div.body div.block div.text div.segment p.question {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	color: #004da1;
	margin-bottom: 40px;
	padding-left: 30px;
}
main section#cross-talk div.body div.block div.text div.segment p.question::before {
	position: absolute;
	left: 0px;
	top: 2px;
	content: "Q.";
}
main section#cross-talk div.body div.block div.text div.segment div.list div.row {
	position: relative;
	padding-left: 70px;
}
main section#cross-talk div.body div.block div.text div.segment div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#cross-talk div.body div.block div.text div.segment div.list div.row p.image {
	position: absolute;
	aspect-ratio: 1;
	width: 50px;
	left: 0px;
	top: 0px;
	border-radius: 50%;
}
main section#cross-talk div.body div.block div.text div.segment div.list div.row:has(p.image:nth-child(2)) p.image:nth-child(1) {
	left: -12.5px;
	top: -12.5px;
}
main section#cross-talk div.body div.block div.text div.segment div.list div.row p.image:nth-child(2) {
	left: 12.5px;
	top: 12.5px;
}
main section#cross-talk div.body div.block div.text div.segment div.list div.row p.name {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 5px;
}
main section#cross-talk div.body div.image {
	margin: 0px calc(50% - 50vw) 120px calc(50% - 50vw);
}
main section#cross-talk div.body div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
	animation: cross-talk 120s linear infinite forwards;
}
@keyframes cross-talk {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(calc(-1040px - 40px) * 3)); }
}
main section#cross-talk div.body div.image p.row {
	width: 1040px;
	overflow: hidden;
	margin-right: 40px;
	border-radius: 25px;
}
main section#cross-talk div.body div.image p.row img {
	width: 100%;
}
main section#cross-talk div.more div.list-cross-talk div.inner-list-cross-talk {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 40px 0px;
}
main section#cross-talk div.more div.list-cross-talk div.row {
	width: calc(50% - 40px);
	margin: 0px 40px 40px 0px;
}
main section#cross-talk div.more div.list-cross-talk div.row::before {
	display: none;
}
main section#cross-talk div.more div.list-cross-talk div.row a {
	display: block;
	position: relative;
	height: 100%;
	padding: 40px;
}
main section#cross-talk div.more div.list-cross-talk div.row p.label-number,
main section#cross-talk div.more div.list-cross-talk div.row p.image {
	margin-bottom: 20px;
}
main section#cross-talk div.more div.list-cross-talk div.row p.label-number {
	position: relative;
	width: auto;
	left: auto;
	top: auto;
}
main section#cross-talk div.more div.list-cross-talk div.row p.image {
	width: auto;
}
main section#cross-talk div.more div.list-cross-talk div.row div.text {
	width: auto;
	padding-top: 0px;
}
main section#cross-talk div.more div.list-cross-talk div.row div.text h4 {
	font-size: 1.375rem;
	line-height: 2.375rem;
}
main section#cross-talk div.more div.list-cross-talk div.row div.text h4 br.more {
	display: none;
}
main section#cross-talk div.more div.list-cross-talk div.row p.more {
	display: none;
}
body.cross-talk-01 main section#cross-talk div.body div.block-02 div.text {
	margin-top: -120px;
}
body.cross-talk-01 main section#cross-talk div.body div.block-03 div.text {
	margin-top: -240px;
}
body.cross-talk-01 main section#cross-talk div.body div.block-04 div.text {
	margin-top: -360px;
}
body.cross-talk-01 main section#cross-talk div.body div.block-05 div.text {
	margin-top: -240px;
}
body.cross-talk-01 main section#cross-talk div.body div:where(.block-06, .block-07) {
	align-items: center;
}
body.cross-talk-01 main section#cross-talk div.body div.block-07 div.text {
	margin-top: -360px;
}
body.cross-talk-02 main section#cross-talk div.body div:where(.block-03, .block-04, .block-05) {
	align-items: center;
}
body.cross-talk-02 main section#cross-talk div.body div.block-03 div.text {
	margin-top: -240px;
}
body.cross-talk-02 main section#cross-talk div.body div:where(.block-04, .block-06) div.text {
	margin-top: -120px;
}
body.cross-talk-02 main section#cross-talk div.body div.block-08 div.text {
	margin-top: -360px;
}
body.cross-talk-03 main section#cross-talk div.body div.block-02 div.text {
	margin-top: -480px;
}
body.cross-talk-03 main section#cross-talk div.body div:where(.block-03, .block-04, .block-05, .block-06, .block-07) {
	align-items: center;
}
body.cross-talk-03 main section#cross-talk div.body div.block-03 div.text {
	margin-top: -480px;
}
body.cross-talk-03 main section#cross-talk div.body div.block-05 div.text {
	margin-top: -600px;
}
body.cross-talk-03 main section#cross-talk div.body div.block-06 div.text {
	margin-top: -480px;
}
body.cross-talk-03 main section#cross-talk div.body div.block-07 div.text {
	margin-top: -720px;
}

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

main div.list-news div.row {
	text-align: left;
}
main div.list-news div.row:not(:last-child) {
	margin-bottom: 20px;
}
main div.list-news div.row a {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 40px 90px 40px 40px;
	background-color: #ffffff;
	border-radius: 25px;
}
main div.list-news div.row :where(p.created, h3),
main article.news header :where(p.created, h1) {
	font-weight: 500;
}
main div.list-news div.row p.created,
main article.news header p.created {
	font-family: "avenir", sans-serif;
}
main div.list-news div.row p.created {
	width: 140px;
}
main div.list-news div.row h3 {
	width: calc(100% - 140px);
	font-size: 1.125rem;
}
main div.list-news div.row span.arrow {
	position: absolute;
	right: 40px;
	top: calc(50% - 20px);
	color: #ffffff;
}
main div.list-news div.row span.arrow::before {
	background-color: #527fe5;
}
main article.news {
	margin-bottom: 80px;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 25px;
}
main article.news header {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 80px;
	padding-bottom: 40px;
}
main article.news header h1 {
	text-align: left;
	font-size: 1.875rem;
	line-height: 2.75rem;
	margin-bottom: 10px;
}

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

main section#faq p.description {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 80px;
}
main section#faq div.list div.row {
	padding: 40px;
	border-radius: 25px;
}
main section#faq div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#faq div.list div.row:nth-child(2n+1) {
	background-color: #ffffff;
}
main section#faq div.list div.row:nth-child(2n) {
	background-color: #dff3f3;
}
main section#faq div.list div.row :where(h2, p.body) {
	position: relative;
	padding-left: 40px;
}
main section#faq div.list div.row :where(h2, p.body)::before {
	position: absolute;
	left: 0px;
	top: 2px;
	font-family: "avenir", sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
}
main section#faq div.list div.row h2 {
	font-size: 1.375rem;
	font-weight: 600;
	color: #004da1;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
main section#faq div.list div.row:nth-child(2n+1) h2 {
	border-color: #ededed;
}
main section#faq div.list div.row:nth-child(2n) h2 {
	border-color: #ffffff;
}
main section#faq div.list div.row h2::before {
	content: "Q.";
}
main section#faq div.list div.row p.body {
	font-size: 1.125rem;
	font-weight: 500;
}
main section#faq div.list div.row p.body::before {
	color: #ef8200;
	content: "A.";
}

/* guideline
-------------------------------------------------------------------------------- */

main section#guideline article.guideline {
	position: relative;
	padding: 80px;
	background-color: #ffffff;
	border-radius: 75px;
}
main section#guideline article.guideline:not(:last-child) {
	margin-bottom: 80px;
}
main section#guideline article.guideline h2 {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 2.75rem;
	color: #004da1;
	margin-bottom: 80px;
}
main section#guideline article.guideline div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#guideline article.guideline div.list div.row:not(:last-child) {
	margin-bottom: 30px;
}
main section#guideline article.guideline div.list div.row p:where(.label, .body) {
	font-size: 1.125rem;
	border-bottom: 1px solid #d9d9d9;
	padding: 0px 0px 30px 20px;
}
main section#guideline article.guideline div.list div.row p.label {
	width: 160px;
	font-weight: 500;
	color: #004da1;
}
main section#guideline article.guideline div.list div.row p.body {
	width: calc(100% - 180px);
}

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

main section.form div:where(.header, .footer) {
	text-align: center;
}
main section.form div.header {
	margin-bottom: 120px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div:where(.form, .footer) {
	padding: 80px;
	background-color: #ffffff;
	border-radius: 75px;
}
main section.form div:not(.mw_wp_form_preview) div.form {
	margin-bottom: 80px;
}
main section.form div:where(.form, .footer) h2 {
	text-align: center;
	font-size: 1.375rem;
	font-weight: 500;
	color: #004da1;
}
main section.form div.form h2 {
	margin-bottom: 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 #d9d9d9;
	margin-bottom: 0px;
	padding: 30px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	border-top: 1px solid #d9d9d9;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 240px;
	height: 50px;
	font-weight: 500;
	color: #004da1;
}
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 div.body {
	width: calc(100% - 240px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -5px;
}
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:where(.component-name, .component-furigana, .component-school) div.body {
	justify-content: space-between;
}
main section.form div.form div:where(.component-name, .component-furigana, .component-school) div.body div.row {
	width: calc(50% - 5px);
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div.component div.body span.error,
main section.form div.form div.agreement span.error {
	font-size: 0.875rem;
	line-height: 25px;
	color: #ef8200;
}
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 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}
main section.form div:where(.mw_wp_form_preview, .mw_wp_form_complete) div.footer {
	display: none;
}
main section.form div.footer h2 {
	margin-bottom: 40px;
}
main section.form div.footer p.tel,
main section.form div.footer p.tel a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.footer p.tel {
	font-family: "avenir", sans-serif;
	font-weight: 800;
	margin-bottom: 20px;
}
main section.form div.footer p.tel a {
	color: #004da1;
}
main section.form div.footer p.tel a:hover {
	color: #527fe5;
}
main section.form div.footer p.tel span {
	display: block;
}
main section.form div.footer p.tel span.sub {
	font-size: 1.875rem;
	margin-right: 5px;
	transform: translateY(15px);
}
main section.form div.footer p.tel span.main {
	font-size: 3rem;
	line-height: 3rem;
}

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

main section#privacy-policy div.list {
	padding: 0px 80px;
}
main section#privacy-policy div.list div.row {
	padding-left: 20px;
}
main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#privacy-policy div.list div.row h2 {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#privacy-policy div.list div.row h2::before {
	position: absolute;
	width: 14px;
	height: 14px;
	left: -20px;
	top: 10px;
	background-color: #000000;
	border-radius: 50%;
	content: "";
}
main section#privacy-policy div.list div.row :where(p.description, ul):not(:last-child) {
	margin-bottom: 10px;
}
main section#privacy-policy div.list div.row p.tel-fax {
	display: flex;
	flex-wrap: wrap;
}
main section#privacy-policy div.list div.row p.tel-fax span {
	display: block;
}
main section#privacy-policy div.list div.row p.tel-fax span:not(:last-child) {
	margin-right: 40px;
}



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

body:has(main div.more) footer#footer div.intern-entry {
	background-color: #dff3f3;
}
footer#footer div.intern-entry div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	border-radius: 75px 75px 0px 0px;
}
footer#footer div.intern-entry div.list div.row {
	width: calc(50% - 2.5px);
}
footer#footer div.intern-entry div.list div.row a {
	display: block;
	position: relative;
}
footer#footer div.intern-entry div.list div.row p.image {
	position: relative;
	height: 345px;
}
footer#footer div.intern-entry div.list div.row p.image-dark::before {
	opacity: 0.375;
}
footer#footer div.intern-entry div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
footer#footer div.intern-entry div.list div.row div.text {
	position: absolute;
	width: calc(100% - 160px);
	height: 100px;
	left: 80px;
	top: calc(50% - 50px);
	z-index: 1;
	color: #ffffff;
	padding-top: 15px;
}
footer#footer div.intern-entry div.list div.row div.text::before {
	position: absolute;
	width: calc(100% - 300px);
	right: 100px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #ffffff;
	content: "";
}
footer#footer div.intern-entry div.list div.row div.text p.headline span {
	display: block;
}
footer#footer div.intern-entry div.list div.row div.text p.headline span.main {
	font-family: "avenir", sans-serif;
	font-size: 3rem;
	font-weight: 800;
	line-height: 3rem;
}
footer#footer div.intern-entry div.list div.row div.text p.headline span.sub {
	font-size: 1.125rem;
	font-weight: 500;
}
footer#footer div.intern-entry div.list div.row div.text span.arrow {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 0px;
	top: calc(50% - 30px);
	font-size: 1.125rem;
}
footer#footer div.wrapper {
	position: relative;
	padding: 80px 0px 40px 0px;
	background-color: #ffffff;
}
footer#footer div#trigger-footer {
	position: absolute;
	top: 130px;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	line-height: 1.25rem;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
div.footer footer#footer p#button-page-top {
	position: absolute;
	top: 20px;
	bottom: auto;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	width: 20px;
	height: 90px;
}
footer#footer p#button-page-top i.icon {
	display: block;
	text-align: center;
	transform: rotate(-90deg);
}
footer#footer p#button-page-top span {
	writing-mode: vertical-rl;
	white-space: pre;
	font-family: "avenir", sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	padding-top: 5px;
}
footer#footer :where(div.logo-navi-footer, div.misc) {
	display: flex;
	flex-wrap: wrap;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
footer#footer div.logo-navi-footer {
	margin-bottom: 60px;
}
footer#footer div.logo-navi-footer p.logo {
	width: 360px;
}
footer#footer div.logo-navi-footer p.logo a {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.logo-navi-footer p.logo img {
	width: calc(206px * 0.75);
	margin-right: 15px;
}
footer#footer div.logo-navi-footer p.logo span {
	display: block;
	font-family: "avenir", sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	transform: translateY(4px);
}
footer#footer div.logo-navi-footer nav#navi-footer {
	width: calc(100% - 360px);
}
footer#footer div.logo-navi-footer nav#navi-footer div.list {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row:not(:nth-last-child(2)) {
	margin-right: 60px;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row-small {
	display: none;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment:not(:where(:last-child, .segment-action)) {
	margin-bottom: 20px;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment-faq {
	display: none;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment p.headline {
	font-size: 1.125rem;
	font-weight: 500;
	color: #004da1;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment p.headline:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment p.headline a:hover {
	color: #527fe5;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment p.headline span.main {
	display: none;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment ul li {
	line-height: 1.25rem;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment ul li:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment ul li a {
	display: block;
	position: relative;
	padding: 5px 0px 5px 20px;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment ul li a::before {
	position: absolute;
	width: 5px;
	height: 0px;
	left: 5px;
	top: 15px;
	border-bottom: 2px solid #004da1;
	content: "";
	transition: 0.25s border-color ease;
}
footer#footer div.logo-navi-footer nav#navi-footer div.list div.row div.segment ul li a:hover::before {
	border-color: #527fe5;
}
footer#footer div.misc {
	justify-content: flex-end;
	align-items: center;
	position: relative;
}
footer#footer div.misc :where(div.sns, p.privacy-policy) {
	margin-right: 40px;
}
footer#footer div.misc p.button-corporate,
footer#footer p.copyright {
	font-family: "avenir", sans-serif;
}
footer#footer div.misc div.sns {
	order: 1;
}
footer#footer div.misc p.button-corporate {
	order: 2;
	font-weight: 500;
}
footer#footer div.misc p.button-corporate a {
	width: 240px;
	height: 50px;
	background-color: #527fe5;
	border-radius: 25px;
}
footer#footer div.misc p.button-corporate a:hover {
	background-color: #004da1;
}
footer#footer div.misc p.button-corporate i.icon-new-window {
	margin-left: 10px;
}
footer#footer div.misc p.privacy-policy {
	order: 0;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
footer#footer p.copyright {
	position: absolute;
	font-size: 0.75rem;
	line-height: 1.25rem;
	left: 0px;
	top: 15px;
}

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

body.home footer#footer div.wrapper {
	background-color: #dff3f3;
}
body.home footer#footer div.misc div.sns ul li a {
	background-color: #ffffff;
}
body.home footer#footer div.misc div.sns ul li a:hover {
	background-color: #d9d9d9;
}
