.new-mypage-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px 100px;
    font-family: "MS PMincho", "serif";
    color: #1f222e;
}

.new-mypage-container header:after{
	content				:"";
	display				:block;
	clear					:both;
}

.support-navigation {
    margin-bottom: 20px;
}

.btn-stone-support {
    display: inline-flex;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.btn-stone-support:nth-of-type(1){
	float:left;
}
.btn-stone-support:nth-of-type(2){
	float:right;
}

.user-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.user-summary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, #eb1c24, #f8f6f1);
}

.rank-circle-visual {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #eb1c24;
}

.rank-circle-visual span {
    font-size: 1.8rem; font-weight: 900; color: #eb1c24;
}

/* --- 全体レイアウト --- */
.lottery-main-content {
    margin: 0 auto;
    padding: 20px 0;
}

/* --- おみくじステージ（抽選前） --- */
.omikuji-stage {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lotImage {
    perspective: 1000px;
    margin-bottom: 40px;
}

.lotImage img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

/* おみくじを振るアニメーション */
.shaking-animation {
    animation: shaking 1.00s infinite;
}

@keyframes shaking {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(6px, 6px) rotate(2deg); }
    50% { transform: translate(0, -6px) rotate(0deg); }
    75% { transform: translate(-6px, 6px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* --- 結果表示カード --- */
.result-display-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-header h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
}

.result-body p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* --- 抽選ボタン & アクション --- */
.btn-lottery-trigger {
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, #eb1c24 0%, #b21016 100%);
    color: #fff;
    border: none;
    padding: 18px 0;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(235, 28, 36, 0.3);
    transition: all 0.3s ease;
}

.btn-lottery-trigger:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(235, 28, 36, 0.2);
}

.btn-lottery-trigger:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

/* --- 当選フォーム（Amazonギフト用） --- */
.winner-input-area {
    background: #fdf2f2;
    border: 2px dashed #eb1c24;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #eb1c24;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.4rem;
    box-sizing: border-box;
}

/* --- PLUS誘導エリア --- */
.plus-promo-box {
    background: #f8f6f1;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.plus-promo-box p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.btn-promo {
    display: inline-block;
    color: #eb1c24;
    text-decoration: underline;
    font-weight: bold;
}

/* --- 戻るボタン --- */
.btn-retry {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* --- 制限時メッセージ --- */
.limit-message {
    padding: 20px;
    color: #999;
}