        .form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 

            display: flex; /* Flexboxを適用 */
            flex-wrap: wrap; /* アイテムがコンテナー幅を超えたら改行 */
            gap: 10px; /* 各画像間のスペース */
            justify-content: center; /* コンテナー内で画像を中央揃え */
        }


        .form-container ul{
            list-style: none; /* リストスタイルを削除 */
            padding: 0; /* パディングを削除 */
            margin: 0 auto; /* コンテナーを中央揃え */
            display: flex; /* Flexboxを適用 */
            flex-wrap: wrap; /* アイテムがコンテナー幅を超えたら改行 */
            gap: 10px; /* 各画像間のスペース */
            justify-content: center; /* コンテナー内で画像を中央揃え */
            max-width: 1000px; /* コンテナーの最大幅を設定（任意） */
        }
        .image-options {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        .radio .image-option{
            display: none;
        }
        .tab-container {
            text-align: center;
          }
          
          .tabs {
            position: relative;
            display: flex;
            justify-content: space-between;
            background-color: #fff;
            border-radius: 25px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          }
          
          .tab {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            color: #333;
            border-radius: 25px;
            transition: color 0.3s;
          }
          
          /* スライダーの動き */
          input#tab1:checked ~ .slider {
            transform: translateX(0%);
          }
          
          input#tab2:checked ~ .slider {
            transform: translateX(100%);
          }
          
          input#tab3:checked ~ .slider {
            transform: translateX(200%);
          }
          
          /* ラベルの動き */
          input#tab1:checked + label {
            color: #fff;
          }
          
          input#tab2:checked + label {
            color: #fff;
          }
          
          input#tab3:checked + label {
            color: #fff;
          }
          
          .guide {
            margin-top: 10px;
            font-size: 12px;
            color: #999;
          }