:root {
  --container: 1040px;
  --sideNavW: 180px;
  --sideNavLineX: 40px;
  --bg: #F8F8F8;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 18px 40px rgba(0, 0, 0, .10);
  --accent: #c9f31d;
  --navbg: #f3f4f6;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
}
body.no-scroll {
  height: 100%;
  overflow: hidden;
}

main {
  padding-right: var(--sideNavW);
}
@media (max-width: 910px) {
  main {
    padding-right: 0;
  }
}

.container {
  width: min(var(--container), 100% - 48px);
  margin: 0 auto;
}

.section {
  padding: 130px 0;
}
@media (max-width: 910px) {
  .section {
    padding: 80px 0;
  }
}
.section--white {
  background: #fff;
}

/* ===== Desktop side nav ===== */
.side-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sideNavW);
  height: 100vh;
  background: var(--navbg);
  border-left: 1px solid var(--line);
  opacity: 0;
  z-index: 20;
  -webkit-animation: slideInFromRight 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: slideInFromRight 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media (max-width: 910px) {
  .side-nav {
    display: none;
  }
}
.side-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--sideNavLineX);
  width: 1px;
  height: 430px;
  background: rgba(17, 24, 39, 0.18);
}
.side-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 160px;
  padding-left: 50px;
  text-align: right;
  gap: 22px;
}
.side-nav__link {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
}
.side-nav__link.is-active {
  font-weight: 700;
  color: var(--text);
}

/* ===== Mobile header/menu ===== */
.m-header {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 18px 14px 12px;
  z-index: 30;
}
@media (max-width: 910px) {
  .m-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.m-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  gap: 3px;
}
.m-header__menu {
  position: fixed;
  right: 14px;
  border: 0;
  font-size: 18px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

/* ===== Mobile menu overlay ===== */
.menu-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  inset: 0;
  padding: 8px 18px 24px;
  overflow: hidden;
  visibility: hidden;
  z-index: 40;
  -webkit-transition: visibility 0.4s step-end;
  transition: visibility 0.4s step-end;
}
.menu-overlay.is-open {
  visibility: visible;
  -webkit-transition: visibility 0s;
  transition: visibility 0s;
}
.menu-overlay.is-open .menu-card {
  -webkit-transform: translateX(18px) rotate(-8deg);
          transform: translateX(18px) rotate(-8deg);
}
.menu-overlay__backdrop {
  position: absolute;
  inset: 0;
}

.menu-card {
  position: relative;
  top: 5%;
  left: 35%;
  width: 100%;
  height: 82%;
  background: #fff;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 55px 0 0 65px;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 600px) {
  .menu-card {
    top: 83px;
    left: 50px;
  }
}
.menu-card__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 22px;
}
.menu-card__nav a {
  font-size: 26px;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.menu-card__nav a:hover {
  opacity: 0.7;
}
.menu-card__close {
  font-family: inherit;
  font-size: 18px;
  margin-top: 35px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

/* ===== Section head ===== */
.section-head__label {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding-left: 60px;
}
.section-head__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--text);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-head__title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  margin: 12px 0 0;
}
@media (max-width: 768px) {
  .section-head__title {
    font-size: 28px;
  }
}

/* ===== Brand ===== */
.brand {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--text);
}
@media (max-width: 1165px) {
  .brand {
    font-size: 16px;
  }
}
.brand__line {
  display: block;
  width: 63px;
  height: 2px;
  margin-top: 6px;
  background: var(--text);
}

