
.pagevisual {
  background: url(../img/pv.png) no-repeat center / cover;
  & + .container {margin: 0 auto;}
}
@media screen and (max-width: 767px) {
  .pankuzu_list {
    flex-wrap: initial;
    white-space: nowrap;
    overflow: auto;
  }
}
.staff_pv {
  position: relative;
}
.staff_pvSmall {
  font-size: 70%;
  letter-spacing: 2px;
  position: absolute;
  inset: 18px 245px auto 0;
  margin: auto;
  width: max-content;
  @media screen and (max-width: 767px) {
    width: 237px;
    inset: auto;
    top: 24px;
  }
}
.staff_pvMain {
  transform: translateY(18px);
  @media screen and (max-width: 767px) {
    letter-spacing: 2.4px;
  }
}
.staff_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75em 40px;
  @media screen and (max-width: 767px) {
    gap: 1.75em 15px;
  }
}
.staff_name {
  position: relative;
  color: #533F3D;
  border-bottom: 3px solid #D8CFC2;
  padding-bottom: 10px;
  font-size: 2.8rem;
  letter-spacing: 1.4px;
  margin: 0;
  width: 100%;
  &::before {
    content: '';
    position: absolute;
    border-bottom: 3px solid #3A2206;
    width: 20%;
    height: inherit;
    left: 0;
    bottom: -3px;
  }
  @media screen and (max-width: 767px) {
    order: -1;
  }
}
.staff_namePosi, .staff_nameRuby > rt {
  font-size: 50%;
  letter-spacing: 0.7px;
}
.staff_namePosi {display: block;}
.staff_nameRuby {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  & > rt {
    transform: translateY(-5px);
  }
}
.staff_contFig {
  margin: 0;
  width: 100%;
  max-width: max-content;
  @media screen and (max-width: 767px) {
    margin-inline: auto;
    order: -1;
  }
}
.w-wrap {
  width: 100%;
  max-width: calc(100% - 220px - 40px);
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.w-half {
  width: 100%;
  max-width: calc(50% - 20px);
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.staff_indentLists {
  & > li {
    padding-left: 1em;
    text-indent: -1em;
    &::before {content: '・';}
    &:not(:last-child) {padding-bottom: 0.25em;}
  }
}
.staff_flexLists {
  display: flex;
  gap: 0 1em;
  &:not(:last-child) {padding-bottom: 0.25em;}
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 0 0.5em;
    &:not(:last-child) {padding-bottom: 0.45em;}
  }
}
.staff_flexLists--time {
  min-width: 70px;
}

.staff_subHead {
  color: #533F3D;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin: 0 0 1em 0;
  &::before {
    content: '';
    display: block;
    width: 3px;
    height: 30px;
    background: #d8cfc2;
  }
}
p:has(> .staff_more) {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
.staff_more {
  max-width: 260px;
  width: 100%;
  height: 40px;
  font-weight: bold;
  color: rgb(241, 239, 233);
  background: rgb(58, 34, 6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}
.staff_more--arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* aside箇所 */
.staff_related {
	width: 100%;
	padding: 50px 0;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	display: flex;
	align-items: flex-start;
	gap: 20px 50px;
  margin-top: 65px;
	@media screen and (max-width: 767px) {
		flex-wrap: wrap;
		padding: 35px 0;
    margin-top: 45px;
	}
}
.staff_related--title {
	font-size: 2rem;
	margin: 0;
	white-space: nowrap;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
	}
}
.staff_related--pages {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.staff_related--item {
	max-width: calc(100% / 3 - 20px / 3);
	width: 100%;
	background: rgba(255, 255, 255, 0.5);
	a {
		width: 100%;
		height: 64px;
		padding: 0.5em 1em;
		display: flex;
		align-items: center;
		gap: 10px;
		color: #000;
	}
	a::before {
		content: "";
		display: inline-block;
		min-width: 0.5em;
		aspect-ratio: 1 / 1;
		clip-path: polygon(100% 50%, 0 0, 0 100%);
		background: #594b3c;
	}
	a:hover {
		background: #D8CFC2;
		opacity: 1;
	}
	&[aria-current="page"] {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 0.5em 1em;
		color: #000;
		background: #D8CFC2;
	}
	&[aria-current="page"]::before {
		content: "";
		display: inline-block;
		min-width: 0.5em;
		aspect-ratio: 1 / 1;
		clip-path: polygon(100% 50%, 0 0, 0 100%);
		background: #594b3c;
	}
	@media screen and (max-width: 767px) {
		max-width: calc(50% - 5px);
		font-size: 1.4rem;
	}
}