body{
    overflow-y: scroll;
}

.service-title {
    text-align: center;
    margin-top: 40px;
}

/* 会社概要のスタイル */
.service-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}

.service-title h2::after {
    content: "";
    display: block;
    width: 100%; /* h2の幅に合わせる */
    height: 3px; /* 線の太さ */
    background-color: black; /* 黒色の線 */
    position: absolute;
    bottom: 0;
    left: 0;
}

.business_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.business_title li {
    background-color: #f4f4f4; /* 明るいグレーの背景色 */
    border-radius: 8px; /* 丸みをつける */
    margin: 10px 0; /* 上下の間隔を調整 */
    padding: 15px 30px;
    width: 80%; /* 幅を80%に設定 */
    max-width: 400px; /* 最大幅を設定 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 軽い影をつけて立体感を出す */
    transition: all 0.3s ease; /* ホバー時のスムーズな遷移 */
    text-align: center;
}

.business_title li:hover {
    background-color: #007BFF; /* ホバー時に青色に変わる */
    color: white; /* 文字色を白に */
    transform: translateY(-5px); /* 5px上に動かす */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* 影を強調 */
}

.business_title li:active {
    transform: translateY(2px); /* クリック時に少し下がる */
}

/* ...既存のコード... */

@media screen and (max-width: 768px) {
    .service-title {
        margin-top: 18px;
    }

    .service-title h2 {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .business_title {
        margin-top: 10px;
        width: 100%;
        padding: 0 2vw;
    }

    .business_title li {
        width: 100%;
        max-width: 100%;
        padding: 10px 5px;
        font-size: 15px;
        margin: 8px 0;
    }
}