:root {
  --navy: #05214A;
  --navy-90: rgba(5, 33, 74, 0.9);
  --navy-80: rgba(5, 33, 74, 0.8);
  --orange: #FD7403;
  --ink: #111111;
  --ink-70: rgba(17, 17, 17, 0.7);
  --white: #FFFFFF;
  --ph: #D9D9D9;
}

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

html {
  scroll-behavior: smooth;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #111111;
  line-height: 1.8;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

.inner {
  width: min(1152px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}
@media (max-width: 1000px) {
  .section {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section--first {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .section--first {
    padding-top: 80px;
  }
}

.section--last {
  padding-bottom: 144px;
}
@media (max-width: 767px) {
  .section--last {
    padding-bottom: 120px;
  }
}

.br-sp {
  display: none;
}

@media (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.sechead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  white-space: nowrap;
}
.sechead__en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(5, 33, 74, 0.9);
}
.sechead__jp {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FD7403;
}
@media (max-width: 1000px) {
  .sechead__en {
    font-size: 72px;
  }
  .sechead__jp {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sechead {
    gap: 12px;
  }
  .sechead__en {
    font-size: 64px;
  }
  .sechead__jp {
    font-size: 24px;
  }
}

.btn-def {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 280px;
  height: 50px;
  padding: 14px 32px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(5, 33, 74, 0.9);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #05214A;
  overflow: hidden;
  transition: color 0.3s ease;
}
.btn-def::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: #05214A;
  transition: width 0.3s ease;
  z-index: 0;
}
.btn-def__label, .btn-def__arrow {
  position: relative;
  z-index: 1;
}
.btn-def__arrow {
  width: 4px;
  height: 11.5px;
  flex-shrink: 0;
  stroke: #05214A;
  transition: stroke 0.3s ease;
}
.btn-def:hover {
  color: #FFFFFF;
}
.btn-def:hover::before {
  width: 100%;
}
.btn-def:hover .btn-def__arrow {
  stroke: #FFFFFF;
}
@media (max-width: 767px) {
  .btn-def {
    width: 160px;
    height: 58px;
    padding: 16px 32px;
    gap: 16px;
    font-size: 22px;
  }
  .btn-def__arrow {
    width: 4px;
    height: 8px;
  }
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 400px;
  max-width: 100%;
  padding: 16px 32px;
  background: rgba(5, 33, 74, 0.9);
  border: 1.5px solid rgba(5, 33, 74, 0.9);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-cta__arrow {
  width: 4px;
  height: 7px;
  flex-shrink: 0;
  stroke: currentColor;
}
.btn-cta:hover {
  background: transparent;
  color: #05214A;
  border-color: #05214A;
}
.btn-cta--orange {
  background: #FD7403;
  border-color: #FD7403;
}
.btn-cta--orange:hover {
  background: transparent;
  color: #FD7403;
  border-color: #FD7403;
}
.btn-cta--sm {
  width: auto;
  gap: 0;
  padding: 12px 24px;
  border-width: 1px;
}
@media (max-width: 767px) {
  .btn-cta {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
  }
  .btn-cta__arrow {
    width: 4px;
    height: 8px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 1000px) {
  .cards {
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__thumb {
  aspect-ratio: 360/203;
  background: #D9D9D9;
  overflow: hidden;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #111111;
}
.card__date {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.8px;
}
.card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.card__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
a .card__thumb img, .card[href] .card__thumb img {
  transition: transform 0.4s ease;
}
.card[href]:hover .card__thumb img {
  transform: scale(1.04);
}

.listblock {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.listblock__foot {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .listblock {
    gap: 0;
  }
  .listblock .cards {
    margin-top: 64px;
  }
  .listblock__foot {
    margin-top: 40px;
    justify-content: center;
  }
}

.vtline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #111111;
}
.vtline::before {
  content: "";
  width: 3px;
  height: 17px;
  background: #FD7403;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .vtline {
    font-size: 15px;
  }
  .vtline::before {
    height: 19px;
  }
}

.dashlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dashlist a, .dashlist span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #111111;
}
.dashlist a::before, .dashlist span::before {
  content: "";
  width: 8px;
  height: 1px;
  background: #111111;
  flex-shrink: 0;
}
.dashlist a {
  transition: color 0.2s ease;
}
.dashlist a:hover {
  color: #FD7403;
}
@media (max-width: 767px) {
  .dashlist {
    gap: 12px;
  }
}

.emptynote {
  padding: 24px 0;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: rgba(17, 17, 17, 0.7);
}
@media (max-width: 767px) {
  .emptynote {
    padding: 8px 0;
    font-size: 14px;
    line-height: 28px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
}
@media (max-width: 1280px) {
  .header__inner {
    padding: 24px 32px;
  }
}
@media (max-width: 1000px) {
  .header__inner {
    padding: 16px 24px;
  }
}
.header__logo {
  display: block;
  width: 120px;
  flex-shrink: 0;
}
.header__logo img {
  width: 120px;
  height: 41px;
  object-fit: contain;
}
@media (max-width: 1000px) {
  .header__logo {
    width: 100px;
  }
  .header__logo img {
    width: 100px;
    height: 34px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  .header__right {
    gap: 24px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.header__nav a {
  transition: color 0.2s ease;
}
.header__nav a:hover {
  color: #FD7403;
}
@media (max-width: 1280px) {
  .header__nav {
    gap: 20px;
    font-size: 13px;
  }
}
@media (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: none;
  position: relative;
  width: 42px;
  height: 40px;
  background: #05214A;
  flex-shrink: 0;
}
.header__menu span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2px;
  background: #FFFFFF;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__menu span:nth-child(1) {
  top: 12px;
}
.header__menu span:nth-child(2) {
  top: 19px;
}
.header__menu span:nth-child(3) {
  top: 26px;
}
.header__menu.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu.is-open span:nth-child(2) {
  opacity: 0;
}
.header__menu.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1000px) {
  .header__menu {
    display: block;
  }
}
@media (max-width: 1000px) {
  .header__cta {
    display: none;
  }
}
body.is-menu-open .header {
  background: #FFFFFF;
  backdrop-filter: none;
}

.navitem {
  position: static;
}
.navitem__link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navitem__link::after {
  content: "";
  width: 8px;
  height: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.navitem:hover .navitem__link::after, .navitem:focus-within .navitem__link::after {
  transform: rotate(180deg);
}

.megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  background: #FFFFFF;
  box-shadow: 0 12px 24px rgba(5, 33, 74, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s;
}
.navitem:hover .megamenu, .navitem:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.megamenu__inner {
  display: flex;
  gap: 56px;
  width: min(1152px, 100% - 48px);
  margin-inline: auto;
  padding: 40px 0 48px;
}
.megamenu__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1000px) {
  .megamenu {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .megamenu {
    transition: none;
  }
  .navitem__link::after {
    transition: none;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #FFFFFF;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 72px 24px 0;
}
.modal[hidden] {
  display: none;
}
.modal__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 0 48px;
}
.modal__privacy {
  align-self: flex-start;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.7);
  text-decoration: underline;
  text-underline-offset: 6px;
}
@media (min-width: 768px) {
  .modal__inner {
    width: min(560px, 100%);
    margin-inline: auto;
  }
}

.menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(5, 33, 74, 0.12);
}
.menu__link, .menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(5, 33, 74, 0.12);
  background: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #05214A;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.menu__link:hover, .menu__toggle:hover {
  color: #FD7403;
}
.menu__toggle::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #05214A;
  border-bottom: 1.5px solid #05214A;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu__acc.is-open .menu__toggle::after {
  transform: rotate(-135deg);
}
.menu__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: rgba(5, 33, 74, 0.04);
  border-bottom: 1px solid rgba(5, 33, 74, 0.12);
}
.menu__acc.is-open .menu__panel {
  grid-template-rows: 1fr;
}
.menu__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  padding-inline: 16px;
}
.menu__acc.is-open .menu__panel-inner {
  padding-block: 28px;
}
.menu__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pagehead {
  padding-top: 40px;
}
.pagehead__crumb {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #222;
}
.pagehead__crumb a {
  transition: color 0.2s ease;
}
.pagehead__crumb a:hover {
  color: #FD7403;
}
.pagehead__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 86px;
  white-space: nowrap;
}
.pagehead__en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(5, 33, 74, 0.9);
}
.pagehead__jp {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FD7403;
}
@media (max-width: 1000px) {
  .pagehead__title {
    margin-top: 48px;
  }
  .pagehead__en {
    font-size: 80px;
  }
  .pagehead__jp {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .pagehead {
    padding-top: 24px;
  }
  .pagehead__crumb {
    line-height: 1.4;
  }
  .pagehead__title {
    margin-top: 48px;
    gap: 12px;
  }
  .pagehead__en {
    font-size: 56px;
  }
  .pagehead__jp {
    font-size: 20px;
  }
}

.headen {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.headen__en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #FD7403;
  white-space: nowrap;
}
.headen__mark {
  width: 26px;
  height: 12px;
}
@media (max-width: 767px) {
  .headen {
    gap: 10px;
  }
  .headen__en {
    font-size: 48px;
  }
}

.headline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: #111111;
}
.headline::before {
  content: "";
  width: 4px;
  height: 26px;
  background: #FD7403;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .headline {
    gap: 12px;
    font-size: 20px;
  }
  .headline::before {
    height: 24px;
  }
}

