@import"https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap";

.kiwi-maru-regular {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal
}

.courgette-regular {
    font-family: "Courgette", cursive;
    font-weight: 400;
    font-style: normal
}

.josefin-sans {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal
}

.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal
}

.libre-caslon-display-regular {
    font-family: "Libre Caslon Display", serif;
    font-weight: 400;
    font-style: normal
}

.habibi-regular {
    font-family: "Habibi", serif;
    font-weight: 400;
    font-style: normal
}

body {
    font-family: "Oswald", sans-serif;
    color: #fff;
    width: 100%
}

body.is-fixed {
    overflow: hidden
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

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

    html,
    body {
        height: auto
    }
}

.cursor,
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%)
}

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

    .cursor,
    .cursor-trail {
        display: none
    }
}

.cursor {
    width: 10px;
    height: 10px;
    background-color: #fff;
    box-shadow: 0 0 6px hsla(0, 0%, 100%, .5);
    transition: transform .15s ease, box-shadow .15s ease
}

@media screen and (max-width: 767px) {
    .cursor {
        display: none
    }
}

.cursor-trail {
    width: 25px;
    height: 25px;
    background-color: hsla(0, 0%, 100%, .2);
    transition: transform .3s ease
}

.cursor-trail.is-active {
    transform: translate(-50%, -50%) scale(2.2);
    background-color: hsla(0, 0%, 100%, .4)
}

.cursor-trail.is-clicked {
    background-color: rgba(28, 28, 28, .8)
}

@media screen and (max-width: 767px) {
    .cursor-trail {
        display: none
    }
}

.cursor--active {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, .6)
}

@media screen and (max-width: 767px) {
    .cursor--active {
        display: none
    }
}

a:hover~.cursor-trail,
button:hover~.cursor-trail,
.clickable:hover~.cursor-trail {
    transform: translate(-50%, -50%) scale(2.2);
    transition: transform .3s ease
}

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

    a:hover~.cursor-trail,
    button:hover~.cursor-trail,
    .clickable:hover~.cursor-trail {
        display: none
    }
}

#video-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: 30% 50%
}

#intro-click-prompt {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    letter-spacing: .3em;
    text-transform: uppercase;
    opacity: 1;
    transition: opacity .3s ease;
    animation: pulsePrompt 2s ease-in-out infinite;
    text-shadow: 0 0 20px hsla(0, 0%, 100%, .5);
    font-family: "Oswald", sans-serif
}

@keyframes pulsePrompt {

    0%,
    100% {
        opacity: .6;
        transform: translateX(-50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05)
    }
}

.bg_inner {
    position: relative;
    z-index: 1
}

.bg_inner .bg_inner_img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1
}

.header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px
}

@media screen and (max-width: 767px) {
    .header {
        padding-right: 10px
    }
}

.header .drawer-icon {
    position: absolute;
    top: 0;
    right: 0;
    position: fixed
}

.drawer-icon {
    position: fixed;
    width: 150px;
    max-width: 150px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0);
    border: none
}

@media screen and (max-width: 767px) {
    .drawer-icon {
        align-items: center;
        text-align: right
    }
}

.drawer-icon__bar {
    display: none
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
    opacity: 0
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

.drawer-icon__img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    z-index: 102;
    transition: filter .3s ease, transform .3s ease
}

@media screen and (max-width: 767px) {
    .drawer-icon__img {
        max-width: 100px;
        transform: none
    }
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: -20%;
    width: 20%;
    height: 100%;
    background: url(../img/drawer.webp) center center no-repeat;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    transition: right .3s ease, clip-path .6s ease;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center
}

@media screen and (max-width: 767px) {
    .drawer-menu {
        width: 30%;
        right: -30%
    }
}

.drawer-menu.is-open {
    right: 0;
    transition: right .5s ease
}

.drawer-menu.is-closing {
    right: -100vw;
    transition: right 2.5s ease
}

.drawer-nav__list {
    list-style: none;
    padding: 0;
    text-align: center
}

.drawer-nav__list li {
    margin: 20px 0
}

.drawer-nav__list li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: opacity .3s
}

