@charset "UTF-8";

* {
    position: relative;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    font-family: "Noto Sans TC", sans-serif;
    border: none;
    outline: none;
    background-color: transparent;
    word-wrap: break-word;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    -webkit-touch-callout: inherit;
    -webkit-user-select: inherit;
    -khtml-user-select: inherit;
    -moz-user-select: inherit;
    -ms-user-select: inherit;
    user-select: inherit;
}

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

*::-webkit-scrollbar {
    display: none;
}

* [user-select="0"] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* [user-select="1"] {
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

a {
    text-decoration: none;
}

img {
    content: url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
    object-fit: cover;
}

img.out {
    content: url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==") !important;
}

img[src]:not([src=""]) {
    content: unset;
}

textarea {
    resize: none;
}

input,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(0, 0, 0, 0.2039215686);
    opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.2039215686);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.2039215686);
}

a[href]:not([href=""]),
button {
    cursor: pointer;
}

html {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--global-bg);
    overflow: hidden;
}

body>section {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-bg);
    overflow: hidden;
}

body>section::after {
    content: attr(copyright);
    z-index: 2;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-right: -50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

@media screen and (min-width: 1024px) {
    body>section::after {
        font-size: 1.5rem;
    }
}

body>section>nav {
    z-index: 10;
    position: absolute;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1rem;
    width: 100%;
    max-width: 1440px;
    height: 5rem;
    justify-content: space-between;
}

body>section>nav>a {
    position: relative;
    width: initial;
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    color: var(--clr-txt);
}

@media screen and (min-width: 1024px) {
    body>section>nav>a {
        font-size: 2.5rem;
    }

    body>section>nav>a>b {
        font-size: 4rem;
    }
}

body>section>nav>a>b {
    vertical-align: top;
    height: 5rem;
    line-height: 5rem;
    font-size: 3.25rem;
    color: var(--clr-grad-end);
}

body>section>nav>ul {
    font-size: 0;
    height: 100%;
    overflow: hidden;
}

body>section>nav>ul.page {
    position: absolute;
    display: block;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    margin-right: -50%;
    transition: 0.3s;
}

@media screen and (min-width: 1024px) {
    body>section>nav>ul.page {
        top: 0;
    }
}

body>section>nav>ul.page>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 1rem;
}

body>section>nav>ul.page>li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    right: 0;
    height: 0.25rem;
    background-color: var(--clr-main);
    transition: 0.2s;
    opacity: 0;
}

body>section>nav>ul.page>li:hover::after {
    opacity: 0.25;
}

body>section>nav>ul.page>li.sel::after {
    opacity: 1;
}

body>section>nav>ul.page>li.sel:hover::after {
    opacity: 1;
}

body>section>nav>ul.page>li>a,
body>section>nav>ul.page>li>button {
    position: relative;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.125rem;
    color: var(--clr-txt);
}

body>section>nav>ul.contact {
    position: relative;
}

body>section>nav>ul.contact>li {
    position: relative;
    display: none;
    vertical-align: top;
    margin: 0 0.75rem;
}

@media screen and (min-width: 480px) {
    body>section>nav>ul.contact>li {
        display: inline-block;
    }
}

body>section>nav>ul.contact>li.mobile {
    display: inline-block;
}

@media screen and (min-width: 1024px) {
    body>section>nav>ul.contact>li.mobile {
        display: none;
    }
}

body>section>nav>ul.contact>li>a,
body>section>nav>ul.contact>li>button {
    position: relative;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.75rem;
}

body>section>nav>ul.contact>li>a>i,
body>section>nav>ul.contact>li>button>i {
    color: var(--clr-txt);
}

body>section>nav>ul.contact>li>a>svg,
body>section>nav>ul.contact>li>button>svg {
    position: relative;
    margin-top: 29px;
    width: 25px;
    height: 25px;
}

body>section>ul {
    z-index: 100;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    transition: 0.3s;
}

body>section>ul.show {
    right: 0;
}

body>section>ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--clr-bg);
    opacity: 0.5;
}

@media screen and (min-width: 480px) {
    body>section>ul {
        width: 240px;
    }
}

@media screen and (min-width: 1024px) {
    body>section>ul {
        right: -100% !important;
    }
}

