html {
	font-size: 62.5%;
	line-height: 1.6;
	text-size-adjust: 100%;
	color: #2e3c4d;
	height: 100%
}

body {
	font-size: 1.6rem;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "palt";
	letter-spacing: 0.05rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	line-break: strict
}

/*@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop,
	body {
		display: block;
		min-height: auto
	}
}*/

* {
	box-sizing: border-box
}

a {
	color: #2e3c4d;
	text-decoration: none;
	cursor: pointer
}

a:hover {
	transition: 0.2s;
	color: #94a0b0
}

p {
	margin: 0;
	padding: 0
}

b,
strong {
	font-weight: 600
}

ul {
	padding: 0;
	padding-inline-start: 0;
	margin-block-start: 0;
	margin-block-end: 0
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 24px 4vw;
	margin: auto;
	display: flex;
	justify-content: space-between;
	transition-duration: .25s;
	z-index: 1000
}

@media only screen and (max-width: 480px) {
	.header {
		padding: 32px
	}
}

.header-menu {
	display: flex;
	align-items: center
}

.header.fixed,
.header.active {
	position: fixed
}

@media only screen and (max-width: 480px) {
	.header.fixed,
	.header.active {
		padding: 20px 32px
	}
}

.header.fixed .header-menu .language a,
.header.active .header-menu .language a {
	font-weight: 300;
	color: #2e3c4d
}

.header.fixed:not(.active):after,
.header.active:not(.active):after {
	content: "";
	width: 100vw;
	height: 100%;
	/*background-color: #fafbfc;*/
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	animation: header-fixed 0.4s ease 1 both
}

@keyframes header-fixed {
	0% {
		transform: translateY(-100px)
	}
	100% {
		transform: translateY(0)
	}
}

.header.fixed .header-logo,
.header.active .header-logo {
	background: url(/img/logo.svg) no-repeat;
	width: auto;
	height: 32px;
	background-size: cover;
	z-index: 3
}

.header.fixed .header-logo img,
.header.active .header-logo img {
	animation: logo-change 0.1s linear 1 both
}

.header.fixed .menu .menu-icon,
.header.active .menu .menu-icon {
	background-color: #2e3c4d
}

.header.fixed .menu:before,
.header.fixed .menu:after,
.header.active .menu:before,
.header.active .menu:after {
	background-color: #2e3c4d
}

.header.fixed:after {
	content: "";
	width: 100vw;
	height: 100%;
	background-color: #fafbfc;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1
}

.header.fixed.fixed:after,
.header.fixed.active:after {
	animation: inherit;
	opacity: 0.95
}

.header.fixed .header-logo {
	background: url(/img/logo.svg) no-repeat;
	width: auto;
	height: 32px;
	background-size: cover;
	z-index: 3
}

.header.fixed .header-logo img {
	animation: logo-change 0.1s linear 1 both
}

.header.fixed .menu .menu-icon {
	background-color: #2e3c4d
}

.header.fixed .menu:before,
.header.fixed .menu:after {
	background-color: #2e3c4d
}

.header.colored .header-logo {
	background: url(/img/logo.svg) no-repeat;
	width: auto;
	height: 32px;
	background-size: cover;
	z-index: 3
}

.header.colored .header-logo img {
	opacity: 0
}

.header.colored .menu .menu-icon {
	background-color: #2e3c4d
}

.header.colored .menu:before,
.header.colored .menu:after {
	background-color: #2e3c4d
}

.header-sublinks {
	display: flex;
	justify-content: center;
	margin-top: 64px
}

@media only screen and (max-width: 960px) {
	.header-sublinks {
		flex-wrap: wrap;
		justify-content: left;
		margin-top: 16px
	}
}

.header-sublink {
	padding: 0 24px
}

@media only screen and (max-width: 960px) {
	.header-sublink {
		padding: 32px 0 0;
		text-align: left;
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%
	}
	.header-sublink:nth-child(2n) {
		margin-right: 0
	}
}

.header-nav {
	z-index: 2;
	margin-left: auto
}

@media only screen and (max-width: 960px) {
	.header-nav {
		display: block
	}
}

.header-logo {
	z-index: 2
}

.header-logo h1,
.header-logo p {
	margin: 0;
	padding: 0;
	line-height: 0
}

@media only screen and (max-width: 960px) {
	.header {
		width: 100%
	}
}

