/* 共通 */
.review_body {
	background-color: #FFFFFF;
	padding: 40px;
}
.review_body h2 {
	font-size: 28px;
	font-weight: bold;
	margin: 0 0 15px 0;
}

.center_body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.review_body p {
	font-size: 20px;
	margin: 0 0 15px 0;
}
.review_body p strong {
	color: #FF0000;
}
.shop_global_detail {
	display: none;
}
@media screen and (max-width: 760px) {
	.review_body {
		padding: 4vw 4vw 25vw 4vw;
		margin: 0 0 15vw 0;
	}
	.review_body h2 {
		font-size: 5vw;
		margin: 0 0 3vw 0;
	}
	.review_body p {
		font-size: 4vw;
		margin: 0 0 3vw 0;
	}
	/* spの場合は余計な内容を表示しない */
	.right,
	.sp.shop_sp_bottom_btns {
		display: none;
	}
	/* フッターのボタンを非表示に */
	.sp_shop_footer {
		display: none;
	}
}

/* 会員情報の表示 */
.member_info {
	display: flex;
	align-items: center;
	margin: 0 0 20px 0;
}
.member_info figure {
	width: 60px;
	min-width: 60px;
	height: 60px;
	overflow: hidden;
	border: solid 1px #DDDDDD;
	border-radius: 100px;
	margin: 0 10px 0 0;
}
.member_info figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.member_info .nickname {
	font-weight: bold;
	font-size: 18px;
}

@media screen and (max-width: 760px) {
	.member_info {
		margin: 0 0 4vw 0;
	}
	.member_info figure {
		width: 12vw;
		min-width: 12vw;
		height: 12vw;
		margin: 0 2vw 0 0;
	}
	.member_info .nickname {
		font-size: 4vw;
	}
}