body>section>ul>li {
    position: relative;
    display: block;
    margin: 0 1rem;
    width: 100%;
}

body>section>ul>li::before {
    content: "";
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--clr-main);
    transition: 0.2s;
    border-radius: 0.25rem;
    opacity: 0;
}

body>section>ul>li:hover::before {
    opacity: 0.25;
}

body>section>ul>li.sel::before {
    opacity: 1;
}

body>section>ul>li.sel:hover::before {
    opacity: 1;
}

body>section>ul>li>a,
body>section>ul>li>button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 1.5rem);
    height: 5rem;
    line-height: 5rem;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.125rem;
    color: var(--clr-txt);
}

body>section>ul>ul {
    position: relative;
    display: block;
    font-size: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

@media screen and (min-width: 480px) {
    body>section>ul>ul {
        display: none;
    }
}

body>section>ul>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 0.75rem;
}

body>section>ul>ul>li>a,
body>section>ul>ul>li>button {
    position: relative;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.75rem;
}

body>section>ul>ul>li>a>i,
body>section>ul>ul>li>button>i {
    color: var(--clr-txt);
}

body>section>ul>ul>li>a>svg,
body>section>ul>ul>li>button>svg {
    position: relative;
    margin-top: 29px;
    width: 25px;
    height: 25px;
}

body>section>div {
    position: relative;
    display: block;
    padding: 5rem 1rem 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 100%;
}

@media screen and (min-width: 1024px) {
    body>section>div {
        padding: 5rem 2rem 0;
    }
}

body>section>div:before {
    content: "";
    position: absolute;
    top: 12%;
    left: 30%;
    width: 20%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--clr-grad-end) 20%, var(--clr-grad-start));
    animation: animate-before 3s linear infinite;
    transition: 0.3s;
}

@media screen and (min-width: 1024px) {
    body>section>div:before {
        width: 10%;
    }
}

@keyframes animate-before {
    50% {
        top: 13%;
    }
}

body>section>div:after {
    content: "";
    position: absolute;
    top: 65%;
    left: -20%;
    width: 80%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--clr-grad-start) 20%, var(--clr-grad-end));
    animation: animate-after-mobile 3s linear infinite;
    transition: 0.3s;
}

@media screen and (min-width: 1024px) {
    body>section>div:after {
        top: 50%;
        width: 40%;
        animation: animate-after-desktop 3s linear infinite;
    }
}

@keyframes animate-after-mobile {
    50% {
        top: 64%;
        left: -19%;
    }
}

@keyframes animate-after-desktop {
    50% {
        top: 49%;
        left: -19%;
    }
}

body>section>div>div.home {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 2rem);
}

@media screen and (min-width: 1024px) {
    body>section>div>div.home {
        width: 50%;
    }
}

body>section>div>div.home>p:nth-child(1) {
    position: relative;
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.25rem;
    color: var(--clr-txt);
    transition: 0.3s;
}

@media screen and (min-width: 1024px) {
    body>section>div>div.home>p:nth-child(1) {
        font-size: 2rem;
    }

    body>section>div>div.home>p:nth-child(1)::after {
        width: 2.25rem;
    }
}

body>section>div>div.home>p:nth-child(1)::after {
    position: absolute;
    content: "";
    margin-left: 0.25rem;
    height: 0.25rem;
    width: 1.75rem;
    bottom: 0.5rem;
    background-color: var(--clr-grad-end);
}

body>section>div>div.home>h1 {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-txt);
    transition: 0.3s;
}

@media screen and (min-width: 1024px) {
    body>section>div>div.home>h1 {
        font-size: var(--size-heading);
    }

    body>section>div>div.home>h1::after {
        height: calc(var(--size-heading) + 1.5rem);
    }
}

body>section>div>div.home>h1::after {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 0.75rem;
    font-size: 4rem;
    width: 0.75rem;
    background-color: var(--clr-txt);
    animation: animate-fake-input 1s linear infinite;
}

@keyframes animate-fake-input {
    50% {
        opacity: 0;
    }
}

body>section>div>div.home>h1>b {
    position: relative;
    margin-left: 0.75rem;
    color: var(--clr-main);
}

body>section>div>div.home>p {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    width: 90%;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.125rem;
    color: var(--clr-txt);
    transition: 0.3s;
}

