@charset "UTF-8";

#faq
{
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
}

#cate
{
	position:sticky;
	top: 4.5rem;
	display: flex;
	flex-direction: column;
	width: 15rem;
}

#cate .now
{
	color: rgb(150, 150, 150);
}

#cate .cate
{
	line-height: 1.3;
	padding-top: .5em;
}

#cate .cate + .cate
{
	margin-top: .5em;
	border-top: 1px solid rgb(200, 200, 200);
}

#cont
{
	width: calc(100% - 20rem);
}

#cont h3
{
	font-family: 'Robo-M', 'GG-M', sans-serif;
	font-weight: 550;
	margin-bottom: 1em;
	padding-bottom: .5rem;
	border-bottom: 1px solid;
}

#cont .cont + .cont
{
	margin-top: 3em;
}

.qa .q
{
	cursor:pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Robo-M', 'GG-M', sans-serif;
	font-weight: 550;
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid rgb(200, 200, 200);
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body:not(.touch) .qa .q:hover
{
	color: rgb(100, 100, 100);
}

.qa .q > span:nth-of-type(1)
{
	width: calc(100% - 2em);
}
.qa .q .op
{
	display: block;
	width: 1em;
	height: 1em;
	margin-left: 1em;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.qa .q.op .op
{
	transform:rotate(45deg);
}

.qa .q .op:before,
.qa .q .op:after
{
	content:"";
	display:block;
	position:absolute;
	width:100%;
	height: 2px;
	top: calc(50% - 1px);
	background-color: rgb(50, 50, 50);
}
.qa .q .op:after
{
	transform:rotate(90deg);
}

.qa .a
{
	overflow: hidden;
	height: 0;
}

.qa .a > div
{
	padding-bottom: 2em;
}

.qa .a > div p + p
{
	margin-top: .5em;
}

/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN ////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 800px)
{
	#faq
	{
		flex-direction: column;
	}
	
	#cate
	{
		position:static;
		margin-bottom: 3rem;
	}
	
	#cont
	{
		width: calc(100% - 0rem);
	}
}



@media screen and (max-width: 600px), (max-height: 600px)
{

}