@charset "UTF-8";
/*-----------------------------------
	textBgFadeAnime
-----------------------------------*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	opacity:0;
}
@keyframes bgextendAnimeBase{
	from { opacity:0;}
	to { opacity:1;  }
}
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bgextendAnimeSecond{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}
h2 .bgLRextend::before {
	background-color: var(--mClr1);
}
/*-----------------------------------
	common
-----------------------------------*/
a.more {
	width: 280px;
	background: var(--bgClr1) url(../img/common/icon_arrow_link01.svg) no-repeat right 20px center/22px;
	border: 1px solid var(--mClr1);
	color: var(--mClr1);
	letter-spacing: 0.05em;
	padding: 21px 0;
	text-align: center;
	border-radius: calc(1px/0);
}
h2.style {
	font: 500 4rem/1 var(--fJA);
	letter-spacing: 0.05em;
	white-space: nowrap;
	margin-bottom: 50px;
	position: relative;
}
h2.style::before {
	display: block;
	font: 500 1.4rem/1 var(--fEN);
	letter-spacing: 0;
	color: var(--mClr1);
	padding-left: 15px;
	margin-bottom: 20px;
}
h2.style::after {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--mClr2);
	border-radius: 50%;
	position: absolute;
	top: 3px;
	left: 0;
}
@media screen and (max-width: 640px) {
	a.more {
		width: 240px;
		background: var(--bgClr1) url(../img/common/icon_arrow_link01.svg) no-repeat right 15px center/18px;
		padding: 18px 0;
	}
	h2.style {
		font-size: 2rem;
		margin-bottom: 25px;
	}
	h2.style::before {
		font-size: 1.1rem;
		padding-left: 10px;
		margin-bottom: 10px;
	}
	h2.style::after {
		width: 6px;
		height: 6px;
		top: 2px;
	}
}
/*-----------------------------------
	mainvisual
-----------------------------------*/
#mainvisual {
	width: min(1300px,95%);
	padding: min(60px,4.38vw) 0 min(160px,11.68vw);
	margin: 0 auto;
	position: relative;
	color: var(--tClr2);
}
#mainvisual::before {
	content: "";
	width: 100vw;
	height: 963px;
	background: url(../img/index/motif01.webp) no-repeat calc(50% + min(18px,1.31vw)) top/min(1594px,116.49%);
	position: absolute;
	top: min(140px,10.22vw);
	left: calc(50% - 50vw);
	z-index: -1;
}
#mainvisual .mv_text {
	position: absolute;
	top: 40%;
	left: 0;
	transform: translateY(-50%);
	z-index: 10;
}
#mainvisual .mv_text .copy {
	font: min(7rem,5.11vw)/1.2 var(--fJA);
	letter-spacing: 0.05em;
	margin-bottom: min(30px,2.19vw);
}
#mainvisual .mv_text .copy > * > .bgextend {
	display: inline-block;
}
#mainvisual .mv_text .copy .bgappearTrigger {
	filter: drop-shadow(0px 0px 3px rgba(255,255,255,0.6));
}
#mainvisual .mv_text .copy .color {
	color: var(--mClr2);
}
#mainvisual .swiper-pagination {
	width: max-content;
	display: flex;
	gap: 0 min(77px,5.62vw);
	font: 500 min(1.4rem,1.02vw)/1 var(--fEN);
	position: relative;
}
#mainvisual .swiper-pagination::before {
	content: "";
	width: min(57px,4.16vw);
	height: 1px;
	background: var(--tClr2);
	position: absolute;
	bottom: 0;
	left: calc(50% - min(28px,2.04vw));
}
#mainvisual .swiper-pagination > *::before {
	content: "0";
}
.copy .bgLRextend::before{
    background-color: var(--mClr1);
}
.text .bgLRextend::before{
    background-color: var(--tClr1);
}
#mainvisual .swiper {
	width: min(820px,59.85vw);
	margin: 0 0 0 auto;
}
#mainvisual .swiper .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: 100%;
	aspect-ratio: 410 / 259;
	object-fit: cover;
	border-radius: 40px;
}
@media screen and (max-width: 840px) {
	#mainvisual .swiper .swiper-wrapper .swiper-slide img {
		border-radius: 30px;
	}
}
@media screen and (max-width: 640px) {
	#mainvisual {
		width: 100%;
		padding: 0 0 80px;
		display: flex;
		flex-direction: column-reverse;
	}
	#mainvisual::before {
		top: 53.33vw;
	}
	#mainvisual .mv_text {
		padding: 0 10px;
		position: static;
		transform: translateY(0);
		margin-top: max(-68px,-18.13vw);
	}
	#mainvisual .mv_text .copy {
		font-size: min(5rem,13.33vw);
		margin-bottom: 10px;
	}
	#mainvisual .swiper-pagination {
		gap: 0 77px;
		font-size: 1.4rem;
	}
	#mainvisual .swiper-pagination::before {
		width: 57px;
		left: calc(50% - 28px);
	}
	#mainvisual .swiper {
		width: 100%;
		margin: 0 auto;
	}
	#mainvisual .swiper .swiper-wrapper .swiper-slide img {
		border-radius: 0;
	}
}
/*-----------------------------------
	philosophy_block
-----------------------------------*/
#philosophy_block {
	padding: 0 0 110px;
	position: relative;
}
#philosophy_block::before {
	content: "";
	width: 550px;
	height: 550px;
	background-image: radial-gradient(circle, #ddecd7 2.5px, transparent 2.5px), radial-gradient(circle, #ddecd7 2.5px, transparent 2.5px);
	background-position: 0 0, 5px 10px;
	background-size: 10px 20px;
	border-radius: 50%;
	position: absolute;
	top: 80px;
	left: calc(50% - 275px);
	z-index: -1;
}
#philosophy_block::after {
	content: "";
	width: 100vw;
	height: 1048px;
	background: url(../img/index/motif02.webp) no-repeat calc(50% - min(100px,7.3vw)) top/min(1466px,107%);
	position: absolute;
	top: calc(100% - min(432px,31.53vw));
	left: 0;
	z-index: -1;
}
#philosophy_block h2 {
	margin-bottom: 60px;
	text-align: center;
}
#philosophy_block h2::before {
	content: "PHILOSOPHY";
	font: 500 1.4rem/1 var(--fEN);
	color: var(--mClr1);
	display: block;
	margin-bottom: 15px;
}
#philosophy_block h2 > * {
	line-height: 1;
}
#philosophy_block h2 > * > * {
	display: inline-block;
	font: 500 4.8rem/1.43 var(--fJA);
}
#philosophy_block ul {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 55px;
}
#philosophy_block ul li {
	width: 250px;
}
#philosophy_block p {
	font-weight: 700;
	line-height: 2.12;
	letter-spacing: 0.08em;
	margin-bottom: 2em;
	white-space: pre-line;
	text-align: center;
}
#philosophy_block a.more {
	margin: 0 auto;
}
@media screen and (max-width: 840px) {
	#philosophy_block h2 > * > * {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 640px) {
	#philosophy_block {
		padding: 0 0 60px;
		overflow: hidden;
	}
	#philosophy_block::before {
		top: 40%;
		left:50%;
		transform: translate(-50%,-50%);
	}
	#philosophy_block h2 {
		margin-bottom: 30px;
	}
	#philosophy_block h2::before {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	#philosophy_block h2 > * > * {
		font-size: 2.4rem;
	}
	#philosophy_block ul {
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}
}
/*-----------------------------------
	business_block
-----------------------------------*/
#business_block {
	padding: 110px 0;
	position: relative;
}
#business_block::before {
	content: "";
	width: calc(min(1300px,94.89vw) + (50vw - min(650px,47.44vw)));
	height: 100%;
	background: url(../img/index/business_bg.jpg) no-repeat center center/cover;
	border-radius: 40px 0 0 40px;
	position: absolute;
	top: 0;
	right: 0;
}
#business_block .contents_inner {
	position: relative;
}
#business_block h2.style::before {
	content: "BUSINESS";
}
#business_block ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px max(1.73%,15px);
}
#business_block ul li {
	width: max(32.18%,295px);
	position: relative;
}
#business_block ul li .image {
	width: 100%;
	margin-bottom: 45px;
	position: relative;
}
#business_block ul li .image::after {
	font: 500 4.8rem/1 var(--fEN);
	text-box: trim-both cap alphabetic;
	color: var(--mClr1);
	position: absolute;
	bottom: -18px;
	left: 0;
}
#business_block ul li:nth-child(1) .image::after {
	content: "01";
}
#business_block ul li:nth-child(2) .image::after {
	content: "02";
}
#business_block ul li:nth-child(3) .image::after {
	content: "03";
}
#business_block ul li .image img {
	border-radius: 20px;
}
#business_block ul li .ttl {
	font: 2.6rem/1.2 var(--fJA);
	margin-bottom: 15px;
}
#business_block ul li p {
	letter-spacing: 0.05em;
	line-height: 2;
	padding-right: 90px;
}
#business_block ul li .link {
	width: 60px;
	position: absolute;
	bottom: 0;
	right: 0;
}
@media screen and (max-width: 840px) {
	#business_block .ttlArea {
		gap: 0 30px;
	}
}
@media screen and (max-width: 640px) {
	#business_block {
		padding: 60px 0;
	}
	#business_block::before {
		border-radius: 20px 0 0 20px;
	}
	#business_block .ttlArea {
		flex-direction: column;
		align-items: normal;
		gap: 15px 0;
		margin-bottom: 30px;
	}
	#business_block ul li .image {
		margin-bottom: 30px;
	}
	#business_block ul li .image::after {
		font: 500 3.6rem/1 var(--fEN);
		bottom: -14px;
	}
	#business_block ul li .image img {
		border-radius: 14px;
	}
	#business_block ul li .ttl {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	#business_block ul li p {
		padding-right: 65px;
	}
	#business_block ul li .link {
		width: 50px;
	}
}
/*-----------------------------------
	news_block
-----------------------------------*/
#news_block {
	padding: 110px 0;
}
#news_block .contents_inner {
	position: relative;
}
#news_block h2.style::before {
	content: "NEWS・PRESSRELEASE";
}
#news_block ul li {
	background: var(--bgClr1);
}
#news_block ul li:not(:last-child) {
	border-bottom: 1px solid #DBDBDB;
}
#news_block ul li a {
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 0 55px;
	background: url(../img/common/icon_arrow_link02.svg) no-repeat right 30px center/60px;
	letter-spacing: 0.05em;
	padding-right: 120px;
}
#news_block ul li a time {
	width: 75px;
	color: #676767;
	font: 600 1.4rem/1 var(--fJA);
	letter-spacing: -0.01em;
}
#news_block ul li a .cat {
	width: 70px;
	padding: 9px 0;
	text-align: center;
	border-radius: 5px;
	text-box: trim-both cap alphabetic;
	font-size: 1.2rem;
}
#news_block ul li a .cat.c01 {
	background: #E4ECE1;
}
#news_block ul li a .cat.c02 {
	background: #F2E5C2;
}
#news_block ul li a .cat.c03 {
	background: #DCEAEB;
}
#news_block ul li a p {
	width: calc(100% - 255px);
	color: var(--tClr2);
	font-size: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#news_block a.more {
	position: absolute;
	top: 20px;
	right: 0;
}
@media screen and (max-width: 1100px) {
	#news_block ul li a {
		gap: 0 35px;
	}
}
@media screen and (max-width: 840px) {
	#news_block ul {
		margin-bottom: 50px;
	}
	#news_block ul li a {
		flex-wrap: wrap;
		gap: 10px 20px;
		background: url(../img/common/icon_arrow_link02.svg) no-repeat right 30px center/60px;
		padding-right: 120px;
	}
	#news_block ul li a p {
		width: 100%;
	}
	#news_block a.more {
		position: static;
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px) {
	#news_block {
		padding: 60px 0;
	}
	#news_block ul {
		margin-bottom: 30px;
	}
	#news_block ul li a {
		padding: 15px;
		background: url(../img/common/icon_arrow_link02.svg) no-repeat right 10px center/30px;
		padding-right: 50px;
	}
	#news_block ul li a time {
		width: 60px;
		font: 700 1.2rem/1 var(--fJA);
	}
	#news_block ul li a .cat {
		width: 60px;
		padding: 7px 0;
		font-size: 1rem;
	}
	#news_block ul li a p {
		font-size: 1.3rem;
		letter-spacing: -0.05em;
	}
}
/*-----------------------------------
	slide
-----------------------------------*/
#slide {
	padding-bottom: 110px;
}
#slide .swiper-wrapper {
    transition-timing-function: linear !important;
}
#slide .swiper-wrapper .swiper-slide {
	width: 470px;
	border-radius: 20px;
	overflow: hidden;
}
@media screen and (max-width: 840px) {
	#slide .swiper-wrapper .swiper-slide {
		width: 350px;
	}
}
@media screen and (max-width: 640px) {
	#slide {
		padding-bottom: 60px;
	}
	#slide .swiper-wrapper .swiper-slide {
		width: 240px;
		border-radius: 10px;
	}
}
/*-----------------------------------
	company_block
-----------------------------------*/
#company_block {
	padding: 110px 0;
	position: relative;
}
#company_block::before {
	content: "";
	width: calc(min(1300px,94.89vw) + (50vw - min(650px,47.44vw)));
	height: 100%;
	background: var(--bgClr3);
	border-radius: 0 40px 40px 0;
	position: absolute;
	top: 0;
	left: 0;
}
#company_block .contents_inner {
	position: relative;
}
#company_block h2.style::before {
	content: "COMPANY";
}
#company_block ul {
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
}
#company_block ul li {
	width: 50%;
}
#company_block ul li a {
	position: relative;
	aspect-ratio: 25 / 12;
	z-index: 0;
	overflow: hidden;
}
#company_block ul li a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
	z-index: -1;
}
#company_block ul li:nth-child(1) a::before {
	background: url(../img/index/company_img01.jpg) no-repeat center center/cover;
}
#company_block ul li:nth-child(2) a::before {
	background: url(../img/index/company_img02.jpg) no-repeat center center/cover;
}
#company_block ul li:nth-child(3) a::before {
	background: url(../img/index/company_img03.jpg) no-repeat center center/cover;
}
#company_block ul li:nth-child(4) a::before {
	background: url(../img/index/company_img04.jpg) no-repeat center center/cover;
}
#company_block ul li a::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#company_block ul li a:hover {
	opacity: 1;
}
#company_block ul li a:hover::before {
	transform: scale(1.1);
}
#company_block ul li a span {
	display: block;
	width: 90%;
	color: var(--tClr3);
	font: 500 2.6rem/1 var(--fJA);
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	z-index: 2;
	background: url(../img/common/icon_arrow_link02.svg) no-repeat right center/60px;
}
#company_block ul li a span::before {
	display: block;
	font: 500 1.2rem/1 var(--fEN);
	color: #AFD1A5;
	margin-bottom: 10px;
}
#company_block ul li:nth-child(1) a span::before {
	content: "GREETING";
}
#company_block ul li:nth-child(2) a span::before {
	content: "PHILOSOPHY";
}
#company_block ul li:nth-child(3) a span::before {
	content: "HISTORY";
}
#company_block ul li:nth-child(4) a span::before {
	content: "GROUP";
}
@media screen and (max-width: 840px) {
	#company_block .ttlArea {
		gap: 0 30px;
	}
	#company_block ul li a span {
		font-size: 2rem;
	}
	#company_block ul li a span::before {
		font-size: 1rem;
	}
}
@media screen and (max-width: 640px) {
	#company_block {
		padding: 60px 0;
	}
	#company_block::before {
		border-radius: 0 20px 20px 0;
	}
	#company_block .ttlArea {
		flex-direction: column;
		align-items: normal;
		gap: 15px 0;
		margin-bottom: 30px;
	}
	#company_block ul {
		border-radius: 10px;
	}
	#company_block ul li {
		width: 100%;
	}
	#company_block ul li a span {
		background: url(../img/common/icon_arrow_link02.svg) no-repeat right center/40px;
	}
}
/*-----------------------------------
	recruit_block
-----------------------------------*/
#recruit_block {
	padding: 160px 0;
	position: relative;
}
#recruit_block::before {
	content: "";
	width: 100vw;
	height: 660px;
	background: url(../img/index/motif03.webp) no-repeat calc(50% + min(328px,29.82vw)) bottom/min(1160px,105.45vw);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#recruit_block .contents_inner {
	position: relative;
	z-index: 1;
}
#recruit_block h2::before {
	content: "RECRUIT";
}
#recruit_block p {
	margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
	#recruit_block {
		padding: 100px 0;
	}
}
@media screen and (max-width: 640px) {
	#recruit_block {
		padding: 80px 0;
	}
	#recruit_block::before {
		height: 360px;
		background: url(../img/index/sp/motif03.webp) no-repeat calc(50% + 40vw) bottom/contain;
	}
	#recruit_block p {
		margin-bottom: 20px;
	}
}