@charset "UTF-8";
/* CSS Document */
/* ===============================

INDEXの開催報告スライダー

=============================== */
#report-slider {
	width: var(--flexible-width);
	margin-inline: auto;
}
/* =================
コンテナ */
.report__slide a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
/* -------------------
画像 */
.report__photo {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;

	aspect-ratio: 3 / 2;
	width: calc(336rem / 16);
	max-width: 100%;
}
.report__photo img {
	display: inline-block;
	will-change: transform;

	width: 100%;
	height: 100%;

	-webkit-transition: -webkit-transform 7s var(--easeOutSine);

	transition: -webkit-transform 7s var(--easeOutSine);

	transition: transform 7s var(--easeOutSine);

	transition: transform 7s var(--easeOutSine), -webkit-transform 7s var(--easeOutSine);
	-webkit-transition-delay: 2s;
	        transition-delay: 2s;
	-webkit-transform-origin: center center;
	        transform-origin: center center;
	-o-object-fit: cover;
	   object-fit: cover;
}
/* -------------------
テキスト */
.report__txt-box {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;

	padding: 2em var(--gutter-var-10x);
	width: min(
		calc(336rem / 16),
		50%
	);
	max-width: 100%;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 1.8em;
}
.report__heading {
	font-size: var(--txt-md);
	font-weight: 700;
	color: var(--color-main);
}
.report__txt {
	line-height: 1.8;
}
.report__button {
	-ms-flex-item-align: end;
	    align-self: flex-end;

	font-family: var(--alphabet);
	font-size: var(--txt-sm);
	font-weight: 400;
	color: var(--color-main-soft);
	border-bottom: 1px solid var(--color-main-soft);

	display: -webkit-inline-box;

	display: -ms-inline-flexbox;

	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 0.7em;
	   -moz-column-gap: 0.7em;
	        column-gap: 0.7em;
}
.report__button svg {
	width: 1em;
	height: 1em;
}
/* ------------------
アクティブアニメーション */
.report__photo {
	-webkit-transition: opacity .3s var(--easeInOutQuad);
	transition: opacity .3s var(--easeInOutQuad);
	opacity: 0;
}
.report__heading ,
.report__txt,
.report__button {
	-webkit-transition: opacity .3s var(--easeInOutQuad) , -webkit-transform .3s var(--easeInQuad);
	transition: opacity .3s var(--easeInOutQuad) , -webkit-transform .3s var(--easeInQuad);
	transition: transform .3s var(--easeInQuad) , opacity .3s var(--easeInOutQuad);
	transition: transform .3s var(--easeInQuad) , opacity .3s var(--easeInOutQuad) , -webkit-transform .3s var(--easeInQuad);
	-webkit-transform: translateX(20px);
	        transform: translateX(20px);
	opacity: 0;
}
.report__photo {
	-webkit-transition-delay: 0.35s;
	        transition-delay: 0.35s;
}
.report__heading,
.report__txt,
.report__button {
	-webkit-transition-delay: 0.55s;
	        transition-delay: 0.55s;
}
.report__slide[class*=-active] .report__photo {
	opacity: 1;
}
.report__slide[class*=-active] .report__heading ,
.report__slide[class*=-active] .report__txt,
.report__slide[class*=-active] .report__button {
	-webkit-transform: translateX(0);
	        transform: translateX(0);
	opacity: 1;
}
/* =================
ページネイション */
#report-slider .splide__pagination {
	position: static;
	margin-top: 30px;
}
#report-slider .splide__pagination__page:not(.is-active) {
	background-color: var(--color-main-pale);
}
/* =================
arrow */
#report-slider .splide__arrow svg {
	stroke-width: 3;
}
#report-slider .splide__arrow--prev {
	left: calc(0px - var(--gutter-var-xl));
}
#report-slider .splide__arrow--next {
	right: calc(0px - var(--gutter-var-xl));
}