/*=====トップのローディング画面=====*/
.p-Loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.p-Loading__Logo {
  width: 160px;
  opacity: 0;
  transform: scale(1.1);
  animation: p-Loading__fadeIn 1.5s ease forwards;
}

@keyframes p-Loading__fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.is-loading {
  overflow: hidden;
}

@media (max-width: 800px) {
  .p-Loading__Logo {
    width: 32%;
  }
}

/*=====動画=====*/
.p-TopView__VideoWrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.p-TopView__VideoWrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.p-TopView__Overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/*=====トップビューテキスト=====*/
.p-TopView__Message {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 10px;
}

.p-TopView__Message-Title {
  text-align: center;
  font-size: 32px;
}

.p-TopView__Message-Text {
  line-height: normal;
  text-align: center;
}

@media (max-width: 480px) {
  .p-TopView__Message-Title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .p-TopView__Message-Title {
    font-size: 24px;
  }
}

/*==＝＝＝＝===コンセプトセクション==＝＝＝＝===*/
.c-TopConcept {
  text-align: center;
  margin: auto;
  padding: 72px 0 0;
}

.c-TopConcept__Heading {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 600;
}

.c-TopConcept__Block p {
  text-align: center;
}

@media (max-width: 800px) {
  .c-TopConcept {
    padding: 32px 0;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝チームセクション＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.c-TeamSection__Block {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 12%;
  flex-wrap: wrap;
}

.c-TeamSection__MemberCard {
  width: 296px;
  margin: 16px 0;
  justify-content: center;
}

.c-TeamSection__Photo {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.c-ProfileCard__NameJa {
  font-size: 2.4rem;
  line-height: normal;
  font-weight: 500;
}

.c-ProfileCard__NameEn {
  line-height: normal;
  margin-bottom: 24px;
  font-weight: 500;
}

.c-ProfileCard__Role {
  line-height: normal;
  margin-bottom: 24px;
  font-weight: 500;
}

@media (max-width: 830px) {
  .c-ProfileCard__NameJa {
    font-size: 2.4rem;
  }

  .c-TeamSection__MemberCard {
    width: 272px;
  }

  .c-TeamSection__Photo,
  .c-ProfileCard__NameEn,
  .c-ProfileCard__Role {
    margin-bottom: 16px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝【　Worksセクション　】＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.c-WorksSection__Intro {
  margin: 16px 0;
}

.c-WorksSection__gallery {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.c-WorksSection__image {
  max-width: 32%;
}

.c-WorksSection__image.down {
  margin-top: 48px;
}

.c-WorksSection__image.middle {
  margin-top: 24px;
}

.c-WorksSection__image.up {
  margin-top: 0px;
}

@media (max-width: 800px) {
  .c-WorksSection__Intro {
    margin: 8px 0 32px;
  }

  .c-WorksSection__image.First {
    display: none;
  }

  .c-WorksSection__image {
    max-width: 48%;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝Serviceセクション＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.c-ServiceSection__Image {
  margin: 16px 0;
  width: 70%;
  height: auto;
}

.c-ServiceSection__Heading {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

@media (max-width: 800px) {
  .c-ServiceSection__Image {
    width: 100%;
  }
}