@media screen and (min-width: 1024px) {
    body>section>div>div.home>p {
        font-size: 1.25rem;
    }
}

body>section>div>div.home>div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 2.5rem;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-right: -50%;
    width: initial;
    height: initial;
    font-size: 0;
}

@media screen and (min-width: 480px) {
    body>section>div>div.home>div {
        margin-left: 4rem;
        transform: unset;
        margin-right: unset;
    }
}

body>section>div>div.home>div>a,
body>section>div>div.home>div>button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 2rem;
    padding: 0 1.5rem;
    width: initial;
    line-height: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.25rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0.5rem 1rem 0.5rem rgba(0, 0, 0, 0.4);
    border-radius: 0.25rem;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    transition: 0.3s;
}

body>section>div>div.home>div>a:nth-last-child(1),
body>section>div>div.home>div>button:nth-last-child(1) {
    margin-right: 0;
}

body>section>div>div.home>div>a:hover,
body>section>div>div.home>div>button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

body>section>div>div.home>div>a>i,
body>section>div>div.home>div>button>i {
    margin-left: 0.5rem;
    color: var(--clr-bg);
}

body>section>div>svg {
    position: absolute;
    display: block;
    top: 15%;
    right: -100%;
    width: 60%;
    max-width: 864px;
    height: auto;
    transition: 0.3s;
}

@media screen and (min-width: 800px) {
    body>section>div>svg {
        right: -30%;
        animation: animate-user-bg-tablet 4s linear infinite;
    }
}

@media screen and (min-width: 1024px) {
    body>section>div>svg {
        right: -10%;
        animation: animate-user-bg 4s linear infinite;
    }
}

@keyframes animate-user-bg-tablet {
    50% {
        right: calc(-30% - 1vh);
    }
}

@keyframes animate-user-bg {
    50% {
        right: calc(-10% - 1vh);
    }
}

body>section>div>img {
    object-fit: contain;
    position: absolute;
    display: block;
    right: 0;
    bottom: -100%;
    width: 50%;
    height: auto;
    max-height: calc(100vh - 4rem);
    transition: 0.3s;
    overflow: visible;
}

@media screen and (min-width: 1024px) {
    body>section>div>img {
        bottom: 0;
    }
}

body>section>div>div.portfolio {
    z-index: 1;
    position: relative;
    padding-bottom: var(--grid-interval);
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: scroll;
}

body>section>div>div.portfolio>ul {
    position: fixed;
    z-index: 1;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: initial;
    height: 2.25rem;
    font-size: 0;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    border-radius: 1rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul {
        position: relative;
        display: inline-block;
        margin-top: 1.5rem;
        bottom: 0;
        height: initial;
    }

    body>section>div>div.portfolio>ul>li {
        transform: unset !important;
    }
}

body>section>div>div.portfolio>ul[data-target="0"]>li {
    transform: translateY(calc(-2rem * 0));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="0"]>li:nth-child(1) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="0"]>li:nth-child(1)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="1"]>li {
    transform: translateY(calc(-2rem * 1));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="1"]>li:nth-child(2) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="1"]>li:nth-child(2)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="2"]>li {
    transform: translateY(calc(-2rem * 2));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="2"]>li:nth-child(3) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="2"]>li:nth-child(3)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="3"]>li {
    transform: translateY(calc(-2rem * 3));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="3"]>li:nth-child(4) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="3"]>li:nth-child(4)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="4"]>li {
    transform: translateY(calc(-2rem * 4));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="4"]>li:nth-child(5) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="4"]>li:nth-child(5)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="5"]>li {
    transform: translateY(calc(-2rem * 5));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="5"]>li:nth-child(6) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="5"]>li:nth-child(6)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="6"]>li {
    transform: translateY(calc(-2rem * 6));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="6"]>li:nth-child(7) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="6"]>li:nth-child(7)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="7"]>li {
    transform: translateY(calc(-2rem * 7));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="7"]>li:nth-child(8) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="7"]>li:nth-child(8)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="8"]>li {
    transform: translateY(calc(-2rem * 8));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="8"]>li:nth-child(9) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="8"]>li:nth-child(9)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="9"]>li {
    transform: translateY(calc(-2rem * 9));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="9"]>li:nth-child(10) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="9"]>li:nth-child(10)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="10"]>li {
    transform: translateY(calc(-2rem * 10));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="10"]>li:nth-child(11) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="10"]>li:nth-child(11)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="11"]>li {
    transform: translateY(calc(-2rem * 11));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="11"]>li:nth-child(12) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="11"]>li:nth-child(12)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="12"]>li {
    transform: translateY(calc(-2rem * 12));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="12"]>li:nth-child(13) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="12"]>li:nth-child(13)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="13"]>li {
    transform: translateY(calc(-2rem * 13));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="13"]>li:nth-child(14) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="13"]>li:nth-child(14)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="14"]>li {
    transform: translateY(calc(-2rem * 14));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="14"]>li:nth-child(15) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="14"]>li:nth-child(15)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="15"]>li {
    transform: translateY(calc(-2rem * 15));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="15"]>li:nth-child(16) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="15"]>li:nth-child(16)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul[data-target="16"]>li {
    transform: translateY(calc(-2rem * 16));
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul[data-target="16"]>li:nth-child(17) {
        background-color: var(--clr-txt);
        color: #fff;
    }

    body>section>div>div.portfolio>ul[data-target="16"]>li:nth-child(17)>a {
        color: inherit;
    }
}