/* 掲載が出来ない内容の例 */
.review_body .example {
	margin: 0 0 30px 0;
}
.review_body .example dt {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
.review_body .example dd ul li {
	display: flex;
	margin: 0 0 5px 0;
}
.review_body .example dd ul li:last-child {
	margin: 0;
}
.review_body .example dd ul li::before {
	content: '・';
	margin: 0 5px 0 0;
}
@media screen and (max-width: 760px) {
	.review_body .example {
		margin: 0 0 5vw 0;
	}
	.review_body .example dt {
		font-size: 4vw;
		margin: 0 0 2vw 0;
	}
	.review_body .example dd ul li {
		display: flex;
		margin: 0 0 1vw 0;
	}
	.review_body .example dd ul li::before {
		margin: 0 1vw 0 0;
	}
}


/* 投稿先の店舗 */
.target_shop {
	display: flex;
	margin: 0 0 40px 0;
	padding: 10px;
	align-items: center;
	border: solid 1px #e1d4c0;
	color: #664c4c;
}
.target_shop figure {
	width: 80px;
	min-width: 80px;
	height: 80px;
	margin: 0 10px 0 0;
}
.target_shop figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.target_shop span {
	display: block;
}
.target_shop span.shop_name {
	font-size: 18px;
	font-weight: bold;
}
@media screen and (max-width: 760px) {
	.target_shop {
		margin: 0 0 5vw 0;
		padding: 2vw;
	}
	.target_shop figure {
		width: 12vw;
		min-width: 12vw;
		height: 12vw;
		margin: 0 2vw 0 0;
	}
	.target_shop span.shop_name {
		font-size: 3.5vw;
	}
}

/* ログインの案内 */
.review_body p.login_info {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}
.review_body p.login_info::before,
.review_body p.login_info::after {
	content: '';
	display: block;
	width: 30px;
	height: 50px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}
@media screen and (max-width: 760px) {
	.review_body p.login_info {
		font-size: 3.5vw;
		text-align: center;
	}
	.login_info::before,
	.login_info::after {
		content: '';
		display: block;
		width: 30px;
		height: 50px;
		background-position: center center;
		background-size: contain;
		background-repeat: no-repeat;
	}

}


/* ログインの案内 */
.login_info::before {
	background-image: url(/assets/img/global/emphasis_left.svg);
	margin: 0 10px 0 0;
}
.login_info::after {
	background-image: url(/assets/img/global/emphasis_right.svg);
	margin: 0 0 0 10px;
}
.review_post_area {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.review_post_area li {
	width: 260px;
	margin: 0 20px 0 0;
}
.review_post_area li:last-child {
	margin: 0;
}
.review_post_area li a,
.review_post_area li button {
	display: flex;
	justify-content: center;
	background-color: #ffe061;
	border: solid 1px #514343;
	border-radius: 6px;
	color: #514343;
	font-size: 18px;
	font-weight: bold;
	padding: 14px 0;
	line-height: 1;
	width: 100%;
}
.review_post_area li a:hover,
.review_post_area li button:hover {
	opacity: 0.9;
}
.review_post_area li button:hover {
	cursor: pointer;
}
.review_post_area li button.modification {
	background-color: #FFFFFF;
}
@media screen and (max-width: 760px) {
	.review_post_area {
		flex-direction: column;
	}

	.review_post_area li {
		width: 100%;
		margin: 0 0 4vw 0;
	}

	.review_post_area li:last-child {
		margin: 0;
	}

	.review_post_area li a,
	.review_post_area li button {
		font-size: 4.6vw;
		font-weight: bold;
		padding: 3vw 0;
		line-height: 1;
		cursor: pointer;
	}
}


/* 口コミの入力 */
.input_table dt {
    color: #664c4c;
	font-weight: bold;
	font-size: 20px;
	margin: 0 0 10px 0;
}
.input_table dd {
	margin: 0 0 30px 0;
}
.evaluation_rate {
	display: flex;
	justify-content: flex-start;
}
.evaluation_rate label {
	display: flex;
	overflow: hidden;
	position: relative;
	margin: 0 20px 0 0;
}
.evaluation_rate label input {
	position: absolute;
	display: none;
}
.evaluation_rate label span {
	display: flex;
	border: solid 1px #dddddd;
	justify-content: center;
	align-items: center;
	width: 90px;
	border-radius: 6px;
	padding: 10px 0;
	font-size: 20px;
	background-color: #fffbeb;
	cursor: pointer;
}
.evaluation_rate label span:hover {
    background-color: #fff3c4;
}
.evaluation_rate label input:checked + span {
	background-color: #ffe061;
	border: solid 1px #514343;
}

.select_visit_wrap{
	position: relative;
}
.select_visit_wrap::after{
	content: "▼";
	display: block;
	position: absolute;
	top: 25%;
	left: 270px;
	font-size: 16px;
	color: #333;
	pointer-events: none;
}

.select_visit {
    width: 300px;
    padding: 10px;
    font-size: 18px;
	-webkit-appearance: none;
    background-color: #fffbeb;
    border: solid 1px #dddddd;
	color: #555;
	border-radius: initial;
	position: relative;
}

.input_table input {
    margin: 0;
    border: solid 1px #dddddd;
    background-color: #fffbeb;
    font-size: 18px;
    padding: 10px 10px;
    width: 400px;
}
.input_table textarea {
	width: 445px;
	height: 135px;
    margin: 0;
    border: solid 1px #dddddd;
    background-color: #fffbeb;
    font-size: 18px;
    padding: 10px 10px;
}
.required_icon {
    display: inline-block;
    font-size: 14px;
    background-color: #ff3c40;
    color: #FFFFFF;
    line-height: 1;
    padding: 4px 10px;
}
.input_count {
	display: block;
}
.input_table .error {
    color: #ff3c40;
    padding: 5px 0 0 0;
}
.input_table .error::before {
    content: "\f071";
    font-size: inherit;
    font-family: "FontAwesome";
    margin: 0 5px 0 0;
}
.form_error_info {
    border: solid 1px #ff3c40;
    color: #ff3c40;
    padding: 15px;
    margin: 20px 0 30px 0;
}
.review_body .form_error_info p {
	font-size: 16px;
	margin: 0;
}

@media screen and (max-width: 760px) {
	.input_table dt {
		font-size: 4.2vw;
		margin: 0 0 2vw 0;
	}
	.input_table dd {
		margin: 0 0 8vw 0;
	}
	.evaluation_rate label {
		margin: 0 2vw 0 0;
		flex-grow: 1;
	}
	.evaluation_rate label input {
		top: -5vw;
	}
	.evaluation_rate label:last-child {
		margin: 0;
	}
	.evaluation_rate label span {
		flex-direction: column;
		width: 100%;
		padding: 2vw 0;
		font-size: 5vw;
	}
	.select_visit_wrap{
		position: relative;
	}
	.select_visit_wrap::after{
		top: 30%;
		left: initial;
		right: 3%;
		font-size: 3vw;
	}
	.select_visit {
		width: 100%;
		font-size: 4.5vw;
		padding: 3vw;
	}

	.input_table input {
		font-size: 4.5vw;
		padding: 3vw;
		width: 100%;
		height: auto;
	}
	.input_table textarea {
		width: 100%;
		height: 26vw;
		margin: 0;
		border: solid 1px #dddddd;
		background-color: #fffbeb;
		font-size: max(16px,3.6vw);
		padding: 2vw 2vw;
	}
	.required_icon {
		font-size: 3vw;
		padding: 1vw 2vw;
		margin: 0 0 0 3vw;
	}
	.input_table .error {
		padding: 1vw 0 0 0;
	}
	.input_table .error::before {
		margin: 0 1vw 0 0;
	}
	.form_error_info {
		padding: 3vw;
		margin: 4vw 0 5vw 0;
	}
	.review_body .form_error_info p {
		font-size: 3.6vw;
	}

}


.review_body.thannk_page {
	padding: 40px 40px 80px 40px;
}

.thank_head {
	display: flex;
	justify-content: center;
	align-items: center;
}
.thank_head figure {
	width: 150px;
	min-width: 150px;
	height: 158.5px;
	margin: 0 0 0 25px;
}
.thank_head figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.review_body p.review_post_detail {
	margin: 30px 0 50px 0;
	border: solid 1px #664c4c;
	font-size: 16px;
	padding: 20px;
}
@media screen and (max-width: 760px) {
	.center_body {
		width: 100%;
	}
	.review_body.thannk_page {
		padding: 4vw 4vw 8vw 4vw;
	}
	.thank_head figure {
		width: 20vw;
		min-width: 20vw;
		height: 20vw;
		margin: 0 0 0 2vw;
	}
	.review_body p.review_post_detail {
		margin: 5vw 0 10vw 0;
		font-size: 3.45vw;
		padding: 4vw;
	}
}

/* 会員訴求 */
.member_invitation {
	display: flex;
	justify-content: space-between;
	margin: 0 0 30px 0;
}
.member_invitation figure {
	min-width: 50%;
	width: 50%;
}
.member_invitation figure img {
	width: 100%;
	height: auto;
	display: block;
}
.review_body .member_invitation p {
	font-size: 18px;
}

.member_invitation_banner {
	margin: 0 0 40px 0;
}
.member_invitation_banner img {
	display: block;
}
@media screen and (max-width: 760px) {
	.member_invitation {
		flex-direction: column;
		margin: 0 0 5vw 0;
	}
	.member_invitation figure {
		min-width: auto;
		width: 100%;
	}
	.review_body .member_invitation p {
		font-size: 3.6vw;
	}
	.member_invitation_banner {
		margin: 0 0 40px 0;
	}
	.member_invitation_banner img {
		width: 100%;
		height: auto;
		display: block;
	}
}

/* 口コミの多重投稿 */
.review_duplication {
	margin: 0 0 40px 0;
	display: flex;
	justify-content: space-between;
}
.review_duplication figure {
	width: 150px;
	height: 180px;
	margin: 0 40px 0 0;
}
.review_duplication figure img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width: 760px) {
	.review_duplication {
		margin: 0 0 10vw 0;
	}
	.review_duplication figure {
		width: 20vw;
		min-width: 20vw;
		height: 20vw;
		margin: 0 0 0 0;
	}
	.review_duplication figure img {
		width: 100%;
		height: auto;
		display: block;
	}
	.review_body .review_duplication p {
		width: 70vw;
	}

}