@charset "UTF-8";

#top-area {
	height: 100dvh;
}

#top-area>.inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#top-area>.inner>h1 {
	width: 100%;
	max-width: 1200px;
}

#top-area>.inner>h1 svg {
	width: 100%;
	height: auto;
}

#top-area>.inner>h1>div:nth-child(1),
#top-area>.inner>h1>div:nth-child(3) {
	width: 38%;
	padding: 0 1%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#top-area>.inner>h1 g {
	width: 100%;
}

#top-area>.inner>h1>div>:nth-child(1) {
	margin-bottom: 3%;
}

#top-area>.inner>h1>div:nth-child(2) {
	width: 24%;
}

#top-area>.inner>h1>div:nth-child(2),
#top-area>.inner>h1>div>span {
	overflow: hidden;
}

#top-area h1 svg {
	opacity: 0;
	transform: translateY(110%);
	transform-origin: center center;
}

.loaded .slideup {
	animation: slideUp 2.3s cubic-bezier(.25, 1, .5, 1) forwards;
}

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.loaded .slideup.p1 {
	animation-delay: 0.4s;
}

.loaded .slideup.p2 {
	animation-delay: 0.8s;
}

.loaded .slideup.p3 {
	animation-delay: 1.2s;
}

.loaded .slideup.p4 {
	animation-delay: 1.6s;
}

.loaded .slideup.p5 {
	animation-delay: 2s;
}

.glitch-img {
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#top-area h1.flexBlock {
	justify-content: center;
	align-items: center;
}

.top-text {
	font-size: 2.0rem;
	text-align: center;
	color: #FFFFFF;
	line-height: 2.3;
}

#second-area {
	padding: 0 15px 300px;
}

#second-area>.inner {
	max-width: 800px;
	width: 100%;
}

#capabilities-area {
	padding: 150px 15px;
}

.tab-area {
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 840px;
	margin: 0 auto 40px;
	position: relative;
}

.tab-area:before {
	content: '';
	display: block;
	position: absolute;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	height: 16px;
	bottom: 0;
}

.tab-area:has(.tab01.active):before {
	background: #00398D;
}

.tab-area:has(.tab02.active):before {
	background: #219CDE;
}

.tab-area-bottom.tab-area {
	align-items: flex-end;
	margin-bottom: 0;
	margin-top: 40px;
}

.tab-area-bottom.tab-area:before {
	bottom: auto;
	top: 0;
}

.tab-area>.tab {
	height: 90px;
	width: calc(50% - 8px);
	position: relative;
	cursor: pointer;
	border-radius: 20px 20px 0 0;
	transition: 0.3s ease-out;
	top: 16px;
}

.tab-area-bottom.tab-area>.tab {
	border-radius: 0 0 20px 20px;
	top: auto;
	bottom: 16px;
}

.tab-area>.tab.active {
	height: 130px;
	cursor: auto;
	top: 0;
}

.tab-area-bottom.tab-area>.tab.active {
	bottom: 0;
}

.tab-area-bottom.tab-area>.tab.active {
	padding-top: 16px;
}

.tab-area>.tab>span {
	position: relative;
	display: flex;
	min-height: 72px;
	margin: 23px 32px 0 32px;
	width: calc(100% -64px);
	height: calc(100% -32px);
	justify-content: space-between;
	align-items: center;
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.5;
	transition: 0.3s ease-out;
}

.tab-area>.tab.active>span {
	margin: 39px 32px 0 32px;
}

.tab-area-bottom.tab-area>.tab>span {
	margin: 0px 32px 23px 32px;
}

.tab-area-bottom.tab-area>.tab.active>span {
	margin: 8px 32px 7px 32px;
}

.tab-area>.tab>span:before,
.tab-area>.tab>span:after {
	content: '';
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	background-position: center center !important;
	background-size: contain !important;
}

.tab-area>.tab>span:after {
	min-height: 30px;
}

.tab-area>.tab::before {
	content: '';
	position: absolute;
	width: calc(100% - 32px);
	height: calc(100% - 16px);
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	border-radius: 10px 10px 0 0;
	background: #FFFFFF;
}

.tab-area-bottom.tab-area>.tab::before {
	border-radius: 0 0 10px 10px;
	top: 0;
	bottom: auto;
}

.tab-area>.tab01 {
	background: #00398D;
	color: #00398D;
}

.tab-area>.tab02 {
	background: #219CDE;
	color: #219CDE;
}

.tab-area>.tab01>span::before {
	background: url('../imgs/capabilities/tab01-icon.svg') no-repeat;
}

.tab-area>.tab01>span::after {
	background: url('../imgs/capabilities/tab01-arrow.svg') no-repeat;
}

.tab-area>.tab01.active>span::after {
	background: url('../imgs/capabilities/tab01-active.svg') no-repeat !important;
}

