@charset "utf-8";
/* CSS Document */

/* ------------------
 メインビジュアル
------------------ */
.top_mv {
	width: 100%;
	height: 494px;
	position: relative;
	@media screen and (max-width: 767px) {
		height: 420px;
	}
}
.top_mv--img {
	width: 100%;
	height: 100%;
	position: relative;
}
.top_mv--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_mv--txt {
	max-width: var(--contents-w);
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	margin-inline: auto;
	color: #fff;
	letter-spacing: 0.05em;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	margin-inline: auto;
	position: absolute;
	top: calc(50% - 30px);
	left: 0;
	right: 0;
	transform: translateY(-50%);
	@media screen and (max-width: 767px) {
		align-items: center;
		top: calc(50% - 25px);
	}
}
.top_mv--main {
	font-size: 4rem;
	font-weight: bold;
	@media screen and (max-width: 767px) {
		font-size: 2.6rem;
	}
}
.top_mv--main span {
	display: block;
	padding: 0 0.6em;
	border: 2px solid #fff;
	font-size: 4.4rem;
	font-weight: bold;
	margin: 0.1em 0 0.4em;
	@media screen and (max-width: 767px) {
		font-size: 2.8rem;
	}
}
.top_mv--sub {
	font-size: var(--font-20);
	font-weight: 500;
	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
	}
}

/* スライドショー */
.infinite_scroll {
	padding-bottom: 10px;
  display: flex;
  width: 100%;
  overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(50%);
}
.infinite_scroll--container {
	padding-right: 10px;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.infinite_scroll--item {
  width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	@media screen and (max-width: 767px) {
		width: 100px;
		height: 100px;
		padding: 10px;
	}
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.infinite_scroll--container:first-child {
  animation: loop 80s -40s linear infinite;
}

.infinite_scroll--container:last-child {
  animation: loop2 80s linear infinite;
}

/* 製品情報 */
.top_products {
	padding-top: calc(var(--space-65) + 65px);
}
.products_aside--list {
	margin: 0.5em auto 45px;
}
.products_aside--txt {
	color: #000;
}

/* 取扱メーカー一覧 */
.top_manufacturer {
	width: 100%;
	padding: 35px 0;
	background: #fff;
	position: relative;
}
.top_manufacturer .container {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-inline: auto;
	transform: translateY(-50%);
}
.top_manufacturer--box {
	max-width: 642px;
	width: 100%;
	padding: 45px 50px 50px;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	@media screen and (max-width: 767px) {
		padding: 25px 30px 30px;
	}
}
.top_manufacturer--img {
	width: 100%;
	height: 506px;
	display: flex;
	justify-content: flex-end;
	@media screen and (max-width: 767px) {
		height: 430px;
	}
}
.top_manufacturer--img img {
	width: 60%;
	height: auto;
	object-fit: cover;
	@media screen and (max-width: 767px) {
		width: 80%;
	}
}

/* link_cards */
.link_cards {
	width: 90%;
}
.link_cards--item {
	max-width: calc(100% / 3 - 40px  / 3);
	@media screen and (max-width: 767px) {
		max-width: calc(50% - 7.5px);
	}
}

/* お知らせ */
.top_news {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
	.top_news .cmn_heading{
		order: 1;
		width: 100%;
		padding-bottom: 0;
	}
	.top_news .more_btn {
		order: 3;
		width: 80%;
	}
}
.top_news--left {
	max-width: 188px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	@media screen and (max-width: 767px) {
		display: contents;
	}
}
.top_news--right {
	max-width: calc(100% - 218px);
	width: 100%;
	@media screen and (max-width: 767px) {
		max-width: 100%;
		order: 2;
	}
}


@media screen and (max-width: 767px){
}
@media print {
	body {
		max-width: 100%;
		width: 100%;
	}
}