    /* .type_wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    } */

    /* body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background-color: #f0f0f0;
    } */

    /* Tシャツとテキストを格納するコンテナ */
    .shirt-container {
      width: 180px;
      height: 202px;
      /* width: 290px;
      height: 320px; */
      position: relative; /* 子要素を絶対位置で配置するための基準 */
    }

    @media (min-width: 768px) {
      .shirt-container {
        width: 190px;
          height: 215px;
    }
    }

    /* Tシャツ画像のスタイル */
    .shirt-container img {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    /* 最初は非表示にしておく完成版Tシャツ */
    #final-shirt {
      display: none;
    }

    /* テキストを重ねるためのオーバーレイ */
    .text-overlay {
      position: absolute;
      top: 50px; /* Tシャツに対するテキストの縦位置 */
      /* top: 115px; */
      left: 35%;
      /* left: 50%; */
      transform: translateX(-35%);
      /* transform: translateX(-50%); */
      width: 130px;
      z-index: 10;
      /* z-index: 10; */
      font-family: sans-serif;
      color: black;
    }

    /* 1行目「BeWater」のスタイル */
    #line1 {
      font-size: 36px;
      font-weight: bold;
      /* 筆記体のようなフォントを指定 */
      font-family: 'Brush Script MT', 'cursive'; 
      height: 40px; /* テキスト表示用の高さを確保 */
    }
    
    /* 2行目「27」のスタイル */
    #line2 {
      font-size: 32px;
      font-weight: bold;
      text-align: right; /* 右寄せ */
      height: 40px; /* テキスト表示用の高さを確保 */
    }