.menu-list {
	h4 {
		font-size: $font_main-size;
	}

	table {
		margin: 0;

		td, th {
			padding: 0;
			border: none;
		}

		tr {
			.title {
				width: 1%;
				white-space: nowrap;

				del {
					color: #888888;
				}

				ins {
					text-decoration: none;
				}
			}

			.line {
				padding: 0 10px;

				&:after {
					content: '';
					width: 100%;
					height: 1px;
					border-bottom: 1px dotted #ccc;
					display: block;
					margin-top: 10px;
				}
			}
		}
	}

	.content {
		margin: 5px 0 0;

		p {
			margin: 0;
		}

		.new {
			color: #ffffff;
			margin-left: 10px;
			font-size: $font_caption-size;
			font-weight: 600;
			padding: 3px 8px 2px;
			display: inline-block;
			float: right;
		}
	}

	@media screen and (max-width: 768px) {
		table tr .title {
			width: auto;
			white-space: normal;
		}
	}
}