* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    letter-spacing: 0.1em;
}

body {
    font-family: "Yu Gothic Medium", "Hiragino Sans", "Meiryo", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.78);
    background: none;
}

:root {
    --ui-font-size: 18px;
    --ui-letter-space: 0.08em;
    --ui-color: rgba(255, 255, 255, 0.98);
    --ui-shadow:
        0 2px 4px rgba(0, 0, 0, 0.18),
        0 6px 14px rgba(0, 0, 0, 0.12);
}

.is-locked {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

    .hero__logo img,
    .hero__profile {
        animation: none !important;
        transition: none !important;
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    padding-bottom: env(safe-area-inset-bottom);
    background: #bfbfbf;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(1500px 1000px at 18% 14%,
            rgba(255, 255, 255, 0.44) 0%,
            rgba(255, 255, 255, 0.28) 28%,
            rgba(255, 255, 255, 0.14) 52%,
            rgba(255, 255, 255, 0.05) 68%,
            rgba(255, 255, 255, 0.0) 82%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            rgba(0, 0, 0, 0.14) 100%);

    pointer-events: none;
}

.hero::before {
    opacity: 1;
    transition: opacity 600ms ease;
}

body.is-profile-open .hero::before {
    opacity: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero__logo {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.hero__loader {
    width: min(180px, 42vw);
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 400ms ease, transform 400ms ease;
}

.hero__loader::before {
    content: "";
    display: block;
    height: 100%;
    width: 45%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    transform: translateX(-120%);
    animation: heroLoader 900ms ease-in-out infinite;
}

body.is-locked .hero__loader {
    opacity: 0.9;
    transform: translateY(0);
}

.hero.is-profile-in .hero__loader {
    opacity: 0;
    transform: translateY(-2px);
    pointer-events: none;
}

@keyframes heroLoader {
    0% {
        transform: translateX(-120%);
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(240%);
        opacity: 0.6;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__loader::before {
        animation: none;
    }
}

.hero__logo img {
    width: min(200px, 30vw);
    opacity: 0;
    transform: scale(0.985);
    filter: blur(1.5px);
    will-change: opacity, transform, filter;
}

.hero.is-logo-in .hero__logo img {
    animation: logoIn 1500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (max-width: 768px) {
    .hero__logo {
        transform: translateY(-12px);
    }

    .hero__logo img {
        width: min(250px, 40vw);
    }
}

@keyframes logoIn {
    0% {
        opacity: 0;
        transform: scale(0.985);
        filter: blur(1.5px);
    }

    60% {
        opacity: 0.9;
        transform: scale(1.002);
        filter: blur(0.2px);
    }

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

.hero__profile {
    position: absolute;
    right: 36px;
    bottom: calc(28px + env(safe-area-inset-bottom));
    font-size: var(--ui-font-size);
    letter-spacing: var(--ui-letter-space);
    color: var(--ui-color);
    text-shadow: var(--ui-shadow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 600ms ease, transform 600ms ease;
    cursor: pointer;
    user-select: none;
    font-weight: 300;
    -webkit-tap-highlight-color: transparent;
}

.hero__profile::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 300ms ease, opacity 300ms ease;
}

.hero__profile:hover {
    opacity: 0.78;
    transform: translateY(-1px);
}

.hero__profile:hover::after {
    transform: translateX(2px) rotate(-45deg);
}

.hero__profile:active {
    opacity: 0.65;
    transform: translateY(0);
}

.hero__profile:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: 6px;
    border-radius: 2px;
}

.hero.is-profile-in .hero__profile {
    opacity: 1;
    transform: translateY(0);
}

.profile-card {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    transform: translateX(100%);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    overflow: hidden;
}

.profile-card.is-open {
    transform: translateX(0);
}

.profile-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    display: block;
}

.profile-card__text {
    position: relative;
    z-index: 1;
    color: rgba(0, 0, 0, 0.85);
    padding: 70px 72px;
}

.profile-card__name {
    font-size: 18px;
    letter-spacing: 0.14em;
    font-weight: 300;
    margin-bottom: 50px;
}

.profile-card__text p {
    font-size: 13.5px;
    line-height: 2.1;
    margin-bottom: 20px;
}

.profile-card__history {
    list-style: none;
    padding: 0;
    margin-top: 60px;
    font-size: 13.5px;
}

.profile-card__history li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.profile-card__history span {
    width: 120px;
}

.profile-close {
    position: fixed;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.8;
    -webkit-tap-highlight-color: transparent;
}

.profile-close::before,
.profile-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.8);
    transform-origin: center;
}

.profile-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.profile-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.profile-close:hover {
    opacity: 0.55;
}

.profile-close:active {
    opacity: 0.4;
}

@media (max-width: 768px) {
    .hero__profile {
        right: 6.5vw;
    }

    .profile-card__image {
        content: url("images/profile-iPhone.jpg");
        object-position: center bottom;
    }

    .profile-card__text {
        padding: 44px 28px;
        max-width: 100%;
    }

    .profile-card__name {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .profile-card__text p {
        font-size: 12px;
        margin-bottom: 20px;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .profile-card__history {
        font-size: 12px;
        margin-top: 40px;
    }

    .profile-card__history li {
        display: grid;
        grid-template-columns: 5.5em 1fr;
        column-gap: 36px;
        margin-bottom: 10px;
    }

    .profile-card__history span {
        font-size: 12px;
    }

    .profile-card__history li> :not(span) {
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

.works {
    background: #fafafa;
    padding: 60px 6vw 50px;
}

.works__title {
    font-size: var(--ui-font-size);
    letter-spacing: var(--ui-letter-space);
    color: rgba(0, 0, 0, 0.78);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    margin-bottom: 56px;
    align-items: baseline;
}

.works__note {
    font-size: 11px;
    letter-spacing: 0.08em;
    opacity: 0.5;
    margin-left: 9px;
    transform: translateY(-1.5px);
    white-space: nowrap;
}

.works__title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(0, 0, 0, 0.75);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.75);
    transform: rotate(45deg) translateY(-3px);
    display: inline-block;
    margin-right: 8px;
}

.works a,
.works a:visited {
    color: inherit;
    text-decoration: none;
}

.works-item--title,
.works-item--title * {
    text-decoration: none;
}

.works-row {
    --row-h: 220px;
    --gap: 18px;
    --tile: #CCC8AB;
    margin-bottom: 60px;
}

.works-row__marquee {
    height: var(--row-h);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.works-row__marquee::-webkit-scrollbar {
    display: none;
}

.works-track {
    height: 100%;
    display: flex;
    gap: var(--gap);
    align-items: stretch;
    width: max-content;
}

.works-row.is-ready .works-track {
    animation: none !important;
}

.works-item {
    height: 100%;
    flex: 0 0 auto;
    display: block;
    border-radius: 2px;
    overflow: hidden;
}

.works-item img {
    width: auto;
    height: 100%;
    display: block;
    object-fit: cover;
}

.works-item video {
    width: auto;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    min-width: calc(var(--row-h) * 1.35);
}

.works-item--video {
    width: calc(var(--row-h) * 1.6);
}

.works-item--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-item--title {
    width: var(--row-h);
    background: var(--tile);
    border-radius: 2px;
}

.works-title-tile {
    height: 100%;
    width: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    padding: 18px;
    transform: rotate(var(--tile-rot));
    transform-origin: center;
}

.works-title-tile__title {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.works-title-tile__sub {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.10em;
    opacity: 0.95;
}

.works-row:nth-of-type(2) .works-item--video video {
    filter: brightness(0.98) contrast(1.04);
}

.works-row:nth-of-type(2) .works-item--video {
    position: relative;
}

.works-row:nth-of-type(2) .works-item--video::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(0, 0, 0, 0.08) 100%);
}

.works-row:nth-of-type(2) .works-item--screen {
    position: relative;
}

.works-row:nth-of-type(2) .works-item--screen::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(0, 0, 0, 0.08) 100%);
}

@media (max-width: 768px) {
    .works {
        padding: 60px 6.5vw 40px;
    }

    .works-row {
        --row-h: 150px;
        --gap: 12px;
        margin-bottom: 50px;
    }

    .works-title-tile__title {
        font-size: 14px;
    }

    .works-title-tile__sub {
        font-size: 11px;
    }

    .works__note {
        margin-left: 6px;
    }
}

.info {
    background: #fafafa;
    padding: 0 6vw 110px;
}

.info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info__panel {
    background: #f0f0f0;
    padding: 32px 36px 28px;
    display: flex;
    flex-direction: column;
}

.info__head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.info__chev {
    width: 9px;
    height: 9px;
    border-right: 1.5px solid rgba(0, 0, 0, 0.75);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.75);
    transform: rotate(45deg) translateY(-2px);
    margin-right: 4px;
}

