@charset "utf-8";

/*-------------------------------
	共通
-------------------------------*/

.Index-header{
	width: 100%;
	margin-bottom: 4.6rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.Index-header__text{
	color: var(--blackcolor2);
	padding-left: 5rem;
	text-align: right;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Index-header{
		margin-bottom: 8.2rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.Index-header__text{
		margin-top: 4.5rem;
		padding-left: 0;
		text-align: left;
	}

}



/*-------------------------------
	メインビジュアル
-------------------------------*/

.Mainvisual{
	padding-top: var(--header-height);
	width: 100%;
	height: 100vh;
	padding-left: 5.2rem;
}
.Mainvisual__inner{
	width: 100%;
	height: 100%;
	padding-left: 11.4rem;
	position: relative;
	z-index: 4000;
}
.Mainvisual-image{
	width: 100%;
	height: 100%;
}
.Mainvisual-image__item{
	width: 100%;
	height: 100%;
	filter: drop-shadow(-1px -1px #fff) drop-shadow(1px 1px #fff) drop-shadow(-1px 1px #fff) drop-shadow(1px -1px #fff);
}
.Mainvisual-image__item img{
	width: 100%;
	height: 100%;
	border-top-left-radius: 100rem;
	border-bottom-left-radius: 100rem;
	object-fit: cover;
}
.Mainvisual__title{
	color: var(--maincolor);
	font-size: 7rem;
	padding-bottom: 3rem;
	font-weight: 700;
	line-height: calc(10.5 / 7);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 6000;
}
.Mainvisual__inner > .Mainvisual__pager{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	position: absolute;
	left: 0;
	top: 4.8rem;
	counter-reset: number 0;
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet{
	width: 1px;
	height: 6rem;
	margin-left: 0;
	margin-right: 0;
	border-radius: 0;
	background: #cbcbcb;
	opacity: 1;
	position: relative;
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet:not(:last-child){
	margin-bottom: .5rem;
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--blackcolor);
	transition: none;
	transform-origin: top;
	transform: scaleY(0);
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet-active.-first::before{
	animation: Mainvisual__pager_meter 2s linear forwards;
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet::after{
	transition: var(--transition);
	font-family: var(--en);
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero);
	display: block;
	line-height: .7;
	font-size: 1.2rem;
	white-space: nowrap;
	position: absolute;
	left: 0;
	top: 0;
	padding-left: .8rem;
	color: #cbcbcb;
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet-active::before{
	animation: Mainvisual__pager_meter 4s linear forwards;
}
@keyframes Mainvisual__pager_meter {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}
.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
	color: var(--blackcolor);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Mainvisual{
		height: 100svh;
		padding-left: 3.8rem;
	}
	.Mainvisual__inner{
		padding-left: 5.8rem;
	}
	.Mainvisual-image{
		width: 100%;
		height: 100%;
		padding-bottom: 21rem;
	}
	.Mainvisual-image__item img{
		border-top-left-radius: 100rem;
		border-bottom-left-radius: 100rem;
	}
	.Mainvisual__title{
		font-size: 10rem;
		padding-bottom: 0;
		line-height: calc(13 / 10);
	}
	.Mainvisual__inner > .Mainvisual__pager{
		top: 3rem;
	}
	.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet{
		width: 2px;
		height: 8rem;
	}
	.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet:not(:last-child){
		margin-bottom: 2rem;
	}
	.Mainvisual__inner > .Mainvisual__pager .swiper-pagination-bullet::after{
		font-size: 2.4rem;
		padding-left: 1.2rem;
	}

}



/*-------------------------------
	メッセージ
-------------------------------*/

.Message{
	width: 100%;
	padding-bottom: 0;
	position: relative;
	z-index: 5000;
	border-radius: 0;
}
.Message:first-child{
	padding-top: 12.5rem;
}
.Message__inner-wrap{
	padding-left: 2.8rem;
	padding-right: 2.8rem;
	padding-bottom: 12.6rem;
	margin-bottom: 2.4rem;
	position: relative;
}
.Message__inner-wrap::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background-image: url(../images/index/bg_message.jpg);
	background-image: image-set(url(../images/index/bg_message.jpg) 1x, url(../images/index/bg_message@2x.jpg) 2x);
	background-position: center bottom;
	background-size: 100%;
	background-repeat: no-repeat;
	opacity: 0;
}
.Message__title{
	transition: var(--transition);
	font-size: 3.8rem;
	margin-bottom: 4.5rem;
	font-weight: 700;
	line-height: calc(5.8 / 3.8);
	text-align: center;
	opacity: 0;
	transform: translateY(5rem);
}
.Message__text{
	transition: var(--transition);
	color: var(--blackcolor2);
	font-size: 1.8rem;
	line-height: calc(4.4 / 1.8);
	text-align: center;
	opacity: 0;
	transform: translateY(5rem);
}
.Message-obj{
	margin-bottom: -2.4rem;
}
.Message-obj__item-wrap{
	transition-timing-function: linear;
}
.Message-obj__item{
	font-family: var(--en);
	color: var(--maincolor);
	font-size: 20rem;
	margin-right: 4.5rem;
	padding-top: .3rem;
	line-height: .7;
	font-weight: 700;
	letter-spacing: 0;
	width: fit-content;
}

.Message.-on .Message__inner-wrap::before{
	opacity: 1;
	transition-duration: 2s;
}
.Message.-on .Message__title{
	opacity: 1;
	transform: translateY(0);
	transition-delay: .7s;
	transition-duration: 2s;
}
.Message.-on .Message__text{
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1s;
	transition-duration: 2s;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Message{
		overflow: hidden;
	}
	.Message:first-child{
		padding-top: 12.5rem;
	}
	.Message__inner-wrap{
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 14.5rem;
		margin-bottom: 0;
	}
	.Message__inner-wrap::before{
		width: 148rem;
		height: 54.8rem;
		left: 50%;
		transform: translate(-50%,7.6rem);
	}
	.Message__title{
		font-size: 5rem;
		margin-bottom: 4.5rem;
		line-height: calc(7.5 / 5);
	}
	.Message__text{
		font-size: 2.8rem;
		line-height: calc(6.8 / 2.8);
	}
	.Message-obj{
		margin-bottom: -.4rem;
	}
	.Message-obj__item{
		font-size: 24rem;
		margin-right: 4.5rem;
		padding-top: .2rem;
		line-height: .73;
	}

	.Message.-on .Message__inner-wrap::before{
		opacity: 1;
		transition-duration: 2s;
	}
	.Message.-on .Message__title{
		opacity: 1;
		transform: translateY(0);
		transition-delay: .7s;
		transition-duration: 2s;
	}
	.Message.-on .Message__text{
		opacity: 1;
		transform: translateY(0);
		transition-delay: 1s;
		transition-duration: 2s;
	}

}



/*-------------------------------
	TRMの情報資産管理ソリューション
-------------------------------*/

.Solution{
	background: var(--maincolor);
	width: 100%;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 12rem;
	border-bottom-right-radius: 12rem;
	position: relative;
}
.Solution::before,
.Solution::after{
    content: "";
    display: block;
    width: 12rem;
    height: 12rem;
    position: absolute;
}
.Solution::before{
	top: 0;
	left: 0;
	transform: translateY(-100%);
	background-image: url(../images/index/obj_message-before.svg);
}
.Solution::after{
	bottom: 0;
	left: 0;
	transform: translateY(100%);
	background-image: url(../images/index/obj_message-after.svg);
}
.Solution .C-Title__jp,
.Solution .C-Title__en,
.Solution .Index-header__text{
	color: #fff;
}
.Solution-block-wrap{
	width: 100%;
	border-radius: 1.6rem;
	margin-bottom: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	z-index: 5000;
	background: rgba(255,255,255,0.3);
}
.Solution-block{
	width: calc(100% / 3);
}
.Solution-block + .Solution-block{
	border-left: 1px solid #bcbcbc;
}
.Solution-block::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
}
.Solution-block a{
	width: 100%;
	height: 47rem;
	padding: 3.4rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	z-index: 5000;
}
.Solution-block a::before,
.Solution-block a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.Solution-block a::before{
	background: rgba(0,0,0,.5);
	z-index: 4000;
}
.Solution-block a::after{
	z-index: -1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.Solution-block__header{
	position: relative;
	z-index: 6000;
}
.Solution-block__title{
	transition: var(--transition);
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: calc(4 / 2.4);
	color: #fff;
}
.Solution-block__text{
	transition: var(--transition);
	line-height: calc(3 / 1.6);
	color: #fff;
}
.Solution-block__arrow{
	margin-left: auto;
	margin-right: 0;
	border: none;
}

.Solution-block.-documentmanagement::before{
	background-image: url(../images/index/bg_solution-documentmanagement-hover.jpg);
	background-image: image-set(url(../images/index/bg_solution-documentmanagement-hover.jpg) 1x, url(../images/index/bg_solution-documentmanagement-hover@2x.jpg) 2x);
}
.Solution-block.-documentmanagement a::after{
	background-image: url(../images/index/bg_solution-documentmanagement.jpg);
	background-image: image-set(url(../images/index/bg_solution-documentmanagement.jpg) 1x, url(../images/index/bg_solution-documentmanagement@2x.jpg) 2x);
}
.Solution-block.-dxsolution::before{
	background-image: url(../images/index/bg_solution-dxsolution-hover.jpg);
	background-image: image-set(url(../images/index/bg_solution-dxsolution-hover.jpg) 1x, url(../images/index/bg_solution-dxsolution-hover@2x.jpg) 2x);
}
.Solution-block.-dxsolution a::after{
	background-image: url(../images/index/bg_solution-dxsolution.jpg);
	background-image: image-set(url(../images/index/bg_solution-dxsolution.jpg) 1x, url(../images/index/bg_solution-dxsolution@2x.jpg) 2x);
}
.Solution-block.-processimprovement::before{
	background-image: url(../images/index/bg_solution-processimprovement-hover.jpg);
	background-image: image-set(url(../images/index/bg_solution-processimprovement-hover.jpg) 1x, url(../images/index/bg_solution-processimprovement-hover@2x.jpg) 2x);
}
.Solution-block.-processimprovement a::after{
	background-image: url(../images/index/bg_solution-processimprovement.jpg);
	background-image: image-set(url(../images/index/bg_solution-processimprovement.jpg) 1x, url(../images/index/bg_solution-processimprovement@2x.jpg) 2x);
}

.Solution-block:hover::before{
	opacity: 1;
}
.Solution-block-wrap:has(.Solution-block a:hover) .Solution-block a::after{
	opacity: 0;
}
/* 各ソリューションにマウスオーバーしたとき、それ以外のソリューショを指定 */
.Solution-block-wrap:has(.Solution-block a:hover) .Solution-block:not(:has(a:hover)) .Solution-block__title,
.Solution-block-wrap:has(.Solution-block a:hover) .Solution-block:not(:has(a:hover)) .Solution-block__text,
.Solution-block-wrap:has(.Solution-block a:hover) .Solution-block:not(:has(a:hover)) .Solution-block__arrow{
	opacity: .4;
}

.Solution__button{
	margin-left: auto;
	margin-right: 0;
}

@media screen and (min-width:1101px) , print{

	/* .Solution-block.-documentmanagement::before{
		background-image: url(../images/index/bg_solution-documentmanagement-hover.jpg);
		background-image: image-set(url(../images/index/bg_solution-documentmanagement-hover.jpg) 1x, url(../images/index/bg_solution-documentmanagement-hover@2x.jpg) 2x);
	}
	.Solution-block.-dxsolution::before{
		background-image: url(../images/index/bg_solution-dxsolution-hover.jpg);
		background-image: image-set(url(../images/index/bg_solution-dxsolution-hover.jpg) 1x, url(../images/index/bg_solution-dxsolution-hover@2x.jpg) 2x);
	}
	.Solution-block.-processimprovement::before{
		background-image: url(../images/index/bg_solution-processimprovement-hover.jpg);
		background-image: image-set(url(../images/index/bg_solution-processimprovement-hover.jpg) 1x, url(../images/index/bg_solution-processimprovement-hover@2x.jpg) 2x);
	} */
	/* .Solution-block:hover::before{
		opacity: 1;
	}
	.Solution-block-wrap:has(.Solution-block a:hover) .Solution-block a::after{
		opacity: 0;
	} */

}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	/* .Solution-block + .Solution-block{
		border-top: 1px solid rgba(255,255,255,0.3);
	} */
	.Solution-block-wrap{
		width: 100%;
		flex-direction: column;
	}
	.Solution-block{
		width: 100%;
	}
	.Solution-block a{
		height: auto;
	}
	.Solution-block__header{
		max-width: 55rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Solution-block-wrap{
		border-radius: 2.4rem;
		margin-bottom: 8.6rem;
		flex-direction: column;
	}
	.Solution-block{
		width: 100%;
	}
	.Solution-block + .Solution-block{
		border-top: 1px solid #bcbcbc;
		border-left: none;
	}
	.Solution-block a{
		height: auto;
		padding: 4rem 5rem 5rem;
	}
	.Solution-block__title{
		font-size: 3.6rem;
		margin-bottom: 2.8rem;
		line-height: calc(5.4 / 3.6);
	}
	.Solution-block__text{
		line-height: calc(4.8 / 2.6);
		margin-bottom: 3.5rem;
	}
	.Solution-block:hover::before{
		opacity: 0;
	}
	.Solution-block-wrap:has(.Solution-block a:hover) .Solution-block a::after{
		opacity: 1;
	}

	.Solution__button{
		margin-right: auto;
	}

}



/*-------------------------------
	TRMの4つの強み
-------------------------------*/

.Strengths{
	padding-bottom: 19.6rem;
	overflow: hidden;
}
.Strengths .Index-header{
	margin-bottom: 6.2rem;
}
.Strengths__body{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Strengths-list-wrap{
	width: 63rem;
}
.Strengths-list{
	width: 100%;
	margin-bottom: 6rem;
	counter-reset: number 0;
}
.Strengths-list__item{
	width: 100%;
}
.Strengths-list__item a::after{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    z-index: 6000;
    transform-origin: right;
    transition: transform .3s ease;
}
.Strengths-list__item a{
	width: 100%;
	padding-bottom: 2.8rem;
	border-bottom: 1px solid #cbcbcb;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Strengths-list__item:not(:first-child) a{
	padding-top: 2.8rem;
}
.Strengths-list__item-title{
	transition: var(--transition);
	width: calc(100% - 4rem);
	padding-right: 5rem;
	font-size: 2rem;
	line-height: 1;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Strengths-list__item-title::before{
	transition: var(--transition);
	font-family: var(--en);
	color: var(--blackcolor2);
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
}
.Strengths-list__item-title span{
	padding-left: 2.2rem;
	line-height: 1.35;
	display: block;
}
.Strengths-list__item .C-Arrow{
	width: 4rem;
	height: 4rem;
	border-radius: 1.2rem;
}
.Strengths-list__item .C-Arrow__item{
	width: 1.1rem;
	height: 1rem;
}

.Strengths-list__item.-current a::after{
	transform: scaleX(1);
    transform-origin: left;
}
.Strengths-list__item.-current .Strengths-list__item-title{
	color: var(--maincolor);
}
.Strengths-list__item.-current .Strengths-list__item-title::before{
	color: var(--maincolor);
}
.Strengths-list__item.-current .C-Arrow{
	background-color: var(--maincolor);
    border-color: var(--maincolor);
}
.Strengths-list__item.-current .C-Arrow__item:nth-of-type(1){
	animation: c_arrow_animation .6s forwards, c_arrow1_animation .6s forwards;
}
.Strengths-list__item.-current .C-Arrow__item:nth-of-type(2){
	animation: c_arrow_animation .6s forwards, c_arrow2_animation .6s forwards;
}

.Strengths-block-wrap{
	width: calc(100% - 63rem);
	padding-left: 9.2rem;
	aspect-ratio: 1 / 1;
	position: relative;
	z-index: 5000;
}
.Strengths-block-wrap__inner{
	width: calc(100% + 9.2rem);
	height: 100%;
	position: relative;
}
.Strengths-block{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	border-radius: 3.2rem;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Strengths-block.-current{
	opacity: 1;
	visibility: visible;
}
.Strengths-block__image{
	width: 100%;
	height: 100%;
}
.Strengths-block__image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.Strengths-number{
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 6000;
	transform: translateY(50%);
}
.Strengths-number__active-wrap{
	position: relative;
}
.Strengths-number__active{
	transition: opacity .5s var(--transition-easing);
	font-family: var(--en3);
	font-size: 15rem;
	line-height: .75;
	display: block;
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	white-space: nowrap;
}
.Strengths-number__active.-current{
	opacity: 1;
	width: auto;
	height: auto;
	position: relative;
}
.Strengths-number__all{
	font-size: 3rem;
	transform: translateY(-.3rem);
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Strengths-number__all::before{
	font-family: var(--en3);
	content: "/";
	line-height: 1;
	display: block;
}

/* .Strengths-block.-strengths1{
	border: 1px solid #cbcbcb;
} */
.Strengths1-image{
	width: 45.2rem;
	height: 42.4rem;
	position: relative;
}
.Strengths1-image-list{
	width: 100%;
	height: 100%;
	position: relative;
}
.Strengths1-image-list__item{
	width: 24.2rem;
	height: 24.2rem;
	border-radius: 50%;
	background: rgba(198,0,41,.07);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 4000;
}
.Strengths1-image-list__item:nth-of-type(1){
	padding-bottom: 4rem;
	left: 0;
	top: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.Strengths1-image-list__item:nth-of-type(2){
	padding-top: 3rem;
	left: 0;
	bottom: 0;
}
.Strengths1-image-list__item:nth-of-type(3){
	padding-top: 3rem;
	right: 0;
	bottom: 0;
}
.Strengths1-image-list__item-title{
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.Strengths1-image-list__item-text{
	font-size: 1.2rem;
	line-height: calc(1.8 / 1.2);
	text-align: center;
}
.Strengths1-image__center{
	background: var(--maincolor);
	width: 11.2rem;
	height: 11.2rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: calc(2.4 / 1.8);
	border-radius: 50%;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 24.2rem;
	transform: translate(-50%,-50%);
	z-index: 6000;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1380px) and (min-width: 769px){

	.Strengths-list-wrap{
		width: 50%;
	}
	.Strengths-block-wrap{
		width: 50%;
		padding-left: 5rem;
	}
	.Strengths-block-wrap__inner{
		width: 100%;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Strengths{
		padding-bottom: 19.6rem;
	}
	.Strengths .Index-header{
		margin-bottom: 6.2rem;
	}
	.Strengths__body{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.Strengths-list-wrap{
		width: 100%;
	}
	.Strengths-list{
		width: 100%;
		margin-bottom: 7.6rem;
		counter-reset: number 0;
	}
	.Strengths-list__item a{
		padding-bottom: 5rem;
		flex-wrap: wrap;
	}
	.Strengths-list__item:not(:first-child) a{
		padding-top: 5rem;
	}
	.Strengths-list__item a::after{
		display: none;
	}
	.Strengths-list__item-title{
		width: calc(100% - 5rem);
		padding-right: 0;
		font-size: 3.2rem;
	}
	.Strengths-list__item-title::before{
		font-size: 2.6rem;
	}
	.Strengths-list__item-title span{
		padding-left: 3.2rem;
		line-height: calc(4.8 / 3.2);
	}
	.Strengths-list__item .C-Arrow{
		width: 5rem;
		height: 5rem;
		border-radius: 1.6rem;
	}
	.Strengths-list__item .C-Arrow__item{
		width: 1.3rem;
		height: 1.2rem;
	}
	.Strengths-list__item::after{
		transform: scaleX(1);
		transform-origin: left;
	}
	.Strengths-list__item .Strengths-list__item-title{
		color: var(--maincolor);
	}
	.Strengths-list__item .Strengths-list__item-title::before{
		color: var(--maincolor);
	}
	.Strengths-list__item .C-Arrow{
		background-color: var(--maincolor);
		border-color: var(--maincolor);
	}
	.Strengths-list__item .C-Arrow__item:nth-of-type(1){
		animation: c_arrow_animation .6s forwards, c_arrow1_animation .6s forwards;
	}
	.Strengths-list__item .C-Arrow__item:nth-of-type(2){
		animation: c_arrow_animation .6s forwards, c_arrow2_animation .6s forwards;
	}

	.Strengths-block{
		width: 100%;
		margin-top: 5.6rem;
		border-radius: 3.2rem;
		position: static;
		opacity: 1;
		visibility: visible;
	}
	.Strengths-block__image{
		width: 100%;
		height: 40rem;
	}
	.Strengths-block__image img{
		aspect-ratio: auto;
	}

	.Strengths-number{
		display: none;
	}

	/* .Strengths-block.-strengths1{
		margin-top: 3.5rem;
		padding: 1.8rem;
	} */
	.Strengths1-image{
		width: 38.4rem;
		height: 36rem;
	}
	.Strengths1-image-list__item{
		width: 20.6rem;
		height: 20.6rem;
	}
	.Strengths1-image-list__item-title{
		margin-bottom: 1rem;
	}
	.Strengths1-image-list__item-text{
		font-size: 1.4rem;
		line-height: calc(2.4 / 1.4);
	}
	.Strengths1-image__center{
		width: 9.6rem;
		height: 9.6rem;
		padding-top: .5rem;
		top: 20rem;
	}

}



/*-------------------------------
	情報資産管理の導入事例
-------------------------------*/

.Case{
	background: #f2f2f2;
}
.Case .Index-header{
	margin-bottom: 7rem;
}
.Case-list-wrap{
	width: calc(100% + 5.6rem);
	padding-bottom: 7.6rem;
	margin-left: -2.8rem;
	overflow: hidden;
}
.Case-list-wrap__inner{
	overflow: visible;
}
.Case-list__item{
	width: 90rem;
	margin-left: 1rem;
	margin-right: 1rem;
}
.Case-list__item a{
	width: 100%;
	min-height: 30rem;
	border-radius: 1.6rem;
	border: 1px solid #cbcbcb;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.Case-list__item-image{
	width: 45rem;
	overflow: hidden;
}
.Case-list__item-image img{
	transition: var(--transition);
	width: 100%;
	height: 30rem;
	object-fit: cover;
}
.Case-list__item-body{
	width: calc(100% - 45rem);
	padding: 4rem;
	background: #fff;
}
.Case-list__item-body-inner{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}
.Case-list__item-data{
	width: 100%;
	margin-bottom: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Case-list__item-data-category{
	transition: var(--transition);
	font-size: 1.2rem;
	height: 2.8rem;
	padding: .2rem 1.3rem;
	border-radius: .8rem;
	border: 1px solid #cbcbcb;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Case-list__item-data-genre{
	transition: var(--transition);
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 1.6rem;
	display: block;
}
.Case-list__item-title{
	transition: var(--transition);
	font-size: 2.4rem;
	margin-bottom: 1rem;
	line-height: calc(3.6 / 2.4);
	font-weight: 700;
}
.Case-list__item-title br{
	display: none;
}
.Case-list__item-title span{
	line-height: calc(3.6 / 2.4);
}
.Case-list__item-name{
	transition: var(--transition);
}
.Case-list__arrow{
	position: absolute;
	right: 0;
	bottom: 0;
}

.Case-list__item a:hover .Case-list__item-image img{
	transform: scale(1.1);
}
.Case-list__item a:hover .Case-list__item-data-category{
	border-color: var(--maincolor);
	color: var(--maincolor);
}
.Case-list__item a:hover .Case-list__item-data-genre{
	color: var(--maincolor);
}
.Case-list__item a:hover .Case-list__item-title{
	color: var(--maincolor);
}
.Case-list__item a:hover .Case-list__item-name{
	color: var(--maincolor);
}

.Case .No-data{
	text-align: center;
}

.Case__bottom{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Case-controller{
	width: calc(100% - 28rem);
	max-width: 64.4rem;
	padding-right: 5rem;
}
.Case-controller-list{
	width: 13.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Case-controller-list__item{
	transition: var(--transition);
	width: 6rem;
	height: 6rem;
	border: 1px solid #cbcbcb;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Case-controller-list__item::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.4rem;
	background-image: url(../images/common/icon_arrow-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Case-controller-list__item.-prev{
	transform: scale(-1,1);
}
.Case-controller-list__item:hover{
	background: var(--blackcolor);
	border-color: var(--blackcolor);
}
.Case-controller-list__item:hover::before{
	background-image: url(../images/common/icon_arrow-white.svg);
}
.Case-controller{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Case-controller__bar-wrap{
	width: calc(100% - (13.8rem + 6.6rem));
	padding-left: 4.5rem;
	padding-right: 4.5rem;
	line-height: 1;
	position: relative;
}
.Case-controller__bar-wrap::before,
.Case-controller__bar-wrap::after{
	font-family: var(--en2);
	font-size: 1.4rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.Case-controller__bar-wrap::before{
	content: attr(data-active);
	left: 0;
}
.Case-controller__bar-wrap::after{
	content: attr(data-all);
	right: 0;
}
.Case-controller__bar{
	width: 100%;
	height: 2px;
	position: relative;
	background: #c2c2c2;
}
.Case-controller__bar-inner{
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #808080;
	transform: scaleX(0);
	transform-origin: left center;
	transition-timing-function: linear;
}
.Case-controller__bar .swiper-pagination-bullet{
	width: 100%;
	height: 2px;
	border-radius: 0;
	background: #c2c2c2;
	margin-left: 0 !important;
	margin-right: 0 !important;
	opacity: 1 !important;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Case-list-wrap{
		width: calc(100% + 4rem);
		margin-left: -2rem;
	}
	.Case-list__item{
		width: calc(100% - 10rem);
		max-width: 70rem;
	}
	.Case-list__item-image{
		width: 30rem;
	}
	.Case-list__item-body{
		width: calc(100% - 30rem);
		padding: 3rem;
	}
	.Case-controller__bar-wrap{
		width: calc(100% - (13.8rem + 5rem));
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Case__bottom{
		flex-direction: column;
		justify-content: center;
	}
	.Case-controller{
		padding-right: 0;
		margin-bottom: 5rem;
	}

}
@media screen and (max-width:768px){

	.Case{
		padding-top: 11.5rem;
		padding-bottom: 11.5rem;
	}
	.Case .Index-header{
		margin-bottom: 6rem;
	}
	.Case-list-wrap{
		width: calc(100% + (var(--padding-leftright) * 2));
		padding-bottom: 8.2rem;
		margin-left: calc(var(--padding-leftright) * -1);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.Case-list{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.Case-list__item{
		width: 67rem;
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.Case-list__item a{
		width: 100%;
		border-radius: 1.6rem;
		flex-direction: column;
	}
	.Case-list__item-image{
		width: 100%;
	}
	.Case-list__item-image img{
		height: 34rem;
	}
	.Case-list__item-body{
		width: 100%;
		padding: 4rem 4.8rem 4.8rem;
	}
	.Case-list__item-data{
		margin-bottom: 1.8rem;
	}
	.Case-list__item-data-category{
		font-size: 2rem;
		height: 5rem;
		padding: .2rem 1.8rem;
		border-radius: 1.6rem;
	}
	.Case-list__item-data-genre{
		font-size: 2.2rem;
		margin-left: 2.2rem;
	}
	.Case-list__item-title{
		max-width: 46.6rem;
		font-size: 3.6rem;
		margin-bottom: 1rem;
		line-height: calc(5.4 / 3.6);
	}

	.Case__bottom{
		flex-direction: column;
	}
	.Case-controller{
		width: 100%;
		max-width: 100%;
		margin-bottom: 8.5rem;
		padding-right: 0;
		height: 8rem;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.Case-controller-list{
		width: 100%;
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		transform: translateY(-50%);
	}
	.Case-controller-list__item{
		width: 8rem;
		height: 8rem;
	}
	.Case-controller-list__item::before{
		width: 2.1rem;
		height: 1.9rem;
	}
	.Case-controller__bar-wrap{
		width: calc(100% - (16rem + 20rem));
		padding-left: 5.8rem;
		padding-right: 5.8rem;
	}
	.Case-controller__bar-wrap::before,
	.Case-controller__bar-wrap::after{
		font-size: 2.8rem;
	}

}



/*-------------------------------
	英字&ロゴ切り替え
-------------------------------*/

.Change{
	width: 100%;
	padding-bottom: 0;
	overflow: hidden;
}
.Change-text-wrap{
	display: none;
}
.Change-text-wrap.-on{
	display: block;
}
.Change-text{
	transition-timing-function: linear;
}
.Change-text__item{
	font-family: var(--en);
	width: fit-content;
	font-size: 20rem;
	font-weight: 700;
	padding-top: .5rem;
	padding-bottom: .5rem;
	line-height: .7;
	white-space: nowrap;
	color: #f9e5ea
}
.Change-text__item + .Change-text__item{
	margin-left: 0.25em;
}
.Change-logo-wrap{
	display: none;
}
.Change-logo-wrap.-on{
	display: block;
}
.Change-logo{
	transition-timing-function: linear;
}
.Change-logo__item{
	width: 17.6rem;
	height: 10rem;
	margin-left: 2rem;
	margin-right: 2rem;
}
.Change-logo__item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Change-text__item{
		font-size: 24rem;
		padding-top: .2rem;
		padding-bottom: .2rem;
		line-height: .72;
	}
	.Change-logo__item{
		width: 26.5rem;
		height: 15rem;
		margin-left: 3rem;
		margin-right: 3rem;
	}

}



/*-------------------------------
	情報資産管理のコラム/秘訣
-------------------------------*/

.Column .Index-header{
	margin-bottom: 7rem;
}
.Column-list{
	margin-bottom: 5.5rem;
	display: flex;
	column-gap: 4rem;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.Column-list__item{
	width: calc((100% - (4rem * 2)) / 3);
}
.Column-list__item:nth-of-type(4){
	display: none;
}
.Column-list__item a{
	display: block;
	opacity: 1 !important;
}
.Column-list__item-image{
	width: 100%;
	height: 20rem;
	margin-bottom: 2.8rem;
	border-radius: 1.6rem;
	overflow: hidden;
}
.Column-list__item-image img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.Column-list__item-title{
	transition: var(--transition);
	font-size: 2rem;
	margin-bottom: 1.2rem;
	font-weight: 700;
	line-height: calc(3 / 2);
}
.Column-list__item-title br{
	display: none;
}
.Column-list__item-text{
	transition: var(--transition);
	color: var(--blackcolor2);
	line-height: calc(3 / 1.6);
	margin-bottom: 1.8rem;
}
.Column-list__item-text span{
	line-height: calc(3 / 1.6);
}
.Column-list__item-data{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/*gap: 1.2rem 1.7rem;*/
}
.Column-list__item-data-category{
	transition: var(--transition);
	font-size: 1.2rem;
	min-height: 2.8rem;
	height: auto;
	padding: .2rem 1.2rem;
	border-radius: .8rem;
	border: 1px solid #cbcbcb;
	line-height: calc(2.5 /2);
	width: fit-content;
	display: flex;
	align-items: center;
}
.Column-list__item-data-corp{
	transition: var(--transition);
	font-size: 1.4rem;
	margin-left: 1.7rem;
	line-height: calc(2.5 /2);
    display: block;
}

.Column-list__item a:hover .Column-list__item-title{
	color: var(--maincolor);
}
.Column-list__item a:hover .Column-list__item-image img{
	transform: scale(1.1);
}
.Column-list__item a:hover .Column-list__item-text{
	color: var(--subcolor);
}
.Column-list__item a:hover .Column-list__item-data-category{
	color: var(--maincolor);
	border-color: var(--maincolor);
}
.Column-list__item a:hover .Column-list__item-data-corp{
	color: var(--maincolor);
}

.Column__button{
	margin-left: auto;
	margin-right: 0;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Column-list{
		gap: 4rem;
	}
	.Column-list__item{
		width: calc((100% - (4rem * 1)) / 2);
	}
	.Column-list__item:nth-of-type(4){
		display: block;
	}
	.Column-list__item-image{
		height: 30rem;
	}

	/*.Column-list__item-data{
		flex-wrap: wrap;
	}*/
}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Column .Index-header{
		margin-bottom: 7.5rem;
	}
	.Column-list{
		margin-bottom: 8rem;
		gap: 7.4rem 5rem;
	}
	.Column-list__item{
		width: calc((100% - (5rem * 1)) / 2);
	}
	.Column-list__item:nth-of-type(4){
		display: block;
	}
	.Column-list__item-image{
		height: 17.2rem;
	}
	.Column-list__item-title{
		font-size: 3.2rem;
		margin-bottom: 1.5rem;
		line-height: calc(4.6 / 3.2);
	}
	.Column-list__item-text{
		line-height: calc(3 / 1.6);
		margin-bottom: 2.5rem;
	}
	.Column-list__item-text span{
		line-height: calc(3 / 1.6);
	}
	.Column-list__item-data{
		/*flex-wrap: wrap;
		gap: 1.6rem 2.2rem;*/
	}
	.Column-list__item-data-category{
		font-size: 2rem;
		min-height: 5rem;
		height: auto;
		padding: .4rem 1.8rem;
		border-radius: 1.6rem;
        line-height: calc(2.5 / 2);
	}
	.Column-list__item-data-corp{
		font-size: 2.2rem;
		margin-left: 2.2rem;
        line-height: calc(2.5 / 2);
	}

	.Column__button{
		margin-right: auto;
	}

}



/*-------------------------------
	企業情報
-------------------------------*/

.Company{
	padding-top: 0;
}
.Company .Index-header{
	margin-bottom: 6.8rem;
}
.Company__body{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.Company-block-wrap{
	width: calc((100% - 6rem) / 2);
	border-radius: 4rem;
	box-shadow: 0 0 1.6rem rgba(0,0,0,.1);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
}
.Company-block{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
}
.Company-block.-current{
	opacity: 1;
	visibility: visible;
}
.Company-block a{
	width: 100%;
	height: 100%;
	padding: 5rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
}
.Company-block__header::before{
	content: "";
	margin-bottom: 3rem;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Company-block__title{
	font-size: 3.2rem;
	margin-bottom: 2rem;
	line-height: calc(4.8 / 3.2);
	font-weight: 700;
}
.Company-block__text{
	color: var(--blackcolor2);
}
.Company-block__arrow{
	margin-left: auto;
	margin-right: 0;
	width: 6rem;
	height: 6rem;
}
.Company-block__arrow .C-Arrow__item{
	width: 1.6rem;
	height: 1.4rem;
}

.Company-block.-vision .Company-block__header::before{
	width: 12rem;
	height: 12rem;
	background-image: url(../images/index/icon_company-vision.svg);
}
.Company-block.-aboutus .Company-block__header::before{
	width: 12rem;
	height: 12rem;
	background-image: url(../images/index/icon_company-aboutus.svg);
}
.Company-block.-certifications .Company-block__header::before{
	width: 12rem;
	height: 12rem;
	background-image: url(../images/index/icon_company-certifications.svg);
}
.Company-block.-security .Company-block__header::before{
	width: 12rem;
	height: 12rem;
	background-image: url(../images/index/icon_company-security.svg);
}

.Company-list-wrap{
	width: calc((100% - 6rem) / 2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}
.Company-list{
	width: 100%;
}
.Company-list__item{
	width: 100%;
}
.Company-list__item:first-child{
	border-top: 1px solid #cbcbcb;
}
.Company-list__item a{
	width: 100%;
	padding-top: 2.7rem;
	padding-bottom: 2.7rem;
	padding-left: 3rem;
	border-bottom: 1px solid #cbcbcb;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	opacity: 1 !important;
}
.Company-list__item-number{
	font-family: var(--en);
	color: var(--maincolor);
	font-weight: 500;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	position: relative;
	z-index: 1;
}
.Company-list__item-number-inner{
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Company-list__item-title{
	transition: var(--transition);
	width: calc(100% - 5rem);
	padding-left: 3.8rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: calc(3.4 / 2);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.Company-list__item-number-circle{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.Company-list__item-number-circle-svg{
    position: absolute;
    stroke-dasharray: 350
}
.Company-list__item-number-circle-svg rect{
    fill: none
}
.Company-list__item-number-circle-svg-1{
    stroke: #bcbcbc;
    stroke-width: 3px;
}
.Company-list__item-number-circle-svg-2{
    -webkit-transition: 2s stroke-dashoffset var(--transition-easing);
    transition: 2s stroke-dashoffset var(--transition-easing);
    stroke-dashoffset: 350;
    stroke: var(--maincolor);
    stroke-width: 3px;
}

.Company-list__item.-current a{
	padding-left: 0;
}
.Company-list__item.-current .Company-list__item-title{
	color: var(--maincolor);
}
.Company-list__item.-current .Company-list__item-number-circle-svg rect{
    stroke-dashoffset: 0
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.Company-block-wrap{
		width: calc((100% - 5rem) / 2);
		aspect-ratio: auto;
	}
	.Company-list-wrap{
		width: calc((100% - 5rem) / 2);
	}
	.Company-list{
		margin-bottom: 5rem;
	}
	.Company-list__item a{
		padding-left: 1.5rem;
	}
	.Company-list__item-title{
		padding-left: 2.5rem;
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Company .Index-header{
		margin-bottom: 7.5rem;
	}
	.Company__body{
		flex-direction: column;
	}
	.Company-block-wrap{
		width: 100%;
		margin-bottom: 8.2rem;
		border-radius: 0;
		box-shadow: none;
		aspect-ratio: auto;
		overflow: visible;
	}
	.Company-block{
		border-radius: 2.4rem;
		box-shadow: 0 0 1.6rem rgba(0,0,0,.1);
		position: static;
		opacity: 1;
		visibility: visible;
	}
	.Company-block:not(:last-child){
		margin-bottom: 5.4rem;
	}
	.Company-block a{
		padding: 4.6rem 5rem 5rem;
		min-height: 44rem;
	}
	.Company-block__header{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.Company-block__header::before{
		margin-bottom: 0;
	}
	.Company-block__title{
		width: calc(100% - 12rem);
		height: 12rem;
		padding-left: 4.8rem;
		font-size: 4rem;
		margin-bottom: 0;
		line-height: calc(6 / 4);
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.Company-block__text{
		margin-top: 3rem;
		margin-bottom: 2.5rem;
	}

	.Company-list-wrap{
		width: 100%;
	}
	.Company-list{
		display: none;
	}

}



/*-------------------------------
	お知らせ
-------------------------------*/

.News{
	background: var(--graycolor);
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
.News__inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.News__left{
	width: 26rem;
}
.News__left .C-Title{
	margin-bottom: 6rem;
}
.News-category{
	margin-bottom: 6.5rem;
}
.News-category__item:not(:last-child){
	margin-bottom: 1.5rem;
}
.News-category__item{
	transition: var(--transition);
	border-radius: .8rem;
	height: 3rem;
	padding: .2rem 1.5rem;
	border: 1px solid #cbcbcb;
	line-height: 1;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.News-category__item.-current,
.News-category__item:hover{
	background: var(--blackcolor);
	border-color: var(--blackcolor);
	color: #fff;
}
.News-list-wrap{
	width: calc(100% - 26rem);
	padding-left: 10rem;
}
.C-News-list{
	width: 100%;
	display: none;
}
.C-News-list__item .C-Arrow{
	background: var(--graycolor);
}
.C-News-list.-current{
	display: block;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.News-list-wrap{
		padding-left: 5rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.News{
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	.News__inner{
		flex-direction: column;
	}
	.News__left{
		width: 100%;
	}
	.News__left .C-Title{
		margin-bottom: 9.5rem;
	}
	.News-category{
		width: 100%;
		margin-bottom: 8rem;
		gap: 3.4rem 3rem;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.News-category__item:not(:last-child){
		margin-bottom: 0;
	}
	.News-category__item{
		border-radius: 1.6rem;
		height: 5rem;
		padding: .2rem 2.2rem;
	}
	.News-list-wrap{
		width: 100%;
		margin-bottom: 7.6rem;
		padding-left: 0;
	}

}



/*-------------------------------
	採用情報
-------------------------------*/

.Recruit{
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}
.Recruit::before,
.Recruit::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
.Recruit::before{
	background: rgba(0,0,0,.15);
	z-index: 4000;
}
.Recruit::after{
	transition: var(--transition);
	background-image: url(../images/index/bg_recruit.jpg);
	background-image: image-set(url(../images/index/bg_recruit.jpg) 1x, url(../images/index/bg_recruit@2x.jpg) 2x);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.Recruit:has(a:hover)::after{
	transform: scale(1.1);
}
.Recruit__inner{
	position: relative;
	z-index: 4000;
}
.Recruit__inner::before,
.Recruit__inner::after{
	content: "";
	display: block;
	width: 100%;
	height: 12rem;
	background: #fff;
}
.Recruit__inner::before{
	top: 0;
	border-bottom-left-radius: 12rem;
}
.Recruit__inner::after{
	bottom: 0;
	border-top-left-radius: 12rem;
}
.Recruit__inner a{
	padding-bottom: var(--padding-topbottom);
	padding-top: 13rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 6000;
}
.Recruit__inner a::before,
.Recruit__inner a::after{
	content: "";
	display: block;
	width: 12rem;
	height: 12rem;
	position: absolute;
}
.Recruit__inner a::before{
	top: -1px;
	right: 0;
	background-image: url(../images/index/obj_recruit-before.svg);
}
.Recruit__inner a::after{
	bottom: -1px;
	right: 0;
	background-image: url(../images/index/obj_recruit-after.svg);
}
.Recruit__body{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Recruit .C-Title{
	margin-bottom: 5rem;
}
.Recruit .C-Title__jp,
.Recruit .C-Title__en{
	color: #fff;
}
.Recruit .Recruit__text{
	font-size: 3.6rem;
	line-height: calc(6.3 / 3.6);
	font-weight: 700;
	color: #fff;
}
.Recruit .C-Arrow{
	width: 7rem;
	height: 7rem;
	border: none;
}
.Recruit .C-Arrow__item{
	width: 1.9rem;
	height: 1.7rem;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){
	.Recruit::after{
		background-position: 27% center;
		scale: 1.04;
	}
	.Recruit__inner a{
		padding-top: var(--padding-topbottom);
		padding-bottom: 14rem;
	}
	.Recruit .C-Title{
		margin-bottom: 3.5rem;
	}
	.Recruit .Recruit__text{
		font-size: 4.6rem;
		line-height: calc(6.9 / 4.6);
	}

}



/*-------------------------------
	グループ・関連リンク
-------------------------------*/

.Group{
	padding-top: 4rem;
}
.Group-arrow{
	width: 11.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Groupd-arrow__item{
	transition: var(--transition);
	width: 5rem;
	height: 5rem;
	border: 1px solid #cbcbcb;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Groupd-arrow__item.-prev{
	transform: scale(-1,1);
}
.Groupd-arrow__item::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.3rem;
	height: 1.2rem;
	background-image: url(../images/common/icon_arrow-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Groupd-arrow__item:hover{
	background: var(--blackcolor);
	border-color: var(--blackcolor);
}
.Groupd-arrow__item:hover::before{
	background-image: url(../images/common/icon_arrow-white.svg);
}
.Group-list__item{
	width: 27.6rem;
	margin-right: 1.8rem;
	height: 9rem;
}
.Group-list__item a{
	border: 1px solid #cbcbcb;
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	opacity: 1 !important;
}
.Group-list__item img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.Group-list__item a:hover{
	border-color: var(--maincolor);
}
.Group-list__item a:hover img{
	transform: scale(1.1);
}

@media screen and (min-width:769px) , print{
	.Group .js-anime-title.on .js-anime-title__jp{
		font-size: 1.6rem;
	}
}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Group-list__item{
		width: calc((100% - (1.8rem * 2)) / 3);
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Group{
		padding-top: 3.2rem;
	}
	.Group-arrow{
		width: 19rem;
		margin-left: auto;
		margin-right: auto;
	}
	.Groupd-arrow__item{
		width: 8rem;
		height: 8rem;
	}
	.Groupd-arrow__item::before{
		width: 2.1rem;
		height: 1.9rem;
	}
	.Group-list-wrap{
		margin-bottom: 7rem;
	}
	.Group-list__item{
		width: calc((100% - 3rem) / 2);
		margin-right: 3rem;
		height: 10.4rem;
	}

}