
.kyouju-all{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.pro-kyou{
    display: flex;
    justify-content: center ;
    align-items: center;
}
.profile{
    margin-right: 100px;
}
.profile h1{
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: rgb(48, 87, 87);
}
.profile a{
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 150px;
    color: rgb(197, 41, 41);
}
.kyouju-img{
    margin-top: 20px;
    animation: fadeup 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    width: 200px;
}
.kyouju-img img{
    width: 100%;
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
@keyframes fadeup {
    0% {
    transform: translateY(30px);
    opacity: 0;
    }
    80% {
    opacity: 1;
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
}
table{
    width: 70%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
table th {/*table内のthに対して*/
    width: 7%;
    padding: 10px;/*上下左右10pxずつ*/
    background-color: rgb(180, 169, 154);
    border: solid 1px black;/*実線 1px 黒*/
}

table td {/*table内のtdに対して*/
    width: 63%;
    padding: 5px 10px;/*上下3pxで左右10px*/
    background-color: rgb(235, 239, 241);
    border: solid 1px black;/*実線 1px 黒*/
    
}
.lh-l{
    margin-bottom: 10px;
}

.ronbunlink{
    display: flex;
    justify-content: center ;
    margin-bottom: 10px;
}



.link-kyou{
    /*ボタンの形状*/
    display: flex;
    justify-content: center;
    color: #fff;
    padding: 18px 60px;
    text-decoration: none;
    outline: none;
    /*背景色*/
    background: linear-gradient(to right, #44ea76 0%, #39fad7 80%, #39fad7 100%);
    /*アニメーションの指定*/ 
    transition: all 0.3s ease-out;
}
.link-kyou:hover{
    transform: scale(1.05);
    /*ボックスの影*/  
    box-shadow: 0 15px 15px rgba(57,250,215,0.4);
}
@media screen and (max-width:768px){
    .pro-kyou{
        display: flex;
        flex-direction: column;
    }
}
