body.page-template-page-about {
    background-image: url('/wp-content/themes/my-custom-theme/images/22584528.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

#about {
    text-align: center; /* テキストを中央揃え */
    max-width: 600px;
    width: 90%;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 子要素を中央に */
}

#about img {
    display: block;
    margin: 0 auto;
}

#about h1 {
   position: absolute; /*   Δz u   w   */
    top: 10px; /*  ォ  ̋      w   */
    left: 10px; /*       ̋      w   */
    margin: 0;
    font-size: 2.5em;
    text-align: left; /*  e L X g         ɂ    */
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.about-image:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