.tab-area>.tab02>span::before {
	background: url('../imgs/capabilities/tab02-icon.svg') no-repeat;
}

.tab-area>.tab02>span::after {
	background: url('../imgs/capabilities/tab02-arrow.svg') no-repeat;
}

.tab-area>.tab02.active>span::after {
	background: url('../imgs/capabilities/tab02-active.svg') no-repeat !important;
}

.tab-area-bottom.tab-area>.tab01>span::after {
	background: url('../imgs/capabilities/tab01-arrow_bottom.svg') no-repeat;
}

.tab-area-bottom.tab-area>.tab02>span::after {
	background: url('../imgs/capabilities/tab02-arrow_bottom.svg') no-repeat;
}

section h3 {
	max-width: 840px;
	width: 100%;
	margin: 0 auto 40px;
	background: #5B656C;
	text-align: center;
	font-size: 3.0rem;
	padding: 10px 0;
	line-height: 1.5;
	color: #FFFFFF;
}

section .tab-contents01 h3 {
	background: #00398D;
}

section .tab-contents02 h3 {
	background: #219CDE;
}


.tab-contents {
	width: 100%;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	color: #011540;
	padding-bottom: 10px;
}

section .tab-contents02 {
	display: none;
}

ul.honbun>li {
	position: relative;
	display: block;
	padding-left: 20px;
}

ul.honbun>li:before {
	position: absolute;
	display: block;
	content: '□';
	left: 0;
}

.tab-contents>h3 {
	margin-top: 80px;
}

.tab-contents>h3:nth-child(1) {
	margin-top: 0;
}

.tab-contents .img-list.flexBlock {
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}

.tab-contents .img-list.flexBlock>li {
	width: calc(33.33% - 16px);
	margin-right: 24px;
	font-size: 1.4rem;
	color: #3B4043;
	position: relative;
	display: block;
	margin-bottom: 20px;
	font-feature-settings: normal;
}

.tab-contents .img-list.flexBlock>li:nth-child(3n) {
	margin-right: 0;
}

.tab-contents .img-list.flexBlock>li img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 5px;
}

.scrollable-container {
	overflow-y: hidden;
	overflow-x: auto;
	white-space: nowrap;
}

.scrollable-container .icon_hint {
	top: calc(7% + 60);
	left: 50%;
	width: 90px;
	height: 61px;
	margin-left: -45px;
	display: none;
	animation: moveRightToLeft 1.5s linear infinite;
}

.scrollable-container .icon_hint>img {
	width: 100%;
	height: auto;
}

.table>h4,
.table>.flexBlock {
	min-width: 570px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.table>h4 {
	font-size: 1.8rem;
	background: #DCDEE3;
	color: #011540;
	padding: 10px 20px;
	margin-top: 40px;
}

.table>.flexBlock.header+h4 {
	margin-top: 0;
}

.table>.flexBlock {
	font-size: 1.6rem;
	color: #011540;
}

.table>.flexBlock.header {
	font-size: 1.8rem;
	color: #FFFFFF;
	z-index: 9;
	position: relative;
	width: 100%;
	transition: top 0.3s ease-out;
}

.scrollable-container.table.fixed>.flexBlock.header {
	position: fixed;
	width: calc(100% - 30px);
	max-width: 1080px;
}

.scrollable-container.table.fixed {
	padding-top: 56px;
}

@media screen and (max-width: 768px) {
	.scrollable-container.table.fixed {
		padding-top: 52px;
	}

	.scrollable-container.table.fixed>.flexBlock.header:before,
	.scrollable-container.table.fixed>.flexBlock.header:after {
		height: 52px;
		width: 15px;
		content: '';
		position: fixed;
		z-index: 10;
		background: #FFFFFF;
		display: block;
	}

	.scrollable-container.table.fixed>.flexBlock.header:before {
		left: 0;
	}

	.scrollable-container.table.fixed>.flexBlock.header:after {
		right: 0;
	}
}

.table>.flexBlock>div {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	border-bottom: 1px solid #99A6B5;
}

.table>.flexBlock.header>div {
	background: #707070;
	border-bottom: none;
}

.table>.flexBlock>div:nth-child(1) {
	width: 40%;
}

.table>.flexBlock>div:nth-child(2) {
	width: 24%;
}

.table>.flexBlock>div:nth-child(3) {
	width: 24%;
}

.table>.flexBlock>div:nth-child(4) {
	width: 10%;
	justify-content: center;
	text-align: center;
}

.last-block .honbun {
	text-align: center;
	color: #5B656C;
}

.last-block>h3 {
	margin-top: 80px;
	color: #5B656C;
	background: #EBEFF2;
	font-size: 2.4rem;
	margin-top: 40px;
	margin-bottom: 20px;
}

.last-block>h2 {
	color: #5B656C;
	font-size: 3.0rem;
	margin-bottom: 10px;
	text-align: center;
}

.capability-case-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	align-items: center;
	justify-content: center;
}

