@charset "UTF-8";
/*
Theme Name:aivideo
*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html {
  overflow-x: hidden;
}

body {
  background: #000;
  font-family: itc-avant-garde-gothic-pro, "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .08rem;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* common */
.c-heading-deco {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.c-button {
  background: #262626;
  color: #fff;
  min-width: 280px;
  position: relative;
  width: fit-content;
  height: 56px;
  transition: .3s;
  overflow: hidden;
}

.c-button:hover {
  color: #262626;
}

.c-button a {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  font-family: itc-avant-garde-gothic-pro, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 0 48px;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.c-button input {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  font-family: itc-avant-garde-gothic-pro, "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 0 48px;
  text-align: center;
  width: 100%;
  height: 100%;
}

.c-button::before {
  content: "";
  background: #fff;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
  width: 100%;
  height: 56px;
  z-index: -1;
  position: absolute;
}

.c-button:hover::before {
  transform: translate(0, 0);
}

.c-button::after {
  content: "";
  background: url(./assets/icon-chevron-left-white.svg) no-repeat center / contain;
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.c-button:hover::after {
  background: url(./assets/icon-chevron-left-black.svg) no-repeat center / contain;
}

/* top-header */
.top-header {
  position: fixed;
  transition: background-color .5s;
  width: 100%;
  z-index: 999;
}

.top-header.change-color {
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .8) 100%);
}

.top-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}

.top-header__logo {
  background: no-repeat center/contain url(./assets/enny-logo-white.png);
  width: 60px;
  height: 24px;
  transition: .6s;
}

.top-header__logo:hover {
  opacity: .6;
}

.top-header__list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.top-header__list-item {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  overflow: hidden;
  position: relative;
}

.top-header__list-item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
  content: "";
}

.top-header__list-item:hover::after {
  transform: translate(0, 0);
}

.top-header__hamburger,
.top-header__sp-menu-wrap {
  display: none;
}

/* top-fv */
.top-fv {
  width: 100%;
  height: 95vh;
  position: relative;
}

.top-fv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-fv__copy {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, .6) 100%);
  width: 100vw;
  height: 100dvh;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 16px 68px;
}

.top-fv__copy::after {
  content: "";
  background: url(./assets/icon-circle-arrow.svg) no-repeat center / contain;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 30px;
  right: 32px;
  z-index: 99;
  animation: 3s ease-in 1s infinite running slide-repeat;
}

