    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
      background: #f4f4f4;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .phone-frame {
      width: 100%;
      max-width: 420px;
      height: 840px;
      max-height: 90vh;
      background: #fff;
      border-radius: 32px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .status-bar {
      height: 20px;
      padding: 8px 16px 4px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #555;
    }
    .nav-bar {
      height: 44px;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      font-size: 15px;
      font-weight: 600;
    }
    .nav-back {
      position: absolute;
      left: 16px;
      font-size: 13px;
      color: #007aff;
      cursor: pointer;
      display: none;
    }
    main {
      flex: 1;
      overflow-y: auto;
      background: #ffffff;
    }
    section {
      height: 100%;
    }
    
    .screen-share {
      height: 150%;
      background: linear-gradient(135deg, #ff7a3d, #ff3b30);
      display: flex;
      flex-direction: column;
    }
    .share-top {
      padding: 32px 24px 16px;
      text-align: center;
    }
    .share-top-caption {
      font-size: 13px;
      color: #ffe0da;
      margin-bottom: 8px;
    }
    .share-top-title {
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }
 
     .share-top-imgwaku {
         display: flex;
         justify-content: center; 
     }
    
     .share-top-img {
      width: 72px;
      height: 72px;
      margin-bottom: 16px;
      position: relative;
    }
    .share-top-img::before { top: 20px; }
    .share-top-img::after { bottom: 20px; }
   
    .share-primary-btn {
      margin: 16px auto 0;
      width: 100%;
      max-width: 260px;
      padding: 14px 16px;
      border-radius: 999px;
      border: none;
      font-size: 15px;
      font-weight: 600;
      background: #ffffff;
      color: #ff3b30;
      box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }
    .share-primary-btn:active {
      transform: translateY(1px);
      box-shadow: 0 3px 8px rgba(0,0,0,0.32);
    }
    
    /* ★共通 赤グラデ背景（トップ・選択・ローディング） */
    .screen-inner-red {
      background: linear-gradient(135deg, #ff7a3d, #ff3b30);
      color: #fff;
      min-height: 100%;
      height: 100%;
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; /* 縦方向センター */
      text-align: center;
    }
    .top-caption {
      font-size: 13px;
      color: #ffe0da;
      margin-bottom: 8px;
    }
    .top-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .omikuji-img {
      width: 72px;
      height: 72px;
      border: 0px solid #fff;
      border-radius: 20px;
      margin-bottom: 16px;
      position: relative;
    }
    .omikuji-img::before { top: 20px; }
    .omikuji-img::after { bottom: 20px; }
    .omikuji-icon {
      width: 72px;
      height: 72px;
      border: 2px solid #fff;
      border-radius: 20px;
      margin-bottom: 16px;
      position: relative;
    }
    .omikuji-icon::before,
    .omikuji-icon::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      border-radius: 999px;
      border: 2px solid #fff;
    }
    .omikuji-icon::before { top: 20px; }
    .omikuji-icon::after { bottom: 20px; }

    /* ★ボタンをアイコン直下＆画面中央あたりに */
    .primary-btn {
      margin-top: 16px;
      width: 100%;
      padding: 14px 16px;
      border-radius: 999px;
      border: none;
      font-size: 15px;
      font-weight: 600;
      background: #ffffff;
      color: #ff3b30;
      cursor: pointer;
      box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }
    .primary-btn:active {
      transform: translateY(1px);
      box-shadow: 0 3px 8px rgba(0,0,0,0.32);
    }

    .select-caption {
      font-size: 13px;
      color: #ffe0da;
      margin-bottom: 16px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      width: 100%;
      margin-top: 8px;
    }
    .grid-item {
      border-radius: 18px;
      border: 2px solid rgba(255,255,255,0.85);
      height: 80px;
      cursor: pointer;
      position: relative;
    }
    .grid-item::before,
    .grid-item::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      border-radius: 999px;
      border: 2px solid rgba(255,255,255,0.85);
    }
    .grid-item::before { top: 22px; }
    .grid-item::after { bottom: 22px; }

    .loading-text-main {
      font-size: 15px;
      margin-bottom: 12px;
      color: #fff5f3;
    }
    .loading-number {
      font-size: 40px;
      font-weight: 700;
    }

    /* ======= 結果画面 ======= */
    .result-wrap {
      background: #ffffff;
      min-height: 100%;
      padding: 24px 0 8px;
    }
    /* 外枠：ページ上のレイアウトと影を担当 */
    .result-waku {
      margin: 0 16px 24px;   /* 元のcardにあったmarginを移動 */
      border-radius: 28px;   /* 影を角丸にするため、ここにもradiusが必要 */
      box-shadow: 0 10px 26px rgba(0,0,0,0.12); /* 影はここに移動 */
      
      /* 念のため背景は透明か、cardと同じ色にしておく */
      background: transparent; 
    }

    /* 中身：画像化される本体 */
    .result-card {
      /* margin: 0;  ← marginは親（waku）が持つので不要（0にするか削除） */
      /* box-shadow: none; ← 影も親が持つので削除 */
      
      border-radius: 28px;   /* 画像自体を角丸にしたいので維持 */
      overflow: hidden;      /* 維持 */
      background: #fffdf8;   /* 維持 */
      
      /* 親要素いっぱいに広げる */
      width: 100%;
      height: 100%;
    }
    .result-card-header {
      background: linear-gradient(135deg, #ff7a3d, #ff3b30);
      color: #fff;
      padding: 16px;
      text-align: center;
    }
    .result-label {
      font-size: 11px;
      color: #ffe0da;
      letter-spacing: 0.16em;
    }
    .result-rank {
      font-size: 22px;
      font-weight: 700;
    }
    .result-card-body {
      padding: 14px 16px;
    }
    .section-block {
      background: #fff;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,0.04);
      padding: 8px 10px;
      margin-bottom: 8px;
    }
    .section-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2px;
    }
    .section-title {
      font-size: 12px;
      font-weight: 600;
    }
    .star-row {
      font-size: 12px;
      color: #c58a2c;
      letter-spacing: 1px;
    }
    .section-text {
      font-size: 13px;
      line-height: 1.5;
    }
    .result-meta {
      background: #fffaf2;
      font-size: 11px;
      color: #b19a8c;
      padding: 8px 16px;
      display: flex;
      justify-content: space-between;
    }

    /* シェア */
    .share-area {
      padding: 0 16px 8px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .save-btn {
      width: 100%;
      border-radius: 999px;
      padding: 10px 16px;
      border: 1px solid #ddd;
      background: #fff;
      color: #444;
      display: flex;
      justify-content: center;
      gap: 6px;
      font-size: 13px;
      cursor: pointer;
    }
    .share-line-main {
      width: 100%;
      padding: 12px 16px;
      border-radius: 999px;
      background: #06c755;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
    }
    .share-icons-row {
      display: flex;
      justify-content: center;
      gap: 18px;
    }
    .share-icon-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: #f5f5f5;
      box-shadow: 0 3px 8px rgba(0,0,0,0.18);
      cursor: pointer;
      font-size: 18px;
    }
    .share-icon-btn.ig {
      background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 45%, #d6249f 70%, #285AEB 100%);
      color: #fff;
    }
    .share-icon-btn.x { background: #000; color: #fff; }

    .global-footer {
      border-top: 1px solid #eee;
      padding: 6px;
      font-size: 10px;
      color: #aaa;
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .global-footer a {
        color: #c7c7c7;          /* 灰色 */
        font-weight: normal;     /* bold無し */
        text-decoration: none;   /* 下線無し */
    }

    /* (オプション) マウスを乗せた時だけ色を変えるなど */
    .global-footer a:hover {
        text-decoration: underline; /* ホバー時は下線を出すなど */
    }

    /* Button grid */
    .button-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 10px;
        justify-content: center;
    }

    /* Grid button style */
    .grid-button {
        width: 100px;
        height: 100px;
        padding: 0;
        border: none;
        background-color: transparent; /* Make background transparent */
    }

    .grid-button img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hidden { display: none; }

/* 画面全体を覆う背景 */
.loading-overlay {
    display: none; /* 最初は隠しておく */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* 半透明の白背景 */
    z-index: 9999; /* 他の要素より手前に表示 */
    text-align: center;
    padding-top: 20%; /* 画面の中央付近に表示するための調整 */
}

/* ぐるぐる回る円のアニメーション */
.spinner {
    margin: 0 auto 10px; /* 中央寄せと下の余白 */
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* 薄いグレー */
    border-top: 5px solid #3498db; /* 青色（好きな色に変えてOK） */
    border-radius: 50%; /* 円にする */
    animation: spin 1s linear infinite; /* 回転アニメーション */
}

/* 回転の定義 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 1. モーダル全体（オーバーレイ）のスタイルは前回と同じ */
#custom-modal {
    position: fixed;        
    top: 0;
    left: 0;
    width: 100%;            
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒背景 */
    display: flex;          
    justify-content: center; 
    align-items: center;     
    z-index: 1000;          
}

