.tab-area{
    width: 780px;
    display: flex;
    border: 2px solid;
    border-radius: 15px;
	margin: auto;
    overflow: hidden;
    margin-bottom: 70px;
}

.tab-area label{
	width: 390px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 30px;
}

.tab_content {
    display: none;
    clear: both;
    overflow: hidden;
}

#tab01,
#tab02{
	display:none;
}

#tab01:checked ~ .tab-area label[for="tab01"],
#tab02:checked ~ .tab-area label[for="tab02"]{
    background: #000000;
    color: #FFF;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content{
    display: block;
}

.tab_content article{
	margin-bottom:50px;
}

.environment-table{
	border: 2px solid;
    border-radius: 15px;
    overflow: hidden;
	margin-bottom: 20px;
}

.environment-table-list{
	display: flex;
    width: 100%;
    border-bottom: 2px solid;
}

.environment-table .environment-table-list:last-child{
    border-bottom: none;
}

.environment-table-list p{
    font-weight: bold;
	padding: 25px 25px 25px 40px;
}

.environment-table-list .environment-table-757575{
	width: 30%;
    background: #757575;
    color: #FFF;
    padding: 25px;
    text-align: center;
}


.device-area{
    display: flex;
    border: 2px solid;
    border-radius: 15px;
    margin-bottom: 15px;
}

.device-group{
	width: calc((100% - 6px) / 4);
    border-right: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
}

.device-area .device-group:last-child{
	border-right: none;
}


.device-group div{
	display: flex;
    align-items: center;
    height: 95px;
}

.device-group p{
	margin-top:15px;
}

@media (max-width: 1500px) {

.device-area{
    flex-wrap: wrap;
}

.device-group{
	width: calc((100% - 62px) / 2);
}

.device-area .device-group:nth-of-type(2),
.device-area .device-group:nth-of-type(4){
	border-right: none;
}

.device-area .device-group:nth-of-type(1),
.device-area .device-group:nth-of-type(2){
	border-bottom: 2px solid;
}


}

@media (max-width: 1000px) {

.tab-area{
    width: auto;
}

.tab-area label{
    width: calc(100% / 2);
    font-size: 16px;
    padding: 20px;
}

.environment-table{
    overflow: unset;
    border: none;
}

.environment-table-list{
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid #000000;
    border-radius: 10px;
	width: auto;
}

.environment-table-list p,
.environment-table-list .environment-table-757575{
	width: auto;
}

.environment-table .environment-table-list:last-child {
    border-bottom: 2px solid;
}

}

@media (max-width: 800px) {

.tab-area{
	margin-bottom: 50px;
flex-direction: column;
}

.tab-area label{
	width: auto;
}

.environment-table-list p,
.environment-table-list .environment-table-757575{
    padding: 10px 20px;
}

.device-area{
	flex-wrap: wrap;
}

.device-group{
	width: calc((100% - 62px) / 2);
}

.device-group:nth-child(2){
	border-right: 2px none;
}

.device-group:nth-child(1),
.device-group:nth-child(2){
	border-bottom: 2px solid;
}

.device-group div{
    height: 50px;
	width: 80px;
}

.device-group div img{
    height: 100%;
    width: auto;
}

.device-group p{
    font-size: 12px;
}

}

@media (max-width: 600px) {

.device-group{
	width: 100%;
    border-right: none;
	border-bottom: 2px solid;
    gap: 15px;
	padding: 15px 15px 15px 25px;
    flex-direction: row;
	justify-content: flex-start;
}

.device-area .device-group:last-child {
	border-bottom: none;
}

.device-group p{
    margin-top: 0;
}

.device-group div img{
	height: 85%;
}

}