@keyframes slide-repeat {
  from {
    transform: translateY(-48px);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  to {
    transform: translateY(0);
    opacity: 0;
  }
}

.top-fv__copy-wrap {
  opacity: 0;
  filter: blur(8px);
  transform: matrix(1, 0, 0, 1, 0, 40);
  transition: 2s cubic-bezier(0, 0.55, 0.45, 1) 1.6s;
}

.top-fv__copy-wrap.animated {
  opacity: 1;
  filter: blur(0);
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.top-fv__main-copy-pc {
  width: 1280px;
  height: auto;
  transition: 1s;
}

.top-fv__main-copy-pc:hover {
  filter: blur(8px);
}

.top-fv__main-copy-sp {
  display: none;
}

.top-fv__sub-copy {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .13rem;
  margin: 32px auto 0;
  opacity: 0;
  filter: blur(4px);
  transform: matrix(1, 0, 0, 1, 0, 20);
  transition: 2s cubic-bezier(0, 0.55, 0.45, 1) 2s;
}

.top-fv__sub-copy.animated {
  opacity: 1;
  filter: blur(0);
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/* top-about */
.top-about__inner {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 104px;
  justify-content: center;
  padding: 120px 16px 96px;
  position: relative;
}

.top-about__inner::after {
  content: "";
  background: url(./assets/bg01.png) no-repeat center / contain;
  z-index: -1;
  width: 1756px;
  height: 1384px;
  position: absolute;
  top: -128%;
  right: -5%;
  transform: rotate(-4deg);
}

.top-about__heading {
  font-size: 80px;
  font-weight: 500;
  text-align: center;
}

.top-about__body {
  max-width: 520px;
}

.top-about__lead {
  font-size: 24px;
  font-weight: 300;
}

.top-about__text {
  font-size: 14px;
  font-weight: 200;
  margin: 24px 0 0;
  text-align: justify;
}

/* top-feature */
.top-feature__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 1720px;
  margin: 0 auto;
  padding: 104px 16px 88px;
}

.top-feature__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: .13rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.top-feature__heading::before {
  content: "WHY AI VIDEO";
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  color: transparent;
  font-size: 144px;
  font-weight: 500;
  line-height: 1;
  text-wrap: nowrap;
  position: absolute;
  top: -84px;
  left: 2%;
  z-index: -1;
}

.top-feature__heading span {
  color: rgba(255, 255, 255, .4);
}

.top-feature__body {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 48px auto 0;
  max-width: 1200px;
}

.top-feature__item {
  align-items: center;
  background: #262626;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-weight: 300;
  display: flex;
  gap: 12px;
  flex-direction: column;
  padding: 28px 24px 40px;
  position: relative;
  width: calc((100% - 16px)/3);
  transition: .6s;
}

.top-feature__item:hover {
  box-shadow: 0 0 16px rgba(255, 255, 255, .6);
}

.top-feature__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background:
    linear-gradient(to right, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) 200% 0 / 200% 1px no-repeat,
    linear-gradient(to bottom, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) 100% 200% / 1px 200% no-repeat,
    linear-gradient(to left, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) -200% 100% / 200% 1px no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) 0 -200% / 1px 200% no-repeat;
  transition: background-position 1s;
}

.top-feature__item:hover::before {
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
}

.top-feature__item-title {
  font-size: 20px;
}

.top-feature__item-image {
  width: 240px;
  height: 180px;
  object-fit: contain;
  object-position: center;
}

.top-feature__item-text {
  flex-grow: 1;
  font-size: 13px;
}

/* top-partner */
.top-partner__inner {
  align-items: center;
  display: flex;
  gap: 104px;
  justify-content: center;
  padding: 80px 16px 88px;
}

.top-partner__content {
  color: #fff;
  max-width: 520px;
}

.top-partner__heading {
  font-size: 52px;
  font-weight: 500;
}

.top-partner__lead {
  font-size: 20px;
  font-weight: 300;
}

.top-partner__name {
  font-size: 32px;
  font-weight: 300;
  margin: 32px 0 0;
}

.top-partner__name span {
  font-size: 18px;
}

.top-partner__detail {
  font-size: 14px;
  font-weight: 200;
  margin: 12px 0 0;
}

.top-partner__image {
  aspect-ratio: 1/1;
  background: no-repeat center / cover url(./assets/top-official-partner-image.jpg);
  width: 280px;
  height: 280px;
}

/* top-plan */
.top-plan__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 1720px;
  margin: 0 auto;
  padding: 104px 16px 80px;
}

.top-plan__heading {
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: .13rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.top-plan__heading::before {
  content: "SERVICE";
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  color: transparent;
  font-size: 144px;
  font-weight: 500;
  line-height: 1;
  text-wrap: nowrap;
  position: absolute;
  top: -84px;
  left: 2%;
  z-index: -1;
}

.top-plan__heading span {
  color: rgba(255, 255, 255, .4);
}

.top-plan__item-wrap {
  display: flex;
  gap: 8px;
  margin: 40px auto 0;
  max-width: 1200px;
  width: 100%;
}

.top-plan__item {
  align-items: center;
  background: #262626;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 40px;
  position: relative;
  width: calc((100% - 16px)/3);
  transition: .6s;
}

.top-plan__item:hover {
  box-shadow: 0 0 16px rgba(255, 255, 255, .6);
}

.top-plan__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background:
    linear-gradient(to right, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) 200% 0 / 200% 1px no-repeat,
    linear-gradient(to bottom, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) 100% 200% / 1px 200% no-repeat,
    linear-gradient(to left, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) -200% 100% / 200% 1px no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(0, 0, 0, 0)) 0 -200% / 1px 200% no-repeat;
  transition: background-position 1s;
}

