/* Critical CSS generated for: privacy-policy.blade.php */
/* ベース設定 */
* {
    box-sizing: border-box;
}

:root {
    --primary-color: #d63384;
    --primary-light: #e685b5;
    --primary-dark: #b04f83;
    --accent-pink: #ffe4e1;
    --accent-rose: #fff0f5;
    --text-dark: #2d2d2d;
    --text-medium: #4d4d4d;
    --text-light: #a67991;
    --border-color: #ffd6e0;
    --shadow-sm: 0 2px 8px rgba(214, 51, 132, 0.08);
    --shadow-md: 0 4px 16px rgba(214, 51, 132, 0.12);
    --shadow-lg: 0 8px 24px rgba(214, 51, 132, 0.15);
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #fff5f7 0%, #fffbfc 50%, #fff0f5 100%);
    color: var(--text-medium);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 228, 225, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 240, 245, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ヘッダー */
.header {
    position: relative;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 214, 224, 0.3);
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, #ffe4e1 0%, #fff0f5 50%, #fce4ec 100%);
    opacity: 0.6;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
}

.site-title-main {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.site-title-sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;