
body, html {
	overflow-x: clip;
	overflow-y: visible;
}
.index-default-list {
	display: grid;
	width: 1300px;
	margin: 0 auto;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 40px;
}

.index-default-list .c-default-card {
	display: flex;
	width: 100%;
}

.c-default-card {
	position: relative;
}

index-default-list .c-default-card .c-default-card__link {
	width: 100%;
}

.c-default-card__link {
	text-decoration: none;
	color: #222;
	position: relative;
	display: block;
	padding: 10px 10px 80px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: border-color .3s ease;
}



.c-default-card__title {
	margin-top: 8px;
	font-size: 1.125rem;
	font-weight: 700;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.5;
}


.c-default-card__link {
	position: relative;
	display: block;
}


.c-default-card__link::after {
	content: "";
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background: #c92828;
	border-radius: 50%;
	transition: .3s;
}


.c-default-card__link::before {
	content: "";
	position: absolute;
	right: 35px;
	bottom: 34px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
	z-index: 2;
	transition: .3s;
}


.c-default-card__link:hover::after {
	background: #fff;
}

.c-default-card__link:hover::before {
	border-color: #c92828;
}

.c-default-card {
  display: flex;
  height: 100%;
}
.c-default-card.-wide {
  width: 1300px;
  margin: 0 auto;
  margin-top: 20px;
}

.c-default-card.-wide .c-default-card__link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 10px;
  gap: 24px 40px;
}

.c-default-card__link {
  flex: 1 1 auto;
  flex-direction: column;
  display: flex;
}

.c-default-card.-wide .c-default-card__body {
  padding: 30px 30px 60px 0;
  width: 100%;
}


.c-default-card.-wide .c-default-card__title {
  font-size: 1.5rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.index-default-list {
		display: block;
		width: 100%;
	}

	.index-default-list .c-default-card {
		margin-bottom: 10px;
	}
	
	.c-default-card.-wide {
		width: 100%;
	}
	.c-default-card.-wide .c-default-card__link {
		display: block;
	}
	.c-default-card.-wide .c-default-card__title {
		font-size: 1.125rem;
	}
}