@charset "UTF-8";

.edit-area.products {
	padding-top: 19rem;
	@media screen and (max-width: 767px) {
		padding-top: 4rem;
	}
}

#contents {
	padding-bottom: 10rem;
	background: #f4f5f6;

	@media screen and (max-width: 767px) {
		padding-bottom: 4rem;
	}
}

.common-section-button {
	position: relative;
	width: 27.3rem;
	height: 6.9rem;
	box-sizing: border-box;
	border: 2px solid #000000;
	padding: 1.5rem 2rem;
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	transition:
		0.3s background,
		0.3s color;

	&:hover {
		color: #fff;
		background: #000000;

		.dli-chevron-round-right {
			color: #fff;
		}
	}

	@media screen and (max-width: 767px) {
		width: 100%;
		height: 5rem;
		padding: 1rem 1.5rem;
		font-size: 1.6rem;
	}

	.dli-chevron-round-right {
		position: relative;
		right: auto;
	}
}

/* edit css */
/* h2 */
.products-area {
	& h2 {
		position: relative;
		margin-bottom: 2rem;
		padding-left: 1.7rem;
		font-weight: bold;
		font-size: 2.2rem;
		letter-spacing: 0.1em;
		line-height: 1.5;
		color: #000;
		@media screen and (max-width: 767px) {
			margin-bottom: 1rem;
			padding-left: 1.2rem;
			font-size: 1.7rem;
			letter-spacing: 0.05em;
		}

		&:after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
			width: 0.4rem;
			height: 100%;
			background: #e92629;
		}
		@media screen and (max-width: 767px) {
			&:after {
				width: 0.3rem;
			}
		}
	}

	/* h3 */
	& h3 {
		position: relative;
		margin-bottom: 2rem;
		padding: 0 0 1rem;
		font-size: 2rem;
		letter-spacing: 0.1em;
		line-height: 180%;
		@media screen and (max-width: 767px) {
			margin-bottom: 1rem;
			padding: 0 0 0.5rem;
			font-size: 1.6rem;
			line-height: 160%;
		}
		&:after {
			content: "";
			position: absolute;
			left: 0;
			bottom: 0;
			display: block;
			width: 4rem;
			height: 0.3rem;
			background: #e92629;
		}
	}
	/* h4 */
	& h4 {
		margin-bottom: 1rem;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		line-height: 160%;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	/* h5 */
	& h5 {
		position: relative;
		margin-bottom: 1rem;
		padding-left: 1.8rem;
		font-weight: bold;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	& h5:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 1.4rem;
		height: 1.4rem;
		background: #e92629;
	}
	/* h6 */
	& h6 {
		margin-bottom: 1rem;
		font-weight: bold;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	/* p */
	& p {
		margin-bottom: 3rem;
		font-weight: bold;
		letter-spacing: 0.05em;
		line-height: 2;
		@media screen and (max-width: 767px) {
			margin-bottom: 1.5rem;
			line-height: 160%;
		}
	}
	/* ul */
	& ul {
		margin-bottom: 2rem;
		& li {
			position: relative;
			padding-left: 1rem;
			font-weight: bold;
			line-height: 2;
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 1.3rem;
				display: block;
				width: 0.6rem;
				height: 0.6rem;
				border-radius: 0.3rem;
				background: #e92629;
			}
		}
	}
	/* ol */
	& ol {
		margin-bottom: 2rem;
		counter-reset: number 0;
		& li {
			position: relative;
			padding-left: 2rem;
			line-height: 2;
			font-weight: bold;
			counter-increment: number 1;
			&:after {
				content: counter(number) ".";
				position: absolute;
				left: 0;
				top: 0.8rem;
				display: block;
				color: #e92629;
				font-size: 1.4rem;
				line-height: 100%;
			}
		}
	}
	/* img float */
	& img.alignleft {
		float: left;
		margin: 0.8rem 1rem 1rem 0;
		@media screen and (max-width: 767px) {
			float: none;
			display: block;
			margin: 0 auto 1rem;
		}
	}
	& img.aligncenter {
		display: block;
		margin: 0 auto 2rem;
	}
	& img.alignright {
		float: right;
		margin: 0.8rem 0 1rem 1rem;
	}
	@media screen and (max-width: 767px) {
		& img.alignright {
			float: none;
			display: block;
			margin: 0 auto 1rem;
		}
	}
	& img {
		vertical-align: top;
		max-width: 100%;
		height: auto;
	}
	/* blockquote */
	& blockquote {
		position: relative;
		margin: 0 0 3rem 3rem;
		padding-left: 6rem;
		font-size: 1.4rem;
		line-height: 180%;
		@media screen and (max-width: 767px) {
			margin: 0 0 1.5rem 0;
			padding-left: 4rem;
			line-height: 160%;
		}
		&:after,
		&:before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
		}
		&:after {
			top: 0.5rem;
			width: 0.2rem;
			height: 5rem;
			background: #ccc;
		}
		&:before {
			content: "“";
			position: absolute;
			left: 1rem;
			top: -0.5rem;
			color: #ccc;
			font-size: 6rem;
			line-height: 100%;
		}
	}
}

