.swiper.swiper-visual {
	width: 100vw;
	height: calc(100dvh - var(--masthead-height) - var(--wp-admin--admin-bar--height) - var(--spfloatmenu-height));
	margin-inline-start: calc(50% - 50vw);

	@media screen and (0px <= width <= 767px) {
		max-height: 500px;
	}

	.swiper-slide {
		width: 100%;
		height: 100%;
		background-color: var(--wp--preset--color--white);
		&.swiper-slide-active img,
		&.swiper-slide-prev img,
		&.swiper-slide-duplicate-active img {
			animation: slide-pc 10s linear 0s 1 normal both;
		}
		@media screen and (0px <= width <= 767px) {
			&.swiper-slide-active img,
			&.swiper-slide-prev img,
			&.swiper-slide-duplicate-active img {
				animation: slide-md 10s linear 0s 1 normal both;
			}
		}
		img {
			display: block;
			width: 60%;
			height: 100%;
			margin-inline-start: auto;
			object-fit: cover;
			object-position: 0%;
			border-radius: 50px 0 0 50px;
			@media screen and (0px <= width <= 767px) {
				width: 80%;
				object-position: 30%;
			}
		}
	}

	+ .wp-block-group {
		margin-block-start: 0;
	}
}
@keyframes slide-pc {
	0% {
		object-position: 0%;
	}
	100% {
		object-position: 100%;
	}
}
@keyframes slide-md {
	0% {
		object-position: 30%;
	}
	100% {
		object-position: 80%;
	}
}
.swiper-text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	.content {
		width: 100%;
		max-width: var(--wp--custom--container--lv-1);
		@media screen and (0px <= width <= 767px) {
			max-width: calc(100% - 2rem);
		}
		.fit-content {
			width: fit-content;
			border-radius: 1rem;
			padding: var(--wp--preset--spacing--50);
			text-shadow:
				0 0 4px var(--wp--preset--color--white),
				0 0 8px var(--wp--preset--color--white),
				1px 0 0 var(--wp--preset--color--white),
				-1px 0 0 var(--wp--preset--color--white),
				0 1px 0 var(--wp--preset--color--white),
				0 -1px 0 var(--wp--preset--color--white),
				1px 1px 0 var(--wp--preset--color--white),
				-1px 1px 0 var(--wp--preset--color--white),
				1px -1px 0 var(--wp--preset--color--white),
				-1px -1px 0 var(--wp--preset--color--white);
		}
	}
	.swiper-primary-text {
		color: var(--wp--preset--color--primary);
		font-size: var(--wp--preset--font-size--four-xl);
		font-family: var(--wp--preset--font-family--alto-01);
		line-height: 1.2;
		text-transform: uppercase;
		@media screen and (0px <= width <= 767px) {
			font-size: var(--wp--preset--font-size--three-xl);
		}

		span {
			color: var(--wp--preset--color--secondary);
			font-weight: 700;
		}
	}
	.swiper-secondary-text {
		color: var(--wp--preset--color--dark-02);
		font-size: var(--wp--preset--font-size--xl);
		font-family: var(--wp--preset--font-family--alto-01);
		@media screen and (0px <= width <= 767px) {
			font-size: var(--wp--preset--font-size--md);
		}
	}
}

/* My Calendar */
.mc-main {
	.heading.my-calendar-month {
		font-weight: 700;
		font-size: var(--wp--preset--font-size--two-xl);
		margin-block: 0;
	}

	table.my-calendar-table {
		width: 100%;
		border-collapse: collapse;
		border-spacing: 0;

		th,
		td {
			padding: 0;
			vertical-align: top;
			border: 1px solid var(--wp--preset--color--dark-02);
		}

		.day-heading,
		.weekend-heading {
			padding: 0.5rem 1rem;
			text-align: center;
			background-color: var(--wp--preset--color--primary);

			abbr {
				color: var(--wp--preset--color--white);
				text-decoration: none;
			}
		}

		.day-with-date.no-events {
			height: 30px;
		}

		.day-with-date.past-day {
			background-color: var(--wp--preset--color--dark-03);
			opacity: 0.2;
			.mc-events {}
		}

		.day-with-date.current-day {
			background-color: color-mix(in srgb, var(--wp--preset--color--secondary) 20%, #fff);
			outline: 2px solid var(--wp--preset--color--secondary);
		}

		.day-with-date .mc-date-container {
			width: 100%;
			padding: 0;
			line-height: 1;
			text-align: center;

			.mc-date {
				display: block;
				color: var(--wp--preset--color--dark-01);
				font-family: var(--wp--preset--font-family--alto-02);
				padding-block-start: var(--wp--preset--spacing--20);
				.mc-day-number {
					display: block;
				}
			}
		}

		.calendar-event {
			padding: var(--wp--preset--spacing--20);

			.event-title {
				text-align: center;
				margin-block: 0;
				line-height: 1;
			}
		}
	}

	.screen-reader-text {
		display: none;
	}

	.event-icon {
		display: none;
	}

	.mc-list-details {
		display: none !important;
	}
}
