#cv_title {
    font-size: 2rem;
    font-weight: bold;
}
#cv_contents_side h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.content_box .user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.content_box .user span {
    display: flex;
    align-items: center;
}

.content_box .user img {
    width: 1.5rem;
    height: 1.5rem;
}

.content_box .user p {
    margin: 0;
    margin-left: 0.5rem;
    line-height: 1rem;
}

.content_box .content_head {
    display: flex;
    justify-content: space-between;
}

.content_box .title {
    font-size: 1.5rem;
    font-weight: bold;
}

.content_box .addr_map {
    display: flex;
    justify-content: right;
}

.content_box .map_link .addr_txt {
    font-size: 0.5rem;
    font-size: small;
}

.content_box .map_link:hover {
    cursor: pointer;
    text-decoration: underline;
    color: #f00;
}

.content_box .content_images {
    display: grid;
    grid: 50% 50% / 50% 50%;
    height: 400px;
    margin-bottom: 0.5rem;
    border-radius: 2rem;
    overflow: hidden;
}

.grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #fff;
}
.grid.l1_1 {
    grid-row: 1 / span 2;
    grid-column: 1 / span 2;
}
.grid.l2_1 {
    grid-row: 1 / span 2;
    grid-column: 1 / span 1;
}
.grid.l2_2 {
    grid-row: 1 / span 2;
    grid-column: 2 / span 1;
}
.grid.l3_1 {
    grid-row: 1 / span 2;
    grid-column: 1 / span 1;
}

.video_wrap {
	position: relative;
}
.video_wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video_wrap i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	color: deeppink;
	background: white;
	padding: 0.5rem;
	border-radius: 0.5rem;
}

.content_box .tags span {
    display: inline-block;
    padding-right: 0.5rem;
    color: #5af;
}

.share_btn {
    color: #fff;
    padding: 0.5rem;
    padding-right: 3rem;
    font-weight: bold;
}
.share_btn span.page_url {
    display: none;
}
span.share_btn {
    display: inline-block;
}
.share-link {
    background: #f55;
}


/*
#article_view_wrap {
	max-width: calc(100% - 25rem);
	min-width: 330px;
}
*/

/* course */
/*
#course_view_wrap {
	max-width: calc(100% - 25rem);
	min-width: 330px;
}
*/
img.icon_img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

#cv_img_wrap {
    display: grid;
    grid: 50% 50% / 50% 50%;
    margin: 0.5rem 0 1rem;
    height: 400px;
    border-radius: 2rem;
    overflow: hidden;
}

#cv_list_map {
    width: 100%;
    height: 400px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}

#cv_list {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    overflow: auto;
}

.list_box {
    display: grid;
    grid: 1fr 2fr / 2fr 1fr;
    padding-bottom: 0.5rem;
    height: 5rem;
}
.list_box:nth-child(odd) {
    background: #eee;
}
.list_title {
    grid-row: 1 / 1 span;
    font-weight: bold;
}
.list_img {
    grid-row: 1 / 2 span;
}
.list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.a_num {
    display: inline-block;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: #f00;
    font-weight: normal;
    width: 1.5rem;
    height: 1.5rem;
    line-height: normal;
}
.a_num.bg_orange {
    background: orange;
}
.a_num.bg_purple {
    background: #c0f;
}
.a_num.bg_blue{
	background: blue;
}
.a_num.bg_green{
	background: #0e6;
}
#cv_map, .a_map {
    width: 100%;
    height: 100%;
}
#map_shrink{
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 50%;
	font-size: large;
	color: black;
	background: white;
}
#map_shrink:hover{
	cursor: pointer;
}
#cv_list_map.shrink #map_shrink{
	background: #bef;
}
#map_expand, .map_expand{
	position: absolute;
	top: 3.5rem;
	right: 0.5rem;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 50%;
	font-size: large;
	color: black;
	background: white;
}
#map_expand:hover, .map_expand:hover{
	cursor: pointer;
}
#map_here, .map_here{
	position: absolute;
	top: 6.5rem;
	right: 0.5rem;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 50%;
	font-size: large;
	color: black;
	background: white;
}
#map_here:hover, .map_here:hover{
	cursor: pointer;
}
#cv_list_map.expand{
	height: 80vh;
	max-height: unset;
}
#cv_list_map.shrink{
	height: 0;
	background: unset;
}
#cv_list_map.shrink > *:not(#map_shrink){
	display: none;
}
#cv_list_map:not(.shrink) #map_shrink > *.shrink{
	display: none;
}
#cv_list_map.shrink #map_shrink > *:not(.shrink){
	display: none;
}