.info__title {
    font-size: var(--ui-font-size);
    letter-spacing: var(--ui-letter-space);
    color: rgba(0, 0, 0, 0.78);
    font-weight: 300;
}

.info__body {
    font-size: 13px;
    line-height: 2.1;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.info__body--center {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    text-align: center;
}

.info__mark {
    margin-bottom: 36px;
}

.info__mark img {
    width: 150px;
    height: auto;
    display: block;
}

.info__about .info__mark img {
    margin: 0 auto;
}

.info__foot {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: flex-end;
}

.info__contact .info__foot {
    align-self: stretch;
    justify-content: flex-start;
    transform: translateX(-8px);
}

.about-profile-link {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 300ms ease, transform 300ms ease;
    margin-top: 10px;
    -webkit-tap-highlight-color: transparent;
}

.about-profile-link::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg) translateY(-1px);
    transition: transform 300ms ease, opacity 300ms ease;
    opacity: 0.9;
}

.about-profile-link:hover {
    opacity: 0.78;
}

.about-profile-link:hover::after {
    transform: translateX(1px) translateY(-1px) rotate(-45deg);
}

.about-profile-link:focus-visible {
    outline: 1px solid rgba(0, 0, 0, 0.35);
    outline-offset: 6px;
    border-radius: 2px;
}