/* ===== Top ===== */
.top {
  position: relative;
  height: 100vh;
  padding-top: 16vh;
}
.top__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(84vh - 88px);
}
.top__copy {
  opacity: 0;
  -webkit-animation: slideInFromLeft 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: slideInFromLeft 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.top__mini {
  margin: 0 0 78px 86px;
}
.top__headline {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 1165px) {
  .top__headline {
    font-size: 35px;
  }
}
.top__sub {
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}
.top__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-animation: slideInFromRight 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: slideInFromRight 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.top__video, .top__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 534px;
}
@media (max-width: 910px) {
  .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100dvh;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    min-height: auto;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .top__copy {
    grid-area: 1/1/2/2;
    padding: 0 20px;
    align-self: center;
    z-index: 10;
  }
  .top__mini {
    display: none;
  }
  .top__headline {
    font-size: 28px;
  }
  .top__media {
    grid-area: 1/1/2/2;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 1;
    z-index: 1;
  }
  .top__video {
    width: 100%;
    max-width: 400px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top__sub {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 20px;
    border-radius: 4px;
    padding: 4px;
  }
  .top .text-bg {
    background: rgba(255, 255, 255, 0.75);
    line-height: 2.5;
    padding: 8px 4px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}
.top .pill {
  display: inline-block;
  background: var(--accent);
  margin-top: 12px;
  border-radius: 6px;
  padding: 0 12px;
}
@media (max-width: 910px) {
  .top .pill {
    margin-top: 5px;
    line-height: 1.8;
  }
}
.top .pill__inner {
  font-weight: bold;
}
.top .scroll-hint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 26px;
  opacity: 0;
  gap: 8px;
  -webkit-animation: fadeUpMedia 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fadeUpMedia 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}
@media (max-width: 910px) {
  .top .scroll-hint {
    display: none;
  }
}
.top .scroll-hint__mouse {
  width: 18px;
  height: 26px;
  border: 2px solid var(--text);
  border-radius: 999px;
  position: relative;
  opacity: 0.9;
}
.top .scroll-hint__mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 6px;
  background: var(--text);
  border-radius: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: wheel 1.2s infinite ease-in-out;
          animation: wheel 1.2s infinite ease-in-out;
}
.top .scroll-hint__text {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ===== Works ===== */
.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 100px 0 40px 0;
  gap: 28px;
}
@media (max-width: 910px) {
  .works {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .works {
    grid-template-columns: 1fr;
    margin: 50px 0 0 0;
    gap: 45px;
  }
}

.work-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.work-card__thumb {
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 3, 0.32);
  overflow: hidden;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  aspect-ratio: 16/9;
}
.work-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.work-card__body {
  padding-top: 48px;
}
@media (max-width: 910px) {
  .work-card__body {
    padding-top: 15px;
  }
}
.work-card__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.work-card__meta {
  margin: 0;
  font-size: 11px;
  color: #6b7280;
  opacity: 0.8;
}
.work-card__year {
  margin: 6px 0 0;
  font-size: 10px;
  color: #9ca3af;
}
.work-card:hover .work-card__thumb {
  border-color: #d1d5db;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.work-card:hover .work-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.work-card:focus-visible .work-card__thumb {
  outline: 2px solid rgba(17, 24, 39, 0.35);
  outline-offset: 3px;
}
.work-card.js-fade:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.work-card.js-fade:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/* ===== Service ===== */
.service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  gap: 35px;
}
@media (max-width: 1100px) {
  .service {
    width: 80%;
    grid-template-columns: 1fr;
    margin: 40px auto 0 auto;
    gap: 20px;
  }
}
@media (max-width: 730px) {
  .service {
    width: 100%;
    margin: 40px 0 0 0;
  }
}
.service-card {
  height: 100%;
  background: #fff;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.service-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 20px;
  background: var(--text);
  color: #fff;
  margin-bottom: 24px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.service-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== Flow ===== */
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  padding: 0;
  list-style: none;
  gap: 35px;
}
@media (max-width: 600px) {
  .flow-list {
    gap: 25px;
  }
}
.flow-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
}
.flow-item__no {
  display: grid;
  width: 60px;
  height: 60px;
  background: var(--text);
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  border-radius: 999px;
  place-items: center;
}
.flow-item__body h3 {
  margin: 2px 0 5px;
  font-size: 17px;
}
.flow-item__body p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}
.flow-item.js-fade:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.flow-item.js-fade:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.flow-item.js-fade:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.flow-item.js-fade:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  margin-top: 65px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 80px;
}
@media (max-width: 910px) {
  .about__grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .about__grid {
    gap: 40px;
  }
}
.about__photo {
  position: relative;
  overflow: hidden;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.18);
}
@media (max-width: 910px) {
  .about__photo::after {
    background-color: transparent;
  }
}
@media (max-width: 450px) {
  .about__photo::after {
    background-color: rgba(0, 0, 0, 0.18);
  }
}
.about__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 910px) {
  .about__photo img {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .about__photo img {
    width: 100%;
  }
}
.about__name {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: var(--text);
}
@media (max-width: 910px) {
  .about__name {
    font-size: 24px;
  }
}
.about__role {
  margin: 7px 0 25px;
  color: var(--muted);
}
.about__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}
.about-body.js-fade {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.about .skills {
  margin-top: 24px;
}
.about .skills__label {
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 800;
}
.about .skills__chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.about .chip {
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  background: #fff;
  color: #4b5563;
}

/* ===== Contact ===== */
.contact__note {
  margin: 35px 0 40px 20px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
@media (max-width: 600px) {
  .contact__note {
    margin: 35px 0 40px;
  }
}
.contact__form {
  max-width: 640px;
  width: 100%;
}
.contact .c-field {
  display: block;
  margin-bottom: 25px;
}
.contact .c-field__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.contact .c-field__input, .contact .c-field__textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  background: #f9fafb;
  outline: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact .c-field__input::-webkit-input-placeholder, .contact .c-field__textarea::-webkit-input-placeholder {
  color: #9ca3af;
}
.contact .c-field__input::-moz-placeholder, .contact .c-field__textarea::-moz-placeholder {
  color: #9ca3af;
}
.contact .c-field__input:-ms-input-placeholder, .contact .c-field__textarea:-ms-input-placeholder {
  color: #9ca3af;
}
.contact .c-field__input::-ms-input-placeholder, .contact .c-field__textarea::-ms-input-placeholder {
  color: #9ca3af;
}
.contact .c-field__input::placeholder, .contact .c-field__textarea::placeholder {
  color: #9ca3af;
}
.contact .c-field__textarea {
  min-height: 200px;
  resize: vertical;
}
.contact .c-field__input:focus, .contact .c-field__textarea:focus {
  background: #fff;
  border-color: var(--text);
}
.contact .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 56px;
  margin-top: 30px;
  border: 0;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
.contact .btn:hover {
  opacity: 0.9;
}
@media (max-width: 600px) {
  .contact .btn {
    margin-top: 0;
  }
}
.contact .btn__icon {
  opacity: 0.9;
}
.contact .is-hidden {
  display: none !important;
}

/* ===== Footer ===== */
.footer {
  padding: 80px var(--sideNavW) 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0b1220), to(#070c16));
  background: linear-gradient(180deg, #0b1220 0%, #070c16 100%);
  color: #fff;
  text-align: center;
}
@media (max-width: 910px) {
  .footer {
    padding: 50px 0;
  }
}
.footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  gap: 24px;
}
.footer__copy {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 600px) {
  .footer__copy {
    font-size: 9px;
  }
}
.footer .icon-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.footer .icon-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ----- Animations ----- */
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-fade.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes wheel {
  0% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, 6px);
            transform: translate(-50%, 6px);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes wheel {
  0% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, 6px);
            transform: translate(-50%, 6px);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@-webkit-keyframes slideInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInFromRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeUpMedia {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpMedia {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}