
/*共通*/
.leaf_title {
    display: flex;
    margin: 10px 0px 10px 0px;
}

.leaf_title_title {
    font-size: 20px;
    color: #2c2c2f;
    background: #cde4ff;
    border-top: solid 2px #5989cf;
    border-bottom: solid 2px #5989cf;
    padding: 2px 6px;
    margin-bottom: 5px;
}

.description_body {
    margin-left: 1%;
}

.title_description {
    margin-left: 1%;
}

.tables_wrapper {
    display: flex;
    gap: 20px;
}

.table_detail {
    width: 80%;
    margin: 20px 0px 20px 0px;
}

.table_detail th {
    text-align: center;
    width: 20%;
    background-color: rgb(154, 193, 198);
}

.table_detail td {
    padding-left: 1%;
}

.emphasis {
    color:red;
}


/*葉序*/
.table_phyllotaxy {
    text-align: center;
    width: 90%;
    margin: 20px 0px 20px 0px;
}

.table_false {
    text-align: center;
    width: 60%;
    margin: 20px 0px 20px 0px;
}

.phyllotaxy {
    width: 200px;
}

.who_false {
    width: 250px;
}

@media screen and (max-width: 768px) {
    .phyllotaxy {
        width: 50px;
    }
    .who_false {
        width: 75px;
    }   
}


/*単葉/複葉*/
.table_mono {
    text-align: center;
    width: 60%;
    margin: 20px 0px 20px 0px;
}

.mono1 {
    width: 150px;
}

.mono2 {
    width: 200px;
}

.mono3 {
    width: 250px;
}

@media screen and (max-width: 768px) {
    .mono1 {
        width: 50px;
    }
    .mono2 {
        width: 75px;
    }
    .mono3 {
        width: 100px;
    }
}


/*鋸歯*/
.table_serrate {
    text-align: center;
    width: 80%;
    margin: 20px 0px 20px 0px;
}

.serrate1 {
    width: 200px;
}

.serrate2 {
    width: 250px;
}

.serrate3 {
    width: 300px;
}

@media screen and (max-width: 768px) {
    .serrate1 {
        width: 50px;
    }
    .serrate2 {
        width: 75px;
    }
    .serrate3 {
        width: 100px;
    }
}

/*葉脈*/
.table_venation {
    text-align: center;
    width: 80%;
    margin: 20px 0px 20px 0px;
}

.venation1 {
    width: 200px;
}

.venation2 {
    width: 250px;
}

@media screen and (max-width: 768px) {
    .venation1 {
        width: 50px;
    }
    .venation2 {
        width: 75px;
    }
}

#modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 15, 15, 0.8); /* 背景色 */
    opacity: 0; /* 初期状態では透明 */
    visibility: hidden; /* 初期状態では不可視 */
    transition: opacity 0.5s, visibility 0.5s; /* アニメーション効果 */
}

.modal_img {
    display: block;
    width: 100px;
}

#close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #modal_img {
        width: 200px;
    }
}
