@charset "UTF-8";
body {
  font-family: 'M PLUS 1p', sans-serif;
}

.section {
    background-color: #f2f2f8;
    padding: 120px 0;
}
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}
.heading {
    font-size: 36px;
    font-weight: 500;
    color: #3140e5;
    text-align: center;
    margin: 14px;
} 
h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #474747;
    margin-bottom: 48px;
}
.row {
    display: flex;
    justify-content: space-between;
}
.col {
    width: 23%;
    text-align: center;
}
.box {
    background-color: #ffffff;
    border-radius: 100%;
    width: 173px;
    height: 173px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}
.icon {
    width: 80px;
}
h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3140e5;
    margin-bottom: 19px;
}
.text {
    text-align: left;
    line-height: 1.5;
    color: #474747;
}

@media screen and (max-width: 767px) {
    .heading {
        font-size: 29px
    }
    .row {
        flex-wrap: wrap;
        gap: 36px
    }
    .col {
        width: 100%;
        
    }
    .text {
        font-size: 14px;
    }
}
/*終わりました。*/
