@charset "UTF-8";
/* CSS Document */
/*PC*/
@media print, screen and (min-width: 769px) {
.index .cont01 {
position: relative;
margin-bottom: 200px;
}
.smList {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 50px auto;
}
.smList li {
width: 30%;
font-size: 1.1em;
}

.smList li a{
color: #000;
}
.smList li:nth-child(n+4) {
margin-top: 50px;
}
.smList li p {
padding-left: 30px;
position: relative;
margin-top: 20px;
font-weight: 500;
font-size: 0.8em;
}
.smList li p::before {
width: 15px;
height: 1px;
display: block;
content: '';
position: absolute;
top: 12px;
left: 0px;
background-color: #0f9582;
}
}
/*sp*/
@media only screen and (max-width: 768px) {
.index .cont01 {
position: relative;
margin-bottom: 100px;
}
.smList {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.smList li {
width: 45%;
margin-bottom: 30px;
}

.smList li a{
color: #000;
}

.smList li p {
padding-left: 40px;
position: relative;
margin-top: 15px;
font-weight: 500;
}
.smList li p::before {
width: 15px;
height: 1px;
display: block;
content: '';
position: absolute;
top: 8px;
left: 10px;
background-color: #0f9582;
}
}