.top-plan__item:hover::before {
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
}

.top-plan__item-title {
  font-size: 28px;
  font-weight: 300;
}

.top-plan__item-caption {
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
  font-weight: 300;
}

.top-plan__item-line {
  border: 1px solid rgba(255, 255, 255, .4);
  margin: 24px auto 0;
  width: 100%;
}

.top-plan__item-text {
  font-size: 13px;
  font-weight: 200;
  margin: 24px auto 0;
}

.top-plan__notice {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  margin: 40px auto 0;
}

.top-plan__button {
  margin: 48px auto 0;
}

/* top-work */
.top-work__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 0 80px;
  position: relative;
}

.top-work__inner::after {
  content: "";
  background: url(./assets/bg02.png) no-repeat center / contain;
  z-index: -1;
  width: 894px;
  height: 771px;
  position: absolute;
  top: -400px;
  right: -262px;
}

.top-work__heading {
  display: flex;
  color: #fff;
  font-size: 120px;
  font-weight: 500;
  position: relative;
}

.top-work__heading::before,
.top-work__heading::after {
  content: "WORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORKWORK";
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  color: transparent;
  font-size: 120px;
  font-weight: 500;
  text-wrap: nowrap;
}

.top-work__body {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px auto 0;
  max-width: 1200px;
  padding: 0 16px;
  width: 100%;
}

.top-work__item {
  aspect-ratio: 16/9;
  width: calc((100% - 8px)/2);
}

.top-work__item-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.top-work__item-inner iframe {
  width: 100%;
  height: 100%;
  transition: .8s;
}

.top-work__item-inner iframe:hover {
  transform: scale(1.1);
  opacity: .6;
}

.top-work__item-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-work__item-heading {
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, .6) 100%);
  display: flex;
  justify-content: space-between;
  padding: 14px 22px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.top-work__item-number {
  color: rgba(255, 255, 255, .6);
  font-size: 76px;
  font-weight: 200;
  line-height: 1;
}

.top-work__item-title-wrap {
  align-items: flex-end;
  display: flex;
  color: #fff;
  flex-direction: column;
  font-weight: 200;
  padding: 0 0 4px;
  text-shadow: 0 0 2px rgba(0, 0, 0, .4);
}

.top-work__item-year {
  font-size: 12px;
}

.top-work__item-title {
  font-size: 16px;
  margin: 2px 0 0;
}

/* top-company */
.top-company {
  position: relative;
}

.top-company__video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.top-company__inner {
  align-items: center;
  background: rgba(0, 0, 0, .7);
  display: flex;
  justify-content: center;
  padding: 96px 16px 104px;
}

.top-company__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.top-company__info-wrap {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 300;
  gap: 16px;
}

.top-company__info-title {
  color: rgba(255, 255, 255, .6);
  width: 120px;
}

.top-company__info-content {
  color: #fff;
  flex: 1;
}

/* top-contact */
.top-contact__inner {
  align-items: center;
  background: url(./assets/bg04.png) no-repeat bottom/ cover;
  display: flex;
  flex-direction: column;
  padding: 104px 16px;
  overflow: hidden;
  position: relative;
}

.top-contact__heading {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  position: relative;
  text-align: center;
  width: 100%;
}

.top-contact__heading::before {
  content: "";
  background: url(./assets/bg05.png) no-repeat center / contain;
  position: absolute;
  object-fit: contain;
  object-position: center;
  opacity: .2;
  width: 652px;
  height: 780px;
  top: -100%;
  left: -20%;
  transform: rotate(45deg);
  z-index: -1;
}

.top-contact__heading::after {
  content: "";
  background: url(./assets/bg06.png) no-repeat center / contain;
  position: absolute;
  object-fit: contain;
  object-position: center;
  opacity: .25;
  width: 840px;
  height: 906px;
  top: -320%;
  right: -15%;
  z-index: -1;
}

