/* --- About Section Adventure 2027 Styles --- */

/* ギャラリーカードのサイズ調整 */
.gallery-card {
    width: 300px !important; /* PCサイズ */
    height: 200px !important;
}

@media (max-width: 768px) {
    .gallery-card {
        width: 200px !important;
        height: 130px !important;
    }
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Swiperの等速（Linear）移動用設定 */
.transition-linear {
    transition-timing-function: linear !important;
}

/* アウトラインテキスト（他セクションと共通利用可） */
.stroke-text {
    -webkit-text-stroke: 2px #1e40af;
    color: transparent;
}

/* 浮遊バッジ */
@keyframes floating-badge {
    0%, 100% { transform: translateY(0) rotate(12deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}
.floating-badge {
    animation: floating-badge 5s ease-in-out infinite;
}

/* マグネティックボタン（ホバー時の挙動） */
.magnetic-btn {
    display: inline-flex;
    text-decoration: none;
}