@keyframes logo-change {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.global-nav-list {
	display: flex;
	list-style-type: none;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 96px 4vw 80px;
	list-style-type: none;
	background-color: #fff;
	width: 100%;
	z-index: -1;
	box-shadow: 16px 4px 16px rgba(46, 60, 77, 0.2)
}

.global-nav-list.active {
	display: block
}

.global-nav-list.viewsub {
	width: calc(100vw - 48px)
}

.global-nav-list.viewsub .global-nav-item {
	width: 260px
}

@media only screen and (max-width: 960px) {
	.global-nav-list {
		padding: 96px 6vw 80px
	}
	.global-nav-list-list.active {
		box-shadow: initial
	}
}

@media only screen and (max-width: 480px) {
	.global-nav-list {
		padding: 120px 8vw 80px
	}
}

.global-nav-item {
	margin: 0;
	padding: 0
}

.global-nav-item a {
	display: block;
	padding: 16px
}

@media only screen and (max-width: 960px) {
	.global-nav-item .disabled {
		pointer-events: none
	}
}

.sub-nav {
	display: none;
	margin: 0;
	padding: 32px 0;
	list-style-type: none
}

.sub-nav-mainlink {
	display: flex;
	flex-direction: column;
	padding: 24px 4px;
	font-size: 2rem
}

.sub-nav-mainlink-caption {
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin: 0 0 0 24px;
	color: #fff
}

.sub-nav-mainlink-caption:hover {
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: 1px solid #fff;
	transition-duration: .25s;
	cursor: pointer
}

.sub-nav-mainlink-caption.active {
	color: #94a0b0
}

@media only screen and (max-width: 960px) {
	.sub-nav-mainlink-caption {
		font-size: 1.4rem;
		margin: 0;
		color: #94a0b0
	}
}

.sub-nav-link {
	font-size: 1.8rem;
	margin-top: 24px;
	display: block
}

.sub-nav.hover {
	position: absolute;
	top: 0;
	left: 262px;
	padding: 72px 64px;
	display: flex;
	flex-wrap: wrap;
	width: calc(100vw - 262px);
	height: 100%;
	background-color: #fafbfc;
	box-sizing: border-box;
	box-shadow: 16px 4px 16px rgba(46, 60, 77, 0.2)
}

@media only screen and (max-width: 960px) {
	.sub-nav.hover {
		position: relative;
		display: none
	}
	.sub-nav.active {
		display: flex;
		position: relative;
		top: initial;
		left: initial;
		padding: 16px;
		width: 100%;
		box-shadow: initial;
		background-color: transparent;
		flex-direction: column
	}
}

.menu {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

@media only screen and (max-width: 960px) {
	.menu {
		display: flex
	}
}

.menu-icon {
	width: 24px;
	height: 1px;
	background-color: #fff;
	transition-duration: .25s
}

.menu:before,
.menu:after {
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	background-color: #fff;
	transition-duration: .25s
}

.menu:before {
	margin-top: 3px
}

.menu:after {
	margin-bottom: 3px
}

.menu.active .menu-icon {
	opacity: 0
}

.menu.active:before {
	margin-top: 0;
	transform: rotate(45deg) translate(8px, 8px)
}

.menu.active:after {
	margin-bottom: 0;
	transform: rotate(-45deg) translate(8px, -8px)
}

.footer {
	position: relative;
	background-color: #fafbfc;
	/*border-top: 1px solid rgba(207, 215, 230, 0.4)*/
}

/*.footer.en {
	letter-spacing: .06em;
	line-height: 1.4
}*/

.footer-contact {
	background: rgba(207, 215, 230, 0.1);
	width: 100%;
	padding: 4vw;
	text-align: center;
}

.footer-contact-phone {
	font-size: 2em;
}

.footer-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 40px 4vw 24px
}

@media only screen and (max-width: 960px) {
	.footer-inner {
		padding: 40px 6vw 16px
	}
	.footer-inner .grid {
		flex-direction: column
	}
	.footer-inner .grid .left {
		order: 2;
		margin: auto;
		text-align: center
	}
}

@media only screen and (max-width: 480px) {
	.footer-inner {
		padding: 40px 8vw 16px
	}
}

.footer-column {
	display: flex;
	margin-bottom: 8px
}

@media only screen and (max-width: 960px) {
	.footer-column {
		display: block;
		margin-bottom: 16px
	}
}

.footer-column-logo {
	width: 33%;
	margin-right: 8px
}

@media only screen and (max-width: 960px) {
	.footer-column-logo {
		width: 100%;
		margin-bottom: 24px
	}
}

.footer-column-link {
	width: 100%;
	margin-right: 8px
}

@media only screen and (max-width: 960px) {
	.footer-column-link {
		width: 100%;
		font-size: 1.4rem
	}
}

.footer-column-linkset {
	width: 67%;
	display: flex
}

@media only screen and (max-width: 960px) {
	.footer-column-linkset {
		width: 100%
	}
}

.footer-column-linkset01 {
	width: 33%
}

@media only screen and (max-width: 960px) {
	.footer-column-linkset01 {
		width: 48%;
		margin-right: 4%;
		display: block
	}
}

.footer-column-linkset02 {
	width: 67%;
	display: flex
}

@media only screen and (max-width: 960px) {
	.footer-column-linkset02 {
		width: 48%;
		display: block
	}
}

.footer-logo p {
	color: #94a0b0;
	margin: 8px 0;
	font-size: 1.2rem;
	letter-spacing: 0.2rem
}

.footer-link {
	padding: 0;
	list-style-type: none
}

.footer-link-item {
	margin: 0;
	padding: 0 20% 0 0;
	font-size: 1.4rem
}

.footer-link-item.set02 {
	padding: 0
}

.footer-link-item a {
	display: block;
	padding: 0 0 8px 0
}

@media only screen and (max-width: 960px) {
	.footer-link-item a {
		font-size: 1.2rem
	}
}

.footer-link-title {
	color: #94a0b0;
	margin-bottom: 8px
}

.footer-link-title a {
	color: #94a0b0
}

@media only screen and (max-width: 960px) {
	.footer-link-title {
		position: relative;
		display: flex;
		width: 100%;
		align-items: center;
		margin-bottom: 8px
	}
	.footer-link-title a {
		pointer-events: none;
		padding: 0 0 8px 0
	}
}

.footer-service {
	display: flex;
	align-items: center;
	letter-spacing: 0.1rem
}

.footer-service a {
	display: inline-block;
	padding: 16px 32px 16px 0;
	font-size: 1.2rem
}

.footer-service .copyright {
	font-size: 1rem;
	font-style: normal
}

@media only screen and (max-width: 960px) {
	.footer-service {
		flex-wrap: wrap
	}
	.footer-service a {
		width: 50%;
		padding: 8px 0;
		text-align: left
	}
	.footer-service .copyright {
		width: 100%
	}
}

.button {
	display: inline-block;
	padding: 32px 32px;
	transition-duration: .25s;
	outline: 0;
	border: 0;
	text-decoration: none;
	letter-spacing: 0.1rem
}

.button:hover {
	cursor: pointer;
	opacity: 1;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none
}

.button-primary {
	background-color: #2e3c4d;
	color: #fff
}

.button-primary:hover {
	background-color: #2e3c4d;
	opacity: 1
}

.button.fill {
	width: 100%;
	text-align: center
}

.button.small {
	padding: 8px 8px;
	width: 80%;
	text-align: center
}

.button-white {
	background-color: #fff
}

.grid {
	display: flex
}

.grid.between {
	justify-content: space-between
}

.grid-col {
	flex: 1
}

.grid-col2 {
	flex: 2
}

.grid.wrap {
	flex-wrap: wrap
}

.grid .right {
	margin-left: auto
}

.grid .left {
	margin-right: auto
}

.grid-item.is-background {
	background-color: #fff
}

.grid-item-card {
	padding: 16px
}

.grid-item-card-title {
	font-size: 16px
}

.grid-item-card-lead {
	font-size: 12px;
	color: #94a0b0;
	margin-top: 8px
}

@media only screen and (max-width: 960px) {
	.grid.sp-column {
		flex-direction: column
	}
}

@media only screen and (max-width: 960px) {
	.grid.sp-column-reverse {
		flex-direction: column-reverse
	}
}

.grid-col1 {
	margin-bottom: 5%
}

.grid-col1 .grid-item a {
	display: flex
}

@media only screen and (max-width: 480px) {
	.grid-col1 .grid-item a {
		display: block
	}
}

.grid-col1 .grid-item .grid-item-img-hr {
	width: 50%;
	object-fit: cover;
	object-position: bottom center;
	height: 220px;
	vertical-align: middle
}

@media only screen and (max-width: 480px) {
	.grid-col1 .grid-item .grid-item-img-hr {
		width: 100%
	}
}

.grid-col1 .grid-item-card {
	width: 50%
}

@media only screen and (max-width: 480px) {
	.grid-col1 .grid-item-card {
		width: 100%
	}
}

.grid-col1 .grid-item-card {
	background: #fff;
	padding: 24px
}

@media only screen and (max-width: 960px) {
	.grid-col1 .grid-item-card {
		padding: 16px
	}
}

.grid-col1 .grid-item-card-title {
	font-size: 24px
}

@media only screen and (max-width: 480px) {
	.grid-col1 .grid-item-card-title {
		font-size: 16px
	}
}

.grid-col1 .grid-item-card-lead {
	font-size: 14px
}

@media only screen and (max-width: 480px) {
	.grid-col1 .grid-item-card-lead {
		font-size: 12px
	}
}

.grid-col3 {
	flex-wrap: wrap
}

.grid-col3 .grid-item {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3%
}

.grid-col3 .grid-item.contact a {
	margin: 0 auto
}

.grid-col3 .grid-item a {
	display: block;
	height: 100%
}

.grid-col3 .grid-item img {
	vertical-align: middle
}

.grid-col3 .grid-item:nth-child(3n) {
	margin-right: 0
}

.grid-col3 .grid-item-1line {
	margin-bottom: 0
}

.grid-col3 .grid-item-border {
	border: 1px solid rgba(207, 215, 230, 0.4);
	padding: 32px 32px;
	background: #fff
}

.grid-col3 .grid-item-space-large {
	padding: 48px 24px
}

@media only screen and (max-width: 960px) {
	.grid-col3 .grid-item-space-large {
		padding: 40px 8px
	}
}

.grid-col3 .grid-item-name {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	margin: 0 0 8px 0;
	margin-top: 8px
}

.grid-col3 .grid-item-name.en {
	letter-spacing: .06em;
	font-size: 1.6rem;
	line-height: 1.4
}

@media only screen and (max-width: 960px) {
	.grid-col3 .grid-item-name {
		font-size: 1.6rem
	}
}

.grid-col3 .grid-item-name-space-large {
	margin: 0 0 24px 0;
	font-size: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 64px
}

@media only screen and (max-width: 960px) {
	.grid-col3 .grid-item-name-space-large {
		height: auto
	}
}

.grid-col3 .grid-item-name-caption {
	color: #94a0b0;
	display: block;
	font-size: 14px;
	width: 100%;
	font-weight: normal
}

.grid-col3 .grid-item-icon {
	margin: 0 0 8px 0;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center
}

@media only screen and (max-width: 960px) {
	.grid-col3 .grid-item-icon {
		height: 80px
	}
}

.grid-col3 .grid-item-icon img {
	vertical-align: middle
}

.grid-col3 .grid-item-icon-logo {
	height: 36px
}

.grid-col3 .grid-item-icon-img {
	height: 64px
}

.grid-col3 .grid-item-icon-movie {
	position: absolute;
	bottom: 8px;
	right: 8px
}

.grid-col3 .grid-item-img-wrapper {
	position: relative;
	background-color: #111
}

.grid-col3 .grid-item-img {
	width: 100%;
	height: 22vw;
	max-height: 380px;
	object-fit: cover
}

@media only screen and (max-width: 960px) {
	.grid-col3 .grid-item-img {
		height: 40vw
	}
}

@media only screen and (max-width: 480px) {
	.grid-col3 .grid-item-img {
		height: 70vw
	}
}

.grid-col3 .grid-item-img-small {
	width: 100%;
	height: 220px;
	object-fit: cover
}

.grid-col3 .grid-item-img-movie {
	width: 100%;
	height: 160px;
	object-fit: cover
}

@media only screen and (max-width: 960px) {
	.grid-col3 .grid-item {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%
	}
	.grid-col3 .grid-item:nth-child(3n) {
		margin-right: 4%
	}
	.grid-col3 .grid-item:nth-child(2n) {
		margin-right: 0
	}
}

@media only screen and (max-width: 480px) {
	.grid-col3 .grid-item {
		width: 100%;
		margin-right: 0;
		margin-bottom: 4%
	}
	.grid-col3 .grid-item:nth-child(3n) {
		margin-right: 0
	}
	.grid-col3 .grid-item:nth-child(2n) {
		margin-right: 0
	}
}

.img-responsive {
	width: 100%
}

.column-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap
}

