.om-profile-image {
    width: 100%;
}

.om-profile-left-wrapper,
.om-intro-body-sm {
    background-color: rgba(253, 242, 212, 1);
    color: rgb(213, 50, 43);
    margin-top: 10px;
}

.container {
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "游明朝", YuMincho, "MS PMincho", "MS Mincho", serif;

}

.om-intro-body {
    line-height: 2.3;
    padding-top: 30px;
    padding-right: 10px;
    padding-bottom: 30px;
    padding-left: 10px;
}

.om-intro-top {

    font-size: xx-large;
    display: flex;
    margin-bottom: 20px
}

.odo {
    width: 65px !important;
    height: 65px !important;
    justify-content: center;
    text-align: center;
    color: rgba(253, 242, 212, 1);
    background-color: rgb(213, 50, 43);
}

.title-text {
    display: flex;
    width: 60px !important;
    height: 60px !important;
    justify-content: center;
}

.title-text2 {
    justify-content: center;
    text-align: center;
}

.odo-sm {
    width: 60px !important;
    height: 60px !important;
    justify-content: center;
    text-align: center;
    color: rgba(253, 242, 212, 1);
    background-color: rgb(213, 50, 43);
}

.title-text-sm {
    width: 50px !important;
    height: 50px !important;
    text-align: center;
    align-items: center;
}

.year{
    padding-top:8px;
}
.history-contents{
    padding-top:8px;
}


/* Animations */
/* フェードインアニメーションの定義 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
        /* 下から上に移動 */
    }

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

/* フェードイン効果を持つ要素 */
.om-profile-image {
    opacity: 0;
    /* 初期状態は透明 */
    animation: fadeIn 2s ease-in forwards;
    /* 2秒かけてフェードイン */
}

/* テキスト関係のアニメーション定義 */
@keyframes textBoxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* テキスト関係のアニメーション定義 */
@keyframes textBoxFadeIn2 {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}



.om-profile-left-wrapper,
.om-intro-body-sm {
    width: 0%;
    opacity: 1;
    animation: textBoxFadeIn2 1s ease-in forwards;
    animation-delay: 1s;
}

.om-intro-top {
    opacity: 0;
    animation: textBoxFadeIn 1s ease-in forwards;
    animation-delay: 3s;
}

.intro-text {
    opacity: 0;
    animation: textBoxFadeIn 1s ease-in forwards;
    animation-delay: 4s;
    color: rgb(0, 0, 0);

}
strong{
    font-size:1.2rem;
    font-weight:bold;
}



/* メディアクエリ */
/* -576px */
@media (max-width:992px) {

    .om-profile-right,
    .om-profile-image {
        object-fit: contain !important;
    }

    .om-profile-left {
        display: none;
    }

    .om-intro-body-sm {
        margin: 15px;
        line-height: 1.5;
        padding-top: 30px;
        padding-right: 10px;
        padding-bottom: 30px;
        padding-left: 10px;
    }
    .om-history-lg {
        background-color: rgba(253, 242, 212, 1);
        width:90%;
        margin-left:28px;
        margin-right:34px;
        padding-left:12px;
        padding-right:12px;
        line-height: 2;


    
    }

    .year{
        background-color: rgb(255, 152, 152);
        font-weight:bold;
    }
    
    .history-contents{
        margin-bottom:40px;
    }

}

/* 576px- */
@media (min-width:993px) {

    .om-profile-right,
    .om-profile-image {
        object-fit: contain !important;
    }

    .om-intro-body-sm {
        display: none;
    }

    .om-history-lg {
        background-color: rgba(253, 242, 212, 1);
        margin: 12px;
        padding: 12px;
        line-height: 1.5;

    
    }

}