@media screen and (max-width: 767px) {
    .drawer-nav__list li a {
        font-size: 12px
    }
}

.drawer-nav__list li a:hover {
    opacity: .7
}

.drawer-icon__img {
    animation: rotateY 5s linear infinite;
    transform-style: preserve-3d;
    transition: filter .3s ease
}

.drawer-icon__img:hover {
    filter: invert(1) brightness(0.7) saturate(0);
    transform: scale(2)
}

@keyframes rotateY {
    from {
        transform: rotateY(0deg)
    }

    to {
        transform: rotateY(360deg)
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0)
}

#fv-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.fv-slide img,
.fv-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fv-slide.active {
    opacity: 1
}

.fv-slide.fade-out {
    opacity: 0
}

.fv-slide--move-right img {
    animation: moveRight 20s ease-in-out infinite alternate
}

.fv-slide--move-left img {
    animation: moveLeft 20s ease-in-out infinite alternate
}

@keyframes moveRight {
    0% {
        transform: translateX(-5%) scale(1.1)
    }

    100% {
        transform: translateX(5%) scale(1.1)
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(5%) scale(1.1)
    }

    100% {
        transform: translateX(-5%) scale(1.1)
    }
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none
}

.button {
    align-items: center;
    display: flex;
    padding: 6px 10px 6px 30px;
    width: 160px;
    margin: 0 auto
}

.button__bg {
    background-color: #fff
}

.button__bg .button__text {
    color: #030a5b
}

.button__border {
    border: 1px solid #fff
}

.button__border .button__text {
    color: #fff
}

.button__icon {
    width: 24px;
    display: flex;
    align-items: center
}

.button__icon_path {
    fill: #fff
}

.button__icon_path__contact {
    fill: #030a5b
}

.button__text {
    margin-left: 10px;
    font-size: 16px;
    letter-spacing: .08em;
    color: #fff
}

.fv {
    margin: 450px 450px 550px 450px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 767px) {
    .fv {
        margin-top: 250px;
        margin-bottom: 150px
    }
}

