﻿

/*** for PC Browser ***/
@media (min-width:401px)
{
.miryoku_circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: outside none;
    margin: 0px;
    padding: 0px;
}

.miryoku_circle li {
    width: calc((100% - 40px)/3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px 0px 20px 0px;
}

.miryoku_circle a {
    color: #000;
    text-decoration: none;
    font-size: 100%;
    text-align: center;
    padding: 20px 15px;
    background: #F3E295;
    border-radius: 7px;
    width: 100%;
    display: block;
}

.miryoku_circle li:nth-child(even) a {
    color: #000;
    background: #fffbe9;
}
}


/*** for Smart Phone ***/
@media (max-width:400px)
{
.miryoku_circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: outside none;
    margin: 0px;
    padding: 0px;
}

.miryoku_circle li {
    width: calc((100% - 10px)/2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px 0px 20px 0px;
}

.miryoku_circle a {
    color: #000;
    text-decoration: none;
    font-size: 100%;
    text-align: center;
    padding: 20px 15px;
    background: #F3E295;
    border-radius: 7px;
    width: 100%;
    display: block;
}

.miryoku_circle li:nth-child(even) a {
    color: #000;
    background: #fffbe9;
}
}
