/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

ul, li {
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}

:root {
  --vw: 1vw;
}

.footer {
  margin-top: 60px;
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.footer__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 30px;
}
.footer__logo img {
  display: inline-block;
  width: 218px;
}
.footer__sns-label {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  font-family: "Cormorant Garamond", serif;
}
.footer__sns a:nth-child(1) img {
  width: 30px;
}
.footer__sns a:nth-child(2) img {
  width: 32px;
}
.footer__sns a:nth-child(3) img {
  width: 30px;
}
.footer .copyright {
  font-size: 10px;
  color: #666;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.page-wrap {
  display: flex;
  flex-direction: row-reverse;
  min-height: 100vh;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .page-wrap {
    flex-direction: column;
  }
}

.site-header {
  width: 100px;
  flex-shrink: 0;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .site-header {
    width: 100%;
    height: 16vw;
    flex-direction: row;
    align-items: center;
    padding: 0 5vw;
    position: sticky;
    top: 0;
    z-index: 100;
  }
}
.site-header__logo-img {
  width: 40px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .site-header__logo-img {
    width: 40vw;
  }
}

.site-main {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.site-footer {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer > div:first-child {
  padding: clamp(38px, 4vw, 48px) clamp(24px, 5vw, 72px);
  display: flex;
  justify-content: center;
}
.site-footer__logo-img {
  height: 94px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .site-footer__logo-img {
    height: 19vw;
  }
}

.taisei-footer-bar {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 26px clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .taisei-footer-bar {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 5vw;
  }
}
.taisei-footer-bar__logo {
  height: 36px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .taisei-footer-bar__logo {
    height: 7vw;
  }
}
.taisei-footer-bar__copy {
  font-size: clamp(10px, 1.2vw, 12px);
  color: #000000;
  letter-spacing: 0.04em;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .taisei-footer-bar__copy {
    position: static;
    text-align: center;
  }
}

.js-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadein:nth-child(2) {
  transition-delay: 0.1s;
}

.js-fadein:nth-child(3) {
  transition-delay: 0.2s;
}

.js-fadein:nth-child(4) {
  transition-delay: 0.3s;
}

.js-fadein--delay {
  transition-delay: 0.5s;
}
.js-fadein--delay.is-visible {
  transition-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .js-fadein--delay {
    transition-delay: 0s;
  }
  .js-fadein--delay.is-visible {
    transition-delay: 0s;
  }
}

.loader {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderLogoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.loader__logo {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .loader__logo {
    width: 30vw;
  }
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.mv .mv-tit {
  position: absolute;
  top: 10%;
  left: 4%;
  width: 58%;
  height: 30%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .mv .mv-tit {
    top: 0;
    left: 0;
    width: 100%;
    height: 35vw;
  }
}
.mv .mv-tit .mv-tit__clip {
  position: absolute;
}
.mv .mv-tit .mv-tit__clip:nth-of-type(1) {
  top: 14%;
  left: 6%;
  height: 17%;
}
.mv .mv-tit .mv-tit__clip:nth-of-type(2) {
  top: 14%;
  left: 55%;
  height: 17%;
}
@media screen and (max-width: 768px) {
  .mv .mv-tit {
    margin-bottom: 12vw;
  }
  .mv .mv-tit .mv-tit__clip:nth-of-type(1) {
    top: 17%;
    left: 6%;
    height: 18%;
  }
  .mv .mv-tit .mv-tit__clip:nth-of-type(2) {
    top: 17%;
    left: 56%;
    height: 18%;
  }
}
.mv .mv-tit .mv-tit__clip {
  clip-path: inset(0 100% 0 0);
}
.mv .mv-tit .mv-tit__wrap {
  position: absolute;
  overflow: hidden;
  opacity: 0;
}
.mv .mv-tit .mv-tit__wrap img {
  position: relative;
  transform: matrix(1, 0, 0, 1, 0, 30);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(1) {
  top: 41%;
  left: 6%;
  height: 41%;
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(1) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv .mv-tit .mv-tit__wrap:nth-of-type(1) {
    top: 42%;
    left: 6%;
    height: 38%;
  }
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(2) {
  top: 50%;
  left: 9%;
  height: 23%;
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(2) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv .mv-tit .mv-tit__wrap:nth-of-type(2) {
    top: 51%;
    left: 10%;
    height: 20%;
  }
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(3) {
  top: 52%;
  left: 47%;
  height: 18%;
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(3) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv .mv-tit .mv-tit__wrap:nth-of-type(3) {
    top: 52%;
    left: 47%;
    height: 18%;
  }
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(4) {
  top: 41%;
  left: 55%;
  height: 41%;
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(4) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv .mv-tit .mv-tit__wrap:nth-of-type(4) {
    top: 42%;
    left: 56%;
    height: 38%;
  }
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(5) {
  top: 48%;
  left: 71%;
  height: 25%;
}
.mv .mv-tit .mv-tit__wrap:nth-of-type(5) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv .mv-tit .mv-tit__wrap:nth-of-type(5) {
    top: 50%;
    left: 72%;
    height: 22%;
  }
}
.mv .mv-tit.is-loaded .mv-tit__clip:nth-of-type(1) {
  animation: mvTitClip 0.6s cubic-bezier(0.77, 0, 0.18, 1) 0.1s forwards;
}
.mv .mv-tit.is-loaded .mv-tit__clip:nth-of-type(2) {
  animation: mvTitClip 0.6s cubic-bezier(0.77, 0, 0.18, 1) 2.4s forwards;
}
.mv .mv-tit.is-loaded .mv-tit__wrap {
  opacity: 1;
}
.mv .mv-tit.is-loaded .mv-tit__wrap img {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.mv .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(1) img {
  transition-delay: 0.1s;
}
.mv .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(2) img {
  transition-delay: 0.8s;
}
.mv .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(3) img {
  transition-delay: 1.6s;
}
.mv .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(4) img {
  transition-delay: 2.4s;
}
.mv .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(5) img {
  transition-delay: 3.2s;
}

@keyframes mvTitClip {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
.swiper-slide-mv__dept {
  position: absolute;
  left: 0;
  bottom: -0.1%;
  background: rgb(0, 0, 0);
  padding: 1vw 0;
  width: 35vw;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__dept {
    padding: 1.7vw 0;
    width: 80vw;
  }
}
.swiper-slide-mv__dept span {
  font-size: 1.4vw;
  color: #ffffff;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__dept span {
    font-size: 3.6vw;
  }
}

.swiper-mv {
  width: 100%;
  height: 56.5vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .swiper-mv {
    height: 145vw;
    min-height: 280px;
  }
}

.swiper-slide-mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.swiper-slide-mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.swiper-slide-mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}
.swiper-slide-mv__badge {
  position: absolute;
  left: 41%;
  bottom: 15%;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__badge {
    left: 3%;
    bottom: 10%;
  }
}
.swiper-slide-mv__badge .badge-row {
  position: relative;
  overflow: hidden;
  display: table;
}
.swiper-slide-mv__badge .badge-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  transform-origin: left center;
  transform: scaleX(0);
}
.swiper-slide-mv__badge .badge-row .badge-text {
  position: relative;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
  display: block;
  line-height: 1.2;
}
.swiper-slide-mv__badge .badge-row .badge-text::before, .swiper-slide-mv__badge .badge-row .badge-text::after {
  content: "";
  display: table;
}
.swiper-slide-mv__badge .badge-row:nth-child(1),
.swiper-slide-mv__badge .badge-row:nth-child(2),
.swiper-slide-mv__badge .badge-row:nth-child(3) {
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__badge .badge-row:nth-child(1),
  .swiper-slide-mv__badge .badge-row:nth-child(2),
  .swiper-slide-mv__badge .badge-row:nth-child(3) {
    margin-bottom: 4px;
  }
}
.swiper-slide-mv__badge .badge-row:nth-child(1) .badge-text {
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__badge .badge-row:nth-child(1) .badge-text {
    font-size: clamp(14px, 5vw, 24px);
  }
}
.swiper-slide-mv__badge .badge-row:nth-child(2) .badge-text {
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__badge .badge-row:nth-child(2) .badge-text {
    font-size: clamp(10px, 3vw, 14px);
  }
}
.swiper-slide-mv__badge .badge-row:nth-child(3) .badge-text {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__badge .badge-row:nth-child(3) .badge-text {
    font-size: clamp(22px, 7vw, 38px);
  }
}
.swiper-slide-mv__badge .badge-row:nth-child(4) .badge-text {
  font-size: clamp(10px, 1.3vw, 14px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  .swiper-slide-mv__badge .badge-row:nth-child(4) .badge-text {
    font-size: clamp(8px, 2.4vw, 11px);
  }
}

.mv__pagination-wrap {
  background: #ffffff;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 50px;
}
@media screen and (max-width: 768px) {
  .mv__pagination-wrap {
    padding: 10px 16px;
  }
}

.swiper-pagination-mv {
  position: static !important;
  display: flex !important;
  gap: 6px;
  width: auto !important;
  transform: none !important;
  bottom: auto !important;
}
.swiper-pagination-mv .swiper-pagination-bullet {
  width: 36px;
  height: 6px;
  border-radius: 0;
  background: #e0e0e0;
  opacity: 1;
  transition: background 0.3s;
  margin: 0 !important;
}
.swiper-pagination-mv .swiper-pagination-bullet-active {
  background: #000000;
}

.interview {
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 72px);
  max-width: 940px;
  height: 800px;
  position: relative;
}
.interview::after {
  content: "";
  display: block;
  width: 953px;
  height: 540px;
  background: #f2f2f2;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .interview::after {
    width: 100%;
    height: 92%;
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .interview {
    padding: 36px 5vw;
    width: 90%;
    max-width: none;
    height: auto;
  }
}
.interview__heading {
  font-size: clamp(40px, 12vw, 90px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 36px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .interview__heading {
    margin-bottom: 8vw;
  }
}
.interview__text {
  padding-left: 10px;
  font-size: clamp(14px, 3.8vw, 19px);
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 2.8;
  color: #000000;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .interview__text {
    padding-left: 1vw;
    line-height: 2;
  }
}
.interview__text p {
  margin-bottom: 1.4em;
}
.interview__text p:last-child {
  margin-bottom: 0;
}

.gallery-loop {
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery-loop {
    margin-top: 18vw;
  }
}
.gallery-loop .splide__track {
  overflow: hidden;
}
.gallery-loop .splide__list {
  display: flex;
  gap: 0 !important;
  font-size: 0;
  line-height: 0;
}
.gallery-loop .splide__slide {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}
.gallery-loop .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
}

.members {
  padding: clamp(60px, 10vw, 100px) 0;
  width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .members {
    width: 100%;
    padding: 60px 16px;
  }
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}
@media screen and (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.member-card {
  display: block;
  width: 490px;
}
@media screen and (max-width: 768px) {
  .member-card {
    width: 100%;
  }
}
.member-card:hover .member-card__img img {
  transform: scale(1.04);
}
.member-card:hover .member-card__more-text {
  background: linear-gradient(90deg, #5bc8f5 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.member-card:hover .member-card__more-line {
  background: linear-gradient(90deg, #5bc8f5 0%, #a78bfa 100%);
}
.member-card:hover .member-card__more-line::before {
  background: linear-gradient(90deg, #5bc8f5 0%, #a78bfa 100%);
}
.member-card:hover .member-card__more-arrow {
  background: linear-gradient(90deg, #5bc8f5 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.member-card__img {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .member-card__img {
    height: auto;
    aspect-ratio: 982/604;
  }
}
.member-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.member-card__img .member-card__role-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ffffff;
  padding: 6px 18px 6px 0;
  font-size: clamp(12px, 3.4vw, 16px);
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .member-card__img .member-card__role-badge {
    padding: 6px 10px 6px 0;
  }
}
.member-card__info {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .member-card__info {
    padding: 0;
  }
}
.member-card__name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.member-card__name .ja {
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000000;
}
.member-card__name .en {
  font-size: clamp(12px, 1.8vw, 16px);
  color: #555555;
  font-weight: 500;
}
.member-card__name .year {
  font-size: clamp(12px, 1.8vw, 16px);
  color: #555555;
}
.member-card__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.member-card__more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.member-card__more-text {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transition: background 0.3s, -webkit-text-fill-color 0.3s;
  line-height: 1;
}
.member-card__more-bottom {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.member-card__more-line {
  flex: 1;
  height: 1px;
  background: #000000;
  transition: background 0.3s;
  min-width: 96px;
  position: relative;
}
.member-card__more-line::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  bottom: 3px;
  right: 0;
  background: #000000;
  transform: rotate(45deg);
  transition: background 0.3s;
}
.member-card__more-arrow {
  font-size: 14px;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transition: background 0.3s, -webkit-text-fill-color 0.3s;
  line-height: 1;
  margin-left: 2px;
  font-style: normal;
}

.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(1)::before {
  transform: scaleX(1);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1) 0.05s;
}
.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(2)::before {
  transform: scaleX(1);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1) 0.32s;
}
.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(3)::before {
  transform: scaleX(1);
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.18, 1) 0.58s;
}
.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(4)::before {
  transform: scaleX(1);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1) 0.84s;
}

.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(1) .badge-text {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.38s cubic-bezier(0.77, 0, 0.18, 1) 0.28s;
}
.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(2) .badge-text {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.38s cubic-bezier(0.77, 0, 0.18, 1) 0.55s;
}
.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(3) .badge-text {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.44s cubic-bezier(0.77, 0, 0.18, 1) 0.82s;
}
.swiper-slide-mv.is-active .swiper-slide-mv__badge .badge-row:nth-child(4) .badge-text {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.38s cubic-bezier(0.77, 0, 0.18, 1) 1.08s;
}

.iv-hero {
  position: relative;
  width: 100%;
  background: #000000;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .iv-hero {
    margin-bottom: 20vw;
  }
}
.iv-hero__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1101/500;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .iv-hero__inner {
    aspect-ratio: auto;
    height: 145vw;
    min-height: 500px;
  }
}
.iv-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.iv-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.iv-hero__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.iv-hero .mv-tit {
  position: absolute;
  top: 6vw;
  left: 4%;
  width: 58%;
  height: 19vw;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit {
    top: 0;
    left: 0;
    width: 100%;
    height: 35vw;
  }
}
.iv-hero .mv-tit .mv-tit__clip {
  position: absolute;
}
.iv-hero .mv-tit .mv-tit__clip:nth-of-type(1) {
  top: 18%;
  left: 6%;
  height: 15%;
}
.iv-hero .mv-tit .mv-tit__clip:nth-of-type(2) {
  top: 17%;
  left: 55%;
  height: 15%;
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit .mv-tit__clip:nth-of-type(1) {
    top: 17%;
    left: 6%;
    height: 18%;
  }
  .iv-hero .mv-tit .mv-tit__clip:nth-of-type(2) {
    top: 17%;
    left: 56%;
    height: 18%;
  }
}
.iv-hero .mv-tit .mv-tit__clip {
  clip-path: inset(0 100% 0 0);
}
.iv-hero .mv-tit .mv-tit__wrap {
  position: absolute;
  overflow: hidden;
  opacity: 0;
}
.iv-hero .mv-tit .mv-tit__wrap img {
  position: relative;
  transform: matrix(1, 0, 0, 1, 0, 30);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(1) {
  top: 41%;
  left: 6%;
  height: 38%;
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(1) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit .mv-tit__wrap:nth-of-type(1) {
    top: 42%;
    left: 6%;
    height: 38%;
  }
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(2) {
  top: 50%;
  left: 10%;
  height: 20%;
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(2) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit .mv-tit__wrap:nth-of-type(2) {
    top: 51%;
    left: 10%;
    height: 20%;
  }
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(3) {
  top: 51%;
  left: 47%;
  height: 17%;
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(3) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit .mv-tit__wrap:nth-of-type(3) {
    top: 52%;
    left: 47%;
    height: 18%;
  }
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(4) {
  top: 41%;
  left: 55%;
  height: 38%;
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(4) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit .mv-tit__wrap:nth-of-type(4) {
    top: 42%;
    left: 56%;
    height: 38%;
  }
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(5) {
  top: 48%;
  left: 71%;
  height: 23%;
}
.iv-hero .mv-tit .mv-tit__wrap:nth-of-type(5) img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .iv-hero .mv-tit .mv-tit__wrap:nth-of-type(5) {
    top: 50%;
    left: 72%;
    height: 22%;
  }
}
.iv-hero .mv-tit.is-loaded .mv-tit__clip:nth-of-type(1) {
  animation: mvTitClip 0.6s cubic-bezier(0.77, 0, 0.18, 1) 0.1s forwards;
}
.iv-hero .mv-tit.is-loaded .mv-tit__clip:nth-of-type(2) {
  animation: mvTitClip 0.6s cubic-bezier(0.77, 0, 0.18, 1) 2.4s forwards;
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap {
  opacity: 1;
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap img {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(1) img {
  transition-delay: 0.1s;
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(2) img {
  transition-delay: 0.8s;
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(3) img {
  transition-delay: 1.6s;
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(4) img {
  transition-delay: 2.4s;
}
.iv-hero .mv-tit.is-loaded .mv-tit__wrap:nth-of-type(5) img {
  transition-delay: 3.2s;
}
.iv-hero__profile {
  position: absolute;
  left: calc(44% + clamp(20px, 4vw, 60px) + clamp(20px, 3vw, 40px));
  right: 0;
  bottom: -10%;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: #000000;
  padding: clamp(12px, 2vw, 20px) clamp(20px, 3vw, 20px);
  gap: clamp(8px, 0.5vw, 10px);
  clip-path: inset(0 100% 0 0);
}
.iv-hero__profile.is-visible {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
@media screen and (max-width: 768px) {
  .iv-hero__profile {
    left: inherit;
    right: 0;
    bottom: -33px;
    padding: 14px 4vw;
    gap: 1vw;
    width: 90%;
  }
}
.iv-hero__step {
  font-size: clamp(50px, 9vw, 80px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  position: absolute;
  bottom: -15px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .iv-hero__step {
    font-size: 10vw;
    bottom: -4px;
  }
}
.iv-hero__role {
  display: block;
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
  align-self: flex-start;
  margin-left: auto;
  padding-top: 2px;
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .iv-hero__role {
    font-size: clamp(13px, 3vw, 30px);
    position: absolute;
  }
}
.iv-hero__name {
  margin-bottom: 0;
  margin-left: 1vw;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .iv-hero__name {
    text-align: right;
    margin-left: auto;
  }
}
.iv-hero__name .ja {
  display: block;
  font-size: 3.4vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .iv-hero__name .ja {
    font-size: clamp(32px, 8vw, 60px);
  }
}
.iv-hero__name .en {
  display: inline-block;
  font-size: 1.2vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}
.iv-hero__name .en .year {
  font-size: 1.1vw;
}
@media screen and (max-width: 768px) {
  .iv-hero__name .en .year {
    font-size: clamp(11px, 2.8vw, 26px);
  }
}
@media screen and (max-width: 768px) {
  .iv-hero__name .en {
    font-size: clamp(13px, 3vw, 30px);
  }
}
.iv-hero__dept {
  position: absolute;
  left: 0;
  bottom: -0.1%;
  background: rgb(0, 0, 0);
  padding: 1vw 0;
  width: 35vw;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .iv-hero__dept {
    padding: 1.7vw 0;
    width: 80vw;
  }
}
.iv-hero__dept span {
  font-size: 1.4vw;
  color: #ffffff;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .iv-hero__dept span {
    font-size: 3.6vw;
  }
}

.pic-L {
  width: 100%;
  height: 40vw;
  margin-top: clamp(80px, 8vw, 100px);
}
@media screen and (max-width: 768px) {
  .pic-L {
    width: calc(100% - 10vw);
    height: 60vw;
    margin: 5vw auto 0;
  }
}
.pic-L.pic-L-1 {
  background: url(../img/ueno/pic-L-1.jpg) no-repeat center center;
  background-size: cover;
}
.pic-L.pic-L-2 {
  background: url(../img/ueno/pic-L-2.jpg) no-repeat center center;
  background-size: cover;
}
.pic-L.pic-L-3 {
  background: url(../img/ueno/pic-L-3.jpg) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .pic-L.pic-L-3 {
    background: url(../img/ueno/pic-L-3-sp.jpg) no-repeat top center;
    background-size: 100% auto;
    height: 114vw;
  }
}

.iv-chapter {
  margin-top: clamp(50px, 8vw, 100px);
}

.iv-chapter__inner {
  display: flex;
  align-items: flex-start;
  padding-left: clamp(20px, 4vw, 60px);
}
.iv-chapter__inner--reverse {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: clamp(20px, 4vw, 60px);
}
@media screen and (max-width: 768px) {
  .iv-chapter__inner {
    flex-direction: column-reverse;
    padding: 0;
  }
  .iv-chapter__inner--reverse {
    flex-direction: column-reverse;
  }
}

.iv-chapter__photo {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  margin-right: clamp(20px, 3vw, 40px);
}
@media screen and (max-width: 768px) {
  .iv-chapter__photo {
    flex: none;
    width: 90vw;
    margin: 0 auto;
    gap: 5vw;
  }
}
.iv-chapter__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.iv-chapter__photos {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  margin-left: clamp(20px, 3vw, 40px);
}
@media screen and (max-width: 768px) {
  .iv-chapter__photos {
    flex: none;
    width: 90vw;
    margin: 0 auto;
    order: -1;
    gap: 5vw;
  }
}
.iv-chapter__photos img {
  width: 100%;
  height: auto;
  display: block;
}

.iv-chapter__content {
  flex: 1;
  background: #f2f2f2;
  position: relative;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4.5vw, 60px) clamp(48px, 6vw, 80px);
  overflow: hidden;
  margin-right: calc(-1 * clamp(20px, 4vw, 60px));
  padding-right: calc(clamp(28px, 4.5vw, 60px) + clamp(20px, 4vw, 60px));
}
.iv-chapter__inner--reverse .iv-chapter__content {
  margin-right: 0;
  padding-right: clamp(28px, 4.5vw, 60px);
  margin-left: calc(-1 * clamp(20px, 4vw, 60px));
  padding-left: calc(clamp(28px, 4.5vw, 60px) + clamp(20px, 4vw, 60px));
}
@media screen and (max-width: 768px) {
  .iv-chapter__content {
    padding: clamp(32px, 8vw, 48px) 5vw clamp(40px, 10vw, 56px);
    width: 90vw;
    margin: 0 auto;
  }
  .iv-chapter__inner--reverse .iv-chapter__content {
    padding: clamp(32px, 8vw, 48px) 5vw clamp(40px, 10vw, 56px);
    width: 90vw;
    margin: 0 auto;
  }
}

.iv-chapter__watermark {
  font-size: 7vw;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(255, 255, 255);
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: -1.5vw;
  right: 3.5vw;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark {
    font-size: clamp(60px, 20vw, 75px);
    top: -4vw;
    right: -0.5vw;
  }
}
.iv-chapter__watermark.wr {
  top: -1.5vw;
  right: 3.5vw;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark.wr {
    top: -4vw;
    right: -0.5vw;
  }
}
.iv-chapter__watermark.wl, .iv-chapter__watermark.otl {
  right: -0.2vw;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark.wl, .iv-chapter__watermark.otl {
    right: -0.5vw;
  }
}
.iv-chapter__watermark.m, .iv-chapter__watermark.ey {
  right: 4vw;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark.m, .iv-chapter__watermark.ey {
    top: -3vw;
    right: -1vw;
    font-size: 14vw;
  }
}
.iv-chapter__watermark.s {
  font-size: 5.5vw;
  top: -1.2vw;
  right: 4vw;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark.s {
    top: -2vw;
    right: -0.5vw;
    font-size: 11vw;
  }
}
.iv-chapter__watermark.wsl {
  font-size: 5.5vw;
  top: -1.2vw;
  right: -0.2vw;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark.wsl {
    font-size: 11vw;
    top: -2vw;
  }
}
.iv-chapter__watermark.wsr {
  font-size: 5.5vw;
  top: -1.2vw;
  right: 3.8vw;
}
@media screen and (max-width: 768px) {
  .iv-chapter__watermark.wsr {
    font-size: 11vw;
    top: -2vw;
  }
}

.iv-block {
  position: relative;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.iv-block:first-child {
  margin-top: clamp(52px, 7vw, 80px);
}
.iv-block:last-child {
  margin-bottom: 0;
}
.iv-block__q {
  font-size: clamp(12px, 3.6vw, 18px);
  font-weight: 500;
  color: #555555;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 16px;
}
.iv-block__heading {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #000000;
  margin-bottom: clamp(20px, 3vw, 32px);
  font-feature-settings: "palt";
}
.iv-block__heading.s {
  font-size: clamp(18px, 2.5vw, 26px);
}
.iv-block__text {
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 500;
  line-height: 2.2;
  color: #333;
  font-feature-settings: "palt";
}
.iv-block__text p {
  margin-bottom: 1.8em;
}
.iv-block__text p:last-child {
  margin-bottom: 0;
}

.iv-works {
  margin-bottom: clamp(56px, 8vw, 88px);
}
.iv-works:last-child {
  margin-bottom: 0;
}
.iv-works__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  flex-direction: column;
}
.iv-works__num {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #000000;
  padding: 3px 10px;
  line-height: 1.5;
  white-space: nowrap;
  border-radius: 3px;
}
.iv-works__link {
  font-size: clamp(20px, 2.8vw, 23px);
  font-weight: 700;
  color: #007bee;
  letter-spacing: 0.04em;
  display: inline;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}
.iv-works__link:hover {
  opacity: 0.55;
}
.iv-works__link.s {
  display: inline-block;
  font-size: clamp(14px, 2vw, 18px);
  margin-top: 10px;
}
.iv-works__link .blank {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/blank.svg) no-repeat center center;
  background-size: cover;
  vertical-align: middle;
  text-decoration: none;
}
.iv-works__title {
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.iv-works__link-icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.iv-works__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: clamp(16px, 2.5vw, 28px) 0;
  background: #f2f2f2;
}
.iv-works__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.iv-works__img-wrap img:hover {
  transform: scale(1.03);
}

@media screen and (max-width: 768px) {
  .iv-closing-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.iv-closing {
  padding: clamp(40px, 10vw, 50px) clamp(28px, 6vw, 80px);
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .iv-closing {
    padding: 48px 5vw;
    width: 90vw;
    margin: 0 auto;
  }
}
.iv-closing__inner {
  max-width: 920px;
}
.iv-closing__label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #555555;
  margin-bottom: 16px;
}
.iv-closing__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: #000000;
  margin-bottom: clamp(10px, 2vw, 20px);
  font-feature-settings: "palt";
}
.iv-closing__text {
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 500;
  line-height: 2.2;
  color: #333;
  font-feature-settings: "palt";
}
.iv-closing__text p {
  margin-bottom: 1.8em;
}
.iv-closing__text p:last-child {
  margin-bottom: 0;
}

.iv-back {
  display: flex;
  justify-content: center;
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
}
.iv-back__link {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: #000000;
  border-radius: 999px;
  padding: 10px 48px;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.iv-back__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #5bc8f5 0%, #a78bfa 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.iv-back__link span {
  position: relative;
  z-index: 1;
}
.iv-back__link:hover::after {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */