/* CSS Document */


#fv {
	position: relative;
}
#fv h2 {
	position: absolute;
    bottom: 30%;
    right: 10%;
    width: 23%;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .5));
}
#fv h3 {
	color: #231d1c;
	background: #e2e1de;
	text-align: center;
	font-size: 140%;
	line-height: 1.4;
	letter-spacing: 3.4px;
	font-weight: 500;
	padding: 15px 0;
}

#searchMap h2{
	padding: 80px 0 20px;
    text-align: center;
    font-size: 110%;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: .4px;
}
#searchMap h2 strong{
	font-size: 140%;
	font-weight: 600;
	text-decoration:underline;
	padding-right: 20px;
}
#searchMap h2 img{
	vertical-align: text-bottom;
}

#searchMap .worksMap {
	margin: 40px 0;
	/*height: 600px;
	background: #eee;
	display: flex;
	justify-content: center;
	align-items: center;*/
}
#searchMap .inner{
	padding-bottom: 50px;
	border-bottom:  1px solid #1b745b;	
}

#searchCategory h2{
	padding: 80px 0 20px;
    text-align: center;
    font-size: 110%;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: .4px;
}
#searchCategory h2 strong{
	font-size: 140%;
	font-weight: 600;
	text-decoration:underline;
	padding-right: 20px;
}

#searchCategory .categoryNav {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin: 20px auto 30px;
	max-width: 900px;
}

#searchCategory .categoryNav .btn {
	border: none;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.2s ease;
	color: #fff;
	letter-spacing: .4px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
	text-align: center;
	white-space: nowrap;
	display: flex;
	align-items: center;   
	justify-content: center;
	gap: 8px;
	width: 160px;
	height: 60px;
	padding: 0 20px;
	box-sizing: border-box;
	line-height: 3;
	background: #ccc;
}

#searchCategory .categoryNav .btn .arrowDownIcon {
	width: 12px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}
#searchCategory .categoryNav .btn .arrowRightIcon {
	width: 8px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

#searchCategory .categoryNav .road {
	background-color: #54838d;
	border: 2px solid #54838d;
}
#searchCategory .categoryNav .bank {
	background-color: #70afbc;
	border: 2px solid #70afbc;
}
#searchCategory .categoryNav .bridge {
	background-color: #54838d;
	border: 2px solid #54838d;
}
#searchCategory .categoryNav .construction {
	background-color: #70afbc; 
	border: 2px solid #70afbc;
}

#searchCategory .categoryNav .btn.all {
	background: #fff;
	color: #1b745b;
	border: 2px solid #1b745b;
}

#searchCategory p{
	font-size: 0.9em;
    padding: 0 20px;	
}

#searchResults{
	background: #e2e1de;
	padding: 50px 0;
}
#searchResults .workItem {
	display: flex;
	align-items: flex-start;
	padding: 30px 50px;
	max-width: 920px;
	margin: 50px auto;
	flex-wrap: wrap;
	background:#fff;
}
#searchResults .workImage {
	flex: 0 0 300px;
	margin-right: 20px;
	aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
	color: #999;
}
#searchResults .workImage img {
	width: 100%;
	display: block;
	aspect-ratio: 4/3;
  object-fit: cover;
}
#searchResults .workInfo {
	flex: 1;
}
#searchResults .meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
}
#searchResults .meta .date {
	color: #1b745b;
	font-size: 110%;
}
#searchResults .meta .type1 {
	padding: 2px 15px;
	border: 1px solid #54838d;
	color: #54838d;
	border-radius: 8px;
	line-height: 1.5em;
	font-weight: 500;
}
#searchResults .meta .type2 {
	padding: 2px 15px;
	border: 1px solid #70afbc;
	color: #70afbc;
	border-radius: 8px;
	line-height: 1.5em;
	font-weight: 500;
}

#searchResults .workItem .meta .project {
	padding: 2px 15px;
	border: 1px solid #666;
	color: #666;
	border-radius: 8px;
	line-height: 1.5em;
	font-weight: 500;
}
#searchResults .workItem.road .meta .project { border-color: #54838d; color: #54838d;}
#searchResults .workItem.bank .meta .project { border-color: #70afbc; color: #70afbc;}
#searchResults .workItem.bridge .meta .project { border-color: #54838d; color: #54838d;}
#searchResults .workItem.construction .meta .project { border-color: #70afbc; color: #70afbc;}