.column-list-item {
	margin-bottom: 4%
}

.column-list-item.oneitem {
	width: 100%;
	margin-bottom: 0;
	margin-right: 0
}

.column-list-item img {
	width: 100%;
	height: 22vw;
	max-height: 380px;
	object-fit: cover
}

.column-list-item img.oneitem {
	height: 26vw;
	max-height: 420px
}

@media only screen and (max-width: 960px) {
	.column-list-item img {
		height: 40vw
	}
	.column-list-item img.oneitem {
		height: 50vw
	}
}

@media only screen and (max-width: 480px) {
	.column-list-item img {
		height: 70vw
	}
	.column-list-item img.oneitem {
		height: 80vw
	}
}

.column-list-item a {
	display: block
}

.column-list-name {
	margin: 0 0 8px 0;
	padding: 0;
	letter-spacing: 0.1rem;
	font-weight: 600;
}

.column-list-name.en {
	font-size: 1.6rem;
	line-height: 1.4
}

@media only screen and (max-width: 960px) {
	.column-list-name {
		font-size: 1.6rem
	}
}

.column-list-link {
	text-decoration: underline;
	margin-top: 16px;
	font-size: 1.4rem
}

.column-list-title {
	width: 90%;
	margin-right: 10%
}

@media only screen and (max-width: 960px) {
	.column-list-title {
		width: 100%;
		margin-right: 0;
		margin-bottom: 32px
	}
}

.column-list-title-head {
	margin: 0 0 24px;
	font-size: 2.4rem;
	font-weight: 600
}

.column-list-title-head.en {
	letter-spacing: .06em
}

@media only screen and (max-width: 480px) {
	.column-list-title-head {
		margin: 0 0 16px
	}
}

.column-list-title-lead {
	font-size: 1.8rem;
	line-height: 2
}

.column-list-title-lead.en {
	letter-spacing: .06em;
	line-height: 1.6
}

@media only screen and (max-width: 480px) {
	.column-list-title-lead {
		font-size: 1.8rem
	}
}

@media only screen and (min-width: 1500px) {
	.column-list-title-lead {
		font-size: 1.8rem
	}
}

@media only screen and (max-width: 960px) {
	.column-list-item {
		padding: 0
	}
}

.column-list li {
	width: 48%;
	margin-right: 4%
}

@media only screen and (max-width: 480px) {
	.column-list li {
		width: 100%;
		margin-right: 0
	}
}

.column-list li:nth-child(2n+2) {
	margin-right: 0
}

.keyvisual {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 500px;
	height: 50vh;
	background-color: #fafbfc;
	background-image: url("/img/pagetop/index.jpg");
	background-size: cover
}

@media only screen and (max-width: 480px) {
	.keyvisual {
		align-items: flex-end
	}
}

.keyvisual-inner {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 5vw 4vw 3vw
}

.keyvisual-title {
	color: #fff;
	font-weight: 400;
	font-size: 4.8rem;
	text-align: left;
	line-height: 1.4;
	letter-spacing: 0.2rem;
	margin: 0 0 8px;
	text-shadow: 0 4px 16px rgba(24, 91, 115, 0.3)
}

.keyvisual-title.en {
	font-weight: 100;
	letter-spacing: .06em;
	line-height: 1.2
}

.keyvisual-lead {
	font-size: 1.6rem;
	font-family: "neue-haas-grotesk-display", "Koburina Gothic W6 JIS2004", "Yu Gothic", YuGothic, sans-serif;
	font-weight: 600;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	color: #fff;
	text-shadow: 0 4px 16px rgba(24, 91, 115, 0.3)
}

.keyvisual-lead.en {
	line-height: 2rem;
	font-size: 1.4rem
}

@media only screen and (max-width: 480px) {
	.keyvisual {
		min-height: 360px;
		height: 60vh
	}
	.keyvisual-inner {
		padding: 4vw 4vw 5vh 8vw
	}
	.keyvisual-title {
		font-size: 10vw;
		line-height: 1.4;
		margin: 0 0 4vw
	}
	.keyvisual-lead {
		font-size: 4vw;
		line-height: 7vw
	}
}

.about {
	background: #fff;
}

.about-inner {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 4vw;
	background: #fff;
}

@media only screen and (max-width: 960px) {
	.about-inner {
		padding: 6vw
	}
}

@media only screen and (max-width: 480px) {
	.about-inner {
		padding: 8vw
	}
}

.about-title {
	margin: 0 0 24px;
	font-size: 2.4rem;
	font-weight: 600
}

.about-lead {
	font-size: 1.8rem;
	line-height: 2;
}

.section {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 4vw
}

.section-inner {
	padding: 0
}

.section.heading {
	max-width: inherit;
	padding: 48px 32px;
	background: #fff
}

@media only screen and (max-width: 480px) {
	.section.heading {
		padding: 40px 32px
	}
}

@media only screen and (max-width: 960px) {
	.section {
		padding: 6vw
	}
}

@media only screen and (max-width: 480px) {
	.section {
		padding: 8vw
	}
}

.headtitle {
	font-size: 2.4rem;
	font-weight: 400;
	margin: 40px 0 16px
}

.headtitle.en {
	letter-spacing: .06em
}

@media only screen and (max-width: 480px) {
	.headtitle {
		font-size: 1.8rem
	}
}

.headtitle-small {
	font-size: 1.8rem;
	font-weight: 400;
	margin: 32px 0 16px
}

.headtitle-small.en {
	letter-spacing: .06em;
	line-height: 1.5
}

@media only screen and (max-width: 480px) {
	.headtitle-small {
		font-size: 1.6rem
	}
}

.headtitle-small-bold {
	font-size: 1.6rem;
	font-weight: 600;
}