.single-seihin-intro {
}

.seihin-container {
	padding-bottom: 7rem;

	@media screen and (max-width: 767px) {
		padding-bottom: 4rem;
	}
}

.ssi-container {
	display: flex;
	gap: 5rem;
	padding-bottom: 9rem;

	@media screen and (max-width: 767px) {
		flex-direction: column;
		gap: 2rem;
		padding-bottom: 4rem;
	}
}

.ssi-img {
	width: 40%;

	& img {
		width: 100%;
		object-fit: scale-down;
		object-position: center center;
	}

	@media screen and (max-width: 767px) {
		width: 100%;
	}
}

.ssi-text {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;

	@media screen and (max-width: 767px) {
		width: 100%;
	}
}

.ssi-title {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.4;
	letter-spacing: 0.08em;
	color: #000000;
	margin-bottom: 2.4rem;

	@media screen and (max-width: 767px) {
		font-size: 2.4rem;
		margin-bottom: 1.6rem;
	}
}

.ssi-divider {
	border: none;
	border-top: 1px solid #cccccc;
	margin: 0 0 2.4rem 0;

	@media screen and (max-width: 767px) {
		margin-bottom: 1.6rem;
	}
}

.ssi-desc {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.6rem;
	letter-spacing: 0.08em;
	font-feature-settings: "palt" on;
	color: #000000;
	margin-bottom: 2.4rem;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		margin-bottom: 1.6rem;
	}
}

/* .ssi-desc p {
    margin-bottom: 1.2rem;
} */

/* .ssi-desc p:last-child {
    margin-bottom: 0;
} */

.supplier-related-link {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 2.4rem;

	@media screen and (max-width: 767px) {
		margin-top: 1.6rem;
		gap: 1rem;
	}
}

.supplier-related-link-label {
	display: inline-block;
	background: #000000;
	padding: 0.8rem 1.6rem;
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.8rem;
	letter-spacing: 0.08em;
	font-feature-settings: "palt" on;
	color: #ffffff;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		padding: 0.6rem 1.2rem;
	}
}

.supplier-related-link-url {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.8rem;
	letter-spacing: 0.08em;
	color: #000000;
	text-decoration: none;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}

.supplier-related-link-url:hover {
	text-decoration: underline;
}

.pdf-btn-box {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 3rem;

	@media screen and (max-width: 767px) {
		flex-direction: column;
		gap: 1rem;
		position: relative;
	}
}

.single-seihin-description {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	position: relative;

	.pdf-btn-box {
		position: relative;
		margin-top: 6rem;
		display: flex;
		justify-content: center;
	}

	@media screen and (max-width: 767px) {
		gap: 2rem;

		.pdf-btn-box {
			margin-top: 0;
		}
	}
}

.ssd-container {
	display: flex;
	flex-direction: column;
	width: 100%;

	@media screen and (max-width: 767px) {
		flex-direction: column;
		gap: 2rem;
	}
}

