/* antonioriva mainvisual
----------------------------------------------------------------------------- */
.antonioriva-mainvisual {
	position: relative;
	@media (width > 767px) {
		margin-top: var(--header-height-pc);
		height: calc(100vh - var(--header-height-pc));
	}
	@media (width <= 767px) {
		margin-top: var(--header-height-sp);
		height: calc(100vh - var(--header-height-sp));
	}
}

.antonioriva-mainvisual-gallery {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	@media (width > 767px) {
		padding: 1.2rem;
	}
}

.antonioriva-mainvisual-gallery .splide__track,
.antonioriva-mainvisual-gallery .splide__list {
	height: 100%;
}

.antonioriva-mainvisual-gallery .splide__list {
	list-style: none;
	padding: 0;
	margin: 0;
	@media (width > 767px) {
		visibility: visible;
	}
	@media (width > 767px) {
		display: flex;
		justify-content: center;
		gap: 0.8rem;
	}
}

.antonioriva-mainvisual-pict {
	height: 100%;
	@media (width > 767px) {
		width: 33.3333%;
	}
	&:nth-child(1) {
		/* dress02 / order:2 / 中央：上からフェード */
		@media (width > 767px) {
			order: 2;
		}
		img {
			@media (width > 767px) {
				animation-name: antonioriva-mainvisual-fade-down;
				animation-delay: 0.15s;
			}
		}
	}
	&:nth-child(2) {
		/* dress01 / order:1 / 左端：下から、最初に */
		@media (width > 767px) {
			order: 1;
		}
		img {
			@media (width > 767px) {
				animation-name: antonioriva-mainvisual-fade-up;
				animation-delay: 0s;
			}
		}
	}
	&:nth-child(3) {
		/* dress03 / order:3 / 右端：下から、最後に */
		@media (width > 767px) {
			order: 3;
		}
		img {
			@media (width > 767px) {
				animation-name: antonioriva-mainvisual-fade-up;
				animation-delay: 0.3s;
			}
		}
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 30%;
		@media (width > 767px) {
			opacity: 0;
			animation-duration: 1.4s;
			animation-fill-mode: forwards;
			animation-timing-function: cubic-bezier(0.23, 0, 0.01, 1.01);
		}
	}
}

