/* リセットとベース設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'BIZ UDPゴシック' !important;
}

body {
  background: linear-gradient(135deg, #ece9e6, #ffffff);
  color: #444;
  line-height: 1.6;
  padding: 40px;
}

/* コンテナ：中央寄せとシャドウ */
.container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* ヘッダーのスタイル */
header {
  text-align: center;
  margin-bottom: 40px;
}
header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #1f78b4;
  font-weight: bold;
}
header p {
  font-size: 1.2em;
  color: #666;
}

/* テキストエリアとボタン */
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 15px;
  resize: vertical;
}

button {
  display: inline-block;
  padding: 12px 24px;
  background: #1f78b4;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
button:hover {
  background: #1666a2;
  transform: translateY(-2px);
}

/* リンクのスタイル */
a {
  display: block;
  padding: 15px 20px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #007bff;
  font-size: 1em;
  transition: background 0.3s ease, border-color 0.3s ease;
}
a:hover {
  background: #e9ecef;
  border-color: #ccc;
}

/* エクスプローラー風ファイルツリー */
.file-tree {
  list-style: none;
  padding-left: 20px;
}
.file-tree li {
  margin: 6px 0;
}
.file-tree .icon {
  margin-right: 6px;
}

/* ディレクトリ項目 */
.file-tree li.directory > strong {
  cursor: pointer;
  color: #007bff;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  body {
    padding: 20px;
  }
  .container {
    padding: 20px;
  }
  header h1 {
    font-size: 2.2em;
  }
}