.deftable {
  width: 100%;
  border-collapse: collapse;
}
.deftable th, .deftable td {
  padding: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  vertical-align: middle;
}
.deftable th {
  width: 120px;
  color: rgba(5, 33, 74, 0.9);
  white-space: nowrap;
}
.deftable td {
  color: #111111;
}
.deftable tr:nth-child(odd) {
  background: rgba(5, 33, 74, 0.1);
}
@media (max-width: 767px) {
  .deftable th, .deftable td {
    display: block;
    width: auto;
    font-size: 15px;
    line-height: 30px;
  }
  .deftable th {
    padding: 12px 16px 6px;
  }
  .deftable td {
    padding: 6px 16px 12px;
  }
}

.minicard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
}
.minicard__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.minicard__num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: #FD7403;
}
.minicard__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #111111;
}
.minicard__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #111111;
}
.minicard--navy {
  background: rgba(5, 33, 74, 0.9);
}
.minicard--navy .minicard__title,
.minicard--navy .minicard__text {
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .minicard {
    padding: 24px;
  }
}

.bandhead {
  font-weight: 700;
  font-size: 40px;
  line-height: calc(1em + 32px);
  color: #FFFFFF;
}
.bandhead span {
  display: inline;
  padding: 16px 24px;
  background: rgba(5, 33, 74, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 1000px) {
  .bandhead {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .bandhead {
    margin-block: -6px;
    font-size: 24px;
    line-height: 60px;
  }
  .bandhead span {
    padding: 12px 16px;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 96px 24px;
  background: rgba(5, 33, 74, 0.9);
}
.cta__copy {
  width: 528px;
  max-width: 100%;
  font-weight: 500;
  font-size: 24px;
  line-height: 48px;
  color: #FFFFFF;
}
.cta__copy em {
  font-style: normal;
  color: #FD7403;
}
@media (max-width: 767px) {
  .cta {
    gap: 24px;
    padding: 56px 24px;
  }
  .cta__copy {
    width: auto;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
  }
  .cta .btn-cta {
    width: 100%;
  }
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 144px 64px;
  background: #FFFFFF;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.footer__nav a {
  transition: color 0.2s ease;
}
.footer__nav a:hover {
  color: #FD7403;
}
.footer__services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__services-label {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.footer__services-cols {
  display: flex;
  gap: 56px;
}
.footer__services-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__privacy {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: rgba(17, 17, 17, 0.7);
  text-decoration: underline;
  text-underline-offset: 6px;
  align-self: flex-start;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  flex-shrink: 0;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.footer__logo img {
  width: 160px;
  height: 54px;
  object-fit: contain;
}
.footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  color: #05214A;
  white-space: nowrap;
}
.footer__company dt {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}
.footer__company dd {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
.footer__copyright {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: #05214A;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .footer {
    padding: 72px 48px 56px;
  }
}
@media (max-width: 1000px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    padding: 64px 24px 48px;
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__brand {
    align-items: flex-start;
  }
  .footer__company {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 24px 24px;
  }
  .footer__left, .footer__right {
    display: contents;
  }
  .footer__brand {
    order: 1;
    align-items: flex-start;
    gap: 20px;
    margin-top: 0;
  }
  .footer__nav {
    order: 2;
    margin-top: 64px;
    gap: 24px;
    font-size: 15px;
  }
  .footer__services {
    order: 3;
    margin-top: 48px;
    gap: 24px;
  }
  .footer__privacy {
    order: 4;
    margin-top: 32px;
  }
  .footer__copyright {
    order: 5;
    margin-top: 56px;
    align-self: center;
    font-size: 14px;
  }
  .footer__logo img {
    width: 140px;
    height: 47px;
  }
  .footer__company {
    align-items: flex-start;
  }
  .footer__company dt {
    font-size: 18px;
  }
  .footer__company dd {
    font-size: 13px;
  }
  .footer__services-label {
    font-size: 15px;
  }
  .footer__services-cols {
    flex-direction: column;
    gap: 40px;
  }
  .footer__services-col {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0s);
  }
  [data-anim=up] {
    transform: translateY(28px);
  }
  [data-anim=right] {
    transform: translateX(40px);
  }
  [data-anim=wipe] {
    clip-path: inset(0 0 108% 0);
    transform: translateY(10px);
  }
  [data-anim].is-visible {
    opacity: 1;
    transform: none;
  }
  [data-anim=wipe].is-visible {
    clip-path: inset(0 0 -30% 0);
  }
  .hero__media img {
    animation: hero-zoom 2s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero__copy {
    animation: fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  }
  .hero__cta {
    animation: fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
  }
  @keyframes hero-zoom {
    from {
      transform: scale(1.07);
    }
    to {
      transform: none;
    }
  }
  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  .header {
    transition: box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .header.is-scrolled {
    box-shadow: 0 1px 12px rgba(5, 33, 74, 0.08);
  }
}
.btn-cta__arrow,
.btn-def__arrow {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.3s ease;
}

.btn-cta:hover .btn-cta__arrow,
.btn-def:hover .btn-def__arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta:hover .btn-cta__arrow,
  .btn-def:hover .btn-def__arrow {
    transform: none;
  }
}
