@charset "utf-8";

#mainvisual{
    height: 250px;
    text-align: center;
    background-image: url(/public/img/bg.webp);
    background-size: cover;
    display: flex;
    align-items: center;
}
#mainvisual h1 {
    font-size: 32px;
    color: #FFF;
    margin: 0 auto;
    z-index: 1;
    line-height: 1.4;
}
#mainvisual h1 span{
    display: block;
    font-size: 18px;
    font-weight: normal;
}
#mainvisual h1 span.shopName {
    font-size: 14px;
}

.staffTitle{
	max-width: 900px;
	width: 90%;
	margin: 50px auto 30px;
}
.staffTitle h2{
	text-align: center;
	color: #69422C;
}
.staffTitle p{
	text-align: center;
}
.staffTitle p span{
	display: inline-block;
}

.staffWrap{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.linkWrap{
	max-width: 900px;
	width: 90%;
	margin: 50px auto;
}
.linkWrap a{
	color: #69422C;
}
.staffInfo {
    box-sizing: border-box;
    padding: 20px;
    background-color: #FEF0E5;
    margin-bottom: 4%;
	text-align: center;
}
.staffInfo .nameTitle{
	margin-top: 20px;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	color: #69422C;
}
.staffInfo .staffTxt{
	font-weight: normal;
	line-height: 1.5;
	color:#373737;
}
.staffInfo .staffTxt span{
	display: block;
	text-align: center;
	font-size: 14px;
	margin-top: 20px;
}

@media only screen and (max-width:450px){
	#mainvisual{
		height: 150px;
		margin-top: 80px;
	}
    .staffTitle h2{
        font-size: 20px;
		margin-bottom: 10px;
    }	
	.staffTitle{
		margin: 30px auto;
	}
	.staffWrap{
		display: block;
	}
	.staffInfo img{
		margin: 0 auto;
		width: 80%;
	}
	
}




