@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Outfit:wght@600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gentle-pink: #fff0f5;
    --accent-pink: #f8bbd0;
    --dark-pink: #d81b60;
    --nav-bg: #2d2d2d;
    --card-bg: #ffffff;
    --text-color: #444;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--gentle-pink);
    font-family: 'Noto Sans JP', 'Outfit', sans-serif;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
}

nav {
    width: 100%;
    height: 70px;
    background-color: var(--nav-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav h1 {
    color: var(--accent-pink);
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-pink);
}

main {
    flex: 1;
    width: 90%;
    max-width: 1000px;
    background-color: var(--card-bg);
    border-radius: 24px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(248, 187, 208, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
}

.highlight {
    color: var(--dark-pink);
    font-weight: 700;
}