body>section>div>div.portfolio>ul.expand {
    width: calc(100% - 2rem);
    height: initial;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

body>section>div>div.portfolio>ul.expand>li {
    padding: 0.25rem 1rem;
    transform: unset;
}

body>section>div>div.portfolio>ul.expand>li:hover {
    background-color: var(--clr-txt);
    color: var(--clr-bg);
}

body>section>div>div.portfolio>ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--clr-bg);
    opacity: 0.5;
}

body>section>div>div.portfolio>ul>li {
    position: relative;
    display: block;
    margin: 0.25rem;
    padding: 0 1rem;
    width: initial;
    line-height: 1.75rem;
    text-align: center;
    font-size: 1.125rem;
    letter-spacing: 1px;
    color: var(--clr-txt);
    border-radius: 1rem;
    cursor: pointer;
}

body>section>div>div.portfolio>ul>li * {
    pointer-events: none;
}

@media screen and (min-width: 640px) {
    body>section>div>div.portfolio>ul>li {
        display: inline-block;
        vertical-align: top;
    }
}

body>section>div>div.portfolio>div {
    position: relative;
    display: block;
    width: 100%;
    height: initial;
}

body>section>div>div.portfolio>div>a,
body>section>div>div.portfolio>div>div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: var(--grid-interval);
    margin-right: var(--grid-interval);
    width: calc((100% - var(--grid-interval)) / 2);
    aspect-ratio: var(--grid-radio);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    border-radius: var(--grid-radius);
    overflow: hidden;
    transition: 0.3s;
}

body>section>div>div.portfolio>div>a:nth-child(1),
body>section>div>div.portfolio>div>a:nth-child(2),
body>section>div>div.portfolio>div>div:nth-child(1),
body>section>div>div.portfolio>div>div:nth-child(2) {
    margin-top: calc(var(--grid-interval) + 1.5rem);
}

body>section>div>div.portfolio>div>a:nth-child(2n),
body>section>div>div.portfolio>div>div:nth-child(2n) {
    margin-right: 0;
}

body>section>div>div.portfolio>div>a:hover,
body>section>div>div.portfolio>div>div:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

body>section>div>div.portfolio>div>a:hover>img,
body>section>div>div.portfolio>div>div:hover>img {
    transform: translateY(-100px);
}

body>section>div>div.portfolio>div>a:hover>ul,
body>section>div>div.portfolio>div>div:hover>ul {
    opacity: 1;
}