.input {
	color: #2e3c4d;
	border: 1px solid rgba(207, 215, 230, 0.4);
	font-size: 1.8rem;
	padding: 16px;
	outline: none;
	transition-duration: .25s;
	-webkit-appearance: none;
	border-radius: 0
}

.input.fill {
	width: 100%
}

.input:focus {
	border-color: #2e3c4d
}

.required {
	background-color: #e60012;
	padding: 4px 8px;
	font-size: 1.4rem;
	color: #fff
}

.option {
	background-color: #f6f9fb;
	padding: 4px 8px;
	font-size: 1.4rem
}

.select {
	color: #2e3c4d;
	position: relative
}

.select select {
	color: #2e3c4d;
	border: none;
	border: 1px solid rgba(207, 215, 230, 0.4);
	background-color: #fff;
	border-radius: 0;
	font-size: 1.8rem;
	padding: 16px;
	outline: none;
	transition-duration: .25s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	letter-spacing: 0.06em
}

.select select:focus {
	border-color: #2e3c4d
}

.select:before {
	position: absolute;
	top: calc(50% - 8px);
	right: 16px;
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-left: 1px solid #2e3c4d;
	border-bottom: 1px solid #2e3c4d;
	transform: rotate(-45deg);
	margin-right: 4px
}

.select.fill select {
	width: 100%
}

.textarea {
	width: 100%;
	height: 240px;
	border: 1px solid rgba(207, 215, 230, 0.4);
	background-color: white;
	outline: none;
	font-size: 1.8rem;
	padding: 16px;
	transition-duration: .25s;
	-webkit-appearance: none;
	border-radius: 0;
	letter-spacing: 0.06em
}

.textarea:focus {
	border-color: #2e3c4d
}

.button {
	display: inline-block;
	padding: 32px 32px;
	transition-duration: .25s;
	outline: 0;
	border: 0;
	text-decoration: none;
	letter-spacing: 0.1rem
}

.button:hover {
	cursor: pointer;
	opacity: 1;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none
}

.button-primary {
	background-color: #2e3c4d;
	color: #fff
}

.button-primary:hover {
	background-color: #2e3c4d;
	opacity: 1
}

.button.fill {
	width: 100%;
	text-align: center
}

.button.small {
	padding: 8px 8px;
	width: 80%;
	text-align: center
}

.button-white {
	background-color: #fff
}

.link-icon {
	display: flex;
	align-items: center;
	vertical-align: middle;
	font-size: 1.4rem;
	letter-spacing: 0.2rem;
	padding: 16px 0;
	color: #414b62
}

.link-icon i {
	margin-left: 8px;
	transition-duration: .25s
}

.link-icon:hover i {
	transform: rotate(-45deg) translate(2px, 2px)
}

.link-icon:hover .icon-arrow-left {
	transform: rotate(135deg) translate(2px, 2px)
}

.icon-arrow,
.icon-arrow-right,
.icon-arrow-left {
	display: block;
	width: 12px;
	height: 12px;
	border: 1px solid transparent;
	border-right: 1px solid #2e3c4d;
	border-bottom: 1px solid #2e3c4d;
	transform: rotate(45deg) translate(-2px, -2px)
}

.icon-arrow-right {
	width: 8px;
	height: 8px;
	transform: rotate(-45deg) translate(-2px, -2px)
}

.icon-arrow-left {
	margin-right: 8px;
	width: 8px;
	height: 8px;
	transform: rotate(135deg) translate(-2px, -2px)
}

.icon-margin {
	margin-left: 8px
}

.icon-blank {
	width: 12px;
	margin-left: 4px
}

.p-large {
	padding: 32px 0
}

.mb-large {
	margin-bottom: 64px !important
}

.toggle-list {
	margin: 0 0 48px 0;
	padding: 0;
	list-style-type: none;
	background-color: #fff
}

.toggle-list.en {
	letter-spacing: .06em;
	line-height: 1.6
}

.toggle-list-section-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0 0 32px 0;
	color: #94a0b0
}

.toggle-list-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	cursor: pointer;
	font-size: 1.8rem;
	border-bottom: 8px solid #fafbfc
}

.toggle-list-title-name {
	display: block;
	font-size: 1.8rem;
	font-weight: 600
}

@media only screen and (max-width: 480px) {
	.toggle-list-title-name {
		font-size: 1.6rem;
		line-height: 2rem
	}
}

.toggle-list-title-job {
	display: block;
	font-size: 1.4rem;
	margin-top: 4px;
	font-weight: 400;
	font-family: "neue-haas-grotesk-display", "Koburina Gothic W3 JIS2004", "Yu Gothic", YuGothic, sans-serif
}

.toggle-list-title.active .toggle-list-arrow {
	transform: rotate(0deg)
}

.toggle-list-contents {
	display: none;
	padding: 16px 24px 24px;
	background-color: #fafbfc
}

@media only screen and (max-width: 480px) {
	.toggle-list-contents-text {
		font-size: 1.4rem;
		line-height: 3rem;
		text-align: justify
	}
}

.toggle-list-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	transform: rotate(-90deg);
	transition-duration: .25s
}

@media only screen and (max-width: 480px) {
	.ir-calendar {
		overflow: scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 32px;
		background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05)) right/20px 100%;
		background-repeat: no-repeat;
		background-attachment: scroll;
		height: 216px
	}
}

.ir-calendar-img {
	width: 100%;
	padding: 32px 0 32px
}

@media only screen and (max-width: 480px) {
	.ir-calendar-img {
		min-width: 800px;
		background: linear-gradient(to left, rgba(255, 255, 255, 0), #fafbfc 15px) 0 0/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fafbfc 15px) right/50px 100%;
		background-repeat: no-repeat;
		background-attachment: local
	}
}

@media only screen and (max-width: 480px) {
	.ir-governance-img-wrap {
		overflow: scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 32px;
		background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05)) right/20px 100%;
		background-repeat: no-repeat;
		background-attachment: scroll;
		height: 340px
	}
}

.ir-governance-img {
	width: 100%;
	padding: 0 0 32px
}

@media only screen and (max-width: 480px) {
	.ir-governance-img {
		min-width: 480px;
		background: linear-gradient(to left, rgba(255, 255, 255, 0), #fafbfc 15px) 0 0/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fafbfc 15px) right/50px 100%;
		background-repeat: no-repeat;
		background-attachment: local
	}
}

.ir-header {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 0 4vw
}

@media only screen and (max-width: 960px) {
	.ir-header {
		padding: 0 6vw
	}
}

@media only screen and (max-width: 480px) {
	.ir-header {
		padding: 0 8vw
	}
}

.ir-header-img {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 35vh;
	padding: 0;
	background-image: url("/img/pagetop/ir.jpg");
	background-size: cover;
	background-position: center
}

.ir-header-img-wrap {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 0 4vw
}

@media only screen and (max-width: 960px) {
	.ir-header-img-wrap {
		padding: 0 6vw
	}
}

@media only screen and (max-width: 480px) {
	.ir-header-img-wrap {
		padding: 0 8vw
	}
}

.ir-header-img-title {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 400;
	margin: 0;
	padding: 160px 0 24px
}

@media only screen and (max-width: 480px) {
	.ir-header-img {
		height: 25vh;
		min-height: 240px;
		align-items: flex-end
	}
}

@media only screen and (max-width: 960px) {
	.ir-header-img {
		background-position: 38% 0
	}
}

.ir-menu {
	list-style: none;
	letter-spacing: .06em;
	padding-right: 8%;
	margin-top: 8px
}

@media only screen and (max-width: 960px) {
	.ir-menu {
		padding-right: 0;
		border-top: 1px solid rgba(207, 215, 230, 0.4);
		margin-top: 80px;
		padding-top: 64px
	}
}

@media only screen and (max-width: 480px) {
	.ir-menu {
		padding-right: 0;
		font-size: 15px
	}
}

.ir-menu li {
	margin-bottom: 12px;
	font-weight: 600
}

@media only screen and (max-width: 960px) {
	.ir-menu li {
		margin-bottom: 16px
	}
}

.ir-menu-number {
	color: #8F9CB3;
	font-weight: 400;
	margin-right: 8px
}

.ir-menu-active {
	color: #8F9CB3
}

.ir-menu-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 100px
}

