#wrapper-contents h5 {
    font-family: "Shrikhand", sans-serif;
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    margin-bottom: 0.5rem;
}
#wrapper-contents svg {
    height: auto;
    width: 8.5rem;
    max-height: 2.5rem;
    vertical-align: middle;
    fill: currentColor;
}
#wrapper-contents svg.common-boundary {
    width: 100%;
    margin: calc(var(--gap) * 2) 0;
}

#wrapper-contents ul li.li-boundary:last-child {
    display: none;
}
li.li-boundary {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#wrapper-contents li.li-date {
    font-size: 0.9rem;
    opacity: .7;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
}
#wrapper-contents li {
    font-weight: 300;
    line-height: 1.3;
}
.about-title {
    position: absolute;
    width: 100%;
    max-width: var(--contents-max-width);
    top: calc(50% - 3.5rem);
    text-align: center;
    font-size: 7rem;
    margin: 0;
    padding: 0 var(--padding);
}

.about-title div {
    width: 100%;
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px);
}

body.contents-loaded .about-title div {
    animation: about-title-animation 1.5s var(--easing-fast) forwards;
    animation-delay: .1s;
}

.about-title.outline {
    -webkit-text-stroke: 1px var(--color-text);
    color: transparent;
}

@keyframes about-title-animation {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


#about-img {
    position: absolute;
    width: 100%;
    max-width: var(--contents-max-width);
    display: flex;
    align-items: start;
    justify-content: center;
    height: 50vh;
    opacity: 0;
    transform: scale(1.9) translateY(20px);
    transform-origin: center;
}

body.contents-loaded #about-img {
    animation: about-img-animation 2s var(--easing-fast) forwards;
    animation-delay: .5s;
}

@keyframes about-img-animation {
    0% {
        opacity: 0;
        transform: scale(1.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-img-me {
    position: relative;
    margin-top: calc(var(--header-height) + var(--padding));
    height: 100%;
}

@media (prefers-color-scheme: dark) {
    .about-img-me:nth-child(1) {
        display: none;
    }

    .about-img-me:nth-child(2) {
        display: block;
    }
}

@media (prefers-color-scheme: light) {
    .about-img-me:nth-child(1) {
        display: block;
    }

    .about-img-me:nth-child(2) {
        display: none;
    }
}

[data-theme="dark"] .about-img-me:nth-child(1) {
    display: none;
}

[data-theme="dark"] .about-img-me:nth-child(2) {
    display: block;
}

[data-theme="light"] .about-img-me:nth-child(1) {
    display: block;
}

[data-theme="light"] .about-img-me:nth-child(2) {
    display: none;
}

#contents-contents {
    text-align: center;
}

#contents-contents h1 {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: inherit;
}

#contents-contents h3 {
    font-size: 1rem;
}