@media screen and (min-width: 640px) {

    body>section>div>div.portfolio>div>a,
    body>section>div>div.portfolio>div>div {
        width: calc((100% - var(--grid-interval) * 2) / 3);
    }

    body>section>div>div.portfolio>div>a:nth-child(1),
    body>section>div>div.portfolio>div>a:nth-child(2),
    body>section>div>div.portfolio>div>a:nth-child(3),
    body>section>div>div.portfolio>div>div:nth-child(1),
    body>section>div>div.portfolio>div>div:nth-child(2),
    body>section>div>div.portfolio>div>div:nth-child(3) {
        margin-top: calc(var(--grid-interval) + 1.5rem);
    }

    body>section>div>div.portfolio>div>a:nth-child(2n),
    body>section>div>div.portfolio>div>div:nth-child(2n) {
        margin-right: var(--grid-interval);
    }

    body>section>div>div.portfolio>div>a:nth-child(3n),
    body>section>div>div.portfolio>div>div:nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 960px) {

    body>section>div>div.portfolio>div>a,
    body>section>div>div.portfolio>div>div {
        width: calc((100% - var(--grid-interval) * 3) / 4);
    }

    body>section>div>div.portfolio>div>a:nth-child(1),
    body>section>div>div.portfolio>div>a:nth-child(2),
    body>section>div>div.portfolio>div>a:nth-child(3),
    body>section>div>div.portfolio>div>a:nth-child(4),
    body>section>div>div.portfolio>div>div:nth-child(1),
    body>section>div>div.portfolio>div>div:nth-child(2),
    body>section>div>div.portfolio>div>div:nth-child(3),
    body>section>div>div.portfolio>div>div:nth-child(4) {
        margin-top: calc(var(--grid-interval) + 1.5rem);
    }

    body>section>div>div.portfolio>div>a:nth-child(3n),
    body>section>div>div.portfolio>div>div:nth-child(3n) {
        margin-right: var(--grid-interval);
    }

    body>section>div>div.portfolio>div>a:nth-child(4n),
    body>section>div>div.portfolio>div>div:nth-child(4n) {
        margin-right: 0;
    }
}

body>section>div>div.portfolio>div>a>img,
body>section>div>div.portfolio>div>div>img {
    z-index: 1;
    object-fit: cover;
    position: relative;
    width: 100%;
    aspect-ratio: var(--grid-radio);
    transition: 0.3s;
}

body>section>div>div.portfolio>div>a>ul,
body>section>div>div.portfolio>div>div>ul {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    font-size: 0;
    opacity: 0;
    transition: 0.3s;
}

body>section>div>div.portfolio>div>a>ul>li,
body>section>div>div.portfolio>div>div>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 1rem;
    line-height: 100px;
    font-size: 1rem;
}

body>section>div>div.portfolio>div>a>ul>li>a,
body>section>div>div.portfolio>div>a>ul>li>button,
body>section>div>div.portfolio>div>div>ul>li>a,
body>section>div>div.portfolio>div>div>ul>li>button {
    font-weight: 500;
    letter-spacing: 0.125rem;
    color: #fff;
}

body>section>div>div.portfolio>div>a>ul>li>a *,
body>section>div>div.portfolio>div>a>ul>li>button *,
body>section>div>div.portfolio>div>div>ul>li>a *,
body>section>div>div.portfolio>div>div>ul>li>button * {
    pointer-events: none;
}

body>section>div>div.portfolio>div>a>ul>li>a>i,
body>section>div>div.portfolio>div>a>ul>li>button>i,
body>section>div>div.portfolio>div>div>ul>li>a>i,
body>section>div>div.portfolio>div>div>ul>li>button>i {
    margin-right: 0.75rem;
    color: #fff;
}

body>section>div>div.about {
    z-index: 1;
    position: relative;
    padding-bottom: var(--grid-interval);
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: scroll;
}

body>section>div>div.about>div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--clr-bg);
    opacity: 0.5;
}

body>section>div>div.about>div.block {
    position: relative;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem 2rem;
    width: calc(100% - 1rem);
    height: initial;
    font-size: 0;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    border-radius: var(--grid-radius);
    overflow: hidden;
    transition: 0.3s;
}

body>section>div>div.about>div.block:nth-child(1) {
    margin-top: 2.5rem;
}

@media screen and (min-width: 800px) {
    body>section>div>div.about>div.block:nth-child(1) {
        margin-top: 6.25rem;
    }
}

@media screen and (min-width: 800px) {
    body>section>div>div.about>div.block {
        width: 50%;
    }
}

body>section>div>div.about>div.block>ul {
    position: relative;
    display: block;
    width: 100%;
    height: initial;
}

