@charset "UTF-8";
/* CSS Document */

#review p.caption {
	margin-bottom: 20px;
}

#review p.btn-reviewpost {
	width: 100%;
	margin: 0 auto 20px;

	text-align: center;
}

#review p.btn-reviewpost a {
	display: inline-block;

	width: 240px;

	font-size: 1.0rem;
	line-height: 50px;
	font-weight: bold;

	text-align: center;

	box-sizing: border-box;

	background-color: #f56798;
	color: #fff;

	border-radius: 5px;

	background-image: url("../images/icon-arrow-right.png");
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center right 10px;
}

#review p.btn-reviewpost a:hover {
	opacity: 0.8;
	text-decoration: none;
}

#review p.total {
	font-size: 0.8rem;
	line-height: 30px;
	font-weight: bold;

	text-align: right;
}

#review div.post-content article {
	margin-bottom: 20px;
}

#review div.post-content article:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 760px) {

	#review div.post-content article {
		margin-bottom: 30px;
	}

}

/*//////////----- REVIEWROW -----//////////*/

.reviewrow div.inner {
	box-sizing: border-box;
	padding: 10px;
	border: solid #f997c5 1px;
	background-color: #fff;
	color: #000;
}

.reviewrow ul.postdata {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;

	width: 100%;

	font-size: 0.8rem;
	line-height: 30px;

	margin-bottom: 10px;
}

.reviewrow ul.postdata li {
	display: block;
}

.reviewrow ul.postdata li.update:before {
	display: inline-block;
	content: "投稿日：";
}

.reviewrow ul.postdata li.author:before {
	display: inline-block;
	content: "投稿者：";
}

.reviewrow ul.postdata li:after {
	display: inline-block;
	content: "/";

	box-sizing: border-box;
	padding: 0 5px;
}

.reviewrow ul.postdata li:last-child:after {
	display: none;
}

.reviewrow div.summary {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;

	width: 100%;

	margin-bottom: 20px;
}

.reviewrow div.summary p.thumbnail {
	width: 120px;
}

.castpickup .reviewrow div.summary p.thumbnail {
	display: none;
}

.reviewrow div.summary p.thumbnail img {
	width: 100%;
	vertical-align: bottom;
}

.reviewrow div.summary p.thumbnail span.btn-profile {
	display: block;

	font-size: 0.6rem;
	line-height: 30px;

	box-sizing: border-box;
	padding: 10px 0;

	font-weight: bold;

	text-align: center;
}

.reviewrow div.summary p.thumbnail span.btn-profile a {
	display: block;
	width: 100%;

	background-color: #f56798;
	color: #fff;

	border-radius: 2.5px;
}

.reviewrow div.summary p.thumbnail span.btn-profile a:hover {
	opacity: 0.8;
	text-decoration: none;
}


.reviewrow div.summary div.text {
	width: calc(100% - 120px);

	box-sizing: border-box;
	padding-left: 10px;
}

.castpickup .reviewrow div.summary div.text {
	width: 100%;

	padding-left: 0;
}

.reviewrow div.summary div.text h4 {
	font-size: 1.0rem;
	line-height: 30px;
	font-weight: bold;

	text-align: left;
}

.reviewrow div.summary div.text h4 span.age {
	font-size: 0.8rem;
	line-height: 25px;
	font-weight: normal;
}

.reviewrow div.summary div.text h4 span.age:before {
	content: "（";
}

.reviewrow div.summary div.text h4 span.age:after {
	content: "）";
}

.reviewrow div.summary div.text ul.size {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;

	width: 100%;

	margin-bottom: 10px;
}

.reviewrow div.summary div.text ul.size li {
	font-size: 0.8rem;
	line-height: 25px;
}

.reviewrow div.summary div.text ul.size li:after {
	content: "/";

	font-size: 0.6rem;
	line-height: 25px;

	box-sizing: border-box;
	padding: 0 1.5px;
}

.reviewrow div.summary div.text ul.size li:last-child:after {
	display: none;
}

.reviewrow div.summary div.text ul.size li:before {
	font-size: 0.6rem;
	line-height: 25px;
}

