
    /* ページ固有のスタイル */
    .craft-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 15px;
      overflow: hidden;
      height: 100%;
    }

    .craft-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .craft-image {
      border-radius: 10px;
      transition: all 0.5s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .craft-image:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .process-step {
      position: relative;
      padding-left: 30px;
      margin-bottom: 25px;
    }

    .process-step:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
      border-radius: 50%;
    }

    .process-step:after {
      content: "";
      position: absolute;
      left: 9px;
      top: 20px;
      height: calc(100% + 5px);
      width: 2px;
      background: linear-gradient(to bottom, var(--primary-gradient-end), rgba(var(--primary-rgb), 0.1));
    }

    .process-step:last-child:after {
      display: none;
    }
  

