.global-page {
    padding: 60px 20px;
}

.global-container {
    width: 1100px;
    margin: 0 auto;
}

.global-title {
    text-align: center;
}

.global-title h1 {
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.global-title h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff2e2e;
    margin: 8px auto 0;
    border-radius: 2px;
}

.global-title .subtitle {
    color: #666;
}

.global-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 90%;
    border-radius: 14px;
    margin: 25px 0;
}

.section-title.with-icon img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain;
}

.tiger-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-radius: 14px;
    background: linear-gradient(158deg, #FFFFFF, #FAA884, #F54900);
    color: #fff;
}

.tiger-logo {
    width: 261px;
    margin-left: 60px;
}

.tiger-text {
    text-align: center;
    margin: 0 auto;
}

.tiger-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.country-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    gap: 20px;

    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px 30px;
    background: #fafafa;
}

.country img {
    width: 30px;
}

.country span {
    display: block;
    text-align: center;
}

.country-line {
    width: 80px;
    height: 2px;
    background: #ddd;
}

.action-grid {
    display: flex;
    gap: 20px;
}

.action-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 15px;
    border: 1px solid #eee;
}

.action-thumb {
    position: relative;
}

.action-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.action-icon {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.action-card h4 {
    margin: 8px 10px 6px;
    font-size: 16px;
}

.action-card p {
    margin: 0 10px;
    font-size: 14px;
}

.global-money {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f7efef;
    border-radius: 12px;
}

.money-title {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.money-title img {
    width: 26px;
    height: 26px;
}

.money-amount {
    font-size: 26px;
    color: #e74c3c;
    margin: 10px 0;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.link-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
}

.link-box img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    padding: 6px;
    border-radius: 6px;
}

.link-web img {
    background: #ff9d00;
}

.link-fb img {
    background: #132df5;
}

.link-tiktok img {
    background: #00104b;
}

.link-yt img {
    background: #ff0000;
}

.global-note {
    display: flex;
    margin-top: 30px;
    padding: 20px;
    background: #f6eaea;
    border-radius: 10px;
    justify-content: center;
}

.note-head {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff2e2e;
    font-weight: bold;
    margin-bottom: 6px;
}

.note-head img {
    width: 16px;
    height: 16px;
}

.note-text {
    margin: 0;
    line-height: 1.8;
    font-size: 14px;
}

/* =========================
スマホレスポンシブ
========================= */
@media (max-width:768px) {
    .global-container {
        width: 100%;
    }

    .global-title h1 {
        font-size: 26px;
    }

    .global-title .subtitle {
        font-size: 14px;
    }

    .global-hero img {
        height: 220px;
        border-radius: 10px;
    }

    .tiger-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .tiger-logo {
        width: 160px;
        margin-left: 0;
    }

    .tiger-text h2 {
        font-size: 18px;
    }

    .country-row {
        padding: 12px 14px;
        gap: 12px;
    }

    .country img {
        width: 22px;
    }

    .country span {
        font-size: 12px;
    }

    .country-line {
        width: 40px;
    }

    .action-grid {
        flex-direction: column;
        gap: 16px;
    }

    .action-thumb img {
        height: 160px;
    }

    .action-card h4 {
        font-size: 15px;
    }

    .action-card p {
        font-size: 13px;
    }

    .global-money {
        padding: 20px;
    }

    .money-title img {
        width: 22px;
        height: 22px;
    }

    .money-amount {
        font-size: 22px;
    }

    .link-grid {
        grid-template-columns: 1fr;
    }

    .link-box {
        padding: 12px;
    }

    .link-box img {
        width: 20px;
        height: 20px;
    }

    .global-note {
        padding: 16px;
    }

    .note-text {
        font-size: 9px;
    }

    .note-head {
        font-size: 12px;
    }
}