.fv__inner {
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;
    min-width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.fv__title,
.fv__title__sub {
    color: #fff;
    transition: color .3s ease
}

.fv__inner:hover .fv__title,
.fv__inner:hover .fv__title__sub {
    color: hsla(0, 0%, 100%, .5)
}

.fv__title,
.fv__title__sub {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
    word-break: break-word;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    border-bottom: none
}

.fv__title.fast-fade,
.fv__title__sub.fast-fade {
    animation-duration: .5s;
    animation-delay: 0s
}

a {
    text-decoration: none
}

.fv__title {
    font-size: 35px;
    animation-delay: 2.5s;
    font-family: "Habibi", serif
}

@media screen and (min-width: 768px) {
    .fv__title {
        font-size: 30px
    }
}

.fv__title__sub {
    font-size: 15px;
    animation-delay: 3s;
    font-family: "Libre Caslon Display", serif
}

@media screen and (min-width: 768px) {
    .fv__title__sub {
        font-size: 12px
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .6s ease-out forwards
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.works__item+.works__item {
    margin-top: 40px
}

.works__item_img {
    margin-bottom: 12px
}

.works__item_img img {
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .15)
}

.works__item_name {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
    margin-top: 7px;
    font-weight: 200
}

.works__item_link {
    text-decoration: underline;
    font-size: 14px;
    display: inline-block;
    transition: transform .3s ease;
    color: #fff;
    transition: color .3s ease
}

.works__item_link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.works__list {
    margin-bottom: 300px;
    padding-left: 0
}

.works__item_link {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLink 1s ease-out forwards;
    animation-delay: .5s
}

@media screen and (max-width: 767px) {
    .works__item_link img {
        max-width: 200px
    }
}

@keyframes fadeInUpLink {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

.works__item_link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.works__item {
    list-style: none;
    padding-left: 0
}

.scrollarea {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden
}

.scrollarea__inner {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.scrollarea__text {
    display: inline-block;
    white-space: nowrap;
    font-size: 100px;
    letter-spacing: .3em;
    animation: scroll-left 12s linear infinite;
    font-family: "Anton", sans-serif
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.about__img {
    margin-bottom: 32px
}

.about__img img {
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .15);
    width: 600px
}

.about__text {
    font-size: 16px;
    line-height: 1.6
}

.about__text+.about__text {
    margin-top: 1em
}

.page__bottom {
    color: #fff
}

.page__bottom__item {
    padding: 40px
}

@media screen and (min-width: 768px) {
    .wrapper {
        display: flex
    }

    .main {
        flex-basis: 79.2%
    }

    .header {
        position: relative;
        flex-basis: 20.8%
    }

    .header__menu_button {
        display: none
    }

    .header__contents {
        display: block;
        border: none
    }

    .header__logo {
        font-size: 30px;
        letter-spacing: .12em;
        line-height: 1
    }

    .header__container {
        width: 160px;
        margin: 0 auto;
        position: sticky;
        top: 50px
    }

    .button {
        transition: background .3s, color .3s, opacity .3s;
        opacity: .3s
    }

    .button:hover {
        background-color: #fff
    }

    .button:hover .button__text {
        color: #030a5b
    }

    .button__bg {
        color: #030a5b
    }

    .button__bg:hover {
        opacity: .7
    }

    .fv__contents {
        background: url(../img/bg_fv.png) center center no-repeat;
        background-size: 100% auto;
        bottom: 100px;
        left: 0;
        max-width: 627px;
        height: 174px;
        padding-top: 24px;
        padding-left: 96px
    }

    .works__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5%;
        justify-content: center;
        align-items: center;
        align-items: stretch
    }

    .works__item {
        justify-content: flex-end;
        flex: 1
    }

    .works__item+.works__item {
        margin-top: 0
    }

    .works__item_img {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        margin-bottom: auto;
        transition: transform .3s ease
    }

    .works__item_img img {
        object-fit: contain;
        max-width: 400px;
        transition: transform .3s ease
    }

    .works__item_img:hover {
        transform: translateY(-10px)
    }

    .about__container {
        display: flex;
        flex-direction: row-reverse;
        gap: 40px
    }
}

.page__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.page__bottom__item {
    padding: 54px 10px
}

@media screen and (min-width: 768px)and (max-width: 1024px) {
    .section__head_main {
        font-size: 54px
    }

    .fv__contents {
        bottom: 50%;
        transform: translateY(50%)
    }
}

.wrapper {
    display: flex;
    flex-direction: column
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none
}

.button {
    align-items: center;
    display: flex;
    padding: 6px 10px 6px 30px;
    width: 160px;
    margin: 0 auto
}

.button__bg {
    background-color: #fff
}

.button__bg .button__text {
    color: #030a5b
}

.button__border {
    border: 1px solid #fff
}

.button__border .button__text {
    color: #fff
}

.button__icon {
    width: 24px;
    display: flex;
    align-items: center
}

.button__icon_path {
    fill: #fff
}

.button__icon_path__contact {
    fill: #030a5b
}

.button__text {
    margin-left: 10px;
    font-size: 16px;
    letter-spacing: .08em;
    color: #fff
}

.section {
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 1
}

.section__inner {
    padding: 0 32px;
    text-align: center
}

.section__head {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px
}

.section__head__center {
    text-align: center
}

.section__head_main {
    font-size: 40px;
    letter-spacing: .1em;
    font-family: "Habibi", serif
}

.section__head_sub {
    font-size: 11px
}

.section__lead_text {
    font-size: 16px;
    line-height: 1.6
}

.section__contents {
    margin-top: 40px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto
}

.inner {
    padding-left: 200px;
    padding-right: 200px
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .6s ease-out forwards
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.section.service {
    position: relative;
    overflow: hidden;
    background: url("../img/renga_allbg.webp") center center/cover no-repeat
}

.service__item ::marker {
    display: none
}

.service__item+.service__item {
    margin-top: 40px
}

.service__item_img {
    text-align: center;
    margin-bottom: 14px
}

.service__item_name {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px
}

.service__item_text {
    font-size: 14px;
    line-height: 1.6
}

.service__list {
    gap: 20px;
    justify-content: center;
    margin: 0 auto
}

@media screen and (min-width: 768px) {
    .service__list {
        gap: 8%;
        display: flex;
        flex-direction: row;
        margin-top: 90px;
        align-items: stretch;
        text-align: center;
        justify-content: center
    }

    .service__item+.service__item {
        margin-top: 0;
        max-height: 0
    }

    .service .service__item:nth-child(2) .service__item_img {
        margin-bottom: 23px
    }

    .service .service__item:nth-child(3) .service__item_img {
        margin-bottom: 18px
    }
}

@media screen and (max-width: 767px) {
    .service__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .service__item {
        width: 90%;
        max-width: 320px;
        margin-bottom: 32px
    }

    .service__item ::marker {
        display: none
    }
}

.service__list {
    list-style: none;
    padding-left: 0
}

.scrollarea {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden
}

.scrollarea__inner {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.scrollarea__text {
    display: inline-block;
    white-space: nowrap;
    font-size: 100px;
    letter-spacing: .3em;
    animation: scroll-left 12s linear infinite;
    font-family: "Anton", sans-serif
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.flow__list {
    margin-top: 64px;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    display: flex;
    flex-direction: column
}

@media screen and (min-width: 768px) {
    .flow__list {
        flex-direction: row
    }
}

@media screen and (max-width: 767px) {
    .flow__list {
        flex-direction: column
    }
}

.flow__item {
    position: relative;
    border: 1px solid #5c4ca3;
    padding: 46px 16px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #46f1be;
    border-image: initial;
    max-width: 220px;
    width: 100%;
    text-align: inherit;
    flex-shrink: 0;
    min-height: 380px;
    padding-left: auto;
    padding-right: auto;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.flow__item+.flow__item {
    margin-top: 46px
}

.flow__item_num {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translatex(-50%);
    font-size: 24px;
    background-color: #05a978;
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.flow__item_img {
    margin-bottom: 24px;
    text-align: center;
    margin-top: 10px
}

.flow__item_name {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px
}

.flow__item_text {
    font-size: 14px;
    line-height: 1.6
}

.flow__item {
    opacity: 0
}

.flow__item.fade-in-top,
.flow__item.fade-in-bottom {
    animation-duration: .8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease
}

.flow__item.fade-in-top {
    animation-name: slideFromCenterTop
}

.flow__item.fade-in-bottom {
    animation-name: slideFromCenterBottom
}

.flow__item.delay-0 {
    animation-delay: 0s
}

.flow__item.delay-1 {
    animation-delay: .3s
}

.flow__item.delay-2 {
    animation-delay: .6s
}

.flow__item.delay-3 {
    animation-delay: .9s
}

@keyframes slideFromCenterTop {
    from {
        opacity: 0;
        transform: translateY(0)
    }

    to {
        opacity: 1;
        transform: translateY(-40px)
    }
}

@keyframes slideFromCenterBottom {
    from {
        opacity: 0;
        transform: translateY(0)
    }

    to {
        opacity: 1;
        transform: translateY(40px)
    }
}

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

    .flow__item.fade-in-top,
    .flow__item.fade-in-bottom {
        animation-name: slideFromBottom
    }

    @keyframes slideFromBottom {
        from {
            opacity: 0;
            transform: translateY(40px)
        }

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

.section.flow {
    position: relative;
    background: linear-gradient(to bottom, #0a0a15 0%, #050510 50%, #020208 100%);
    overflow: hidden
}

.section.flow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0
}

.section.flow .section__inner {
    position: relative;
    z-index: 2
}

#earth-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px
}

@media screen and (max-width: 767px) {
    #earth-container {
        width: 300px;
        height: 300px
    }
}

#earth-container canvas {
    width: 100% !important;
    height: 100% !important;
    overflow: visible
}

.flow__list {
    list-style: none;
    padding-left: 0
}

.about__img {
    margin-top: auto;
    margin-bottom: auto
}

.about__img img {
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .15);
    width: 100%
}

.about__text {
    font-size: 18px;
    line-height: 1.9;
    color: #d4d4d4
}

.about__text+.about__text {
    margin-top: 1em
}

@media screen and (max-width: 769px) {
    .about__inner .about__container {
        padding: 0 20px
    }
}

@media screen and (min-width: 1300px) {
    .about__inner .about__container {
        padding: 0 175px
    }
}

.about__me {
    text-align-last: left;
    margin-top: 40px
}

@media screen and (max-width: 767px) {
    .about__me {
        text-align-last: center
    }
}

.about__en {
    margin-top: 40px
}

.about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 120px;
    margin-top: 50px
}

@media screen and (max-width: 1272px) {
    .about__container {
        min-width: 400px
    }
}

@media screen and (max-width: 769px) {
    .about__container {
        min-width: 200px
    }
}

@media screen and (max-width: 768px) {
    .about__container {
        min-width: 100px;
        flex-direction: column
    }
}

.about__text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards
}

@media screen and (max-width: 767px) {
    .about__text {
        text-align: center;
        align-items: center;
        justify-content: center
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.message {
    text-align: center;
    margin-top: 150px
}

.message__img {
    margin-bottom: 36px
}

.message__img img {
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .15)
}

.message__text {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 50px
}

.message__body {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 120px;
    margin-right: 120px;
    margin-top: 40px
}

.message__form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px;
    align-items: center;
    margin: 0 auto
}

.message__form_group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    gap: 30px;
    justify-content: center
}

@media screen and (max-width: 767px) {
    .message__form_group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px
    }
}

.message__name {
    width: 100%;
    max-width: 400px;
    text-align: left;
    align-items: flex-start
}

.message__name:hover {
    background-color: #cfcfcf;
    color: #000
}

.message__name::placeholder {
    padding: 6px
}

.message__email {
    width: 100%;
    max-width: 400px
}

.message__email:hover {
    background-color: #cfcfcf;
    color: #000
}

.message__email::placeholder {
    padding: 6px
}

.message__tel {
    width: 100%;
    max-width: 400px
}

.message__tel:hover {
    background-color: #cfcfcf;
    color: #000
}

.message__tel::placeholder {
    padding: 6px
}

.message__button {
    text-align: center;
    align-items: center;
    border: 8px;
    border-color: #000;
    margin-top: 20px
}

.message__button__text {
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 500
}

.message__button__text:hover {
    background-color: #cfcfcf;
    color: #000
}

.message__label {
    width: 100%;
    text-align-last: left;
    align-self: flex-start;
    font-size: 20px;
    max-width: 274px
}

@media screen and (max-width: 767px) {
    .message__label {
        text-align: left
    }
}

.input {
    border-radius: 5px;
    border: none;
    height: 30px
}

@media screen and (max-width: 767px) {
    .input {
        align-items: left
    }
}

.message_area {
    width: 100%;
    height: 100px;
    max-width: 400px
}

.message_area:hover {
    background-color: #cfcfcf;
    color: #000
}

.message_area::placeholder {
    padding: 6px
}

.not-found {
    margin-bottom: 150px
}

.not-found__message {
    margin-bottom: 50px
}

.not-found__link {
    color: #fff;
    transition: color .3s ease;
    border-bottom: 2px solid #fff;
    font-size: 20px;
    margin-top: 20px
}

.not-found__link:hover {
    color: hsla(0, 0%, 100%, .5)
}

.footer {
    text-align: center;
    padding: 10px;
    margin-top: 225px;
    margin-bottom: 40px
}

.footer__copy {
    font-size: 11px;
    font-family: sans-serif
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: .3s
}

.input {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    border: none;
    height: 30px;
    padding: 6px
}

@media screen and (max-width: 767px) {
    .input {
        align-items: flex-start
    }
}

.mail__links {
    display: flex;
    flex-direction: row;
    gap: 76px;
    align-items: center;
    text-align: center;
    justify-content: center
}

@media screen and (max-width: 1563px) {
    .mail__links {
        gap: 35px
    }
}

.mail__links:hover .mail-link-p {
    transform: translate(8px, -8px);
    opacity: .6
}

.mail__links .mail-link-p {
    transform: translateY(10px)
}

.mail__links .mail-link:hover+.mail-link-p {
    opacity: 1;
    transform: translateY(0)
}

.mail-link {
    font-weight: 10000;
    font-size: 130px;
    color: #fff;
    transition: color .3s ease;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #fff;
    transition: all .3s ease
}

.mail-link:hover {
    color: #cacaca;
    -webkit-text-stroke: 0px
}

.mail-link-p {
    font-size: 65px;
    transition: transform 1s ease, color 1s ease, -webkit-text-stroke 1s ease
}

@media screen and (max-width: 1563px) {
    .mail-link {
        font-size: 95px
    }

    .mail-link-p {
        font-size: 50px
    }
}

@media screen and (max-width: 1320px) {
    .mail-link {
        font-size: 80px
    }

    .mail-link-p {
        font-size: 45px
    }
}

@media screen and (max-width: 1024px) {
    .mail-link {
        font-size: 60px
    }

    .mail-link-p {
        font-size: 35px
    }
}

@media screen and (max-width: 768px) {
    .mail-link {
        font-size: 40px
    }

    .mail-link-p {
        font-size: 25px
    }
}

@media screen and (max-width: 560px) {
    .mail-link {
        font-size: 35px
    }

    .mail-link-p {
        font-size: 23px
    }
}

@media screen and (max-width: 480px) {
    .mail-link {
        font-size: 25px
    }

    .mail-link-p {
        font-size: 15px
    }
}

@media screen and (max-width: 360px) {
    .mail-link {
        font-size: 20px
    }

    .mail-link-p {
        font-size: 10px
    }
}

@media screen and (max-width: 200px) {
    .mail-link {
        font-size: 10px
    }

    .mail-link-p {
        font-size: 5px
    }
}

.sp-only {
    display: none
}

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

@media screen and (min-width: 768px) {
    .wrapper {
        display: flex
    }

    .main {
        flex-basis: 79.2%
    }

    .header {
        position: relative;
        flex-basis: 20.8%
    }

    .header__menu_button {
        display: none
    }

    .header__contents {
        display: block;
        border: none
    }

    .header__logo {
        font-size: 30px;
        letter-spacing: .12em;
        line-height: 1
    }

    .header__container {
        width: 160px;
        margin: 0 auto;
        position: sticky;
        top: 50px
    }

    .button {
        transition: background .3s, color .3s, opacity .3s;
        opacity: .3s
    }

    .button:hover {
        background-color: #fff
    }

    .button:hover .button__text {
        color: #030a5b
    }

    .button__bg {
        color: #030a5b
    }

    .button__bg:hover {
        opacity: .7
    }

    .section__inner {
        margin: 0 auto
    }

    .section__head {
        margin-bottom: 24px
    }

    .section__head_main {
        font-size: 60px
    }

    .fv__contents {
        background: url(../img/bg_fv.png) center center no-repeat;
        background-size: 100% auto;
        bottom: 100px;
        left: 0;
        max-width: 627px;
        height: 174px;
        padding-top: 24px;
        padding-left: 96px
    }

    .works__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }

    .works__item+.works__item {
        margin-top: 0
    }

    .about__container {
        display: flex;
        flex-direction: row-reverse;
        gap: 40px
    }

    .flow__list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px
    }

    .flow__item+.flow__item {
        margin-top: 0
    }

    .flow__list {
        list-style: none;
        padding-left: 0
    }

    .message__container {
        display: flex;
        flex-direction: column;
        gap: 40px
    }

    .page__bottom {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .page__bottom__item {
        padding: 54px 10px
    }
}

