.fv{
    background-image: url(../images/plants-images/taku_25312050_TP_V.jpg);
    background-size: cover;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3em;
    .contents{
        color: white;
        background-color: rgba(0,0,0,0.35);
        display: flex;
        flex-direction: row-reverse;
        align-items: end;
        padding: 1em clamp(10px,2vw,20px);
        border-radius: clamp(5px, 1vw, 10px);
        .title{
            height: 100%;
            max-height: 400px;
            font-size: clamp(20px,5vw,30px);
            font-weight: 400;
        }
    }
}
.about{
    padding: clamp(24px,3vw,48px) clamp(24px,3vw,36px);
    .container{
        max-width: var(--container-size);
        margin-left: auto;
        margin-right: auto;
    }
    .contents{
        .content{
            p{
                margin: 0;
                padding: 0;
            }
        }
    }
    .sign{
        text-align: right;
    }
}
aside{
    .content{
        margin-bottom: clamp(10px,2vw,20px);
        p{
            line-height: 1.5;
        }
    }
}
.contents-area-02{
    margin-top: clamp(20px,4vw,40px);
    background-color: rgb(239, 253, 236);
    border-radius: clamp(10px,2vw,20px);
    padding: clamp(20px,2.5vw,30px) clamp(20px,3.5vw,40px);
    .sub-container{
    }
    h2{
        padding-top: 0;
        margin-top: 0;
        margin-bottom: clamp(20px,3vw,30px);
    }
}
.design-lists {
    list-style: none; /* デフォルトの黒丸を消す */
    padding-left: 0;
  }
  
  .design-lists li {
    position: relative;
    padding-left: 1.5em; /* テキストを少し右にずらす */
    margin-bottom: 1.4em; /* リスト同士の余白 */
  }
  
  .design-lists li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 0.6em;
    height: 0.6em;
    background-color: var(--primary-color); /* 緑色 */
    border-radius: 50%;
  }