@media only screen and (max-width: 960px) {
	.ir-menu-sticky {
		position: relative;
		top: 0
	}
}

.ir-title {
	font-size: 3.2rem;
	font-weight: 400;
	margin: 0 0 40px
}

@media only screen and (max-width: 960px) {
	.ir-title {
		font-size: 2.4rem
	}
}

.ir-title-main {
	color: #94a0b0;
	font-size: 2.4rem;
	font-weight: 400;
	margin: 0;
	padding: 160px 0 0
}

@media only screen and (max-width: 960px) {
	.ir-title-main {
		font-size: 2rem
	}
}

.ir-title-sub {
	font-size: 2rem;
	font-weight: 600;
	margin: 48px 0 24px
}

@media only screen and (max-width: 960px) {
	.ir-title-sub {
		font-size: 1.8rem
	}
}

.ir-contents {
	padding-right: 8%
}

@media only screen and (max-width: 960px) {
	.ir-contents {
		padding-right: 0
	}
}

.ir-message {
	font-weight: 600;
	background-color: #F2F4F7;
	padding: 24px 0;
	margin-bottom: 48px
}

.ir-message ol {
	margin: 0 0 0 32px;
	padding: 0 24px
}

@media only screen and (max-width: 480px) {
	.ir-message ol {
		margin: 0 0 32px 0;
		padding: 0 24px 0 40px
	}
}

.ir-message li {
	font-size: 1.8rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	margin: 16px 0
}

@media only screen and (max-width: 480px) {
	.ir-message li {
		font-size: 1.6rem;
		line-height: 3rem
	}
}

.ir-message-sign {
	text-align: right;
	font-size: 1.6rem;
	line-height: 3rem;
	margin-bottom: 24px
}

.ir-message-sign-corp {
	text-align: right;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 8px
}

.ir-message-sign-small {
	font-size: 1.4rem;
	margin-right: 16px
}

.ir-message-sign-small-en {
	font-size: 1.2rem;
	margin-right: 8px
}

.ir-message-notice {
	font-size: 1.2rem;
	text-align: right
}

@media only screen and (max-width: 480px) {
	.ir-message-notice {
		text-align: left
	}
}

.ir-submenu {
	border-top: 1px solid rgba(207, 215, 230, 0.4);
	margin-top: 96px;
	padding-top: 40px;
	width: 66.6%
}

@media only screen and (max-width: 960px) {
	.ir-submenu {
		margin-top: 64px;
		width: 100%
	}
}

.ir-submenu-wrap {
	display: flex;
	justify-content: flex-end
}

.ir-submenu ul {
	list-style: none;
	width: 100%
}

.ir-submenu li {
	width: 33%;
	display: inline-flex;
	margin-bottom: 24px
}

@media only screen and (max-width: 960px) {
	.ir-submenu li {
		font-size: 1.4rem;
		width: 46%
	}
}

@media only screen and (max-width: 960px) {
	.ir-submenu li:nth-child(odd) {
		width: 48%;
		margin-right: 4%
	}
}

.ir-submenu-backcontents {
	margin-top: 96px
}

@media only screen and (max-width: 960px) {
	.ir-submenu-backcontents {
		margin-top: 64px
	}
}

.ir-analyst {
	font-size: 1.6rem;
	margin-bottom: 16px
}

.ir-analyst-list li {
	list-style: none;
	margin-bottom: 8px
}

.ir-blank {
	padding: 24px;
	background-color: #F2F4F7;
	font-size: 1.4rem;
	text-align: center
}

.ir-contact {
	margin-bottom: 24px
}

.ir-contact p {
	font-size: 1.6rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	text-align: justify;
	margin-bottom: 24px
}

.ir-contact ul {
	margin-bottom: 24px
}

.ir-contact-notice {
	text-align: justify;
	background-color: #F2F4F7;
	padding: 32px;
	margin-bottom: 24px
}

.ir-contact-notice-title {
	font-size: 1.6rem;
	font-weight: 600;
	margin: 0 0 16px
}

.ir-contact-notice ul {
	font-size: 1.4rem;
	line-height: 2rem;
	padding: 0 0 0 24px
}

@media only screen and (max-width: 480px) {
	.ir-contact-notice ul {
		padding: 0 0 0 16px
	}
}

.ir-contact-notice ul li {
	margin-bottom: 8px
}

.ir-contact-open {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px;
	margin-top: 48px;
	margin-bottom: 48px;
	background-color: #fff
}

.ir-contact-link {
	padding-left: 32px
}

@media only screen and (max-width: 480px) {
	.ir-contact-link {
		padding: 32px 0 0 0;
		display: block
	}
}

.irNavi {
	width: 100%;
	display: flex;
	margin-bottom: 30px
}

.irNavi a {
	width: 17%;
	border: 1px solid rgba(207, 215, 230, 0.4);
	font-size: 14px;
	border-right: none;
	padding: 16px 10px;
	text-align: center
}

.irNavi a:last-child {
	border-right: 1px solid rgba(207, 215, 230, 0.4)
}

.irNavi .irNavi_current {
	border-top: 2px solid #2e3c4d
}

@media only screen and (max-width: 960px) {
	.irNavi {
		flex-wrap: wrap
	}
	.irNavi a {
		width: 50%;
		border: 1px solid rgba(207, 215, 230, 0.4)
	}
	.irNavi a:nth-child(5),
	.irNavi a:nth-child(6) {
		border-bottom: 1px solid rgba(207, 215, 230, 0.4)
	}
	.irNavi a:nth-child(odd) {
		border-right: none
	}
}

.toggle-list {
	margin: 0 0 48px 0;
	padding: 0;
	list-style-type: none;
	background-color: #fff
}

.toggle-list.en {
	letter-spacing: .06em;
	line-height: 1.6
}

.toggle-list-section-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0 0 32px 0;
	color: #94a0b0
}

.toggle-list-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	cursor: pointer;
	font-size: 1.8rem;
	border-bottom: 8px solid #fafbfc
}

.toggle-list-title-name {
	display: block;
	font-size: 1.8rem;
	font-weight: 600
}

@media only screen and (max-width: 480px) {
	.toggle-list-title-name {
		font-size: 1.6rem;
		line-height: 2rem
	}
}

.toggle-list-title-job {
	display: block;
	font-size: 1.4rem;
	margin-top: 4px;
	font-weight: 400;
}

.toggle-list-title.active .toggle-list-arrow {
	transform: rotate(0deg)
}

.toggle-list-contents {
	display: none;
	padding: 16px 24px 24px;
	background-color: #fafbfc
}

@media only screen and (max-width: 480px) {
	.toggle-list-contents-text {
		font-size: 1.4rem;
		line-height: 3rem;
		text-align: justify
	}
}

.toggle-list-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	transform: rotate(-90deg);
	transition-duration: .25s
}

.table {
	margin: 0;
	padding: 0;
	display: flex;
	letter-spacing: 0.06rem
}

.table.en {
	letter-spacing: .06em;
	line-height: 1.6
}

.table-wrap {
	border-top: 1px solid rgba(207, 215, 230, 0.4);
	margin: 0 0 40px
}

