/* 共通スタイル */
html {
    font-size: 100%;
}

body {
    color: #383e45;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #fff9f5 0%, #fffaf7 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}

/* タイポグラフィ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* ラッパー */
.wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ボタン共通スタイル */
button {
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

button:active {
    transform: translateY(0);
}

/* フッター共通 */
footer {
    font-size: 0.9rem;
    padding: 30px 0;
    text-align: center;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
    margin-top: 80px;
    color: #666;
}

/* レスポンシブ */
@media screen and (max-width: 600px) {
    html {
        font-size: 90%;
    }
    
    body {
        font-size: 0.9rem;
    }
}
