@charset "utf-8";

.business_section1 ul{
	margin-top: 30px;
}
.business_section1 ul li{
    font-weight: 500;
    font-size: 1.4rem;
}
@media print, screen and (max-width: 768px) {
	.business_section1 ul li{
	    font-size: 1.2rem;
	}
}

.business_section2 img {
    width: 100%;
}

.business_section2 table {
	border-spacing: 0;
	text-align: left;
	margin-bottom: 30px;
}
.business_section2 table th {
	width: calc(100vw/3);
	padding: 0 30px 30px 0;
	vertical-align: top;
}
@media print, screen and (max-width: 768px) {
	.business_section2 table th {
		padding-right: 10px;
	}
}
.business_section2 table td {
	padding: 0 0 30px 0;
	vertical-align: top;
}

.business_section2 .caption {
	text-align: center;
}

.business_section2 .name {
	display: inline-block;
	margin-bottom: 9px;
	font-size: 1.3rem;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 5px;
}
@media print, screen and (max-width: 768px) {
	.business_section2 .name {
		font-size: medium;
	}
}

.tabs {
	display: flex;
	margin: 30px 0 30px 30px;
	gap: 8px;
}
.tab {
	width: calc((100vw - 90px)/3);
	padding: 8px 0;
	border: 1px solid #ccc;
	background: #cedbec;
	cursor: pointer;
	outline: none;
	font-size: 18px;
	white-space: nowrap;
}
.tab::after {
	background: none;
}
@media print, screen and (max-width: 768px) {
	.tab {
		width: calc((100vw - 80px)/3);
		min-width: 100px;
		font-size: 16px;
	}
}
.tab.active {
	background: #8599c3;
	color: #fff !important;
}
.panels {
	margin-left: 30px;
}
.panels .panel {
	display: none;
	border: none;
	background: #fff;
}
.panels .panel.active {
	display: block;
}
