
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, sans;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* ナビゲーション */
        header {
            border-bottom: 1px solid #ccc;
            padding: 10px 0;
        }

        nav ul {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            gap: 30px;
        }

        nav li {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .home-icon {
            font-size: 20px;
        }

        /* メインコンテンツ */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            /*	justify-content: center;	*/
            align-items: center;
            padding: 40px 20px;
           /*	 text-align: center;	*/
        }

        .logo-container {
            max-width: 300px; /* 画像のサイズに合わせて調整 */
            width: 90%;
            margin-bottom: 120px;
        }

        .logo-container img {
            width: 100%;
            height: auto;
        }

        .page-title {
            justify-content: center;
            text-align: center;
            margin-top: 60px;
            margin-bottom: 40px;
        }

        .sub-title {
            justify-content: center;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .description {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .listform {
            list-style: inside;
            text-indent: 0px;
            padding-left: 20px;
            margin-bottom: 5px;
        }

        .services {
            font-size: 15px;
            list-style: none;
            text-indent: 0px;
            padding-left: 0px;
            margin-bottom: 10px;
        }

        .services li {
            margin-bottom: 5px;
        }

        /* フッター */
        footer {
            padding: 40px 0;
            text-align: center;
            font-size: 12px;
            color: #666;
            letter-spacing: 0.05em;
        }
