@keyframes yurari {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurari_2deg {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurari_1deg {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes yurari_10deg {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes passing-bar {
  0% {
    transform: scaleX(0) translateX(-100%);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  51% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    height: 100%;
    opacity: 1;
  }
}
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.staff__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  .staff__list {
    flex-direction: column;
  }
}
.staff__item {
  width: 30%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .staff__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .staff__item {
    margin-bottom: 30px;
  }
}
.staff__item.is-show:nth-of-type(1) {
  animation-delay: 0.3s;
  animation-duration: 1s;
}
@media screen and (max-width: 1024px) {
  .staff__item.is-show:nth-of-type(1) {
    animation-delay: unset;
  }
}
.staff__item.is-show:nth-of-type(2) {
  animation-delay: 0.6s;
  animation-duration: 1s;
}
@media screen and (max-width: 1024px) {
  .staff__item.is-show:nth-of-type(2) {
    animation-delay: unset;
  }
}
.staff__item.is-show:nth-of-type(3) {
  animation-delay: 0.9s;
  animation-duration: 1s;
}
@media screen and (max-width: 1024px) {
  .staff__item.is-show:nth-of-type(3) {
    animation-delay: unset;
  }
}
.staff__item.is-show:nth-of-type(4) {
  animation-delay: 1.2s;
  animation-duration: 1s;
}
@media screen and (max-width: 1024px) {
  .staff__item.is-show:nth-of-type(4) {
    animation-delay: unset;
  }
}
.staff__item.is-show:nth-of-type(5) {
  animation-delay: 1.5s;
  animation-duration: 1s;
}
@media screen and (max-width: 1024px) {
  .staff__item.is-show:nth-of-type(5) {
    animation-delay: unset;
  }
}
.staff__item .img {
  width: 60%;
  margin: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .staff__item .img {
    margin-bottom: 10px;
  }
}
.staff__item .img img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.staff__item .content {
  background-color: var(--white);
  background-color: #efebe4;
  padding: 20px;
  padding-top: 60px;
  margin-top: -60px;
  flex-grow: 1;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .staff__item .content {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .staff__item .content {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .staff__item .content {
    margin-top: -30px;
  }
}
.staff__item .content::before {
  content: "";
  display: block;
  display: block;
  aspect-ratio: 610/1222;
  -webkit-mask-image: url(../img/icon_arrow.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-image: url(../img/icon_arrow.png);
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 12px;
  height: 24px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--gold);
  z-index: 1;
}
.staff__item .content p,
.staff__item .content span {
  color: var(--txt);
}
.staff__item .content .name .ja {
  display: block;
  font-weight: bold;
  letter-spacing: 0.15em;
  font-size: 1.2em;
  text-align: center;
}
.staff__item .content .name .en {
  display: block;
  text-transform: capitalize;
  color: var(--gold);
  text-align: center;
  line-height: 1;
}
.staff__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.staff__item a:hover .content {
  background-color: var(--gold);
  transition: all 0.3s;
}
.staff__item a:hover .content::before {
  background-color: var(--white);
}
.staff__item a:hover .content p,
.staff__item a:hover .content span {
  color: var(--white);
}
.staff__item a:hover .content .name .en {
  color: var(--white);
}
.staff .occupation {
  background-color: var(--gold);
  color: var(--white) !important;
  font-size: 0.9em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0px 10px;
}
@media screen and (max-width: 1024px) {
  .staff .occupation {
    padding: 0px 5px;
  }
}
.staff._single .box {
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .staff._single .box {
    margin-bottom: 40px;
  }
}
.staff._single .box .img {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .staff._single .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.staff._single .box .content {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .staff._single .box .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.staff._single .occupation {
  background-color: unset;
  color: var(--white);
  font-size: 1.6em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
  padding: 0px 10px;
}
@media screen and (max-width: 1024px) {
  .staff._single .occupation {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .staff._single .occupation {
    padding: 0px 5px;
  }
}
.staff._single .name {
  border-bottom: solid 1px var(--gold);
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .staff._single .name {
    margin-bottom: 20px;
  }
}
.staff._single .name .ja {
  font-size: 1.5em;
  letter-spacing: 0.15em;
}
.staff._single .name .en {
  text-transform: capitalize;
  color: var(--gold);
  font-size: 0.8em;
}
.staff._single .txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .staff._single .txt {
    margin-bottom: 20px;
  }
}
.staff._single .txt h2 {
  font-size: 1.8em;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .staff._single .txt h2 {
    margin-bottom: 10px;
  }
}
.staff._single .profile__item {
  display: flex;
  border-bottom: dotted 1px var(--light_gold);
  padding: 10px 5px;
}
@media screen and (max-width: 1024px) {
  .staff._single .profile__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .staff._single .profile__item {
    padding: 5px 2.5px;
  }
}
.staff._single .profile__item:last-of-type {
  border-bottom: none;
}
.staff._single .profile__item p {
  margin-bottom: 0;
}
.staff._single .profile__item .title {
  width: 40%;
  font-weight: bold;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .staff._single .profile__item .title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.staff._single .profile__item .txt {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .staff._single .profile__item .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.staff._single .staff_gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6%;
}
.staff._single .staff_gallery__item {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .staff._single .staff_gallery__item {
    width: 47%;
  }
}
.staff._single ._sidebar {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .staff._single ._sidebar {
    margin-top: 40px;
  }
}
.staff._single ._sidebar .sidebar {
  width: 100%;
}