body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #88ecae;
    color: #333;
}

header {
    background: #16e654;
    color: rgb(6, 6, 6);
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
    text-align: center;
}

section {
    background: rgb(216, 240, 157);
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background: #98ed93;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 20px;
}

.box {
    text-align: left;
}

/* サービス一覧のデザイン調整 */
.works {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.work {
    width: 30%;
    min-width: 250px;
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-button {
    display: inline-block;
    background-color: #16e654; /* ボタンの背景色 */
    color: #ffffff;           /* テキストの色 */
    text-decoration: none;    /* リンクの下線を消す */
    font-size: 16px;          /* フォントサイズ */
    font-weight: bold;        /* 太字 */
    padding: 10px 20px;       /* 内側の余白 */
    border-radius: 8px;       /* 角を丸くする */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 軽い影をつける */
    transition: background-color 0.3s, box-shadow 0.3s; /* ホバー時のアニメーション */
}

.contact-button:hover {
    background-color: #14c749; /* ホバー時の背景色 */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* ホバー時の影 */
}
footer {
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: space-between; /* 左右に要素を配置 */
    padding: 10px;
}

.logo {
    margin-left: auto; /* ロゴを右端に寄せる */
}