.reviewrow div.summary div.text ul.size li.tall:before {
	content: "T:";
}

.reviewrow div.summary div.text ul.size li.bust:before {
	content: "B:";
}

.reviewrow div.summary div.text ul.size li.bust span.cup {
	font-size: 0.6rem;
	line-height: 25px;
}

.reviewrow div.summary div.text ul.size li.bust span.cup:before {
	content: "_";
}

.reviewrow div.summary div.text ul.size li.waist:before {
	content: "W:";
}

.reviewrow div.summary div.text ul.size li.hip:before {
	content: "H:";
}

.reviewrow div.summary div.text ul.point {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;

	width: 100%;
}

.reviewrow div.summary div.text ul.point li {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;

	width: 100%;

	font-size: 0.8rem;
	line-height: 1.75em;

	margin-bottom: 2px;
}

.reviewrow div.summary div.text ul.point li:last-child {
	margin-bottom: 0;
}

.reviewrow div.summary div.text ul.point li span.que {
	box-sizing: border-box;
	padding: 5px;

	width: 50%;

	background-color: #f0f0f0;
	color: #000;
	display: none;
}

.reviewrow div.summary div.text ul.point li span.ans {
	box-sizing: border-box;
	padding: 5px;
	border-left: solid 2px #fff;

	width: 100%;

	background-color: #f0f0f0;
	color: #000;
}

@media only screen and (min-width: 760px) {

	.reviewrow div.summary div.text ul.point li {
		width: 100%;
	}

	.reviewrow div.summary div.text ul.point li:nth-child(odd) {
		margin-right: 1px;
	}

	.reviewrow div.summary div.text ul.point li:nth-child(even) {
		margin-left: 1px;
	}

}

.reviewrow div.message {
	font-size: 1.0rem;
	line-height: 1.75em;
}

.reviewrow div.message div.reply {
	box-sizing: border-box;
	padding: 10px;

	background-color: #f0f0f0;
	color: #000;

	border-radius: 5px;

	margin-top: 10px;
}

.reviewrow div.message div.reply h6 {
	font-weight: bold;
	margin-bottom: 5px;
}

/*//////////----- CAST-TARGET -----//////////*/

.cast-target {
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f56798;

	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;

	width: 100%;

	margin: 30px 0 20px;

	background-color: #fff;
	color: #000;
}

.cast-target p.thumbnail {
	width: 120px;
}

.cast-target p.thumbnail img {
	width: 100%;
	vertical-align: bottom;
}

.cast-target div.text {
	width: calc(100% - 120px);

	box-sizing: border-box;
	padding-left: 10px;
}

.cast-target div.text h4 {
	font-size: 1.0rem;
	line-height: 30px;
	font-weight: bold;
}

.cast-target div.text h4 span.age {
	font-size: 0.8rem;
	line-height: 25px;
	font-weight: normal;
}

.cast-target div.text h4 span.age:before {
	content: "（";
}

.cast-target div.text h4 span.age:after {
	content: "）";
}

.cast-target div.text ul.size {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;

	width: 100%;
}

.cast-target div.text ul.size li {
	font-size: 0.8rem;
	line-height: 25px;
}

.cast-target div.text ul.size li:after {
	content: "/";

	font-size: 0.6rem;
	line-height: 25px;

	box-sizing: border-box;
	padding: 0 1.5px;
}

.cast-target div.text ul.size li:last-child:after {
	display: none;
}

.cast-target div.text ul.size li:before {
	font-size: 0.6rem;
	line-height: 25px;
}

.cast-target div.text ul.size li.tall:before {
	content: "T:";
}

.cast-target div.text ul.size li.bust:before {
	content: "B:";
}

.cast-target div.text ul.size li.bust span.cup {
	font-size: 0.6rem;
	line-height: 25px;
}

.cast-target div.text ul.size li.bust span.cup:before {
	content: "_";
}

.cast-target div.text ul.size li.waist:before {
	content: "W:";
}

.cast-target div.text ul.size li.hip:before {
	content: "H:";
}

.cast-target div.text ul.feature {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;

	width: 100%;
}

