@charset "UTF-8";

/* background-ring */

#container {
	padding-top: 6.7rem !important;
	@media screen and (max-width: 767px) {
		padding-top: 5.5rem !important;
	}
}

#container {
	position: relative;
	overflow: visible;
	&:after {
		content: "";
		position: fixed;
		top: 48.6rem;
		right: 0;
		width: 79.2rem;
		height: 89.8rem;
		background: url("../img/top/banner-ring.png") no-repeat center right / 100% auto;
		z-index: 0;
		display: block;
		margin-left: auto;
		transition: bottom 0.1s ease-out;
		@media screen and (max-width: 767px) {
			display: none;
		}
	}
	&.ring-stopped {
		&:after {
			position: absolute !important;
			top: auto !important;
			bottom: var(--ring-bottom, 0) !important;
			@media screen and (max-width: 767px) {
				display: none;
			}
		}
	}
	&:before {
		content: "";
		position: absolute;
		bottom: -36.6rem;
		right: 0;
		width: 78.5rem;
		height: 105.6rem;
		background: url("../common/img/footer/footer-ring.png") no-repeat center right / 100% auto;
		z-index: -1;
		display: block;
		margin-left: auto;
		transition: bottom 0.1s ease-out;
		@media screen and (max-width: 767px) {
			display: none;
		}
	}
}

/* banner */

#banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 16rem;
	@media screen and (max-width: 767px) {
		padding-bottom: 8rem;
	}
	.slider-img {
		display: flex;
		gap: 4rem;
		height: 80.3rem;
		width: max-content;
		will-change: transform;
		animation: slide 60s linear infinite;
		@media screen and (max-width: 767px) {
			height: 40rem;
			/* width: 100%; */
		}
		& img {
			height: 80.3rem;
			width: 374rem;
			object-fit: contain;
			object-position: top left;
			flex-shrink: 0;
			display: block;
			@media screen and (max-width: 767px) {
				height: 40rem;
				width: auto;
			}
		}
	}
	.banner-text {
		font-family: var(--zen);
		font-style: normal;
		font-weight: 500;
		font-size: 6rem;
		line-height: 160%;
		letter-spacing: 0.1em;
		color: #ffffff;
		padding: 8.1rem 12rem;
		box-sizing: border-box;
		background: radial-gradient(57.73% 138.35% at 80.54% 107.73%, rgba(255, 194, 199, 0.9) 0%, rgba(224, 0, 18, 0.9) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
		backdrop-filter: blur(4.8px);
		border-radius: 0 35.5rem 35.5rem 0;
		display: table;
		position: absolute;
		left: 0;
		bottom: 0;
		@media screen and (max-width: 767px) {
			font-size: 2rem;
			padding: 4rem 4rem 4rem 2rem;
		}
	}
}

@keyframes slide {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(calc(-374rem - 4rem), 0, 0);
	}
}

@media screen and (max-width: 767px) {
	@keyframes slide {
		0% {
			transform: translate3d(0, 0, 0);
		}
		100% {
			transform: translate3d(calc(-187rem - 2rem), 0, 0);
		}
	}
}

/* about */