body>section>div>div.about>div.block>ul.list-skill>h2 {
    position: relative;
    display: block;
    width: 100%;
    height: initial;
    font-size: 1.375rem;
    letter-spacing: 1px;
    text-align: center;
    color: var(--clr-txt);
}

body>section>div>div.about>div.block>ul.list-skill>h6 {
    position: relative;
    display: block;
    margin-top: 2rem;
    width: 100%;
    height: initial;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--clr-txt);
}

body>section>div>div.about>div.block>ul.list-skill>h6:nth-child(2) {
    margin-top: 1rem;
}

body>section>div>div.about>div.block>ul.list-skill>li {
    position: relative;
    display: block;
    margin-top: 1.25rem;
    width: 100%;
    height: initial;
}

body>section>div>div.about>div.block>ul.list-skill>li::before {
    content: attr(tag);
    position: relative;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--clr-txt);
}

body>section>div>div.about>div.block>ul.list-skill>li>div {
    position: relative;
    display: block;
    margin-top: 0.5rem;
    width: 100%;
    height: 0.5rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

body>section>div>div.about>div.block>ul.list-skill>li>div::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    margin-right: -50%;
    transform: translateX(-50%);
    line-height: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--clr-txt);
    animation: animate-skill-hint 0.3s linear;
}

