    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* 全体のレイアウト設定 */
        body {
            font-family: sans-serif;
            background-color: #aaccaa;
            margin: 0;
            display: flex;
            flex-direction: column;
            height: 100vh; /* 画面いっぱいに表示 */
        }

        /* メインエリアの横並び設定 */
        .container {
            display: flex;
            flex: 1;
            overflow: hidden;
        }

        /* 左側のメニュー */
        nav {
            width: 260px;
            background-color: #aaccaa;
            color: black;
            padding: 20px;
            overflow-y: auto;
            border-right: 1px solid rgba(0,0,0,0.1);
        }

        .navcard {
            background: #ffffcc;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px;
            margin-bottom: 15px;
            font-size: 0.9em;
        }

        .navcard a {
            color: #0000ee;
            text-decoration: underline;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }

        /* 右側の表示エリア（iframeを格納） */
        main {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            background-color: #aaccaa;
        }

        /* iframeそのものをカードのように見せる設定 */
        .view-frame {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
            background: #ffffff; /* 中身が読み込まれるまでの背景色 */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* 下部のフッター */
        footer {
            height: 40px;
            background: #aaccaa;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: 1px solid rgba(0,0,0,0.1);
            font-size: 0.8em;
        }
    </style>