.top-contact__body {
  margin: 48px auto 0;
  max-width: 800px;
  width: 100%;
}

.top-contact__form {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.top-contact__form-wrap {
  width: 100%;
}

.top-contact__form-wrap p {
  align-items: center;
  display: flex;
  gap: 16px;
  width: 100%;
}

span.wpcf7-form-control-wrap {
  width: 100%;
}

.top-contact__form-wrap:not(:first-child) {
  margin: 40px 0 0;
}

.top-contact__form-heading {
  color: #fff;
  font-size: 13px;
  font-weight: 200;
  width: 168px;
}

.top-contact__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  padding: 12px;
  width: 100%;
}

.top-contact__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  padding: 12px;
  width: 100%;
  height: 160px;
  resize: none;
}

.top-contact__button {
  margin: 64px auto 0;
}

.top-contact__button.c-button p {
  height: 100%;
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  color: #fff;
  font-size: 16px;
  margin: 48px auto 0;
  text-align: center;
}

/* top-footer */
.top-footer {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.top-footer__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 32px 16px 40px;
}

.top-footer__logo {
  background: no-repeat center/contain url(./assets/enny-logo-white.png);
  padding: 2px 0 0;
  width: 72px;
  height: 32px;
  opacity: 1;
  transition: .6s;
}

.top-footer__logo:hover {
  opacity: .6;
}

.top-footer__list {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 24px auto 0;
}

.top-footer__list-item {
  color: #fff;
  font-size: 12px;
  font-weight: 200;
  opacity: 1;
  transition: .6s;
}

.top-footer__list-item {
  opacity: .6;
}