#cv_articles .content_box {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
}
#cv_articles .content_box .content_head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
#cv_articles .content_box .a_title {
    font-size: 1.5rem;
    font-weight: bold;
}
#cv_articles .a_num {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
}
.content_box .addr_map {
    display: flex;
    justify-content: right;
}
#cv_articles .content_images {
    display: grid;
    grid: 50% 50% / 50% 50%;
    height: 400px;
}
#cv_articles .content_box .a_user {
    display: block;
    text-align: right;
    font-size: 0.8rem;
}
#cv_articles .content_box .a_user img {
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: middle;
}

#cv_articles .sub_contents{
	margin-left: 3vw;
	/**/
	margin-bottom: 0.5rem;
	border: 1px solid #eee;
	box-shadow: 1px 1px 4px #ccc;
	padding: 0.5rem;
}
#cv_articles .sub_contents .content_box{
	display: none;
}
#cv_articles .sub_contents .content_box:last-child{
	border-bottom: none !important;
}
#cv_articles .sub_contents > span{
	display: inline-block;
	width: 100%;
	font-weight: bold;
	font-size: large;
	cursor: pointer;
}
#cv_articles .sub_contents > span > img{
	width: 30px;
	margin-right: 2px;
	background: #eee;
}
#cv_articles .sub_contents > span:before{
	font-family: 'Font Awesome 5 Free';
	/*
	font-weight: 400;
	content: '\f0fe';
	*/
	font-weight: 600;
	content: '\f0d7';
	vertical-align: top;
	margin-right: 0.5rem;
}
#cv_articles .sub_contents > span.active:before{
	/*
	content: '\f146';
	*/
	content: '\f0d8';
}
/*
#cv_articles .sub_contents > span:after{
	content: '▼';
	font-weight: bold;
	margin-left: 1rem;
}
#cv_articles .sub_contents > span.active:after{
	content: '▲';
}
*/
#cv_articles .guide .content_text{
	margin-bottom: 1rem;
}
#cv_articles .guide .content_images{
	display: unset;
}
#cv_articles .guide .content_images > div{
	display: flex;
	align-items: center;
	height: 6rem;
	padding-bottom: 0.5rem;
}
#cv_articles .guide .content_images > div span{
	flex: 1;
}
#cv_articles .guide .content_images img{
	width: 150px;
	padding-right: 1rem;
}
#cv_articles .guide .content_images .video_wrap i{
	font-size: 1rem;
}
#cv_articles .point .sub_body_wrap{
	display: flex;
}
#cv_articles .point .sub_body_wrap > div{
	flex: 1;
}
#cv_articles .point .content_images{
	height: 200px;
	padding-right: 1rem;
}


/* img modal view */
#img_modal {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        background: rgba(0,0,0,0.3);
        background: rgba(255,255,255,0.9);
        z-index: 2500;
}
#img_modal img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 95%;
        max-height: 95%;
        min-width: 80%;
        object-fit: contain;
        background: #fff;
        padding: 10px;
        box-shadow: #000 5px 5px 10px;
}
#img_modal #img_txt {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.7);
}

/* video modal view */
#video_modal {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        background: rgba(0,0,0,0.3);
        background: rgba(255,255,255,0.9);
        z-index: 2500;
}
#video_modal video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
	min-width: 80%;
	object-fit: contain;
	background: #fff;
	padding: 10px;
	box-shadow: #000 5px 5px 10px;
}
#video_close {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 2rem;
	background: rgba(255,255,255,0.9);
	padding: 0 0.5rem;
	border-radius: 0.5rem;
	z-index: 1;
}
#video_close:hover {
	cursor: pointer;
	background: #ddd;
}

.article_view_wrap .content_box{
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;
}
.article_view_wrap .map_wrap{
	width: 100%;
	height: 400px;
	position: relative;
}
.article_view_wrap .map_wrap.expand{
	height: 80vh;
}
.article_view_wrap .map_wrap .map_expand{
	top: 1rem;
}
.article_view_wrap .map_wrap .map_here{
	top: 4.5rem;
}
