/* おみくじ結果のスタイル */
.omikuji-result {
    background-color: #fff4d9;  /* 薄いクリーム色の背景 */
    border: 2px solid #f1c40f;  /* ゴールドの境界線 */
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;  /* 文字を大きく */
    font-weight: bold;
    color: #e67e22;  /* オレンジ色のテキスト */
    border-radius: 10px;  /* 角を丸く */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-label {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.result-content {
    font-size: 32px;  /* 結果の文字サイズを大きく */
    font-weight: bold;
    color: #c0392b;  /* 濃い赤色 */
}

/* アドバイスのスタイル */
.omikuji-advice {
    background-color: #e8f6f3;  /* 薄い水色の背景 */
    border: 2px solid #1abc9c;  /* ミントグリーンの境界線 */
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 24px;  /* 文字を大きく */
    color: #16a085;  /* ダークミントグリーン */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.advice-label {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.advice-content {
    font-size: 24px;
}

/* ラッキーアイテムのスタイル */
.omikuji-lucky-item {
    background-color: #fef9e7;  /* 薄い黄色の背景 */
    border: 2px solid #f39c12;  /* ゴールドの境界線 */
    padding: 15px;
    text-align: center;
    font-size: 22px;  /* 文字を大きく */
    color: #d35400;  /* 鮮やかなオレンジ色 */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lucky-item-label {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.lucky-item-content {
    font-size: 22px;
    color: #d35400;
}

/* 説明文のスタイル */
.omikuji-description {
    background-color: #f8f8f8;  /* 背景色を柔らかいグレーに */
    border: 2px solid #e67e22;  /* オレンジ色の境界線 */
    padding: 15px;
    margin-bottom: 20px;
    font-size: 18px;  /* デフォルトの文字サイズ */
    font-weight: bold;
    color: #333;  /* テキストの色 */
    line-height: 1.5;
    text-align: left;
    border-radius: 10px;  /* 角を丸く */
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .omikuji-description {
        font-size: 16px;  /* スマホでは文字サイズを少し小さく */
        padding: 10px;  /* パディングも小さくして全体をコンパクトに */
    }
}

.omikuji-info {
    font-size: 12px;  /* 文字サイズを小さく */
    color: #666;  /* 色を少し薄めに */
    margin-top: 10px;
    text-align: center;  /* 左寄せにする場合 */
}
.sns-share-buttons a {
    margin-right: 10px;
    text-decoration: none;
    font-size: 14px;
    color: #0073e6;
}

.sns-share-buttons a:hover {
    color: #005bb5;
}

.sns-share-buttons {
    text-align: center;  /* 中央揃え */
    margin-top: 20px;
}

.share-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    color: #fff;
    background-color: #1da1f2;  /* Twitter用の青色 */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: #0d95e8;
}

.share-button:nth-child(2) {
    background-color: #4267B2;  /* Facebook用の青色 */
}

.share-button:nth-child(2):hover {
    background-color: #365899;
}