body>section>div>div.about>div.block>ul.list-skill>li>div::after {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: 0.5rem;
    background-color: var(--clr-main);
    border-radius: 0.25rem;
    animation: animate-skill 0.3s linear;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="0"]::before {
    left: 0%;
    content: "0年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="0"]::after {
    width: 0%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="1"]::before {
    left: 10%;
    content: "1年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="1"]::after {
    width: 10%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="2"]::before {
    left: 20%;
    content: "2年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="2"]::after {
    width: 20%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="3"]::before {
    left: 30%;
    content: "3年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="3"]::after {
    width: 30%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="4"]::before {
    left: 40%;
    content: "4年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="4"]::after {
    width: 40%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="5"]::before {
    left: 50%;
    content: "5年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="5"]::after {
    width: 50%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="6"]::before {
    left: 60%;
    content: "6年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="6"]::after {
    width: 60%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="7"]::before {
    left: 70%;
    content: "7年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="7"]::after {
    width: 70%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="8"]::before {
    left: 80%;
    content: "8年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="8"]::after {
    width: 80%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="9"]::before {
    left: 90%;
    content: "9年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="9"]::after {
    width: 90%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="10"]::before {
    left: 100%;
    content: "10年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="10"]::after {
    width: 100%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="11"]::before {
    left: 100%;
    content: "11年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="11"]::after {
    width: 110%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="12"]::before {
    left: 100%;
    content: "12年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="12"]::after {
    width: 120%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="13"]::before {
    left: 100%;
    content: "13年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="13"]::after {
    width: 130%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="14"]::before {
    left: 100%;
    content: "14年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="14"]::after {
    width: 140%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="15"]::before {
    left: 100%;
    content: "15年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="15"]::after {
    width: 150%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="16"]::before {
    left: 100%;
    content: "16年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="16"]::after {
    width: 160%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="17"]::before {
    left: 100%;
    content: "17年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="17"]::after {
    width: 170%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="18"]::before {
    left: 100%;
    content: "18年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="18"]::after {
    width: 180%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="19"]::before {
    left: 100%;
    content: "19年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="19"]::after {
    width: 190%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="20"]::before {
    left: 100%;
    content: "20年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="20"]::after {
    width: 200%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="21"]::before {
    left: 100%;
    content: "21年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="21"]::after {
    width: 210%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="22"]::before {
    left: 100%;
    content: "22年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="22"]::after {
    width: 220%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="23"]::before {
    left: 100%;
    content: "23年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="23"]::after {
    width: 230%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="24"]::before {
    left: 100%;
    content: "24年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="24"]::after {
    width: 240%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="25"]::before {
    left: 100%;
    content: "25年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="25"]::after {
    width: 250%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="26"]::before {
    left: 100%;
    content: "26年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="26"]::after {
    width: 260%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="27"]::before {
    left: 100%;
    content: "27年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="27"]::after {
    width: 270%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="28"]::before {
    left: 100%;
    content: "28年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="28"]::after {
    width: 280%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="29"]::before {
    left: 100%;
    content: "29年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="29"]::after {
    width: 290%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="30"]::before {
    left: 100%;
    content: "30年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="30"]::after {
    width: 300%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="31"]::before {
    left: 100%;
    content: "31年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="31"]::after {
    width: 310%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="32"]::before {
    left: 100%;
    content: "32年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="32"]::after {
    width: 320%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="33"]::before {
    left: 100%;
    content: "33年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="33"]::after {
    width: 330%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="34"]::before {
    left: 100%;
    content: "34年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="34"]::after {
    width: 340%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="35"]::before {
    left: 100%;
    content: "35年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="35"]::after {
    width: 350%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="36"]::before {
    left: 100%;
    content: "36年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="36"]::after {
    width: 360%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="37"]::before {
    left: 100%;
    content: "37年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="37"]::after {
    width: 370%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="38"]::before {
    left: 100%;
    content: "38年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="38"]::after {
    width: 380%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="39"]::before {
    left: 100%;
    content: "39年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="39"]::after {
    width: 390%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="40"]::before {
    left: 100%;
    content: "40年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="40"]::after {
    width: 400%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="41"]::before {
    left: 100%;
    content: "41年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="41"]::after {
    width: 410%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="42"]::before {
    left: 100%;
    content: "42年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="42"]::after {
    width: 420%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="43"]::before {
    left: 100%;
    content: "43年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="43"]::after {
    width: 430%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="44"]::before {
    left: 100%;
    content: "44年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="44"]::after {
    width: 440%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="45"]::before {
    left: 100%;
    content: "45年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="45"]::after {
    width: 450%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="46"]::before {
    left: 100%;
    content: "46年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="46"]::after {
    width: 460%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="47"]::before {
    left: 100%;
    content: "47年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="47"]::after {
    width: 470%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="48"]::before {
    left: 100%;
    content: "48年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="48"]::after {
    width: 480%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="49"]::before {
    left: 100%;
    content: "49年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="49"]::after {
    width: 490%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="50"]::before {
    left: 100%;
    content: "50年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="50"]::after {
    width: 500%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="51"]::before {
    left: 100%;
    content: "51年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="51"]::after {
    width: 510%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="52"]::before {
    left: 100%;
    content: "52年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="52"]::after {
    width: 520%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="53"]::before {
    left: 100%;
    content: "53年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="53"]::after {
    width: 530%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="54"]::before {
    left: 100%;
    content: "54年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="54"]::after {
    width: 540%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="55"]::before {
    left: 100%;
    content: "55年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="55"]::after {
    width: 550%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="56"]::before {
    left: 100%;
    content: "56年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="56"]::after {
    width: 560%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="57"]::before {
    left: 100%;
    content: "57年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="57"]::after {
    width: 570%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="58"]::before {
    left: 100%;
    content: "58年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="58"]::after {
    width: 580%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="59"]::before {
    left: 100%;
    content: "59年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="59"]::after {
    width: 590%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="60"]::before {
    left: 100%;
    content: "60年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="60"]::after {
    width: 600%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="61"]::before {
    left: 100%;
    content: "61年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="61"]::after {
    width: 610%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="62"]::before {
    left: 100%;
    content: "62年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="62"]::after {
    width: 620%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="63"]::before {
    left: 100%;
    content: "63年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="63"]::after {
    width: 630%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="64"]::before {
    left: 100%;
    content: "64年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="64"]::after {
    width: 640%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="65"]::before {
    left: 100%;
    content: "65年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="65"]::after {
    width: 650%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="66"]::before {
    left: 100%;
    content: "66年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="66"]::after {
    width: 660%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="67"]::before {
    left: 100%;
    content: "67年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="67"]::after {
    width: 670%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="68"]::before {
    left: 100%;
    content: "68年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="68"]::after {
    width: 680%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="69"]::before {
    left: 100%;
    content: "69年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="69"]::after {
    width: 690%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="70"]::before {
    left: 100%;
    content: "70年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="70"]::after {
    width: 700%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="71"]::before {
    left: 100%;
    content: "71年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="71"]::after {
    width: 710%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="72"]::before {
    left: 100%;
    content: "72年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="72"]::after {
    width: 720%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="73"]::before {
    left: 100%;
    content: "73年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="73"]::after {
    width: 730%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="74"]::before {
    left: 100%;
    content: "74年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="74"]::after {
    width: 740%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="75"]::before {
    left: 100%;
    content: "75年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="75"]::after {
    width: 750%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="76"]::before {
    left: 100%;
    content: "76年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="76"]::after {
    width: 760%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="77"]::before {
    left: 100%;
    content: "77年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="77"]::after {
    width: 770%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="78"]::before {
    left: 100%;
    content: "78年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="78"]::after {
    width: 780%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="79"]::before {
    left: 100%;
    content: "79年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="79"]::after {
    width: 790%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="80"]::before {
    left: 100%;
    content: "80年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="80"]::after {
    width: 800%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="81"]::before {
    left: 100%;
    content: "81年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="81"]::after {
    width: 810%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="82"]::before {
    left: 100%;
    content: "82年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="82"]::after {
    width: 820%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="83"]::before {
    left: 100%;
    content: "83年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="83"]::after {
    width: 830%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="84"]::before {
    left: 100%;
    content: "84年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="84"]::after {
    width: 840%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="85"]::before {
    left: 100%;
    content: "85年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="85"]::after {
    width: 850%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="86"]::before {
    left: 100%;
    content: "86年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="86"]::after {
    width: 860%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="87"]::before {
    left: 100%;
    content: "87年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="87"]::after {
    width: 870%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="88"]::before {
    left: 100%;
    content: "88年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="88"]::after {
    width: 880%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="89"]::before {
    left: 100%;
    content: "89年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="89"]::after {
    width: 890%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="90"]::before {
    left: 100%;
    content: "90年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="90"]::after {
    width: 900%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="91"]::before {
    left: 100%;
    content: "91年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="91"]::after {
    width: 910%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="92"]::before {
    left: 100%;
    content: "92年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="92"]::after {
    width: 920%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="93"]::before {
    left: 100%;
    content: "93年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="93"]::after {
    width: 930%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="94"]::before {
    left: 100%;
    content: "94年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="94"]::after {
    width: 940%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="95"]::before {
    left: 100%;
    content: "95年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="95"]::after {
    width: 950%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="96"]::before {
    left: 100%;
    content: "96年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="96"]::after {
    width: 960%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="97"]::before {
    left: 100%;
    content: "97年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="97"]::after {
    width: 970%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="98"]::before {
    left: 100%;
    content: "98年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="98"]::after {
    width: 980%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="99"]::before {
    left: 100%;
    content: "99年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="99"]::after {
    width: 990%;
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="100"]::before {
    left: 100%;
    content: "100年";
}

