level3_mcnp_integration.html.deleted•3.53 kB
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🔗 MCNP統合ワークフロー - Poker MCP Level 3</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 30px;
margin-bottom: 30px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
margin-bottom: 15px;
font-size: 2.3em;
}
.section-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 30px;
margin-bottom: 25px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.coming-soon {
text-align: center;
padding: 50px;
background: linear-gradient(135deg, #fdcb6e, #e84393);
color: white;
border-radius: 15px;
font-size: 1.2em;
}
.navigation-buttons {
display: flex;
justify-content: space-between;
margin-top: 40px;
flex-wrap: wrap;
gap: 15px;
}
.nav-button {
background: linear-gradient(45deg, #00b894, #00a085);
color: white;
border: none;
padding: 15px 30px;
border-radius: 8px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
}
.nav-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<h1>🔗 MCNP統合ワークフロー</h1>
<p>MCNP6.2との完全統合による高精度計算システム</p>
<p><strong>Level 3:</strong> 自動化 | バッチ処理 | 品質管理</p>
</header>
<div class="section-card">
<div class="coming-soon">
<h2>🚀 このモジュールは準備中です</h2>
<p>MCNP6.2との完全統合、自動入力生成、バッチ計算システムなどの高度な機能を準備中です。</p>
<p><strong>公開予定:</strong> 近日中</p>
</div>
</div>
<div class="navigation-buttons">
<a href="level3_lab_shielding.html" class="nav-button">
← 前: 実験室遮蔽設計
</a>
<a href="level3_parameter_studies.html" class="nav-button">
次: パラメータスタディ →
</a>
</div>
</div>
</body>
</html>