@charset "UTF-8";
#maker {
	background: #EEEEEE;
}
#maker #main_visual {
	position: relative;
	height: auto;
	width: 100%;
	background: none;
}

#maker #main_visual h2{
	font-size: 28px;
	margin: 0;
}


#maker #main_bg {
	position: relative;
	z-index: 5;
	height: 80px;
	background: #0093aa;
	font-weight: bold;
	font-size: 28px;
	color: #fff;

	filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.15));
}
#main_bg::before {
	content: none;
}
.search {
	background: #00bcd8;
	box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.15);
}
.searchbox {
	border-radius: 0;
	padding: 10px 70px;
	box-shadow: none;
}
.searchbox input::placeholder {
	color: #ccc;
}
.searchbox .loupe {
	top: 10px;
}
.box {
	margin-bottom: 70px;
}
.box dl + dl {
	margin-top: 40px;
}
.box dt {
	position: relative;
	margin: 0 0 20px;
	padding: 20px 0 0 20px;
	color: #00a5be;
	font-weight: bold;
	font-size: 24px;
}

.box dt::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background: #00a5be;
	box-shadow: 1px 1px 0 #CCCCCC;
}

.maker-list {
	display: flex;
	flex-wrap: wrap;
}
.maker-list li {
	width: calc((100% / 4) - 5px);
	margin-right: 6px;
    display: flex;
    align-items: stretch;
}
.maker-list li:nth-child(4n) {
	margin-right: 0;
}
.maker-list li:nth-child(n + 5) {
	margin-top: 5px;
}
.maker-list li a {
	position: relative;
	background: #fff;
	display: flex;
	align-items: center;
	padding: 10px;
	transition: .5s;
	padding: 10px 50px 10px 10px;
    width: 100%;
}
.maker-list li a:hover {
	opacity: 0.7;
}
.maker-list li a:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 5px;
	margin-top: -5px;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	transform: skewX(30deg);
}
/*.maker-list li a span{
	display: flex;
	align-items: center;
}*/
.maker-list li a em{
	margin-left: 4px;
	font-size: 80%;

}

.searchbox .loupe::after {
	font-size: 26px;
}
@media (max-width: 768px) {
	
	#maker #main_visual .inner {
    top: 0;
	}
	.search {
		padding: 0;
	}
	.searchbox {
    border-radius: 0;
    padding: 10px;
	}
	.searchbox input {
		height: 47px;
		border-radius: 6px;

	}
	.searchbox .loupe {
		height: 47px;
		right: 10px;
		border-radius: 0 6px 6px 0;
	}

	.maker-list li {
    width: calc((100% / 2) - 5px);
    margin-right: 6px;
	}
	.maker-list li:nth-of-type(2n) {
    margin-right: 0;
	}
	
	.maker-list li:nth-of-type(n + 3) {
    margin-top: 5px;
	}
	.maker-list li a {
    padding: 6px 40px 6px 10px;
	}
	.box {
    margin-bottom: 10px;
	}
}