@charset "UTF-8";
/* --------------------
このセミナーで学べること
-------------------- */
.merit{
    width: 94%;
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
    padding-bottom: 20px;
}
.merit .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
}
.merit .wrapper {
    width: 28%;
    position: relative;
}
.merit .circle {
    width: 100%;
    padding-top: 100%;
    border-radius: 100%;
    box-shadow: 0 0 5px rgb(0 0 0 / .1);
    position: relative;
    overflow: hidden;
}
.merit .circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.merit .title{
    margin: 30px auto 10px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    line-height: 1.2;
    color: #B5151D;
}
.merit .title::after {
    content: "";
    display: block;
    width: 3em;
    height: 2px;
    background: #B5151D;
    margin: 1em auto 2em;
}
.merit .text{
    font-size: 14px;
    text-align: left;
}
@media screen and (max-width: 599px) {
    .merit .wrapper{ width: 46%;}
    .merit .title::after{ margin-bottom: 1em;}

}


/* --------------------
３つのお金の教養
-------------------- */
.three_kyouyou{
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.three_kyouyou .item{
    max-width: 300px;
    position: relative;
}
.three_kyouyou img{
    display: block;
    width: 100%;
}
.three_kyouyou .text{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    padding: 30px 0px;
    font-size: 150%;
    font-weight: bold;
    text-align: left;
    text-indent: 75px;
    border-bottom: 5px solid #B5151D;
    color: #B5151D;
}
.three_kyouyou .text span {
    position: absolute;
    top: -8px;
    left: -57px;
    font-size: 62px;
    color: rgb(181, 21, 29);
}


/* --------------------
１０の要素
-------------------- */
ul.listsquare{
    width: 100%;
    max-width: 900px;
    margin: auto;
}
ul.listsquare li{
    padding: 10px;
    background: #EEE;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #CC0000;
}
ul.listsquare span{
    display:table-cell;
    vertical-align: middle;
    width: 156px;
    height: 156px;
    padding: 40px 0 0 0;
    border: 2px dashed #B5151D;
    text-align: center;
    line-height: 1.6;
}

ul.listsquare li:nth-child(1) span{
    background: url(/specialist/images/freelance/point1.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(2) span{
    background: url(/specialist/images/freelance/point2.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(3) span{
    background: url(/specialist/images/freelance/point3.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(4) span{
    background: url(/specialist/images/freelance/point4.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(5) span{
    background: url(/specialist/images/freelance/point5.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(6) span{
    background: url(/specialist/images/freelance/point6.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(7) span{
    background: url(/specialist/images/freelance/point7.png) 50% -20px no-repeat;
}
ul.listsquare li:nth-child(8) span{
    background: url(/specialist/images/freelance/point8.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(9) span{
    background: url(/specialist/images/freelance/point9.png) 50% -10px no-repeat;
}
ul.listsquare li:nth-child(10) span{
    background: url(/specialist/images/freelance/point10.png) 50% -10px no-repeat;
}
@media screen and (max-width: 972px) and (min-width: 600px) {
    ul.listsquare{ max-width: 540px;}
}
@media screen and (min-width: 600px) {
    ul.listsquare li{ float: left;}
    ul.listsquare li:nth-child(even){
        background: #FFF;
    }
}
@media screen and (max-width: 599px) {
    ul.listsquare{
        display: flex;
        flex-wrap: wrap;
    }
    ul.listsquare li{
        display: table;
        width: 50%;
    }
    ul.listsquare li:nth-child(4n-3),
    ul.listsquare li:nth-child(4n){ background: #FFF;}
}