@charset "utf-8";

.guide_container ul {
	list-style-type: none;
	padding: 0;
}
.tab-area {
	display: flex;
	cursor: pointer;
	align-items: center;
	width: 98%;
	margin: 0 auto;
}
.tab {
	width: calc(100%/3);
	text-align: center;
    border-bottom: 2px solid #0a0a0a;
    padding: 16px 0;
	font-weight: 700;
	display: flex;
    align-items: center;
	flex-direction: column;
    font-size: 18px;
}
.tab.active {
	border-bottom: 2px solid #fff;
	border-top: 2px solid #0a0a0a;
    border-right: 2px solid #0a0a0a;
    border-left: 2px solid #0a0a0a;
	border-radius: 15px 15px 0 0;
    background-color: #f4f4f4;
}
.tab i {
	font-size: 18px;
	line-height: 1.3;
}
.panel {
	display: none;
	margin-top: 20px;
}
.panel.active {
	display: block;
}
.panel h3 {
	border-bottom: 1px solid #666;
    border-top: 1px solid #666;
	padding: 10px;
	margin: 10px;
	font-size: 1.8rem;
    text-align: center;
}
.panel h3 i {
	font-size: 23px;
    margin-right: 10px;
}
.panel-area {
	width: 98%;
	margin: 0 auto;
}

@media screen and (max-device-width: 480px) {
	.tab {
		height: auto;
	}
}

@media screen and (min-width: 481px) {
	.tab {
		height: 50px;
	}
}