/* 2. ダイアログボックス本体の調整 */
.modal-content {
    /* フォント: OS標準フォントを使用することでネイティブ感アップ */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px; /* 標準ダイアログに近い文字サイズ */
    
    background-color: #f0f0f0; /* やや灰色がかった背景色 */
    padding: 15px 15px 10px 15px; /* 上下左右のパディングを微調整 */
    border-radius: 8px;      /* 角は標準より少し丸い程度に */
    
    /* 影: OSによって異なりますが、シンプルで目立ちすぎない影 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    
    width: 300px;            
    max-width: 90%;          
    text-align: left; /* 標準ダイアログは通常左寄せ */
    border: 1px solid #ccc; /* わずかに枠線を追加 */
}

/* 2-1. メッセージ部分の調整 */
.modal-content p {
    margin: 0 0 15px 0; /* 下に少し余白 */
    line-height: 1.4;
    font-weight: normal;
}

.modal-content .button-container {
    text-align: right;
    margin-top: 10px;
}

/* 2. ボタンのスタイルをリンク文字風にリセット */
.modal-content button {
    /* **ボタンの外観をリセットする重要な設定** */
    background: none;             /* 背景色をなくす */
    border: none;                 /* 枠線をなくす */
    padding: 0;                   /* パディングをなくす */
    
    /* **文字のスタイル設定** */
    color: #007bff;               /* 標準的なリンクの色（青） */
    font-size: 14px;              /* 標準的な文字サイズ */
    text-decoration: none;        /* 下線（エンドライン）をなくす */
    cursor: pointer;              /* カーソルをポインターにする */
    
    /* **その他** */
    margin-left: 10px;            /* ボタン間のスペース */
    display: inline;              /* インライン要素として扱う */
    font-family: inherit;         /* 親要素のフォントを継承 */
}

