:root {
	--gccc-accent: #078947;
	--gccc-text: #202020;
	--gccc-pale: #f8f8f8;
	--gccc-line: #f0f0f0;
}

.gccc,
.gccc * {
	box-sizing: border-box;
}

.gccc {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100vw;
	max-width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 0;
	background: #fff;
	color: var(--gccc-text);
}

.gccc__word {
	position: absolute;
	right: 2vw;
	bottom: -3.333vw;
	left: 2vw;
	z-index: 0;
	color: var(--gccc-pale);
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(8rem, 16.667vw, 22rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.035em;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.gccc__inner {
	position: relative;
	z-index: 1;
	padding: 10% 0 8.333% 6.84%;
}

.gccc__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin: 0 10.55% 4.5rem 0;
}

.gccc__heading {
	margin-right: auto;
	text-align: left !important;
}

.gccc__heading-en {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .025em;
}

.gccc__heading-jp {
	margin: 2rem 0 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: .05em;
}

.gccc__navigation {
	display: flex;
	align-items: center;
}

.gccc__arrows {
	display: flex;
	margin-right: 1.5rem;
}

.gccc__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.75rem;
	height: 3.75rem;
	margin: 0;
	padding: 0;
	border: .125rem solid var(--gccc-line);
	border-radius: 50%;
	background: #fff;
	box-shadow: none;
	color: var(--gccc-text);
	font: inherit;
	font-size: 1.55rem;
	line-height: 1;
	cursor: pointer;
	transition: color .25s ease, border-color .25s ease, background-color .25s ease, opacity .25s ease;
}

.gccc__next {
	margin-left: .5rem;
}

.gccc__arrow:not(.swiper-button-disabled):hover,
.gccc__arrow:not(.swiper-button-disabled):focus-visible {
	border-color: var(--gccc-accent);
	background: var(--gccc-accent);
	color: #fff;
}

.gccc__arrow.swiper-button-disabled {
	opacity: .32;
	cursor: default;
}

.gccc__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 10rem;
	height: 3.75rem;
	padding: .875rem 1.875rem;
	border: .125rem solid var(--gccc-line);
	border-radius: 1.875rem;
	background: #fff;
	color: var(--gccc-text) !important;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .025em;
	text-decoration: none !important;
	transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}

.gccc__more:hover,
.gccc__more:focus-visible {
	border-color: var(--gccc-accent);
	background: var(--gccc-accent);
	color: #fff !important;
}

.gccc__slider-wrap {
	position: relative;
	width: 100%;
}

.gccc__swiper {
	overflow: hidden;
	width: 100%;
	padding: 0;
}

.gccc__slide {
	height: auto;
}

.gccc__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-right: 6.061%;
	color: var(--gccc-text) !important;
	text-align: left !important;
	text-decoration: none !important;
}

.gccc__image {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding-bottom: 50%;
	border-radius: .75rem;
	background: #f1f1f1;
}

.gccc__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(64, 64, 64, .05);
	mix-blend-mode: multiply;
	pointer-events: none;
}

.gccc__image img,
.gccc__no-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.gccc__no-image {
	background: linear-gradient(135deg, #e9f5ee, #f8fbf9);
}

.gccc__card:hover .gccc__image img {
	transform: scale(1.035);
}

.gccc__category {
	align-self: flex-start;
	margin-top: 1.5rem;
	color: var(--gccc-accent);
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: .05em;
}

.gccc__title {
	margin: .5rem 0 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: .05em;
	text-align: left !important;
}

.gccc__tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.gccc__tag {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gccc__tag span {
	display: block;
	padding: .5rem 1.125rem;
	border: .125rem solid var(--gccc-accent);
	border-radius: 1.25rem;
	color: var(--gccc-accent);
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .05em;
}

.gccc__scrollbar.swiper-scrollbar {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	display: block !important;
	width: calc(100% - 11.111%) !important;
	height: .125rem !important;
	margin: clamp(6rem, 7vw, 9rem) 11.111% 0 0 !important;
	border-radius: .063rem !important;
	background: #f4f4f4 !important;
	transform: none !important;
}

.gccc__scrollbar .swiper-scrollbar-drag {
	border-radius: .063rem;
	background: var(--gccc-text);
}

.gccc__mobile-more {
	display: none;
}

.gccc-empty {
	margin: 1rem 0;
}

@media screen and (max-width: 767px) {
	.gccc__word {
		right: 2vw;
		bottom: 18vw;
		left: 2vw;
		font-size: 22vw;
	}

	.gccc__inner {
		padding: 19.2% 0 19.2% 6%;
	}

	.gccc__header {
		display: block;
		margin: 0 6% 3rem 0;
	}

	.gccc__heading-en {
		font-size: 2rem;
	}

	.gccc__heading-jp {
		margin-top: 1.25rem;
		font-size: .875rem;
		line-height: 1.8;
	}

	.gccc__navigation {
		display: none;
	}

	.gccc__card {
		margin-right: 6.977%;
	}

	.gccc__image {
		border-radius: .5rem;
	}

	.gccc__category {
		margin-top: 1.125rem;
		font-size: .75rem;
	}

	.gccc__title {
		margin-top: .375rem;
		font-size: .875rem;
	}

	.gccc__tags {
		gap: .25rem;
		margin-top: .75rem;
	}

	.gccc__tag span {
		padding: .375rem .625rem;
		border-radius: 1.031rem;
		font-size: .75rem;
	}

	.gccc__scrollbar.swiper-scrollbar {
		width: calc(100% - 6.383%) !important;
		margin: 4rem 6.383% 0 0 !important;
	}

	.gccc__mobile-more {
		display: block;
		margin: 3rem 6% 0 0;
		text-align: center;
	}

	.gccc__more {
		min-width: 9.5rem;
		height: auto;
		padding: .875rem 1.375rem;
		border-radius: 1.609rem;
		font-size: .875rem;
	}
}