@keyframes antonioriva-mainvisual-fade-up {
	from {
		opacity: 0;
		transform: translateY(6rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes antonioriva-mainvisual-fade-down {
	from {
		opacity: 0;
		transform: translateY(-6rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.antonioriva-mainvisual-gallery .splide__pagination {
	@media (width > 767px) {
		display: none;
	}
	@media (width <= 767px) {
		position: absolute;
		right: 1.6rem;
		bottom: 4rem;
		display: flex;
		flex-direction: column;
		gap: 0.8rem;
		list-style: none;
		z-index: 2;
	}
}

.antonioriva-mainvisual-gallery .splide__pagination__page {
	width: 3px;
	height: 4.8rem;
	background-color: var(--cc-white-A);
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	opacity: 1;
	transition: background-color 0.3s;
	&.is-active {
		background-color: var(--cc-pinkgold);
	}
}

.antonioriva-mainvisual-text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--cc-white);
	filter: blur(12px);
	opacity: 0;
	animation: antonioriva-mainvisual-text-deblur 1.2s ease-out 1s forwards;
	@media (width > 767px) {
	}
	@media (width <= 767px) {
		color: var(--cc-black-B);
		animation-delay: 0s;
		gap: 0.8rem;
	}
}

@keyframes antonioriva-mainvisual-text-deblur {
	from {
		filter: blur(12px);
		transform: scale(1.1);
		opacity: 0;
	}
	to {
		filter: none;
		transform: none;
		opacity: 1;
	}
}

.antonioriva-mainvisual-text-ja {
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0.2em;
	@media (width <= 767px) {
		font-size: 1rem;
		letter-spacing: 0;
	}
}

.antonioriva-mainvisual-text-en {
	font-family: var(--ff-loniki);
	font-size: 4.8rem;
	font-weight: var(--text-fw-en);
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	@media (width <= 767px) {
		font-size: 3.2rem;
		letter-spacing: 0.5rem;
	}
}

.antonioriva-mainvisual-text-sub {
	font-family: var(--ff-loniki);
	font-size: 3rem;
	font-weight: var(--text-fw-en);
	line-height: 1;
	letter-spacing: 0.1em;
	@media (width > 767px) {
		margin-top: 1.6rem;
	}
	@media (width <= 767px) {
		font-size: 1.8rem;
		letter-spacing: 0.5rem;
	}
}

/* antonioriva intro
----------------------------------------------------------------------------- */
.antonioriva-intro {
	@media (width > 767px) {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "content pict";
		max-width: 158.8rem;
		margin: 13rem auto 0;
	}
	@media (width <= 767px) {
		margin-top: 6.4rem;
	}
}

.antonioriva-intro-pict {
	display: block;
	@media (width > 767px) {
		grid-area: pict;
		height: 64.2rem;
	}
	@media (width <= 767px) {
		padding-inline: 1.6rem;
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		@media (width <= 767px) {
			height: auto;
			aspect-ratio: 343 / 274;
		}
	}
}

.antonioriva-intro-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	@media (width > 767px) {
		grid-area: content;
		justify-content: center;
	}
	@media (width <= 767px) {
		padding-top: 4.8rem;
	}
}

.antonioriva-intro-logo {
	display: block;
	@media (width > 767px) {
		width: 14rem;
		height: 14rem;
	}
	@media (width <= 767px) {
		width: 8rem;
		height: 8rem;
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.antonioriva-intro-text {
	display: flex;
	flex-direction: column;
	color: var(--cc-black-B);
	@media (width > 767px) {
		width: 49rem;
		margin-top: 7.2rem;
	}
	@media (width <= 767px) {
		margin-top: 3.2rem;
		align-items: center;
		text-align: center;
	}
}

.antonioriva-intro-heading {
	font-family: var(--ff-shuei);
	font-weight: 500;
	line-height: 2.4;
	letter-spacing: 0.2em;
	@media (width > 767px) {
		font-size: 1.8rem;
		margin-bottom: 3.6rem;
	}
	@media (width <= 767px) {
		font-size: 1.4rem;
		margin-bottom: 1.2rem;
	}
}

.antonioriva-intro-desc {
	font-weight: 500;
	line-height: 2.4;
	letter-spacing: 0;
	@media (width > 767px) {
		font-size: 1.4rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
	}
}

/* antonioriva author
----------------------------------------------------------------------------- */
.antonioriva-author {
	border-top: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
	@media (width > 767px) {
		max-width: 120rem;
		margin: 12rem auto 0;
		padding-block: 5.6rem;
	}
	@media (width <= 767px) {
		margin-top: 6.4rem;
		padding: 4rem;
	}
}

.antonioriva-author-box {
	display: flex;
	@media (width > 767px) {
		flex-direction: row;
		align-items: center;
		gap: 7.2rem;
	}
	@media (width <= 767px) {
		flex-direction: column;
		align-items: center;
		gap: 3.2rem;
	}
}

.antonioriva-author-pict {
	display: block;
	flex-shrink: 0;
	@media (width > 767px) {
		width: 33.4rem;
		height: 33.4rem;
	}
	@media (width <= 767px) {
		width: 24rem;
		height: 24rem;
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.antonioriva-author-bio {
	color: var(--cc-black-B);
	@media (width > 767px) {
		width: 69.8rem;
	}
	@media (width <= 767px) {
		width: 100%;
	}
}

.antonioriva-author-bio-head {
	display: flex;
	flex-direction: column;
	@media (width > 767px) {
		gap: 1.6rem;
		margin-bottom: 3.2rem;
	}
	@media (width <= 767px) {
		gap: 0.6rem;
		margin-bottom: 1.6rem;
	}
}

.antonioriva-author-role {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	line-height: 1;
	letter-spacing: 0.5rem;
	text-transform: uppercase;
	@media (width > 767px) {
		font-size: 2rem;
	}
	@media (width <= 767px) {
		font-size: 1.6rem;
	}
}

.antonioriva-author-name {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	letter-spacing: 0.5rem;
	text-transform: uppercase;
	@media (width > 767px) {
		font-size: 3rem;
		line-height: 1;
	}
	@media (width <= 767px) {
		font-size: 2rem;
		line-height: 1.8;
		letter-spacing: 0.4rem;
	}
}

.antonioriva-author-desc {
	font-weight: 500;
	letter-spacing: 0;
	line-height: 2.4;
	@media (width > 767px) {
		font-size: 1.4rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
	}
}

/* antonioriva value
----------------------------------------------------------------------------- */
.antonioriva-value {
	color: var(--cc-black-B);
	@media (width > 767px) {
		max-width: 140.1rem;
		margin: 13rem auto 0;
	}
	@media (width <= 767px) {
		margin-top: 6.4rem;
		padding-inline: 1.6rem;
	}
}

.antonioriva-value-intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	@media (width > 767px) {
		gap: 5.6rem;
		margin-bottom: 5.6rem;
	}
	@media (width <= 767px) {
		gap: 3.2rem;
		margin-bottom: 4.8rem;
	}
}

.antonioriva-value-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 1px solid #b3b3b3;
	border-right: 1px solid #b3b3b3;
	@media (width > 767px) {
		gap: 2.8rem;
		width: 32.3rem;
	}
	@media (width <= 767px) {
		gap: 1.8rem;
		width: 23rem;
	}
}

.antonioriva-value-en {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	line-height: 1;
	letter-spacing: 0.5rem;
	text-transform: uppercase;
	color: var(--cc-pinkgold);
	@media (width > 767px) {
		font-size: 3rem;
	}
	@media (width <= 767px) {
		font-size: 2rem;
		letter-spacing: 0.4rem;
	}
}

.antonioriva-value-ja {
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0;
	@media (width > 767px) {
		font-size: 1.2rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
	}
}

.antonioriva-value-quote {
	font-family: var(--ff-shuei);
	font-weight: 500;
	line-height: 2.4;
	letter-spacing: 0.2em;
	@media (width > 767px) {
		font-size: 1.8rem;
	}
	@media (width <= 767px) {
		font-size: 1.4rem;
	}
}

.antonioriva-value-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	@media (width > 767px) {
		flex-direction: row;
		gap: 4.8rem;
	}
	@media (width <= 767px) {
		flex-direction: column;
		gap: 3.2rem;
	}
}

.antonioriva-value-item {
	display: flex;
	flex-direction: column;
	@media (width > 767px) {
		flex: 1;
		gap: 3.2rem;
	}
	@media (width <= 767px) {
		gap: 2rem;
	}
}

.antonioriva-value-pict {
	display: block;
	@media (width > 767px) {
		height: 32.6rem;
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		@media (width <= 767px) {
			height: auto;
			aspect-ratio: 343 / 256;
		}
	}
}

.antonioriva-value-text-wrap {
	display: flex;
	flex-direction: column;
	@media (width > 767px) {
		gap: 1.6rem;
	}
	@media (width <= 767px) {
		gap: 1.2rem;
	}
}

.antonioriva-value-heading {
	font-family: var(--ff-shuei);
	font-weight: 500;
	text-align: center;
	line-height: 2.4;
	letter-spacing: 0.2em;
	@media (width > 767px) {
		font-size: 1.6rem;
	}
	@media (width <= 767px) {
		font-size: 1.4rem;
	}
}

.antonioriva-value-desc {
	font-weight: 500;
	line-height: 2.4;
	letter-spacing: 0;
	@media (width > 767px) {
		font-size: 1.4rem;
		padding: 0 2rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
	}
}

/* antonioriva lineup
----------------------------------------------------------------------------- */
.antonioriva-lineup {
	color: var(--cc-black-B);
	background-color: var(--cc-back);
	@media (width > 767px) {
		margin: 12rem auto 0;
		padding-top: 13.5rem;
		padding-bottom: 12rem;
	}
	@media (width <= 767px) {
		margin-top: 6.4rem;
		padding-top: 5.8rem;
		padding-bottom: 5.5rem;
	}
}

.antonioriva-lineup .dress-single-row-contents-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	@media (width > 767px) {
		justify-content: flex-start;
		max-width: 112rem;
		gap: 5.6rem 2rem;
		padding-top: 6.4rem;
	}
	@media (width <= 767px) {
		gap: 3.2rem 1.5rem;
		width: calc(100% - 4.8rem);
		padding-top: 5rem;
	}
}

.antonioriva-lineup .dress-single-row-contents-wrap {
	@media (width > 767px) {
		margin: 0 auto;
		max-width: 120rem;
		width: 100%;
	}

	.dress-single-row-contents-heading {
		display: flex;
		align-items: center;
		border-bottom: 1px solid var(--cc-line-A);
		line-height: 1;
		letter-spacing: 0;
		@media (width > 767px) {
			padding: 0 4rem 1.6rem;
			font-size: 1.2rem;
			column-gap: 2.4rem;
		}
		@media (width <= 767px) {
			flex-direction: column;
			width: calc(100% - 4.8rem);
			margin: 0 auto;
			padding: 1.6rem 0 2.5rem;
			font-size: 1rem;
			gap: 1.5rem;
			align-items: flex-start;
		}

		span {
			vertical-align: middle;
			&::before {
				line-height: 1;
				letter-spacing: 0.16em;
				padding-bottom: 0;
				@media (width > 767px) {
					font-size: 2.4rem;
				}
				@media (width <= 767px) {
					font-size: 2rem;
				}
			}
		}
	}
}

.antonioriva-lineup .dress-single-row-contents-item {
	position: relative;
	line-height: 1;
	@media (width > 767px) {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: 1fr auto auto;
		margin-bottom: auto;
		column-gap: 0.4rem;
		width: 20.8rem;

		@media (hover: hover) {
			&:hover {
				.-of:not(.no-back) > img {
					&.f {
						opacity: 0;
					}
					&.b {
						opacity: 1;
					}
				}
				.-of.no-back > img {
					&.f {
						opacity: 0.7;
					}
				}
			}
		}
	}
	@media (width <= 767px) {
		width: calc(100% / 2 - 0.8rem);
		&:nth-child(n + 7) {
			display: none;
		}
	}
}

.antonioriva-lineup .dress-single-row-contents-item.is-revealed {
	animation: antonioriva-lineup-fade-in 0.45s ease both;
}

@keyframes antonioriva-lineup-fade-in {
	from {
		opacity: 0;
		transform: translateY(0.8rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.antonioriva-lineup .dress-single-row-contents-item-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.antonioriva-lineup .dress-single-row-contents-item-pict {
	grid-column: 1 / -1;
	grid-row: 1;
	position: relative;
	pointer-events: none;
	aspect-ratio: 239 / 375;
	width: 100%;
	height: auto;
	margin-bottom: 1.6rem;
	@media (width <= 767px) {
		aspect-ratio: 156 / 244;
	}

	> img {
		position: absolute;
		top: 0;
		transition-property: opacity;
		transition-duration: 0.5s;
		width: 100%;
		height: auto;
		aspect-ratio: 239 / 375;
		@media (width <= 767px) {
			aspect-ratio: 156 / 244;
		}

		&.b {
			opacity: 0;
		}
	}
}

.antonioriva-lineup .dress-single-row-contents-mylist-btn {
	cursor: pointer;
	z-index: 2;
	@media (width > 767px) {
		grid-column: 2;
		grid-row: 2 / -1;
		place-self: start;
		position: relative;
	}
	@media (width <= 767px) {
		position: absolute;
		top: 20.6rem;
		right: 0;
		padding: 1.2rem;
	}

	span {
		display: block;
		width: 1.6rem;
		height: 1.4rem;

		> svg {
			overflow: visible;
			path {
				@media (width <= 767px) {
					fill: var(--cc-white-A);
				}
			}
		}
	}
}

.antonioriva-lineup
	.dress-single-row-contents-mylist-btn
	.dress-single-row-contents-mylist-full {
	display: none;
}

.antonioriva-lineup
	.dress-single-row-contents-mylist-btn.active
	.dress-single-row-contents-mylist-full {
	display: block;
}

.antonioriva-lineup
	.dress-single-row-contents-mylist-btn.active
	.dress-single-row-contents-mylist-empty {
	display: none;
}

.antonioriva-lineup .dress-single-row-contents-item-title {
	grid-column: 1;
	grid-row: 2;
	font-size: 1.4rem;
	color: var(--cc-black-B);
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	line-height: 1.4;
	letter-spacing: 0.14em;
	@media (width <= 767px) {
		font-size: 1.3rem;
		letter-spacing: 0.15em;
	}
}

.antonioriva-lineup .dress-single-row-contents-item-cat-box {
	grid-column: 1;
	grid-row: 3;
	margin-top: 0.4rem;
	display: flex;
	flex-direction: column;
	@media (width <= 767px) {
		margin-top: 0;
	}

	.dress-single-row-contents-item-cat-group {
		line-height: 1;

		&.-brand {
			.dress-single-row-contents-item-cat {
				font-family: var(--ff-loniki);
				font-weight: var(--text-fw-en);
				letter-spacing: 0.2em;
			}
		}
	}

	.dress-single-row-contents-item-cat-wrap {
		word-break: break-all;
		line-height: 1.2;
	}

	.dress-single-row-contents-item-cat {
		font-size: 1rem;
		color: var(--cc-icon-A);
		line-height: 1.2;
		&:not(:last-of-type) {
			&::after {
				content: "/";
				padding-right: 0.25rem;
			}
		}
	}
}

.antonioriva-lineup-btn {
	text-align: center;
	@media (width > 767px) {
		margin-top: 6.4rem;
	}
	@media (width <= 767px) {
		margin-top: 4.5rem;
	}
}

/* antonioriva contact
----------------------------------------------------------------------------- */
.antonioriva-contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--cc-back);
	border-top: 1px solid var(--cc-line-A);
	color: var(--cc-black-B);
	@media (width > 767px) {
		padding-block: 8rem;
		gap: 3.4rem;
	}
	@media (width <= 767px) {
		padding-block: 6rem;
		gap: 2.4rem;
	}
}

.antonioriva-contact-text {
	font-weight: 300;
	letter-spacing: 0;
	line-height: 2.4;
	text-align: center;
	@media (width > 767px) {
		font-size: 1.4rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
	}
}
