.my-fav-index {
	display: grid;

	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.my-fav-index .fav-box {
	position: relative;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;

	min-width: 0;

	border-radius: 8px;
	background: rgba(255, 255, 255, 0.8);
	-webkit-box-shadow: 0 0 5px #ddd;
	        box-shadow: 0 0 5px #ddd;
}
.my-fav-index .fav-box svg {
	position: absolute;
	top: 4px;
	left: 6px;
}
.my-fav-index .fav-box .fav-main-image {
	display: block;

	width: 100%;

	border-radius: 8px 8px 0 0;

	aspect-ratio: 1/1;
	-o-object-fit: cover;
	   object-fit: cover;
}
.my-fav-index .fav-box p {
	font-size: 16px;
	font-weight: bold;

	overflow: hidden;

	padding: 11px 8px;

	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;

	color: #545454;
}

.empty-my-fav {
	font-size: 28px;
	font-weight: bold;

	margin: 56px 0;

	text-align: center;

	color: #fff;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.app-button {
	margin: 32px 0;
}
.app-button button {
	font-size: 14px;
	font-weight: bold;

	padding: 9px 12px;

	color: #6673b3;
	border: 1px solid #6673b3;
	border-radius: 25px;
	background-color: #fff;
}

@media (max-width: 992px) {
	.my-fav-index {
		grid-template-columns: repeat(2, 1fr);
	}
	.my-fav-index .fav-box p {
		font-size: 13px;

		padding: 10px 8px;
	}
	.empty-my-fav {
		font-size: 22px;
	}
	.app-button {
		margin: 20px 0;
	}
	.app-button button {
		font-size: 12px;
	}
}
.my-fav-detail {
	width: 60%;
	margin: 0 auto;
	padding: 0 0 40px;
}
.my-fav-detail .fav-share {
	float: right;

	border: none;
	background: none;
}
.my-fav-detail .fav-main-image {
	display: inline-block;
	clear: both;

	margin: 16px auto;
	padding: 8px;

	border-radius: 8px;
	background: rgba(255, 255, 255, 0.66);
}
.my-fav-detail .fav-main-image img {
	width: 342px;
	height: auto;
}
.my-fav-detail .profile-box .profile-title {
	font-size: 12px;
}
.my-fav-detail .profile-box .profile-block p {
	font-size: 14px;
}
.my-fav-detail .image-color {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	padding: 14px 22px;
}
.my-fav-detail .image-color span::before {
	display: block;

	width: 18px;
	height: 18px;
	margin-right: 12px;

	content: "";

	border-radius: 2px;
}
.my-fav-detail .image-color span.white::before {
	border: 0.5px solid #707070;
	background-color: #fff;
}
.my-fav-detail .image-color span.gray::before {
	background-color: #adb1b9;
}
.my-fav-detail .image-color span.black::before {
	background-color: #313131;
}
.my-fav-detail .image-color span.beige::before {
	background-color: #e2d5b2;
}
.my-fav-detail .image-color span.brown::before {
	background-color: #6c5342;
}
.my-fav-detail .image-color span.pink::before {
	background-color: #f0b3ca;
}
.my-fav-detail .image-color span.red::before {
	background-color: #d54149;
}
.my-fav-detail .image-color span.orange::before {
	background-color: #f2934e;
}
.my-fav-detail .image-color span.yellow::before {
	background-color: #f7ce5d;
}
.my-fav-detail .image-color span.yellowgreen::before {
	background-color: #a1db7c;
}
.my-fav-detail .image-color span.green::before {
	background-color: #45896f;
}
.my-fav-detail .image-color span.lightblue::before {
	background-color: #6cade4;
}
.my-fav-detail .image-color span.blue::before {
	background-color: #637ad9;
}
.my-fav-detail .image-color span.purple::before {
	background-color: #b097e0;
}
.my-fav-detail .image-color span.other::before {
	background-image: url("../../../img/common/other.png");
	background-size: cover;
}
.my-fav-detail .post-user {
	width: 100%;
	margin-bottom: 34px;
	padding: 20px 66px;

	border-radius: 10px;
	background: rgba(255, 255, 255, 0.66);
	-webkit-box-shadow: 0 0 5px #ddd;
	        box-shadow: 0 0 5px #ddd;
}
.my-fav-detail .post-user .user-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-ms-flex-align: center;

	margin-bottom: 26px;
}
.my-fav-detail .post-user .user-link img {
	width: 50px;
	height: 50px;
	margin-right: 6px;
}
.my-fav-detail .post-user .user-link .post-username {
	font-size: 15px;

	color: #545454;
}
.my-fav-detail .post-user .user-link .post-account-id,
.my-fav-detail .post-user .user-link .post-my-fave {
	font-size: 13px;

	color: #919191;
}
.my-fav-detail .post-user .user-link > div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-ms-flex-align: center;

	width: 100%;
}
.my-fav-detail .post-user .user-link .post-username,
.my-fav-detail .post-user .user-link .post-account-id,
.my-fav-detail .post-user .user-link .post-my-fave {
	display: block;
	overflow: hidden;

	width: 95%;

	white-space: nowrap;
	text-overflow: ellipsis;
}
.my-fav-detail .post-user .user-link .post-user-text {
	overflow: hidden;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 0;
	    -ms-flex: 1 1 0;
	        flex: 1 1 0;

	min-width: 0;
}
.my-fav-detail .post-user .follow,
.my-fav-detail .post-user .following {
	display: block;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	        flex-shrink: 0;

	width: 170px;
	margin: 0;
	padding: 10px 0 !important;

	text-align: center;
	white-space: nowrap;
}
.my-fav-detail .post-user .following {
	color: #5e88c9;
	border: 1px solid #5e88c9;
	background-color: #fff;
}
.my-fav-detail .post-user .follow {
	color: #fff;
	border: 1px solid #5e88c9;
	background-color: #5e88c9;
}
.my-fav-detail .post-user a {
	text-decoration: none;
}
.my-fav-detail .post-user .post-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	overflow: hidden;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;

	gap: 10px;
}
.my-fav-detail .post-user .post-list a {
	width: calc((100% - 30px) / 4);
}
.my-fav-detail .post-user .post-list a .small-post {
	display: block;

	width: 100%;
	max-width: 100%;
	max-height: 100%;

	border-radius: 4px;

	-o-object-fit: contain;
	   object-fit: contain;
}
.my-fav-detail .post-user .post-list .multiple-img {
	top: 4px;
	right: 4px;

	width: 12px;
	height: 12px;
}

.clearfix {
	clear: both;
}

@media (max-width: 992px) {
	.my-fav-detail {
		width: 100%;
	}
	.my-fav-detail .fav-main-image {
		width: 100%;
	}
	.my-fav-detail .fav-main-image img {
		width: 100%;
	}
	.my-fav-detail .profile-box .profile-title {
		padding: 10px 12px;
	}
	.my-fav-detail .profile-box .profile-block p {
		padding: 14px 12px;
	}
	.my-fav-detail .profile-sns-body {
		width: 70%;
		margin: 0 auto;
	}
	.my-fav-detail .profile-sns-body img {
		width: 30px;
		height: auto;

		-o-object-fit: contain;
		   object-fit: contain;
	}
	.my-fav-detail .post-user {
		padding: 16px;
	}
	.my-fav-detail .post-user .user-link > div {
		width: 88%;
	}
	.my-fav-detail .post-user .follow,
	.my-fav-detail .post-user .following {
		font-size: 12px;

		max-width: 86px;
	}
	.my-fav-detail .post-user .more-button {
		width: 100%;
	}
}