section .inner.last-block {
	max-width: 840px;
	border-radius: 20px;
	background: #5B656C;
	padding: 32px 32px 62px;
	margin-top: 80px;
}

section .inner.last-block:before {
	content: '';
	position: absolute;
	top: 16px;
	left: 16px;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	border-radius: 10px;
	background: #FFFFFF;
	z-index: 0;
}

@media screen and (min-width: 769px) {
	.tab-area>.tab:not(.active):hover {
		filter: brightness(120%);
		transform: translateY(8px);
	}

	.tab-area-bottom.tab-area>.tab:not(.active):hover {
		filter: brightness(120%);
		transform: translateY(-8px);
	}
}

@media screen and (max-width: 768px) {
	.last-block .honbun {
		text-align: left;
	}

	.capability-case-list {
		flex-direction: column;
		align-items: flex-start;
	}

	section .inner.last-block::before {
		top: 8px;
		left: 8px;
		width: calc(100% - 16px);
		height: calc(100% - 16px);
		border-radius: 10px;
	}

	.last-block>h2 {
		font-size: 2.4rem;
	}

	.last-block>h3 {
		font-size: 2.0rem;
	}

	section .inner.last-block {
		border-radius: 16px;
		padding: 20px 23px 40px 23px;
		margin-top: 50px;
	}

	#top-area {
		padding-top: 35px;
		height: auto;
	}

	#top-area>.inner {
		height: auto;
	}

	#top-area h1.flexBlock {
		flex-direction: column;
		margin-bottom: 70px;
	}

	#top-area>.inner>h1>div:nth-child(2) {
		width: 38%;
		margin-top: 35px;
	}

	#top-area>.inner>h1>div:nth-child(1),
	#top-area>.inner>h1>div:nth-child(3) {
		width: 70%;
		padding: 0;
	}

	#top-area>.inner>h1>div:nth-child(3) {
		margin-top: 35px;
	}

	.top-text {
		font-size: 1.6rem;
		text-align: left;
	}

	#second-area {
		padding: 0 15px 110px;
	}

	#capabilities-area {
		padding: 75px 15px;
	}

	.tab-area {
		width: calc(100% + 8px);
		margin-left: -4px;
		margin-right: -4px;
	}

	.tab-area>.tab {
		width: calc(50% - 3px);
		height: 116px;
		border-radius: 16px 16px 0 0;
		top: 8px;
	}

	.tab-area::before {
		height: 8px;
	}

	.tab-area>.tab.active {
		height: 140px;
	}

	.tab-area>.tab::before {
		width: calc(100% - 16px);
		height: calc(100% - 8px);
		border-radius: 8px 8px 0 0;
	}

	.tab-area>.tab>span {
		font-size: 2.0rem;
		line-height: 1.3;
		flex-direction: column;
		min-height: inherit;
		height: 112px;
		margin: 8px 8px 0 8px;
		justify-content: space-between;
	}

	.tab-area>.tab.active>span {
		margin: 15px 8px 0 8px;
	}

	.tab-area-bottom.tab-area>.tab.active {
		padding-top: 8px;
	}

	.tab-area-bottom.tab-area>.tab>span {
		margin: -8px 8px 8px 8px;
	}

	.tab-area-bottom.tab-area>.tab {
		bottom: 8px;
	}

	.tab-area-bottom.tab-area>.tab.active>span {
		margin: 0px 8px 8px 8px;
	}

	section h3 {
		font-size: 2.4rem;
	}

	.tab-contents>h3 {
		margin-top: 60px;
		margin-bottom: 30px;
	}

	.tab-contents .img-list.flexBlock {
		flex-direction: column;
	}

	.tab-contents .img-list.flexBlock>li {
		width: 100%;
		margin-right: 0;
		font-size: 1.2rem;
		margin-bottom: 23px;
		transition-delay: 0s !important;
	}

	.table>.flexBlock {
		font-size: 1.4rem;
	}

	.table>h4 {
		padding: 10px 12px;
		font-size: 1.6rem;
	}

	.scrollable-container.table.fixed>.flexBlock.header {
		padding-top: 60px;
		background: #FFFFFF;
	}

	.table>.flexBlock.header {
		font-size: 1.6rem;
	}

	.table>.flexBlock>div {
		padding: 10px 12px;
	}

	.table>.flexBlock>div:nth-child(1) {
		width: 36%;
	}

	.table>.flexBlock>div:nth-child(2) {
		width: 27%;
	}

	.table>.flexBlock>div:nth-child(3) {
		width: 27%;
	}

	.table>.flexBlock>div:nth-child(4) {
		width: 8%;
	}
}

@media screen and (max-width: 570px) {
	.scrollable-container .icon_hint {
		display: block;
	}
}