@media screen and (max-width: 767px) {

  /* top-header */
  .top-header__inner {
    padding: 24px 20px 24px 22px;
  }

  .top-header__list {
    display: none;
  }

  .header {
    position: relative;
    padding: 20px;
  }

  .top-header__hamburger {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 999;
    width: 48px;
    height: 20px;
  }

  .top-header__hamburger-line {
    background: #fff;
    width: 100%;
    height: 1px;
    transition: all .4s;
  }

  .top-header__hamburger.active .top-header__hamburger-line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }

  .top-header__hamburger.active .top-header__hamburger-line:nth-of-type(2) {
    opacity: 0;
  }

  .top-header__hamburger.active .top-header__hamburger-line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  .top-header__sp-menu-wrap {
    background: rgba(0, 0, 0, .8);
    box-shadow: 2px 0 4px rgba(0, 0, 0, .08);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100dvh;
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 999;
  }

  .top-header__sp-menu-wrap.active {
    transform: translateX(0);
  }

  .top-header__sp-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 96px 16px 0;
  }

  .top-header__sp-menu-item {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
  }

  .top-header__sp-menu-item a {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    display: block;
    padding: 24px 0 16px;
    width: 100%;
  }

  /* top-fv */
  .top-fv__copy {
    align-items: flex-start;
    padding: 16px 16px 48px;
  }

  .top-fv__copy::after {
    bottom: 12px;
    right: 16px;
  }

  .top-fv__main-copy-pc {
    display: none;
  }

  .top-fv__main-copy-sp {
    display: block;
    padding: 0 0 0 2px;
    width: 90%;
    height: auto;
    max-width: 420px;
    object-fit: cover;
    object-position: center;
  }

  .top-fv__sub-copy {
    margin: 28px 0 0;
    padding: 0 0 0 4px;
  }

  /* top-about */
  .top-about__inner {
    flex-direction: column;
    gap: 8px;
    padding: 48px 16px;
  }

  .top-about__heading {
    font-size: 48px;
  }

  .top-about__text {
    margin: 16px 0 0;
  }

  /* top-feature */
  .top-feature__inner {
    padding: 64px 16px;
  }

  .top-feature__heading {
    font-size: 24px;
    line-height: 1.5;
  }

  .top-feature__heading::before {
    font-size: 128px;
    left: -50%;
    right: -50%;
    bottom: -24px;
    z-index: -1;
    margin: auto;
    text-align: center;
  }

  .top-feature__body {
    flex-direction: column;
    margin: 24px auto 0;
    width: 100%;
  }

  .top-feature__item {
    gap: 0;
    padding: 20px 16px 24px;
    width: 100%;
  }

  .top-feature__item-title {
    font-size: 20px;
  }

  .top-feature__item-image {
    width: 200px;
    height: 150px;
  }

  .top-feature__item-text {
    flex-grow: 1;
    font-size: 13px;
  }

  /* top-partner */
  .top-partner__inner {
    flex-direction: column;
    gap: 32px;
    padding: 48px 16px;
  }

  .top-partner__heading {
    font-size: 48px;
    line-height: 1.2;
  }

  .top-partner__lead {
    font-size: 18px;
    margin: 4px 0 0;
  }

  .top-partner__name {
    font-size: 28px;
    margin: 24px 0 0;
    text-align: center;
  }

  .top-partner__name span {
    font-size: 16px;
  }

  .top-partner__detail {
    margin: 8px 0 0;
  }

  /* top-plan */
  .top-plan__inner {
    padding: 48px 16px;
  }

  .top-plan__heading {
    font-size: 24px;
    line-height: 1.5;
  }

  .top-plan__heading::before {
    font-size: 128px;
    left: -50%;
    right: -50%;
    bottom: -24px;
    z-index: -1;
    margin: auto;
    text-align: center;
  }

  .top-plan__item-wrap {
    flex-direction: column;
    margin: 32px auto 0;
  }

  .top-plan__item {
    padding: 24px 16px 32px;
    width: 100%;
  }

  .top-plan__notice {
    margin: 32px auto 0;
  }

  /* top-work */
  .top-work__inner {
    padding: 32px 0 64px;
  }

  .top-work__heading {
    font-size: 104px;
  }

  .top-work__heading::before,
  .top-work__heading::after {
    font-size: 104px;
  }

  .top-work__body {
    flex-direction: column;
    margin: 0 auto;
  }

  .top-work__item {
    width: 100%;
  }

  .top-work__item-heading {
    padding: 8px 12px;
  }

  .top-work__item-number {
    font-size: 46px;
  }

  .top-work__item-title-wrap {
    padding: 0;
  }

  .top-work__item-year {
    font-size: 11px;
  }

  .top-work__item-title {
    font-size: 14px;
  }

  /* top-company */
  .top-company__inner {
    padding: 64px 16px;
  }

  .top-company__info {
    gap: 20px;
  }

  .top-company__info-wrap {
    gap: 12px;
  }

  .top-company__info-title {
    width: 80px;
  }

  /* top-contact */
  .top-contact__inner {
    padding: 64px 16px 96px;
  }

  .top-contact__heading {
    font-size: 58px;
  }

  .top-contact__body {
    margin: 24px auto 0;
  }

  .top-contact__form-wrap p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .top-contact__form-wrap br {
    display: none;
  }

  .top-contact__form-wrap:not(:first-child) {
    margin: 32px 0 0;
  }

  .top-contact__form-heading {
    padding: 0 0 0 1px;
    width: 100%;
  }

  .top-contact__input {
    padding: 8px 2px 12px;
  }

  .top-contact__textarea {
    padding: 8px 2px 12px;
    height: 120px;
  }

  /* top-footer */
  .top-footer__inner {
    padding: 56px 16px 64px;
  }

  .top-footer__list {
    flex-direction: column;
    gap: 28px;
    margin: 48px auto 0;
  }

  .top-footer__list-item {
    text-align: center;
  }

}

/* animation */
@keyframes fade-repeat {
  from {
    opacity: .5;
  }

  to {
    opacity: .7;
  }
}

.fadein {
  opacity: 0;
  transition: 1.2s;
}

.fadein-animated {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 769px) {
  .delay-s {
    animation-delay: 0.8s;
  }

  .delay-m {
    animation-delay: 1s;
  }
}

@keyframes fadeInAnime {
  from {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

/* utility */
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