@media screen and (min-width: 768px)and (max-width: 1024px) {
    .section__head_main {
        font-size: 54px
    }

    .fv__contents {
        bottom: 50%;
        transform: translateY(50%)
    }

    .flow__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 16px;
        flex-shrink: 0
    }

    .works__list {
        gap: 8%
    }
}

.modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000
}

.modal.is-open {
    display: flex !important;
    justify-content: center;
    align-items: center
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    cursor: pointer
}

.modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    z-index: 1
}

.modal__content img {
    max-width: 100%;
    max-height: 90vh;
    display: block
}

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 2
}

.scroll-animate {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: none !important
}

.animate-fade-up {
    transform: translateY(60px)
}

.animate-fade-up.animate-in {
    transform: translateY(0)
}

.animate-card {
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.animate-card.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0)
}

.delay-1 {
    transition-delay: .2s
}

.delay-2 {
    transition-delay: .4s
}

.delay-3 {
    transition-delay: .6s
}

.delay-4 {
    transition-delay: .8s
}

.tilt-effect {
    transition: transform .3s ease-out, box-shadow .3s ease-out;
    transform-style: preserve-3d
}

.glow-hover {
    position: relative;
    transition: box-shadow .4s ease-out
}

.glow-hover::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity .4s ease-out;
    pointer-events: none;
    z-index: -1
}