.table.border {
	border-bottom: 1px solid rgba(207, 215, 230, 0.4)
}

.table.center {
	align-items: center
}

.table-dt {
	margin: 0;
	padding: 16px 16px 16px 0;
	width: 30%
}

.table-dd {
	margin: 0;
	padding: 16px 0;
	width: calc(100% - 30%)
}

@media only screen and (max-width: 960px) {
	.table {
		flex-direction: column
	}
	.table-dt {
		width: 100%;
		padding: 16px 16px 0 0;
		font-weight: 600
	}
	.table-dd {
		width: 100%;
		padding: 8px 0 16px
	}
}

.list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	letter-spacing: 0.15rem;
	border-top: 1px solid rgba(207, 215, 230, 0.4)
}

.list-item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(207, 215, 230, 0.4)
}

.list-item a {
	font-size: 1.8rem;
	font-weight: 400;
	padding: 20px 16px 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition-duration: .25s
}

.list-item a:hover {
	padding-right: 0
}

.list-disc {
	margin: 0;
	padding: 0 0 0 16px;
	list-style-type: disc
}

.list-disc li {
	margin-bottom: 4px
}

@media only screen and (max-width: 480px) {
	.list-disc li {
		text-align: justify
	}
}

.main {
	flex: 1;
	background-color: #fafbfc;
	padding-bottom: 64px
}

.contents-visual {
	width: 100%;
	height: 50vh;
	min-height: 500px;
	overflow: hidden
}

.contents-visual-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background-color: #fafbfc
}

@media only screen and (max-width: 960px) {
	.contents-visual-img.is-incubation {
		object-position: -160px center
	}
}

.contents-visual-bg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-color: #f2f4f7
}

@media only screen and (max-width: 960px) {
	.contents-visual {
		min-height: 400px;
		height: 30vh
	}
	.contents-visual-small {
		height: 70%
	}
}

.contents-header {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 50vh;
	padding: 140px 32px 60px;
	margin-bottom: 16px;
	background-color: #fafbfc
}

@media only screen and (max-width: 480px) {
	.contents-header {
		height: 40vh;
		min-height: 400px;
		align-items: flex-end;
		padding: 0 32px 32px
	}
}

.contents-header-small {
	height: 30vh;
	background-color: #fafbfc
}

.contents-header-team {
	background-image: url("/img/pagetop/team.jpg");
	background-size: cover;
	background-position: center
}

@media only screen and (max-width: 960px) {
	.contents-header-team {
		background-position: 35% 0
	}
}

.contents-header-approach {
	background-image: url("/img/pagetop/approach.jpg");
	background-size: cover;
	background-position: center
}

@media only screen and (max-width: 960px) {
	.contents-header-approach {
		background-position: left
	}
}

.contents-header-service {
	background-image: url("/img/pagetop/service.jpg");
	background-size: cover;
	background-position: 80% 0
}

@media only screen and (max-width: 960px) {
	.contents-header-service {
		background-position: 86% 0
	}
}

.contents-header-about {
	background-image: url("/img/pagetop/about.jpg");
	background-size: cover;
	background-position: center
}

.contents-header-jobs {
	background-image: url("/img/pagetop/jobs.jpg");
	background-size: cover;
	background-position: center
}

@media only screen and (max-width: 960px) {
	.contents-header-jobs {
		background-position: 65% 0
	}
}

@media only screen and (max-width: 480px) {
	.contents-header-jobs {
		background-position: 70% 0
	}
}

.contents-header-team-culture {
	background-image: url("/img/contentstop/team-culture.jpg");
	background-size: cover;
	background-position: center
}

@media only screen and (max-width: 960px) {
	.contents-header-team-culture {
		background-position: 65% 0
	}
}

@media only screen and (max-width: 480px) {
	.contents-header-team-culture {
		background-position: 70% 0
	}
}

.contents-small-header {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 400px;
	padding: 140px 32px 60px;
	margin-bottom: 16px;
	background-color: #fafbfc
}

.contents-small-header-ir {
	background-image: url("/img/pagetop/approach.jpg");
	background-size: cover;
	background-position: center
}

@media only screen and (max-width: 960px) {
	.contents-small-header-ir {
		background-position: left
	}
}

.contents-title {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 32px 24px;
	color: #fff;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.15rem
}

@media only screen and (max-width: 960px) {
	.contents-title {
		padding: 0
	}
}

.contents-title-small {
	color: #2e3c4d
}

.contents-title-width {
	max-width: 1000px
}

.contents-title.black {
	color: #2e3c4d
}

@media only screen and (max-width: 480px) {
	.contents-title.small {
		font-size: 2.4rem
	}
}

.contents-main {
	max-width: 1000px;
	margin: 0 auto
}

/*.contents-lead.en {
	letter-spacing: .06em
}

.contents-lead.en p {
	font-size: 1.8rem;
	line-height: 1.8;
	letter-spacing: .06em;
	text-align: left;
	margin-bottom: 48px
}

@media only screen and (max-width: 480px) {
	.contents-lead.en p {
		font-size: 1.6rem;
		margin-bottom: 32px
	}
}

.contents-lead.en ul li {
	font-size: 1.6rem;
	line-height: 1.6
}

@media only screen and (max-width: 480px) {
	.contents-lead.en ul li {
		text-align: left
	}
}*/

.contents-lead p {
	font-size: 1.8rem;
	line-height: 3.6rem;
	letter-spacing: 0.1rem;
	text-align: justify;
	margin-bottom: 48px
}

@media only screen and (max-width: 480px) {
	.contents-lead p {
		font-size: 1.6rem;
		line-height: 3rem;
		margin-bottom: 32px;
		letter-spacing: 0.05rem
	}
}

.contents-lead p .sp {
	display: inline
}

@media only screen and (max-width: 960px) {
	.contents-lead p .sp {
		display: block;
		margin-top: 2rem
	}
}

.contents-lead-title {
	font-size: 3.2rem;
	margin: 0 0 40px;
	font-weight: 400
}

.contents-lead-title span {
	display: block;
	margin: 8px 0;
	font-size: 1.4rem;
	color: #94a0b0
}

@media only screen and (max-width: 480px) {
	.contents-lead-title {
		font-size: 2.4rem;
		margin: 0 0 16px
	}
}

.contents-lead-title.en {
	letter-spacing: .06em;
	line-height: 1.5;
	font-weight: 100
}

.contents-lead-subtitle {
	font-size: 2.4rem;
	font-weight: 600;
	margin: 0 0 24px
}

@media only screen and (max-width: 480px) {
	.contents-lead-subtitle {
		font-size: 2.4rem;
		margin: 0 0 16px
	}
}

.contents-lead-subtitle.en {
	letter-spacing: .06em;
	line-height: 1.5;
	font-weight: 100
}

.contents-lead-caption {
	font-size: 1.6rem;
	line-height: 3rem;
	margin-bottom: 16px;
	letter-spacing: 0.1rem
}

.contents-lead-caption-bold {
	font-weight: 600;
}

@media only screen and (max-width: 480px) {
	.contents-lead-caption {
		font-size: 1.4rem;
		line-height: 2rem
	}
}

.contents-lead-caption.en {
	letter-spacing: .06em;
	line-height: 1.5
}

.contents-lead-name {
	font-weight: bold
}

.contents-lead img {
	width: 100%;
	margin-bottom: 24px
}

@media only screen and (max-width: 480px) {
	.contents-lead img {
		height: 240px;
		object-fit: cover
	}
}

.contents-lead ul {
	margin: 0 0 32px;
	padding-left: 24px
}

.contents-lead ul li {
	font-size: 1.6rem;
	line-height: 3rem;
	letter-spacing: 0.1rem
}