.supplier-area {
	& h2 {
		position: relative;
		margin-bottom: 2rem;
		padding-left: 1.7rem;
		font-weight: bold;
		font-size: 2.2rem;
		letter-spacing: 0.1em;
		line-height: 1.5;
		color: #000;
		@media screen and (max-width: 767px) {
			margin-bottom: 1rem;
			padding-left: 1.2rem;
			font-size: 1.7rem;
			letter-spacing: 0.05em;
		}

		&:after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
			width: 0.4rem;
			height: 100%;
			background: #e92629;
		}
		@media screen and (max-width: 767px) {
			&:after {
				width: 0.3rem;
			}
		}
	}

	& h3 {
		position: relative;
		margin-bottom: 2rem;
		padding: 0 0 1rem;
		font-size: 2rem;
		letter-spacing: 0.1em;
		line-height: 180%;
		@media screen and (max-width: 767px) {
			margin-bottom: 1rem;
			padding: 0 0 0.5rem;
			font-size: 1.6rem;
			line-height: 160%;
		}
		&:after {
			content: "";
			position: absolute;
			left: 0;
			bottom: 0;
			display: block;
			width: 4rem;
			height: 0.3rem;
			background: #e92629;
		}
	}
	& h4 {
		margin-bottom: 1rem;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		line-height: 160%;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	& h5 {
		position: relative;
		margin-bottom: 1rem;
		padding-left: 1.8rem;
		font-weight: bold;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	& h5:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 1.4rem;
		height: 1.4rem;
		background: #e92629;
	}
	& h6 {
		margin-bottom: 1rem;
		font-weight: bold;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	& p {
		margin-bottom: 3rem;
		font-weight: bold;
		letter-spacing: 0.05em;
		line-height: 2;
		@media screen and (max-width: 767px) {
			margin-bottom: 1.5rem;
			line-height: 160%;
		}
	}
	& ul {
		margin-bottom: 2rem;
		& li {
			position: relative;
			padding-left: 1rem;
			font-weight: bold;
			line-height: 2;
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 1.3rem;
				display: block;
				width: 0.6rem;
				height: 0.6rem;
				border-radius: 0.3rem;
				background: #e92629;
			}
		}
	}
	& ol {
		margin-bottom: 2rem;
		counter-reset: number 0;
		& li {
			position: relative;
			padding-left: 2rem;
			line-height: 2;
			font-weight: bold;
			counter-increment: number 1;
			&:after {
				content: counter(number) ".";
				position: absolute;
				left: 0;
				top: 0.8rem;
				display: block;
				color: #e92629;
				font-size: 1.4rem;
				line-height: 100%;
			}
		}
	}
	& img.alignleft {
		float: left;
		margin: 0.8rem 1rem 1rem 0;
		@media screen and (max-width: 767px) {
			float: none;
			display: block;
			margin: 0 auto 1rem;
		}
	}
	& img.aligncenter {
		display: block;
		margin: 0 auto 2rem;
	}
	& img.alignright {
		float: right;
		margin: 0.8rem 0 1rem 1rem;
	}
	@media screen and (max-width: 767px) {
		& img.alignright {
			float: none;
			display: block;
			margin: 0 auto 1rem;
		}
	}
	& img {
		vertical-align: top;
		max-width: 100%;
		height: auto;
	}
	& blockquote {
		position: relative;
		margin: 0 0 3rem 3rem;
		padding-left: 6rem;
		font-size: 1.4rem;
		line-height: 180%;
		@media screen and (max-width: 767px) {
			margin: 0 0 1.5rem 0;
			padding-left: 4rem;
			line-height: 160%;
		}
		&:after,
		&:before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
		}
		&:after {
			top: 0.5rem;
			width: 0.2rem;
			height: 5rem;
			background: #ccc;
		}
		&:before {
			content: "\201C";
			position: absolute;
			left: 1rem;
			top: -0.5rem;
			color: #ccc;
			font-size: 6rem;
			line-height: 100%;
		}
	}
}

.sono-hoka {
	padding-top: 9rem;
	padding-bottom: 7.5rem;
	background: #f4f5f6;
}

