@charset "UTF-8";
/* 納品実績スタイルシート */

section#record-garally {
	margin-bottom: 80px;
}

section#record-garally .garally-list {
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 32px 12px;
	& .garally-item {
		flex-flow: column;
		justify-content: start;
		align-items: start;
		width: calc(50% - 6px);
	}
	& .garally-item .img-wrapper {
		margin-bottom: 4px;
		aspect-ratio: 3 / 2;
		cursor: pointer;
	}
	& .garally-item .img-wrapper img {
		object-fit: cover;
		border-radius: 2px;
	}
	& .garally-item p.title,
	& .garally-item p.text {
		word-break: keep-all;
		overflow-wrap: break-word;
	}
	& .garally-item p.title {
		margin-bottom: 4px;
		font-size: 1.2em;
		font-family: var(--zen);
		font-weight: 700;
		line-height: 1.4;
		color: var(--blue);
	}
}

@media print, screen and (min-width: 764px) {
	section#record-garally .garally-list {
		gap: 52px 36px;
		& .garally-item {
			width: calc(100% / 3 - 27px);
		}
		& .garally-item .img-wrapper {
			margin-bottom: 8px;
		}
		& .garally-item p.title,
		& .garally-item p.text {
			text-align: center;
		}
	}
}