#about {
	position: relative;
	z-index: 9;
	padding-top: 29.4rem;
	padding-bottom: 25.9rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.contents-flex {
		display: flex;
		justify-content: flex-end;
		position: relative;
		align-items: flex-start;
		@media screen and (max-width: 767px) {
			flex-direction: column;
			justify-content: flex-start;
		}
		.text-cont {
			width: 70rem;
			position: sticky;
			top: 30rem;
			align-self: flex-start;
			margin-left: 0;
			margin-right: auto;
			margin-top: -5rem;
			@media screen and (max-width: 767px) {
				margin-top: 0;
				top: 0;
				position: relative;
				width: 100%;
				margin-left: unset;
				margin-right: unset;
			}
		}
		.link-cont {
			display: flex;
			flex-direction: column;
			gap: 6.4rem;
			padding-right: 15.5rem;
			@media screen and (max-width: 767px) {
				gap: 2rem;
				padding-right: unset;
				width: 100%;
			}
			& a {
				width: 64.8rem;
				position: relative;
				border: 0.3rem solid #e60012;
				border-radius: 26.4rem;
				height: 26.4rem;
				padding-left: 28.4rem;
				display: flex;
				align-items: center;
				transition: all 0.3s ease-in-out;
				background-color: #fff;
				@media screen and (max-width: 767px) {
					width: 100%;
					padding-left: 15rem;
					padding-right: 2rem;
					height: 14rem;
				}
				.img-container {
					width: 26.4rem;
					position: absolute;
					left: -0.3rem;
					z-index: 9;
					@media screen and (max-width: 767px) {
						width: 14rem;
					}
					& img {
						width: 100%;
						vertical-align: top;
					}
				}
				.red-text {
					font-family: var(--zen);
					font-style: normal;
					font-weight: 700;
					font-size: 2.4rem;
					line-height: 170%;
					letter-spacing: 0.1em;
					color: #e60012;
					text-shadow:
						0px 0px 4px rgba(255, 255, 255, 0.25),
						0px 0px 4px rgba(255, 255, 255, 0.25);
					@media screen and (max-width: 767px) {
						font-size: 1.6rem;
					}
				}
				&:hover {
					background-color: #e60012;
					.red-text {
						color: #fff;
					}
				}
			}
		}
	}
}

/* Our work */

#our-work {
	position: relative;
	padding-bottom: 21.2rem;
	@media screen and (max-width: 767px) {
		padding-bottom: 0;
	}
	.over-flow-hidden {
		border-radius: 5rem;
		overflow: visible;
		clip-path: inset(0 round 5rem);
	}
	.gray-container {
		background-color: #f3f5f6;
		width: 100%;
		border-radius: 5rem;
		overflow: visible;
		position: relative;
		z-index: 9;
		padding: 19.8rem 16rem 11.1rem 73.6rem;
		box-sizing: border-box;
		@media screen and (max-width: 767px) {
			padding: 6rem 2rem;
		}
		.content-flex {
			display: flex;
			align-items: flex-start;
			position: relative;
			gap: 4rem;
			@media screen and (max-width: 767px) {
				flex-direction: column;
				gap: 2rem;
			}
		}
		.text-cont1 {
			position: sticky;
			top: 0;
			align-self: flex-start;
			width: max-content;
			margin-top: -18.8rem;
			margin-left: -73.6rem;
			margin-right: auto;
			margin-bottom: 0;
			flex-shrink: 0;
			padding: 19.2rem 18rem 18rem 16rem;
			box-sizing: border-box;
			overflow: visible;
			@media screen and (max-width: 767px) {
				position: relative;
				top: unset;
				margin: 0;
				padding: 0;
				width: 100%;
			}
			&:before {
				content: "";
				position: absolute;
				right: 5rem;
				bottom: -1.8rem;
				width: 66rem;
				height: 66rem;
				background: url("../img/top/full-ring.png") no-repeat right bottom / cover;
				pointer-events: none;
				@media screen and (max-width: 767px) {
					display: none;
				}
			}
		}
		.text-cont2 {
			width: 78.6rem;
			@media screen and (max-width: 767px) {
				width: 100%;
			}
			.large-text {
				font-family: var(--overpass);
				font-style: normal;
				font-weight: 500;
				font-size: 3.6rem;
				line-height: 4.6rem;
				letter-spacing: 0.08em;
				color: #000000;
				padding-left: 4rem;
				position: relative;
				margin-bottom: 1.6rem;
				@media screen and (max-width: 767px) {
					font-size: 2rem;
					line-height: 1.4;
					padding-left: 3rem;
				}
				&:before {
					content: "";
					position: absolute;
					left: 0;
					top: 1.8rem;
					background: #e60012;
					width: 2.4rem;
					height: 0.36rem;
					@media screen and (max-width: 767px) {
						top: 1rem;
						height: 0.3rem;
						width: 2rem;
					}
				}
			}
			.large-text2 {
				font-family: var(--zen);
				font-style: normal;
				font-weight: 700;
				font-size: 3rem;
				line-height: 150%;
				letter-spacing: 0.08em;
				color: #000000;
				flex-grow: 0;
				padding-left: 4rem;
				position: relative;
				margin-bottom: 1.6rem;
				@media screen and (max-width: 767px) {
					font-size: 2rem;
					line-height: 1.4;
					padding-left: 3rem;
				}
				&:before {
					content: "";
					position: absolute;
					left: 0;
					top: 1.8rem;
					background: #e60012;
					width: 2.4rem;
					height: 0.36rem;
					@media screen and (max-width: 767px) {
						top: 1rem;
						height: 0.3rem;
						width: 2rem;
					}
				}
			}
			.red-text {
				margin-bottom: 1rem;
				font-family: var(--zen);
				font-style: normal;
				font-weight: 700;
				font-size: 2.4rem;
				line-height: 190%;
				letter-spacing: 0.1em;
				color: #e60012;
				align-self: stretch;
				flex-grow: 0;
				@media screen and (max-width: 767px) {
					font-size: 2rem;
				}
			}
			.img-container01 {
				width: 100%;
				margin-bottom: 4.8rem;
				@media screen and (max-width: 767px) {
					margin-bottom: 4rem;
				}
				& img {
					width: 100%;
					vertical-align: top;
				}
			}
			.img-container01:last-child {
				margin-bottom: 0;
			}
		}
	}
}

