:root {
    --table-cell-border-color: #ffb719;
}



.textContent{
    ul{
        li{
            margin: 0 0 0.5em;
            list-style: disc;
        }

        @media screen and (max-width:630px) {
            &{
                margin: 0 15px;
            }
            
        }

    }

    .content{
        display: flex;
        gap: 10px;
        margin: 0.5em 0 0;

        &.photoBottom{
            flex-direction: column;

            .photo{
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 15px;

                @media screen and (max-width: 600px) {
                    &{
                        grid-template-columns: 1fr 1fr;
                    }
                }
            }
        }

        .photo{
            flex: 1;

            img{
                border-radius: 15px;
                width: 100%;
                height: auto;
                aspect-ratio: 4 / 3;
            }

            figcaption{
                margin: 5px 0 0;
                font-size: 14px;

                @media screen and (max-width: 600px) {
                    font-size: 12px;
                }
                
                &.center{
                    text-align: center;
                }
            }
        }
    }





    

    table{
        width: 100%;

        font-family: "Zen Maru Gothic", serif;
        font-weight: 400;
        font-style: normal;

        @media screen and (max-width:530px) {
            padding: 2px;
        }

        thead{
            th{
                font-size: 22px;
                line-height: 1;
                padding: 1em 0 1.5em;
                border-left: 3px dotted var(--table-cell-border-color);
                border-bottom: 3px dotted var(--table-cell-border-color);

                @media screen and (max-width:530px) {
                    padding: 1em;
                }

                &:first-child{
                    border: none;
                    border-bottom: 3px dotted var(--table-cell-border-color);
                }
            }

            
        }

        tbody{
            th, td{
                padding: 1em 1em 1em 2em;
                border-left: 3px dotted var(--table-cell-border-color);
                border-bottom: 3px dotted var(--table-cell-border-color);

                @media screen and (max-width:530px) {
                    padding: 1em;
                }
            }

            th{
                font-size: 22px;
                padding: 0;
                width: 7em;
                border: none;
                border-bottom: 3px dotted var(--table-cell-border-color);

                @media screen and (max-width:530px) {
                    width: 2em;
                }
            }

            tr:last-child{
                th, td{
                    border-bottom: none;
                }
            }
        }
    }
}