@media only screen and (max-width: 480px) {
	.contents-lead ul li {
		text-align: justify
	}
}

.contents-small {
	display: block;
	font-size: 1.6rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	margin-bottom: 24px
}

@media only screen and (max-width: 480px) {
	.contents-small {
		font-size: 1.4rem;
		line-height: 3rem
	}
}

/*.contents-info {
	margin-bottom: 40px;
	color: #94a0b0;
	font-size: 1.2rem;
	letter-spacing: 0.15rem
}*/

.contents-mission {
	font-size: 3.2rem;
	font-weight: 400;
	letter-spacing: 0.3rem;
	margin: 48px 0 16px
}

.back-contents {
	display: flex
}

.back-contents-wrap {
	display: flex;
	justify-content: center;
	margin: 80px 0 0;
}

.back-contents-icon {
	width: 16px;
	margin-right: 8px
}

.back-contents-text {
	font-size: 1.4rem
}

.next-contents {
	display: flex;
	align-items: center;
	background-color: #fff;
	margin-top: 80px;
	margin-bottom: 80px
}

.next-contents.lists {
	margin-bottom: 8px
}

.next-contents-img {
	width: 120px;
	height: 100%;
	object-fit: cover
}

.next-contents-lead {
	padding: 8px 24px
}

/*.next-contents-lead.en span {
	color: #94a0b0;
	font-size: 1.4rem;
	letter-spacing: .06em;
	line-height: 1
}

.next-contents-lead.en p {
	font-weight: 600
}

@media only screen and (max-width: 480px) {
	.next-contents-lead.en p {
		font-size: 1.4rem;
		line-height: 1.6rem
	}
}*/

@media only screen and (max-width: 480px) {
	.next-contents-lead {
		padding: 0 8px 0 16px
	}
}

.next-contents-lead span {
	color: #94a0b0;
	font-size: 1.4rem
}

.next-contents-lead p {
	font-weight: 600
}

@media only screen and (max-width: 480px) {
	.next-contents-lead p {
		font-size: 1.4rem;
		line-height: 2rem
	}
}

.small-view-title-category {
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1rem;
	text-align: center
}

.small-view-title {
	position: relative;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1rem;
	text-align: center;
	padding: 0 0 16px;
	margin: 0 0 16px
}

.small-view-title::after {
	width: 60px;
	content: "";
	display: block;
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border-radius: 4px;
	height: 4px;
	background: rgb(46, 60, 77)
}

.small-view-title.en {
	font-weight: 100
}

.small-view-title-wrap {
	margin-top: 96px
}

.policy-main {
	font-size: 1.8rem;
	line-height: 3.6rem;
	letter-spacing: 0.1rem;
	margin-bottom: 40px
}

@media only screen and (max-width: 480px) {
	.policy-main {
		font-size: 1.6rem;
		line-height: 3rem
	}
}

.policy-main.en {
	letter-spacing: .06em;
	line-height: 1.6
}

.policy-lead {
	font-size: 1.6rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	margin-bottom: 32px
}

@media only screen and (max-width: 480px) {
	.policy-lead {
		font-size: 1.4rem;
		line-height: 3rem
	}
}

.policy-lead.en {
	letter-spacing: .06em;
	line-height: 1.6
}

.policy-right {
	font-size: 1.6rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	text-align: right;
	padding-top: 24px
}

@media only screen and (max-width: 480px) {
	.policy-right {
		font-size: 1.4rem;
		line-height: 3rem
	}
}

.policy-right.en {
	font-size: 1.2rem;
	letter-spacing: .06em;
	line-height: 1.6
}

.external-service-title {
	margin-bottom: 24px
}

.external-service-lead {
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
	margin-bottom: 24px
}

.box {
	background-color: #2e3c4d;
	margin-bottom: 64px;
	padding: 16px;
	color: #fff
}

.card {
	display: block;
	padding: 32px 32px 32px 48px;
	background-color: #fff
}

@media only screen and (max-width: 480px) {
	.card {
		padding: 24px
	}
}

.card-title {
	font-size: 2.4rem;
	margin: 0 0 16px
}

@media only screen and (max-width: 480px) {
	.card-title {
		font-size: 1.8rem;
		margin: 0 0 8px
	}
}

.card-lead {
	font-size: 1.6rem;
	line-height: 3rem
}

@media only screen and (max-width: 480px) {
	.card-lead {
		font-size: 1.4rem
	}
}

.card+.card {
	margin-top: 24px
}

.card-flex {
	display: flex;
	align-items: center
}

.card-flex-inner {
	padding-right: 24px
}

@media only screen and (max-width: 480px) {
	.card-flex-inner {
		padding-right: 0
	}
}

@media only screen and (max-width: 480px) {
	.card-flex-link {
		display: none
	}
}

@media only screen and (max-width: 480px) {
	.second-navigation {
		overflow: hidden;
		width: auto;
		margin: 0 -32px 0;
		padding-left: 32px
	}
}

.second-navigation-list {
	font-size: 14px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap
}

@media only screen and (max-width: 480px) {
	.second-navigation-list {
		overflow: auto;
		white-space: nowrap;
		width: auto;
		flex-wrap: nowrap
	}
}

.second-navigation-item {
	list-style-type: none;
	margin-right: 8px;
	margin-bottom: 8px
}

@media only screen and (max-width: 480px) {
	.second-navigation-item {
		white-space: nowrap;
		padding-right: 8px
	}
}

.second-navigation-link {
	display: block;
	padding: 8px 32px 8px 8px;
	background-color: #fff;
	position: relative
}

.second-navigation-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%) rotate(90deg);
	opacity: 0.5
}

.movie-modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: -9999px;
	left: 0;
	z-index: 1001;
	opacity: 0;
	transition: opacity 0.1s ease-out
}

.movie-modal.js-show {
	top: 0;
	opacity: 1
}

.movie-modal-inner {
	width: 70%;
	max-width: 1600px;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1003
}

@media only screen and (max-width: 480px) {
	.movie-modal-inner {
		width: 100%
	}
}

.movie-modal-contents {
	width: 100%;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0px;
	position: relative
}

.movie-modal-contents iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.movie-modal-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1002;
	background-color: rgba(0, 0, 0, 0.7)
}

.tab {
	margin: 0 0 80px;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center
}

.tab-item {
	width: 50%;
	margin: 0;
	padding: 0;
	position: relative;
	transition-duration: .25s
}

.tab-item a {
	display: block;
	padding: 16px 8px;
	text-align: center;
	color: #94a0b0
}

.tab-item:after {
	position: absolute;
	bottom: -2px;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #2e3c4d;
	transform: scale(0);
	transition-duration: .25s
}

.tab-item:hover a,
.tab-item.active a {
	color: #2e3c4d;
	font-weight: 600
}

.tab-item:hover:after,
.tab-item.active:after {
	width: 100%;
	transform: scale(1)
}

.nextprev {
	margin: 32px 0;
	display: flex;
	align-items: center
}

.nextprev-prev {
	margin-right: auto
}

.nextprev-next {
	margin-left: auto
}

.news-info {
	margin-bottom: 24px;
	font-size: 1.4rem;
	color: #94a0b0
}

.news-contents {
	margin-bottom: 24px
}

.news-contents p {
	line-height: 2
}

.news-title {
	font-weight: 600;
}

.news-contents img {
	max-width: 100%;
	height: auto;
	margin: 24px auto
}

.news-contents a {
	text-decoration: underline
}

.news-contents table {
	width: 100%;
	margin: 24px 0;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1.4rem
}

.news-contents table th {
	padding: 8px
}

.news-contents table td {
	border: none;
	padding: 8px 8px 8px 0
}

