/* 学会出店情報スタイル */

.gk-info {
	min-height: 100vh;
}

.gk-info__group {
	&+& {
		margin-top: min(80px, 16vw);
	}
}

.gk-info__year {
	margin: 0 0 min(30px, 5.33vw);
	/* 375px-899px:20px-26px */
	font-size: clamp(1.25rem, 0.982rem + 1.15vw, 1.625rem);
	line-height: 1;
	font-weight: 300;
}

.gk-info__list {
	display: grid;
	gap: min(30px, 5.33vw);
}

.gk-info__item {
	background-color: var(--color-white);
	border: 2px solid var(--primary-color);

	&.gk-info__item--past {
		background-color: #E0DDDD;
	}
}

.gk-info__link {
	display: block;
	font-size: 1rem;
	padding: 1.875em;

	@media screen and (max-width: 899px) {
		padding: 1.375em;
	}

	@media (hover: hover) {
		&:hover {
			opacity: .5;
		}
	}

	@media (hover: none) {
		&:active {
			opacity: .5;
		}
	}
}

.gk-info__text {
	display: grid;
	gap: 0.875em;
}


.gk-info__header {
	display: flex;
	gap: 0.438em;

	@media screen and (max-width: 899px) {
		flex-direction: column;
		gap: 0.875em;
	}
}

.gk-info__date {
	line-height: 1;
	font-feature-settings: "palt";
}

.gk-info__venue {
	line-height: 1;
}

.gk-info__title {
	font-size: 1rem;
	font-weight: 500;
	text-decoration: underline;
	line-height: 2;
}