﻿/*Table*/
table
{
	width:100%;
	border-collapse:collapse;
	margin-bottom:24px;
}
table th
{
	width:300px;
	color:var(--basic-900);
	font-size:1.4rem;
	font-weight:700;
	letter-spacing:0.08rem;
	text-transform:uppercase;
	border:1px solid var(--basic-100);
	background-color:var(--basic-100);
	padding:14px 10px;
}
table td
{
	color:var(--basic-900);
	font-size:1.6rem;
	border-top:1px solid var(--basic-100);
	border-bottom:1px solid var(--basic-200);
	padding:14px 10px;
}
@media all and (max-width:767px)
{
	table th
	{
		width:180px;
	}
}
@media all and (max-width:375px)
{
	table th
	{
		width:auto;
	}
}