@charset "utf-8";

#philosophy {
    counter-reset: number 0;
}

#philosophy img {
    margin-bottom: 20px;
}

#philosophy ul {
    margin-top: 20px;
    line-height: 2;
    font-weight: bold;
}

#philosophy ul li::before {
    content: "";
    /* number カウンタを増加 */
    counter-increment: number 1;
    /* 表示形式を指定 */
    content: counter(number)"、" ;
}

#philosophy p:first-of-type {
    font-size: 18px;
    font-weight: bold;
}

#philosophy p.name {
    text-align: right;
    font-weight: bold;
    font-size: 18px;
}

#service section:nth-of-type(2) p {
    margin-top: 10px;
}

#company table.info {
    margin-bottom: 30px;
}

#company table.info td ul li {
    position: relative;
    padding-left: 10px;
}

#company table.info td ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: #1264b1;
    position: absolute;
    top: 10px;
    left: 0;
}

#company #map {
    width: 100%;
    height: 400px;
}

#company #map iframe {
    width: 100%;
    height: 100%;
}

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

    #service dl dt {
        font-size: 16px;
    }

}
