/*------------------------------------------------------------------------------
 qandaBox
 ------------------------------------------------------------------------------*/
.qandaBox {
	margin: 12px 8px;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
	border-bottom: 1px solid #E2E8F0;
	border-radius: 3px;
}

/* PC */
.qandaPC {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
}
.qandaPC .qandaBox {
	flex: 0 0 calc((100% - 10px) / 2);
	width: auto;
	margin: 0 !important;
	box-shadow: none;
	border: 1px solid #E2E8F0;
	border-radius: 3px;
	background: #FDE9F1;
}

/*------------------------------------------------------------------------------
 queBox
 ------------------------------------------------------------------------------*/
.queBox {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 5px;
	padding: 8px;
	background: #DEF;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.queBox small {
	font-family: Arial;
	font-weight: bold;
	font-size: 124%;
	color: #F60;
}
.queBox strong {
	flex: 1;
	min-width: 0;
	line-height: 1.3;
	font-weight: bold;
	font-size: 108%;
	color: #36C;
}
.queBox:not(.full) strong {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.queBox p {
	width: 100%;
	text-align: right;
}

/*------------------------------------------------------------------------------
 ansBox
 ------------------------------------------------------------------------------*/
.ansBox {
	display: flex;
	gap: 10px;
	padding: 10px 8px;
	background: #FDE9F1;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

/*
 photo
------------------------------------------------------------------------------*/
.ansBox .photo {
	flex: 0 0 24%;
}
.ansBox .photoWrap {
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
	padding-top: 150%;
}
.ansBox .photoWrap img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 datas
------------------------------------------------------------------------------*/
.ansBox .datas {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

/* name */
.ansBox .datas .name {
	font-size: 108%;
}
.ansBox .datas .name span {
	display: inline-block;
	line-height: 1.2;
	margin-bottom: 3px;
}
.ansBox .datas .name .girl {
	margin-right: 5px;
}
.ansBox .datas .name a {
	font-weight: bold;
	text-decoration: none;
}
.ansBox .datas .name .girl a {
	font-weight: bold;
	color: deeppink;
}
.ansBox .datas .name .shop {
	display: inline-block;
}
.ansBox .datas .name .shop a {
	font-weight: bold;
}

/* content */
.ansBox .datas .content {
	display: flex;
	gap: 7px;
	margin: 8px 0 15px;
}
.ansBox .datas .content small {
	line-height: 1.2;
	font-family: Arial;
	font-weight: bold;
	font-size: 116%;
	color: #08D;
}
.ansBox .datas .content p {
	line-height: 1.4;
	overflow-wrap: break-word;
	word-break: break-all;
}

/* foot */
.ansBox .datas .foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	white-space: nowrap;
}
.ansBox .datas .foot small {
	font-size: 92%;
	color: #999;
}
@media screen and (max-width: 320px) {
	.ansBox .datas .foot {
		gap: 5px;
		font-size: 92%;
	}
	.ansBox .datas .foot small {
		font-size: 1em;
	}
}

/*------------------------------------------------------------------------------
 pcPager
 ------------------------------------------------------------------------------*/
.pcPager {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 15px auto;
}
.pcPager span {
	color: #999;
}