body>section>div>div.about>div.block>ul.list-skill>li>div[year="100"]::after {
    width: 1000%;
}

@keyframes animate-skill {
    0% {
        width: 0;
    }
}

@keyframes animate-skill-hint {
    0% {
        left: 0;
        opacity: 0;
    }
}

body>section>div>div.about>div.block>ul.list-link>h2 {
    position: relative;
    display: block;
    width: 100%;
    height: initial;
    font-size: 1.375rem;
    letter-spacing: 1px;
    text-align: center;
    color: var(--clr-txt);
}

body>section>div>div.about>div.block>ul.list-link>li {
    position: relative;
    display: block;
    margin-top: 1.25rem;
    width: 100%;
    height: initial;
}

body>section>div>div.about>div.block>ul.list-link>li:nth-child(1) {
    margin-top: 0;
}

body>section>div>div.about>div.block>ul.list-link>li>a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

body>section>div>div.about>div.block>ul.list-link>li>a>img {
    object-fit: cover;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.25rem;
    background-color: rgba(0, 0, 0, 0.1);
}

body>section>div>div.about>div.block>ul.list-link>li>a>p {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 3.75rem);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-txt);
}

body>section>div>div.about>div.comment {
    position: relative;
    margin-top: 1.5rem;
    width: 100%;
    height: 200px;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    border-radius: var(--grid-radius);
    overflow: hidden;
}

@media screen and (min-width: 800px) {
    body>section>div>div.about>div.comment {
        position: fixed;
        top: 11.25rem;
        left: calc(50% + 1rem);
        margin-top: unset;
        width: calc(50% - 3rem);
    }
}