.glow-hover:hover {
    box-shadow: 0 0 20px hsla(0, 0%, 100%, .15), 0 0 40px rgba(0, 72, 165, .2), 0 10px 30px rgba(0, 0, 0, .3)
}

.glow-hover:hover::after {
    opacity: 1
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity .5s ease-out;
    z-index: 10
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none
}

.scroll-indicator__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid hsla(0, 0%, 100%, .6);
    border-radius: 13px;
    position: relative
}

.scroll-indicator__wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: hsla(0, 0%, 100%, .8);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite
}

.scroll-indicator__text {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: .2em;
    color: hsla(0, 0%, 100%, .6);
    text-transform: uppercase
}

@keyframes scrollWheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    50% {
        opacity: .3;
        transform: translateX(-50%) translateY(12px)
    }
}

.enhanced-flow {
    transition: transform .8s cubic-bezier(0.4, 0, 0.2, 1), opacity .8s cubic-bezier(0.4, 0, 0.2, 1)
}

.section__head_main,
.service__item_img {
    will-change: transform
}

.bg-video {
    will-change: transform;
    transform: translateZ(0)
}

.service__item {
    transition: transform .4s ease-out, box-shadow .4s ease-out
}

.service__item:hover .service__item_img img {
    transform: scale(1.05);
    transition: transform .4s ease-out
}

