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

/* greeting */
.greeting{
	position: relative;
	z-index: 0;
}
.greeting::before{
	content: "";
	position: absolute;
	right: 5%;
	bottom: clamp(30px, 7.6vw, 145px);
	width: clamp(250px, 51vw, 980px);
	height: 555px;
	background: url("../img/company/greeting-bg.png") right bottom / contain no-repeat;
	z-index: -1;
}
.greeting-flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: clamp(30px, 4.1vw, 80px);
}
.greeting-flex__img{
	width: clamp(230px, 14vw, 270px);
}
.greeting-flex__img img{
	width: 100%;
	height: auto;
}
.greeting-flex__contents{
	flex: 1;
}
.greeting-flex__title{
	margin-bottom: clamp(25px, 2.3vw, 45px);
	font-size: var(--fontsize-28);
}
.greeting-flex__text{
	font-size: var(--fontsize-16);
	line-height: 2.2;
}
.greeting-flex__text + .greeting-flex__text{
	margin-top: 2.2em;
}
.greeting-flex__sign{
	margin-top: clamp(30px, 3.4vw, 65px);
}
.greeting-flex__company{
	font-size: var(--fontsize-14);
	margin-bottom: 6px;
}
.greeting-flex__name{
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: var(--fontsize-20);
}
.greeting-flex__position{
	font-size: var(--fontsize-14);
	font-family: var(--font-sans);
	color: var(--gray-color);
	display: block;
}
.greeting-flex__en{
	font-size: var(--fontsize-14);
	font-family: var(--font-en);
	color: var(--gray-color);
	display: block;
	line-height: 1;
}

/* concept */
.concept{
	background: url("../img/company/concept-bg.jpg") center center / 101% 101% no-repeat;
	padding-bottom: clamp(50px, 6.2vw, 120px);
}
.concept .l-inner{
	width: min(90%,1545px);
}
.concept-lead{
	border-bottom: 1px solid var(--border-color);
	position: relative;
	z-index: 0;
	padding-bottom: clamp(50px, 6.2vw, 120px);
	text-align: center;
}
.concept-lead::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	height: 1px;
	width: 100%;
	background-color: var(--border-color);
}
.concept-lead img{
	width: min(100%,1170px);
	margin: 0 auto 14px;
}
.concept-lead__sub{
	text-align: center;
	color: var(--border-gray);
	font-family: var(--font-en);
	font-size: var(--fontsize-14);
}
.concept-contents{
	position: relative;
	z-index: 0;
	margin-top: clamp(40px, 4.1vw, 80px);
}
.concept-contents::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	height: 1px;
	width: 100%;
	border-bottom: 1px dashed var(--font-color);
	z-index: -1;
}
.concept-contents__list{
	display: grid;
	gap: clamp(30px, 3.4vw, 65px);
	grid-template-columns: repeat(3, 1fr);
}
.concept-contents__item{
	margin-bottom: 60px;
	border: 1px solid var(--white-color);
	background-color: rgba(192,198,229,0.12);
	padding: clamp(25px, 3.1vw, 60px) clamp(20px, 2.6vw, 50px);
	border-radius: 6px;
	position: relative;
	z-index: 0;
	background-image: url("../img/company/concept-contents-item-bg01.png");
	background-position: center top clamp(20px, 2.3vw, 45px);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.concept-contents__item:nth-child(2){
	background-image: url("../img/company/concept-contents-item-bg02.png");
}
.concept-contents__item:nth-child(3){
	background-image: url("../img/company/concept-contents-item-bg03.png");
}
.concept-contents__item::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -60px;
	width: 8px;
	height: 48px;
	transform: translateX(-50%);
	background: url("../img/company/concept-contents-icon.svg") center bottom / contain no-repeat;
}
.concept-contents__title{
	text-align: center;
	font-size: var(--fontsize-33);
	margin-bottom: 20px;
}
.concept-contents__sub{
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--white-color);
	font-size: var(--fontsize-20);
	line-height: 2;
}
.concept-contents__text{
	font-family: var(--font-sans);
	font-weight: 300;
}

/* overview */
.overview__box{
	background-color: var(--bg-gray);
	border-radius: 4px;
	padding: clamp(20px, 3.4vw, 65px) clamp(20px, 4.1vw, 80px);
}
.c-normal-disc + p{
	margin-top: 8px;
}

@media screen and (max-width: 1024px){
	.concept-contents__list{
		min-width: 1210px;
	}
}
@media screen and (max-width: 767px){
	.greeting::before{
		bottom: 20px;
		width: 90%;
	}
	.greeting-flex__img{
		margin-inline: auto;
	}
	.greeting-flex__contents{
		flex: auto;
		width: 100%;
	}
	.concept-lead img{
		width: min(100%,550px);
	}
}
@media screen and (max-width: 480px){
	.concept-contents__list{
		min-width: 1070px;
	}
	.concept-contents__sub{
		font-size: 17px;
	}
}