@charset "UTF-8";
/* ----関数設定---- */
/* ----------------------------------------------------------------------
STAFFページ
---------------------------------------------------------------------- */

.staff_box{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem ;
    box-sizing: border-box;
    color: #032859;
}

.staff_item{
    display: block;
    width: calc((100% - 10rem) / 3);
}

.staff_item img{
    width: 100%;
	height:auto;
	border-radius: 5px;
}
.staff_degree{
	font-family:"Shippori+Mincho+B1",serif;
    font-weight: 700;
    padding: 15px 0 5px;
	line-height: 1.5;
}

.staff_name {
	font-family:"Shippori+Mincho+B1",serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}
.staff_name span{
	font-family:"EB Garamond",serif;
    font-weight: 400;
	letter-spacing: 0;
    font-size: 16px;
	padding-left:15px;
}

@media screen and (max-width: 1024px) {
	.staff_box { gap: 4rem; }
	.staff_item{
		display: block;
		width: calc((100% - 8rem) / 3);
	}
}

@media screen and (max-width: 820px) {
	.staff_degree { font-size: 14px; padding-top: 10px;}
}

@media screen and (max-width: 520px) {
	.staff_box { gap: 2rem;}
	.staff_item{
		width: calc((100% - 2rem)/2);
	}
}

