@charset "utf-8";

.sectionArea a {
    text-decoration: none;
}

.sectionArea a:hover {
    text-decoration: none;
}

.sectionArea .faqLeftArea {
    float: left;
    width: 25%;
}

.sectionArea .faqRightArea {
    float: left;
    width: 75%;
}

.sectionArea .faqLeftArea .faqTitle {
    width: 80%;
    text-align: center;
    background-color: #00bdd8;
}

.sectionArea .faqLeftArea .faqTitle p {
    font-size: 22px;
    color: #fff;
    /*font-weight: 600;*/
    margin: 0;
    padding: 20px 10px;
}

.sectionArea .faqRightArea .faqList>li {
    margin-bottom: 40px;
}

.sectionArea .faqRightArea .faqList>li:last-child {
    margin-bottom: 0;
}

.sectionArea .faqRightArea .faqList>li>a {
    display: block;
    min-height: 40px;
}

.sectionArea .faqRightArea .faqList .faqQ,
.sectionArea .faqRightArea .faqList .faqA {
    position: relative;
    padding-left: 60px;
}

.sectionArea .faqRightArea .faqList .faqQ {
    transition: .3s;
    cursor: pointer;
}

.sectionArea .faqRightArea .faqList .faqQ:hover {
    opacity: 0.5;
}

.sectionArea .faqRightArea .faqList .faqQ:before {
    content: "Q";
    font-size: 20px;
    font-weight: 600;
    color: #02a2b9;
    position: absolute;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    top: 3px;
    left: 5px;
    border: 1px solid #02a2b9;
    box-sizing: border-box;
    border-radius: 40px;
}

.sectionArea .faqRightArea .faqList .faqQ p {
    color: #02a2b9;
    font-size: 20px;
    /*font-weight: 600;*/
    margin: 0;
    line-height: 1.4;
}

.sectionArea .faqRightArea .faqList .faqA {
    display: none;
    margin-top: 10px;
}

.sectionArea .faqRightArea .faqList .faqA:before {
    content: "A";
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #00bdd8;
    position: absolute;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    top: 3px;
    left: 5px;
    box-sizing: border-box;
    border-radius: 40px;
}

.sectionArea .faqRightArea .faqList .faqA p {
    font-size: 16px;
    margin: 0;
}

.sectionArea .faqRightArea .faqList .faqA .faqLinkList {
    padding-top: 5px;
}

.sectionArea .faqRightArea .faqList .faqA .faqLinkList li {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 5px;
}

.sectionArea .faqRightArea .faqList .faqA .faqLinkList li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:480px) {
	.sectionArea .faqLeftArea {
		float: none;
		width: 100%;
	}
	
	.sectionArea .faqLeftArea .faqTitle {
		width: 100%;
	}
	
	.sectionArea .faqLeftArea .faqTitle p {
		font-size: 18px;
	}
	
	.sectionArea .faqRightArea .faqList .faqQ p,
	.sectionArea .faqRightArea .faqList .faqA p {
		font-size: 16px;
	}
	
	.sectionArea .faqRightArea .faqList .faqQ:before {
		top: 0;
	}
	
	.sectionArea .faqRightArea {
		width: 100%;
		margin-top: 20px;
	}
	
	.sectionArea a {
		font-size: 14px;
	}
}