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


.c-mv__txt {
	margin-top: clamp(1.5rem,3vw,2rem);
	text-align: justify;
	width: auto;
}

.p-company {
	margin-top: clamp(3rem,6vw,10rem);
}

.p-company__link {
	grid-template-columns: repeat(2,1fr);
	gap: 6rem;
}

.p-company__link > dl {
	border-top: 1px solid #006DBF;
}

.p-company__link > dl > a > dt {
		@media (max-width: 767.98px) {
		height: 160px;
	}
}

.p-company__link > dl > a > dd {
	font-size: clamp(2rem,3vw,3rem);
	@media (max-width: 767.98px) {
		font-size: 2rem;
	}
}

.p-company .l-blue_txt_ttl {
	font-size: clamp(1.8rem,2.4vw,2.4rem);
	@media (max-width: 767.98px) {
		font-size: 1.8rem;
	}
}

.p-products__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 25px;
	column-gap: 25px;
	margin-top: 0;
	@media (max-width: 767.98px) {
	  grid-template-columns: repeat(1, minmax(0, 1fr));
	  row-gap: 25px;
	  /* width: calc(360 / 420 * 100 * var(--vw)); */
	  /* margin-inline: auto; */
	}
  }
  .p-products__card {
	  
  }
  .p-products__card-link {
	display: block;
	padding-block: 40px 35px;
	padding-inline: min(30px, 30 / 383 * 100%);
	border: 1px solid #007dc5;
	position: relative;
	isolation: isolate;
	transition: background 0.3s, color 0.3s, border 0.3s;
	&:hover {
		background: #0075C2;
		color: #fff;
		border: 1px solid #0075C2;
	}
	&:hover .p-products__card-title {
		color: #fff;
	}
  }
  .p-products__card-link::after {
	content: "";
	display: block;
	width: 20px;
	aspect-ratio: 1;
	background: linear-gradient(to right bottom, transparent calc(50% - 0.5px), #007dc5 calc(50% + 0.5px));
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	translate: -6px -6px;
	transition: translate 0.3s;
  }
  .p-products__card-link:hover::after {
	translate: none;
	background: linear-gradient(to right bottom, transparent calc(50% - 0.5px), #fff calc(50% + 0.5px));
  }
  .p-products__no-padding {
	padding: 0;
  }
  .p-products__card-title {
	margin-top: calc(3.3 / 20 * 1em);
	color: #007dc5;
	padding-bottom: 7px;
	font-weight: 700;
	line-height: calc(29 / 20);
	font-size: clamp(1.6rem,1.8vw,1.8rem);
	@media (max-width: 767.98px) {
	  font-size: 1.6rem;
	}
  }
  
  .p-products__card-title > small {
	  font-size: clamp(1.2rem,1.6vw,1.6rem);
	  @media (max-width: 767.98px) {
		font-size: 1.2rem;
	  }
  }
  
  
  .p-products__card-desc {
	margin-top: calc(0 / 50 * 1em);
	margin-bottom: 10px;
	line-height: calc(24 / 16);
	font-size: clamp(1.2rem,1.6vw,1.6rem);
	@media (max-width: 767.98px) {
	  font-size: 1.2rem;
	}
  }