/* member */

#member {
	position: relative;
	background: url("../img/top/member-bg.png") no-repeat top center / 100% 100%;
	padding-top: 21.8rem;
	padding-bottom: 19rem;
	@media screen and (max-width: 767px) {
		padding-top: 10rem;
		padding-bottom: 7rem;
		background: url("../img/top/member-bg.png") no-repeat top center / 160% 100%;
	}
	.white {
		color: #fff;
	}
	.inner {
		position: relative;
		z-index: 2;
		overflow: visible;
		.flex-contents {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 8rem;
			@media screen and (max-width: 767px) {
				flex-direction: column;
				margin-bottom: 4rem;
				align-items: flex-start;
				gap: 1rem;
				@media screen and (max-width: 767px) {
					margin-bottom: 2rem;
				}
			}
			.large-header {
				margin-bottom: 0;
			}
			.buttons-flex {
				display: flex;
				align-items: center;
				@media screen and (max-width: 767px) {
					justify-content: space-between;
					width: 100%;
				}
				.common-btn {
					background-color: #fff;
				}
			}
		}
		.slider {
			position: relative;
			overflow: visible;
			.common-list.staff {
				overflow: visible;
				&.slick-slider {
					overflow: visible;
					.slick-list {
						overflow: visible;
						margin: 0 -1.2rem;
					}
					.slick-track {
						display: flex;
						align-items: stretch;
					}
				}
				.staff-post {
					width: 40rem;
					max-width: 40rem;
					padding: 0 1.2rem;
					box-sizing: border-box;
					flex-shrink: 0;
					word-wrap: break-word;
					overflow-wrap: break-word;
					transition: all 0.3s ease-in;
					@media screen and (max-width: 767px) {
						width: 30rem;
					}
					& a {
						width: 100%;
					}
					.thumbnail {
						width: 40rem;
						max-width: calc(100% + 2.4rem);
						margin-left: -1.2rem;
						margin-right: -1.2rem;
						height: 40rem;
						border-radius: 50%;
						border: 0.3rem #fff solid;
						margin-bottom: 2.4rem;
						overflow: hidden;
						background-color: #fff;
						@media screen and (max-width: 767px) {
							width: 100%;
							height: auto;
							margin-left: 0;
							margin-right: 0;
							margin-bottom: 1rem;
						}
						& img {
							width: 100%;
							height: 100%;
							object-fit: cover;
							vertical-align: middle;
						}
					}
					.list-category {
						margin-bottom: 1rem;
						display: flex;
						flex-wrap: wrap;
						gap: 1rem;
						& span {
							font-family: var(--zen);
							font-style: normal;
							font-weight: 500;
							font-size: 1.8rem;
							line-height: 1;
							letter-spacing: 0.05em;
							border: 2px solid #fff;
							color: #e60012;
							background-color: #fff;
							padding: 0.7rem 2.4rem 0.55rem;
							box-sizing: border-box;
							border-radius: 10rem;
							display: inline-block;
							height: 3.7rem;
							@media screen and (max-width: 767px) {
								font-size: 1.4rem;
								height: 3.2rem;
								padding: 0.7rem 1.7rem 0.55rem;
							}
						}
					}
					.list-title {
						font-family: var(--zen);
						font-style: normal;
						font-weight: 700;
						font-size: 2rem;
						line-height: 150%;
						letter-spacing: 0.05em;
						color: #ffffff;
						margin-bottom: 1rem;
						@media screen and (max-width: 767px) {
							font-size: 1.6rem;
						}
						& br {
							display: none;
						}
					}
					.flex-info {
						display: flex;
						gap: 1.6rem;
						@media screen and (max-width: 767px) {
							gap: 1rem;
						}
						.start {
							font-family: var(--zen);
							font-style: normal;
							font-weight: 500;
							font-size: 1.6rem;
							line-height: 150%;
							letter-spacing: 0.05em;
							color: #ffffff;
							@media screen and (max-width: 767px) {
								font-size: 1.4rem;
							}
						}
						.name {
							font-family: var(--zen);
							font-style: normal;
							font-weight: 700;
							font-size: 1.8rem;
							line-height: 150%;
							letter-spacing: 0.05em;
							color: #ffffff;
							@media screen and (max-width: 767px) {
								font-size: 1.6rem;
							}
						}
					}
					&.slick-slide {
						height: auto;
						width: 44.8rem !important;
						max-width: 44.8rem !important;
						margin-right: 0 !important;
					}
					&:hover {
						opacity: 0.9;
						.list-category {
							& span {
								color: #fff;
								background-color: #e60012;
								transition: 0.3s ease-in all;
								border: 2px solid #fff;
							}
						}
					}
				}
			}
			.member-dots {
				display: flex;
				justify-content: flex-start;
				align-items: center;
				padding: 0;
				list-style: none;
				bottom: -1.8rem !important;
				@media screen and (max-width: 767px) {
					bottom: -3rem !important;
				}
				li {
					width: 7.4rem;
					height: 0.4rem;
					margin: 0 !important;
					background-color: #fff;
					@media screen and (max-width: 767px) {
						width: 4rem;
					}
					& button {
						width: 100%;
						height: 100%;
						padding: 0;
						border: none;
						background: transparent;
						font-size: 0;
						line-height: 0;
						color: transparent;
						cursor: pointer;
						&:before {
							display: none;
						}
					}
					&.slick-active {
						background-color: #e60012;
					}
				}
			}
		}
		.slider-btns-flex {
			display: flex;
			align-items: center;
			gap: 1.6rem;
			margin-right: 2.4rem;
			@media screen and (max-width: 767px) {
				gap: 1rem;
			}
			.prev,
			.next {
				width: 4.8rem;
				height: 4.8rem;
				border-radius: 50%;
				background-color: #fff;
				border: none;
				cursor: pointer;
				position: relative;
				display: flex;
				align-items: center;
				justify-content: center;
				transition: all 0.3s ease-in-out;
				border: #e60012 0.2rem solid;
				&:before {
					content: "";
					position: absolute;
					width: 0.8rem;
					height: 0.8rem;
					border-top: 0.2rem solid #e60012;
					border-right: 0.2rem solid #e60012;
					box-sizing: border-box;
				}
				&:hover {
					background-color: #e60012;
					border: #fff 0.2rem solid;
					&:before {
						border-color: #fff;
					}
				}
			}
			.prev {
				&:before {
					transform: rotate(-135deg);
				}
			}
			.next {
				&:before {
					transform: rotate(45deg);
				}
			}
		}
	}
}

