/* ベース設定 */
body {
    margin: 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    color: #222;
  }
  
  a {
    text-decoration: none;
    color: #0077cc;
  }
  
  /* セクション全体 */
  .design-section {
    max-width: 960px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease;
  }
  
  /* タイトル */
  .design-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* カード */
  .work-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* 画像スタイル */
  .work-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .work-image:hover {
    transform: scale(1.02);
  }
  
  /* テキストエリア */
  .work-info {
    padding: 10px;
  }
  
  /* 戻るボタン */
  .back-fixed-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0077cc;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }
  
  .back-fixed-button:hover {
    background: #005fa3;
  }
  
  /* フェードインアニメーション */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  