* {
    color: #00284c;
}

.tokuyaku {
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.top-container {
	/* margin: 0 8%; */
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-container {
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #768a9b;
}

.search-1 {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.search-1 button {
    height: auto;
    width: 200px;
    font-family: "Playfair Display", "Playfair Display", serif;
    font-size: 16px;
    background-color: #f8f9ff;
    border: none;
    padding: 0;
}

.search-1 button:hover {
    color: #828ca2;
}

.adjustment1 {
    visibility: hidden;
    width: 200px;
    height: 1px;
    background-color: red;
}

.search-2 {
    margin-top: 50px;

}

.input-area {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.main-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.category-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-top: 30px;
}

.seller-name {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: bold;
    font-family: "Playfair Display", serif;
}

.seller-name p{
    color: #00284c;
    width: 50%;
    margin-bottom: 0;
    /* border-bottom: solid 1px #bcbcbc; */
}

.item-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 5px;
}

.item-card {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 380px;
	min-width: 200px;
    width: 20%;
	padding: 10px;
	background-color: #f8f9ff;
	font-family: "Roboto", serif;
    text-align: center;
}

.item-img {
    height: 50%;
    margin-bottom: 25px;
}

.item-img img{
	height: 100%;
	width: auto;
    transition: scale 0.25s;
    
}

.item-img img:hover {
    scale: 1.05;
}

.item-text {
	display: flex;
	flex-direction: column;
}

.name {
	font-size: 18px;
    font-family: "Playfair Display", serif;
}

.introduction {
    font-family: "Playfair Display", serif;
}

.information {
	height: 10%;
    font-family: "Tinos" serif;
}

.adjustment2 {
    visibility: hidden;
    height: 1px;
    min-width: 200px;
    width: 20%;
    background-color: red;
    padding: 0 10px;
    /* border: solid 2px; */
}

#top-link a{
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    font-family: "Playfair Display", serif;
}

#top-link a:hover {
    color: #828ca2;
}