/* Profile page content styles */
/*画面サイズに合わせた変更*/
@media only screen and (min-width: 800px) {
    .card-text p{
        font-size: 0.8rem;
    }
}
@media only screen and (min-width: 1200px) {
    .card-text p{
        font-size: 1rem;
    }
}
@media only screen and (min-width: 800px) {
    div.content {
        max-width: 100%;
    }
    .border-circle-left {
        border-end-start-radius: 300px;
        border-end-end-radius: 100px;
        border-start-end-radius: 100px;
        border-start-start-radius: 300px;
    }
    .border-circle-right {
        border-end-start-radius: 100px;
        border-end-end-radius: 300px;
        border-start-end-radius: 300px;
        border-start-start-radius: 100px;
    }
    .img-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        position: relative;
        padding: 20px;
        border-radius: 50px;
        background: white;
        box-shadow: 0px 8px 16px rgba(248, 237, 235, 0.9);
        margin-left: 20%;
    }
    .img-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        position: relative;
        padding: 20px;
        border-radius: 50px;
        background: white;
        box-shadow: 0px 8px 16px rgba(248, 237, 235, 0.9);
        margin-right: 20%;
    }
}
@media only screen and (max-width: 800px) {
    div.content {
        max-width: 100%;
    }
    .border-circle-left {
        border-end-start-radius: 50px;
        border-end-end-radius: 10px;
        border-start-end-radius: 50px;
        border-start-start-radius: 10px;
    }
    .border-circle-right {
        border-end-start-radius: 10px;
        border-end-end-radius: 50px;
        border-start-end-radius: 10px;
        border-start-start-radius: 50px;
    }
    .img-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
        padding: 10px;
        border-radius: 20px;
        background: white;
        box-shadow: 0px 8px 16px rgba(248, 237, 235, 0.9);
        margin: auto;
    }
    .img-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
        padding: 10px;
        border-radius: 20px;
        background: white;
        box-shadow: 0px 8px 16px rgba(248, 237, 235, 0.9);
        margin: auto;
    }
}
.content-wrapper {
    padding-top: 0;
}
.content-wrapper>.content {
    padding: 0 .5rem;
    margin: 0 auto;
} 
.body-all {
    padding-top: 5%;
    display: flex;
    justify-content: space-around;
}
.profile-top {
    text-align: center;
    align-items: center;
}
.profile-img img {
    max-width: 350px;
    max-height: 350px;
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

/* Profile page card styles */
/* Home page list styles */

.post-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}
.post-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 0.8rem 0rem;
}
.post-content {
    margin: 5px 0;
    color: #7b726f;
    clear: both;
}
.post-text:last-child {
    margin-bottom: 0;
}
/* Home page banner styles */
.btn-outline-amimono {
    border: 2px solid #D2691E; /* 縫い目風のボーダー */
    color: #8B4513;
    background-color: transparent;
    font-weight: bold;
}
.btn-outline-amimono:hover {
    background-color: #D2691E;
    color: white;
}
.middle-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
}
.col-md-20p {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 7.5px;
}
/* Hover card styles */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px dashed #D2691E; /* 縫い目風のボーダー */
}
.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}