ul {
	list-style: none;
	padding-left: 0;
}
li {
	margin-bottom: 1rem;
}
input.up_file, input.up_video {
	display: none;
}

#post_block #content {
	height: 100%;
	padding: 0 4%;
	overflow: auto;
	background: #fff;
}
#menu_area {
	display: flex;
	justify-content: space-between;
}
#menu_area ul{
	display: flex;
	column-gap: 0.5rem;
}
#menu_area li:hover {
	cursor: pointer;
	background: #eee;
}
#menu_area li {
	font-size: x-large;
	padding: 0 0.5rem;
	/*
	background: #0ff;
	padding: 0.5rem 1rem;
	*/
	border-radius: 0.5rem;
}
#input_area input, #input_area textarea {
	border: none;
	border-bottom: 1px solid #ddd;
	width: 100%;
	box-sizing: border-box;
	padding: 0.5rem;
}
#input_area textarea {
	line-height: 1.3;
	min-height: 5rem;
	resize: none;
	overflow: hidden;
}
.img_area {
	display: grid;
	grid: 150px 150px / 1fr 1fr;
	grid: 50% 50% / 1fr 1fr;
	grid-gap: 1px;
	height: 720px;
}
.img_area .img_wrap {
	position: relative;
}
.img_wrap span:hover {
	cursor: pointer;
}
.img_wrap .img_del, .img_wrap .video_del {
	position: absolute;
	top: 0;
	right: 0;
	color: red;
	background: #eee;
	font-size: 1.5rem;
	display: flex;
	padding: 0.2rem;
	border-radius: 50%;
}
.img_wrap .img_change, .img_wrap .video_change {
	position: absolute;
	bottom: 0;
	left: 0;
	background: white;
	padding: 0.2rem;
	/*
	left: 50%;
	transform: translateX(-50%);
	padding: 0.2rem 0.5rem;
	*/
}
.img_wrap .img_caption {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 85% !important;
	/*
	width: 80% !important;
	width: calc(100% - 5rem) !important;
	*/
	border: 1px solid #eee !important;
	opacity: 0.6;
	border: 1px solid #bbb !important;
	opacity: 0.8;
}
.img_wrap img {
	object-fit: cover;
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.img_wrap video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.img_wrap .preview:hover {
	cursor: move;
}
.img_area._1 .img_wrap:nth-child(1) {
	grid-row: 1 / span 2;
	grid-column: 1 / span 2;
}
.img_area._2 .img_wrap:nth-child(n+0) {
	grid-row: 1 / span 2;
}
.img_area._3 .img_wrap:nth-child(1) {
	grid-row: 1 / span 2;
}

#addr_del:hover {
	cursor: pointer;
}
#addr_del .fa-backspace {
	color: red;
	margin-left: 0.5rem;
}
li.button_area {
	position: relative;
}
.button_area > span {
	margin-right: 1rem;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
	font-size: x-large;
}
.button_area > span:hover {
	cursor: pointer;
	background: #eee;
}
.button_area > span > img{
	width: 2rem;
	height: 2rem;
}
.button_area span#del_btn {
	display: none;
	position: absolute;
	right: 0;
	margin-right: unset;
	color: red;
}
span.icon_btn {
	margin-right: 1rem;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
	font-size: x-large;
}
span.icon_btn:hover {
	cursor: pointer;
	background: #eee;
}
span.icon_btn > img {
	width: 2rem;
	height: 2rem;
}
.drop_area {
	display: inline-block;
	border: 1px dotted #aaa;
	border-radius: 0.5rem;
	padding: 0.5rem 0;
}
.drop_area.active {
	border: 1px solid #aaa;
	background: #ffe;
}
