/* Shopify風のクリーンなカスタムスタイル */

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* フォント最適化 */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 数字入力のスピナー非表示 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* ベネフィットカードのホバーエフェクト */
.benefit-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ボタンのホバーエフェクト */
a, button {
    transition: all 0.2s ease;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .text-3xl {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .text-6xl {
        font-size: 3rem;
    }

    .text-7xl {
        font-size: 3.5rem;
    }
}

/* プリントスタイル */
@media print {
    header, footer, nav, .no-print {
        display: none;
    }
    
    body {
        background: white;
    }
}

/* 背景グラデーション（Shopify風） */
.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* アクセシビリティ向上 */
a:focus, button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ローディングアニメーション */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}