.cast-target div.text ul.feature li {
	width: calc(50% - 2.5px);
	max-width: 80px;

	font-size: 0.6rem;
	line-height: 15px;

	text-align: center;

	background-color: #f56798;
	color: #fff;
}

.cast-target div.text ul.feature li:nth-child(odd) {
	margin-right: 2.5px;
}

.cast-target div.text ul.feature li:nth-child(even) {
	margin-left: 2.5px;
}

.cast-target div.text p.excerpt {
	font-size: 0.8rem;
	line-height: 1.75em;

	margin-top: 10px;
}

.cast-target div.text ul.btn {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;

	width: 100%;
	max-width: 180px;

	margin-top: 10px;
}

.cast-target div.text ul.btn li {
	width: 100%;
	max-width: calc(50% - 2.5px);

	font-size: 0.6rem;
	line-height: 25px;
}

.cast-target div.text ul.btn li:nth-child(odd) {
	margin-right: 2.5px;
}

.cast-target div.text ul.btn li:nth-child(even) {
	margin-left: 2.5px;
}

.cast-target div.text ul.btn li:last-child {
	margin-bottom: 0;
	margin-right: 0;
}

.cast-target div.text ul.btn li a {
	display: block;

	background-color: #000;
	color: #fff;

	box-sizing: border-box;
	padding: 0 10px;

	background-image: url("../images/icon-arrow-right.png");
	background-repeat: no-repeat;
	background-size: 7.5px;
	background-position: center right 2.5px;

	border-radius: 2.5px;
}

.cast-target div.text ul.btn li a:hover {
	opacity: 0.8;
	text-decoration: none;
}

/*//////////----- REVIEWPOST -----//////////*/

.formpost {
	box-sizing: border-box;
	padding: 10px;

	background-color: #fff;
	color: #000;

	border-radius: 5px;
}

.formpost div.extra {
	font-size: 0.6rem;
	line-height: 30px;

	margin-bottom: 20px;
}

.formpost div.extra ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;

	width: 100%;
}

.formpost div.extra ul li {
	display: block;

	box-sizing: border-box;
	padding: 0 5px;

	position: relative;
}

.formpost div.extra ul li b {
	box-sizing: border-box;
	padding-right: 2.5px;
}

.formpost div.extra ul li:after {
	display: block;
	content: "/";

	width: 10px;
	height: 30px;

	text-align: center;

	position: absolute;
	top: 0;
	bottom: 0;

	right: -5px;
}

.formpost div.extra ul li:last-child:after {
	display: none;
}

.formpost div.extra p {
	font-size: 0.6rem;
	line-height: 20px;

	text-align: center;
}

.form-content {
	box-sizing: border-box;
	/*padding:10px;*/

	/*background-color:#fff;
	color:#000;*/

	width: 100%;
	margin: 0 auto;
	max-width: 540px;

	border-radius: 5px;
}

.form-content div.row {
	margin-bottom: 20px;
}

.form-content div.row p.que {
	font-size: 1.0rem;
	line-height: 40px;
	font-weight: bold;
	box-sizing: border-box;
	padding-left: 35px;
	position: relative;
}

.form-content div.row p.que span.note {
	display: inline-block;

	font-size: 0.6rem;
	line-height: 30px;
	font-weight: normal;

	box-sizing: border-box;
	padding: 0 5px;
}

.form-content div.row p.que:before {
	display: block;
	content: "任意";
	width: 30px;
	height: 15px;

	font-size: 0.6rem;
	line-height: 15px;
	font-weight: bold;

	border-radius: 2.5px;

	text-align: center;

	background-color: #f88;
	color: #fff;

	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;

	margin: auto 0;
}

.form-content div.row p.que.must:before {
	display: block;
	content: "必須";
	width: 30px;
	height: 15px;

	font-size: 0.6rem;
	line-height: 15px;
	font-weight: bold;

	border-radius: 2.5px;

	text-align: center;

	background-color: #f44;
	color: #fff;

	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;

	margin: auto 0;
}

.form-content div.row div.ans {
	box-sizing: border-box;
	padding: 0 0 10px;
}