.flow__item {
    transition: transform .4s ease-out, box-shadow .4s ease-out;
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(5px)
}

.fv__title,
.fv__title__sub {
    opacity: 0;
    animation: grandEntrance 1.5s ease-out forwards
}

.fv__title {
    animation-delay: 2.5s
}

.fv__title__sub {
    animation-delay: 3s
}

@keyframes grandEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }
}

.scrollarea {
    perspective: 1000px
}

.scrollarea__text {
    transform-style: preserve-3d;
    text-shadow: 0 0 20px hsla(0, 0%, 100%, .3), 0 0 40px hsla(0, 0%, 100%, .1)
}

/*# sourceMappingURL=style.css.map */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a1a;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
    overflow-x: hidden;
}

/* ===== 宇宙背景キャンバス ===== */
.stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

/* ===== ヒーローセクション ===== */
.works-hero {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.works-hero__title {
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(42px, 8vw, 100px);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    line-height: 1.1;
}

.works-hero__lead {
    font-family: "Kiwi Maru", serif;
    font-size: clamp(12px, 1.4vw, 16px);
    color: rgba(255, 255, 255, 0.35);
    margin-top: 20px;
    letter-spacing: 0.15em;
    line-height: 2;
}

.works-hero__scroll-cue {
    position: absolute;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.works-hero__scroll-cue span {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.works-hero__scroll-cue::after {
    content: "";
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollCuePulse 2s ease-in-out infinite;
}

@keyframes scrollCuePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== 横スクロールセクション ===== */
.horizontal-section {
    position: relative;
    z-index: 1;
}

.horizontal-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* ===== Collection タイトル（中央固定） ===== */
.collection-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.collection-title.is-visible {
    opacity: 1;
}

.collection-title__main {
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(56px, 12vw, 180px);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.06);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    line-height: 1;
    user-select: none;
}

.collection-title__sub {
    display: block;
    font-family: "Kiwi Maru", serif;
    font-size: clamp(11px, 1.4vw, 16px);
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5em;
    margin-top: 14px;
}

/* ===== トラック ===== */
.horizontal-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 0;
    will-change: transform;
    padding: 0 8vw;
}

/* ===== 作品カード ===== */
.work-card {
    flex-shrink: 0;
    width: clamp(240px, 20vw, 320px);
    margin: 0 clamp(24px, 3.5vw, 50px);
    position: relative;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card.is-in-view {
    opacity: 1;
}

/* 上下交互配置 — translateYで位置調整 */
.work-card:nth-child(odd) {
    transform: translateY(-18vh);
}

.work-card:nth-child(even) {
    transform: translateY(18vh);
}

.work-card.is-in-view:nth-child(odd) {
    transform: translateY(-18vh);
}

.work-card.is-in-view:nth-child(even) {
    transform: translateY(18vh);
}

.work-card__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* 横長画像用 */
.work-card--landscape {
    width: clamp(340px, 30vw, 480px);
}

.work-card--landscape .work-card__img-wrap {
    aspect-ratio: 4 / 3;
}

.work-card__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-card:hover .work-card__img-wrap::after {
    opacity: 1;
}

.work-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover .work-card__img {
    transform: scale(1.08);
}

/* 番号 */
.work-card__number {
    position: absolute;
    top: -30px;
    left: 0;
    font-family: "Josefin Sans", sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.15em;
}

/* テキスト情報 */
.work-card__info {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.work-card__name {
    font-family: "Kiwi Maru", serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.work-card__type {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 2px;
}

/* リンクオーバーレイ — ライトボックスモードでは非表示 */
.work-card__link {
    display: none;
}

/* ===== ライトボックス ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: zoom-out;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.lightbox.is-open .lightbox__img {
    transform: scale(1);
    opacity: 1;
}

.lightbox__close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(90deg);
}

.lightbox__close::before,
.lightbox__close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.6);
}

.lightbox__close::before {
    transform: rotate(45deg);
}

.lightbox__close::after {
    transform: rotate(-45deg);
}

.lightbox__caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.lightbox.is-open .lightbox__caption {
    opacity: 1;
}

.lightbox__caption-name {
    font-family: "Kiwi Maru", serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.lightbox__caption-type {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== スクロールヒント ===== */
.scroll-hint {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.scroll-hint.is-visible {
    opacity: 1;
}

.scroll-hint__line {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-hint__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollHintSlide 2.5s ease-in-out infinite;
}

@keyframes scrollHintSlide {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

.scroll-hint__text {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ===== プログレスバー ===== */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.04);
}

.progress-bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(100, 160, 255, 0.5), rgba(160, 100, 255, 0.5));
    transition: width 0.08s linear;
}

/* ===== レスポンシブ: デスクトップレイアウトを全画面幅で維持 ===== */
@media (max-width: 768px) {
    .work-card {
        width: clamp(220px, 18vw, 320px);
        margin: 0 24px;
    }

    .work-card:nth-child(odd),
    .work-card.is-in-view:nth-child(odd) {
        transform: translateY(-18vh);
    }

    .work-card:nth-child(even),
    .work-card.is-in-view:nth-child(even) {
        transform: translateY(18vh);
    }
}

@media (max-width: 480px) {
    .work-card:nth-child(odd),
    .work-card.is-in-view:nth-child(odd) {
        transform: translateY(-18vh);
    }

    .work-card:nth-child(even),
    .work-card.is-in-view:nth-child(even) {
        transform: translateY(18vh);
    }
}

/* ===== ナビバー ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transform: skewY(2deg);
    transform-origin: top left;
}

.navbar__list {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 0;
    margin: 0;
}

.navbar__list li a {
    display: block;
    padding: 0 32px;
    line-height: 30px;
    font-size: 12px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    transform: skewY(-2deg);
    position: relative;
}

.navbar__list li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.navbar__list li a:hover {
    color: rgba(255, 255, 255, 1);
}

.navbar__list li a:hover::after {
    width: 60%;
}