@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400;500&family=Noto+Sans+JP:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&text=0123456789&display=swap");
/* -----------------color --------------------------*/
/* -----------------font --------------------------*/
/* -----------------font size --------------------------*/
/* -----------------breakpoint --------------------------*/
/* -----------------mixin --------------------------*/
/* -----------------reset --------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a:focus {
  border: none !important;
  box-shadow: none !important;
}

main {
  position: relative;
  z-index: 0;
  background: #FDC2BE;
  background: linear-gradient(90deg, rgb(253, 194, 190) 0%, rgb(156, 210, 213) 100%);
  padding-top: 10vw;
}
main::before {
  content: "";
  background-image: url("/assets/images/team/back-pattern.webp");
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-position: left -17vw top -28vw;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  main::before {
    background-position: left -17vw top -17vw;
    background-size: 130% auto;
  }
}

.section-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 0;
  z-index: -1;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.section-title:after {
  content: "";
  background-image: url("/assets/images/back-title-pink.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left 38% top;
  display: block;
  width: 100%;
  height: 500%;
  position: absolute;
  top: -150%;
  left: 2%;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .section-title:after {
    height: 500%;
    top: -180%;
    left: 2%;
    background-position: left 48% top;
  }
}

.page-team {
  padding-top: 6vw;
}
.page-team .memberlist {
  padding-top: 2vw;
  padding-bottom: 1vw;
}
@media screen and (max-width: 991px) {
  .page-team .memberlist {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 620px) {
  .page-team .memberlist {
    margin-top: 0;
  }
}
.page-team .item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 4rem;
  --theme-color: #ef8eb8;
}
.page-team .item.t-blue {
  --theme-color: #2fbdf0;
}
.page-team .item.t-pink {
  --theme-color: #ef8eb8;
}
.page-team .item.t-orange {
  --theme-color: #f8b418;
}
.page-team .item .img-box {
  text-align: center;
}
.page-team .item .img-box img {
  max-width: 100%;
  height: auto;
}
.page-team .item .img-box .entitle {
  left: 50%;
  font-size: clamp(20px, 22.66px + 0.1vw, 25px);
  text-align: left;
  z-index: 60;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .page-team .item .img-box .entitle {
    left: 70%;
  }
}
.page-team .item h3 {
  color: var(--theme-color);
  font-size: clamp(20px, 22.66px + 0.1vw, 25px);
}
.page-team .item .persontitle h4 {
  color: var(--theme-color);
  font-size: calc(clamp(25px, 23.13px + 0.5vw, 30px) * 1.715);
  text-align: right;
  padding-right: 1rem;
}
.page-team .item .person-inner {
  background-color: var(--theme-color);
  color: #ffffff;
  border-radius: 1rem;
  padding: 0.75rem 2rem;
  width: 100%;
  margin-bottom: 1rem;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .page-team .item .person-inner {
    width: 120%;
    transform: translate(-5rem, 0);
    margin-bottom: 3rem;
  }
}
.page-team .item .person-inner h5 {
  font-size: clamp(20px, 22.66px + 0.1vw, 25px);
  border-right: solid 1px #ffffff;
  padding-right: 0.5rem;
}
.page-team .item .person-inner h5 + h5 {
  border-right: none !important;
  font-size: calc(clamp(20px, 22.66px + 0.1vw, 25px) * 0.8);
}
.page-team .item .messagearea .inner {
  border: solid 1px var(--theme-color);
  padding: 1rem 2rem;
  color: var(--theme-color);
}
.page-team .item .messagearea .inner h4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-team .item .messagearea .inner h4:before, .page-team .item .messagearea .inner h4:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 35px;
  background-color: var(--theme-color);
}
.page-team .item .messagearea .inner h4:before {
  transform: rotate(-25deg) translate(-0.5rem, -0.5rem);
}
.page-team .item .messagearea .inner h4:after {
  transform: rotate(25deg) translate(0.5rem, -0.5rem);
}/*# sourceMappingURL=team.css.map */