@charset "UTF-8";
/* mvを100vhに */
.p-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* モバイル対応 */
  overflow: hidden;
  isolation: isolate;
}

.p-mv__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-mv__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.p-mv__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  box-sizing: border-box;
  padding:
    clamp(16px, 2.5vw, 36px)
    clamp(16px, 2.5vw, 36px)
    clamp(20px, 3vw, 48px);
}

html:not(.no-js) .p-mv__inner .p-mv__logo,
 html:not(.no-js) .p-mv__inner .p-mv__catch{
    opacity: 0;
    scale: 1.025;
    transition: .6s cubic-bezier(.22, .025, .2, 1);
    transition-property: opacity, scale, -webkit-mask-size;
    transition-property: opacity, mask-size, scale;
    transition-property: opacity, mask-size, scale, -webkit-mask-size;
}
html.no-webfont .p-mv__inner .p-mv__logo,
 html.no-webfont .p-mv__inner .p-mv__catch{
    opacity: 1;
    scale: 1;
}

/* ロゴ：左上 */
.p-mv__logo {
  position: absolute;
  top: clamp(16px, 2.5vw, 36px);
  left: clamp(16px, 2vw, 36px);
}

.p-mv__logo img {
  display: block;
  width: clamp(120px, 18vw, 280px);
  max-width: 100%;
  height: auto;
}

.p-mv__catch {
  position: absolute;
  left: clamp(16px, 4vw, 64px);
  bottom: clamp(20px, 3vw, 48px);
}

.p-mv__catch img {
  display: block;
  width: clamp(220px, 65vw, 840px);
  max-width: min(88vw, 840px);
  height: auto;
}

@media screen and (max-width: 800px) {
  .p-mv__logo img {
    width: clamp(110px, 32vw, 180px);
  }

  .p-mv__catch img {
    width: clamp(180px, 72vw, 420px);
    max-width: 72vw;
  }
}

    .p-info__item-title {
      padding-left: 2.2vw;
    }
@media screen and (min-width: 1440px) {
    .p-info__item-title {
      padding-left: 2.2vw;
    }
  }
  @media screen and (min-width: 801px) {
    .p-info__item-title {
      padding-left: 2.2vw;
    }
  }

.p-pickup__item.staff-list {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.73vw;
}
.staff__career {
  padding: 1.6vw 0 1.2vw 2vw;
  width: 100%;
  font-weight: 600;
}

.staff__name {
  font-size: 1.6vw;
  letter-spacing: .15em;
}
.staff__position {
  font-size: 1.2vw;
  padding-right: 1vw;
}
.staff__career table {
  margin-top: 3vw;
  border-collapse: collapse;
  table-layout: fixed;
  position: relative;
}
.staff__career table::before {
  content: "";
  position: absolute;
  top: .4em;
  bottom: .4em;
  left: 4.1vw;
  width: 1px;
  background: #9AAEB6;
}

table.staff-license  {
  margin-top: 2vw;
}
.staff__career table th,
.staff__career table td {
  padding: .1vw;
  line-height: 1.6;
  text-align: left;
  font-size: 1vw;
}
.staff__career table th {
  width: 4vw;
}
.staff__career table td {
  /* border-left: 1px solid #9AAEB6; */
  padding-left: 1vw;
}

@media screen and (max-width: 800px) {
  .p-pickup__item.staff-list {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1.73vw;
}
.staff__career {
  padding: 56px 4.5vw;
}

.staff__name {
  font-size: min(5vw, 32px);
  letter-spacing: .15em;
}
.staff__position {
  font-size: min(4vw , 24px);
  padding-right: 2.5vw;
}
.staff__career table {
  margin-top: 32px;
}
.staff__career table::before {
  left: calc(clamp(60px, 15vw, 100px) - 1vw);
  width: 1px;
  background: #9AAEB6;
}
table.staff-license  {
  margin-top: 24px;
}
.staff__career table th,
.staff__career table td {
  padding: 0;
  line-height: 1.7;
  font-size: min(3.5vw , 18px);
}
.staff__career table th {
  width: clamp(64px, 15vw, 100px);
  padding: 0 .5em 0 0;
  text-align: left;
}
.staff__career table td {
  padding-left: 2.5vw;
}
  }
