/* CSS Document */

#fv{
	max-width: 1160px;
	height: 280px;
	margin: 30px auto;
	position: relative;
}
#fv::before{
	content: '';
	background: rgba(0,0,0,.5);
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
#fv img{
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#fv h1{
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.6em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	width: 90%;
	text-align: center;
}
#fv h1 img{
	margin: 5px auto;
	border-radius: 0;
	width: auto;
	height: auto;
}



#hotTag{
	margin: 80px auto;
	max-width: 860px;
	display: flex;
	align-items: flex-start;
}
#hotTag h5{
	margin: 5px;
	width: 160px;
}
#hotTag ul{
	width: calc(100% - 160px);
	display: flex;
	flex-wrap: wrap;
	line-height: 1.4em;
}
#hotTag ul li{
	margin: 3px;
}
#hotTag ul li a {
	font-weight: 600;
	background: #F2E8DE;
	border-radius: 20px;
	padding: 4px 15px;
	display: block;
}



#tagArticle{
	max-width: 1020px;
	margin: auto;
}
#tagArticle .searchResult{
	text-align: right;
	font-weight: 500;
	line-height: 1.4em;
	color: #808080;
	margin: 0 20px;
}
#tagArticle .searchResult::before{
	content: url("img/i_search.png");
	vertical-align: top;
	margin-right: 5px;
}
#tagArticle .list{
	display: flex;
	flex-wrap: wrap;
}
#tagArticle .list dl{
	width: 280px;
	margin: 20px 30px 40px;
}
#tagArticle .list dl dt {
	width: 280px;
	height: 180px;
	position: relative;
}
#tagArticle .list dl dt img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}
#tagArticle .list dl dt .new{
	position: absolute;
	left: -1px;
	top: -1px;
	background: #F6ECE2;
	padding: 8px 16px;
	border-radius: 0 0 5px 0;
}
#tagArticle .list dl dd {
	margin: 10px 0 0;
}
#tagArticle .list dl dd h3{
	font-size: 105%;
	font-weight: 600;
	margin: 5px 0;
	position: relative;
	padding-left: 15px;
}
#tagArticle .list dl dd h3::before{
	content: '';
	border-top: 2px solid #666;
	width: 10px;
	position: absolute;
	top: 10px;
	left: 0;
	display: block;
}
#tagArticle .list dl dd h4{
	min-height: 2.7rem;
}
#tagArticle .list dl dd .tag {
	border-top: 1px solid #666;
	margin: 15px 0 0;
	padding: 10px 0 8px;
}
#tagArticle .list dl dd .tag li {
	display: inline-block;
	margin: 5px 0 0;
}
#tagArticle .list dl dd .tag li a{
	font-size: 90%;
	font-weight: 600;
	background: #F2E8DE;
	border-radius: 20px;
	padding: 2px 15px;
	display: block;
}
#tagArticle .list dl dd time {
	font-size: 80%;
	color: #666;
	border: 1px solid #666;
	border-width: 0 1px;
	padding: 0 10px;
}



#HashtagSearch{
	margin: 100px auto;
	background: #F6ECE2;
	padding: 80px 0 40px;
}
#HashtagSearch h2{}
#HashtagSearch h2 img{
	margin: auto;
}
#HashtagSearch ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 800px;
	margin: 40px auto;
}
#HashtagSearch ul li{
	margin: 2px;
}
#HashtagSearch ul.main li{
	position: relative;
	width: 196px;
	height: 196px;
}
#HashtagSearch ul.main li a::after{
	content: '';
	background: rgba(0,0,0,.6);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .4s;
}
#HashtagSearch ul.main li a:hover::after{
	background: rgba(0,0,0,.2);
	transition: all .4s;
}
#HashtagSearch ul.main li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#HashtagSearch ul.main li a:hover img{
	opacity: 1;
}
#HashtagSearch ul.main li h3{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	transform: translate(-50% , -50%);
	text-align: center;
	font-size: 120%;
	font-weight: 600;
	color: #fff;
	width: 80%;
}


#HashtagSearch ul.sub {
	max-width: 600px;
}
#HashtagSearch ul.sub li {
	display: inline-block;
	margin: 5px;
}
#HashtagSearch ul.sub li a {
	font-size: 90%;
	font-weight: 600;
	background: #fff;
	border-radius: 20px;
	padding: 2px 15px;
	display: block;
	line-height: 1.6em;
}
#HashtagSearch dl.list {
	max-width: 800px;
	margin: 40px auto;
}
#HashtagSearch dl.list dt{
	background: #12B2AA;
	color: #000;
	font-weight: 600;
	font-size: 110%;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	position: relative;
}
#HashtagSearch dl.list dt img{
	margin: auto;
}
#HashtagSearch dl.list dt::after{
	content: url("../module/img/on.png");
	position: absolute;
	right: 20px;
	top: 18px;
}
#HashtagSearch dl.list dt.active::after{
	content: url("../module/img/off.png");
}
#HashtagSearch dl.list dt:hover{
	opacity: .8;
	cursor: pointer;
}
#HashtagSearch dl.list dd{
	display: none;
	max-width: 600px;
	margin: 40px auto;
}
#HashtagSearch dl.list dd ul{
	margin: 0;
}







@media screen and (max-width: 736px) {

	#fv {
    margin: 10px;
		height: 160px;
	}
	#fv::before {
    border-radius: 5px;
	}
	#fv img {
    border-radius: 5px;
	}
	#fv h1 {
    font-size: 1.3rem;
	}
	#fv h1 img {
    width: 50px;
	}

	#hotTag {
    margin: 20px;
		flex-direction: column;
	}
	#hotTag h5 {
    margin: 10px 0;
	}
	#hotTag ul {
    width: auto;
	}
	#hotTag ul li {
    margin: 0 5px 5px 0;
	}

	#tagArticle .searchResult {
    margin: 10px;
	}
	#tagArticle .list {
    flex-direction: column;
	}
	#tagArticle .list dl {
    width: auto;
    margin: 0;
		padding: 30px;
	}
	#tagArticle .list dl:nth-of-type(odd){
		background: #F6ECE2;
	}
	#tagArticle .list dl:nth-of-type(odd) dd .tag li a{
		background: #fff;
	}
	#tagArticle .list dl dt {
    width: auto;
    height: 200px;
	}
	#tagArticle .list dl dd h3 {
    font-size: 85%;
    margin: 5px 0 0;
	}
	#tagArticle .list dl dd h4 {
    font-weight: 600;
	}



	#HashtagSearch {
		padding: 40px 0 20px;
	}
	#HashtagSearch h2 {
    margin: 0 60px;
	}
	#HashtagSearch ul {
    margin: 20px auto;
	}
	#HashtagSearch ul.main li {
    width: 44%;
		height: auto;
    margin: 1%;
	}
	#HashtagSearch ul.main li a::after{
    border-radius: 5px;
	}
	#HashtagSearch ul.main li img{
		border-radius: 5px;
	}
	#HashtagSearch ul.sub {
    margin: 20px;
    justify-content: flex-start;
	}
	#HashtagSearch ul.sub li {
    margin: 0 5px 5px 0;
	}
	#HashtagSearch dl.list {
    margin: 20px auto;
	}
	#HashtagSearch dl.list dt {
    padding: 15px;
    border-radius: 5px;
    margin: 0 20px;
	}
	#HashtagSearch dl.list dt::after {
    top: 12px;
	}
	#HashtagSearch dl.list dd {
    margin: 20px auto;
	}
	#HashtagSearch dl.list dd ul {
    margin: 0 20px;
	}














}

