@charset "utf-8";
html {
	scroll-padding-top: 125px;
  @media screen and (max-width: 767px) {
    scroll-padding-top: 135px;
  }
}

/* ページ内リンク */
.products_nav {
	width: 100%;
	padding: 0 20px 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	background: linear-gradient(to top, var(--main-color) 0%, var(--main-color) 80px, transparent 80px, transparent 100%);
	@media screen and (max-width: 767px) {
		gap: 50px 12px;
		padding-top: 35px;
	}
}
.products_nav--item {
	width: 118px;
	height: 143px;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	@media screen and (max-width: 767px) {
		max-width: calc(100% / 3 - 8px);
		width: 100%;
		height: 130px;
	}
}
.products_nav--item a {
	width: 100%;
	height: 100%;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
	text-align: center;
	position: relative;
	&::after {
		content: "";
		width: 10px;
		aspect-ratio: 1 / 1;
		border-right: 2px solid var(--main-color);
		border-bottom: 2px solid var(--main-color);
		position: absolute;
		bottom: 15px;
		left: 0;
		right: 0;
		margin-inline: auto;
		transform: rotate(45deg);
	}
	@media screen and (max-width: 767px) {
		padding: 0 5px;
		font-size: 1.4rem;
	}
}
.products_nav--item img {
	max-width: 80%;
	width: auto;
	max-height: 65px;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	text-align: center;
	margin-inline: auto;
	@media screen and (max-width: 767px) {
		max-width: 75%;
		max-height: 60px;
	}
}

/* 製品情報 */
.products_container {
	width: 100%;
	padding: var(--space-65) 0;
	position: relative;
	&::before {
		content: "";
		max-width: 43%;
		width: 558px;
		aspect-ratio: 1 / 1;
		display: block;
		clip-path: polygon(100% 0, 0 0, 0 100%);
		background: #D0D0D0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
}
.products_item {
	max-width: 1024px;
	width: 90%;
	padding: 50px 65px;
	border-top: 2px solid var(--main-color);
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	background: #F5F5F5;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
	margin: var(--space-65) auto 105px;
	&:last-child {
		margin-bottom: 0;
	}
	@media screen and (max-width: 767px) {
		padding: 35px;
		margin: 65px auto;
	}
}
.products_item--right {
	max-width: calc(100% - 434px);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	@media screen and (max-width: 767px) {
		max-width: 100%;
	}
}
.products_item--name {
	font-size: var(--font-24);
	font-weight: bold;
}
.products_item .more_btn {
	max-width: 194px;
	margin-left: 0;
}
.products_item--img {
	transform: translateY(-90px);
	margin-bottom: -90px;
}

/* 調達について */
.procurement.bg_section {
	padding: var(--space-65) 5%;
	background: url(../img/bg_img.webp) no-repeat center bottom / cover;
}
.procurement_lead {
	width: 100%;
	padding-bottom: 2em;
	font-size: var(--font-20);
	font-weight: bold;
	text-align: center;
}
.procurement_list {
	max-width: 1024px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-20);
	margin: var(--space-65) auto 0;
	counter-reset: num 0;
	@media screen and (max-width: 767px) {
		margin: 65px auto 0;
		gap: 45px 15px;
	}
}
.procurement_item {
	max-width: calc(100% / 3 - 40px / 3);
	width: 100%;
	padding: 40px 5% 25px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
	text-align: center;
	position: relative;
	&::before {
		counter-increment: num 1;
		content: '0' counter(num);
		font-family: "Advent Pro", sans-serif;
    font-style: italic;
		font-size: 6.4rem;
		line-height: 1;
		color: var(--main-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(-65%);
    margin-inline: auto;
	}
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 7.5px);
    &::before {
      font-size: 5.4rem;
    }
  }
}

/* 取り扱いメーカーはこちらボタン */
.more_btn {
	width: 80%;
}