/* 外枠のグレーのボックス */
.purchase-section {
    margin: 30px 0;
    text-align: center;
    background: #f9f9f9;
    padding: 25px 15px;
    border-radius: 10px;
}

/* タイトルテキスト */
.purchase-title {
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

/* --- レイアウトの核 --- */
.purchase-links {
    display: flex;
    flex-direction: column; /* 基本は縦並び（スマホ） */
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* PCサイズ（600px以上）の時の設定 */
@media (min-width: 600px) {
    .purchase-links {
        flex-direction: row;    /* 横並びに変更 */
        justify-content: center; /* 中央寄せ */
        flex-wrap: wrap;        /* 入り切らない場合は折り返し */
        gap: 20px;              /* 横並び時のボタン間隔 */
    }
}

/* ボタン本体：さらに細身でシャープに */
.purchase-button {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    max-width: 260px;      /* さらに少し短くし */
    height: 44px;          /* 高さを固定 */
    
    padding: 0 20px;
    background: linear-gradient(135deg, #d400ff 0%, #ff0066 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;     /* 少し小さく */
    letter-spacing: 0.03em;
    border-radius: 100px;    /* 角丸に */
    
    box-shadow: 0 2px 6px rgba(212, 0, 255, 0.15);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.purchase-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 0, 255, 0.2);
    opacity: 0.9;
}

/* 矢印：細いタイプ */
.purchase-button::after {
    content: '›';
    font-size: 1.1rem;
    margin-left: 8px;
    line-height: 0;
}