.sono-hoka-title {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	font-size: 3.2rem;
	letter-spacing: 0.08em;
	color: #000000;
	padding-bottom: 5rem;
}

.product-and-service {
	background: #f4f5f6;
	padding: 9rem 0;
	padding-bottom: 4rem;

	@media screen and (max-width: 767px) {
		padding: 4rem 0;
		padding-bottom: 2rem;
	}
}

.common-list.products {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 4rem;
	margin-top: 4rem;
	@media screen and (max-width: 767px) {
		gap: 1rem;
	}
}
.common-list.products .seihin-list {
	margin-bottom: 0;
}

.product-and-service-header {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 4rem;

	@media screen and (max-width: 767px) {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.6rem;
		margin-bottom: 2.4rem;
	}
}

.product-and-service-logo {
	flex-shrink: 0;
	max-width: 12rem;
	max-height: 6rem;

	img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 6rem;
		object-fit: contain;
	}

	@media screen and (max-width: 767px) {
		max-width: 10rem;
		max-height: 5rem;

		img {
			max-height: 5rem;
		}
	}
}

.common-section-btn {
	/* position: absolute; */
	position: relative;
	/* right: 0; */
	/* bottom: 0; */
	display: flex;
	align-items: center;
	box-sizing: border-box;
	border: 2px solid #000;
	width: 30.7rem;
	height: 6.9rem;
	padding: 1.6rem 2.1rem;
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	/* line-height: 4rem; */
	letter-spacing: 0.05em;
	color: #000;
	text-decoration: none;
	cursor: pointer;
	transition: 0.3s background;
	margin: auto;
	margin-top: 5rem;

	&:hover {
		color: #fff;
		background-color: #000;

		.dli-chevron-round-right {
			color: #fff;
		}
	}

	@media screen and (max-width: 767px) {
		width: 60%;
		height: 4.5rem;
		padding: 1rem 1.5rem;
		font-size: 1.4rem;
		line-height: 2.4rem;
		letter-spacing: 0.05em;
		margin-top: 3rem;
	}
}

.dli-chevron-round-right {
	display: inline-block;
	vertical-align: middle;
	color: #000;
	line-height: 1;
	position: relative;
	width: 1rem;
	height: 1rem;
	position: absolute;
	right: 2.1rem;
	transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
	content: "";
	position: absolute;
	background: currentColor;
	border-radius: 0.1em;
}

.dli-chevron-round-right::before {
	top: 0;
	left: 0;
	right: 0;
	height: 0.1em;
}

.dli-chevron-round-right::after {
	top: 0;
	right: 0;
	bottom: 0;
	width: 0.1em;
}

/* copy from archive-common css */
.supplier-title {
	&.type01 {
		width: 100%;
		background: #000000;
		border-radius: 26.5px;
		padding: 1.5rem 2rem;
		font-family: "Noto Sans JP";
		font-style: normal;
		font-weight: 700;
		font-size: 2.2rem;
		line-height: 2.2rem;
		letter-spacing: 0.08em;
		font-feature-settings: "palt" on;
		color: #ffffff;

		@media screen and (max-width: 767px) {
			margin-bottom: 1.5rem;
			padding: 1rem 2rem;
			font-size: 1.6rem;
			line-height: 1.2;
		}
	}

	&.type02 {
		position: relative;
		margin: 3rem 0;
		padding-left: 2.4rem;
		font-size: 2rem;
		font-weight: bold;
		letter-spacing: 0.08em;
		@media screen and (max-width: 767px) {
			margin: 2rem 0;
			padding-left: 2rem;
			font-size: 1.7rem;
		}

		&:before{
			content: "";
			position: absolute;
			left: 0;
			top: 0.4rem;
			z-index: 1;
			display: block;
			width: 1.4rem;
			height: 1.4rem;
			background: #e92629;
		}
		@media screen and (max-width: 767px) {
			&:before{
				left: 0.4rem;
				width: 1rem;
				height: 1rem;
			}
		}
	}
}
