/* /public/css/style.css */

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    background: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ヘッダー */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

header h1 {
    font-size: 1.8rem;
    color: #333;
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

.subtitle {
    color: #666;
    margin-top: 8px;
}

/* メインコンテンツ */
main h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #5a67d8;
}

main section {
    margin-bottom: 30px;
}

main section h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #444;
}

main section p {
    margin-bottom: 10px;
}

/* サービスリンク */
.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-button {
    display: block;
    padding: 12px 20px;
    background: #5a67d8;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
}

.link-button:hover {
    background: #4c51bf;
}

/* 運営者情報 */
.about dl {
    margin-top: 15px;
}

.about dt {
    font-weight: bold;
    margin-top: 10px;
}

.about dd {
    margin-left: 0;
}

/* お問い合わせ */
.email {
    font-size: 1.1rem;
    font-weight: bold;
    color: #5a67d8;
    margin: 15px 0;
}

.note {
    color: #666;
    font-size: 0.9rem;
}

/* プライバシーポリシー */
.content section {
    margin-bottom: 25px;
}

.update-date {
    margin-top: 40px;
    color: #666;
    font-size: 0.9rem;
}

/* フッター */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

footer nav {
    margin-bottom: 15px;
}

footer nav a {
    color: #5a67d8;
    text-decoration: none;
    margin: 0 15px;
}

footer nav a:hover {
    text-decoration: underline;
}

.copyright {
    color: #999;
    font-size: 0.85rem;
}

/* 外部リンク */
.external-links {
    list-style: none;
}

.external-links li {
    margin-bottom: 12px;
}

.external-links a {
    color: #5a67d8;
    text-decoration: none;
    font-weight: bold;
}

.external-links a:hover {
    text-decoration: underline;
}

.link-desc {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2px;
}

/* レスポンシブ */
@media (max-width: 600px) {
    body {
        padding: 20px 10px;
    }
    
    .container {
        padding: 25px 20px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
}
```

## ファイル構成
```
ya-man-work.com/
├── index.php
├── privacy.php
├── contact.php
└── css/
    └── style.css