.family-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    padding: 50px;
    background-image: url('../img/top/about.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    font-family: "ten-mincho-antique", sans-serif;
}
.family-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}
.family-text {
  flex: 1;
  z-index: 1;
}
.family-text > *{
  color: #FFFFFF;
}
.family-text h2.family-heading .family-subheading {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03rem;
    margin-bottom: 10px;
}
.family-text h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    margin-bottom: 120px;
}
.family-bottom-text {

}
.family-text .family-lead {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.05rem;
    margin-top: 0;
    margin-bottom: 30px;
}
.family-content{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    margin-top: 0;
    margin-bottom: 30px;
}
.family-text .family-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: white;
    padding: 0 0 20px;
    border-radius: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid #FFFFFF;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
}

@media(max-width: 991px){
    .family-section {
        margin: 0 auto;
        border-radius: 20px;
        padding: 60px 20px 30px;
    }
    .family-text h2 {
        font-size: 28px;
    }
    .family-text .family-lead {
        font-size: 20px;
    }
    .family-section{
        width: calc(100% - 40px);
    }
}