@charset "utf-8";
/*
CSS Information
 File name:      photoblog_detail.css
 Author:         Administrator
 Style Info:     /photoblog_detail.php
----------------------------------------------------- */
@import url(photoblog_lady.css);
.check_box-lady {
	text-align: center;
	margin: 20px auto;
	display: block;
}

.check_box.check_box-item {
	vertical-align: middle;
	font-size: 16px;
	padding-left: 30px;
	position: relative;
}
.check_box-lady input[type="checkbox"]  {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* チェックボックスデザイン */
.check_box-lady input[type="checkbox"] {
	display: none;
}
.check_box-lady input[type="checkbox"]::before,
.check_box-lady input[type="checkbox"]::after {
	content: "";
	display: block; 
	position: absolute;
}
.check_box-lady input[type="checkbox"]::before {
	border: 2px solid red;
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	height: 16px;
	width: 16px;
}
.check_box-lady input[type="checkbox"]::after {
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 5px;
	height: 11px;
	width: 6px;
	transform: rotate(40deg);
}
.check_box.check_box-item::before {
	background-color: white;
	border: 2px solid red;
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	height: 16px;
	width: 16px;
}
input[type="checkbox"]:checked + .check_box-item::after {
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 5px;
	height: 11px;
	width: 6px;
	transform: rotate(40deg);
}
input[type="checkbox"]:checked + .check_box-item::before {
	background-color: red;
}
#addComment input[type="submit"] {
	font-size: 17px;
	margin: 10px auto;
	width: 280px;
}
.blog_favorite_btn {
	background: #fff;
	border-radius: 20px;
	border: 1px solid #cecece;
	padding: 5px 10px 5px 40px;
	position: relative;
	vertical-align: bottom;
	margin-bottom: 20px;
	opacity: .8;
	filter: grayscale(1);
	color: #6c6c6c;
	font-weight: 600;
	cursor: pointer;
}
.blog_favorite_btn.is_fav {
	background: #c90037;
	color: #fff;
	opacity: 1;
	filter: initial;
	border: 1px solid #c90037;
}
.blog_favorite_btn::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(https://img.undernavi.com/front/pc/shop/icon_like_gray.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.blog_favorite_btn.is_fav::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(https://img.undernavi.com/front/pc/shop/icon_like_white.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.blogbox-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fav-content {
	display: flex;
	justify-content: right;
	gap: 0 10px;
	align-items: center;
	margin-bottom: 10px;
}
.fav-content .blog_favorite_btn {
	margin-bottom: 0;
}

.fav-content-txt {
    opacity: 0.8;
    filter: grayscale(1);
}

.blogbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blogbox-header .blog_favorite_btn {
    margin-bottom: 0;
}
.login_modal_container-close {
	color: #fff;
	font-size: 30px;
	display: inline-block;
	cursor: pointer;
	text-align: right;
	margin-right: auto;
	position: absolute;
	right: 0;
	top: -35px;
}
.login_modal_container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#login_modal {
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}

#login_modal {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.login_modal_title {
	font-weight: bold;
	text-align: center;
}
.login_modal_description {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}
.login_modal_login_link {
    display: block;
    background: #c90037;
    color: #fff !important;
    border-radius: 5px;
    padding: 8px 0px;
    margin-top: 10px;
	font-weight: bold;
}
.login_modal_register_prompt {
	text-align: center;
	margin-top: 15px;
}
.login_modal_register_link {
    color: #c90037 !important;
    text-decoration: underline !important;
}
.fav-btn-box {
    display: flex;
    gap: 0 10px;
}
.fav-content-txt {
    font-size: 12px;
    color: #888;
}