/* conceptページスタイル */

.brand-concept {
	padding-top: 6.67cqw;

	@media screen and (max-width: 899px) {
		padding-top: 5.33vw;
	}
}

.brand-concept__container {
	container-type: inline-size;
	align-items: start;
}

.brand-concept__inner {
	display: grid;
	grid-template-columns: 50cqw 40.83cqw;
	gap: 10.25cqw 0;
	justify-content: space-between;

	@media screen and (max-width: 899px) {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

.brand-concept__catch {
	font-family: var(--font-family--en);
	font-size: 9.33cqw;
	font-weight: 500;
	letter-spacing: -.02em;
	text-align: left;
	grid-area: 1/1/2/2;
	translate: 0 -2cqw;

	@media screen and (max-width: 899px) {
		translate: 0;
		grid-area: unset;
		margin-bottom: .727em;
		font-size: 14.67vw;
	}
}

.brand-concept__catch-line {
	display: block;
	line-height: .95;

	@media screen and (max-width: 899px) {
		line-height: 1;
	}
}

.brand-concept__images {
	grid-area: 1/2/4/3;
	display: flex;
	flex-direction: column;
	gap: 2.83cqw;

	@media screen and (max-width: 899px) {
		grid-area: unset;
		flex-direction: row;
		gap: 5.07vw;
		margin-bottom: 10.67vw;
	}
}

.brand-concept__image {
	width: 100%;

	@media screen and (max-width: 899px) {
		transition-delay: .5s;
	}
}

.brand-concept__body {
	grid-area: 2/1/3/2;

	@media screen and (max-width: 899px) {
		grid-area: unset;
	}
}

.brand-concept__logo {
	width: min(80.67%, 56.27vw);
	margin-bottom: min(12cqw, 10.67vw);
}

.brand-concept__headline {
	/* 375px-899px:18px-24px */
	font-size: clamp(1.125rem, 1.036rem + 0.38vw, 1.25rem);
	font-weight: 600;
	line-height: 1.67;
	letter-spacing: .05em;
	margin: 0 0 2em;

	@media screen and (max-width: 899px) {
		line-height: 2;
		margin-bottom: 1.667em;
	}
}

.brand-concept__description {
	display: grid;
	gap: 3.125em;
	font-size: var(--base-font-size);
	margin-bottom: 5em;

	@media screen and (max-width: 899px) {
		margin-bottom: 5.714em;
	}

	p {
		line-height: 2.3;
		letter-spacing: .05em;
	}
}

.brand-concept__features {
	display: grid;
	grid-template-columns: repeat(3, 15cqw);
	justify-content: space-between;

	@media screen and (max-width: 899px) {
		grid-template-columns: 48vw;
		gap: 8vw;
		justify-content: center;
	}
}

.brand-concept__feature {
	border: solid 1px var(--primary-color);
	aspect-ratio: 1;
	display: grid;
	place-content: center;
	border-radius: 50%;
	font-size: 1.312rem;
	gap: .423em;

	&:nth-of-type(2) {
		transition-delay: .2s;
	}

	&:nth-of-type(3) {
		transition-delay: .4s;
	}
}

.brand-concept__feature-title {
	text-align: center;
	font-size: 1em;
	font-weight: 400;

	.brand-concept__feature:not(:first-of-type) & {
		letter-spacing: 0.3em;
		margin-inline-start: 0.3em;
	}
}

.brand-concept__feature-text {
	font-size: 0.769em;
	text-align: center;
	line-height: 1.3;
	font-weight: 300;
}