@charset "UTF-8";

/*あいさつ*/
.greeting {
    margin: auto;
}

.greeting h2 {
    font-family: var(--font_style_2);
    font-weight: 600;
}

.greeting p {
    font-family: var(--font_style_2);
    font-weight: 500;
}

.greeting .sign {
    width: 90%;
    text-align: right;
}

/*経営理念*/
.list_style {
    width: min(90%, 1280px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
    margin: 0 auto 60px;
}

.list_style li {
    width: 100%;
    font-family: var(--font_style_1);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    list-style: decimal;
    list-style-position: inside;
    background-color: var(--main-color);
    border: 2px solid #333;
    border-radius: 9999px;
    color: #f5f5f5;
    line-height: 1.6;
    padding: 21px;
    margin: 0 auto 16px;
}


.gmap{
    width: min(96%,980px);
    border: 1px solid #999;
    margin: auto;
}


@media only screen and (max-width: 736px) {
    /*スマホ*/
    
    /*あいさつ*/
    .greeting .sign img{
        width: 60%;
    }


    /*経営理念*/
    .list_style {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 0 auto 60px;
    }

    .list_style li {
        font-size: 1rem;
        text-align: left;
        border-radius: 16px;
        line-height: 1.6;
        padding: 16px;
        margin: 0 auto;
    }





}

/*スマホ*/


@media only screen and (min-width: 737px) and (max-width: 1024px) {}