.news-contents table tr {
	padding: 8px 0;
	border-top: solid 1px rgba(207, 215, 230, 0.4);
	border-bottom: none;
	border-left: none;
	border-right: none
}

.news-contents table tr:last-child {
	border-bottom: solid 1px rgba(207, 215, 230, 0.4)
}

@media only screen and (max-width: 960px) {
	.news-contents table th,
	.news-contents table td {
		padding: 0;
		border: none;
		width: 100%;
		display: block
	}
	.news-contents table tr {
		padding: 8px 0;
		display: block;
		border-top: solid 1px rgba(207, 215, 230, 0.4);
		border-bottom: none;
		border-left: none;
		border-right: none
	}
	.news-contents table tr:last-child {
		border-bottom: solid 1px rgba(207, 215, 230, 0.4)
	}
}

.service {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	flex-wrap: wrap
}

.service-item {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 2%
}

@media only screen and (max-width: 480px) {
	.service-item {
		width: 100%;
		margin-right: 0;
		margin-bottom: 4%
	}
}

.service-item:nth-child(2n) {
	margin-right: 0
}

.service-title {
	font-size: 2.4rem;
	letter-spacing: 0.15rem;
	margin: 40px 0 24px;
	font-weight: 400
}

.service-item-box {
	width: 100%;
	height: 20vh;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 64px 24px;
	border: 1px solid transparent;
	transition-duration: .25s
}

.service-item-box img {
	width: 220px
}

@media only screen and (max-width: 960px) {
	.service-item-box img {
		width: 180px
	}
}

.service-item-box:hover {
	border: 1px solid rgba(207, 215, 230, 0.4)
}

.our-service {
	position: relative
}

.our-service-wrap {
	position: absolute
}

.our-service-list {
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 4px;
	display: flex;
	justify-content: center
}

.our-service-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem
}

@media only screen and (max-width: 960px) {
	.our-service-item {
		margin: 0 0 8px 0
	}
}

.service-orca {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	margin: 0 auto;
	border: 1px solid rgba(207, 215, 230, 0.4);
	padding: 24px 32px
}

@media only screen and (max-width: 960px) {
	.service-orca {
		width: 100%
	}
}

.service-orca-img {
	width: 80px;
	height: auto;
	margin-right: 24px
}

.service-orca-text {
	font-size: 1.4rem
}

.brand-logo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 30%;
	height: auto
}

.brand-logo-field {
	position: relative;
	width: 100%;
	height: 25vw;
	background-color: #fff;
	margin-bottom: 8px
}

.brand-logo-text {
	letter-spacing: 0.15rem;
	margin: 0 16px
}

.brand-logo-text-wrap {
	text-align: center
}

.brand-logo-list {
	margin-bottom: 40px
}

@media only screen and (max-width: 960px) {
	.brand-logo {
		width: 40%
	}
	.brand-logo-field {
		height: 40vw
	}
	.brand-logo-text {
		font-size: 1.4rem;
		display: block;
		margin: 0 0 4px
	}
	.brand-logo-text-wrap {
		text-align: left
	}
}

.jobs-list {
	margin-bottom: 64px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

.jobs-list .list-item {
	width: 49%;
	border-bottom: none;
	background-color: #fff;
	padding: 0 8px 0 16px;
	margin-top: 24px
}

@media only screen and (max-width: 960px) {
	.jobs-list .list-item {
		width: 100%;
		margin-top: 16px
	}
}

.jobs-list-first-title {
	margin-top: 40px
}

.jobs-img {
	width: 100%;
	height: auto
}

.jobs-movie {
	width: 100%;
	padding-bottom: 56.25%;
	height: 0px;
	position: relative
}

.jobs-movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.jobs-team-name {
	font-size: 1.6rem;
	color: #94a0b0;
	margin: 0
}

@media only screen and (max-width: 960px) {
	.img-position-left {
		object-position: left
	}
}

@media only screen and (max-width: 960px) {
	.img-position-right {
		object-position: right
	}
}

@media only screen and (max-width: 960px) {
	.img-position-medical-dx {
		object-position: 80% 0%
	}
}

@media only screen and (max-width: 960px) {
	.img-position-jobs {
		object-position: 70% 0%
	}
}

@media only screen and (max-width: 960px) {
	.img-position-culture {
		object-position: 35% 0%
	}
}

@media only screen and (max-width: 960px) {
	.img-position-movie {
		object-position: 35% 0%
	}
}

.img-position-teamstory {
	object-position: left
}

@media only screen and (max-width: 960px) {
	.img-position-teamstory {
		object-position: 10% 0%
	}
}

@media only screen and (max-width: 960px) {
	.img-position-story {
		object-position: 65% 0%
	}
}

@media only screen and (max-width: 960px) {
	.img-position-40 {
		object-position: 40% 0%
	}
}

@media only screen and (max-width: 960px) {
	.img-position-60 {
		object-position: 60% 0%
	}
}

.word-break {
	word-break: break-all
}

.txt-bold {
	font-weight: 600
}

.txt-link {
	text-decoration: underline
}

.txt-center {
	text-align: center
}

.txt-right {
	text-align: right
}

.txt-small {
	font-size: 1.4rem
}

.txt-xsmall {
	font-size: 1.2rem
}

.txt-gray {
	color: #94a0b0
}

.txt-en-spacing {
	letter-spacing: 0.06em
}

.link-more {
	font-size: 1.4rem;
	color: #414b62
}

.brpc {
	display: none
}

@media only screen and (max-width: 960px) {
	.brpc {
		display: none
	}
}

@media only screen and (max-width: 480px) {
	.brsp {
		display: none
	}
	.brpc {
		display: block
	}
}

.br-span-text {
	display: inline-block
}

.lead {
	line-height: 2;
	letter-spacing: 0.1rem
}

.lead.en {
	text-align: left
}

.signature {
	display: flex;
	justify-content: flex-end;
}

.signature-title {
	font-size: 1.8rem;
	line-height: 40px;
	margin: 0 20px 0 0;
}

.signature-name {
	height: 40px;
}

.signature-name img {
	width: 151px;
	height: 40px;
	margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
	.signature-title {
		font-size: 1.6rem;
		line-height: 30px;
		margin: 0 10px 0 0;
	}
	.signature-name {
		height: 30px;
	}
	.signature-name img {
		width: 113px;
		height: 30px;
	}
}

.googlemap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
 
.googlemap iframe,
.googlemap object,
.googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*2021.2.21*/

.form-column {
	max-height: 360px;
	margin: 0 0 15px;
}

.label-input {
	width: 20%;
	line-height: 60px;
	display: inline-block;
}

.label-textarea {
	vertical-align: top;
	width: 20%;
	line-height: 360px;
	display: inline-block;
}

.form-column-input {
	display: inline-block;
	height: 60px;
	border-width: 1px;
	border-color: #CFD7E6;
	border-style: solid;
	width: 80%;
	padding: 0 28px;
}

.form-column-textarea {
	border-width: 1px;
	border-color: #CFD7E6;
	border-style: solid;
	width: 80%;
	height: 360px;
	padding: 28px;
	display: inline-block;
}

@media only screen and (max-width: 480px) {
	.form-column {
		max-height: inherit;
	}
	.label-input,
	.label-textarea,
	.form-column-input,
	.form-column-textarea {
		display: block;
		width: 100%;
	}
	.label-textarea {
		line-height: 60px;
	}
}

.button-group {
	padding-top: 48px;
}

.button-submit {
	border: none;
	background-color: #2E3C4D;
	height: 62px;
	width: 100%;
	margin: 0 auto 32px;
	text-align: center;
	color: #FFF;
	transition-duration: 0.25s;
	cursor: pointer;
}