@charset "UTF-8";
/*チラシ表示*/
/*ad----------------------------------------------*/
.top-ad {
    width: 100%;
    padding: 0px 0px 70px;
    background: #fff;
}

.top-ad .inner {
    width: 1000px;
    border: 4px solid #60B1EC;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #60B1EC;
    padding: 0;
}

#contents .top-ad .inner{
    padding: 0;
}

.top-ad .inner div.tit {
    width: 240px;
    text-align: center;
    font-size: 180%;
    letter-spacing: 1px;
    color: #fff;
}

.top-ad .inner div.txt {
    width: 740px;
    padding: 10px 10px 10px 10px;
    color: #333;
    font-size: 120%;
    line-height: 240%;
    background: #FFF;
}

.top-ad .inner div.txt .chirashi {
    width: calc(100% - 20px);
    padding: 10px;
    display: flex;
    align-items: top;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.top-ad .inner div.txt .chirashi li {
    width: calc(100% / 3 - 20px);
    margin-bottom: 10px;
}

.top-ad .inner div.txt .chirashi li img {
    width: 100%;
    margin-bottom: 10px;
}

@media screen and (max-width: 960px) {

    /*ad-------------------------------------------------------------------------------------------*/
    .top-ad {
        width: 90%;
        padding: 0px 0px 70px;
        margin: 0px auto;
    }

    .top-ad .inner {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .top-ad .inner div.tit {
        width: 100%;
        padding: 10px 0px;
        text-align: center;
        font-size: 160%;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .top-ad .inner div.txt {
        width: 100%;
        padding: 10px 10px 10px 10px;
        font-size: 120%;
        line-height: 200%;
    }

    .top-ad .inner div.txt .chirashi {
        width: calc(100% - 0px);
        padding: 10px;
        display: flex;
        align-items: top;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .top-ad .inner div.txt .chirashi li {
        padding: 5px 0px;
        width: calc(100% / 2 - 20px);
    }

}