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

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

	@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 {
	grid-area: 1/1/2/2;

	@media screen and (max-width: 899px) {
		grid-area: unset;
		margin-bottom: 6.42vw;
		order: 1;
	}
}

.brand-concept-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;
}

.brand-concept__lead {
	font-size: 3.8cqw;
	font-weight: 600;
	letter-spacing: -.02em;
	text-align: left;
	color: var(--color-greyish);
	font-family: var(--font-family--en);
	display: flex;
	flex-direction: column;
	align-items: center;

	&:after {
		content: "=";
		display: block;
		width: 1em;
		line-height: 1;
		rotate: 90deg;
	}

	@media screen and (max-width: 899px) {
		font-size: 7.47vw;
	}
}

.brand-concept-image {
	width: 23.33cqw;

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

.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) {
		display: contents;

		picture {
			width: calc(100% + 5.33vw);
			margin-bottom: 8.82vw;
		}

		picture:nth-of-type(1) {
			order: 2;
			translate: -5.33vw 0;
		}

		picture:nth-of-type(2) {
			order: 4;
		}
	}
}

.brand-concept__image {
	width: 100%;

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

	}

	&:nth-of-type(2) {
		height: 41cqw;
		overflow: hidden;

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

		img {
			max-width: unset;
			width: auto;
			height: 100%;
			object-fit: cover;
			justify-self: center;

			@media screen and (max-width: 899px) {
				width: 100%;
				max-width: 100%;
				height: auto;
			}
		}
	}



}

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

	@media screen and (max-width: 899px) {
		display: contents;
	}
}

.brand-concept__body-item {
	@media screen and (max-width: 899px) {
		&:nth-of-type(1) {
			order: 3;
		}

		&:nth-of-type(2) {
			order: 5;
		}
	}
}

.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: 1em;
	}
}

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

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

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

		&:last-of-type {
			margin-bottom: 0;
		}
	}
}

.brand-concept__text {
	margin-bottom: 3em;
}

.brand-concept__title {
	font-size: 5.5cqw;
	font-weight: 400;
	margin-block: 0 1.25em;

	@media screen and (max-width: 899px) {
		font-size: 8.53vw;
	}
}

.brand-concept__features {
	display: grid;
	grid-template-columns: repeat(2, 180px);
	justify-content: start;
	gap: 30px;

	@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;
	transition-delay: calc(var(--delay-index, 0) * .2s);

	&:nth-of-type(2) {
		--delay-index: 1;
	}

	&:nth-of-type(3) {
		--delay-index: 2;
	}

	&:nth-of-type(4) {
		--delay-index: 3;
	}

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

.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;
}