/* work */

#work {
	padding-top: 40rem;
	position: relative;
	overflow: visible;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 6rem;
		.flex-contents {
			flex-direction: column;
			gap: 4rem;
			min-height: auto;
			@media screen and (max-width: 767px) {
				gap: 2rem;
			}
			.text-cont {
				position: static;
				width: 100%;
				padding: 0 0 8rem 0;
				@media screen and (max-width: 767px) {
					position: relative;
					padding: 0;
				}
				&:before {
					display: none;
				}
			}
			.link-cont {
				padding-bottom: 12rem;
				gap: 2rem;
				& a {
					width: 100%;
					height: calc(14rem + 6px);
					border-radius: 14rem;
					gap: 2rem;
					.ellipse-img {
						width: calc(14rem - 3px);
						height: calc(14rem - 3px);
						border-radius: calc(14rem - 3px);
					}
					& span {
						font-size: 1.6rem;
					}
				}
			}
		}
	}
	.flex-contents {
		display: flex;
		align-items: flex-start;
		position: relative;
		gap: 8rem;
		width: 100%;
		/* min-height: 100vh; */
		@media screen and (max-width: 767px) {
			min-height: unset;
			gap: 2rem;
			flex-direction: column;
		}
		.text-cont {
			position: sticky;
			top: 15rem;
			align-self: flex-start;
			width: max-content;
			margin-right: auto;
			margin-bottom: 0;
			flex-shrink: 0;
			padding: 0 0 16rem 0;
			box-sizing: border-box;
			overflow: visible;
			@media screen and (max-width: 767px) {
				position: relative;
				top: unset;
				padding: 0;
				width: 100%;
			}
			&:before {
				content: "";
				position: absolute;
				right: 50%;
				bottom: -7.6rem;
				width: 69rem;
				height: 69rem;
				background: url("../img/top/full-ring.png") no-repeat right bottom / cover;
				pointer-events: none;
				transform: rotate(180deg);
				z-index: -1;
			}
			.common-text {
				font-family: var(--zen);
				font-style: normal;
				font-weight: 400;
				font-size: 1.8rem;
				line-height: 180%;
				letter-spacing: 0.1em;
				color: #000000;
				position: relative;
				z-index: 9;
			}
		}
		.link-cont {
			display: flex;
			flex-direction: column;
			gap: 2.4rem;
			padding-bottom: 25.6rem;
			padding-top: 1.1rem;
			@media screen and (max-width: 767px) {
				gap: 2rem;
				padding-bottom: 0;
				padding-top: 0;
				width: 100%;
			}
			& a {
				border: 3px solid #e60012;
				border-radius: 20rem;
				width: 65rem;
				height: calc(18.4rem + 6px);
				display: flex;
				align-items: center;
				gap: 4rem;
				background-color: #fff;
				position: relative;
				overflow: hidden;
				transition: all 0.3s ease-in-out;
				@media screen and (max-width: 767px) {
					width: 100%;
					height: 14rem;
					gap: 1rem;
				}
				&::before {
					content: "";
					position: absolute;
					top: 0;
					right: 0;
					width: 100%;
					height: 100%;
					background-color: #e60012;
					border-radius: 20rem;
					transform: scaleX(0);
					transform-origin: right;
					transition: transform 0.3s ease-in-out;
					z-index: 0;
				}
				& > * {
					position: relative;
					z-index: 1;
				}
				.ellipse-img {
					width: calc(18.4rem - 3px);
					height: calc(18.4rem - 3px);
					border-radius: calc(18.4rem - 3px);
					overflow: hidden;
					background-color: #fff;
					display: flex;
					align-items: center;
					justify-content: center;
					@media screen and (max-width: 767px) {
						width: 14rem;
						height: 14rem;
						border-radius: 14rem;
					}
					& img {
						vertical-align: middle;
						@media screen and (max-width: 767px) {
							transform: scale(0.65);
						}
					}
				}
				& span {
					font-family: var(--zen);
					font-style: normal;
					font-weight: 700;
					font-size: 2.2rem;
					line-height: 1;
					letter-spacing: 0.05em;
					color: #e60012;
					transition: 0.3s ease-in-out all;
					@media screen and (max-width: 767px) {
						font-size: 1.6rem;
					}
				}
				&:hover {
					&::before {
						transform: scaleX(1);
					}
					& span {
						color: #fff;
					}
				}
			}
		}
	}
}
