:root {
  --blue: #0B08CE;
  --blue-deep: #0714cf;
  --green: #a7f43d;
  --paper: #f7f7f5;
  --ink: #0e16cf;
  --navy: #002a43;
  --grid: rgba(5, 21, 96, 0.18);
  --font-en: "Inter", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 58px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 54px;
  }
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  color: var(--ink);
  font-family: var(--font-jp);
}
@media screen and (max-width: 767px) {
  body.is-menu-open {
    overflow: hidden;
  }
}

.pattern-bg {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.header {
  position: relative;
  isolation: isolate;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px;
  background: radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.95), transparent 24%), linear-gradient(120deg, #f9f9f7, #f2f2f2);
  border-bottom: 1px solid #8797ff;
  color: var(--ink);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.header > * {
  position: relative;
  z-index: 1;
}
.header--on-blue {
  background: rgba(11, 8, 206, 0.94);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 5px 18px rgba(0, 0, 80, 0.16);
  color: #fff;
}
.header--on-blue::before {
  opacity: 0.24;
}
@media screen and (max-width: 767px) {
  .header {
    height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.header__menu-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menu-button {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 3;
    display: flex;
    width: 54px;
    height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    transition: transform 0.25s ease;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-button:hover, .header__menu-button:focus-visible {
    transform: scale(1.08);
  }
}
@media screen and (max-width: 767px) {
  .header__menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
}
@media screen and (max-width: 767px) {
  .header.is-menu-open .header__menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header.is-menu-open .header__menu-button span:nth-child(2) {
    opacity: 0;
  }
  .header.is-menu-open .header__menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.header__backdrop {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(248, 248, 247, 0.72);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    cursor: default;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
}
@media screen and (max-width: 767px) {
  .header.is-menu-open .header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    position: relative;
    isolation: isolate;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 2;
    display: block;
    width: 300px;
    height: 500px;
    padding: 90px 24px 32px;
    overflow-y: auto;
    background: radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.95), transparent 24%), linear-gradient(120deg, #f9f9f7, #f2f2f2);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(15, 24, 90, 0.1);
    color: var(--ink);
    opacity: 0;
    overscroll-behavior: contain;
    transform: translateY(-18px) scale(0.97);
    transform-origin: top right;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
  }
  .header__menu::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    content: "";
    filter: contrast(180%);
    mix-blend-mode: multiply;
    opacity: 0.44;
    pointer-events: none;
  }
  .header__menu > * {
    position: relative;
    z-index: 1;
  }
  .header__menu::before {
    opacity: 0.24;
  }
}
@media screen and (max-width: 767px) {
  .header.is-menu-open .header__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }
}
.header__nav {
  display: flex;
  gap: 42px;
  margin: 0;
  padding: 0;
  font-family: var(--font-en);
  list-style: none;
}
@media screen and (max-width: 767px) {
  .header__nav {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }
}
.header__nav a {
  position: relative;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .header__nav a {
    font-size: 26px;
  }
}
.header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.header__nav a:hover::after, .header__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  isolation: isolate;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.95), transparent 24%), linear-gradient(120deg, #f9f9f7, #f2f2f2);
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.hero > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: max(80vh, 620px);
  }
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: max(100svh, 700px);
  }
}
.hero::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 22, 80, 0.09) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  content: "";
  opacity: 0.35;
  pointer-events: none;
}
.hero__main {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(100% - 48px, 1200px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__main {
    width: calc(100% - 32px);
    grid-template-columns: minmax(0, 1fr) minmax(240px, 40vw);
    gap: clamp(24px, 3vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .hero__main {
    position: relative;
    top: auto;
    left: auto;
    width: min(100% - 32px, 440px);
    min-height: max(100svh, 700px);
    margin: 0 auto;
    padding: clamp(190px, 52vw, 300px) 0 140px;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: clamp(24px, 5vh, 36px);
    transform: none;
  }
}
.hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-en);
}
@media screen and (max-width: 767px) {
  .hero__copy {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }
}
.hero__copy h1 {
  margin: 0;
  min-width: 0;
  font-size: 64px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__copy h1 {
    min-width: 0;
    font-size: clamp(48px, 6vw, 58px);
  }
}
@media screen and (max-width: 767px) {
  .hero__copy h1 {
    width: 100%;
    font-size: clamp(36px, 11.5vw, 43px);
  }
}
.hero__copy p {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .hero__copy p {
    font-size: 14px;
    line-height: 1.7;
  }
}
.hero__copy .hero-title__line,
.hero__copy .hero-subtitle__line {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero__copy .char {
  display: inline-block;
  will-change: transform, opacity;
}
.hero .record-art {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 541/431;
  isolation: isolate;
  justify-self: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero .record-art {
    max-width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .hero .record-art {
    width: clamp(250px, 76vw, 330px);
  }
}
.hero .record-art__part {
  position: absolute;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.hero .record-art__part--orbit {
  top: -2.55%;
  left: -3.51%;
  z-index: 1;
  width: 108.13%;
}
.hero .record-art__part--record {
  top: 2.55%;
  left: 0;
  z-index: 2;
  width: 97.04%;
}
.hero .record-art__part--note-top {
  top: -6.26%;
  left: 64.33%;
  z-index: 3;
  width: 38.82%;
}
.hero .record-art__part--note-bottom {
  top: 52.67%;
  left: -2.96%;
  z-index: 3;
  width: 36.23%;
}
.hero .record-art__part--sparkle-left {
  top: 5.57%;
  left: 10.35%;
  z-index: 3;
  width: 29.76%;
}
.hero .record-art__part--sparkle-bottom {
  top: 49.65%;
  left: 53.05%;
  z-index: 3;
  width: 31.98%;
}
.hero .record-art__part--sparkle-small {
  top: 70.53%;
  left: 66.17%;
  z-index: 3;
  width: 22%;
}
.hero__cloud {
  position: absolute;
  z-index: 2;
  max-width: none;
  height: auto;
}
.hero__cloud--top {
  top: min(80px, 50% - 390px);
  left: -240px;
  width: 900px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__cloud--top {
    left: -280px;
    width: min(120vw, 1000px);
  }
}
@media screen and (max-width: 767px) {
  .hero__cloud--top {
    top: 20px;
    left: clamp(-230px, -60vw, -42px);
    width: min(140vw, 860px);
  }
}
.hero__cloud--bottom {
  right: -77px;
  bottom: -66px;
  width: 1200px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__cloud--bottom {
    right: -100px;
    bottom: -68px;
    width: min(130vw, 1300px);
  }
}
@media screen and (min-width: 900px) and (max-width: 1024px) and (max-height: 650px) {
  .hero__cloud--bottom {
    bottom: -40px;
    width: min(90vw, 800px);
  }
}
@media screen and (max-width: 767px) {
  .hero__cloud--bottom {
    right: clamp(-110px, -30vw, -27px);
    bottom: -44px;
    width: min(170vw, 1200px);
  }
}
@media screen and (min-width: 500px) and (max-width: 600px) and (max-height: 760px) {
  .hero__cloud--bottom {
    bottom: -48px;
  }
}

.works,
.banners,
.skills {
  position: relative;
  isolation: isolate;
  background: var(--blue);
}
.works::before,
.banners::before,
.skills::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.24;
  pointer-events: none;
}
.works > *,
.banners > *,
.skills > * {
  position: relative;
  z-index: 1;
}

.section-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.works {
  padding: 60px 10px 70px;
}
@media screen and (max-width: 767px) {
  .works {
    min-height: auto;
    padding: 50px 14px 60px;
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 30px;
  font-family: var(--font-en);
  font-size: 58px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .section-title {
    gap: 16px;
    font-size: 46px;
  }
}
.section-title--light {
  color: #fff;
}

.sparkle-line {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sparkle-line {
    width: 130px;
  }
}

.website-list {
  display: grid;
  gap: 22px;
}

.website-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 268px;
  grid-template-columns: 40% 60%;
  align-items: center;
  background-color: #fbfbfb;
  border: 1px solid #ccd0ff;
  color: var(--ink);
  transition: transform 0.25s ease;
}
.website-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.website-card > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .website-card {
    grid-template-columns: 1fr;
  }
}
.website-card__image {
  width: 100%;
  max-height: 238px;
  padding: 10px 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .website-card__image {
    max-height: 300px;
  }
}
.website-card__body {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 44px 34px 28px 18px;
}
@media screen and (max-width: 767px) {
  .website-card__body {
    min-height: 190px;
    padding: 20px 10px;
  }
}
.website-card h3 {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #4254e7;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.045em;
}
@media screen and (max-width: 767px) {
  .website-card h3 {
    font-size: 17px;
  }
}
.website-card:hover {
  transform: scale(1.02);
}

.tags {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-family: var(--font-en);
}
@media screen and (max-width: 767px) {
  .tags {
    margin-top: 14px;
  }
}
.tags span {
  display: inline-flex;
  min-width: 132px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .tags span {
    height: 30px;
  }
}

.web-link {
  color: inherit;
  text-decoration: none;
}
.web-link:hover .more-link--website .arrow-in-circle::before, .web-link:focus-visible .more-link--website .arrow-in-circle::before {
  -webkit-animation: flyLine 0.6s ease forwards;
          animation: flyLine 0.6s ease forwards;
}
.web-link:hover .more-link--website .arrow-in-circle::after, .web-link:focus-visible .more-link--website .arrow-in-circle::after {
  -webkit-animation: flyArrow 0.6s ease forwards;
          animation: flyArrow 0.6s ease forwards;
}
.web-link:hover .more-link--banner .arrow-in-circle::before, .web-link:focus-visible .more-link--banner .arrow-in-circle::before {
  -webkit-animation: flyLineBanner 0.5s ease forwards;
          animation: flyLineBanner 0.5s ease forwards;
}
.web-link:hover .more-link--banner .arrow-in-circle::after, .web-link:focus-visible .more-link--banner .arrow-in-circle::after {
  -webkit-animation: flyArrowBanner 0.5s ease forwards;
          animation: flyArrowBanner 0.5s ease forwards;
}
.web-link:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.more-link {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-left: auto;
  font-family: var(--font-en);
}
.more-link p {
  margin: 0;
  font-style: italic;
  font-weight: 900;
}
.more-link--website {
  gap: 40px;
}
.more-link--website p {
  font-size: 18px;
}
.more-link--banner {
  gap: 30px;
}
.more-link--banner p {
  font-size: 16px;
}
.more-link .arrow-in-circle {
  position: relative;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.more-link .arrow-in-circle::before {
  position: absolute;
  top: 50%;
  right: 40%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(0, -50%);
}
.more-link .arrow-in-circle::after {
  position: absolute;
  top: 50%;
  left: 40%;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translate(-30%, -50%) rotate(45deg);
}
.more-link .arrow-in-circle--website {
  width: 40px;
  height: 40px;
}
.more-link .arrow-in-circle--website::before {
  width: 45px;
}
.more-link .arrow-in-circle--website::after {
  width: 10px;
  height: 10px;
}
.more-link .arrow-in-circle--banner {
  width: 30px;
  height: 30px;
}
.more-link .arrow-in-circle--banner::before {
  width: 32px;
}
.more-link .arrow-in-circle--banner::after {
  width: 8px;
  height: 8px;
}

@-webkit-keyframes flyLine {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  40% {
    opacity: 0;
    transform: translate(30px, -50%);
  }
  41% {
    opacity: 0;
    transform: translate(-40px, -50%);
  }
  42% {
    opacity: 1;
    transform: translate(-40px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes flyLine {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  40% {
    opacity: 0;
    transform: translate(30px, -50%);
  }
  41% {
    opacity: 0;
    transform: translate(-40px, -50%);
  }
  42% {
    opacity: 1;
    transform: translate(-40px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@-webkit-keyframes flyArrow {
  0% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
  40% {
    opacity: 0;
    transform: translate(calc(-30% + 30px), -50%) rotate(45deg);
  }
  41% {
    opacity: 0;
    transform: translate(calc(-30% - 40px), -50%) rotate(45deg);
  }
  42% {
    opacity: 1;
    transform: translate(calc(-30% - 40px), -50%) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
}
@keyframes flyArrow {
  0% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
  40% {
    opacity: 0;
    transform: translate(calc(-30% + 30px), -50%) rotate(45deg);
  }
  41% {
    opacity: 0;
    transform: translate(calc(-30% - 40px), -50%) rotate(45deg);
  }
  42% {
    opacity: 1;
    transform: translate(calc(-30% - 40px), -50%) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes flyLineBanner {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  40% {
    opacity: 0;
    transform: translate(8px, -50%);
  }
  41% {
    opacity: 0;
    transform: translate(-10px, -50%);
  }
  42% {
    opacity: 1;
    transform: translate(-10px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes flyLineBanner {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  40% {
    opacity: 0;
    transform: translate(8px, -50%);
  }
  41% {
    opacity: 0;
    transform: translate(-10px, -50%);
  }
  42% {
    opacity: 1;
    transform: translate(-10px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@-webkit-keyframes flyArrowBanner {
  0% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
  40% {
    opacity: 0;
    transform: translate(calc(-30% + 16px), -50%) rotate(45deg);
  }
  41% {
    opacity: 0;
    transform: translate(calc(-30% - 22px), -50%) rotate(45deg);
  }
  42% {
    opacity: 1;
    transform: translate(calc(-30% - 22px), -50%) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
}
@keyframes flyArrowBanner {
  0% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
  40% {
    opacity: 0;
    transform: translate(calc(-30% + 16px), -50%) rotate(45deg);
  }
  41% {
    opacity: 0;
    transform: translate(calc(-30% - 22px), -50%) rotate(45deg);
  }
  42% {
    opacity: 1;
    transform: translate(calc(-30% - 22px), -50%) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-30%, -50%) rotate(45deg);
  }
}
.banners {
  min-height: 870px;
  padding: 4px 22px 82px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banners {
    padding: 4px 14px 82px;
  }
}
@media screen and (max-width: 767px) {
  .banners {
    min-height: auto;
    padding: 0 14px 65px;
  }
  .banners .section-title {
    gap: clamp(8px, 3vw, 16px);
    font-size: clamp(36px, 12vw, 46px);
  }
  .banners .sparkle-line {
    width: clamp(88px, 30vw, 130px);
  }
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-grid {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .banner-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-inline: auto;
  }
}

.view-all-works {
  position: relative;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  margin-top: 48px;
  color: #fff;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(38px, 4.7vw, 64px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.77;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .view-all-works {
    max-width: 100%;
    margin-top: 36px;
    font-size: clamp(23px, 7.4vw, 42px);
    line-height: 0.88;
  }
}
.view-all-works__line {
  display: block;
  white-space: nowrap;
}
.view-all-works__line--main {
  position: relative;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  align-self: flex-start;
  gap: clamp(12px, 2vw, 28px);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 2px transparent;
  paint-order: stroke fill;
}
@media screen and (max-width: 767px) {
  .view-all-works__line--main {
    gap: clamp(8px, 2.6vw, 12px);
  }
}
.view-all-works__line--outline {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}
.view-all-works__line--outline:nth-child(2) {
  padding-left: clamp(12px, 1.4vw, 20px);
}
.view-all-works__line--outline:nth-child(3) {
  padding-left: clamp(24px, 2.8vw, 40px);
}
.view-all-works__arrows {
  position: relative;
  display: inline-block;
  width: clamp(50px, 5vw, 66px);
  height: clamp(28px, 3vw, 40px);
  flex: 0 0 auto;
  color: #fff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .view-all-works__arrows {
    width: clamp(42px, 13vw, 50px);
    height: clamp(24px, 7vw, 28px);
  }
}
.view-all-works__arrows::before, .view-all-works__arrows::after,
.view-all-works__arrows > span {
  position: absolute;
  top: 0;
  width: 56%;
  height: 100%;
  background-color: currentColor;
  -webkit-clip-path: polygon(25% 0%, 65% 50%, 25% 100%, 0% 100%, 40% 50%, 0% 0%);
  clip-path: polygon(25% 0%, 65% 50%, 25% 100%, 0% 100%, 40% 50%, 0% 0%);
}
.view-all-works__arrows::before, .view-all-works__arrows::after {
  content: "";
}
.view-all-works__arrows::before {
  left: 0;
}
.view-all-works__arrows > span {
  left: 20%;
}
.view-all-works__arrows::after {
  left: 40%;
}
.view-all-works__text {
  position: relative;
  display: inline-block;
}
.view-all-works__text::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  pointer-events: none;
  white-space: nowrap;
  -webkit-clip-path: inset(-0.12em 100% -0.12em 0);
  clip-path: inset(-0.12em 100% -0.12em 0);
  transition: clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}
.view-all-works__line--main .view-all-works__text::after {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}
.view-all-works__line--outline .view-all-works__text::after {
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 2px var(--blue);
  paint-order: stroke fill;
}
.view-all-works:hover .view-all-works__arrows, .view-all-works:focus-visible .view-all-works__arrows {
  transform: translateX(10px);
}
.view-all-works:hover .view-all-works__text::after, .view-all-works:focus-visible .view-all-works__text::after {
  -webkit-clip-path: inset(-0.12em -0.18em -0.12em 0);
  clip-path: inset(-0.12em -0.18em -0.12em 0);
}

.banner-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 324px;
  flex-direction: column;
  padding: 8px 12px 10px;
  background-color: #f8f8f8;
  color: var(--ink);
  transition: transform 0.25s ease;
}
.banner-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.banner-card > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .banner-card {
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    margin-inline: auto;
  }
}
.banner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 340/250;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-card--wide img {
  -o-object-fit: contain;
     object-fit: contain;
}
.banner-card h3 {
  margin: 10px 0 8px;
  font-size: 16px;
  font-weight: 800;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.banner-card h3.banner-card__title--rectangle {
  margin-top: -0.62em;
}
.banner-card h3.banner-card__title--wide {
  margin-top: 0.55em;
}
@media screen and (max-width: 767px) {
  .banner-card h3 {
    margin: 10px 0 8px;
    font-size: 14px;
  }
}
.banner-card__rectangle {
  aspect-ratio: 320/250;
}
.banner-card__tag {
  display: inline-flex;
  min-width: auto;
  height: 24px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 2px 10px 4px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
}
.banner-card:hover {
  transform: scale(1.04);
}

.rectangle img {
  aspect-ratio: 320/250;
}

.about {
  position: relative;
  isolation: isolate;
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background-color: #f8f8f7;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 170px 170px;
}
.about::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.about > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about {
    min-height: auto;
  }
}
.about__inner {
  position: relative;
  display: grid;
  width: min(100%, 1044px);
  min-height: 670px;
  margin: 0 auto;
  grid-template-columns: 50% 50%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 70px 10px 50px;
  }
}
.about__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: center;
}
.about__arch-wrap {
  position: relative;
  flex: 0 0 auto;
}
.about__arch {
  display: flex;
  width: 345px;
  height: 440px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 180px 180px 0 0;
  background: var(--blue);
}
.about__arch img {
  width: 220px;
  transform-origin: bottom;
}
@media screen and (max-width: 767px) {
  .about__arch {
    width: 300px;
    height: 360px;
  }
  .about__arch img {
    width: 180px;
    transform-origin: bottom;
  }
}
.about__content {
  position: relative;
  z-index: 4;
  padding: 0 4px 0 18px;
}
@media screen and (max-width: 767px) {
  .about__content {
    order: -1;
    padding: 0 0 30px 14px;
  }
}
.about__content h2 {
  margin: 0 0 16px;
  font-family: var(--font-en);
  font-size: 70px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .about__content h2 {
    font-size: 58px;
  }
}
.about__content p {
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about__content p {
    font-size: 15px;
  }
}
.about__content p span {
  display: inline-block;
  padding: 0 8px;
  margin-top: 10px;
  background: #fff;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .about__content p span {
    padding: 0 4px;
  }
}
.about__name {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .about__name {
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}
.about__name strong {
  font-size: 30px;
  letter-spacing: -0.05em;
}
.about__name em {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
}
.about__decoration {
  position: absolute;
  z-index: 3;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about__decoration--left {
  top: clamp(16px, 2.7vw, 28px);
  right: max(16px, 50% - 580px);
  width: clamp(120px, 17.2vw, 180px);
}
@media screen and (max-width: 767px) {
  .about__decoration--left {
    top: 18px;
    right: -26px;
    width: clamp(110px, 38vw, 150px);
  }
}
.about__decoration--sparkle-bottom {
  right: clamp(-40px, -5vw, -18px);
  bottom: clamp(-50px, -4.4vw, -18px);
  left: auto;
  width: clamp(64px, 10vw, 90px);
  transform: none;
}
@media screen and (max-width: 767px) {
  .about__decoration--sparkle-bottom {
    right: -26px;
    bottom: -40px;
    left: auto;
    width: clamp(50px, 18vw, 68px);
  }
}
.about__decoration--sparkle-right {
  top: clamp(32px, 2.4vw, -30px);
  left: clamp(-28px, -2.4vw, -18px);
  right: auto;
  width: clamp(64px, 10vw, 90px);
}
@media screen and (max-width: 767px) {
  .about__decoration--sparkle-right {
    top: 18px;
    right: auto;
    bottom: auto;
    left: 14px;
    width: clamp(50px, 20vw, 68px);
  }
}
.about__decoration--right {
  bottom: clamp(20px, 3.7vw, 38px);
  left: max(16px, 50% - 660px);
  width: clamp(120px, 17.2vw, 180px);
}
@media screen and (max-width: 767px) {
  .about__decoration--right {
    bottom: 12px;
    left: -24px;
    width: clamp(110px, 38vw, 150px);
  }
}

.skills {
  min-height: 945px;
  padding: 72px 28px 82px;
}
@media screen and (max-width: 767px) {
  .skills {
    min-height: auto;
    padding: 60px 16px 70px;
  }
}
.skills .section-inner {
  max-width: 1100px;
}

.skill-slider {
  margin-top: 58px;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.skill-slider:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media screen and (max-width: 767px) {
  .skill-slider {
    margin-top: 42px;
  }
}
.skill-slider__track {
  display: flex;
  align-items: stretch;
  gap: 30px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .skill-slider__track {
    gap: 18px;
  }
}

.skill-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 490px;
  flex-direction: column;
  align-items: center;
  padding: 10px 24px 26px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  color: var(--ink);
  transform: scale(0.9);
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
.skill-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.skill-card > * {
  position: relative;
  z-index: 1;
}
.skill-card.is-active {
  z-index: 1;
  transform: scale(1);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .skill-card {
    flex: 0 0 calc((100% - 120px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .skill-card {
    flex-basis: calc((100% - 36px) / 1);
    min-width: 0;
  }
}
.skill-card img {
  display: block;
  width: 100%;
  height: 200px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateZ(0);
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .skill-card img {
    margin-left: 16px;
  }
}
.skill-card h3 {
  margin: 4px 0 20px;
  padding: 6px 18px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-en);
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}
.skill-card__text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}
.skill-card__tool {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  align-self: flex-start;
}

.skill-control {
  margin: 68px auto 0;
}
@media screen and (max-width: 767px) {
  .skill-control {
    margin: 54px auto 0;
  }
}
.skill-control__track {
  position: relative;
  width: 76%;
  height: 7px;
  margin: 0 auto 46px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.skill-control__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: #c2cbff;
}
.skill-control__knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c2cbff;
  transform: translate(-50%, -50%);
}
.skill-control__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .skill-control__buttons {
    gap: 35px;
  }
}
.skill-control__buttons button {
  display: flex;
  width: 68px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.skill-control__buttons button img {
  display: block;
  width: 100%;
  height: auto;
}
.skill-control__buttons button#skillPrev, .skill-control__buttons button#skillNext {
  overflow: hidden;
}
.skill-control__buttons button#skillPrev:hover img, .skill-control__buttons button#skillPrev:focus-visible img {
  -webkit-animation: skillArrowLoopPrev 0.7s cubic-bezier(0.45, 0, 0.2, 1);
          animation: skillArrowLoopPrev 0.7s cubic-bezier(0.45, 0, 0.2, 1);
}
.skill-control__buttons button#skillNext:hover img, .skill-control__buttons button#skillNext:focus-visible img {
  -webkit-animation: skillArrowLoopNext 0.7s cubic-bezier(0.45, 0, 0.2, 1);
          animation: skillArrowLoopNext 0.7s cubic-bezier(0.45, 0, 0.2, 1);
}
.skill-control__buttons .pause {
  width: 39px;
}
.skill-control__buttons .pause img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes skillArrowLoopPrev {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  45% {
    opacity: 0;
    transform: translateX(-10%);
  }
  46% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes skillArrowLoopPrev {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  45% {
    opacity: 0;
    transform: translateX(-10%);
  }
  46% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes skillArrowLoopNext {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  45% {
    opacity: 0;
    transform: translateX(10%);
  }
  46% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes skillArrowLoopNext {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  45% {
    opacity: 0;
    transform: translateX(10%);
  }
  46% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.more-about-me {
  position: relative;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  align-self: flex-start;
  margin-top: 10px;
  color: var(--ink);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(38px, 4.7vw, 64px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.75;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .more-about-me {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 42px);
    line-height: 0.82;
  }
}
.more-about-me__line {
  display: block;
  white-space: nowrap;
}
.more-about-me__line--main {
  position: relative;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  align-self: flex-start;
  gap: clamp(12px, 2vw, 28px);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  -webkit-text-stroke: 1px transparent;
  paint-order: stroke fill;
}
.more-about-me__line--outline {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
}
.more-about-me__line--outline:nth-child(2) {
  padding-left: clamp(12px, 1.4vw, 20px);
}
.more-about-me__line--outline:nth-child(3) {
  padding-left: clamp(24px, 2.8vw, 40px);
}
.more-about-me__arrows {
  position: relative;
  display: inline-block;
  width: clamp(50px, 5vw, 66px);
  height: clamp(28px, 3vw, 40px);
  flex: 0 0 auto;
  color: var(--ink);
  transition: transform 0.3s ease;
}
.more-about-me__arrows::before, .more-about-me__arrows::after,
.more-about-me__arrows > span {
  position: absolute;
  top: 0;
  width: 56%;
  height: 100%;
  background-color: currentColor;
  -webkit-clip-path: polygon(25% 0%, 65% 50%, 25% 100%, 0% 100%, 40% 50%, 0% 0%);
  clip-path: polygon(25% 0%, 65% 50%, 25% 100%, 0% 100%, 40% 50%, 0% 0%);
}
.more-about-me__arrows::before, .more-about-me__arrows::after {
  content: "";
}
.more-about-me__arrows::before {
  left: 0;
}
.more-about-me__arrows > span {
  left: 20%;
}
.more-about-me__arrows::after {
  left: 40%;
}
.more-about-me__text {
  position: relative;
  display: inline-block;
}
.more-about-me__text::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  pointer-events: none;
  white-space: nowrap;
  -webkit-clip-path: inset(-0.12em 100% -0.12em 0);
  clip-path: inset(-0.12em 100% -0.12em 0);
  transition: clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}
.more-about-me__line--main .more-about-me__text {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
}
.more-about-me__line--main .more-about-me__text::after {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  -webkit-text-stroke: 1px transparent;
  -webkit-clip-path: inset(-0.12em -0.18em -0.12em 0);
  clip-path: inset(-0.12em -0.18em -0.12em 0);
  paint-order: stroke fill;
}
.more-about-me__line--outline .more-about-me__text::after {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  -webkit-text-stroke: 1px #f8f8f7;
  paint-order: stroke fill;
}
.more-about-me:hover .more-about-me__arrows, .more-about-me:focus-visible .more-about-me__arrows {
  transform: translateX(10px);
}
.more-about-me:hover .more-about-me__text::after, .more-about-me:focus-visible .more-about-me__text::after {
  -webkit-clip-path: inset(-0.12em -0.18em -0.12em 0);
  clip-path: inset(-0.12em -0.18em -0.12em 0);
}
.more-about-me:hover .more-about-me__line--main .more-about-me__text::after, .more-about-me:focus-visible .more-about-me__line--main .more-about-me__text::after {
  -webkit-clip-path: inset(-0.12em -0.18em -0.12em 110%);
  clip-path: inset(-0.12em -0.18em -0.12em 110%);
}

.footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  background: #f8f8f7;
  color: var(--ink);
}
.footer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: flex;
  width: 100%;
  max-width: 1100px;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    min-height: 190px;
    padding: 20px 10px 0;
  }
}
.footer__inner small {
  align-self: flex-end;
  font-family: var(--font-en);
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer__inner small {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=style.css.map */