#searchResults .workInfo h2 {
	font-size: 1.2em;
    color: #1b745b;
    border-bottom: 1px solid #1b745b;
    padding-bottom: 5px;
    margin: 25px 0;
    font-weight: 500;
}
#searchResults .award {
	 display: flex;
  	align-items: center;
	color: #b57e10;
}
#searchResults .award .awardIcon {
	background: url(img/awardIcon.webp) no-repeat left center;
    background-size: 48px auto;
    padding-left: 55px;
    min-height: 33px;
    display: flex;
    align-items: center;
    margin: 0 3px;	
}
#searchResults .areaButtonWrap {
	display: flex;
	align-items: center;
	gap: 10px; 
	flex-wrap: wrap;
	margin: 10px 0;
	justify-content: space-between;
}

#searchResults .areaLabel {
	background: #1b745b;
	color: #fff;
	padding: 2px 6px;
	font-size: 0.9em;
	margin-right: 5px;
}
#searchResults .btn {
    background: #54838d;
}
#searchResults .btn::after {
    border-left: 4px solid #54838d;
}
#searchResults .btn2{
	background: #70AFBC;
}
#searchResults .btn2::after {
    border-left: 4px solid #70AFBC;
}

#searchResults .workItem.road .workInfo .btn { background: #54838d;}
#searchResults .workItem.bank .workInfo .btn { background: #70afbc;}
#searchResults .workItem.bridge .workInfo .btn { background: #54838d;}
#searchResults .workItem.construction .workInfo .btn { background: #70afbc;}
#searchResults .workItem.road .workInfo .btn::after { border-color: #54838d;}
#searchResults .workItem.bank .workInfo .btn::after { border-color: #70afbc;}
#searchResults .workItem.bridge .workInfo .btn::after { border-color: #54838d;}
#searchResults .workItem.construction .workInfo .btn::after { border-color: #70afbc;}



#searchResults h3{
	text-align: center;
	padding-top: 30px;
}
#searchResults h3 img{
	margin: auto;
    width: 23%;
}
@media screen and (max-width: 480px) {
  
	
	#fv h2 {
    	width: 30%;
        right: 5%;
	}
	#fv > img {
		width: 100%;
		aspect-ratio: 5/3;
		object-fit: cover;
		object-position: 80%;
	}
	#fv h3 {
		font-size: 130%;
	}

	#searchMap {
		padding: 30px 0;
	}
	#searchMap h2 {
		padding: 30px 0 20px;
		font-size: 100%;
	}
	#searchMap .worksMap {
		margin: 15px 0;
		/*height: 300px;*/
	}
	#searchCategory h2 {
		padding: 30px 0 20px;
		font-size: 100%;
	}
	#searchCategory .categoryNav {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
    	margin: 20px auto 10px;
	}
	#searchCategory .categoryNav .btn {
		width: 100%;
        justify-content: center;
        font-size: 1.1em;
        height: 40px;
		line-height: 6;
	}
	#searchCategory .categoryNav .btn .arrowRightIcon {
		width: 8px;
	}
	
	#searchCategory p {
		font-size: 100%;
		padding: 0;
	}
	#searchResults {
		padding: 30px 0;
	}
	#searchResults .workItem {
		flex-direction: row;
		padding: 20px;
        margin: 20px auto;
	}
	#searchResults .workImage {
		flex: 0 0 auto;
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	#searchResults .workImage img {
		width: 100%;
	}
	#searchResults .workInfo h2 {
		margin: 10px 0;
	}
	#searchResults .meta {
		margin: 10px 0;
	}
	#searchResults .areaButtonWrap {
    	align-items: flex-start;
    	flex-direction: column;
	}
	#searchResults .btn {
        margin: 10px auto 0;
    }
	#searchResults h3 {
		padding-top: 10px;
	}
	#searchResults .award .awardIcon {
		background-size: 48px auto;
		padding-left: 56px;
		margin: 0; 
	}
	#searchResults h3 img {
		width: 50%;
	}
	
}
