@charset "UTF-8";
/* about */
.about{
    .about_lead{
        margin: 0 0 30px 0;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2;
    }
    .about_text{
        margin: 0 0 10px 0;
    }
    .note{
        width: 80%;
        padding: 20px;
        margin: 0 auto 50px;
        font-size: 0.85em;
        background: var(--color-white);
        border: solid 1px var(--color-gray);
    }
    .about_item{
        display: flex;
        align-items: center;
        justify-content: center;

        .figure{
            width: 420px;
            flex-shrink: 0;
            z-index: -10;
        }
    }

    .about_item:not(:last-child){
        margin: 0 0 100px 0;
    }

    .about_item.reverse{
        flex-direction: row-reverse;
    }

    .about_dlist{
        padding: 50px 70px;
        margin: 0 0 0 -50px;
        background: rgba(255, 255, 255, 0.8);  
        z-index: 10;

        .about_dterm{
            margin: 0 0 15px 0;
            font-size: 18px;
            font-weight: 700;
            display: inline-block;
            border-bottom: solid 4px var(--sub-color);
        }

        .textlink{
            margin: 10px 0 0 0;
            font-weight: 700;
            display: block;
        }
        .fa-solid{
            margin: 0 0 0 5px;
        }
    }

    .about_item.reverse .about_dlist{
        margin-left: 0;
        margin-right: -50px;
    }
}




@media screen and (max-width: 1024px){
    .about{
        .note{
            width: 90%;
            font-size: 12px;
        }
        .about_item,
        .about_item.reverse{
            flex-direction: column;

            .figure{
                width: 80%;
                max-width: 550px;
            }
        }
        .about_dlist{
            width: 75%;
            max-width: 500px;
            padding: 30px;
            margin-left: 0;
            margin-top: -50px;
        }
        .about_item.reverse .about_dlist{
            margin-right: 0;
        }
    }
}


@media screen and (max-width: 600px){
        .about{
            .note{
                width: 100%;
            }
            .about_item,
            .about_item.reverse{
                .figure{
                    width: 100%;
                }
            }
            .about_dlist{
                width: 90%;
            }
        }
}