<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";



.infomative-table .modal {
	opacity: 0;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	transition: opacity 0.3s;
	z-index: -1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.infomative-table .modal.open {
	opacity: 1;
	z-index: 999;
}

.infomative-table .modal__content {
	background-color: #ffffff;
	width: 50%;
	box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
	padding: 50px;
	position: relative;
	text-align: left;
}

.icon__button {
	cursor: pointer;
	color: #6f6f6f;
	transform: scale(1);
	transition: all 0.3s;
}

.icon__button:hover {
	transform: scale(1.3);
}

.infomative-table .modal__close {
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 20px;
}

.intro {
	text-align: center;
	width: 65%;
	margin: 0 auto 30px;
}

.intro__title {
	font-size: 2.4rem;
	margin-bottom: 20px;
}

.service__table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	margin: 30px 0;
}

.service__table thead th {
	background: #e5e5e5;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
}

.service__table tbody td {
	padding: 10px 20px;
	background: #fafafa;
	border-bottom: solid 2px #d7d7d7;
	text-align: center;
	vertical-align: middle;
}

.service__table tbody td.no__border {
	border-bottom: none;
}

.service__table tbody td.text__center {
	text-align: center;
}

.service__table tbody td img {
	height: 20px;
	width: auto;
	margin: 0 auto;
}

.classification {
	padding: 10px 20px;
	color: #fff;
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	border-radius: 100px;
	line-height: 1;
	margin-bottom: 5px;
}

.classification:last-of-type {
	margin-bottom: 0;
}

.classification.strictly__necessary {
	background: #ccd547;
}

.classification.performance {
	background: #2c98da;
}

.classification.functional {
	background: #fa8231;
}

.classification.targeting {
	background: #fd5b65;
}

.classification.social__media {
	background: #f7b731;
}

.classification.unknown {
	background: #a5b1c2;
}

.classification.onetrust {
	background: #6cc04a;
}

.infomative-table .modal__title {
	padding-bottom: 10px;
	border-bottom: solid 2px #f3f3f3;
}

.infomative-table .modal__company__names {
	font-size: 2rem;
	padding-right: 20px;
}

.infomative-table .modal__service_names {
	font-size: 2.4rem;
}

.infomative-table .modal__sub__title {
	font-size: 1.6rem;
	margin-bottom: 10px;
	margin-top: 30px;
}

.infomative-table .modal__in__content {
	border-radius: 5px;
	border: solid 2px #c2c2c2;
	background: #f2f2f2;
	padding: 10px;
	min-height: 100px;
	max-height: 25vh;
	overflow: auto;
}


@media screen and (min-width: 769px) {
	.hidden__pc {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.hidden__sp {
		display: none;
	}

	.container {
		width: 90%;
		margin: auto;
	}

	.infomative-service__list {
		padding: 0;
		list-style: none;
	}

	.infomative-service__list .list__item {
		border-radius: 5px;
		border: solid 2px #c2c2c2;
		background: #f2f2f2;
		padding: 20px;
		margin-bottom: 30px;
	}

	.infomative-service__list__table {
		overflow: hidden;
	}

	.infomative-service__list__table dt,
	.infomative-service__list__table dd {
		float: left;
		margin-bottom: 30px;
	}

	.infomative-service__list__table dt {
		font-weight: bold;
		clear: both;
		margin-top: 0;
		width: 100px;
	}

	.infomative-service__list__table dd {
		width: calc(100% - 100px);
		margin-left: 0;
	}

	.infomative-service__list__table dd p {
		margin: 0;
	}

	.infomative-service__list__table dd .classification {
		display: inline-block;
	}

	.service__link__list {
		display: flex;
		justify-content: center;
	}

	.service__link__list a {
		color: blue;
		font-size: 2.8vw;
		padding: 0px 1vw;
	}

}
</pre></body></html>