.about-content{
    background-color: #EEEDE5;
}

h3 {
    font-size: 24px;
    text-align: center;
    padding: 90px;
    color: black;
    font-family: 'Lora', serif;
}

.logo_policy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
    margin-left: 20px; 
}

.logo_policy p, .logo_policy h4 {
    text-align: center; 
    width: 100%; 
    font-family: 'Lora', serif; 
}

.header__logo {
    max-width: 100%; 
    height: auto; 
}

.about-primary {
    display: flex;
    flex-direction: column; 
    gap: 60px;
    width: 80%; 
    margin: 0 auto;
    align-items: center;
}

.view-more {
    display: flex;
    flex-direction: row;
    gap: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center; 
}

.view-more p {
    flex: 1;
    max-width: 430px;
    word-wrap: break-word; 
    font-family: 'Lora', serif;
    line-height: 1.5;
}

.view__photo {
    width: 400px; 
    height: 400px;
    object-fit: cover; 
    flex: 1; 
}

.button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color:  #805603;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

.return-btn {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    margin-top: 160px; 
    padding-bottom: 160px;
}

/* スマートフォン版のスタイル */
@media (max-width: 600px) {
    .logo_policy {
        h4{
            font-size: 12px;
        }
        width: 100px;
    }
    h3 {
        font-size: 18px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    p {
        font-size: 12px;
    }
    .about-primary{
        gap: 30px;
    }
    .view-more {
        flex-direction: column;
        gap: 30px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .view-more p {
        order: 1;
    }

    .view__photo {
        order: 2; 
        width: 80vw;
        height: auto; 
        max-width: 100%;
    }

    .return-btn {
        margin-top: 60px; 
        padding-bottom: 30px;
    }
}
