@charset "UTF-8";
/* ============================================ */
/* people
/* ============================================ */
/* ===== top-area ===== */
#top-area {
  position: relative;
  margin: 0 0 130px;
}
#top-area .out-wrap {
  width: calc(100% - 80px);
  overflow: hidden;
}
#top-area .top-img {
  position: relative;
  width: 100%;
  height: calc(100svh - 120px);
  min-height: 700px;
  border-radius: 40px;
}
#top-area #category-name {
  position: absolute;
  left: 7.5%;
  top: 30px;
}
#top-area .catch-wrap {
  position: absolute;
  transform: translate(0, -50%);
}
#top-area .catch-wrap.left {
  left: 7.5%;
  top: 60%;
}
#top-area .catch-wrap.right {
  right: 7.5%;
  top: 37%;
}
#top-area .page-name {
  width: 130px;
  margin: 0 0 20px;
}
#top-area .top-catch {
  background: linear-gradient(transparent 10%, var(--color-white) 0%);
  display: inline;
  font-size: 37px;
  font-size: 2.3125rem;
  line-height: 1.8;
  font-weight: 500;
}
#top-area .profile {
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: right;
  padding: 0 5% 0 120px;
  margin: 40px 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 100px;
}
#top-area .profile .job-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#top-area .profile .name {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: var(--fontfamily-en);
  margin: 0 0.3em 0 0.5em;
}

/* 画像・キャッチ位置設定 */
.rk #top-area .top-img::before {
  background-image: url(../img/people/rk/top-img.jpg);
  background-position: 75% center;
}

.nt #top-area .top-img::before {
  background-image: url(../img/people/nt/top-img.jpg);
  background-position: 60% center;
}

.ky #top-area .top-img::before {
  background-image: url(../img/people/ky/top-img.jpg);
  background-position: 30% center;
}

.mh #top-area .top-img::before {
  background-image: url(../img/people/mh/top-img.jpg);
  background-position: 70% center;
}

.hk #top-area .top-img::before {
  background-image: url(../img/people/hk/top-img.jpg);
}

@media screen and (max-width: 1400px) {
  #top-area .catch-wrap.right {
    top: 60%;
  }
}
@media screen and (max-width: 1024px) {
  #top-area .top-img {
    height: 600px;
    min-height: auto;
  }
  #top-area .catch-wrap.left {
    top: 60%;
  }
  #top-area .catch-wrap.right {
    top: 75%;
  }
  #top-area .top-catch {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  #top-area {
    margin: 0 0 80px;
  }
  #top-area .out-wrap {
    width: calc(100% - 40px);
  }
  #top-area .top-img {
    height: 480px;
  }
  #top-area #category-name {
    top: 0;
  }
  #top-area .page-name {
    width: 120px;
    margin: 0 0 10px;
  }
  #top-area .top-catch {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #top-area .profile {
    font-size: 11px;
    font-size: 0.6875rem;
    padding: 0 5% 0 88px;
    margin: 20px 0 0 auto;
    min-height: 80px;
  }
  #top-area .profile .name {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #top-area .top-img {
    height: 320px;
  }
  #top-area .top-catch {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
/* ===== section共通 ===== */
.section + .section {
  margin: 120px 0 0;
}
.section .flex-wrap {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
.section .flex-wrap.reverse {
  flex-direction: row-reverse;
}
.section .flex-wrap .text {
  margin: 30px 0 0;
}
.section .flex-wrap .img {
  width: 560px;
  flex-shrink: 0;
}
.section .flex-wrap .img img {
  border-radius: 20px;
}
.section .catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  margin: 0 0 1em;
}

@media screen and (max-width: 1400px) {
  .section .flex-wrap .img {
    width: 420px;
  }
}
@media screen and (max-width: 1200px) {
  .section .flex-wrap .img {
    width: 360px;
  }
  .section .catch {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 1024px) {
  .section + .section {
    margin: 80px 0 0;
  }
  .section .flex-wrap {
    flex-direction: column;
    gap: 30px;
    padding: 0 10% 0 0;
  }
  .section .flex-wrap .text {
    margin: 0;
  }
  .section .flex-wrap .img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 0 0;
  }
  .section .flex-wrap.reverse {
    flex-direction: column;
    padding: 0 0 0 10%;
  }
  .section .flex-wrap.reverse .img {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .section + .section {
    margin: 60px 0 0;
  }
  .section .catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* ===== section01 ===== */
#section01 .img {
  padding: 0 0 0 40px;
}

@media screen and (max-width: 1024px) {
  #section01 .img {
    padding: 0;
    margin: 0 auto 0 0;
  }
}
/* ===== section02 ===== */
#section02 .wrap {
  padding: 0 5%;
}

@media screen and (max-width: 1024px) {
  #section02 .wrap {
    padding: 0;
  }
}
/* ===== section03 ===== */
#section03 .img {
  padding: 0 40px 0 0;
}

@media screen and (max-width: 1024px) {
  #section03 .img {
    padding: 0;
    margin: 0 0 0 auto;
  }
}
/* ===== offtime ===== */
#offtime .out-wrap {
  border: solid 1px var(--color-red);
  border-radius: 40px;
  padding: 60px 5% 60px calc(3% + 200px);
}
#offtime .out-wrap {
  width: calc(100% - 80px);
}
#offtime .flex-wrap {
  display: flex;
  gap: 30px;
  padding: 0;
}
#offtime .title {
  position: absolute;
  left: 3%;
  top: 60px;
  width: 150px;
}
#offtime .text {
  margin: 0;
}
#offtime .img {
  width: 360px;
}

@media screen and (max-width: 1200px) {
  #offtime .img {
    width: 360px;
  }
}
@media screen and (max-width: 1024px) {
  #offtime .out-wrap {
    border: solid 1px var(--color-red);
    border-radius: 40px;
    padding: 60px 10%;
  }
  #offtime .title {
    position: relative;
    inset: 0;
    width: 150px;
  }
  #offtime .img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #offtime .out-wrap {
    width: calc(100% - 40px);
    padding: 25px 7.5% 30px;
  }
  #offtime .title {
    width: 120px;
  }
}
/* ===== other ===== */
#other {
  background: var(--color-lightbeige);
  padding: 80px 0 150px;
  margin: 200px 0 0;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}
#other .title {
  width: 70%;
  max-width: 520px;
  margin: 0 auto 30px;
}
#other .roll {
  position: relative;
  display: flex;
  width: 100%;
}
#other .people-list {
  display: flex;
  flex-wrap: nowrap;
  -webkit-animation: roll-p 25s linear infinite;
          animation: roll-p 25s linear infinite;
}
#other .people-list .item {
  padding: 0 50px;
}
#other .people-list .catch {
  display: none;
}

@-webkit-keyframes roll-p {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes roll-p {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  #other {
    padding: 60px 0 80px;
    margin: 120px 0 0;
  }
  #other .title {
    max-width: 360px;
  }
}

/*# sourceMappingURL=people.css.map */