@charset "utf-8";
/* CSS Document */

.block-section a {
  display: block;
  height: 100%;
}

.block-section .card {
  height: 100%;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.block-section a:hover .card {
  transform: scale(1.03);
  background-color: #f8f9fa; /* Bootstrap gray-100 */
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

.card{
	color: #212529;
	
}
.card-title{
	font-size: 1.8rem;
	font-weight: bold;
	padding: 1rem;
	color: #FFF;
	border-bottom: dotted 1px #212529;
	min-height: 8.0rem;
	background: #FDA007;
}
.card-text{
	padding: 0 1rem 1rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	
}
.card-text p:last-child {
	margin-top: auto;
	color: #0d6efd;
	text-align: right;
}

/* ///////（タブレット）//////// */
@media (min-width: 768px) {
	
}

/* ///////（PC）//////// */
@media (min-width: 1024px) {
	
}