.info__button {
    display: inline-block;
    margin: 32px auto 24px;
    padding: 12px 36px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    background: #fff;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.75);
    font-size: 13px;
    transition:
        background-color 200ms ease,
        border-color 200ms ease,
        color 200ms ease,
        transform 200ms ease,
        opacity 200ms ease;
}

.info__button span {
    display: inline-block;
    transform: translateY(1px);
}

.info__button:hover {
    color: rgba(0, 0, 0, 0.65);
    opacity: 0.9;
}

.info__button:active {
    transform: translateY(0);
    opacity: 0.8;
}

.info__sns {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    transition: opacity 200ms ease;
    transform: translateX(-6px) translateY(6px);
}

.info__sns-icon {
    width: 35px;
    height: auto;
    display: block;
    filter: brightness(0.45);
    transition: filter 200ms ease;
}

.info__sns a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 6px;
    border-radius: 2px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: inherit;
}

.info__sns a:active {
    transform: none;
}

.info__sns a span {
    transform: translateY(1px);
    display: inline-block;
    font-weight: 500;
    opacity: 0.9;
}

.info__sns:hover {
    opacity: 0.72;
}

@media (max-width: 768px) {
    .info {
        padding: 0 6.5vw 90px;
    }

    .info__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info__panel {
        padding: 30px 6vw 26px;
    }

    .info__head {
        margin-bottom: 32px;
    }

    .info__body,
    .info__body--center {
        flex: unset;
    }

    .info__body.info__body--center {
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .info__body.info__body--center br {
        display: none;
    }

    .about-profile-link::after {
        transform: rotate(-45deg) translateY(0);
    }

    .about-profile-link:hover::after {
        transform: translateX(1px) translateY(0) rotate(-45deg);
    }

    .info__sns a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        color: inherit;
    }
}

.contact-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(250, 250, 250, 0.98);
    transform: translateX(100%);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.contact-panel.is-open {
    transform: translateX(0);
}

.contact-panel__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: calc(env(safe-area-inset-top) + 70px) 72px 64px;
}

.contact-panel__title {
    font-size: 18px;
    letter-spacing: 0.14em;
    font-weight: 300;
    margin-bottom: 22px;
    color: rgba(0, 0, 0, 0.82);
}

.contact-panel__lead {
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: 0.10em;
    color: rgba(0, 0, 0, 0.70);
    margin-bottom: 34px;
}

.contact-panel__note {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.9;
}

.contact-close {
    position: fixed;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.8;
    -webkit-tap-highlight-color: transparent;
}

.contact-close::before,
.contact-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.8);
    transform-origin: center;
}

.contact-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-close:hover {
    opacity: 0.55;
}

.contact-close:active {
    opacity: 0.4;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.field label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.10em;
    color: rgba(0, 0, 0, 0.70);
    margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 12px;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.78);
    outline: none;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(0, 0, 0, 0.38);
}

.contact-submit {
    margin-top: 10px;
    padding: 12px 36px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    background: #fff;
    color: rgba(0, 0, 0, 0.75);
    font-size: 13px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity 200ms ease, transform 200ms ease;
}

.contact-submit span {
    display: inline-block;
}

.contact-submit:hover {
    opacity: 0.9;
}

.contact-submit:active {
    transform: translateY(0);
    opacity: 0.82;
}

.hp {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .contact-panel__inner {
        padding: calc(env(safe-area-inset-top) + 54px) 6.5vw 54px;
    }

    .contact-panel .field input,
    .contact-panel .field select,
    .contact-panel .field textarea {
        font-size: 16px;
        line-height: 1.6;
    }

    .contact-close {
        top: 24px;
        right: 24px;
    }
}

footer {
    position: relative;
    background: #CCC8AB;
    color: #fff;
    padding: 30px 40px;
    font-family: "Yu Gothic Medium", "Hiragino Sans", sans-serif;
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 42px;
}

.footer-menu li {
    list-style: none;
    margin: 0;
}

.footer-menu li:nth-child(1) {
    justify-self: end;
}

.footer-menu li:nth-child(2) {
    justify-self: center;
}

.footer-menu li:nth-child(3) {
    justify-self: start;
}

.footer-menu li:nth-child(1),
.footer-menu li:nth-child(3) {
    position: relative;
}

.footer-menu li:nth-child(1)::after,
.footer-menu li:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50% + 2px);
}

.footer-menu li:nth-child(1)::after {
    right: -22px;
}

.footer-menu li:nth-child(3)::before {
    left: -22px;
}

.footer-menu a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1;
    padding: 0;
    text-decoration: none;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.6;
}

footer small {
    display: block;
    text-align: center;
    position: relative;
    left: 4px;
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    opacity: 0.8;
}

@media (max-width: 768px) {
    footer {
        padding: 26px 20px;
    }

    .footer-menu {
        column-gap: 36px;
    }

    .footer-menu li:nth-child(1)::after {
        right: -19px;
    }

    .footer-menu li:nth-child(3)::before {
        left: -19px;
    }

    .footer-menu li:nth-child(1)::after,
    .footer-menu li:nth-child(3)::before {
        transform: translateY(-50% + 5px);
    }

    footer small {
        margin-top: 20px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.back-to-top svg {
    transform: translateY(1.5px);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.8);
}