.top-text {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    letter-spacing: 3px;
    text-align: center;
}

.inner {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #CDCDCD;
    flex-direction: column;
    padding: 40px;
}

h3 {
    color: #664F33;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.inner p {
    line-height: 1.8;
    margin-bottom: 40px;
}

.inner p:last-of-type {
    margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {}


/*/////////////////////レスポンシブ////////////////////////////*/

@media screen and (max-width: 1000px) {}

@media screen and (max-width: 820px) {}

@media screen and (max-width: 600px) {
    .top-text {
        text-align: left;
    }
    .inner {
        padding: 40px 20px;
    }
    h3 {
        margin-bottom: 5px;
    }
}